@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Spartan-Thin";
  src: url("../fonts/Spartan-Thin.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Spartan-ExtraLight";
  src: url("../fonts/Spartan-ExtraLight.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Spartan-Light";
  src: url("../fonts/Spartan-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Spartan-Regular";
  src: url("../fonts/Spartan-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Spartan-Medium";
  src: url("../fonts/Spartan-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Spartan-SemiBold";
  src: url("../fonts/Spartan-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Spartan-Bold";
  src: url("../fonts/Spartan-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Spartan-ExtraBold";
  src: url("../fonts/Spartan-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #282f3b;
  overflow-x: hidden;
}

::selection {
  background: #078586;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-moz-scrollbar {
  width: 5px;
}

::-ms-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #dedddf;
  border-radius: 5px;
}

::-moz-scrollbar-thumb {
  background: #64616e;
}

::-ms-scrollbar-thumb {
  background: #64616e;
}

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Spartan-Bold", Sans-serif;
}

h1,
.h1-styled {
  font-size: 80px;
  line-height: 76px;
}
@media (max-width: 991px) {
  h1,
  .h1-styled {
    font-size: 57px;
    line-height: 60px;
  }
}

h2,
.h2-styled {
  font-size: 44px;
  line-height: 54px;
}
@media (max-width: 991px) {
  h2,
  .h2-styled {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  h2,
  .h2-styled {
    font-size: 30px;
    line-height: 40px;
  }
}

h3,
.h3-styled {
  font-size: 38px;
  line-height: 48px;
}
@media (max-width: 991px) {
  h3,
  .h3-styled {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  h3,
  .h3-styled {
    font-size: 25px;
    line-height: 35px;
  }
}

h4,
.h4-styled {
  font-size: 22px;
  line-height: 30px;
}
h5,
.h5-styled {
  font-size: 20px;
  line-height: 25px;
}

p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #4A4E56;
}
@media (max-width: 767px) {
  p {
    font-size: 15px;
    line-height: 25px;
  }
}

.section-padding {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
}

.text-success {
  color: #078586 !important;
}

.btn {
  padding: 20px 25px;
  font-size: 15px;
  font-family: "Spartan-semibold", Sans-serif;
  border-radius: 10px 0px 10px 0px;
  line-height: 16px;
  transition: 0.3s;
}
@media (max-width: 1398px) {
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.btn.btn-primary {
  background: #078586;
  color: #ffffff;
  border: 1px solid #078586;
}
.btn.btn-primary:active, .btn.btn-primary:hover {
  color: #078586;
  background: #ffffff;
  border: 1px solid #078586;
  transition: 0.3s;
}
.btn.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  font-size: 16px;
  padding: 18px 50px;
}
.btn.btn-secondary:active {
  border: 1px solid #ffffff;
  color: #000000;
  transition: 0.3s;
}
.btn.btn-secondary:hover {
  background: #078586;
  border: 1px solid #078586;
  color: #ffffff;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .btn.btn-secondary {
    font-size: 14px;
    padding: 16px 20px;
  }
}
.btn.btn-outline {
  background: transparent;
  border: 1px solid #282f3b;
  color: #ffffff;
}
.btn.btn-outline:active, .btn.btn-outline:hover {
  color: #078586;
  background: #ffffff;
  border: 1px solid #ffffff;
  transition: 0.3s;
}

.common-ul {
  padding-left: 15px;
}
.common-ul li {
  position: relative;
}
.common-ul li:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  width: 7px;
  height: 7px;
  background-color: #078586;
  border-radius: 50%;
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-dark {
  background-color: #282f3b !important;
}

.bg-light {
  background-color: #f0f3f9 !important;
}

.white-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  transform: rotate(180deg);
  z-index: 1000;
}
.white-shape-bottom img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .white-shape-bottom {
    bottom: -1px;
  }
}

.white-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 1000;
}
.white-shape-top img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .white-shape-top {
    top: -1px;
  }
}

/*-------------------------------*/
/***       Header    	   ***/
/*-------------------------------*/
.header-holder header .header-top-bar {
  position: relative;
  padding: 10px 0px;
  background: #282f3b;
}
.header-holder header .header-top-bar a i {
  color: #078586;
  font-size: 16px;
  margin-right: 6px;
  line-height: 25px;
}
.header-holder header .header-top-bar a span {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}
.header-holder.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.04);
  z-index: 1100;
  width: 100%;
}
.header-holder.fixed-header header .navbar .nav-holder {
  box-shadow: none;
}
.header-holder.fixed-header header .navbar .nav-holder .navbar-nav .nav-item > a {
  padding: 20px 0px;
}
.header-holder .navbar_outer {
  position: relative;
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-brand {
  width: 205px;
  padding: 0;
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item > a {
  padding: 30px 0px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item > a {
    padding: 15px 0px;
    border-bottom: 1px solid #f1f1f1;
  }
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item > a.active {
  color: #078586;
}
@media (max-width: 991px) {
  .header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item:last-child > a {
    border-bottom: 0;
  }
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item.dropdown .dropdown-menu {
  padding: 0;
  transition: 0.3s;
  border: 0;
  transition: top 0.3sease 0s, opacity 0.3s;
}
@media (min-width: 1200px) {
  .header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: block;
    height: 0;
    overflow: hidden;
  }
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  background: none !important;
}
@media (max-width: 991px) {
  .header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    text-align: center;
  }
}
.header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  color: inherit;
}
@media (min-width: 1200px) {
  .header-holder .navbar_outer .navbar .nav-holder .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    height: max-content;
    padding: 5px 0px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
  }
}
.header-holder .navbar_outer .navbar .navbar-collapse > ul > li {
  position: relative;
}
.header-holder .navbar_outer .navbar .navbar-collapse > ul > li:first-child {
  padding-left: 0;
}
.header-holder .navbar_outer .navbar .navbar-collapse > ul > li > a {
  font-size: 14px;
  font-weight: 600;
  color: #282f3b;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #078586, #078586 50%, #282f3b 50%);
  background-size: 200% 100%;
  background-position: -100%;
  transition: all 0.3s ease-in-out;
}
.header-holder .navbar_outer .navbar .navbar-collapse > ul > li > a:hover {
  background-position: 0%;
}
.header-holder .navbar_outer .navbar .navbar-collapse > ul > li > a.active {
  background-position: 0%;
}
@media (max-width: 991px) {
  .header-holder .navbar_outer .navbar .navbar-collapse {
    position: absolute;
    left: 0;
    width: 100%;
    top: 68px;
    background: #fff;
    z-index: 999;
  }
  .header-holder .navbar_outer .navbar .navbar-collapse > ul {
    margin: 15px 0px;
  }
  .header-holder .navbar_outer .navbar .navbar-collapse > ul > li {
    padding-left: 0;
  }
  .header-holder .navbar_outer .navbar .navbar-collapse > ul > li > a:before {
    display: none;
  }
}
.header-holder .navbar_outer .navbar .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  width: 50px;
  height: 50px;
  box-shadow: none;
  position: relative;
  right: -5px;
}
.header-holder .navbar_outer .navbar .line {
  fill: none;
  stroke: #282f3b;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-holder .navbar_outer .navbar .line1 {
  stroke-dasharray: 60 207;
}
.header-holder .navbar_outer .navbar .line2 {
  stroke-dasharray: 60 60;
}
.header-holder .navbar_outer .navbar .line3 {
  stroke-dasharray: 60 207;
}
.header-holder .navbar_outer .navbar .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.header-holder .navbar_outer .navbar .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.header-holder .navbar_outer .navbar .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

