@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
body {
  margin: 0px;
  padding: 0px;
  font-family: "Fira Sans", sans-serif;
  color: #666;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.btn:focus, .cc-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.txt-primary {
  color: #007dff !important;
}

.txt-dark {
  color: #000 !important;
}

.txt-white {
  color: #fff !important;
}

.bg-light {
  background: #fafafa;
}

.bg-dark {
  background: #002c68 !important;
}

.bg-lightblue {
  background: #EAF5FF;
}

.fw-500 {
  font-weight: 500 !important;
}

.no-underline {
  text-decoration: none !important;
}

.ft18 {
  font-size: 18px;
}

.br-10 {
  border-radius: 10px;
}

.bb-1 {
  border-bottom: 1px solid #ddd;
}

header {
  display: contents;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
  width: auto;
  height: 90px;
}

.page-title {
  font-size: 60px;
  line-height: normal;
  font-weight: 500;
  color: #000;
  margin-bottom: 0px;
}

.page-title-sm {
  font-size: 50px;
}

.section-title {
  font-size: 34px;
  line-height: normal;
  font-weight: 500;
  color: #000;
}

.section-title-sm {
  font-size: 28px;
  line-height: normal;
  font-weight: 500;
  color: #000;
}

.section-heading {
  font-size: 22px;
  line-height: normal;
  font-weight: 500;
  color: #000;
}

.lead {
  font-size: 20px;
  line-height: 28px;
  color: #666;
}

.lead-sm {
  font-size: 18px;
  line-height: 24px;
}

.hero-section-inner {
  background-size: cover !important;
  background-position: center !important;
}

.hero-section {
  background: #F2F4F7;
  min-height: 500px;
}

.hero-section-inner {
  height: 400px;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-img {
  position: relative;
}

.hero-img img {
  position: relative;
  z-index: 2;
}

.img-bg {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: #F3E4C7;
  position: absolute;
  top: 50%;
  left: 45%;
  margin-top: -300px;
  margin-left: -250px;
  animation: upDown 3s ease-in-out infinite;
}

ul#primary-navigation {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

ul#primary-navigation li {
  display: inline-block;
}

ul#primary-navigation li + li {
  margin-left: 1.75rem;
}

ul#primary-navigation li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

ul#primary-navigation li a:hover {
  color: #007dff;
}

ul#primary-navigation li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.dropdown > a {
  height: 58px;
  display: flex;
  align-items: center;
}

.dropdown .ico {
  margin-left: 0.2em;
}

.dropdown .ico svg {
  width: 10px;
  height: 10px;
}

.dropdown .ico svg path {
  fill: #000;
}

.dropdown:hover .ico svg path {
  fill: #007dff;
}

.dropdown {
  position: relative;
}

.subMenu-list {
  position: absolute;
  background: #fff;
  padding: 1.25em 1em;
  border-radius: 10px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
  text-align: left;
  min-width: 260px;
  visibility: hidden;
  left: -16px;
  transition: 0.3s ease-in-out;
  z-index: 999;
  max-width: 260px;
}

.dropdown:hover .subMenu-list {
  margin-top: 0em;
  visibility: visible;
}

ul.subMenu-list li, .subMenu-list ul li {
  display: flex !important;
  align-items: center;
  margin-bottom: 0.8rem !important;
}

ul.subMenu-list li + li, .subMenu-list ul li + li {
  margin-left: 0 !important;
}

ul.subMenu-list li:nth-last-child(1), .subMenu-list ul li:nth-last-child(1) {
  margin-bottom: 0 !important;
}

ul.subMenu-list li a, .subMenu-list ul li a {
  color: #000 !important;
  line-height: 18px;
  display: flex;
  font-weight: 400 !important;
}

ul.subMenu-list li a:hover, .subMenu-list ul li a:hover {
  color: #007dff !important;
}

ul.subMenu-list li .icon, .subMenu-list ul li .icon {
  width: 25px;
  height: 25px;
}

