/*
* colors
* --------------------------------------------------
*/
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-Light.ttf");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-Regular.ttf");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-Medium.ttf");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-SemiBold.ttf");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-Bold.ttf");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-ExtraBold.ttf");
  font-display: swap;
  font-weight: 800;
}
@font-face {
  font-family: "Rubik";
  src: url("../font/Rubik-Black.ttf");
  font-display: swap;
  font-weight: 900;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 18px;
  background-color: #333333;
  padding: 30px 0px;
}
@media (max-width: 1199px) {
  body {
    padding: 0;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
}
body section {
  background-color: transparent !important;
}

.base-font-size {
  font-size: 18px !important;
}
@media (max-width: 991px) {
  .base-font-size {
    font-size: 16px;
  }
}

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

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

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

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

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

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

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

.container:not(.overall-leistungen) {
  max-width: 1320px;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 1398px) {
  .container:not(.overall-leistungen) {
    overflow: hidden;
  }
}

p {
  line-height: 27px;
}
@media (max-width: 575px) {
  p {
    font-size: 15px !important;
    line-height: 23px !important;
  }
}
@media (max-width: 991px) {
  p {
    padding-right: 0 !important;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
}

.footnote-tooltip {
  font-style: italic;
  opacity: 1 !important;
}
.footnote-tooltip[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: #333333 !important;
}
.footnote-tooltip[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #333333 !important;
}
.footnote-tooltip[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: #333333 !important;
}
.footnote-tooltip[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: #333333 !important;
}
.footnote-tooltip .tooltip-inner {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #333333;
}

.cursor-pointer {
  cursor: pointer;
}
.cursor-pointer small {
  font-size: 18px;
}

.circle-bubble:after {
  content: "";
  width: 200px;
  height: 200px;
  background: rgba(252, 215, 185, 0.2);
  top: -80px;
  position: absolute;
  right: 0px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
  animation: bounce_animation 7s infinite;
  transition: 340ms all;
}
.circle-bubble.bottom-left:before {
  content: "";
  width: 200px;
  height: 200px;
  background: rgba(252, 215, 185, 0.2);
  top: auto;
  position: absolute;
  right: auto;
  bottom: -80px;
  left: 0px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
  animation: bounce_animation 7s infinite;
  transition: 340ms all;
}
.circle-bubble:hover:after {
  transition: 340ms;
  background: rgba(252, 215, 185, 0.3);
}
@keyframes bounce_animation {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}

/*-------------------------------*/
/*      Button Effects    		 */
/*-------------------------------*/
.btn-blue-white, .btn-white-blue {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
  background-color: rgb(244, 112, 0);
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 12px 30px;
  transition: all 0.5s linear 0s;
  border: 0;
  cursor: pointer;
}
.btn-blue-white:before, .btn-white-blue:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform-origin: right left;
  transform: scaleX(0);
  transition: 0.5s;
}
.btn-blue-white span, .btn-white-blue span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #ffffff;
  transition: 0.5s;
}
.btn-blue-white:hover:before, .btn-white-blue:hover:before {
  transform: scaleX(1);
  background: #ffffff;
}
.btn-blue-white:hover span, .btn-white-blue:hover span {
  color: rgb(102, 102, 102);
}

.btn-white-blue {
  background-color: #ffffff;
}
.btn-white-blue span {
  color: rgb(102, 102, 102);
}
.btn-white-blue:hover span {
  color: #ffffff;
}

.text-link {
  color: rgb(244, 112, 0);
  text-decoration: underline;
}
.text-link:hover {
  color: rgb(244, 112, 0);
  text-decoration: underline;
}
.text-link:focus, .text-link:active {
  color: rgb(244, 112, 0);
}

.link-arrow-btn {
  transition: all 0s linear 0s !important;
  margin-top: 15px;
  position: relative;
  text-decoration: none !important;
  padding-right: 30px;
  display: inline-block;
  overflow: hidden;
}
.link-arrow-btn .button-text {
  position: relative;
  z-index: 1;
  transition: 0.5s;
  padding-right: 10px !important;
  color: rgb(244, 112, 0);
  font-size: 15px;
}
.link-arrow-btn:before, .link-arrow-btn:after {
  content: "";
  position: absolute;
  right: 0px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  height: 2px;
  width: 30px;
  background-color: #333333;
  transition: 0.5s;
  opacity: 1;
}
.link-arrow-btn:after {
  left: -30px;
  right: unset;
  opacity: 0;
}
.link-arrow-btn:hover:before {
  right: -50px;
  opacity: 0;
}
.link-arrow-btn:hover:after {
  left: 0;
  opacity: 1;
}
.link-arrow-btn:hover .button-text {
  padding-left: 50px !important;
}

/*-------------------------------*/
/*      Shapes Moving Effects	 */
/*-------------------------------*/
.shape-one {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 14%;
  background-color: rgb(244, 112, 0);
  opacity: 0.3;
  animation: animationFramesTwo 13s infinite linear;
  z-index: -1;
}

.shape-two {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 16%;
  left: 41%;
  animation: animationFramesOne 15s infinite linear;
  border: 5px solid rgb(244, 112, 0);
  opacity: 0.3;
  z-index: -1;
}

.shape-three {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 15%;
  left: 35%;
  animation: animationFramesFour 15s infinite linear alternate;
  border: 5px solid rgb(244, 112, 0);
  opacity: 0.3;
  z-index: -1;
}

.shape-four {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 12%;
  right: 30%;
  background-color: rgb(244, 112, 0);
  opacity: 0.3;
  animation: animationFramesFive 15s infinite linear alternate;
  z-index: -1;
}

.shape-five {
  width: 3px;
  height: 20px;
  position: absolute;
  top: 15%;
  right: 20%;
  background: rgb(244, 112, 0);
  opacity: 0.3;
  animation: animationFramesFour 15s infinite linear alternate;
  z-index: -1;
}

.shape-five:after,
.shape-five:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(50% - 2px);
  top: 6px;
  background: rgb(244, 112, 0);
  position: absolute;
  transform: rotate(90deg);
  z-index: -1;
}

.shape-five:after {
  left: -6px;
}

.shape-five:before {
  right: -6px;
}

@keyframes animationFramesOne {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0, 0) rotate(0) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    transform: translate(165px, -179px);
  }
  100% {
    transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    transform: translate(-300px, 151px) rotate(0);
  }
  100% {
    transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    transform: translate(61px, -99px) rotate(0);
  }
  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0) rotate(180deg);
  }
}
.object-position-center {
  object-position: center;
}