/**********************************/
/*****************Home Banner Start*****************/
.banner {
  height: calc(100vh - 130px);
}
@media (max-width: 991px) {
  .banner {
    height: calc(50vh + 130px);
  }
}
.banner .carousel .carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.banner .carousel .carousel-caption h1 {
  text-shadow: rgba(7, 133, 134, 0.83) 4px 2px 0px;
  max-width: 1095px;
  margin: auto;
}
@media (max-width: 991px) {
  .banner .carousel .carousel-caption h1 {
    font-size: 27px;
    line-height: 37px;
    word-wrap: break-word;
  }
}
.banner .carousel-control-prev, .banner .carousel-control-next {
  width: 70px;
  height: 70px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  opacity: 0.7;
}
@media (max-width: 767px) {
  .banner .carousel-control-prev, .banner .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .banner .carousel-control-prev .carousel-control-prev-icon, .banner .carousel-control-next .carousel-control-prev-icon {
    width: 25px;
    height: 25px;
  }
}
.banner .carousel-control-prev:hover, .banner .carousel-control-next:hover {
  opacity: 1;
}
.banner .carousel-control-next {
  left: auto;
  right: 30px;
}
@media (max-width: 767px) {
  .banner .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .banner .carousel-control-next .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }
}

/*****************Home Banner End*****************/
/*-------------------------------*/
/***       About    	   ***/
/*-------------------------------*/
.about-section .img-holder {
  position: relative;
}
.about-section .img-holder .about-img {
  border-radius: 6px;
  overflow: hidden;
}
.about-section .img-holder .big-image {
  height: 550px;
}
@media (max-width: 991px) {
  .about-section .img-holder .big-image {
    height: 350px;
  }
}
.about-section .img-holder .small-img {
  width: 300px;
  position: absolute;
  left: 20px;
  bottom: -80px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .about-section .img-holder .small-img {
    bottom: -60px;
  }
}