ul.subMenu-list li img, .subMenu-list ul li img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

ul.subMenu-list li a span + span, .subMenu-list ul li a span + span {
  margin-top: 2px;
}

.dropdown:hover ul.subMenu-list {
  display: inline;
}

ul.subMenu-list li a::after, .subMenu-list ul li a::after {
  display: none !important;
}

.subMenu-list ul {
  margin: 0px;
  padding: 0px;
  margin-bottom: 2rem;
}

.subMenu-list ul li:nth-child(1) {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  margin-bottom: 1rem !important;
}

.pos-sticky {
  position: sticky;
  top: 100px;
}

.content ul, .content ol {
  padding-left: 1.75em;
  margin-top: 0.5rem;
}

.content ul li + li, .content ol li + li {
  margin-top: 0.4rem;
}

.content .section-heading {
  margin-top: 2rem;
}

.content strong {
  color: #000;
}

.content h3 {
  font-size: 22px;
  line-height: 28px;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  color: #000;
  margin-bottom: 0px;
}

.content p:nth-last-child(1) {
  margin-bottom: 0px;
}

.cc-btn {
  background: #007dff;
  border-color: #007dff !important;
  color: #fff;
  display: inline-flex;
  min-width: 180px;
  height: 46px;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.25rem 1rem;
  border-radius: 4px;
}

.cc-btn:hover, .cc-btn:focus {
  color: #fff;
}

.link-btn {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #007dff;
  transition: 0.3s ease-in-out;
}

.link-btn svg, .secondary-btn svg {
  margin-left: 0.25rem;
  transition: 0.3s ease-in-out;
}

.link-btn svg path {
  fill: #007dff;
}

.link-btn:hover {
  color: #007dff;
}

.link-btn:hover svg {
  margin-left: 0.5rem;
}

.secondary-btn {
  background-color: #F0EB4C;
  color: #007dff;
}

.secondary-btn:hover {
  color: #007dff;
}

.secondary-btn svg path {
  fill: #007dff;
}

.secondary-btn:hover svg {
  margin-left: 0.5rem;
}

.services-box {
  border: 1px solid #ddd;
  padding: 2rem 1.5rem;
  height: 100%;
}

.services-box .section-heading a {
  color: #000;
  text-decoration: none;
}

.services-box .ico svg path {
  fill: #002c68;
}

.green-badge .row {
  background: #007dff;
  color: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

ul.indus-list {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
}

ul.indus-list li + li {
  margin-top: 1.5rem;
}

ul.indus-list li {
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  color: #ddd;
  text-decoration: none;
  cursor: pointer;
}

ul.indus-list li.active {
  color: #002c68;
}

.indus-details .details {
  position: absolute;
  bottom: 0;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 40%);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.indus-details .details .link-btn {
  color: #007dff;
}

.indus-details .details .link-btn svg path {
  fill: #007dff;
}

.indus-details .featured-img {
  overflow: hidden;
}

.indus-details strong {
  color: #fff;
}

.review-box {
  display: flex;
  align-items: center;
  position: relative;
}

.review-box figure {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
}

.review-box .content {
  flex: 1;
  margin-left: 2rem;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #000;
}

.review-box .info {
  font-weight: 500;
}

.review-box .quote-ico {
  position: absolute;
  left: 180px;
  top: -50px;
}

.review-box .quote-ico svg {
  width: 80px;
}

.arr-pagination {
  display: flex;
  align-items: center;
}

.arr-pagination svg path {
  fill: #000;
}

.arr-pagination .right {
  padding-right: 0.5rem;
  transform: rotate(180deg);
}

.arr-pagination .right, .arr-pagination .left {
  cursor: pointer;
}

.swiper-clients img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
}

.swiper-clients img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.accordion-faqs .accordion-heading {
  background: none;
  color: #F0EB4C;
  padding: 0;
  font-size: 18px;
  color: #fff;
  border-radius: 0px;
  text-decoration: none;
}

