@charset "UTF-8";
/* -------------------------------------------- */
/* 全体 */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* 見出し・パーツ */
/* -------------------------------------------- */
/* ------- 全体 ------- */
/* ホバー（半透明） */
/* ボタン */
/* ボタン（戻る） */
/* ------- TOP ------- */
/* 見出し */
/* ボタン */
/* ------- 下層 ------- */
/* メインビジュアル */
/* メインビジュアル 見出し */
/* 見出し */
/* ------- サービス・請求書 ------- */
/* 特長 */
/* お問い合わせ導線 */

:root {
  --mega-color-primary: #1e438c;
    --mega-color-secondary: #1260b1;
  --mega-gradient-primary: linear-gradient(90deg, var(--mega-color-primary) 0%, var(--mega-color-secondary) 100%);
}

.service-mv {
  width: 100%;
  height: 330px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  z-index: 1;
  background-image: url(../images/service/service-mv.jpg);
}

@media print,
only screen and (max-width: 1300px) {
  .service-mv {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 850px) {
  .service-mv {
    height: 160px;
    margin-top: 60px;
    border-radius: 0 0 30px 30px;
  }
}

.service-mv::before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 72, 152, 0)), to(rgba(0, 72, 152, 0.5)));
  background: -webkit-linear-gradient(top, rgba(0, 72, 152, 0) 0%, rgba(0, 72, 152, 0.5) 100%);
  background: linear-gradient(180deg, rgba(0, 72, 152, 0) 0%, rgba(0, 72, 152, 0.5) 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}

.service-mv-inner {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 850px) {
  .service-mv-inner {
    max-width: 90%;
    width: 100%;
  }
}