/*-------------------------------*/
/*          Heading     		 */
/*-------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: #333333;
}

h4 {
  font-weight: 400;
}

strong {
  font-weight: 600;
}

.heading-line {
  position: relative;
  height: 3px;
  width: 70px;
  position: relative;
  background-color: rgb(244, 112, 0);
}
.heading-line:before {
  content: "";
  position: absolute;
  top: 0;
  right: 4px;
  width: 5px;
  height: 3px;
  background-color: #ffffff;
  animation: Moveleft-1 3s linear infinite;
}
.heading-line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 5px;
  height: 3px;
  background-color: #ffffff;
  animation: Moveleft-2 3s linear infinite;
}

.heading {
  margin: 25px 0px 30px 0px;
  color: rgb(102, 102, 102) !important;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .heading {
    letter-spacing: 0px;
    hyphens: auto;
  }
}

@keyframes Moveleft-1 {
  0%, 100% {
    right: 4;
  }
  50% {
    right: 70px;
  }
}
@keyframes Moveleft-2 {
  0%, 100% {
    left: 4px;
  }
  50% {
    left: 70px;
  }
}
.heading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(244, 112, 0);
  display: inline-block;
  margin-left: 3px;
}
@media (max-width: 575px) {
  .heading-dot {
    display: none;
  }
}

.text-orange {
  color: rgb(244, 112, 0);
}

.light-bg {
  background-color: #f1f1f1;
}

.dark-bg {
  background-color: #333333;
}

.black-bg {
  background-color: #000000 !important;
}

.title-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.inner-page .inner-page-banner h1 {
  font-size: 70px;
  color: rgb(102, 102, 102);
}
@media (max-width: 1199px) {
  .inner-page .inner-page-banner h1 {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .inner-page .inner-page-banner h1 {
    font-size: 45px;
  }
}
.inner-page .inner-page-banner h1 span {
  color: rgb(244, 112, 0);
}
.inner-page .inner-page-banner p {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .inner-page .inner-page-banner p {
    font-size: 25px;
  }
}
.inner-page .inner-page-banner .inner-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.inner-banner {
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 991px) {
  .inner-banner {
    height: 250px;
  }
}

/*-------------------------------*/
/***       Header    	   ***/
/*-------------------------------*/
@media (min-width: 992px) {
  .dropdown-toggle::after {
    display: none;
  }
  /* rotate caret on hover */
  .navbar-nav li:hover > ul.dropdown-menu {
    display: block;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
  }
  .dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
  .dropdown-menu .dropdown-toggle:after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
  }
  .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
  }
  .dropdown-menu li {
    position: relative;
  }
  .nav-item .submenu {
    transition: 0.3s;
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
}
.menu-trigger {
  position: absolute;
  top: 30px;
  right: 0px;
  display: block;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 333;
}
@media (max-width: 575px) {
  .menu-trigger {
    width: 30px;
    height: 30px;
    top: 25px;
  }
}
.menu-trigger .menu-trigger-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(244, 112, 0);
  margin-bottom: 6px;
  position: relative;
}
.menu-trigger .menu-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: rgb(244, 112, 0);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.menu-trigger .menu-trigger-bar.top {
  width: 50%;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.menu-trigger .menu-trigger-bar.middle {
  transform: rotate(-45deg);
  transition: 0.3s;
}
.menu-trigger .menu-trigger-bar.middle:before {
  left: auto;
  right: 0;
}
.menu-trigger .menu-trigger-bar.bottom {
  width: 50%;
  margin-left: 50%;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.menu-trigger.close-menu {
  width: 40px;
  height: 40px;
}
@media (max-width: 575px) {
  .menu-trigger.close-menu {
    width: 30px;
    height: 30px;
  }
}
.menu-trigger.close-menu .menu-trigger-bar.top {
  width: 100%;
  transform: rotate(-135deg);
  top: 10px;
}
.menu-trigger.close-menu .menu-trigger-bar.bottom {
  opacity: 0;
}

header .header {
  z-index: 1000;
  background-color: #ffffff;
  transition: none;
}
@media (max-width: 991px) {
  header .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header .header.with-bg .menu-trigger .menu-trigger-bar:before {
    width: 100%;
  }
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #000000 !important;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:after {
  border: 0;
}
header .header.fixed-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
header .header.fixed-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: rgb(102, 102, 102);
}
header .header.fixed-header .menu-trigger .menu-trigger-bar:before {
  width: 100%;
}
header .header + .manage-fixed-nav-height {
  height: 0;
}
header .header.fixed-header + .manage-fixed-nav-height {
  height: 97.5px;
}
@media (max-width: 991px) {
  header .header.fixed-header + .manage-fixed-nav-height {
    height: 78.5px;
  }
}
@media (max-width: 767px) {
  header .header.fixed-header + .manage-fixed-nav-height {
    height: 80.5px;
  }
}
header .header .navbar {
  align-items: center;
  padding: 0;
}
header .header .navbar .navbar-brand {
  padding-left: 25px;
}
header .header .navbar .navbar-brand img {
  height: 80px;
  width: auto;
}
@media (max-width: 1199px) {
  header .header .navbar .navbar-brand img {
    height: 75px;
  }
}
@media (max-width: 575px) {
  header .header .navbar .navbar-brand img {
    height: 60px;
  }
}
@media (max-width: 991px) {
  header .header .navbar .navbar-collapse {
    margin: 20px 0px;
  }
}
header .header .navbar .navbar-collapse .navbar-nav {
  padding-right: 5px;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item {
  position: relative;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: rgb(102, 102, 102);
  padding: 40px 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 40px 15px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: rgb(102, 102, 102);
    padding: 15px 15px;
    border-bottom: 1px solid #f1f1f1;
  }
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
  content: " ";
  left: 10%;
  bottom: 20px;
  width: 80%;
  height: 2px;
  background-color: rgb(244, 112, 0);
  transform: scaleX(0);
  position: absolute;
  transition: 0.5s;
}
@media (max-width: 991px) {
  header .header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
    display: none;
  }
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link:before {
  transform: scaleX(1);
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  margin-top: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  color: #000000;
  transition: 0.5s;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 15px;
}
header .header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: rgb(244, 112, 0);
  background-color: rgba(255, 255, 255, 0.5);
}

