@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

@font-face {
  font-family: "Dune Rise";
  src: url("../fonts/Dune_Rise.woff2") format("woff2"),
    url("../fonts/Dune_Rise.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "fontello";
  src: url("../node_modules/fontello/font/fontello.eot?72335624");
  src: url("../node_modules/fontello/font/fontello.eot?72335624#iefix")
      format("embedded-opentype"),
    url("../node_modules/fontello/font/fontello.woff2?72335624") format("woff2"),
    url("../node_modules/fontello/font/fontello.woff?72335624") format("woff"),
    url("../node_modules/fontello/font/fontello.ttf?72335624")
      format("truetype"),
    url("../node_modules/fontello/font/fontello.svg?72335624#fontello")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #e6e6e6;
  font-family: "Nunito Sans", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 150%;
  z-index: 1;
}
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
ol,
ul {
  list-style: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
img {
  outline: none;
}

.main {
  overflow: hidden;
  width: 100%;
}
.container {
  margin: 0 auto;
  max-width: 1250px;
  padding: 0 1.25rem;
  position: relative;
}

header {
  background: linear-gradient(
    107deg,
    rgba(24, 63, 68, 1) 0%,
    rgba(0, 104, 58, 1) 100%
  );
  position: sticky;
  top: 0;
  z-index: 999;
  margin: 0;
}

.navbar-brand {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
}
.navbar-brand img {
  width: 234px;
}
@media (max-width: 768px) {
  .navbar-brand img {
    width: 200px;
  }
}

header .navbar .navbar-toggler {
  border: none;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-toggler:hover {
  opacity: 0.75;
}

header .navbar .navbar-toggler .hamburger .hamburger-inner,
header .navbar .navbar-toggler .hamburger .hamburger-inner::before,
header .navbar .navbar-toggler .hamburger .hamburger-inner::after {
  background-color: white;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
  }
  .navbar-expand-lg .navbar-nav {
    align-items: center;
  }
}
.navbar-nav .nav-item a {
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  display: inline-block;
  font-weight: 600;
}
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a:focus {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.7);
}
.navbar-nav .nav-item:nth-child(5) a {
  border-radius: 30px;
  padding: 0.5rem 2rem;
  background-color: rgba(255, 255, 255, 0) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
}
.navbar-nav .nav-item:nth-child(5) a:hover,
.navbar-nav .nav-item:nth-child(5) a:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
}
@media (max-width: 991px) {
  .navbar-nav .nav-item:nth-child(5) a {
    margin: 1rem;
  }
  .navbar-nav .nav-item {
    padding: 0.5rem;
    text-align: center;
  }
}

.navbar-nav .nav-item:nth-child(6) a {
  background-color: white;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #006838;
  padding: 0.1em 0.5em;
}
.navbar-nav .nav-item:nth-child(6) a:hover,
.navbar-nav .nav-item:nth-child(6) a:focus {
  color: white;
  background-color: #183f44;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item:nth-child(6) a {
    margin-left: 10px;
  }
}

