/* Global Overflow Fix */
body {
  overflow-x: hidden;
}

/* Lead Section */
.vts-lead {
  position: relative;
  overflow-x: hidden;
}

section.lead {
  background-color: #196bbb;
  padding: 100px 0;
  overflow-x: hidden;
}

.lead-line::after {
  content: '';
  background-image: url(https://vutruso.com/wp-content/uploads/2020/11/header-shape.svg);
  background-size: 101%;
  background-repeat: no-repeat;
  background-position: bottom;
  display: block;
  height: 100%;
  position: absolute;
  bottom: -6px;
  left: -1px;
  right: 0;
  z-index: 1;
}

.lead-text h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 28px;
  font-family: 'Baloo Chettan 2';
}

.lead-text h1 span {
  font-size: 6.2rem;
  line-height: 79px;
  color: #edf0f8a6;
}

.lead-text p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.lead-text p span.clear {
  display: block;
}

.lead-text .rating {
  display: none;
}

.lead-picture {
  text-align: center;
}

.lead-picture img {
  max-width: 100%;
}

.lead-button {
  background-color: #EBB000;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  margin-top: 4%;
}

.lead-button a {
  color: #fff;
  text-decoration: none;
  padding: 16px 62px 16px 98px;
  display: block;
  font-size: 20px;
  text-transform: uppercase;
}

.lead-button a:before {
  background-image: url(https://vutruso.com/wp-content/themes/vutruso/assets/images/tool-button.png);
  background-size: 32px;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  top: 16px;
  left: 36px;
  position: absolute;
  content: "";
}

.lead-button:active,
.lead-button:hover,
.lead-button:focus {
  background-color: #e0a801;
}

/* Lead Heading */
.lead-heading {
  text-align: center;
  margin: 0 auto 2%;
  width: 100%;
  clear: both;
  display: block;
}

.lead-heading h2 {
  font-size: 4.2rem;
  font-family: 'Baloo Chettan 2';
}

.lead-heading p {
  font-size: 2.2rem;
  margin-bottom: 0;
}

/* Accordion */
.accordion {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 15px;
}

.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: #3498db;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.accordion-item-header {
  padding: 15px 3rem 15px 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}

.accordion-item-header.active {
  background-color: #e7f1ff;
}

.accordion-item-header::after {
  content: '+';
  font-size: 1.5em;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-item-header.active::after {
  content: '-';
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item-body-content {
  padding: 15px;
  line-height: 1.5;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.active .accordion-item-body {
  display: block !important;
}

/* Section Wrapper */
.section_wrapper {
  width: 100%;
  font-size: 20px;
  background-color: #EBF7FF;
  overflow-x: hidden;
}

h2.title {
  margin-bottom: 3px;
  display: block;
  clear: both;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  font-weight: 400;
  color: #454545;
  font-family: 'Baloo Chettan 2';
}

h3.subtitle {
  margin: 0 0 50px;
  display: block;
  clear: both;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
  font-weight: 400;
  color: #333;
}

/* Separator */
.separator_wrapper {
  margin-bottom: 10px;
}

.separator_first_circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 3px solid #3498db;
  border-radius: 7px;
}

.separator_second_circle {
  float: left;
  width: 4px;
  height: 4px;
  background-color: #3498db;
  border: 2px solid #fff;
  border-radius: 4px;
}

.separator_wrapper::after,
.separator_wrapper::before {
  background-color: #3498db;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 70px;
  height: 1px;
  margin-top: -6px;
}

/* Home Services */
.home_services {
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.home_services:hover {
  border-color: #3498db;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.15);
  transform: translateY(-3px);
}

.home_services h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  clear: both;
}

.home_services p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #444;
}

.process-step p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #444;
}

span.circle_icons {
  display: block;
  margin-bottom: 15px;
}

span.circle_icons i {
  margin: 0;
  font-size: 42px;
  float: none;
  color: #3498db;
  transition: all .5s ease-in-out;
  display: inline-block;
}

.section_box {
  padding: 30px 0
}

.section_box .twelvecol h3 {
  text-align: center;
  margin-bottom: 15px;
}