.accordion-faqs .accordion-list .heading {
  margin-bottom: 0;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  background: none;
  color: #000;
  padding: 1rem 1rem 1rem 0;
  border: none;
  display: flow;
}

.accordion-faqs .accordion-list .content {
  padding: 0 1rem 1rem 0;
  background: none;
}

.accordion-faqs .accordion-list + .accordion-list .accordion-heading {
  border-top: 1px solid #ddd;
  display: block;
}

.accordion-faqs .accordion-list.off .content {
  display: none;
}

.accordion-faqs .accordion-list.off .symbol::before {
  content: "+";
  display: inline-block;
  font-size: 30px;
  color: #000;
  position: absolute;
  right: 0;
}

.accordion-faqs .accordion-list.on .symbol::before {
  content: "-";
  display: inline-block;
  font-size: 30px;
  color: #000;
  position: absolute;
  right: 0;
}

.accordion-faqs .accordion-list .symbol {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 1em;
}

.accordion-list .content .heading {
  border-top: 0px;
}

.footer {
  background: #fff;
  padding-bottom: 3em;
  position: relative;
  overflow: hidden;
}

.footer-widget h3 {
  font-size: 18px;
  color: #000;
}

.footer-widget ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.footer-widget ul li {
  color: #666;
}

.footer-widget ul li + li {
  margin-top: 5px;
}

.footer-widget ul li a {
  color: #666;
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: #007dff;
  text-decoration: underline;
}

.footer-widget ul li {
  display: flex;
  align-items: start;
}

.footer-widget svg {
  width: 24px;
  height: 24px;
  margin-right: 0.5em;
}

.ft-addr ul li {
  margin-bottom: 1em;
}

.ft-addr ul li a {
  color: #666;
}

.ft-addr .call_ico {
  flex: none;
}

.ft-addr .call_ico svg {
  width: 20px;
  height: 20px;
}

.footer-widget p {
  color: #666;
  font-size: 18px;
}

.social-links a {
  background: #000;
  padding: 0.7em;
  border-radius: 6px;
}

.social-links a svg {
  margin-right: 0;
}

.mail_ico svg path {
  stroke: #666;
}

.swiper-vertical {
  height: 550px;
  border-radius: 10px;
}

.bt-1px {
  border-top: 1px solid #ddd;
}

.br-none {
  border-radius: 0px !important;
}

.strng-dark strong {
  color: #000;
  font-weight: 500;
}

ul.no-list {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

ul.no-list li + li {
  margin-top: 1.5rem;
}

.label {
  font-weight: 400;
  color: #000;
}

.required {
  color: #ff0000;
}

input.cc-control {
  height: 46px;
}

.note {
  font-size: 14px;
  margin-top: 2px;
}

.form-check-input[type=checkbox] {
  margin-top: 2px;
}

.form-check-inline-cc label {
  margin-left: 0.35em;
  flex: 1;
}

input[type=file]::-webkit-file-upload-button {
  height: 46px;
}

.form-check-inline {
  display: inline-flex;
}

ul.cnt-wrapper {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  width: 100%;
}

ul.cnt-wrapper li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

ul.cnt-wrapper li + li {
  margin-top: 0px;
}

ul.cnt-wrapper li .cnt-widget {
  padding: 1em;
  text-align: center;
  padding: 1.5rem 3em 0;
}

ul.cnt-wrapper li h3 {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0.5em;
}

ul.cnt-wrapper li p {
  margin-bottom: 0px;
}

ul.cnt-wrapper svg {
  height: 36px;
  width: 36px;
  margin-bottom: 0.35em;
}

.map svg {
  width: 100%;
  height: auto;
}

ul.nolist {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.nolist li + li {
  margin-top: 0.5em;
}

.bg-dark h3, .bg-dark h2, .bg-dark strong {
  color: #fff;
}

.bg-dark p, .bg-dark p ol, .bg-dark ul {
  color: #ddd;
}/*# sourceMappingURL=style.css.map */