.center-element {
  max-width: 50%;
}
@media (max-width: 991px) {
  .center-element {
    max-width: 100%;
  }
}

.data-card-holder {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 100px;
}
.data-card-holder .data-card-col {
  flex: 0 0 250px;
  width: 250px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1398px) {
  .data-card-holder .data-card-col {
    padding-bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .data-card-holder .data-card-col {
    flex: 0 0 33.333%;
    width: 33.3333%;
  }
}
@media (max-width: 767px) {
  .data-card-holder .data-card-col {
    flex: 0 0 100%;
    width: 100%;
  }
}
.data-card-holder .data-card-col .data-card {
  background-color: #ffffff;
  box-shadow: 0px 6px 35px 0px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  transition: all 0.6sease-in-out;
  color: #282f3b;
  display: block;
  padding: 70px 25px 30px;
  transition: 0.3s;
  position: relative;
}
.data-card-holder .data-card-col .data-card .card-img-wrapper {
  position: absolute;
  margin: 0px 0px 0px auto;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50px;
  text-align: center;
  top: -40px;
  left: 30px;
  box-shadow: 0px 5px 22px 0px rgba(0, 0, 0, 0.09);
  transition: all 0.6sease-in-out;
}
.data-card-holder .data-card-col .data-card .card-img-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}
.data-card-holder .data-card-col .data-card .num-section {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  font-size: 16px;
  line-height: 22px;
  color: #282f3b;
  display: block;
  top: -7px;
  right: -11px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 5px 22px 0px;
  transition: all 0.6sease;
  background: #ffffff;
}
@media (max-width: 767px) {
  .data-card-holder .data-card-col .data-card .num-section {
    top: -25px;
    right: 0;
  }
}
.data-card-holder .data-card-col .data-card .link {
  color: #078586;
}
.data-card-holder .data-card-col .data-card .link i {
  font-size: 20px;
}
.data-card-holder .data-card-col .data-card:hover {
  background-color: #078586;
  color: #ffffff;
  transition: 0.3s;
}
.data-card-holder .data-card-col .data-card:hover p,
.data-card-holder .data-card-col .data-card:hover .link {
  color: #ffffff;
}
.data-card-holder .data-card-col .data-card:hover .num-section {
  color: #078586;
}

