:root {
  --text-color: #1f5ca1;
  --text-color-hover: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.service-container {
  width: 100%;
  padding-top: 100px;
}
.service-section {
  width: 1200px;
  margin: auto;
}
.service-section h1 {
  font-size: 42px;
  text-align: center;
}
.service-section h4 {
  text-align: center;
  color: #000000cc;
}

.service-section .seo-title-one {
  display: flex;
  justify-content: space-between;
}

.service-section .seo-title-one .title {
  font-size: 42px;
  font-weight: bold;
}

.service-section .seo-title-one .text {
  font-size: 20px;
  margin-top: 14px;
}

.service-section .seo-title-one .button {
  width: 160px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: #1f5ca1;
  color: white;
  border-radius: 50px;
  cursor: pointer;
}

.service-section .seo-title-one .button:hover {
  background-color: var(--text-color-hover);
  border: 2px solid #1f5ca1;
  color: #1f5ca1;
}

.product-title {
  width: 100%;
  text-align: center;
  color: #000000cc;
  font-weight: bold;
}

.product-title-main {
  font-size: 42px;
  color: #323232;
}

.service-section .row {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-section .row .col {
  width: 31.5%;
  border: 1px solid #f5f5f5;
  display: flex;
  padding: 20px 20px;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
}

.service-section .row .col .left {
  position: relative;
  margin-right: 70px;
}

.service-section .row .col .left .img img {
  width: 40px;
  height: 46px;
  transition: all 0.5s ease-in-out;
  position: absolute;
}

.service-section .row .col .left h1 {
  font-size: 45px;
  color: #d1d1d1;
  position: absolute;
  bottom: 0px;
}

.service-section .row .col .text {
  font-size: 15px;
  line-height: 30px;
  margin-top: 10px;
}

.service-section .row .col h2 {
  margin: 0;
}

.service-section .row .col:hover {
  box-shadow: 0px 0px 30px 0px rgba(88, 88, 88, 0.2);
  border-color: #fff;
}

.service-section .row .col:hover h2 {
  color: #1f5ca1;
}

.service-section .row .col:hover .img img {
  width: 43px;
  height: 49px;
}

@media (max-width: 1024px) {
  .service-section .seo-title-one {
    display: inline-block !important;
  }

  .service-section .seo-title-one .title {
    font-weight: 500 !important;
  }

  .service-section .seo-title-one .button {
    margin-top: 20px;
  }

  .service-section .row {
    display: inline-block !important;
  }

  .service-section .row .col {
    width: calc(100% - 40px) !important;
  }
}

.hidden {
  display: none;
}