.service-mv-heading {
  position: absolute;
  top: 48%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-mv-heading__main {
  color: #fff;
  font-family: "Poppins";
  font-size: 70px;
  font-weight: 500;
}

@media only screen and (max-width: 850px) {
  .service-mv-heading__main {
    font-size: 46px;
  }
}

.service-mv-heading__sub {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-top: 18px;
}

@media only screen and (max-width: 850px) {
  .service-mv-heading__sub {
    font-size: 16px;
    padding-top: 10px;
  }
}

.service-mv-heading__main {
  color: #004898;
}

.service-mv-heading__sub {
  color: #004898;
}

.service-menu {
  max-width: 1000px;
  width: 90%;

  position: relative;

  padding-top: 76px;
  margin-right: auto;
  margin-left: auto;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  gap: 1.125rem;
}

@media only screen and (max-width: 850px) {
  .service-menu {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .service-menu {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    gap: 15px;
  }
}

.service-menu-item {
  width: 100%;
}

@media only screen and (max-width: 850px) {
  .service-menu-item {
    width: 100%;
  }
}

.service-menu-item__link {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  line-height: 60px;
  position: relative;
  color: #004898;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.04em;
  border: 1px solid #004898;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 70px;
  border-radius: 40px;
  padding-left: 50px;
}

.service-menu-item__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 28px;
  height: 28px;
  background-image: url(../images/common/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.service-menu-item__link:hover::before {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.service-menu-item__link span {
  display: inline-block;
}

@media only screen and (max-width: 850px) {
  .service-menu-item__link {
    display: block;
    margin-left: auto;
    margin-right: auto;
    line-height: 60px;
  }
}

.service-menu-item__link::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.service-menu-item__link:hover::before {
  -webkit-transform: rotate(90deg) scale(1.15);
  transform: rotate(90deg) scale(1.15);
}

.service-askul-inner {
  padding-top: 105px;
  padding-bottom: 75px;
}

@media only screen and (max-width: 850px) {
  .service-askul-inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.service-askul-title,
.service-recycling-title,
.service-soloel-title {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  color: #004898;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 3.6px;
  border-bottom: 1px solid #D5DCE4;
  padding-bottom: 28px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 850px) {

  .service-askul-title,
  .service-recycling-title,
  .service-soloel-title {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {

  .service-askul-title,
  .service-recycling-title,
  .service-soloel-title {
    font-size: 28px;
    border-bottom: 1px solid #D5DCE4;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}

.service-askul-title::before,
.service-recycling-title::before,
.service-soloel-title::before {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #004898;
}

.service-askul-text,
.service-recycling-text,
.service-soloel-text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.64px;
}

@media only screen and (max-width: 850px) {

  .service-askul-text,
  .service-recycling-text,
  .service-soloel-text {
    width: 100%;
  }
}

.service-askul-box,
.service-recycling-box,
.service-soloel-box {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 850px) {

  .service-askul-box,
  .service-recycling-box,
  .service-soloel-box {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {

  .service-askul-box,
  .service-recycling-box,
  .service-soloel-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.service-askul-feature,
.service-soloel-feature {
  max-width: 1200px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  padding-top: 65px;
  padding-bottom: 70px;
  background-color: #F0F3F5;
  border-radius: 30px;
}

@media only screen and (max-width: 850px) {

  .service-askul-feature,
  .service-soloel-feature {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {

  .service-askul-feature,
  .service-soloel-feature {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 20px;
  }
}

.service-askul-feature-title,
.service-soloel-feature-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2.8px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 850px) {

  .service-askul-feature-title,
  .service-soloel-feature-title {
    font-size: 24px;
    padding-bottom: 30px;
  }
}

.service-askul-feature-list {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.2%;
}

@media only screen and (max-width: 850px) {
  .service-askul-feature-list {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .service-askul-feature-list {
    gap: 20px;
  }
}

.service-askul-feature-list-item {
  width: 31.2%;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 72, 152, 0.07);
  box-shadow: 0px 0px 15px 0px rgba(0, 72, 152, 0.07);
}

@media only screen and (max-width: 850px) {
  .service-askul-feature-list-item {
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;
  }
}

@media print,
only screen and (min-width: 851px) {
  .service-askul-feature-list-item:nth-of-type(n+4) {
    margin-top: 40px;
  }
}

.service-askul-feature-list-item__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.service-askul-feature-list-item__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  padding-top: 15px;
  color: #004898;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 2.2px;
}

@media print,
only screen and (max-width: 1200px) {
  .service-askul-feature-list-item__title {
    white-space: unset;
  }
}

@media only screen and (max-width: 850px) {
  .service-askul-feature-list-item__title {
    font-size: 18px;
  }
}

.service-askul-feature-list-item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.64px;
  padding-top: 15px;
}

@media only screen and (max-width: 850px) {
  .service-askul-feature-list-item__text {
    padding-top: 10px;
  }
}

.service-askul-feature-list-item__link {
  text-decoration: underline;
}

.service-askul-feature-list-item__link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service-soloel-inner {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.service-soloel-feature-list {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.2%;
}

@media only screen and (max-width: 850px) {
  .service-soloel-feature-list {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .service-soloel-feature-list {
    gap: 20px;
  }
}

.service-soloel-feature-list-item {
  width: 31.2%;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 72, 152, 0.07);
  box-shadow: 0px 0px 15px 0px rgba(0, 72, 152, 0.07);
}

@media only screen and (max-width: 850px) {
  .service-soloel-feature-list-item {
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;
  }
}

@media print,
only screen and (min-width: 851px) {
  .service-soloel-feature-list-item:nth-of-type(n+4) {
    margin-top: 40px;
  }
}

.service-soloel-feature-list-item__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.service-soloel-feature-list-item__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  padding-top: 15px;
  color: #004898;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 2.2px;
}

@media print,
only screen and (max-width: 1200px) {
  .service-soloel-feature-list-item__title {
    white-space: unset;
  }
}

@media only screen and (max-width: 850px) {
  .service-soloel-feature-list-item__title {
    font-size: 18px;
  }
}

.service-soloel-feature-list-item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.64px;
  padding-top: 15px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-feature-list-item__text {
    padding-top: 10px;
  }
}

.service-soloel-feature-list-item__link {
  text-decoration: underline;
}

.service-soloel-feature-list-item__link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service-soloel-difference {
  z-index: 2;
}

.service-soloel-difference-inner {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-difference-inner {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .service-soloel-difference-inner {
    padding-top: 40px;
  }
}

.service-soloel-difference-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2.8px;
  padding-bottom: 65px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-difference-title {
    line-height: 1.6em;
    font-size: 24px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 850px) {
  .service-soloel-difference-scroll {
    padding-left: 0;
    overflow-x: scroll;
    padding-top: 10px;
  }
}

.service-soloel-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  vertical-align: middle;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}

.service-soloel-table .askul {
  color: #004098;
}

.service-soloel-table .soloel {
  color: #35b6da;
}

.service-soloel-table-heading__th {
  width: 36%;
  line-height: 92px;
  position: relative;
  background-color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-right: 1px solid #D5DCE4;
  border-bottom: 1px solid #D5DCE4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-heading__th {
    line-height: 80px;
    font-size: 18px;
  }
}

.service-soloel-table-heading__th:first-of-type {
  width: 28%;
  background-color: unset;
  border-bottom: none;
}

.service-soloel-table-heading__th:first-of-type::before {
  content: none;
}

.service-soloel-table-heading__th:nth-of-type(2)::before {
  background-color: #004098;
  border-radius: 10px 0 0 0;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-heading__th:nth-of-type(2)::before {
    border-radius: 5px 0 0 0;
  }
}

.service-soloel-table-heading__th:nth-of-type(3)::before {
  background-color: #35b6da;
  border-radius: 0 10px 0 0;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-heading__th:nth-of-type(3)::before {
    border-radius: 0 5px 0 0;
  }
}

.service-soloel-table-heading__th::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 8px;
  border-radius: 10px 10px 0 0;
}

.service-soloel-table-heading__th img {
  height: 90px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-heading__th img {
    height: 80px;
  }
}

.service-soloel-table-heading__th-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #626161;
  margin-bottom: 8px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-heading__th-text {
    font-size: 10px;
    line-height: 14px;
  }
}

.service-soloel-table-content {
  border-radius: 10px 0 10px 10px;
  background: -webkit-linear-gradient(302deg, #004898 17.63%, #008ED3 79.02%);
  background: linear-gradient(148deg, #004898 17.63%, #008ED3 79.02%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 28% 100%;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content {
    border-radius: 5px 0 5px 5px;
    background-size: cover;
  }
}

.service-soloel-table-content__tr .service-soloel-table-content__td {
  background-color: #F0F3F5;
}

.service-soloel-table-content__tr:nth-of-type(even) .service-soloel-table-content__td {
  background-color: #fff;
}

.service-soloel-table-content__tr:first-of-type .service-soloel-table-content__th {
  border-radius: 10px 0 0 0;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__tr:first-of-type .service-soloel-table-content__th {
    border-radius: 5px 0 0 0;
  }
}

.service-soloel-table-content__tr:last-of-type .service-soloel-table-content__th {
  border-radius: 0 0 0 10px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__tr:last-of-type .service-soloel-table-content__th {
    border-radius: 0 0 0 5px;
  }
}

.service-soloel-table-content__tr:last-of-type .service-soloel-table-content__td {
  border-bottom: 1px solid #D5DCE4;
}

.service-soloel-table-content__tr:last-of-type .service-soloel-table-content__td:last-of-type {
  border-radius: 0 0 10px 0;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__tr:last-of-type .service-soloel-table-content__td:last-of-type {
    border-radius: 0 0 5px 0;
  }
}

.service-soloel-table-content__th {
  width: 28%;
  height: 70px;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.64px;
  padding-top: 10px;
  padding-left: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__th {
    height: 60px;
    font-size: 15px;
    line-height: 1.2em;
    padding-top: 8px;
    padding-bottom: 8px;
    padding: 8px 12px;
  }
}

.service-soloel-table-content__td {
  width: 36%;
  height: 70px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4em;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 1px solid #D5DCE4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__td {
    height: 60px;
    font-size: 15px;
    padding: 8px;
  }
}

.service-soloel-table-content__td-small {
  font-size: 14px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__td-small {
    font-size: 12px;
  }
}

.service-soloel-table-content__td-large {
  font-size: 20px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-table-content__td-large {
    font-size: 18px;
  }
}

.service-soloel-caption {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  padding-top: 40px;
}

@media only screen and (max-width: 850px) {
  .service-soloel-caption {
    padding-top: 20px;
    line-height: 1.5em;
    padding-left: 37px;
    text-indent: -37px;
  }
}

.service-recycling {
  padding-bottom: 150px;
}

@media only screen and (max-width: 850px) {
  .service-recycling {
    padding-bottom: 90px;
  }
}

.service-recycling-inner {
  padding-top: 127px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 850px) {
  .service-recycling-inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 850px) {
  .service-recycling-title {
    font-size: 24px;
  }
}

@media print,
only screen and (min-width: 851px) {
  .service-recycling-img {
    width: 35%;
  }
}

@media only screen and (max-width: 850px) {
  .service-recycling-img {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.service-recycling-box {
  padding-bottom: 0;
}

.service-recycling-left {
  width: 60%;
}

@media only screen and (max-width: 850px) {
  .service-recycling-left {
    width: 100%;
  }
}

.service-recycling-banner {
  display: block;
  width: 100%;
  max-width: 450px;
  margin-top: 37px;
}

@media only screen and (max-width: 850px) {
  .service-recycling-banner {
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }
}

.service-recycling-banner:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service-contact {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 850px) {
  .service-contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.service-contact::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-linear-gradient(341deg, #004898 0%, #008ED3 100%);
  background: linear-gradient(109deg, #004898 0%, #008ED3 100%);
  opacity: 1;
  mix-blend-mode: multiply;
  z-index: -1;
}

.service-contact::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/common/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -2;
}

.service-contact-inner {
  max-width: 1000px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 47px;
  padding-bottom: 40px;
  background-color: #fff;
  border-radius: 30px;
}

@media only screen and (max-width: 850px) {
  .service-contact-inner {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .service-contact-inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.service-contact-heading {
  text-align: center;
  padding-bottom: 24px;
}

@media only screen and (max-width: 850px) {
  .service-contact-heading {
    padding-bottom: 20px;
  }
}

.service-contact-heading__main {
  color: #004898;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.8px;
}

@media only screen and (max-width: 850px) {
  .service-contact-heading__main {
    font-size: 22px;
    line-height: 1.2em;
  }
}

.service-contact-heading__sub {
  color: #717A83;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-top: 16px;
}

@media only screen and (max-width: 850px) {
  .service-contact-heading__sub {
    padding-top: 10px;
  }
}

.service-contact-list {
  max-width: 750px;
  width: 90%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4%;
}

@media only screen and (max-width: 850px) {
  .service-contact-list {
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  .service-contact-list {
    max-width: 400px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.service-contact-list-item {
  width: 48%;
  text-align: center;
}

@media only screen and (max-width: 850px) {
  .service-contact-list-item {
    width: 100%;
  }
}

.service-contact-list-item:last-of-type {
  margin-right: 0;
}

.service-contact-list-item:nth-of-type(1) .service-contact-list-item__link {
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 500;
  color: #004898;
  border: 2px solid #004898;
}

@media only screen and (max-width: 850px) {
  .service-contact-list-item:nth-of-type(1) .service-contact-list-item__link {
    font-size: 18px;
  }
}

.service-contact-list-item:nth-of-type(1) .service-contact-list-item__title::before {
  width: 26px;
  height: 25px;
  background-image: url(../images/common/contact-tel-icon.svg);
}

.service-contact-list-item:nth-of-type(2) .service-contact-list-item__link {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: -webkit-linear-gradient(341deg, #004898 0%, #008ED3 100%);
  background: linear-gradient(109deg, #004898 0%, #008ED3 100%);
}

.service-contact-list-item:nth-of-type(2) .service-contact-list-item__title::before {
  width: 20px;
  height: 14px;
  background-image: url(../images/common/contact-mail-icon--blue.svg);
}

.service-contact-list-item__title {
  min-height: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 17px;
}

@media only screen and (max-width: 850px) {
  .service-contact-list-item__title {
    min-height: unset;
    padding-bottom: 10px;
  }
}

.service-contact-list-item__title::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service-contact-list-item__link {
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 40px;
}

@media only screen and (max-width: 850px) {
  .service-contact-list-item__link {
    height: 60px;
    line-height: 60px;
  }
}

.service-contact-list-item__link:hover {
  -webkit-filter: brightness(115%);
  filter: brightness(115%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service-bottom-contact {
  padding-bottom: 80px;
}

@media only screen and (max-width: 850px) {
  .service-bottom-contact {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}

.service-bottom-contact-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.vertical-item {
  display: block;
}

.copyright {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--mega-gradient-primary);
}

@media only screen and (max-width: 850px) {
  .copyright-inner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}

.copyright-text {
  text-align: center;
  color: #ffffff;
}