.process-card {
  border-bottom: 1px dashed #e4e7ee;
}
.process-card .icon-wrap-rotate {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: block;
  padding: 12px;
  border: 1px solid #e4e7ee;
  animation-name: rotateme;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.process-card .icon-wrap-rotate:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  top: 14px;
  right: 8px;
  background: #078586;
  transition: all 0.6sease-in-out;
}
.process-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  background: #f0f3f9;
  border-radius: 50px;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.process-card .icon img {
  width: 60px;
}

.slider-text {
  color: rgba(255, 255, 255, 0.5607843137);
}

.slider-holder {
  padding-bottom: 60px;
}
.slider-holder .slick-list {
  padding: 0 !important;
}
.slider-holder .slick-arrow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 0;
  border: 0;
  outline: 0;
  transition: 0.3s;
}
.slider-holder .slick-arrow.slick-prev {
  transform: translateX(calc(50% - 55px));
}
.slider-holder .slick-arrow.slick-prev:before {
  content: "\f22d";
  font-size: 20px;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4A4E56;
}
.slider-holder .slick-arrow.slick-next {
  left: auto;
  right: 50%;
  transform: translateX(calc(50% + 55px));
}
.slider-holder .slick-arrow.slick-next:before {
  content: "\f231";
  font-size: 20px;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4A4E56;
}
.slider-holder .slick-arrow:hover {
  background-color: #078586;
  transition: 0.3s;
}
.slider-holder .slick-arrow:hover.slick-prev:before, .slider-holder .slick-arrow:hover.slick-next:before {
  color: #ffffff;
}
.slider-holder .slider-card {
  background-color: #4A4E56;
  padding: 30px;
  margin: 0 5px;
}
.slider-holder .slider-card:hover, .slider-holder .slider-card.slick-center {
  background-color: #078586;
}
.slider-holder .slider-card:hover .slider-text, .slider-holder .slider-card.slick-center .slider-text {
  color: #ffffff;
}

.project-info .info-img {
  flex: 0 0 60px;
  width: 60px;
}
.project-info h5 {
  color: #282f3b;
  font-weight: 600;
}

.icon-wrap {
  font-size: 25px;
  width: 50px;
  height: 50px;
  background: #078586;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 50px;
}

.consulation .btm-dashed {
  border-bottom: 1px dashed #078586;
}
.consulation .phn a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #aaafb8;
}

/**********************************/
h5.underline {
  position: relative;
}
h5.underline::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 3px;
  background: #078586;
  left: 0;
  bottom: -10px;
}

footer {
  background: #23282e;
  color: #ffffff;
  position: relative;
}
footer .footer-logo {
  width: 250px;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer-logo {
    width: 100%;
  }
}
footer h5 {
  color: #ffffff;
}
footer p {
  color: #ffffff;
}
footer ul.kontaktieren li i {
  font-size: 22px;
}
footer ul li {
  padding-bottom: 18px;
}
footer ul li a {
  line-height: 20px;
  color: #ffffff !important;
  display: block;
  font-size: 16px;
}
footer ul li a i {
  font-size: 18px;
  color: #aaafb8;
}
footer .copyright {
  padding: 20px 0;
  background-color: #078586;
  color: #ffffff;
}