.btn {
  font-weight: 500;
  border-radius: 30px;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
}
@media (max-width: 500px) {
  .btn {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}
.btn-primary {
  background-color: rgba(14, 173, 252, 1);
  border-color: rgba(14, 173, 252, 1);
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: rgba(14, 173, 252, 0.15);
  border-color: rgba(14, 173, 252, 1);
  color: #ffffff;
}

.btn-outline-primary {
  background-color: rgba(14, 173, 252, 0.15);
  border-color: rgba(14, 173, 252, 1);
  color: #ffffff;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: rgba(14, 173, 252, 1);
  border-color: rgba(14, 173, 252, 1);
  color: #ffffff;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
}
.btn-orange {
  background-color: rgba(255, 108, 70, 1);
  border-color: rgba(255, 108, 70, 1);
  color: #ffffff;
}
.btn-orange:hover,
.btn-orange:focus {
  background-color: rgba(255, 108, 70, 0.4);
  border-color: rgba(255, 108, 70, 1);
  color: #ffffff;
}
.btn-cta {
  background-color: #183f44;
  border-radius: 140px;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  width: 430px;
  justify-content: center;
}
@media (max-width: 480px) {
  .btn-cta {
    padding: 1.2rem;
    width: 100%;
  }
}

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

.txt-large {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}
.txt-medium {
  font-size: 1.125rem;
  line-height: 1.5;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.txt-blue {
  color: #003b99;
}
.txt-blue-inf {
  color: #003b99;
}
.txt-dblue {
  color: #1f1f47;
}
.txt-dgreen {
  color: #183f44;
}
.txt-green {
  color: #006838;
}
.txt-orange {
  color: #7d1608;
}
.txt-red {
  color: #dc260e;
}
.txt-ylw {
  color: #f0d965;
}
.txt-gold {
  color: #bba120;
}
.txt-wht {
  color: #ffffff;
}
.txt-neutral {
  color: #aaaaaa;
}
.txt-grey {
  color: #666666;
}
.txt-grey1 {
  color: #444444;
}

.bkGrey2 {
  background-color: #cdced0;
}
.bkGrey3 {
  background-color: #f2f2f2;
}
.bkGreen {
  background-color: rgba(0, 104, 58, 0.05);
}
.bkGreen1 {
  background-color: #d3e4da;
}
.bkAzu {
  background-color: #cfe0e8;
}
.bkDarkGreen {
  background-color: #183f44;
}
.bkGradient {
  background: linear-gradient(61.26deg, #183f44 12.12%, #006838 105.46%);
}
.bkGradient1 {
  background: linear-gradient(133.34deg, #006838 41.1%, #2ad06e 162.07%);
}
.bkGradient2 {
  background: linear-gradient(76.76deg, #1f1f47 -14.31%, #00acff 126.81%);
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-3 {
  padding-top: 1rem;
}
.pb-6 {
  padding-bottom: 5rem;
}
.me-4 {
  margin-right: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}

h2,
h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
h3 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}
h4 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}
h5 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}
h6 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}
@media (max-width: 767px) {
  h2,
  h1 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.5rem;
  }
}

.align-end {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
}
.mt12 {
  margin-top: -12rem;
}

/***home***/
.section-hero {
  color: #ffffff;
}
.section-hero .row .col-md-6:first-child {
  justify-content: center;
  display: flex;
}
.hero-txt {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .section-hero .col-md-6:first-child {
    order: 2;
  }
  .section-hero .col-md-6:last-child {
    order: 1;
  }
}
@media (max-width: 767px) {
  .section-hero .row .col-md-6:first-child img {
    width: 250px;
  }
}
.section-slogan {
  background: rgba(0, 104, 58, 1);
}
.section-slogan h4 {
  font-family: "Dune Rise";
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

.section-features .row {
  align-items: center;
}
.section-features-box:nth-child(1) h3 {
  color: #003b99;
}
.section-features-box:nth-child(2) h3 {
  color: #006838;
}
.section-features-box:nth-child(3) h3 {
  color: #7d1608;
}
.features-box {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 700px) {
  .section-features-box:nth-child(2) .features-box {
    border-bottom-left-radius: 230px;
    border-top-left-radius: 230px;
  }
  .section-features-box:nth-child(1) .features-box,
  .section-features-box:nth-child(3) .features-box {
    border-bottom-right-radius: 230px;
    border-top-right-radius: 230px;
    text-align: right;
  }
}
.features-box-ins {
  max-width: 770px;
}
@media (min-width: 700px) {
  .section-features-box:nth-child(1) .features-box-ins,
  .section-features-box:nth-child(3) .features-box-ins {
    padding: 0 6rem 0 2rem;
  }
  .section-features-box:nth-child(2) .features-box-ins {
    padding: 0 2rem 0 6rem;
  }
}
@media (max-width: 699px) {
  .features-box-ins {
    padding: 5rem 2rem 2rem 2rem;
  }
}
@media (min-width: 990px) {
  .section-features-box:nth-child(1) .col-lg-4,
  .section-features-box:nth-child(3) .col-lg-4 {
    order: 2;
  }
  .section-features-box:nth-child(2) .col-lg-4 {
    text-align: right;
  }
  .section-features-box:nth-child(1) .col-lg-8,
  .section-features-box:nth-child(3) .col-lg-8 {
    order: 1;
    text-align: right;
  }
}
.section-features-box .col-lg-4 img {
  width: 300px;
}
@media (max-width: 989px) {
  .section-features-box .col-lg-4 img {
    width: 270px;
    margin-bottom: -3rem;
  }
  .section-features-box .col-lg-4 {
    z-index: 3;
  }
}
@media (max-width: 768px) {
  .section-features-box .col-lg-4 img {
    width: 210px;
  }
}
.section-features-box .col-lg-4 {
  padding: 0 3rem;
}

.txt-head {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.nav-tabs.nav-services {
  border-bottom: 1px solid #00acff;
}
.nav-tabs.nav-services .nav-item.show .nav-link,
.nav-tabs.nav-services .nav-link:hover,
.nav-tabs.nav-services .nav-link:focus,
.nav-tabs.nav-services .nav-link.active {
  background-color: transparent;
  border-bottom: 4px solid #00acff;
  font-weight: 800;
}
.nav-tabs.nav-services .nav-link {
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 33.33%;
  text-transform: uppercase;
  color: #183f44;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 450px) {
  .nav-tabs.nav-services .nav-link {
    font-size: 0.8rem;
  }
}

.swiper-slide {
  position: relative;
}
.swiper-slide:hover {
  opacity: 0.8;
}
.section-services .swiper-wrapper {
  align-items: stretch;
}
.section-services .card {
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section-services .card h3 {
  font-size: 2rem;
}
.section-services .card p {
  font-size: 1.125rem;
  line-height: 1.5;
  padding-top: 2rem;
}
.section-services .card .more {
  width: 60px;
  height: 60px;
  display: block;
  background: url("../../../resources/ico-more.svg");
  background-size: 60px 60px;
  text-indent: -10em;
  overflow: hidden;
}
.section-services .card .more:hover {
  filter: brightness(0) saturate(100%) invert(27%) sepia(13%) saturate(4479%)
    hue-rotate(112deg) brightness(103%) contrast(101%);
}
.section-services .tab-pane {
  padding: 0 3rem;
  position: relative;
}
.swiper-button-next:after {
  color: #006838;
  font-size: 1rem;
}
.swiper-button-prev:after {
  color: #006838;
  font-size: 1rem;
}
.swiper-button-prev {
  top: 50%;
  border: 2px solid #006838;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  left: 0;
}
.swiper-button-next {
  top: 50%;
  border: 2px solid #006838;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  right: 0;
}
@media (max-width: 500px) {
  .section-services .tab-pane {
    padding: 0;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.counter-num {
  font-size: 5rem;
  font-weight: 300;
  line-height: 6rem;
}
.counter-txt {
  font-weight: 700;
  text-transform: uppercase;
  color: #aaaaaa;
  padding: 0 2rem;
}

.txt-paddL {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .txt-paddL {
    padding-left: 3rem;
  }
}

.accordion-item {
  border-radius: 1.5rem;
  margin: 1rem 0;
}
.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type {
  border-top-left-radius: 1.5rem !important;
  border-top-right-radius: 1.5rem !important;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.accordion-button {
  font-size: 1.5rem;
  color: #bba120;
  font-weight: 700;
  padding: 2rem;
  border-radius: 1.5rem;
}
.accordion-button:not(.collapsed) {
  color: #bba120;
  background-color: transparent;
  box-shadow: none;
}
.accordion-body {
  padding: 0 2rem 2rem 2rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #666666;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../../../resources/ico-accordion.svg);
  transform: rotate(-90deg);
}
.accordion-button::after {
  width: 12px;
  height: 19px;
  background-image: url(../../../resources/ico-accordion.svg);
  background-size: 12px 19px;
}

.breadcrumb {
  margin: 0;
  font-size: 0.875rem;
  color: #183f44;
}
.breadcrumb li:after {
  content: "/";
  margin: 0 0.3rem;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a {
  color: #006838;
  font-weight: 800;
}

.section-head-top .container {
  max-width: 800px;
  margin: 0 auto;
}

.list-head {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-about .about-img {
    order: 2;
  }
  .section-about .about-txt {
    order: 1;
    padding-right: 4rem;
  }
  .about-pointRev .col-img {
    order: 2;
  }
  .about-pointRev .col-txt {
    order: 1;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .section-about .about-txt {
    padding-bottom: 2rem;
  }
}

.bkRot {
  position: absolute;
  top: 0;
  left: -100px;
  right: -100px;
  bottom: 0;
  transform: rotate(5deg);
  z-index: 0;
}

@media (max-width: 767px) {
  .about-point {
    padding: 3rem 0;
  }
  .about-point .col-img {
    max-width: 250px;
    padding-bottom: 2rem;
  }
}

.timeline-head p {
  max-width: 700px;
  margin: 0 auto;
}
.timeline {
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .timeline:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 11px;
    left: 0;
    right: 0;
    border-top: 2px solid #a7a9ac;
  }
}
.timeline-box {
  z-index: 0;
  position: relative;
}
.timeline-box h3 {
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  border-radius: 20px;
  background-color: #1dd073;
  display: inline-block;
  padding: 0.3rem 1rem;
  margin: 0;
  z-index: 2;
  animation: move1 6s infinite;
}
.timeline-box .txt p {
  margin: 0;
}
@media (min-width: 768px) {
  .timeline-box .txt {
    padding: 40px 0.5rem 0 0.5rem;
    position: relative;
    z-index: 1;
    max-width: 200px;
    margin: 0 auto;
  }
  .timeline-box .txt:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    height: 24px;
    border-left: 2px dashed #a7a9ac;
    z-index: 0;
    animation: move3 6s infinite;
  }
  .timeline-box .txt:after {
    content: "";
    position: absolute;
    top: 31px;
    left: 50%;
    height: 3px;
    border-left: 2px dashed #a7a9ac;
    z-index: 0;
    animation: move3 6s infinite;
  }
  .timeline-box .txt p {
    animation: move2 8s infinite;
  }
}
@media (max-width: 767px) {
  .timeline-box {
    margin: 2rem 0;
  }
  .timeline-box .txt {
    padding: 40px 0.5rem 0 0.5rem;
    position: relative;
    z-index: 1;
    max-width: 200px;
    margin: 0 auto;
  }
  .timeline-box .txt:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    height: 24px;
    border-left: 2px dashed #a7a9ac;
    z-index: 0;
    animation: move3 6s infinite;
  }
  .timeline-box .txt:after {
    content: "";
    position: absolute;
    top: 31px;
    left: 50%;
    height: 3px;
    border-left: 2px dashed #a7a9ac;
    z-index: 0;
    animation: move3 6s infinite;
  }
  .timeline-box .txt p {
    animation: move2 8s infinite;
  }
}

@keyframes move1 {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes move2 {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  30%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes move3 {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  30%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.press-box {
  border-radius: 1.5rem;
  margin: 0.5rem 0;
  position: relative;
  background-color: rgba(36, 96, 104, 0.05);
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  display: block;
}
.press-box:hover {
  background-color: rgba(36, 96, 104, 0.2);
}
.press-more {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  display: block;
  background: url("../../../resources/ico-more.svg");
  background-size: 30px 30px;
  text-indent: -10em;
  overflow: hidden;
}
.press-more:hover {
  filter: brightness(0) saturate(100%) invert(27%) sepia(13%) saturate(4479%)
    hue-rotate(112deg) brightness(103%) contrast(101%);
}

.section-btmCta {
  color: #fff;
}
.section-btmCta .row {
  flex-direction: column;
  align-items: center;
}

.section-head-service .container {
  max-width: 850px;
}
.section-head-service img {
  width: 62px;
  height: 62px;
  margin-bottom: 2rem;
}

.listSolution {
  display: flex;
  justify-content: center;
}

.listSolution .solution1 {
  background-color: rgba(14, 173, 252, 0);
  border-color: rgba(14, 173, 252, 1);
  color: #00acff;
}
.listSolution .solution1:hover {
  background-color: rgba(14, 173, 252, 0.8);
  border-color: rgba(14, 173, 252, 1);
  color: #fff;
}
.listSolution .solution2 {
  background-color: rgba(0, 104, 56, 0);
  border-color: rgba(42, 208, 110, 1);
  color: #2ad06e;
}
.listSolution .solution2:hover {
  background-color: rgba(42, 208, 110, 1);
  color: #fff;
}
.listSolution .solution3 {
  background-color: rgba(0, 104, 56, 0);
  border-color: rgba(255, 108, 70, 1);
  color: #ff6c46;
}
.listSolution .solution3:hover {
  background-color: rgba(255, 108, 70, 1);
  color: #fff;
}

.section-list-services .row {
  align-items: stretch;
  justify-content: center;
}
.section-list-services .col-card {
  margin-bottom: 8rem;
}
.section-list-services .card {
  position: relative;
  border-radius: 20px;
  padding: 0 2rem 7rem 2rem;
  text-align: center;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.section-list-services .card-img {
  border-radius: 150px;
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -75px;
  margin-bottom: 2rem;
}
.section-list-services .card-img img {
  width: 86px;
  height: 86px;
}
.service1.section-list-services .card-img {
  background-color: rgba(0, 172, 255, 1);
}

/*.service1.section-list-services .card:hover .card-img img{filter: brightness(0) saturate(100%) invert(13%) sepia(68%) saturate(5302%) hue-rotate(231deg) brightness(82%) contrast(115%);}*/
.service2.section-list-services .card-img {
  background-color: #2ad06e;
}
/*.service2.section-list-services .card:hover .card-img img{filter: brightness(0) saturate(100%) invert(26%) sepia(18%) saturate(5070%) hue-rotate(127deg) brightness(98%) contrast(105%);}*/
.service3.section-list-services .card-img {
  background-color: #ff6c46;
}
/*.service3.section-list-services .card:hover .card-img img{filter: brightness(0) saturate(100%) invert(18%) sepia(47%) saturate(6102%) hue-rotate(358deg) brightness(96%) contrast(93%);}*/

.section-list-services .card .more {
  position: absolute;
  bottom: 2rem;
  width: 60px;
  height: 60px;
  display: block;
  background: url("../../../resources/ico-more.svg");
  background-size: 60px 60px;
  text-indent: -10em;
  overflow: hidden;
}

.service1.section-list-services .card {
  background-color: rgba(0, 0, 170, 0.05);
}
.service1.section-list-services .card:hover {
  background-color: rgba(0, 0, 170, 0.1);
}
.service1.section-list-services .card .more:hover {
  filter: brightness(0) saturate(100%) invert(19%) sepia(61%) saturate(3761%)
    hue-rotate(229deg) brightness(73%) contrast(133%);
}

.service2.section-list-services .card {
  background-color: rgba(0, 104, 56, 0.05);
}
.service2.section-list-services .card:hover {
  background-color: rgba(0, 104, 56, 0.1);
}
.service2.section-list-services .card .more:hover {
  filter: brightness(0) saturate(100%) invert(30%) sepia(14%) saturate(4496%)
    hue-rotate(115deg) brightness(91%) contrast(102%);
}

.section-detail {
  margin-top: -6rem;
}
.detail-head .row {
  align-items: center;
}
.detail-head h2 {
  max-width: 500px;
}
.detail-head h2.titleL {
  max-width: 600px;
}
.detail-list .col-md-6 {
  display: flex;
  justify-content: center;
}

@media (min-width: 990px) {
  .detail-head-img {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 990px) {
  .detail-head-img {
    width: 250px;
    margin: -6rem 0 2rem 0;
  }
}
.detail-list-bx {
  max-width: 390px;
  padding-left: 50px;
  position: relative;
}
.detail-list-bx:before {
  content: "";
  width: 32px;
  height: 28px;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  animation: move4 6s infinite;
}
.detail1 .detail-list-bx:before {
  background: url("../../../resources/arrow1.svg");
  background-size: 32px 28px;
}
.detail2 .detail-list-bx:before {
  background: url("../../../resources/arrow2.svg");
  background-size: 32px 28px;
}
.detail3 .detail-list-bx:before {
  background: url("../../../resources/arrow3.svg");
  background-size: 32px 28px;
}
.detail-list-bx h5 {
  min-height: 70px;
}

@keyframes move4 {
  0% {
    transform: scale(1);
  }
  25% {
    transform: translateX(10px);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
  }
}

.btm-detail {
  margin-top: -6rem;
}
.btm-detail .container {
  max-width: 970px;
  padding-top: 9rem;
}

@media (min-width: 768px) {
  .section-contact .contact-img {
    order: 2;
  }
  .section-contact .contact-txt {
    order: 1;
    padding-right: 4rem;
  }
}
.contact-bx {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.contact-bx .bx-img {
  border-radius: 120px;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  background-color: #183f44;
}
.contact-bx .bx-img img {
  width: 50px;
  height: 50px;
}

.section-form {
  padding-top: 3rem;
  position: relative;
}
#pjax-form-container {
  z-index: 1;
  position: relative;
}
.section-form .container {
  max-width: 700px;
}
.section-form form {
  padding-bottom: 7rem;
}
.section-form .form-group {
  margin: 1rem 0;
}
.section-form .help-block {
  color: #dc3545;
  font-size: 0.875em;
}
.has-error input,
.has-error textarea {
  border-color: #dc3545;
  padding-right: 2rem;
  background-image: url(../../../resources/form-no.svg);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.has-error textarea {
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}

.thankYou {
  padding: 3rem 0 7rem;
  text-align: center;
}

/*footer*/
footer .row {
  align-items: center;
}
@media (min-width: 990px) {
  .footer-logo1 {
    order: 3;
  }
  .footer-menu {
    order: 2;
  }
}
.footer-logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
}
.footer-logo1 {
  display: flex;
  justify-content: flex-end;
}
.footer-logo1 img {
  width: 140px;
  max-width: 100%;
  height: auto;
}

.footer-menu {
  display: flex;
}
@media (min-width: 990px) {
  .footer-menu {
    justify-content: center;
  }
}
.footer-menu ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #fff;
  padding: 2rem 0.5rem;
  display: block;
}

.footer-social ul {
  display: flex;
  padding: 0;
  margin: 0;
}
.footer-social li {
  padding: 0 0.25rem;
}
.footer-social li a:hover {
  opacity: 0.7;
}

.footer-copy {
  border-top: 1px solid #aaaaaa;
  font-size: 0.875rem;
  color: #aaaaaa;
}
.footer-copy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.footer-copy a {
  padding: 0 0.5rem;
  color: #2ad06e;
}
@media (min-width: 768px) {
  .footer-copy {
    display: flex;
    justify-content: center;
  }
}

.hc_scrollup {
  width: 40px;
  height: 40px;
  bottom: 20px;
  padding: 0;
  display: none;
  opacity: 1;
  position: fixed;
  right: 20px;
  text-align: center;
  overflow: hidden;
  z-index: 999;
  background: url(../../../resources/scrollup.svg) center center no-repeat
    #183f44;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 25px 12px;
  text-indent: -10em;
}