/* Ensure proper spacing for home_services grid */
@media (min-width: 992px) {

  /* 3 columns on large screens */
  .section_wrapper .row>[class*="col-lg-4"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* 2 columns on tablets */
  .section_wrapper .row>[class*="col-md-6"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {

  /* 1 column on mobile */
  .section_wrapper .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Malware List */
.mal li {
  font-size: 15px;
  line-height: 26px;
  margin: 0 0 10px 0;
  padding: 0 15px 0 20px;
  background: url(https://vutruso.com/wp-content/uploads/2020/08/li-bg.png) no-repeat left 5px;
}

/* Process Section */
.process {
  padding: 23px 0;
  background-color: #EBF7FF;
  background-image: url(https://vutruso.com/wp-content/themes/vutruso/assets/images/sekcja3_bg.jpg);
  overflow-x: hidden;
}

.process img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.process .text-center {
  font-size: 15px;
  line-height: 24px;
  color: #333;
  font-weight: 500;
  margin-top: 12px;
}

.process .mb-4 {
  margin-bottom: 30px;
}

.process-step {
  text-align: center;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: #3498db;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
  transform: translateY(-5px);
}

.process-step h4 {
  font-size: 18px;
  padding-bottom: 14px;
  color: #222;
  font-weight: 700;
  margin-top: 10px;
}

.process-step .icon {
  margin-bottom: 15px;
}

.process-step .icon img {
  max-width: 120px;
  height: auto;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.one-third {
  flex: 1;
}

.first {
  margin-left: 0;
}

.last {
  margin-right: 0;
}

/* Service Section */
.service-section {
  position: relative;
  padding: 10px 0;
}

.service-section .service-title {
  position: relative;
  margin-bottom: 20px;
}

.service-section .service-title .title {
  position: relative;
  font-size: 32px;
  line-height: 57px;
  color: #222;
  margin-bottom: 6px;
}

.service-section .service-title p {
  font-style: italic;
  font-size: 16px;
  margin-top: 2%;
}

.service-section .service-content .single-item {
  position: relative;
  border: 2px solid #f0f0f0;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 500ms ease;
  min-height: 230px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-section .service-content .single-item:hover {
  border-color: #3498db;
  box-shadow: 0 4px 16px rgba(52, 152, 219, 0.15);
  transform: translateY(-2px);
}

.service-section .service-content .single-item .img-box {
  margin-bottom: 20px;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  background: #71d456;
  width: 64px;
  height: 64px;
}

.service-section .service-content .service-column:nth-child(2) .single-item .img-box {
  background: #fbd303;
}

.service-section .service-content .service-column:nth-child(3) .single-item .img-box {
  background: #4b5aa7;
}

.service-section .service-content .service-column:nth-child(4) .single-item .img-box {
  background: #ff553e;
}

.service-section .service-content .service-column:nth-child(5) .single-item .img-box {
  background: #ff553e;
}

.service-section .service-content .service-column:nth-child(6) .single-item .img-box {
  background: #fbd303;
}

.service-section .service-content .single-item .img-box img {
  width: 100%;
}

.service-section .service-content .single-item h5 {
  margin-bottom: 15px;
  font-size: 17px;
}

.img-box i {
  line-height: 2.3em;
}

.lower-content p {
  font-size: 14px;
  line-height: 21px;
}

.centred {
  text-align: center;
}

/* Form Area */
.service-section .form-area {
  background: #df5626;
  padding: 30px 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.service-section .form-area .title {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 0;
}

.service-section .form-area input[type='tel'],
.service-section .form-area input[type='text'],
.service-section .form-area input[type='email'],
.service-section .form-area textarea {
  position: relative;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #efab93;
  margin-bottom: 0;
  font-style: italic;
  color: #fff;
  padding: 33px 10px 13px 8px !important;
  transition: all 900ms ease;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
}

.service-section .form-area input:focus,
.service-section .form-area textarea:focus {
  border-bottom: 1px solid #111;
  transition: all 900ms ease;
}

.service-section .form-area textarea {
  height: 168px;
  resize: none;
  margin-bottom: 22px;
}

.service-section .form-area button,
.service-section .wpcf7-submit {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  height: 55px;
  width: 100%;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  transition: all 500ms ease;
  cursor: pointer;
}

.service-section .form-area button:hover {
  background: transparent;
  color: #111;
}

.service-section .wpcf7-response-output {
  margin: 0 0.5em 1em;
  border: 2px solid #ff0000;
}

.service-section span.wpcf7-not-valid-tip {
  color: #111;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.54;
}

:-ms-input-placeholder {
  color: #fff;
}

::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

/* Pricing Table */
.dt-sc-fullwidth-section {
  clear: both;
  float: left;
  margin: 3% 0 0;
  padding: 20px 0;
  width: 100%;
  overflow-x: hidden;
}

.dt-sc-fullwidth-section h2 {
  font-size: 22px;
  margin-bottom: 2px;
  text-align: center;
  text-transform: capitalize;
  font-family: 'Baloo Chettan 2';
}

.dt-sc-pricing-table {
  float: left;
  line-height: 1;
  margin-bottom: 20px;
  padding: 0;
  width: 100%;
  margin-left: -3px;
  margin-top: 3%;
}

.dt-sc-pricing-table.type2 table {
  border-left: none;
}

.dt-sc-pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  border-color: #dfdfdf;
  border-style: solid;
  border-width: 1px 0 0 1px;
  clear: both;
  margin: 0 0 20px;
  width: 100%;
  padding: 0;
}

.dt-sc-pricing-table td {
  background: #fff;
  border-color: #dfdfdf;
  border-style: solid;
  border-width: 0 1px 1px 0;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  padding: 12px 10px;
}

.dt-sc-pricing-table.type2 td {
  line-height: 28px;
  padding: 16px 15px;
  width: 155px;
  background-color: #fff;
}

.dt-sc-pricing-table.type2 td:first-child {
  font-size: 13px;
  padding-left: 0;
  text-align: left;
  font-weight: 500;
  text-transform: none;
}

.dt-sc-pricing-table.type2 td:last-child {
  border-right: none;
}

.dt-sc-pricing-table img {
  height: auto;
  max-width: 100%;
}

.dt-sc-pricing-table img.size-full {
  max-width: 99.6%;
  height: auto;
  width: 100px;
}

.table-separator td {
  padding: 5px 10px !important;
}

.dt-sc-pricing-table.type2 table.pricing-table {
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  table-layout: fixed;
  width: 100%;
}

.dt-sc-pricing-table.type2 table.pricing-table .table-separator td {
  background: #e1e1e1;
  border-top: 1px solid #464646;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}

.dt-sc-pricing-table.type2 table.pricing-table .table-header td,
.dt-sc-pricing-table.type2 table.pricing-table .table-content td {
  border-left: 1px solid #464646;
  border-top: 1px solid #464646;
  padding: 20px 6px 12px;
  line-height: 18px;
}

.dt-sc-pricing-table.type2 table.pricing-table td.last {
  border-right: 1px solid #464646;
}

.pricing-table .title-row-1 .first-col h3 {
  color: #d47b09;
  font-size: 1.2em;
  font-weight: 600;
  padding: 5px 0;
  margin: 0;
}

.pricing-table .title-row-1 .first-col p.packages {
  line-height: 38px;
  font-size: 1em;
  color: #233d87 !important;
  font-weight: 800;
  padding: 0 0 0 20px;
}

.pricing-table .table-header {
  border-left: 1px solid #464646;
  border-top: 1px solid #464646;
  color: #000 !important;
}

.pricing-table .table-header p {
  color: #fff !important;
}

.pricing-table .table-content {
  border-left: 1px solid #797979;
  border-top: 1px solid #797979;
}

.pricing-table .table-content td {
  font-size: 11px !important;
}

.pricing-table p {
  font-size: 1em;
  line-height: 15pt;
}

.pricing-table p.desc {
  font-size: 14px;
  margin: -1px 0 !important;
  white-space: nowrap;
  font-weight: 500;
}

.pricing-table p.actual-price {
  font-size: 28px;
  margin: 0 0 5px !important;
  white-space: nowrap;
  font-weight: 700;
  font-style: italic;
}

.pricing-table .table-header .plan1 {
  background: #f8981d !important;
  color: #fff !important;
}

.pricing-table .table-header .plan1 div.head {
  position: relative;
}

.one-plans .table-header.title-row-1 td {
  width: 40%;
}

.one-plans .table-header td.plan1 {
  width: 50%;
}

.one-plans .table-header .plan1 .actual-price {
  padding-top: 18px;
}

/* Utility Classes */
.clearfix::before,
.clearfix::after,
.wrap::before,
.wrap::after {
  content: " ";
  display: table;
}

.clearfix::after,
.wrap::after {
  clear: both;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-two {
  color: #222;
  font-size: 14px;
  background: transparent;
  padding: 3px;
  position: relative;
  border-bottom: 2px solid #df5626;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  z-index: 1;
}

.btn-two:hover {
  color: #df5626;
}

/* Card Styles */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-body h4 {
  padding-bottom: 12%;
}

.btnAnimated {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #fff;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  line-height: 42px;
  text-align: center;
  padding: 0 20px 0 45px;
  background: #ef323a;
  border-radius: 28px;
  transition: all 0.3s ease-in-out;
}

.btnAnimated:hover {
  text-decoration: none;
}

.btnAnimated:before {
  position: absolute;
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  top: 11px;
  left: 19px;
  z-index: -1;
  pointer-events: none;
  background-color: unset;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(1, 42, 94, 1);
}

.btnAnimated:after {
  position: absolute;
  display: block;
  content: '';
  width: 22px;
  height: 22px;
  top: 10px;
  left: 18px;
  z-index: -1;
  pointer-events: none;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #0c49c4;
}

.btnAnimated:hover:before {
  transition: all 0.5s ease-in-out 0.2s;
  box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
}

.yellow-btn-default {
  background: #0c49c4;
  border-radius: 100px;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff !important;
  line-height: 49px;
}

.yellow-btn-default:before {
  box-shadow: 0 0 0 0 #fff;
  top: 13px;
}

.yellow-btn-default:after {
  box-shadow: inset 0 0 0 6px #fff;
  top: 13px;
}

.yellow-btn-default:hover {
  background: #110F0F;
  color: #fff;
}

.small-title {
  font-size: 18px;
}

.spaceTop75 {
  padding-top: 75px;
}

.border_bottom {
  border-bottom: 2px solid #0c49c4;
  padding-bottom: 8px;
  display: inline-block;
  font-size: 28px;
}

.bold {
  font-weight: 600;
}

.circle-bg {
  background: url(https://vutruso.com/wp-content/themes/vutruso/assets/images/top-circle.png) left top no-repeat, url(https://vutruso.com/wp-content/themes/vutruso/assets/images/bottom-circle.png) 105% 190% no-repeat;
  background-color: rgba(195, 205, 225, 0.08);
}

.columns2 .card {
  height: auto;
  margin-bottom: 35px;
  padding-top: 30px;
  display: inline-block;
  width: 100%;
}

.rounded-corner {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.rounded-corner:hover {
  border-color: #3498db;
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.15);
  transform: translateY(-3px);
}

.common-section {
  background-repeat: no-repeat !important;
  clear: both;
  overflow-x: hidden;
}

.common-section {
  background-repeat: no-repeat !important;
  clear: both;
}

/* Animations */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.bounceIn {
  animation-name: bounceIn;
}

.slideInRight {
  animation-name: slideInRight;
}

.slideInUp {
  animation-name: slideInUp;
}

/* Keyframes */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Media Queries */
@media only screen and (max-width: 1200px) {
  .service-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 1024px) {
  .card-columns {
    padding-top: 32px;
  }

  .spaceTop75 {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .service-section .service-content {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1240px) {
  .dt-sc-pricing-table img {
    height: auto;
    max-width: 100%;
  }

  .dt-sc-pricing-table td {
    padding: 10px 5px;
    font-size: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .dt-sc-pricing-table img {
    height: auto;
  }

  .dt-sc-pricing-table td {
    font-size: 12px;
  }
}

@media only screen and (max-width: 860px) {
  .lead-picture {
    display: none;
  }

  .lead-text h1,
  .lead-text h1 span {
    font-size: 2rem;
    text-align: left;
  }

  .lead-text p {
    font-size: 1rem;
  }

  .lead-text p span.clear {
    display: inline;
  }

  section.lead {
    padding: 69px 0 44px;
  }

  .one-third {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .process-container {
    gap: 15px;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
    column-gap: 1.25rem;
  }

  .pricing-table .table-content td {
    font-size: 13px !important;
  }

  .pricing-table p {
    font-size: 11pt;
    line-height: 15pt;
  }
}

@media (max-width: 768px) {
  .common-section p {
    font-size: 16px;
    line-height: 27px;
  }

  .card-body {
    padding: 20px;
  }

  .spaceTop75 {
    padding-top: 30px;
  }

  .yellow-btn-default {
    margin-bottom: 30px;
    margin-top: 15px !important;
  }

  /* Prevent horizontal overflow */
  .innerContainer,
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Fix pricing table wrapper */
  .dt-sc-pricing-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media only screen and (max-width: 767px) {

  .service-section .service-content:before,
  .service-section .service-content:after {
    display: none;
  }

  .yellow-btn-default {
    margin-bottom: 30px;
  }

  p {
    font-size: 16px;
  }

  /* Fix responsive pricing table */
  .dt-sc-pricing-table {
    margin-left: 0;
    padding: 0 10px;
  }

  .dt-sc-pricing-table.type2 table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .dt-sc-pricing-table.type2 table.pricing-table {
    min-width: 600px;
    margin: 0;
  }

  /* Fix container overflow */
  .innerContainer,
  .container {
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Fix accordion on mobile */
  .accordion {
    padding: 0 10px;
  }

  .accordion-item-header {
    padding: 12px 2.5rem 12px 0.8rem;
    font-size: 14px;
  }

  .accordion-item-body-content {
    padding: 12px;
    font-size: 14px;
  }

  /* Fix service items */
  .service-section .service-content .single-item {
    padding: 15px;
    min-height: auto;
  }

  /* Fix form area */
  .service-section .form-area {
    padding: 20px 15px;
    margin: 0 10px;
  }

  /* Fix home services */
  .home_services {
    padding: 20px 15px;
    margin-bottom: 20px;
    min-height: auto;
  }

  .home_services h4 {
    font-size: 16px;
  }

  span.circle_icons i {
    font-size: 36px;
  }

  /* Fix process step on mobile */
  .process-step {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .process-step .icon img {
    max-width: 100px;
  }

  .process-step h4 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 13px;
    line-height: 20px;
  }

  /* Fix process images caption on mobile */
  .process .text-center {
    font-size: 14px;
    line-height: 22px;
  }

  .process .mb-4 {
    margin-bottom: 20px;
  }

  .columns2 .card{
    padding: 10px 0;
  }

}

@media (min-width: 576px) and (max-width: 767px) {
  .card {
    flex: 2 1 44% !important;
    margin-bottom: 25px !important;
  }

  .card-columns {
    column-count: 2;
  }
}

@media only screen and (min-width: 480px) {
  .dt-sc-pricing-table {
    margin-left: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 479px) {

  .process-container {
    gap: 0;
  }

  .dt-sc-pricing-table td {
    font-size: 10px;
    padding: 8px 5px;
  }

  .dt-sc-pricing-table.type2 td {
    font-size: 11px;
  }

  .dt-sc-pricing-table.type2 td:first-child {
    font-size: 11px;
  }

  .spaceTop75 {
    padding-top: 30px;
  }

  /* Extra small screens */
  .lead-text h1 {
    font-size: 1.5rem;
  }

  .lead-text h1 span {
    font-size: 3rem;
    line-height: 1.2;
  }

  .lead-button a {
    padding: 12px 40px 12px 70px;
    font-size: 16px;
  }

  .lead-button a:before {
    width: 24px;
    height: 24px;
    background-size: 24px;
    left: 20px;
    top: 12px;
  }

  .accordion-item-header {
    font-size: 13px;
    padding: 10px 2rem 10px 0.5rem;
  }

  .section_box {
    padding: 4% 3% 50px;
  }

  h2.title {
    font-size: 22px;
    line-height: 32px;
  }

  h3.subtitle {
    font-size: 15px;
    line-height: 26px;
    color: #333;
    font-weight: 400;
  }

  /* Fix process step images on screens */
  .process-step .icon img {
    max-width: 80px!important;
  }

  .process-step {
    padding: 15px 10px;
  }

  .process-step h4 {
    font-size: 15px;
  }

  .process-step p {
    font-size: 12px;
    line-height: 18px;
  }

  /* Fix home services on small screens */
  .home_services {
    padding: 15px 10px;
  }

  .home_services h4 {
    font-size: 15px;
  }

  .home_services p {
    font-size: 13px;
    line-height: 20px;
  }

  span.circle_icons i {
    font-size: 32px;
  }
}