/**********************************/
.inner-banner {
  color: #ffffff;
}
.inner-banner .breadcrumb {
  font-family: "Spartan-SemiBold";
}
.inner-banner .breadcrumb .breadcrumb-item {
  font-size: 14px;
  color: #ffffff;
}
.inner-banner .breadcrumb .breadcrumb-item a {
  color: #aaafb8 !important;
}
.inner-banner .banner-img-holder {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.inner-banner .banner-content-holder {
  width: 100%;
  padding: 110px 0;
  position: relative;
  background: rgba(40, 47, 59, 0.8117647059);
}

.common-column-tabs .nav-link {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  cursor: pointer;
  color: #000000;
  border-radius: 6px;
  padding: 15px 20px;
  background: #f0f3f9;
  margin-bottom: 10px;
  text-align: left;
}
.common-column-tabs .nav-link.active {
  background: #078586;
  color: #ffffff;
}
.common-column-tabs .tab-pane {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e7ee;
  border-radius: 6px;
  padding: 15px 20px;
}

@media (max-width: 991px) {
  .numeric-points-section .icon-wrap {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 15px;
  }
}
.numeric-points-section .numeric-points-content ol {
  padding-left: 20px;
}
.numeric-points-section .numeric-points-content ol li::marker {
  font-weight: 700;
}

/**********************************/
.contact-wrap {
  background: #ffffff;
  box-shadow: 0px 5px 22px 0px rgba(0, 0, 0, 0.07);
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 30px;
  transition: 0.3s;
}
.contact-wrap .contact-icon {
  width: 70px;
  height: 70px;
  border: 1px dashed #aaafb8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wrap .contact-icon i {
  color: #078586;
  font-size: 32px;
  transition: 0.3s;
}
.contact-wrap:hover {
  color: #ffffff;
  background: #078586;
  transition: 0.3s;
}
.contact-wrap:hover i,
.contact-wrap:hover p {
  color: #ffffff;
  transition: 0.3s;
}

.map-section iframe {
  min-height: 300px;
}

.industries-gallery .card {
  border-radius: 0;
}
.industries-gallery .card .card-body {
  padding: 5px;
}
.industries-gallery .card .card-body .img-holder .icon {
  position: absolute;
  bottom: -5px;
  width: 60px;
  height: 60px;
  background: #078586;
  right: 1px;
  z-index: 1;
  text-align: center;
  transition: all 0.6sease;
}
.industries-gallery .card .card-body .img-holder .icon i {
  font-size: 35px;
  color: #ffffff;
}
.industries-gallery .card .card-body .img-holder .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 47, 59, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transform: scale(0);
  transition: 0.3s;
}
.industries-gallery .card .card-body .img-holder .overlay i {
  font-size: 30px;
  color: #ffffff;
}
.industries-gallery .card .card-body .bottom-title {
  padding: 25px;
}
.industries-gallery .card:hover .card-body .img-holder .overlay {
  transform: scale(1);
}

.events-list .card .card-body {
  padding: 20px;
}
.events-list .card .card-body .event-row {
  gap: 30px;
}
.events-list .card .card-body .event-row .event-image {
  flex: 0 0 280px;
  max-width: 280px;
}
@media (max-width: 767px) {
  .events-list .card .card-body .event-row .event-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.events-list .card .card-body .event-row .event-information {
  flex: 1;
}
.events-list .card .card-body .event-row .event-information span {
  color: #078586;
}

.event-view .event-view-image {
  border: 1px solid #c9c9c9;
}
.event-view .left-column, .event-view .right-column {
  border: 1px solid #c9c9c9;
  border-top: 0;
}
@media (min-width: 768px) {
  .event-view .right-column {
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .industries-section.section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .container.consulation .row > .col-md-4 {
    padding: 0;
  }
}
/*****************************/
.registration-form .input-group input {
  display: block;
  font-family: "Spartan-regular", sans-serif;
  width: 100%;
  padding: 16px 14px;
  color: #4A4E56;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ced4da;
  border-radius: 6px;
}
.registration-form .input-group input:focus {
  outline: unset;
}
.registration-form .form-check .form-check-input {
  border-radius: unset;
}
.registration-form .form-check .form-check-input:focus {
  outline: unset;
  box-shadow: unset;
  border-color: #aaafb8;
}
.registration-form .form-check .form-check-input:checked {
  background-color: #078586;
  border-color: #078586;
}
.registration-form .form-check label {
  font-size: 14px;
  font-family: "Spartan-medium", sans-serif;
  color: #4A4E56;
}

/*****************************/
.policy-section p a {
  color: #078586;
  word-break: break-all;
}

.removeRow {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=style.css.map */
