
    .slider-group {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
    }

    .slider-container {
      width: 300px;
      text-align: center;
    }

    .main-image img {
      width: 100%;
      height: auto;
      border: 2px solid #ccc;
      border-radius: 5px;
      transition: 0.3s;
    }

    .thumbnails {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .thumbnails img {
      width: 60px;
      height: 60px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: border 0.3s, transform 0.3s;
    }

    .thumbnails img:hover {
      border-color: #007BFF;
      transform: scale(1.1);
    }

    html {
      font-size: 15px;
    }

    body {
      font-family: "Montserrat", sans-serif;
      font-size: 15px;
      font-size: 1rem;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    @media (max-width: 767px) {
      body {
        font-size: 14px;
        font-size: 0.93333rem;
      }
    }

    p {
      
      line-height: 1.8em;
      margin-bottom: 15px;
      text-align: justify;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Montserrat", sans-serif;
      font-weight: bold;
      color: #051829;
      margin: 0 0 0.4em;
    }

    ul {
      padding-left: 0;
      margin: 0;
      list-style-position: inside;
    }

    a {
      text-decoration: none;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      -ms-transition: all 0.2s;
      transition: all 0.2s;
    }

    a:hover,
    a:focus {
      text-decoration: none;
    }

    a:focus {
      outline: none !important;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/
    .page-wrapper {
      position: relative;
      overflow: hidden;
    }

    .float-right {
      float: right;
    }

    .wow {
      visibility: hidden;
    }

    .fi:before {
      margin: 0;
    }

    .section-padding {
      padding: 100px 0;
    }

    @media (max-width: 1199px) {
      .section-padding {
        padding: 80px 0;
      }
    }

    @media (max-width: 767px) {
      .section-padding {
        padding: 70px 0;
      }
    }

    /*** contact form error handling ***/
    .contact-validation-active .error-handling-messages {
      width: 100%;
      margin-top: 15px;
      clear: both;
    }

    .contact-validation-active label.error {
      color: red !important;
      font-size: 0.93333rem;
      font-weight: normal;
      margin: 5px 0 0 0;
    }

    .contact-validation-active #loader,
    .contact-validation-active #loader-2 {
      display: none;
      margin-top: 10px;
    }

    .contact-validation-active #success,
    .contact-validation-active #success-2,
    .contact-validation-active #error,
    .contact-validation-active #error-2 {
      width: 100%;
      color: #fff;
      padding: 5px 10px;
      font-size: 16px;
      text-align: center;
      display: none;
    }

    @media (max-width: 767px) {

      .contact-validation-active #success,
      .contact-validation-active #success-2,
      .contact-validation-active #error,
      .contact-validation-active #error-2 {
        font-size: 15px;
      }
    }

    .contact-validation-active #success,
    .contact-validation-active #success-2 {
      background-color: #009a00;
      border-left: 5px solid green;
      margin-bottom: 5px;
    }

    .contact-validation-active #error,
    .contact-validation-active #error-2 {
      background-color: #ff1a1a;
      border-left: 5px solid red;
    }

    .contact-validation-active #loader {
      text-align: center;
      color: #fff;
      font-size: 8px;
      font-size: 0.53333rem;
    }

    /*** back to top **/
    .back-to-top {
      background-color: rgb(255 194 89);
      width: 45px;
      height: 45px;
      line-height: 45px;
      text-align: center;
      display: none;
      position: fixed;
      z-index: 999;
      right: 15px;
      bottom: 15px;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      -ms-transition: all 0.2s;
      transition: all 0.2s;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -o-border-radius: 3px;
      -ms-border-radius: 3px;
      border-radius: 3px;
    }

    @media (max-width: 991px) {
      .back-to-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
      }
    }

    .back-to-top:hover {
      background-color: #ffc04a;
    }

    .back-to-top i {
      font-size: 18px;
      font-size: 1.2rem;
      color: #fff;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }

    /** for popup image ***/
    .mfp-wrap {
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 99999;
    }

    .mfp-with-zoom .mfp-container,
    .mfp-with-zoom.mfp-bg {
      opacity: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }

    .mfp-with-zoom.mfp-ready .mfp-container {
      opacity: 1;
    }

    .mfp-with-zoom.mfp-ready.mfp-bg {
      opacity: 0.8;
    }

    .mfp-with-zoom.mfp-removing .mfp-container,
    .mfp-with-zoom.mfp-removing.mfp-bg {
      opacity: 0;
    }

    /*** for fancybox video ***/
    .fancybox-overlay {
      background: rgba(0, 0, 0, 0.9);
      z-index: 9999 !important;
    }

    .fancybox-wrap {
      z-index: 99999 !important;
    }

    .section-title,
    .section-title-white,
    .section-title-s2,
    .section-title-s5,
    .section-title-s6,
    .section-title-s7 {
      margin-bottom: 35px;
    }

    @media (max-width: 991px) {

      .section-title,
      .section-title-white,
      .section-title-s2,
      .section-title-s5,
      .section-title-s6,
      .section-title-s7 {
        margin-bottom: 35px;
      }
    }

    .section-title h2,
    .section-title-white h2,
    .section-title-s2 h2,
    .section-title-s5 h2,
    .section-title-s6 h2,
    .section-title-s7 h2 {
      font-size: 30px;
      font-size: 2rem;
      text-transform: uppercase;
      margin: 0;
      padding-bottom: 0.5em;
      position: relative;
      letter-spacing: -1px;
    }

    @media (max-width: 1199px) {

      .section-title h2,
      .section-title-white h2,
      .section-title-s2 h2,
      .section-title-s5 h2,
      .section-title-s6 h2,
      .section-title-s7 h2 {
        font-size: 27px;
        font-size: 1.8rem;
      }
    }

    @media (max-width: 991px) {

      .section-title h2,
      .section-title-white h2,
      .section-title-s2 h2,
      .section-title-s5 h2,
      .section-title-s6 h2,
      .section-title-s7 h2 {
        font-size: 24px;
        font-size: 1.6rem;
      }
    }

    @media (max-width: 767px) {

      .section-title h2,
      .section-title-white h2,
      .section-title-s2 h2,
      .section-title-s5 h2,
      .section-title-s6 h2,
      .section-title-s7 h2 {
        font-size: 20px;
        font-size: 1.33333rem;
      }
    }

    .section-title h2:before,
    .section-title-white h2:before,
    .section-title-s2 h2:before,
    .section-title-s5 h2:before,
    .section-title-s6 h2:before,
    .section-title-s7 h2:before {
      content: "";
      background-color: #ffc04a;
      width: 33px;
      height: 5px;
      position: absolute;
      left: 0;
      bottom: 0;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -o-border-radius: 3px;
      -ms-border-radius: 3px;
      border-radius: 3px;
    }

    @media (max-width: 767px) {

      .section-title h2:before,
      .section-title-white h2:before,
      .section-title-s2 h2:before,
      .section-title-s5 h2:before,
      .section-title-s6 h2:before,
      .section-title-s7 h2:before {
        height: 3px;
      }
    }

    .section-title-white h2 {
      color: #fff;
    }

    .section-title-s2,
    .section-title-s5,
    .section-title-s6,
    .section-title-s7 {
      text-align: center;
    }

    .section-title-s2 h2,
    .section-title-s5 h2,
    .section-title-s6 h2,
    .section-title-s7 h2,
    .section-title-s2 p,
    .section-title-s5 p,
    .section-title-s6 p,
    .section-title-s7 p {
      color: #fff;
    }

    .section-title-s2 h2:before,
    .section-title-s5 h2:before,
    .section-title-s6 h2:before,
    .section-title-s7 h2:before {
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
    }

    .section-title-s2 h2,
    .section-title-s5 h2,
    .section-title-s6 h2,
    .section-title-s7 h2 {
      margin: 0 0 0.83em;
    }

    .section-title-s2 p,
    .section-title-s5 p,
    .section-title-s6 p,
    .section-title-s7 p {
      margin: 0;
    }

    @media screen and (min-width: 1200px) {

      .section-title-s2 p,
      .section-title-s5 p,
      .section-title-s6 p,
      .section-title-s7 p {
        padding: 0 45px;
      }
    }

    .section-title-s3,
    .section-title-s4 {
      margin-bottom: 30px;
    }

    .section-title-s3 h2,
    .section-title-s4 h2 {
      font-size: 30px;
      font-size: 2rem;
      line-height: 1.33em;
      margin: 0.13em 0 0;
      padding-bottom: 0.3em;
      position: relative;
    }

    @media (max-width: 1199px) {

      .section-title-s3 h2,
      .section-title-s4 h2 {
        font-size: 27px;
        font-size: 1.8rem;
      }
    }

    @media (max-width: 991px) {

      .section-title-s3 h2,
      .section-title-s4 h2 {
        font-size: 24px;
        font-size: 1.6rem;
      }
    }

    @media (max-width: 767px) {

      .section-title-s3 h2,
      .section-title-s4 h2 {
        font-size: 20px;
        font-size: 1.33333rem;
      }
    }

    .section-title-s3 h2:before,
    .section-title-s4 h2:before {
      content: "";
      background-color: #ffc04a;
      width: 80px;
      height: 2px;
      position: absolute;
      left: 0;
      bottom: 0;
    }

    .section-title-s3>span,
    .section-title-s4>span {
      color: #9a9a9a;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .section-title-s4 h2 {
      margin: 0 0 0.83em;
    }

    .section-title-s5 h2,
    .section-title-s6 h2,
    .section-title-s7 h2 {
      color: #051829;
    }

    .section-title-s5 p,
    .section-title-s6 p,
    .section-title-s7 p {
      color: #6a6a6a;
    }

    .section-title-s6 h2,
    .section-title-s7 h2 {
      text-transform: none;
    }

    .section-title-s6 h2:before,
    .section-title-s7 h2:before {
      display: none;
    }

    .section-title-s7 h2 {
      padding-bottom: 0;
    }

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3,
    .theme-btn-s4,
    .theme-btn-s5 {
      background-color: #ffc04a;
      font-size: 16px;
      font-size: 1.06667rem;
      font-weight: 600;
      color: #051829;
      padding: 5px 28px;
      border: 2px solid #ffc04a;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -o-border-radius: 3px;
      -ms-border-radius: 3px;
      border-radius: 3px;
    }

    .theme-btn:hover,
    .theme-btn-s2:hover,
    .theme-btn-s3:hover,
    .theme-btn-s4:hover,
    .theme-btn-s5:hover {
      background-color: #020b12;
      color: #fff;
    }

    @media (max-width: 1199px) {

      .theme-btn,
      .theme-btn-s2,
      .theme-btn-s3,
      .theme-btn-s4,
      .theme-btn-s5 {
        font-size: 15px;
        font-size: 1rem;
        padding: 4px 22px;
      }
    }

    @media (max-width: 991px) {

      .theme-btn,
      .theme-btn-s2,
      .theme-btn-s3,
      .theme-btn-s4,
      .theme-btn-s5 {
        font-size: 14px;
        font-size: 0.93333rem;
        padding: 4px 20px;
      }
    }

    @media (max-width: 767px) {

      .theme-btn,
      .theme-btn-s2,
      .theme-btn-s3,
      .theme-btn-s4,
      .theme-btn-s5 {
        font-size: 13px;
      }
    }

    .theme-btn-s2 {
      background-color: #020b12;
      color: #fff;
    }

    .theme-btn-s2:hover {
      background-color: #ffc04a;
      color: #051829;
    }

    .theme-btn-s3:hover {
      border-color: #051829;
      color: #ffc04a;
    }

    .theme-btn-s4 {
      background-color: #051829;
      border-color: #051829;
      color: #ffc04a;
    }

    .theme-btn-s4:hover {
      background-color: #ffc04a;
      border-color: #ffc04a;
      color: #051829;
    }

    .theme-btn-s5 {
      background-color: transparent;
      border: 2px solid #ffc04a;
      color: #fff;
    }

    .theme-btn-s5:hover {
      background-color: #ffc04a;
    }

    .form input,
    .form textarea,
    .form select {
      border-color: #bfbfbf;
      border-radius: 0;
      outline: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #595959;
    }

    .form input:focus,
    .form textarea:focus,
    .form select:focus {
      border-color: #051829;
      -webkit-box-shadow: 0 0 5px 0 #0b3356;
      -moz-box-shadow: 0 0 5px 0 #0b3356;
      -o-box-shadow: 0 0 5px 0 #0b3356;
      -ms-box-shadow: 0 0 5px 0 #0b3356;
      box-shadow: 0 0 5px 0 #0b3356;
    }

    .form ::-webkit-input-placeholder {
      font-style: 14px;
      font-style: italic;
      color: #595959;
    }

    .form :-moz-placeholder {
      font-style: 14px;
      font-style: italic;
      color: #595959;
    }

    .form ::-moz-placeholder {
      font-style: 14px;
      font-style: italic;
      color: #595959;
    }

    .form :-ms-input-placeholder {
      font-style: 14px;
      font-style: italic;
      color: #595959;
    }

    .wpcf7-form input,
    .wpcf7-form textarea,
    .wpcf7-form select {
      display: block;
      width: 100%;
      height: 34px;
      padding: 6px 12px;
      font-size: 14px;
      line-height: 1.42857143;
      color: #555;
      background-color: #fff;
      background-image: none;
      border: 1px solid #ccc;
      border-radius: 4px;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      -webkit-transition: border-color ease-in-out .15s,
        -webkit-box-shadow ease-in-out .15s;
      -o-transition: border-color ease-in-out .15s,
        box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,
        -webkit-box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,
        box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s,
        box-shadow ease-in-out .15s,
        -webkit-box-shadow ease-in-out .15s;
    }

    .wpcf7-form select {
      font-style: normal;
      background-image: url(../images/select-icon.png);
      background-repeat: no-repeat;
      background-position: calc(100% - 15px) center;
      display: inline-block;
      -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      appearance: none;
      cursor: pointer;
    }

    .wpcf7-form select::-ms-expand {
      /* for IE 11 */
      display: none;
    }

    .social-links {
      overflow: hidden;
      list-style-type: none;
    }

    .social-links li {
      float: left;
    }

    .social-links li a {
      display: block;
      text-align: center;
    }

    /******************************
	#blog grids
******************************/
    .page-title {
      background: url("../images/page-title.jpg") center center/cover no-repeat local;
      height: 260px;
      position: relative;
      width: 100%;
    }

    @media (max-width: 767px) {
      .page-title {
        height: 220px;
      }
    }

    .page-title:before {
      content: "";
      background-color: rgba(0, 0, 0, 0.3);
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
    }

    .table-responsive {
      width: 100%;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
      /* optional: keeps columns readable on small screens */
    }

    th,
    td {
      border: 1px solid #dddddd;
      padding: 8px;
      text-align: left;
    }

    tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    th {
      background-color: #555;
      color: white;
    }


    .page-title .container {
      height: 100%;
      display: table;
    }

    .page-title .container>.row {
      vertical-align: middle;
      display: table-cell;
    }

    .page-title h2,
    .page-title ol {
      color: #fff;
    }

    .page-title h2 {
      font-size: 48px;
      font-size: 3.2rem;
      font-weight: 800;
      margin: 1em 0 0.23em;
    }

    @media (max-width: 1199px) {
      .page-title h2 {
        font-size: 42px;
        font-size: 2.8rem;
      }
    }

    @media (max-width: 991px) {
      .page-title h2 {
        font-size: 35px;
        font-size: 2.33333rem;
      }
    }

    @media (max-width: 767px) {
      .page-title h2 {
        font-size: 28px;
        font-size: 1.86667rem;
        font-weight: bold;
      }
    }

    .page-title .breadcrumb {
      background-color: transparent;
      padding: 0;
    }

    @media (max-width: 767px) {
      .page-title .breadcrumb {
        text-align: center;
      }
    }

    .page-title .breadcrumb li {
      font-size: 18px;
      font-size: 1.2rem;
      color: #ffc04a;
      margin-right: 5px;
    }

    @media (max-width: 991px) {
      .page-title .breadcrumb li {
        font-size: 15px;
        font-size: 1rem;
      }
    }

    .page-title .breadcrumb li a {
      color: #fff;
    }

    .page-title .breadcrumb li a:hover {
      color: #ffc04a;
    }

    .page-title .breadcrumb>li+li:before {
      font-family: "FontAwesome";
      content: "\f105";
      color: #fff;
      margin-right: 5px;
    }

    .preloader {
      width: 100%;
      background-color: #fff;
      width: 100%;
      height: 100%;
      position: fixed;
      z-index: 10001;
    }

    .preloader div {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }

    /*************************************
    = service grids
**************************************/
    .services-grids {
      overflow: hidden;
    }

    .services-grids .inner {
      min-height: 254px;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 1199px) {
      .services-grids .inner {
        min-height: 218px;
      }
    }

    .services-grids .details {
      width: 100%;
      height: 100%;
      padding: 60px 50px;
      position: absolute;
      left: 0;
      top: 57%;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
    }

    @media (max-width: 1199px) {
      .services-grids .details {
        padding: 50px 30px;
      }
    }

    .services-grids .info {
      position: relative;
    }

    .services-grids .details h3 {
      font-size: 18px;
      font-size: 1.2rem;
      color: #fff;
      font-weight: 600;
      margin: 0 0 1.2em;
    }

    @media (max-width: 1199px) {
      .services-grids .details h3 {
        font-size: 17px;
        font-size: 1.13333rem;
        margin: 0 0 1.2em;
      }
    }

    @media (max-width: 767px) {
      .services-grids .details h3 {
        font-size: 15px;
        font-size: 1rem;
        margin: 0 0 1.2em;
      }
    }

    .services-grids .details h3 i {
      background: #ffc04a;
      color: #051829;
      padding: 7px 10px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -o-border-radius: 3px;
      -ms-border-radius: 3px;
      border-radius: 3px;
      position: relative;
      left: -5px;
    }

    @media (max-width: 1199px) {
      .services-grids .details h3 i {
        padding: 5px 8px;
      }
    }

    .services-grids .details p {
      font-size: 14px;
      font-size: 0.93333rem;
      color: #fff;
      margin: 0 0 1.79em;
    }

    .services-grids .details .more {
      font-weight: 600;
      color: #051829;
      text-transform: capitalize;
    }

    .services-grids .grid:hover .details {
      background-color: rgb(255 194 89);
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      top: 0;
    }

    .services-grids .grid:hover .details h3 {
      color: #051829;
      margin: 0 0 0.59em;
    }

    .services-grids .grid:hover .details h3 i {
      background: transparent;
    }

    .dots-s1 .owl-controls {
      margin-top: 0;
    }

    .dots-s1 .owl-dots {
      height: 15px;
    }

    .dots-s1 .owl-dots .owl-dot span {
      background: #bfbfbf;
      width: 8px;
      height: 8px;
      margin: 0 7px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }

    .dots-s1 .owl-dots .owl-dot.active span,
    .dots-s1 .owl-dots .owl-dot:hover span {
      background-color: #ffc04a;
    }

    .dots-s1 .owl-dots .owl-dot.active span {
      width: 9px;
      height: 9px;
    }

    .slider-arrow-s1 .owl-controls {
      margin-top: 0;
    }

    .slider-arrow-s1 .owl-controls .owl-nav .owl-prev,
    .slider-arrow-s1 .owl-controls .owl-nav .owl-next {
      background-color: #ffc04a;
      width: 34px;
      height: 34px;
      line-height: 37px;
      font-size: 18px;
      font-size: 1.2rem;
      color: #051829;
      padding: 0;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      -ms-transition: all 0.2s;
      transition: all 0.2s;
    }

    .slider-arrow-s1 .owl-controls .owl-nav .owl-prev:hover,
    .slider-arrow-s1 .owl-controls .owl-nav .owl-next:hover {
      background-color: #e4b500;
      color: #051829;
    }

    @media (max-width: 991px) {

      .slider-arrow-s1 .owl-controls .owl-nav .owl-prev,
      .slider-arrow-s1 .owl-controls .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        line-height: 33px;
        font-size: 16px;
        font-size: 1.06667rem;
      }
    }

    .theme-accordion-s1 {
      margin-bottom: 0;
    }

    .theme-accordion-s1 .panel-default {
      background: transparent;
      border: 1px solid #dee0e100;
      border-radius: 0;
    }

    .theme-accordion-s1 .panel-group .panel+.panel {
      margin-top: 8px;
    }

    .theme-accordion-s1 .panel-heading {
      background-color: transparent;
      padding: 0;
      border-radius: 0;
    }

    .theme-accordion-s1 .panel-heading a {
      background-color: #ffc04a !important;
      font-size: 18px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #222;
      display: block;
      padding: 15px 25px;
      position: relative;
    }

    @media (max-width: 1800px) {
      .theme-accordion-s1 .panel-heading a {
        background-color: #ffc04a;
        text-align: center;
      }
    }

    @media (max-width: 991px) {
      .theme-accordion-s1 .panel-heading a {
        font-size: 16px;
        font-size: 1.06667rem;
        padding: 12px 20px;
      }
    }

    @media (max-width: 767px) {
      .theme-accordion-s1 .panel-heading a {
        padding: 12px 15px;
      }
    }

    .theme-accordion-s1 .panel-heading a:before {
      font-family: "FontAwesome";

      font-size: 20px;
      font-size: 1.33333rem;
      position: absolute;
      right: 25px;
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }

    @media (max-width: 991px) {
      .theme-accordion-s1 .panel-heading a:before {
        font-size: 18px;
        font-size: 1.2rem;
        right: 20px;
      }
    }

    .theme-accordion-s1 .panel-heading .collapsed {
      background-color: #ffc04a;
    }

    .theme-accordion-s1 .panel-heading .collapsed:before {
      -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
      transform: rotate(0);
    }

    .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
      background: rgba(255, 255, 255, 0.9);
      border: 0;
      padding: 24px 33px 12px;
    }

    @media (max-width: 1800px) {
      .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
        background-color: #fff;
      }
    }

    @media (max-width: 991px) {
      .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
        padding: 20px 20px 10px;
      }
    }

    @media (max-width: 767px) {
      .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
        padding: 15px 15px 8px;
      }
    }


    .square-hover-effect {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 10;
    }

    .square-hover-effect .hover-1,
    .square-hover-effect .hover-2,
    .square-hover-effect .hover-3,
    .square-hover-effect .hover-4 {
      background: rgb(255 194 89);
      width: 50%;
      height: 50%;
      position: absolute;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      opacity: 0;
    }

    .square-hover-effect .hover-1 {
      left: 0;
      top: 0;
    }

    .square-hover-effect .hover-2 {
      left: 50%;
      top: 0;
    }

    .square-hover-effect .hover-3 {
      left: 50%;
      top: 50%;
    }

    .square-hover-effect .hover-4 {
      left: 0;
      top: 50%;
    }

    .square-hover-effect:hover .hover-1,
    .square-hover-effect-parent:hover .hover-1 {
      left: 50%;
      top: 0;
      opacity: 1;
    }

    .square-hover-effect:hover .hover-2,
    .square-hover-effect-parent:hover .hover-2 {
      left: 50%;
      top: 50%;
      opacity: 1;
    }

    .square-hover-effect:hover .hover-3,
    .square-hover-effect-parent:hover .hover-3 {
      left: 0%;
      top: 50%;
      opacity: 1;
    }

    .square-hover-effect:hover .hover-4,
    .square-hover-effect-parent:hover .hover-4 {
      left: 0%;
      top: 0%;
      opacity: 1;
    }

    /*************************************
    = service sinle sidebar
**************************************/
    @media screen and (min-width: 992px) {
      .service-single-sidebar {
        padding-right: 40px;
      }
    }

    @media (max-width: 991px) {
      .service-single-sidebar {
        margin-top: 80px;
      }
    }

    .service-single-sidebar ul {
      list-style-type: none;
    }

    .service-single-sidebar>.widget+.widget {
      margin-top: 50px;
    }

    .service-single-sidebar .services-link-widget ul>li+li {
      margin-top: 10px;
    }

    .service-single-sidebar .services-link-widget ul li a {
      background-color: #f5f2f2;
      font-weight: 600;
      color: #242424;
      padding: 10px 8px;
      font-size: 12px;
      display: block;
      text-transform: title;
    }

    @media (max-width: 1199px) {
      .service-single-sidebar .services-link-widget ul li a {
        font-size: 14px;
        font-size: 0.93333rem;
      }
    }

    @media (max-width: 767px) {
      .service-single-sidebar .services-link-widget ul li a {
        font-size: 12px;
        font-size: 0.8rem;
        padding: 10px 15px;
      }
    }

    .service-single-sidebar .services-link-widget ul li a:hover,
    .service-single-sidebar .services-link-widget ul li.current a {
      background-color: #ffc04a;
    }

    .service-single-sidebar .download-brocher-widget a {
      background-color: #ffc04a;
      font-size: 18px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #fff;
      padding: 17px 20px 17px 50px;
      position: relative;
      display: block;
      text-transform: uppercase;
    }

    @media (max-width: 1199px) {
      .service-single-sidebar .download-brocher-widget a {
        font-size: 14px;
        font-size: 0.93333rem;
      }
    }

    @media (max-width: 767px) {
      .service-single-sidebar .download-brocher-widget a {
        font-size: 13px;
        font-size: 0.86667rem;
        padding: 10px 15px 10px 40px;
      }
    }

    .service-single-sidebar .download-brocher-widget a i {
      background-color: #051829;
      padding: 5px 10px;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
    }

    .service-single-sidebar .contact-widget {
      border: 2px solid #e9e9e9;
      padding: 30px 25px;
    }

    .service-single-sidebar .contact-widget h3 {
      font-size: 20px;
      font-size: 1.33333rem;
      margin: 0 0 0.8em;
    }

    @media (max-width: 991px) {
      .service-single-sidebar .contact-widget h3 {
        font-size: 17px;
        font-size: 1.13333rem;
      }
    }

    .service-single-sidebar .contact-widget p {
      margin: 0;
    }

    


    /*--------------------------------------------------------------
#2.1    services s2
--------------------------------------------------------------*/
    .service-s2-top {
      margin-top: 10px;
    }

    @media (max-width: 991px) {
      .service-s2-top {
        margin-top: 50px;
      }
    }

    .service-s2-tab {
      overflow: hidden;
      margin-bottom: 60px;
    }

    .service-s2-tab .tablinks {
      width: 17%;
      float: right;
      list-style: none;
    }

    @media (max-width: 991px) {
      .service-s2-tab .tablinks {
        width: 30%;
      }
    }

    @media (max-width: 767px) {
      .service-s2-tab .tablinks {
        width: 270px;
        float: none;
        margin-bottom: 25px;
      }
    }

    .service-s2-tab .tablinks li {
      border: 1px solid transparent;
      margin-bottom: 2px;
    }

    .service-s2-tab .tablinks li.active {
      border: 1px solid #ffc04a;
    }

    .service-s2-tab .tablinks li a {
      font-size: 18px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #051829;
      display: block;
      padding: 5px 20px;
      text-align: right;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }

    @media (max-width: 1199px) {
      .service-s2-tab .tablinks li a {
        font-size: 16px;
        font-size: 1.06667rem;
      }
    }

    .service-s2-tab .tablinks li.active a span {
      visibility: visible;
      opacity: 1;
      display: inline-block;
    }

    .service-s2-tab .tablinks li a span {
      padding-left: 8px;
      visibility: hidden;
      display: none;
      opacity: 0;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }

    .service-s2-tab .tab-content {
      width: 80%;
      float: left;
    }

    @media (max-width: 991px) {
      .service-s2-tab .tab-content {
        width: 65%;
      }
    }

    @media (max-width: 767px) {
      .service-s2-tab .tab-content {
        width: 100%;
        float: none;
      }
    }

    .service-s2-tab .tab-pane {
      overflow: hidden;
    }

    .service-s2-tab .tab-pane .img-holder {
      width: 45%;
      float: left;
      padding-bottom: 15px;
    }

    @media (max-width: 991px) {
      .service-s2-tab .tab-pane .img-holder {
        width: 100%;
        float: none;
      }
    }

    .service-s2-tab .tab-pane .img-holder img {
      -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .service-s2-tab .tab-pane .details {
      width: 55%;
      float: right;
      padding: 45px 100px 45px 45px;
    }

    @media (max-width: 1199px) {
      .service-s2-tab .tab-pane .details {
        padding: 25px 41px 25px 35px;
      }
    }

    @media (max-width: 991px) {
      .service-s2-tab .tab-pane .details {
        width: 100%;
        float: none;
        padding: 25px 0 0;
      }
    }

    @media (max-width: 767px) {
      .service-s2-tab .tab-pane .details {
        padding: 15px 0 0;
      }
    }

    .service-s2-tab .details h3 {
      font-size: 24px;
      font-size: 1.6rem;
      font-weight: 600;
      margin: 0 0 0.71em;
    }

    @media (max-width: 1199px) {
      .service-s2-tab .details h3 {
        font-size: 20px;
        font-size: 1.33333rem;
      }
    }

    @media (max-width: 767px) {
      .service-s2-tab .details h3 {
        font-size: 18px;
        font-size: 1.2rem;
      }
    }

    .service-s2-tab .details .more {
      font-weight: 600;
      color: #ffc04a;
      margin-top: 5px;
    }

    .service-s2-tab .details .more:hover {
      color: #d9ad00;
    }

    .service-s2-box-grids {
      margin: 0 -15px;
    }

    .service-s2-box-grids .grid {
      width: 33.33%;
      float: left;
      padding: 0 15px;
    }

    @media (max-width: 700px) {
      .service-s2-box-grids .grid {
        width: 100%;
        float: none;
        margin-bottom: 15px;
      }
    }

    .service-s2-box-grids .grid .inner {
      border: 2px solid #e6e6e6;
      padding: 65px 42px 60px 100px;
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -o-transition: all 0.2s;
      -ms-transition: all 0.2s;
      transition: all 0.2s;
    }

    @media (max-width: 1199px) {
      .service-s2-box-grids .grid .inner {
        padding: 95px 42px 40px;
      }
    }

    @media (max-width: 991px) {
      .service-s2-box-grids .grid .inner {
        padding: 95px 35px 30px;
      }
    }

    @media (max-width: 767px) {
      .service-s2-box-grids .grid .inner {
        padding: 85px 35px 30px;
      }
    }

    .service-s2-box-grids .grid:hover .inner {
      border-color: #ffc04a;
    }

    .service-s2-box-grids .inner h3 {
      font-size: 20px;
      font-size: 1.33333rem;
      font-weight: 600;
      margin: 0 0 1em;
      position: relative;
    }

    @media (max-width: 991px) {
      .service-s2-box-grids .inner h3 {
        font-size: 18px;
        font-size: 1.2rem;
      }
    }

    @media (max-width: 767px) {
      .service-s2-box-grids .inner h3 {
        font-size: 16px;
        font-size: 1.06667rem;
      }
    }

    .service-s2-box-grids .inner h3 span {
      font-size: 48px;
      font-size: 3.2rem;
      font-weight: bold;
      position: absolute;
      left: -80px;
      top: -45px;
    }

    @media (max-width: 1199px) {
      .service-s2-box-grids .inner h3 span {
        font-size: 38px;
        font-size: 2.53333rem;
        left: 0;
        top: -60px;
      }
    }

    @media (max-width: 991px) {
      .service-s2-box-grids .inner h3 span {
        font-size: 34px;
        font-size: 2.26667rem;
      }
    }

    @media (max-width: 767px) {
      .service-s2-box-grids .inner h3 span {
        font-size: 30px;
        font-size: 2rem;
      }
    }

    .service-s2-box-grids .inner h3 span:before {
      content: "";
      background-color: #ffc04a;
      width: 2px;
      height: 140%;
      position: absolute;
      left: 60%;
      top: -10px;
      -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
      transform: rotate(40deg);
    }

    .service-s2-box-grids .inner>p:last-child {
      margin-bottom: 0;
    }

    /*--------------------------------------------------------------
#2.2    our-team
--------------------------------------------------------------*/
    .our-team-bg {
      background-color: #f6f6f6;
      padding-bottom: 170px;
      margin-bottom: 45px;
    }

    @media (max-width: 1199px) {
      .our-team-bg {
        padding-bottom: 80px;
      }
    }

    @media (max-width: 991px) {
      .our-team-bg {
        padding-bottom: 60px;
      }
    }

    .our-team .team-slider {
      position: relative;
    }

    .our-team .owl-stage-outer {
      z-index: 10;
    }

    .our-team .team-slider:after {
      content: "";
      width: 120%;
      height: 300px;
      border: 2px solid #ffc04a;
      position: absolute;
      left: -10%;
      bottom: 0;
    }

    @media (max-width: 1199px) {
      .our-team .team-slider:after {
        display: none;
      }
    }

    /*--------------------------------------------------------------
#2.3    fun-fact
--------------------------------------------------------------*/
    .fun-fact {
      text-align: center;
      padding: 55px 0 100px;
    }

    @media (max-width: 1199px) {
      .fun-fact {
        padding: 0 0 100px;
      }
    }

    @media (max-width: 991px) {
      .fun-fact {
        padding: 0 0 60px;
      }
    }

    @media (max-width: 767px) {
      .fun-fact {
        padding: 0 0 45px;
      }
    }

    .fun-fact .start-count>.col:last-child .grid:after {
      display: none;
    }

    .fun-fact .start-count>.col:last-child .grid {
      border-bottom: 0;
    }

    @media (max-width: 767px) {
      .fun-fact .start-count>.col+.col .grid {
        margin-top: 20px;
      }
    }

    .fun-fact .grid {
      padding: 0 40px;
      position: relative;
    }

    @media (max-width: 1199px) {
      .fun-fact .grid {
        padding: 0 25px;
      }
    }

    @media (max-width: 991px) {
      .fun-fact .grid {
        padding: 0 15px;
      }
    }

    @media (max-width: 767px) {
      .fun-fact .grid {
        border-bottom: 1px solid #d9d9d9;
      }
    }

    .fun-fact .grid:after {
      content: "";
      background: #d9d9d9;
      background: -webkit-linear-gradient(top, white 0%, #d9d9d9 15%, #d9d9d9 80%, white 98%);
      background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(15%, #d9d9d9), color-stop(80%, #d9d9d9), color-stop(98%, white));
      background: -o-linear-gradient(top, white 0%, #d9d9d9 15%, #d9d9d9 80%, white 98%);
      background: linear-gradient(top, white 0%, #d9d9d9 15%, #d9d9d9 80%, white 98%);
      width: 2px;
      height: 105px;
      position: absolute;
      right: -15px;
      bottom: -2%;
    }

    @media (max-width: 767px) {
      .fun-fact .grid:after {
        display: none;
      }
    }

    .fun-fact .grid h3 {
      font-size: 60px;
      font-size: 4rem;
      margin: 0 0 3px;
    }

    @media (max-width: 1199px) {
      .fun-fact .grid h3 {
        font-size: 50px;
        font-size: 3.33333rem;
      }
    }

    @media (max-width: 991px) {
      .fun-fact .grid h3 {
        font-size: 40px;
        font-size: 2.66667rem;
      }
    }

    @media (max-width: 767px) {
      .fun-fact .grid h3 {
        font-size: 30px;
        font-size: 2rem;
      }
    }

    .fun-fact .grid h3>span:last-child {
      color: #ffc04a;
    }

    .fun-fact .grid .fact-title {
      font-size: 18px;
      font-size: 1.2rem;
      font-weight: bold;
      color: #9a9a9a;
      margin: 0 0 1.38em;
      display: block;
    }

    /*--------------------------------------------------------------
#2.4    cta-newsletter
--------------------------------------------------------------*/
    .cta-newsletter {
      padding: 100px 0;
      position: relative;
    }

    @media (max-width: 991px) {
      .cta-newsletter {
        padding: 80px 0;
        text-align: center;
      }
    }

    @media (max-width: 767px) {
      .cta-newsletter {
        padding: 60px 0;
      }
    }

    .cta-newsletter:before {
      content: "";
      background-color: rgba(5, 24, 41, 0.9);
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
    }

    .cta-newsletter .cta-newsletter-inner h3 {
      font-size: 30px;
      font-size: 2rem;
      color: #fff;
      margin: 0 0 1.23em;
    }

    @media (max-width: 1199px) {
      .cta-newsletter .cta-newsletter-inner h3 {
        font-size: 25px;
        font-size: 1.66667rem;
      }
    }

    @media (max-width: 991px) {
      .cta-newsletter .cta-newsletter-inner h3 {
        font-size: 20px;
        font-size: 1.33333rem;
      }
    }

    .cta-newsletter .cta-newsletter-inner h3 span {
      color: #ffc04a;
    }

    .cta-newsletter .subscrib-form {
      max-width: 725px;
      position: relative;
    }

    @media (max-width: 1199px) {
      .cta-newsletter .subscrib-form {
        max-width: 625px;
      }
    }

    @media (max-width: 991px) {
      .cta-newsletter .subscrib-form {
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 767px) {
      .cta-newsletter .subscrib-form {
        max-width: 95%;
        margin: 0 auto;
      }
    }

    .cta-newsletter .subscrib-form input {
      height: 45px;
      border: 0;
      padding-left: 25px;
      padding-right: 260px;
    }

    @media (max-width: 1199px) {
      .cta-newsletter .subscrib-form input {
        height: 40px;
        padding-right: 200px;
      }
    }

    @media (max-width: 991px) {
      .cta-newsletter .subscrib-form input {
        height: 38px;
        padding-left: 15px;
        padding-right: 140px;
      }
    }

    @media (max-width: 767px) {
      .cta-newsletter .subscrib-form input {
        padding-right: 120px;
      }
    }

    .cta-newsletter .subscrib-form button {
      background-color: #ffc04a;
      width: 240px;
      height: 45px;
      line-height: 45px;
      padding: 0;
      border: 0;
      outline: 0;
      font-size: 16px;
      font-size: 1.06667rem;
      font-weight: 600;
      color: #051829;
      position: absolute;
      right: 0;
      top: 0;
      border-radius: 5px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }

    @media (max-width: 1199px) {
      .cta-newsletter .subscrib-form button {
        width: 180px;
        height: 40px;
        line-height: 40px;
      }
    }

    @media (max-width: 1199px) {
      .cta-newsletter .subscrib-form button {
        font-size: 14px;
        font-size: 0.93333rem;
        width: 120px;
        height: 38px;
        line-height: 38px;
      }
    }

    @media (max-width: 767px) {
      .cta-newsletter .subscrib-form button {
        width: 100px;
      }
    }

    .cta-newsletter .subscrib-form button:hover {
      background-color: #e4b500;
    }

    .cta-newsletter .newsletter-pic {
      position: absolute;
      right: 0;
      bottom: -100px;
    }

    @media (max-width: 991px) {
      .cta-newsletter .newsletter-pic {
        display: none;
      }
    }

    /*--------------------------------------------------------------
#3.1    services-s3
--------------------------------------------------------------*/
    .services-s3 {
      background-color: #e8f0f7;
      padding-bottom: 70px;
    }

    @media (max-width: 991px) {
      .services-s3 {
        padding-bottom: 50px;
      }
    }

    @media (max-width: 767px) {
      .services-s3 {
        padding-bottom: 40px;
      }
    }

    .services-s3-grids {
      overflow: hidden;
      margin: 0 -15px;
    }

    .services-s3-grids .grid {
      width: 24.33%;
      float: left;
      padding: 0 15px 30px;
      position: relative;
    }

    @media (max-width: 991px) {
      .services-s3-grids .grid {
        width: 50%;
      }
    }

    @media (max-width: 600px) {
      .services-s3-grids .grid {
        width: 100%;
        float: none;
      }
    }

    .services-s3-grids .grid:hover .details {
      background-color: #e4b500;
    }

    .services-s3-grids .grid:hover h3 a {
      color: #fff;
    }

    .services-s3-grids .grid .inner {
      position: relative;
      overflow: hidden;
    }

    .services-s3-grids .grid .details {
      background-color: #ffc04a;
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 0;
      border-radius: 5px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }

    .services-s3-grids .grid img {
      border-radius: 5px;
    }

    .services-s3-grids .grid h3 {
      font-size: 18px;
      font-size: 1.2rem;
      font-weight: normal;
      margin: 0;
    }

    @media (max-width: 1199px) {
      .services-s3-grids .grid h3 {
        font-size: 15px;
        font-size: 1rem;
      }
    }

    .services-s3-grids .grid h3 a {
      display: block;
      color: #051829;
      padding: 12px 18px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
    }
/* Ensure basic table display properties */
.table-responsive table {
    display: table;
    width: 100%; /* Optional, but common for responsive tables */
}

.table-responsive table tr {
    display: table-row;
}

.table-responsive table th,
.table-responsive table td {
    display: table-cell;
    padding: 8px; /* Add some default padding back if it's gone */
    border: 1px solid #ddd; /* Add a border to see the cells clearly */
}

/* If you're using the .table-responsive class, make sure it's doing its job */
.table-responsive {
    overflow-x: auto; /* Ensures horizontal scrolling if table is too wide */
    -webkit-overflow-scrolling: touch; /* Improves scrolling on touch devices */
}
   

.pricing {
  text-align: center;
}

.pricing .pricing-tab {
  list-style-type: none;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 9px;
  border-radius: 5px;
  
}

.pricing .pricing-tab li {
  float: left;
}

.pricing .pricing-tab li a {
  display: block;
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: bold;
  color: #ffc04a;
  border: 2px solid #ffc04a;
  padding: 15px 80px;
}

@media (max-width: 1199px) {
  .pricing .pricing-tab li a {
    font-size: 14px;
    font-size: 0.93333rem;
    border: 2px solid #ffc04a;
    padding: 10px 50px;
  }
}

@media (max-width: 767px) {
  .pricing .pricing-tab li a {
    padding: 5px 30px;
  }
}

.pricing .pricing-tab li.active a {
  background-color: #ffc04a;
  color: #051829;
}

.pricing .pricing-grids {
  overflow: hidden;
  margin: 0 -15px;
}

.pricing .pricing-grids .pricing-grid {
  width: 33.33%;
  float: left;
  text-align: center;
  padding: 0 15px 15px;
}

@media (max-width: 991px) {
  .pricing .pricing-grids .pricing-grid {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .pricing .pricing-grids .pricing-grid {
    width: 100%;
    float: none;
  }
}

.pricing .pricing-grids .pricing-details {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;
}

.pricing .pricing-grids .pricing-header {
  background-color: #051829;
  padding: 40px 0;
  border-radius: 5px 5px 0 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .pricing .pricing-grids .pricing-header {
    padding: 30px 0;
  }
}

.pricing .pricing-grids .pricing-header h3 {
  font-size: 24px;
  font-size: 1.6rem;
  color: #ffc04a;
  margin: 0;
}

@media (max-width: 1199px) {
  .pricing .pricing-grids .pricing-header h3 {
    font-size: 20px;
    font-size: 1.33333rem;
  }
}

@media (max-width: 991px) {
  .pricing .pricing-grids .pricing-header h3 {
    font-size: 17px;
    font-size: 1.13333rem;
  }
}

.pricing .pricing-grids .pricing-header .price {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
}

@media (max-width: 1199px) {
  .pricing .pricing-grids .pricing-header .price {
    font-size: 40px;
    font-size: 2.66667rem;
  }
}

@media (max-width: 991px) {
  .pricing .pricing-grids .pricing-header .price {
    font-size: 35px;
    font-size: 2.33333rem;
  }
}

.pricing .pricing-grids .pricing-header .price span {
  font-size: 28px;
  font-size: 1.86667rem;
  position: relative;
  top: -13px;
}

@media (max-width: 991px) {
  .pricing .pricing-grids .pricing-header .price span {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.pricing .pricing-grids .pricing-header .sing-up {
  background-color: #ffc04a;
  width: 165px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 600;
  color: #051829;
  display: inline-block;
  border-radius: 5px;
}

@media (max-width: 1199px) {
  .pricing .pricing-grids .pricing-header .sing-up {
    width: 125px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

@media (max-width: 991px) {
  .pricing .pricing-grids .pricing-header .sing-up {
    width: 110px;
    height: 35px;
    line-height: 35px;
  }
}

.pricing .pricing-grids .pricing-header .off {
  background-color: #fd3e03;
  color: #fff;
  display: block;
  padding: 0 25px;
  position: absolute;
  right: -32px;
  top: -24px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.pricing .pricing-grids .pricing-body {
  padding: 40px 15px;
}

.pricing .pricing-grids .pricing-body ul {
  list-style-type: none;
}

.pricing .pricing-grids .pricing-body ul li {
  color: #6a6a6a;
}

.pricing .pricing-grids .pricing-body ul li i {
  color: #ffc04a;
}

.pricing .pricing-grids .pricing-body ul > li + li {
  margin-top: 17px;
}

@media (max-width: 991px) {
  .pricing .pricing-grids .pricing-body ul > li + li {
    margin-top: 14px;
  }
}

.pricing .pricing-grids .pricing-footer {
  border-top: 1px solid #d9d9d9;
  padding: 19px 0;
}

@media (max-width: 1199px) {
  .pricing .pricing-grids .pricing-footer {
    padding: 14px 0;
  }
}

.pricing .pricing-grids .pricing-footer a {
  font-size: 15px;
  font-size: 1rem;
  color: #051829;
}

.pricing .pricing-grids .pricing-footer a span {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing .pricing-grids .pricing-footer a:hover {
  color: #ffc04a;
}

.ss-image{
  width: 107%;
}
.ss-image img{
  max-width: 350% !important;
  border-radius: 5px;
}

/*--------------------------------------------------------------
#4.0	faq-pg-section
--------------------------------------------------------------*/
.faq-pg-section .section-title-s4 p span {
  display: block;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .faq-pg-section .faq-section {
    border: 1px solid #dee0e1;
    padding: 70px;
    border-radius: 5px;
  }
}

.projects-grid-view {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.grid {
  flex: 1 1 calc(33.33% - 32px); /* This calculates the width for three columns, accounting for the gap */
  max-width: calc(33.33% - 32px);
}

.service-class{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.indus-image{
  margin-left: 150%;
  margin-top: 27px;
  width: 100% !important;
}

.J-class{
  margin-top: 20px;
}

.pricing-tab {
   border-radius: 5px;
   overflow: hidden;
   display: inline-flex;
}

.pricing-tab .nav-link {
   border: none;
   border-radius: 0;
   color: #ffc04a;
   font-weight: 600;
   padding: 10px 20px;
   transition: all 0.3s ease;
   background: #fff;
}

.pricing-tab .nav-link.active {
   background-color: #ffc04a !important;
   color: #051829 !important;
   font-weight: 700;
}

.pricing-tab .nav-link:hover {
   background-color: #ffe5a6;
   color: #051829;
}

.pricing-tab .nav-link{
      padding: 15px 80px;
      border: 2px solid #ffc04a !important;
}



@media (max-width: 768px) {
  .thumbnails img {
    width: 30%; /* 3 in a row on tablets */
  }
}
@media (max-width: 576px) {
  .thumbnails img {
    width: 48%; /* 2 in a row on mobile */
  }
}

@media (min-width: 992px) and (max-width: 1200px){
  .main-image img{
    width: 90% !important;
  }
}

@media (min-width: 768px) and (max-width: 992px){
   .section-padding{
    margin-top: -180px !important;
  }
  .stainless1-class{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ss-image{
    margin-left: 14% !important;
    width: 134%;
    
  }
  .ss-image img{
    max-width: 482% !important;
    border-radius: 5px;
  }
  .J-class h3{
    margin-left: 24% !important;
  }
  .table1{
    overflow-x: visible !important;
  }
  .table1 table{
    margin-left: 15% !important;
  }
  .service-class{
    display: block !important;
    margin-left: 16% !important;
  }
  .indus-image{
    margin-left: 150%;
    margin-top: -303px !important;
    width: 80% !important;
  }
  .pricing-tab{
    display: ruby-text !important;
    margin-left: 7% !important;
  }
  .pricing .pricing-grids {
    overflow: hidden;
    margin: 0px -200px !important;
    margin-left: 14% !important;
  }
  .ss1-image{
    margin-left: 8% !important;
    width: 108%;
  }
  .ss1-image img {
    max-width: 430% !important;
    border-radius: 5px;
  }
  .indus1-image {
    margin-left: 116%;
    margin-top: -303px !important;
    width: 80% !important;
  }
  .indus2-image {
    margin-left: 96%;
    margin-top: -303px !important;
    width: 80% !important;
  }
  .pricing-tab1{
    display: ruby-text !important;
    margin-left: -9% !important;
  }
  .pricing .pricing-grids1{
    overflow: hidden;
    margin: 0px -27px !important;
    margin-left: 13% !important;
  }
  .ss2-image{
    margin-left: 14% !important;
    width: 142%;
  }
  .ss2-image img {
    max-width: 448% !important;
    border-radius: 5px;
  }
  .pricing-tab .nav-item:first-child .nav-link {
   border-top-left-radius: 5px;
   border-bottom-left-radius: 5px;
}

.pricing-tab .nav-item:last-child .nav-link {
   border-top-right-radius: 5px;
   border-bottom-right-radius: 5px;
}

.pricing .pricing-tab{
  border-bottom: none !important;
}
}

@media (min-width: 360px) and (max-width: 768px){
  .section-padding{
    margin-top: -180px !important;
  }
  .slider-container{
    width: auto !important;
  }

  .stainless-class p{
    text-align: justify;
  }
  .stain-class{
    margin-top: 40px;
    text-align: center;
  }
  .ss-image .col-md-6{
    width: auto !important;
    max-width: none !important;
  }

  .ss-image img {
    max-width: 368% !important;
    border-radius: 5px !important;
    margin-top: 15px;
  }
  .table-responsive {
    overflow-x: auto !important;
  }
  .service-class {
    display: block !important;
  }
  .indus-image {
    margin-left: 0px !important;
    width: 100% !important;
  }
  .pricing .pricing-tab{
    border-bottom: none !important;
  }
}

@media (min-width: 375px) and (max-width: 370px){

}

@media (min-width: 360px) and (max-width: 370px){
  .ss-image img{
    max-width: 233% !important;
  }
  .ss1-image img{
    max-width: 232% !important;
  }

}