.header .language-switch-container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  .header .language-switch-container {
    padding-left: 20px;
  }
}
.header .language-switch-container .language-switch-a {
  display: block;
  background: rgb(244, 112, 0);
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
}
.header .language-switch-container .language-switch-a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .header .navbar .navbar-brand {
    order: 1;
  }
}
@media (max-width: 991px) {
  .header .navbar .navbar-toggler {
    order: 2;
  }
}
@media (max-width: 991px) {
  .header .navbar .menu-trigger {
    order: 3;
    right: 25px;
  }
}
@media (max-width: 991px) {
  .header .navbar #main_nav {
    order: 5;
  }
}
@media (max-width: 991px) {
  .header .navbar .language-switch-container {
    order: 4;
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .header .navbar .language-switch-container {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .header.with-bg .language-switch-container {
    display: none;
  }
}

/******************************/
/* HOME PAGE */
/******************************/
.home-banner {
  height: 600px;
}
@media (max-width: 991px) {
  .home-banner {
    height: calc(100vh - 100px);
  }
}
.home-banner img {
  filter: contrast(1.25);
}

.overlay-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  direction: column;
  -webkit-flex-direction: column;
  z-index: 1;
  transition: 3s;
  overflow: hidden;
}
.overlay-caption .container {
  color: #ffffff;
}
.overlay-caption .container .captions-holder {
  max-width: 950px;
  padding: 50px;
  margin: auto;
}
@media (max-width: 991px) {
  .overlay-caption .container .captions-holder {
    max-width: 750px;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .overlay-caption .container .captions-holder {
    max-width: 100%;
    padding: 30px 20px;
  }
}
.overlay-caption .container .captions-holder h1 {
  text-align: center;
  font-size: 65px;
  color: #ffffff;
  text-shadow: 0px 0px 10px #000000;
}
@media (max-width: 991px) {
  .overlay-caption .container .captions-holder h1 {
    font-size: 50px;
    hyphens: auto;
  }
}
@media (max-width: 767px) {
  .overlay-caption .container .captions-holder h1 {
    font-size: 35px;
    line-height: 1.2;
  }
}

.it-outsourcing {
  padding: 100px 0px;
}
@media (max-width: 991px) {
  .it-outsourcing {
    padding: 80px 0px;
  }
}
@media (max-width: 767px) {
  .it-outsourcing {
    padding: 50px 0px 70px 0px;
  }
}
.it-outsourcing p strong {
  font-size: 22px;
}
.it-outsourcing h1 span {
  color: rgb(244, 112, 0);
}
.it-outsourcing .outsource-img-holder {
  width: 500px;
  margin: auto;
}
@media (max-width: 1199px) {
  .it-outsourcing .outsource-img-holder {
    width: 100%;
    height: auto;
  }
}
.it-outsourcing .outsource-img-holder img {
  height: 400px;
  z-index: 1;
  transition: 0.5s;
}
.it-outsourcing .outsource-img-holder .shape-upper {
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(244, 112, 0, 0.8);
  transition: 0.3s;
  z-index: 2;
  opacity: 0;
}
@media (max-width: 767px) {
  .it-outsourcing .outsource-img-holder .shape-upper {
    display: none;
  }
}
.it-outsourcing .outsource-img-holder .shape-under {
  right: 0px;
  bottom: 0px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(244, 112, 0, 0.8);
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 767px) {
  .it-outsourcing .outsource-img-holder .shape-under {
    display: none;
  }
}
.it-outsourcing:hover .outsource-img-holder .shape-upper {
  opacity: 1;
  left: -40px;
  top: -40px;
  bottom: auto;
}
.it-outsourcing:hover .outsource-img-holder .shape-under {
  opacity: 1;
  right: -40px;
  bottom: -40px;
  top: auto;
}
.it-outsourcing:hover .outsource-img-holder:hover img {
  object-position: right;
}

.all-services {
  padding: 50px 0px;
  background-color: #f9f8f7;
  position: relative;
}

.service-col {
  display: block;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  position: relative;
  transition: 0.5s;
  top: 0;
  height: 100%;
  color: #333333;
  text-decoration: none;
  text-align: center;
}
.service-col h4 {
  font-weight: 400;
}
.service-col img {
  height: 60px;
}
.service-col:hover {
  top: -10px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.2);
}

.technology-stack {
  padding: 50px 0px;
  position: relative;
}
.technology-stack .images-holder {
  position: relative;
  max-width: 700px;
  margin-left: 10%;
}
.technology-stack .images-holder .first-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 475px;
  border: 5px solid #ffffff;
}
@media (max-width: 767px) {
  .technology-stack .images-holder .first-image {
    height: auto;
    width: 100%;
  }
}
.technology-stack .images-holder .first-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  transform: scale(1);
  transition: 0.6s;
}
.technology-stack .images-holder .first-image:after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.technology-stack .images-holder .first-image:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}
.technology-stack .images-holder .first-image:hover img {
  transform: scale(1.15);
}
.technology-stack .images-holder .shape {
  position: absolute;
  width: 60%;
  height: 90%;
  top: -40px;
  left: -40px;
  background-color: rgb(244, 112, 0);
  transition: 0.5s;
}
.technology-stack .images-holder:hover .shape {
  top: -20px;
  left: -15px;
}

.benefits {
  padding: 50px 0px;
  background-color: #f9f8f7;
}
@media (max-width: 991px) {
  .benefits {
    padding: 80px 0px;
  }
}
.benefits .benefit-col {
  display: block;
  padding: 65px 30px 30px;
  background-color: #ffffff;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  position: relative;
  transition: 0.5s;
  top: 0;
  height: 100%;
  color: #333333;
  gap: 15px;
}
.benefits .benefit-col.last-child {
  padding-top: 65px;
}
.benefits .benefit-col.last-child > div {
  border-bottom: 0;
}
.benefits .benefit-col .number {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 0px 0px 50% 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(244, 112, 0);
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
}
.benefits .benefit-col > div {
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 10px;
  margin-bottom: 15px;
  gap: 20px;
}
.benefits .benefit-col h4 strong {
  padding: 10px 0px;
  display: block;
}

.service-tab-head .nav-tabs {
  flex-direction: column;
  border: 0;
}
.service-tab-head .nav-tabs .nav-item:not(:last-child) {
  margin-bottom: 0px;
}
.service-tab-head .nav-tabs .nav-item .nav-link {
  padding: 8px 0;
  border: 0;
  background: none;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding-left: 15px;
}
.service-tab-head .nav-tabs .nav-item .nav-link:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(102, 102, 102);
  left: 0;
  transition: all 0.5s;
}
.service-tab-head .nav-tabs .nav-item .nav-link > span {
  color: rgb(244, 112, 0);
  transition: 0.3s;
}
.service-tab-head .nav-tabs .nav-item .nav-link.active {
  border: 0;
  background: none;
}
.service-tab-head .nav-tabs .nav-item .nav-link.active:after {
  height: 20px;
}
.service-tab-head .nav-tabs .nav-item .nav-link.active > span {
  color: rgb(102, 102, 102);
}
.service-tab-head .nav-tabs .nav-item .nav-link:hover:after {
  height: 20px;
}
.service-tab-head .nav-tabs .nav-item .nav-link:hover > span {
  color: rgb(102, 102, 102);
}

.technology-stack {
  background-color: #ffffff;
  padding: 50px 0px;
}
@media (max-width: 1199px) {
  .technology-stack {
    padding: 85px 0px 75px;
  }
}
@media (max-width: 991px) {
  .technology-stack {
    padding-bottom: 75px;
  }
}
@media (max-width: 575px) {
  .technology-stack {
    padding-top: 75px;
  }
}
.technology-stack:after {
  display: none;
}
.technology-stack .ts-row {
  display: flex;
  flex-wrap: wrap;
}
.technology-stack .ts-row .ts-item-box {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
}
@media (max-width: 991px) {
  .technology-stack .ts-row .ts-item-box {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .technology-stack .ts-row .ts-item-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.technology-stack .ts-row .ts-item-box .ts-item-box-inner {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgb(255, 255, 255));
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  height: 100%;
}
@media (max-width: 767px) {
  .technology-stack .ts-row .ts-item-box .ts-item-box-inner {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-icon {
  flex: 0 0 70px;
  max-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  background: #ffffff;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 3px 10px 5px rgba(0, 0, 0, 0.02);
}
@media (max-width: 767px) {
  .technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-icon {
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
    margin-right: 0;
    padding: 10px;
    margin-bottom: 6px;
  }
}
.technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-content p {
  margin: 0;
}
.technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-content .tc-content {
  font-size: 13px;
  line-height: 17px;
  opacity: 0.78;
}
@media (max-width: 767px) {
  .technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-content .tc-content {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}
.technology-stack .ts-row .ts-item-box .ts-item-box-inner .ts-item-box-content .tc-title {
  line-height: 21px;
  font-size: 15px;
  padding-bottom: 3px;
}
.technology-stack .ts-row.infrastructure-row .ts-item-box {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
@media (max-width: 991px) {
  .technology-stack .ts-row.infrastructure-row .ts-item-box {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .technology-stack .ts-row.infrastructure-row .ts-item-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.technology-stack .ts-row.infrastructure-row .ts-item-box .ts-item-box-inner {
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
}

.company-overview {
  background-color: #f1f1f1;
  padding: 50px 0px;
}
.company-overview .counter-row .counter-col {
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .company-overview .counter-row .counter-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.company-overview .counter-row .counter-col .counter-holder {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.company-overview .counter-row .counter-col .counter-holder .counter-value {
  font-size: 45px;
  color: rgb(244, 112, 0);
  font-weight: 300;
}
@media (max-width: 575px) {
  .company-overview .counter-row .counter-col .counter-holder .counter-value {
    font-size: 40px;
    line-height: 40px;
  }
}
.company-overview .counter-row .counter-col .counter-holder .counter-value:after {
  content: "+";
  font-size: 30px;
}
.company-overview .counter-row .counter-col .counter-holder .counter-info {
  font-weight: 300;
  color: rgb(102, 102, 102);
}
@media (max-width: 575px) {
  .company-overview .counter-row .counter-col .counter-holder .counter-info {
    font-size: 15px;
  }
}
.company-overview .counter-row .counter-col:first-child .counter-holder .counter-value:after {
  display: none;
}

.iworxs-decision {
  padding: 50px 0px;
  position: relative;
}
.iworxs-decision.container {
  background: #2b2b2b !important;
}
.iworxs-decision.container .heading {
  color: #ffffff !important;
}
.iworxs-decision .row > div:nth-child(1) .decision-col:before {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(1) .decision-col:after {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(2) .decision-col:before {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(2) .decision-col:after {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(3) .decision-col:before {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(3) .decision-col:after {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(4) .decision-col:before {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(4) .decision-col:after {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(5) .decision-col:before {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(5) .decision-col:after {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(6) .decision-col:before {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(6) .decision-col:after {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(7) .decision-col:before {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(7) .decision-col:after {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(8) .decision-col:before {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(8) .decision-col:after {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(9) .decision-col:before {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(9) .decision-col:after {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(10) .decision-col:before {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(10) .decision-col:after {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(11) .decision-col:before {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(11) .decision-col:after {
  border-color: rgb(244, 112, 0);
}
.iworxs-decision .row > div:nth-child(12) .decision-col:before {
  border-color: #333333;
}
.iworxs-decision .row > div:nth-child(12) .decision-col:after {
  border-color: #333333;
}
.iworxs-decision .decision-col {
  padding: 50px 35px;
  background-color: #ffffff;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  transition: 0.5s;
  top: 0;
  height: 100%;
  color: #333333;
  text-decoration: none;
  font-size: 18px;
}
.iworxs-decision .decision-col:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid;
  transition: 0.3s;
}
.iworxs-decision .decision-col:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 20px;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid;
  transition: 0.3s;
}
.iworxs-decision .decision-col:hover {
  top: -10px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.2);
}
.iworxs-decision .decision-col:hover:before {
  left: 20px;
}
.iworxs-decision .decision-col:hover:after {
  left: 15px;
}

.industries {
  background-color: #f1f1f1;
  padding: 50px 0px;
  position: relative;
}
@media (max-width: 1199px) {
  .industries {
    padding-top: 100px;
    padding-bottom: 84px;
  }
}
@media (max-width: 991px) {
  .industries {
    padding-bottom: 75px;
  }
}
@media (max-width: 575px) {
  .industries {
    padding-bottom: 75px;
  }
}
.industries .images-holder {
  width: calc(100% - 32px);
  margin: auto;
}
@media (max-width: 1199px) {
  .industries .images-holder {
    width: 100%;
    height: auto;
  }
}
.industries .images-holder img {
  height: 400px;
  z-index: 1;
  transition: 0.5s;
}
.industries .images-holder .shape-upper {
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(244, 112, 0, 0.8);
  transition: 0.3s;
  z-index: 2;
  opacity: 0;
}
@media (max-width: 767px) {
  .industries .images-holder .shape-upper {
    display: none;
  }
}
.industries .images-holder .shape-under {
  right: 0px;
  bottom: 0px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(244, 112, 0, 0.8);
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 767px) {
  .industries .images-holder .shape-under {
    display: none;
  }
}
.industries:hover .images-holder .shape-upper {
  opacity: 1;
  left: -40px;
  top: -40px;
  bottom: auto;
}
.industries:hover .images-holder .shape-under {
  opacity: 1;
  right: -40px;
  bottom: -40px;
  top: auto;
}
.industries:hover .images-holder:hover img {
  object-position: right;
}
.industries .industries-row .industries-left p {
  font-weight: 400;
  font-size: 18px;
}
.industries .industries-row .industries-right .icons-info-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 767px) {
  .industries .industries-row .industries-right .icons-info-row {
    margin: 0;
  }
}
.industries .industries-row .industries-right .icons-info-row .icon-info-col {
  flex: 0 0 25%;
  max-width: 25%;
  margin: 25px 0px;
}
@media (max-width: 991px) {
  .industries .industries-row .industries-right .icons-info-row .icon-info-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.industries .industries-row .industries-right .icons-info-row .icon-info-col .icon-info-card {
  display: block;
  text-align: center;
  text-decoration: none;
}
.industries .industries-row .industries-right .icons-info-row .icon-info-col .icon-info-card i {
  font-size: 40px;
  color: rgb(244, 112, 0);
  position: relative;
  top: 0;
  transition: 0.5s;
}
.industries .industries-row .industries-right .icons-info-row .icon-info-col .icon-info-card .industry-name {
  font-family: "Rubik-Light", sans-serif;
  margin-top: 5px;
  color: #333333;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .industries .industries-row .industries-right .icons-info-row .icon-info-col .icon-info-card .industry-name {
    font-size: 15px;
  }
}
.industries .industries-row .industries-right .icons-info-row .icon-info-col .icon-info-card:hover i {
  top: -5px;
}
.industries .industries-row .industries-right .icons-info-row .icon-info-col .icon-info-card:hover .industry-name {
  color: rgb(102, 102, 102);
}

.clients {
  padding: 50px 0px;
}
@media (max-width: 1199px) {
  .clients {
    padding: 100px 0px;
  }
}
.clients .clients-slider {
  margin-top: 30px;
}
.clients .clients-slider .slick-list .slick-track {
  display: flex;
  align-items: center;
}
.clients .clients-slider .slick-list .slick-track .slick-slide {
  height: 100%;
  padding: 0px 10px;
}
.clients .clients-slider .slick-list .slick-track .slick-slide > div {
  height: 100%;
}
.clients .clients-slider .slick-list .slick-track .slick-slide > div .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.clients .clients-slider .slick-list .slick-track .slick-slide > div .item a:focus {
  border: 0;
  outline: 0;
}
.clients .client-slider-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients .client-slider-footer .slick-arrow {
  width: 35px;
  height: 35px;
  background-color: #f5f5f5;
  opacity: 0.75;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  outline: none;
}
.clients .client-slider-footer .slick-arrow:hover {
  opacity: 1;
}
.clients .client-slider-footer .slick-arrow > i {
  font-size: 20px;
  color: rgb(244, 112, 0);
}
.clients .client-slider-footer .slick-arrow:first-child {
  margin-right: 20px;
}

footer {
  position: relative;
  background-color: transparent;
}
footer .container {
  padding: 0px 25px !important;
  background-color: #222222;
}
footer .footer-row {
  padding: 80px 0px 60px 0px;
}
@media (max-width: 575px) {
  footer .footer-row {
    padding-top: 60px;
  }
}
footer .footer-row h4 strong {
  border-bottom: 1px solid rgb(244, 112, 0);
  font-weight: 500;
  color: #ffffff;
}
footer .footer-row .left-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
}
@media (max-width: 991px) {
  footer .footer-row .left-row {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  footer .footer-row .left-row {
    margin-bottom: 0;
  }
}
footer .footer-row .left-row .left-col {
  padding: 0px 15px;
}
@media (max-width: 575px) {
  footer .footer-row .left-row .left-col {
    margin-bottom: 30px;
  }
}
footer .footer-row .left-row .left-col p {
  color: #ffffff;
}
footer .footer-row .left-row .left-col h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
}
footer .footer-row .left-row .left-col .social-media {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
}
footer .footer-row .left-row .left-col .social-media ul {
  display: inline-flex;
}
footer .footer-row .left-row .left-col .social-media ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.5s;
  font-size: 18px;
  padding: 5px 5px;
  width: 28px;
  height: 28px;
  background-color: rgb(244, 112, 0);
}
footer .footer-row .left-row .left-col .social-media ul li a:hover {
  color: rgb(244, 112, 0);
  background-color: #ffffff;
}
footer .footer-row .right-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
  position: relative;
}
@media (max-width: 575px) {
  footer .footer-row .right-row {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
footer .footer-row .right-row .right-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0px 15px;
}
@media (max-width: 575px) {
  footer .footer-row .right-row .right-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
footer .footer-row .right-row .right-col h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
}
footer .footer-row .right-row .right-col .address-block {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
}
footer .footer-row .right-row .right-col .address-block .icon i {
  color: #ffffff;
  font-size: 20px;
}
footer .footer-row .right-row .right-col .address-block .address {
  padding-left: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}
footer .footer-row .right-row .right-col:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -5px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  footer .footer-row .right-row .right-col:before {
    display: none;
  }
}
footer .footer-row .right-row .right-col.no-border:before {
  display: none;
}
footer .contact-row .contact-inner {
  text-align: center;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px 0px;
}
footer .copy-right {
  padding: 25px 0px;
  text-align: center;
  background-color: #2b2b2b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  max-width: 1320px;
  margin: auto;
}
@media (max-width: 575px) {
  footer .copy-right {
    padding: 25px 30px;
  }
}
footer .copy-right a {
  color: #ffffff;
}

.contact-link-icon {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 99999;
}
@media (max-width: 767px) {
  .contact-link-icon {
    width: 50px;
    height: 50px;
  }
}
.contact-link-icon .contact-chat-icon {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #ffffff;
  background: rgb(244, 112, 0);
  background-size: 200%;
  border-radius: 50%;
  position: relative;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contact-link-icon .contact-chat-icon {
    font-size: 24px;
  }
}
.contact-link-icon .contact-chat-icon:hover {
  text-decoration: none;
}
.contact-link-icon .contact-chat-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: 50%;
  z-index: -1;
}

/******************************/
/* IT SOLUTION PAGE */
/******************************/
.it-card-section .row {
  --bs-gutter-y: 3.5rem;
}

.it-solution {
  background-image: url("../images/picture13.jpeg");
}

.it-card {
  display: block;
  padding: 65px 30px 30px;
  background-color: #ffffff;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
  position: relative;
  transition: 0.3s;
  top: 0;
  height: 100%;
  color: #333333;
  gap: 15px;
}
.it-card.last-child {
  padding-top: 65px;
}
.it-card.last-child > div {
  border-bottom: 0;
}
.it-card .number {
  position: absolute;
  top: -30px;
  width: 80px;
  height: 80px;
  border-radius: 0px 0px 50% 50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(244, 112, 0);
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
}
.it-card .number img {
  width: 50px;
}
.it-card > div {
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 10px;
  margin-bottom: 15px;
  gap: 20px;
}
.it-card h4 strong {
  padding: 10px 0px;
  display: block;
}
.it-card:hover {
  top: -15px;
}

/*-------------------------------*/
/*      Innerpage - iworxs ECM Suite	 */
/*-------------------------------*/
.ecm-content-card:hover .count_big {
  opacity: 0.6;
  -webkit-text-stroke-color: rgb(244, 112, 0);
  transition: 0.3s;
}
.ecm-content-card:hover span i {
  top: 5px;
}
.ecm-content-card span i {
  font-size: 80px;
  color: rgb(244, 112, 0);
  position: relative;
  top: 0;
  transition: 0.3s;
}
.ecm-content-card h4 {
  font-weight: 500;
}

.iworxs-ecm {
  background-image: url(../images/picture14.jpeg);
}

.count_big {
  color: transparent;
  font-size: 65px;
  font-weight: 800;
  font-style: normal;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: rgb(244, 112, 0);
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .count_big {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .count_big {
    font-size: 45px;
  }
}

/*-------------------------------*/
/*      Innerpage - it Services	 */
/*-------------------------------*/
.overall-leistungen {
  overflow-x: clip;
}

.tab-trigger_sec {
  position: relative;
  top: -50px;
}
.tab-trigger_sec .tab-card_sec {
  background-color: #ffffff;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 10px 30px 0 rgba(17, 12, 79, 0.1);
  position: relative;
  top: 0;
  transition: 0.3s;
  cursor: pointer;
  gap: 15px;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.tab-trigger_sec .tab-card_sec:hover {
  top: -15px;
}
.tab-trigger_sec .tab-card_sec span {
  width: 40px;
  height: 40px;
}
.tab-trigger_sec .tab-card_sec .title {
  font-size: 19px;
}

.it-services {
  background-image: url("../images/picture4.jpeg");
}

.service_list {
  transition: 0.3s;
}
.service_list .content_wrap {
  padding: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 1398px) {
  .service_list .content_wrap {
    padding: 75px;
  }
}
@media (max-width: 1199px) {
  .service_list .content_wrap {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .service_list .content_wrap {
    padding: 35px 30px;
  }
}
.service_list .content_wrap.offshoring {
  background-color: rgb(244, 112, 0);
}
.service_list .service-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  overflow: hidden;
  transition: 0.3s;
}
.service_list .service-img:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}
.service_list .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

/**********************/
/*** Uber Uns ***/
/**********************/
.about-us {
  background-image: url("../images/picture16.jpeg");
}

.history .history-col {
  position: relative;
}
.history .history-col:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 35px;
  left: 0;
  width: calc(100% + 50px);
  height: 1px;
  background-color: #333333;
}
@media (max-width: 991px) {
  .history .history-col:before {
    right: 0;
    width: 100%;
  }
}
.history .history-col h2 {
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(244, 112, 0);
  -webkit-text-fill-color: rgb(244, 112, 0);
  font-size: 60px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .history .history-col h2 {
    font-size: 50px;
  }
}

.vision-mission {
  position: relative;
}
.vision-mission .vm-holder.with-border {
  border-bottom: 1px solid #d3d3d3;
}
.vision-mission .vm-holder .icon {
  font-size: 85px;
  color: rgb(244, 112, 0);
}
@media (max-width: 1199px) {
  .vision-mission .vm-holder .icon {
    font-size: 70px;
  }
}
.vision-mission .images-holder {
  position: relative;
  max-width: 700px;
  margin-left: 16%;
}
.vision-mission .images-holder .first-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 10px 1px 30px rgba(0, 0, 0, 0.2);
  max-width: 475px;
  border: 5px solid #ffffff;
}
@media (max-width: 767px) {
  .vision-mission .images-holder .first-image {
    height: auto;
    width: 100%;
  }
}
.vision-mission .images-holder .first-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  transform: scale(1);
  transition: 0.6s;
}
.vision-mission .images-holder .first-image:after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.vision-mission .images-holder .first-image:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}
.vision-mission .images-holder .first-image:hover img {
  transform: scale(1.15);
}
.vision-mission .images-holder .shape {
  position: absolute;
  width: 60%;
  height: 90%;
  top: -35px;
  left: -35px;
  background-color: rgb(244, 112, 0);
  transition: 0.5s;
}
.vision-mission .images-holder:hover .shape {
  top: -20px;
  left: -15px;
}

.team-members {
  position: relative;
}
.team-members .single-team-member {
  display: block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(17, 12, 79, 0.1);
  border: 5px solid #ffffff;
  transition: 0.3s;
}
.team-members .single-team-member .team-thumbnail {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.team-members .single-team-member .team-thumbnail img {
  width: 100%;
  transition: 0.5s;
  position: relative;
  top: 0;
}
.team-members .single-team-member .inner-content {
  background-color: #ffffff;
  text-align: center;
  padding: 20px 0px;
}
.team-members .single-team-member .inner-content .member-name {
  text-transform: capitalize;
  font-size: 20px;
  color: rgb(102, 102, 102);
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 1549px) {
  .team-members .single-team-member .inner-content .member-name {
    font-size: 17px;
  }
}
.team-members .single-team-member .inner-content .member-designation {
  font-size: 14px;
  color: #333333;
}
@media (max-width: 1549px) {
  .team-members .single-team-member .inner-content .member-designation {
    font-size: 13px;
  }
}

/*-------------------------------*/
/*******  References Page  *******/
/*-------------------------------*/
.references-banner {
  background-image: url(../images/reference-banner.jpg);
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
}

.testimonials {
  padding: 60px 0px;
  position: relative;
  background: url(../images/picture20.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 1199px) {
  .testimonials {
    padding: 100px 0px;
  }
}
.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.testimonials .all-testimonials {
  position: relative;
}
.testimonials .all-testimonials .heading-line {
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
}
.testimonials .all-testimonials .heading-line:before, .testimonials .all-testimonials .heading-line:after {
  background-color: rgb(244, 112, 0);
}
.testimonials .all-testimonials .heading {
  text-align: center;
  color: #ffffff !important;
}
.testimonials .all-testimonials .heading .heading-dot {
  color: #ffffff;
}
.testimonials .all-testimonials .testimonials-holder .nav-tabs {
  justify-content: center;
  border: 0;
}
.testimonials .all-testimonials .testimonials-holder .nav-tabs .nav-item {
  background-color: rgba(255, 255, 255, 0.85);
}
.testimonials .all-testimonials .testimonials-holder .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border: 0;
  color: #333333;
}
.testimonials .all-testimonials .testimonials-holder .nav-tabs .nav-item .nav-link.active {
  color: rgb(244, 112, 0);
  position: relative;
}
.testimonials .all-testimonials .testimonials-holder .nav-tabs .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid rgba(255, 255, 255, 0.85);
}
.testimonials .all-testimonials .testimonials-holder .tab-content {
  margin-top: 50px;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel {
  height: 410px;
}
@media (max-width: 1199px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel {
    height: 740px;
  }
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner {
  height: 100%;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item {
  height: 100%;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  left: 10%;
  right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption {
    left: 5%;
    right: 5%;
  }
}
@media (max-width: 767px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption {
    left: 0;
    right: 0;
  }
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption .testimonial-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0px auto 30px;
  border: 1px solid #ffffff;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption .testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption p {
  text-align: left;
  font-family: "Rubik-Light", sans-serif;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-inner .carousel-item .carousel-caption .posted-by {
  text-align: left;
  font-family: "Rubik-Medium", sans-serif;
  font-size: 14px;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev:hover,
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next:hover {
  opacity: 1;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next {
  top: calc(50% - 70px);
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
}
@media (max-width: 991px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next {
    right: -24px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next {
    width: 23px;
    height: 32px;
    right: -24px;
  }
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev {
  top: calc(50% - 70px);
  left: 0;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
}
@media (max-width: 991px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev {
    left: -24px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev {
    left: -24px;
    width: 23px;
    height: 32px;
  }
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev span,
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next span {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev span i,
.testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next span i {
  font-size: 35px;
  color: rgb(244, 112, 0);
}
@media (max-width: 991px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-prev span i,
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel .carousel-control-next span i {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel.client-carousal {
    height: 340px;
  }
}
@media (max-width: 767px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel.client-carousal {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel.interns-carousal {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .testimonials .all-testimonials .testimonials-holder .tab-content .tab-pane .carousel.interns-carousal {
    height: 880px;
  }
}

.references-page {
  position: relative;
  padding-bottom: 50px;
}
.references-page.references-page-video {
  padding-bottom: 0;
}
.references-page.reference-client {
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .references-page.reference-client {
    padding-top: 40px;
  }
}
.references-page .main-text-info {
  background-color: #ffffff;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 10px 30px 0 rgba(17, 12, 79, 0.1);
  position: relative;
  top: -60px;
  font-size: 20px;
  line-height: 30px;
  font-family: "Rubik-Light", sans-serif;
}
.references-page .reference-video-row {
  margin-bottom: 70px;
}
.references-page .reference-video-row .client-talk {
  margin-bottom: 30px;
}
.references-page .our-clients .clients-reference-row .reference-logo {
  box-shadow: 0px 0px 0px 0px rgba(17, 12, 79, 0.1);
  position: relative;
  top: 0;
  transition: 0.5s;
}
.references-page .our-clients .clients-reference-row .reference-logo img {
  width: 100%;
}
.references-page .our-clients .clients-reference-row .reference-logo:hover {
  top: -15px;
  box-shadow: 0 10px 30px 0 rgba(17, 12, 79, 0.1);
}

.references-testimonials {
  background-color: #f9f8f7;
  padding: 120px 0px;
}
@media (max-width: 1199px) {
  .references-testimonials {
    padding: 100px 0px;
  }
}
.references-testimonials .reference-testimonial-item {
  text-align: center;
}
.references-testimonials .reference-slick-arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.references-testimonials .reference-slick-arrow-container > .slick-arrow {
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  opacity: 0.85;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  outline: none;
}
.references-testimonials .reference-slick-arrow-container > .slick-arrow:focus, .references-testimonials .reference-slick-arrow-container > .slick-arrow:active {
  outline: none;
}
.references-testimonials .reference-slick-arrow-container > .slick-arrow > i {
  font-size: 20px;
  color: rgb(244, 112, 0);
}
.references-testimonials .reference-slick-arrow-container > .slick-arrow:hover {
  opacity: 1;
}
.references-testimonials .reference-slick-arrow-container > .slick-arrow:first-child {
  margin-right: 20px;
}
.references-testimonials .testimonial-item-content-body p {
  font-weight: 300;
  font-size: 15px;
  margin: 0;
}
.references-testimonials .testimonial-item-content {
  padding-bottom: 35px;
}
.references-testimonials .testimonial-item-name {
  font-weight: 500;
  color: rgb(102, 102, 102);
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 2px;
}
.references-testimonials .testimonial-item-designation {
  font-size: 15px;
  font-weight: 300;
}
.references-testimonials .testimonial-item-header {
  padding-bottom: 15px;
}

.minister-visit {
  max-width: 1000px;
  margin: 0 auto;
}

.news-slider {
  position: relative;
}
@media (max-width: 991px) {
  .news-slider .carousel {
    height: auto;
  }
}
.news-slider .carousel .carousel-inner {
  height: 100%;
}
.news-slider .carousel .carousel-inner .carousel-item {
  height: 100%;
}
.news-slider .carousel .carousel-inner .carousel-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-slider .carousel .carousel-btn {
  border: 0;
  width: 40px;
  height: 40px;
  background-color: #ef6d0f;
  opacity: 0.95;
  font-size: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.news-slider .carousel .carousel-btn:hover {
  opacity: 1;
}
.news-slider:after {
  content: "";
  position: absolute;
  left: -9px;
  top: -9px;
  width: 300px;
  height: 300px;
  border: 10px solid #f47000;
  border-bottom: 0;
  border-right: 0;
}
@media (max-width: 991px) {
  .news-slider:after {
    top: -5px;
    left: -5px;
    width: 100px;
    height: 100px;
    border-width: 5px;
  }
}
.news-slider:before {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -9px;
  width: 300px;
  height: 300px;
  border: 10px solid #f47000;
  border-left: 0;
  border-top: 0;
}
@media (max-width: 991px) {
  .news-slider:before {
    right: -5px;
    bottom: -5px;
    width: 100px;
    height: 100px;
    border-width: 5px;
  }
}

.news-content {
  padding-top: 82px;
}
@media (max-width: 991px) {
  .news-content {
    padding-top: 40px;
  }
}
.news-content .date span {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

/*---------------------------------------*/
/*      Innerpage - individual software	 */
/*---------------------------------------*/
.individual-software {
  background-image: url("../images/developer-leistungen.jpg");
}

.software-page .software-card .benefits .benefit-col {
  transition: 0.3s;
}
.software-page .software-card .benefits .benefit-col .number {
  top: -40px;
  width: 80px;
  height: 80px;
  background-color: rgb(244, 112, 0);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .software-page .software-card .benefits .benefit-col .number {
    width: 65px;
    height: 65px;
  }
}
.software-page .software-card .benefits .benefit-col .number img {
  width: 35px;
}
.software-page .software-card .benefits .benefit-col:hover {
  transition: 0.3s;
  position: relative;
  top: -20px;
}
.software-page .software-card .benefits .benefit-col:hover .number {
  background-color: #333333;
}

/*---------------------------------------*/
/*      Innerpage - support-maintance	 */
/*---------------------------------------*/
.support-bg {
  background-image: url("../images/picture5.jpeg");
}

.support-page {
  z-index: 1;
}
.support-page .content-card {
  padding: 60px 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .support-page .content-card {
    padding: 50px 30px;
  }
}
.support-page [class^=col-]:last-child .content-card p {
  font-size: 22px;
  line-height: 1.3;
}

.points {
  padding-left: 0;
  margin-bottom: 0;
}
.points li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .points li {
    hyphens: auto;
  }
}
.points li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url(../icons/iworxs-bullet.svg);
  width: 12px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 100%;
}

/*-------------------------------*/
/*      Innerpage - it Offsoring	 */
/*-------------------------------*/
.offshore-img {
  width: 100%;
  height: 400px;
}
.offshore-img img {
  height: 100%;
  object-fit: cover;
}

.it-offshoring {
  background-image: url(../images/picture19.jpeg);
}

.offshore-cnt {
  background-color: #f1f1f1;
  padding: 70px 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1398px) {
  .offshore-cnt {
    padding: 70px 75px;
  }
}
@media (max-width: 1199px) {
  .offshore-cnt {
    padding: 70px 50px;
  }
}
@media (max-width: 575px) {
  .offshore-cnt {
    padding: 35px 25px;
  }
}
.offshore-cnt.off-team {
  background-color: rgb(244, 112, 0);
  color: #ffffff;
}
.offshore-cnt.skills {
  background-color: rgb(102, 102, 102);
  color: #ffffff;
}
.offshore-cnt.collaboration {
  background-color: #f1f1f1;
}
.offshore-cnt .heading-line.white {
  background-color: #ffffff;
}
.offshore-cnt .heading-line.white::after {
  background-color: rgb(244, 112, 0);
}
.offshore-cnt .heading-line.white::before {
  background-color: rgb(244, 112, 0);
}

.offshore-card {
  padding: 35px;
  background-color: #f9f8f7;
  height: 100%;
  border-top: 4px solid rgb(244, 112, 0);
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(17, 12, 79, 0.1);
  border-radius: 10px;
}
.offshore-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -10px;
  width: 10px;
  height: 4px;
  background-color: #ffffff;
  transition: 1s;
  overflow: hidden;
}
.offshore-card:hover:before {
  left: 100%;
}

/*-------------------------------*/
/*      Innerpage - Bridged-IT	 */
/*-------------------------------*/
.bridged-it {
  background-image: url(../images/picture18.jpeg);
  filter: contrast(1.75) brightness(0.85);
}

h2 span {
  color: rgb(244, 112, 0);
}

.bridge-process-wrap .bridge-process {
  position: relative;
  padding: 0 20px;
}
.bridge-process-wrap .bridge-process::after {
  position: absolute;
  content: "";
  left: 0;
  top: 90px;
  width: 100%;
  border-top: 1px dashed #ef6d0f;
}
.bridge-process-wrap .bridge-process.end::after {
  width: 50%;
}
.bridge-process-wrap .bridge-process.start::after {
  width: 50%;
  left: 50%;
}
.bridge-process-wrap .bridge-process span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(244, 112, 0);
  display: block;
}
.bridge-process-wrap .bridge-process .count_big {
  font-size: 60px;
}
@media (max-width: 767px) {
  .bridge-process-wrap .bridge-process .count_big {
    font-size: 50px;
  }
}
.bridge-process-wrap .bridge-process p {
  margin-top: 5px;
}
.bridge-process-wrap .bridge-process .icon-holder {
  margin-bottom: 20px;
}
.bridge-process-wrap .bridge-process .icon-holder img {
  height: 60px;
  filter: brightness(0);
}

.network-wrap .network-card {
  height: 100%;
  padding: 20px;
  box-shadow: 0 15px 55px -5px rgba(9, 31, 67, 0.1);
}
.network-wrap .network-card.indo-german {
  padding: 0;
  border: unset;
  box-shadow: unset;
}
.network-wrap .network-card.indo-german img {
  width: 80px;
  height: 53px;
  object-fit: cover;
}
.network-wrap .network-card span {
  width: 100%;
  height: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
.network-wrap .network-card span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*-------------------------------------*/
/*   Modernisierung Und Optimierung    */
/*-------------------------------------*/
.modernization-optimization {
  background-image: url(../images/do-more.jpg);
}

.modernization-optimization-section .service-col {
  padding: 0px 30px 30px;
}
.modernization-optimization-section .service-col img {
  background-color: rgb(244, 112, 0);
  padding: 15px;
  border-radius: 50%;
  height: 70px;
  transition: 0.3s;
  margin-top: -35px;
}
.modernization-optimization-section .service-col:hover img {
  background-color: #333333;
}
.modernization-optimization-section .service-col p {
  font-size: 18px;
}

/*-------------------------------*/
/*      Innerpage - Kontakt	 */
/*-------------------------------*/
.title-section .mail-info {
  color: rgb(244, 112, 0);
}

.contact-bg {
  background-image: url(../images/picture21.jpeg);
}

.contact-wrap .form-control {
  height: 45px;
  border-radius: 0;
  font-size: 14px;
  box-shadow: none !important;
  border-color: #e1e1e1;
}
.contact-wrap .form-control:focus {
  border-color: rgb(244, 112, 0);
}
.contact-wrap textarea.form-control {
  height: 150px;
  resize: none;
}

/*-------------------------------*/
/*      Innerpage - Impressum 	 */
/*-------------------------------*/
.privacy-policy-section .policy-items h6 {
  font-weight: 500;
}
.privacy-policy-section .policy-items p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 0;
}
.privacy-policy-section .policy-items:not(:last-child) {
  margin-bottom: 50px;
}

header > .header > .navbar > .navbar-collapse > .navbar-nav > .nav-item > .dropdown-menu > li:nth-child(2) {
  display: none;
}

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