/* ===============================================
  Fonts
  ================================================*/

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One:wght@300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');

/* ===============================================
  Colordefinition
  ================================================*/

:root {
  --akzent: rgb(255, 219, 13)!important;
  --akzentHover: rgb(255, 229, 85)!important;
  --akzentTransparent: rgba(255, 229, 85, 0.575)!important;
  --headerColor: #f8f9fa!important;
  /* --gray: #5E5E5E!important; */
  --gray: #ddddddb0!important;
  --mainColor: #1a1d24!important;
  --mainColorTransparent: #1a1d24e0!important;
  --secondColor: #1e2329!important;
  --btnHoverColor: #212832!important;
  --footerCompanyColor: #399e50!important;
  --footerColor: #343a40!important;

  --subheaderHeight: 3px;
}

body {
  overflow-x: hidden;
  background: var(--mainColor);
}

#preloader {
  background: #1A1A1A url(../img/preloader/stein.gif) no-repeat center center;
  background-size: 30%;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 1000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost",sans-serif;
}

p {
  line-height: 1.55;
  color: #333;
  font-size: 400;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 62px;
}

h2 {
  font-size: 30px;
  margin-bottom: 65px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

/* ==================================================
  General
  ================================================== */

a {
  transition: 0.5s;
}

a.txt-main:hover {
  color: var(--btnHoverColor);
}

.txt-blue {
  color: #199EB8;
}

.txt-orange {
  color: #E04F00;
}

.txt-main {
  color: var(--mainColor);
}

.bg-main {
  background: var(--mainColor);
}

.border-right-highres {
  border-right: 1px solid #dee2e6;
}

@media (max-width: 61.9em) {
  .border-right-highres {
    border-right: 0px;
  }
}


/* ==================================================
  Elements
  ================================================== */

.btn {
  background-color: var(--mainColor);
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  padding: 15px 45px;
  /* border-radius: 50px; */
  transition:all .4s ease-out 0s;
}

.btn:hover {
  background-color: var(--btnHoverColor);
  color: #fff;
  opacity: .8;
}

.btn:focus {
  color: #fff;
}

.btn-ghost {
  border: 3px solid #fff;
  background-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--secondColor);
  color: #fff;
  /*background-color: #fff;
  color: #199EB8;*/
}

.btn-orange {
  color: #fff;
  background-color: var(--secondColor);
  border-color: var(--secondColor);
}

.btn-orange:hover {
  color: #fff;
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.btn-search {
  padding: 5px 10px;
  border: 0;
  background-color: var(--akzent);
}

.btn-search:hover {
  background-color: var(--akzentHover);
}

.centerContainerWrapper {
  min-height: 350px;
  height: 100%;
  position: relative;
}

.centerContainer {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

section {
  padding: 85px 0;
}

.card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
}

a:hover {
  text-decoration: none !important;
}

.scrolltop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mainColor);
  color: #fff;
  text-align: center;
  font-size: 24px;
}

.scrolltop:hover,
.scrolltop:active,
.scrolltop:focus {
  color: #fff !important;
  opacity: .75;
}

/* ==================================================
  Header Styling
================================================== */

.headerWrapper {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 4;
  transition: all .4s ease-out 0s;
  background: 
    /* top, transparent red */ 
    linear-gradient(
      var(--mainColorTransparent), 
      var(--mainColorTransparent)
    ),
    /* bottom, image */
    url(../img/background/abstractFigures.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 4px solid var(--akzent);
}

.headerWrapper .container {
  display: flex;
  align-items: center;
}

.headerWrapper .container .companyName {
  position: relative;
  color: #fff;
  font-family: "Fjalla One",sans-serif;
  margin: 10px;
  font-size: 28px;
  font-weight: 400;
}

.headerWrapper .container .companyName .companyDivider {
  display: block;
  position: relative;
  top: 0px;
  margin-left: 1px;
  margin-bottom: 0;
  width: 85%;
  height: 2px;
  background-color: var(--mainColor);
}

.headerWrapper .container .companyName .companyDescription {
  padding: 0px;
  margin: 0;
  margin-left: 1px;
  font-size: 18px;
  color: #fff;
}

.headerWrapper .container nav ul>li a {
  font-family: "Jost",sans-serif;
  color: var(--headerColor);
  font-weight: 700;
  padding: 21px 7px;
  display: block;
  font-size: 17px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  text-transform: capitalize;
  position: relative;
}

.headerWrapper .container nav ul>li {
  display: inline-block;
  position: relative;
  z-index: 10;
  margin: 0px 14px;
}

.headerWrapper .container nav ul>li a::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 10px;
  right: 5px;
  left: -5px;
  height: 2px;
  z-index: 10;
  /* background: #fff; */
  background: var(--akzentHover);
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

.headerWrapper .container nav ul>li a.active::before{
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.headerWrapper .container nav ul>li:hover>a {
  color: #fff;
}

.headerWrapper .container nav ul>li:hover>a::before{
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.headerWrapper .container .social-media {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 20px;
  color: var(--akzent);
}

.headerWrapper .container .social-media li {
  list-style: none;
  padding: 0px 10px;
}

.headerWrapper .container .social-media a {
  color: unset;
}

.headerWrapper .container .social-media a:hover {
  color: var(--akzentHover);
}

.headerWrapper .container button {
  margin-left: 30px;
  cursor: pointer;
}

.headerWrapperSticky {
  position: sticky;
  top: 0px;
  left: 0px;
  padding: 3px 0px;
  width: 100%;
  z-index: 4;
  background: 
    /* top, transparent red */ 
    linear-gradient(
      var(--mainColorTransparent), 
      var(--mainColorTransparent)
    ),
    /* bottom, image */
    url(../img/background/abstractFigures.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 4px solid var(--akzent);
  transition: all .5s ease-out 0s;
}

.headerWrapperSticky .container {
  display: flex;
  align-items: center;
}

.headerWrapperSticky .container .companyName {
  color: #fff;
  font-family: "Fjalla One",sans-serif;
  margin-top: 4px;
  margin-left: 10px;
  font-size: 28px;
  font-weight: 400;
}

.headerWrapperSticky .container .companyName .companyDivider {
  display: block;
  position: relative;
  top: 0px;
  margin-left: 1px;
  margin-bottom: 0;
  width: 85%;
  height: 2px;
  background-color: #fff;
}

.headerWrapperSticky .container .companyName .companyDescription {
  padding: 0px;
  padding-bottom: 2px;
  margin: 0;
  margin-left: 1px;
  font-size: 18px;
  color: #fff;
}

.headerWrapperSticky .container nav ul>li a {
  font-family: "Jost",sans-serif;
  color: var(--headerColor);
  font-weight: 700;
  padding: 21px 7px;
  display: block;
  font-size: 17px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  text-transform: capitalize;
  position: relative;
}

.headerWrapperSticky .container nav ul>li {
  display: inline-block;
  position: relative;
  z-index: 10;
  margin: 0px 14px;
}

.headerWrapperSticky .container nav ul>li a::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 10px;
  right: 5px;
  left: -5px;
  height: 2px;
  z-index: 10;
  /* background: #fff; */
  background: var(--akzentHover);
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

.headerWrapperSticky .container nav ul>li a.active::before{
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.headerWrapperSticky .container nav ul>li:hover>a {
  color: #fff;
}

.headerWrapperSticky .container nav ul>li:hover>a::before{
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.headerWrapperSticky .container .social-media {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 20px;
  color: var(--akzent);
}

.headerWrapperSticky .container .social-media li {
  list-style: none;
  padding: 0px 10px;
}

.headerWrapperSticky .container .social-media a {
  color: unset;
}

.headerWrapperSticky .container .social-media a:hover {
  color: var(--akzentHover);
}

.headerWrapperSticky .container button {
  margin-left: 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .headerWrapper .container .companyName{
    margin-top: 0px;
    margin-left: 0px;
  }
}

/* ==================================================
  Hero Styling
================================================== */

.hero {
  display: table;
  position: relative;
  /* background-image: url(../img/testbg3.jpg); */
  background-image: url(../img/background/klipphausen.jpg);
  /* background-image: url(../img/background/skyscraper.jpg); */
  /*background-image: url(../img/cover.jpg);*/
  background-size: cover;
  background-position: center;
  padding: 0;
  padding-top: 150px;
  /* padding: 150px 0; */
  color: #fff;
  width: 100%;
  height: 70vh;
}

.hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  overflow: hidden;
}

.hero .container .playContainer {
  z-index: 3;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 78%;
}

.hero .container .playContainer img {
  height: 70px;
  width: 70px;
  transition: all .3s ease-out 0s;
}

.hero .container .playContainer:hover img {
  transform: translate(-5%);
  height: 80px;
  width: 80px;
}

.hero .container .personContainer {
  z-index: 3;
  cursor: pointer;
  position: absolute;
  top: 10%;
  left: 65%;
}

.hero .container .personContainer img {
  height: 500px;
  width: 450px;
  transition: all .3s ease-out 0s;
}

.hero .container .personContainer:hover img {
  transform: translate(-3%, -2%);
  height: 530px;
  width: 480px;
}

.hero .container .personName {
  z-index: 4;
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  top: 15%;
  left: 65%;
  width: 400px;
  height: 350px;
}

.hero .container .personName p {
  color: var(--mainColor);
  font-size: 25px;
  font-weight: 600px;
  text-shadow: 8px black;
}

.hero-brand {
  margin-bottom: 50px;
  display: inline-block;
}

.hero-brand:hover {
  opacity: .75;
}

.tagline {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 26px;
  margin: 15px 0 25px 0;
  color: #fff;
}

@media (max-width: 990px) {
  .hero .container .personContainer {
    left: 45%;
  }  
  
}

@media (max-width: 650px) {
  .hero .container .personContainer {
    left: 18%;
  }
}

@media (max-width: 400px) {

  .hero {
    height: 40vh;
  }

  .hero .container .personContainer {
    left: 0;
  }

  .hero .container .personContainer img {
    height: 300px;
    width: 250px;
    transition: all .3s ease-out 0s;
  }

  .hero .container .personContainer:hover img {
    transform: translate(-3%, -2%);
    height: 330px;
    width: 280px;
  }
}

/* ==================================================
  Header Styling
================================================== */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 22px 15px 18px 15px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  outline: none;
}

.nav-menu a:hover,
.nav-menu li:hover > a,
.nav-menu .menu-active > a {
  /* color: rgba(255, 255, 255, 0.75); */
}

.nav-menu ul {
  margin: 4px 0 0 15px;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
  background: #fff;
  border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li:hover {
  background: var(--mainColor);
  transition: 0.3s;
}

.nav-menu ul li a {
  color: #333;
  transition: none;
  padding: 10px 15px;
}

.nav-menu ul li a:hover {
  /* color: #fff; */
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  /* margin: 8px 10px 0 0; */
  margin-top: 25px;
  margin-right: 35px;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--mainColor);
}

#mobile-nav ul .menu-item-active {
  color: var(--mainColor);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* ==================================================
  Dialog
  ================================================== */

  .dialogWrapper {
    /* display: none; Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 51; /* Sit higher than hero and sticky nav*/
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  .dialog {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
  }

  .dialog .title {
    padding: .4em 1em;
    position: relative;
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dialog .btnclose {
    color: var(--mainColor);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .dialog .btnclose:hover {
    color: var(--secondColor);
  }

  .dialog .btnclose:active {
    color: var(--mainColor);
  }

  .dialog .btnok {
    color: var(--mainColor);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .dialog .btnok:hover {
    color: var(--secondColor);
  }

  .dialog .btnok:active {
    color: var(--mainColor);
  }

  .dialog .content {
    display: flex;
    width: 100%;
    min-height: 90px;
    max-height: none;
    height: auto;
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
    align-items: center;
    justify-content: center;
  }

  /* only necessary for ImageDialog */
  .dialog .data {
    display: flex!important;
    align-items: center!important;
    flex-direction: column!important;
  }

  .dialog .image {
    display: flex!important;
    align-items: center!important;
    flex-direction: column!important;
  }

  @media (max-width: 61.9em) {
    .dialog {
      width: 100%;
    }
  }

/* ==================================================
  TopAction
================================================== */

.topaction {
  position: relative;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 3;
}

.topaction .contentWrapper {
  position: absolute;
  /* background: var(--mainColor); */
  width: auto;
  top: -50%;
  right: 0;
  /* left: 50%; */
  /* transform: translate(0, -70%); */
  transform: translate(0, -110%);
  /* border: 1px solid greenyellow; */
}

.topaction .contentWrapper .content {
  padding: 10px;
  height: 200px;
  color: #fff;
  /* background: var(--mainColorTransparent); */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
  border-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 2px solid var(--akzent);
  border-right: 0;
}

.topaction .contentWrapper .content h3 {
  text-align: left;
  font-size: 12px;
  padding: 5px;
  padding-bottom: 0px;
}

.topaction .contentWrapper .content img {
  width: 120px;
  height: 150px;
  padding: 5px;
  transition: 0.5s;
}

.topaction .contentWrapper .content img:hover {
  transform: translate(0, 5%);
}

/* ==================================================
  Info
================================================== */

.info {
  position: relative;
  margin: 0;
  margin-top: 10px; /*used for barrier tape*/
  margin-bottom: 20px;
  padding: 0;
  /* background: var(--mainColorTransparent); */
  border-top: 1px solid var(--akzentTransparent);

  background: linear-gradient(
                var(--mainColor) 5%, 
                rgba(187, 187, 187, 0.459) 30%,
                var(--mainColor) 100%
              ),
              url(../img/info/wallpapers/csgo.jpg);

  /* background: url(../img/background/abstractFigures3.jpg);             */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.info::before{
  position: absolute;
  content: '';
  display: block;
  top: -10px;
  width: 100%;
  height: 10px;
  border-top: 1px solid var(--akzent);
  border-bottom: 1px solid var(--akzent);
  background: repeating-linear-gradient(
    -45deg,
    var(--akzent),
    var(--akzent) 10px,
    #141617 10px,
    #141617 20px
  );
}

/* .info::after{
  position: absolute;
  content: '';
  display: block;
  top: 100%;
  width: 100%;
  height: 10px;
  border-top: 1px solid var(--akzent);
  border-bottom: 1px solid var(--akzent);
  background: repeating-linear-gradient(
    -45deg,
    var(--akzent),
    var(--akzent) 10px,
    #141617 10px,
    #141617 20px
  );
} */

.info .tab {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 100%;
  padding: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background: transparent;
  /* border: 1px solid rgba(70, 70, 70, 0.151); */
  border: 1px solid rgba(70, 70, 70, 0.085);
  border-top: 0;
  border-left: 0;
  transition: 0.5s;
}

.info .tab:hover {
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(2px) saturate(180%);
  -webkit-backdrop-filter: blur(2px) saturate(180%);
  /* background-color: rgba(17, 25, 40, 0.75); */
  /* background-color: var(--akzentTransparent); */
  transition: 1.5s;
}

.info .tab:last-of-type {
  border-right: 0;
}

.info .tab.active {
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(70%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  /* background-color: rgba(17, 25, 40, 0.75); */
  /* background-color: var(--mainColorTransparent); */
  transition: 0.5s;
}

.info .tab .imgWrapper {
  width: 100px;
  height: 100px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.info .tab .imgWrapper img {
  width: auto;
  height: 100%;
}

.info .tab:hover .imgWrapper img {
  transform: scale(110%);
  transition: 0.5s;
}

.info .tab.active:hover .imgWrapper img {
  transform: unset;
}

.info .tab .caption {
  color: #fff;
}

.info .tabdialogWrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
}

.info .tabdialog {
  position: relative;
  width: 75%;
  height: 100%;
  backdrop-filter: blur(5px) saturate(50%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info .tabdialog .closeIcon {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 2;
}

.info .tabdialog .closeIcon i {
  font-size: 20px;
  /* color: #fff; */
  color: var(--akzent);
  padding: 10px;
}

.info .tabdialog .closeIcon:hover i {
  color: var(--akzentHover);
}

.info .tabdialog .content {
  z-index: 1;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info .tabdialog .content h3 {
  align-self: flex-start;
  justify-self: flex-start;
  padding: 20px;
  padding-top: 30px;
}

.info .tabdialog .content p {
  color: #fff;
  padding: 20px;
  padding-right: 50px;
  padding-top: 0;
  margin: 0;
  text-shadow: 0px 0px 3px black;
}

.info .tabdialog .content .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.info .tabdialog .content .logo img {
  margin-right: 30px;
  margin-left: 30px;
  width: 50px;
  height: auto;
  transition: 0.5s;
}

.info .tabdialog .content .logo img:hover {
  transform: scale(110%);
  transition: 0.5s;
}

.info .tabdialog .content a {
  color: var(--akzent);
}

.info .tabdialog .content a:hover {
  color: var(--akzentHover);
}

/* ==================================================
  About Styling
================================================== */

.about {
  position: relative;
  top: -35px;
  /* background: linear-gradient(
      var(--mainColorTransparent), 
      var(--mainColorTransparent)
    ); */

  background: linear-gradient(
      var(--mainColor) 2%, 
      rgba(187, 187, 187, 0.459) 40%,
      var(--mainColor) 95%
    ),
    url(../img/background/weapon.jpg);

  /* background: url(../img/background/abstractFigures3.jpg);             */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  padding: 30px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.about h2 {
  position: relative;
  color: var(--headerColor);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 120px;
}

.about h2::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  height: var(--subheaderHeight);
  background-color: var(--akzentHover);
}

.about img {
  margin: 20px;
  width: 100%;
}

.about .eventWrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  color: var(--headerColor);

  padding: 20px;
  margin-bottom: 5px;
  margin-left: 5px;

  transition: all .5s ease-out 0s;
}

.about .eventWrapper:hover {
  background-color: var(--akzent);
  color: var(--mainColor);
}

.about .eventWrapper .icon {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: var(--akzentHover);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 25px;
}

.about .eventWrapper .icon i{
  font-size: xx-large;
}

.about .eventWrapper .event {
  padding-top: 10px;
}

.about .eventWrapper .event h3 {
  margin: 0;
}

.about .eventWrapper .event p {
  color: var(--headerColor);
  margin: 0;
}

.about .eventWrapper:hover .event p {
  color: var(--mainColor);
}

.about .eventWrapper .event a {
  color: var(--akzent);
}

.about .eventWrapper:hover .event a,
.about .eventWrapper:hover .event a:hover {
  color: var(--mainColor);
}

.about .eventWrapper .event a:hover {
  color: var(--akzentHover);
}

.about .eventWrapper .event p i {
  padding: 10px 2px 10px 0px;
}

/* ==================================================
  Stream Styling
================================================== */

.stream {
  position: relative;
  background: linear-gradient(
      var(--mainColorTransparent), 
      var(--mainColorTransparent)
    );
  padding: 30px;
  padding-bottom: 100px;
}

.stream h2 {
  position: relative;
  color: var(--headerColor);
  font-weight: 700;
  text-transform: uppercase;
}

.stream h2::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  height: var(--subheaderHeight);
  background-color: var(--akzentHover);
}

/* ==================================================
  Other Styling
================================================== */

.other {
  position: relative;
  top: -20px;
  background: linear-gradient(
                var(--mainColor) 1%, 
                rgba(187, 187, 187, 0.459) 40%,
                var(--mainColor) 95%
              ),
              url(../img/background/soldier.jpg);

  /* background: url(../img/background/abstractFigures3.jpg);             */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* margin-top: 80px; */
  padding: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.other h2 {
  justify-self: start;
  position: relative;
  color: var(--headerColor);
  font-weight: 700;
  text-transform: uppercase;
}

.other h2::after {
  content: '';
  position: absolute;
  /* top: 90px; */
  left: 0%;
  transform: translate(0, 60px);
  width: 100px;
  height: var(--subheaderHeight);
  background-color: var(--akzentHover);
}

.other p {
  justify-self: center;
  font-size: smaller;
  color: var(--headerColor);
}

.other button {
  margin-top: 15px;
  background-color: var(--akzent);
  align-self: flex-start;
  color:rgb(17, 17, 17);
}

.other button:hover {
  background-color: var(--akzentHover);
  color:rgb(17, 17, 17);
}

/* ==================================================
  Gallery Styling
================================================== */

.gallery {
  position: relative;
  background: linear-gradient(
      var(--mainColorTransparent), 
      var(--mainColorTransparent)
    );
  padding: 30px;
  padding-bottom: 100px;
}

.gallery h2 {
  position: relative;
  color: var(--headerColor);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: left;
}

.gallery h2::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100px;
  height: var(--subheaderHeight);
  background-color: var(--akzentHover);
}

.gallery .macys img {
  cursor: pointer;
}

/* ==================================================
  Streamer Styling
================================================== */

.streamer {
  position: relative;
  background: linear-gradient(
      var(--mainColor) 0%,
      transparent 20%, 
      var(--mainColor) 80%
    );
  padding: 30px;
  padding-bottom: 100px;
}

.streamer h2 {
  position: relative;
  color: var(--headerColor);
  font-weight: 700;
  text-transform: uppercase;
  
  margin-bottom: 60px;
}

.streamer h2::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  height: var(--subheaderHeight);
  background-color: var(--akzentHover);
}

.streamer .owlControllerPrev {
  
}

.streamer .owlControllerPrev i,
.streamer .owlControllerNext i {
  cursor: pointer;
  padding: 10px;
  border-radius: 50px;
  background: var(--akzent);
  transition: all .3s ease-out 0s;
}

.streamer .owlControllerPrev i {
  position: absolute;
  left: 30px;
  top: 50%;
}

.streamer .owlControllerNext i {
  position: absolute;
  right: 30px;
  top: 50%;
}

.streamer .owlControllerPrev i:hover,
.streamer .owlControllerNext i:hover {
  background: var(--akzentHover);
}
.streamer .owlControllerNext {}
.streamer .owlControllerNext i {}

.streamer .box {
  position: relative;
  margin: 20px;
}

.streamer .box img {
  /* filter: drop-shadow(0 0 0.75rem crimson); */
  filter: drop-shadow(0 0 0.3rem var(--akzent));
  transition: all .8s ease-out 0s;

  z-index: 0;
}

.streamer .box:hover img {
  filter: drop-shadow(0 0 0.75rem rgba(255, 255, 0, 0.2)) hue-rotate(3rad);
}

.streamer .box .imgFilter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--akzentHover);
  z-index: 1;
  opacity: 0;
  transition: all .5s ease-out 0s;
}

.streamer .box:hover .imgFilter {
  opacity: 0.7;
}

.streamer .box .hiddenContent {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, 0);

  z-index: 2;
  opacity: 0;
  transition: all .2s ease-out 0s;
}

.streamer .box .hiddenContent,
.streamer .box:hover .hiddenContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.streamer .box:hover .hiddenContent {
  opacity: 1;
}
.streamer .box .hiddenContent .name {
  color: var(--mainColor);
  font-weight: 800;
  font-size: 25px;
}

.streamer .box .hiddenContent .social-media {
  display: flex;
  align-items: center;
  justify-content: center;

}
.streamer .box .hiddenContent .social-media li {
  list-style: none;
  padding: 15px;
}
.streamer .box .hiddenContent .social-media li a {
  color: var(--mainColor);
}
.streamer .box .hiddenContent .social-media li a:hover {
  color: var(--mainColorTransparent);
}
.streamer .box .hiddenContent .social-media li a i {
  font-size: 30px;
  transition: all .2s ease-out 0s;
}

.streamer .box .hiddenContent .social-media li a i:hover {
  font-size: 30px;
  color: crimson; /*TODO: change it*/
}

.streamer .box .content {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  opacity: 1;
  transition: all .2s ease-out 0s;
}

.streamer .box:hover .content {
  opacity: 0;
}
.streamer .box .content h4 {
  font-size: 30px;
  color: var(--headerColor);
}

/* ==================================================
  FAQ Styling
================================================== */

.faq {
  /* background: linear-gradient(
      0deg,
      var(--mainColorTransparent), 
      20% url(../img/background/abstractFigures3.jpg),
      80% var(--mainColorTransparent)
    ),
    url(../img/background/abstractFigures3.jpg); */

  background: linear-gradient(
                var(--mainColor) 2%, 
                rgba(187, 187, 187, 0.459) 40%,
                var(--mainColor) 95%
              ),
              url(../img/background/abstractFigures.jpg);

  /* background: url(../img/background/abstractFigures3.jpg);             */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  padding: 30px;
  padding-top: 80px;
  padding-bottom: 100px;
}

.faq h2 {
  position: relative;
  color: var(--headerColor);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;

  margin-bottom: 60px;
}

.faq h2::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  height: var(--subheaderHeight);
  background-color: var(--akzentHover);
}

.faq .box {
  background: #1d2027b7;
  /* background: var(--mainColorTransparent); */
  width: 80%;
  min-height: 230px;
  padding: 50px 50px 20px 50px;
  margin-bottom: 30px;
  
  box-shadow: -2px -2px 10px var(--mainColor),
      2px 2px 10px var(--mainColor);

}

.faq .box.right {
  margin-left: auto;
}

.faq .box.left {
  margin-right: auto;
}

.faq .box h4 {
  color: var(--headerColor);
  padding-bottom: 30px;
  text-transform: uppercase;
}

.faq .box p {
  color: rgba(218, 218, 218, 0.877);
}

/* ==================================================
  Contact Section
  ================================================== */

  .contact {
    background: #d6e9e91c;
    background: linear-gradient(
                var(--mainColor) 2%, 
                rgba(187, 187, 187, 0.459) 40%,
                var(--mainColor) 95%
              ),
              url(../img/background/abstractFigures.jpg);

    /* background: url(../img/background/abstractFigures3.jpg);             */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    padding: 80px 80px;
    padding-bottom: 120px;
  }

  .contact h2 {
    position: relative;
    color: var(--headerColor);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
  
    margin-bottom: 80px;
  }
  
  .contact h2::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100px;
    height: var(--subheaderHeight);
    background-color: var(--akzentHover);
  }

  .contact .inputBox {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 30px 0 10px;
    color: #fff;
  }
  
  .contact .inputBox input,
  .contact .inputBox.textarea textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0 10px;
    z-index: 1;
    color: #000;
  }

  .contact .inputBox .text { 
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    padding: 0 10px;
    display: block;
    transition: 0.5s;
    pointer-events: none;
  }

  .contact .inputBox input:focus + .text,
  .contact .inputBox input:valid + .text { 
    top: -35px;
    left: -10px;
  }

  .contact .inputBox .line {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--akzentHover);
    transition: 0.5s;
    border-radius: 2px;
    pointer-events: none;
  }

  .contact .inputBox input:focus ~ .line,
  .contact .inputBox input:valid ~ .line { 
    height: 100%;
  }

  .contact .inputBox.textarea {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px 0;

  }

  .contact .inputBox.textarea textarea{
    height: 100%;
    resize: none;
  }

  .contact .inputBox textarea:focus + .text,
  .contact .inputBox textarea:valid + .text { 
    top: -35px;
    left: -10px;
  }

  .contact .inputBox textarea:focus ~ .line,
  .contact .inputBox textarea:valid ~ .line { 
    height: 100%;
  }

  .contact input[type="submit"] {
    border: none;
    padding: 7px 35px;
    cursor: pointer;
    outline: none;
    background: var(--akzent);
    color: #000;
    font-size: 18px;
    border-radius: 2px;
    transition: 0.5s;
  }

  .contact input[type="submit"]:active, 
  .contact input[type="submit"]:hover {
    background: var(--akzentHover);
  }

/* ==================================================
  Footer Styling
  ================================================== */

  .footer {
    position: relative;
    background: var(--mainColor);
    color: black;
    border-top: 1px solid;
    border-color: var(--secondColor);
    padding-top: 45px;
    padding-bottom: 0;
  }

  .footer .btnTopWrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: var(--akzent);
  }

  .footer .btnTopWrapper button {
    color: var(--headerColor);
    background-color: var(--akzent);
    padding: 10px 15px;
  }

  .footer .btnTopWrapper button:hover {
    background-color: var(--akzentHover);
  }

  .footer .btnTopWrapper button i {
    font-size: 30px;
    color:rgb(17, 17, 17);
  }
  
  .footer .midWrapper .hToBottom {
    display: flex;
    align-items: flex-end;
  }

  .footer .midWrapper h3 {
    margin: 0;
    padding: 0;
    font-weight: 800;
    color: var(--headerColor);
  }

  .footer .midWrapper p {
    font-size: 13px;
  }

  .footer .midWrapper ul {
    margin: auto;
    margin-top: 0;
  }

  .footer .midWrapper ul:first-of-type {
    margin-left: 0;
  }

  .footer .midWrapper ul:nth-of-type(2) {
    margin-left: 10px;
  }

  .footer .midWrapper ul li {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gray);
  }

  .footer .midWrapper ul li a:hover{
    color: var(--akzent);
  }

  .footer .midWrapper input {

  }

  .footer .midWrapper input i {

  }

  .footer .seeAlsoWrapper {
    margin-bottom: 30px;
  }

  .footer .seeAlsoWrapper ul {
    
  }

  .footer .seeAlsoWrapper ul > li {
    display: inline-block;
  }

  .footer .seeAlsoWrapper ul li {
    margin: auto;
  }

  .footer .seeAlsoWrapper .seeAlso {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80%;
    padding: 10px;
    margin: 10px;
  }

  .footer .seeAlsoWrapper .seeAlso .name {
    font-size: 25px;
    color: #fff;
  }

  .footer .seeAlsoWrapper .seeAlso .img {
    margin: 20px;
    padding-top: 10px;
    min-height: 100px;
  }

  .footer .seeAlsoWrapper .seeAlso .img img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    transition: all .2s ease-out 0s;
  }

  .footer .seeAlsoWrapper .seeAlso:hover .img img {
    transform: scale(110%, 110%);
  }

  .footer h3 {
    color: #1A1A1A;
    font-size: 20px;
    font-family: "Jost",sans-serif;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .footer hr {
    width: 90px;
    margin: 0;
    height: 1px;
    background-color: var(--mainColor);
  }
  
  .footer p {
    color: var(--gray);
  }
  
  .footer p.companyDescription {
    color: black;
  }
  
  .footer p.companyContact {
    color: black;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: .2rem;
  }
  
  .footer p.companyContact i {
    padding-right: 10px;
  }
  
  .footer p a i {
    cursor: pointer;
    color: #5E5E5E;
    margin: 0;
    padding: 0;
    padding-right: 5px;
  }
  
  .footer p a:hover i {
    color: var(--mainColor);
  }
  
  .footer p .muted {
    font-weight: 200px;
  }
  
  .footer .emailWrapper {
    position: relative;
  }
  
  .footer .emailWrapper input {
    border-radius: .25rem;
    width: 90%;
    padding: 4px;
    border-width: 0.5px;
    border-color: var(--mainColor);
    background-color: var(--mainColor);
    line-height: 30px;
    z-index: 0;
  }
  
  .footer .emailWrapper input:active,
  .footer .emailWrapper input:focus {
    border-color: var(--mainColor);
    outline-width: 0;
    /* outline-color: var(--mainColor); */
    box-shadow: -2px -2px 10px var(--mainColor),
      2px 2px 10px var(--mainColor);
  }
  
  .footer .emailWrapper button,
  .footer .emailWrapper button:focus,
  .footer .emailWrapper button:active {
    color: var(--mainColor);
    cursor: pointer;
    position: absolute;
    height: 100%!important;
    background: unset;
    outline: 0;
    font-size: 20px;
    border: 0;
    top: 0%;
    right: 0;
    z-index: 1;
  }
  
  .footer .emailWrapper button:hover {
    color: var(--btnHoverColor);
  }
  
  .footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .footer ul li a {
    color: #5E5E5E;
  }
  
  .footer ul li a:hover {
    color: var(--mainColor);
  }
  
  .footer .copyright {
    justify-content: center;
    margin-top: 40px;
    font-size: 12px;
  }
  
  .footer .companyLink {
    color: #5E5E5E;
    font-weight: 500;
  }
  
  .footer .companyLink:hover {
    color: var(--mainColor);
  }

  .footer .bottomWrapper {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    border-top: 1px solid var(--akzentHover);
  }

  .footer .bottomWrapper p {
    padding: 10px;
    margin-bottom: 2px;
    color: var(--gray);
  }

  .footer .bottomWrapper p a {
    color: var(--gray);
  }

  .footer .bottomWrapper .social-media {
    display:flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
    margin-bottom: 2px;
  }

  .footer .bottomWrapper a {
    color: var(--akzent);
  }

  .footer .bottomWrapper a:hover {
    color: var(--akzentHover);
  }

  .footer .bottomWrapper .social-media li {
    list-style: none;
  }

  .footer .bottomWrapper .social-media li a i {
    padding-right: 10px;
    margin-left: auto;
    font-size: 20px;
  }
  
  @media (max-width: 1200px) {
    .footer hr {
      width: 32%;
      margin: 0;
      margin-top: 5px;
      height: 1px;
      background-color: var(--mainColor);
    }
  }
  
  @media (max-width: 990px) {
  
    .footer h3 {
      margin-bottom: 20px;
    }
  
    .footer hr {
      width: 65px;
      margin: 0;
      margin-top: 5px;
      height: 1px;
      background-color: var(--mainColor);
    }
  
    .footer .emailWrapper {
      padding-top: 5px;
      margin-top: 10px;
    }
  
    .footer p {
      font-size: 14px;
    }
  
    .footer p.companyDescription {
      padding-bottom: 5px;
      font-size: 12px;
    }
  
    .footer p:nth-of-type(3) {
      padding-top: 5px;
    }
    
    .footer h3 {
      font-size: 14px;
    }
  
    .footer ul li {
      margin-bottom: 5px;
    }
    
    .footer ul li a {
      color: #5E5E5E;
    }
  
    .footer .emailWrapper {
      padding-top: 5px;
    }
  }

/* ==================================================
  Under Construction Styling
================================================== */
  .construction{
    background: linear-gradient(
                var(--mainColor) 2%, 
                rgba(187, 187, 187, 0.459) 40%,
                var(--mainColor) 95%
              ),
              url(../img/background/abstractFigures.jpg);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .construction img {
    width: 80%;
    align-items: center;
  }

  .construction h2 {
    color: var(--headerColor);
    text-align: center;
    margin-bottom: 20px;
  }

  .construction p {
    color: var(--headerColor);
  }

/* ==================================================
  AboutFinance Styling
================================================== */

.aboutFinance {
  position: relative;
  padding: 30px;
  padding-bottom: 100px;
}

.aboutFinance .companyWrapper {
  cursor: pointer;
  position: absolute;
  /* background: #1A1A1A; */
  /* background: #fff; */
  /* background-color: rgba(170, 140, 65, 0.6);   */
  background-color: rgba(255, 255, 255, 1);  
  /* backdrop-filter: blur(15px); */
  top: -150px;
  border-radius: .25rem;
  z-index: 1;
  padding: 20px;
  transition: all .3s ease-out 0s;
  box-shadow: 0px 0px 10px var(--mainColor), 0px 0px 10px var(--mainColor);
  /* box-shadow: 0px 0px 3px var(--mainColor), 0px 0px 3px var(--mainColor); */
}

.aboutFinance .companyWrapper:hover {
  box-shadow: 0px 0px 20px var(--mainColor), 0px 0px 20px var(--mainColor);
  transform: translateY(-20px);
}

.aboutFinance .companyWrapper .companyName p{
  /* color: var(--mainColor); */
  color: black;
  /* color: #fff; */
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.aboutFinance .companyWrapper .companyName img {
  width: 150px;
  height: 150px;
}

.aboutFinance .companyWrapper .companyDescription p {
  display: none;
  font-size: 14px;
  font-weight: 500;
}

.aboutFinance .aboutWrapper {
  margin-top: 30px;
  position: relative;
}

.aboutFinance .aboutWrapper .txt{
  margin-top: 140px;
  position: relative;
}

.aboutFinance .aboutWrapper img {
  position: absolute;
  top: -320px;
  right: 40px;
  width: 600px;
  height: 400px;
}

.aboutFinance .aboutWrapper .boxWrapper {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
}

.aboutFinance .aboutWrapper .boxWrapper .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;

  position: relative;
  background: transparent;
}

.aboutFinance .aboutWrapper .boxWrapper .box i {
  font-size: 60px;
  color: black;
}

.aboutFinance .aboutWrapper .boxWrapper .box span {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--mainColor);
}

.aboutFinance .aboutWrapper .boxWrapper .box span:after {
  content: '';
  position: absolute;
  top: 60px;
  left: -30%;
  width: 160%;
  height: 4px;
  background: var(--mainColor);
}

.aboutFinance .aboutWrapper .boxWrapper .box p {
  justify-self: end;
  text-align: center;
  vertical-align: center;
  color: black;
  min-height: 50px;
}

.aboutFinance .underAboutWrapper {
  margin-top: 170px;
}

.aboutFinance .underAboutWrapper h3 {
  text-align: center;
}

@media (max-width: 1400px) {
  .aboutFinance .companyWrapper {
    padding: 20px;
    transition: all .3s ease-out 0s;
  }

  .aboutFinance .companyWrapper .companyName img {
    width: 120px;
    height: 120px;
  }

  .aboutFinance .companyWrapper .companyName p {
    font-size: 14px;
    font-weight: 800;
  }
}

@media (max-width: 1200px) {
  .aboutFinance {
    margin-bottom: 40px;
  }

  .aboutFinance .aboutWrapper {
    margin-top: 0px;
  }

  .aboutFinance .companyWrapper .companyName p {
    font-size: 12px;
    font-weight: 600;
  }

  .aboutFinance .companyWrapper {
    top: -100px;
    padding: 10px;
    transition: all .3s ease-out 0s;
  }

  .aboutFinance .aboutWrapper img {
    /* top: -220px;
    right: 40px; */
    position: relative;
    top: 0;
    right: 0;
    width: 400px;
    height: 200px;
  }
}

@media (max-width: 767px) {

  .aboutFinance {
    margin-bottom: 3px;
  }

  .aboutFinance .aboutWrapper {
    margin-top: 30px;
  }
  
  .aboutFinance .aboutWrapper .txt{
    margin-top: 0px;
    position: relative;
  }

  .aboutFinance .aboutWrapper h4 {
    text-align: center;
  }

  .aboutFinance .aboutWrapper p {
    text-align: justify;
  }
  
  .aboutFinance .aboutWrapper img {
    top: 0px;
    right: 40px;
    width: 400px;
    height: 200px;
  }
}

/* ==================================================
  Personal Information Styling
================================================== */

.overflow-hidden {
  overflow: hidden!important;
}

.pinformation {
  padding: 40px 0px 60px;
  margin: 0;
  /* background: linear-gradient(to top right, var(--mainColor),#F5F6F7); */
  background: linear-gradient(to bottom right, var(--mainColor),#F5F6F7);
}

.pinformation .imgWrapper {
  display: flex;
  width: 100%;
  height: 500px;
  align-items: center;
  justify-content: center;
}

.pinformation .imgWrapper img {
  height: 100%;
}

.pinformation .zitatWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pinformation .zitatWrapper p {
  font-weight: 500;
  font-size: 30px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-bottom: 40px;
  width: 80%;
  text-align: center;
  color: var(--mainColor);
  text-shadow: 0px 0px 1px black;
}


.pinformation .outerContactWrapper {
  position: relative;
  left: 0;
  width: 110%;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: black; */
  background: var(--mainColor);
  border-radius: 50px;
  color: #fff;
}

.pinformation .contactWrapper {
  padding: 20px;
}

.pinformation .contactWrapper h3 {
  text-align: left;
  margin-top: 0px;
  padding-top: 5px;
  padding-bottom: 2px;
  margin-bottom: 0px;
}

.pinformation .contactWrapper p {
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}

.pinformation .contactWrapper p i {
  font-size: 20px;
  padding-right: 10px;
}

/* ==================================================
  Advantages Styling
================================================== */

.advantages {
  padding-top: 120px;
  padding-bottom: 60px;
}

.advantages h2 {
  color: var(--mainColor);
  text-align: center;
  margin-bottom: 100px;
}

.advantages .box {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 70px;
}

.advantages .box .icon {
  margin-bottom: 20px;
}

.advantages .box .icon span {
  width: 130px;
  height: 130px;
  display: inline-block;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.advantages .box .icon span:before {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 0;
  content: '';
  width: 20px;
  height: 20px;
  /* background: #00ADB5; */
  background: var(--mainColor);
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.advantages .box .icon span i {
  position: absolute;
  left: 0;
  top: 32px;
  right: 0;
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 60px;
  color: rgba(0, 0, 0, 0.5);
  /* color: #00ADB5; */
  color: var(--mainColor);
  z-index: 1;
}

.advantages .box .content h3 {
  color: #333;
  font-family: "PT Sans", Arial, serif;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-size: 20px;
  margin-bottom: 15px;
}

.advantages .box .content p {
  margin-bottom: 1.5em;
  font-size: 16px;
  margin: 0 0 10px;
  color: #494949;
}

.advantages .box .content {
  min-height: 200px;
}

.advantages .contentWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.advantages .contentWrapper h3 {
  color: var(--mainColor);
  text-align: left;
  width: 100%;
}

.advantages .contentWrapper p {
  font-size: 16px;
  color: #494949;
  margin: 0px;
  padding: 10px 0px;
  width: 100%;
}

.advantages .contentWrapper p i {
  color: var(--mainColor);
  font-size: 20px;
  padding-right: 10px;
}

.advantages .imgWrapper img{
  width: 100%;
}

@media (max-width: 1400px) {
  .advantages .contentWrapper h3 {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .advantages .contentWrapper h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .advantages .contentWrapper h3 {
    font-size: 18px;
  }

  .advantages .contentWrapper p {
    font-size: 16px;
    color: #494949;
    margin: 0px;
    padding: 5px 0px;
    width: 100%;
  }

  .advantages .contentWrapper p:last-of-type {
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  .advantages .contentWrapper h3 {
    font-size: 16px;
  }

  .advantages .contentWrapper p {
    font-size: 13px;
    margin: 0px;
    padding: 2px 0px;
  }

  .advantages .contentWrapper p:last-of-type {
    margin-bottom: 30px;
  }
}

/* ==================================================
  Partner Styling
================================================== */

.bewerbungsprozess {
  
  padding: 100px 0;
  color: #fff;
  width: 100%;
}

.bewerbungsprozess::after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bewerbungsprozess .container-fluid {
  position: relative;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.bewerbungsprozess h2 {
  text-align: center;
}

.partner {
  position: relative;
  background: #fff;
  padding-top: 120px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.partner .container {
  position: relative;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.partner h2 {
  color: var(--mainColor);
  text-align: center;
  margin-bottom: 20px;
}

.partner .box {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  margin: 30px 0px;
  width: 100%;
  height: 100%;
}

.partner .box img {
  width: 200px;
}

/* ==================================================
  Anwerbung Styling
================================================== */

.anwerbung {
  background-color: #fff;
  padding: 30px 0px;
  margin: 80px 0px;
}

.anwerbung h2 {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.anwerbung h2:after{
  content: '';
  position: absolute;
  top: 60px;
  left: 20%;
  width: 60%;
  height: 6px;
  background-color: var(--mainColor);
}

.anwerbung h3 {
  text-align: center;
}

.anwerbung .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.anwerbung .wrapper .slideClass {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  min-height: 200px;
  transition: all .5s ease-in 0s;
}

.anwerbung .wrapper .slideClass.active {
  opacity: 1;
  transition: all .3s ease-out 0s;
}

.anwerbung .wrapper .slideClass p:first-of-type{
  margin-top: 20px;
}

.anwerbung .wrapper .slideClass p {
  background: var(--mainColor);
  padding: 12px 17px;
  width: 100%;
  color: #fff;
  cursor: pointer;
  opacity: .65;
}

.anwerbung .wrapper .slideClass p:hover,
.anwerbung .wrapper .slideClass p:focus {
  background-color: var(--btnHoverColor);
}

.anwerbung .wrapper .slideClass p.active {
  opacity: 1;
}

.anwerbung .wrapper .slideClass p input {
  width: 100%;
  text-align: center;
}

.anwerbung .wrapper #dialogContactSlider {
  background: var(--mainColor);
  width: 100%;
}

.anwerbung .wrapper #dialogContactSlider .slider-handle {
  background: var(--secondary);
}

.anwerbung .wrapper .slideClass ul {
  width: 100%;
  text-align: center;
  background: var(--mainColor);
}

.anwerbung .wrapper .slideClass ul .btn {
  padding: 15px 5px;
}

.anwerbung .wrapper .slideClass .btnWrapper .btn:hover {
  opacity: .65!important;
  background-color: var(--mainColor);
}

.anwerbung .wrapper .slideClass .wrapperDragDrop {
  justify-self: flex-end;
  padding: 25px 0px;
  max-width: 450px;
  width: 100%;
  border-radius: 3px;
  /* background: red; */
}

.anwerbung .wrapper .slideClass .wrapperDragDrop .item {
  background: var(--mainColor);
  /* background: #30485f; */
  color: #fff;
  display: flex;
  padding: 12px 17px;
  margin-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  cursor: move;
}

.anwerbung .wrapper .slideClass .wrapperDragDrop .item .text {
  font-size: 18px;
  font-weight: 400;
}

.anwerbung .wrapper .slideClass .wrapperDragDrop .item i {
  color: #fff;
  font-size: 20px;
  padding-bottom: 10px;
}

.anwerbung .wrapper .progressWrapper {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  width: 30%;
}

.anwerbung .wrapper .btnWrapper {
  margin-top: 30px;
  justify-content: flex-end;
}

.anwerbung .progress-bar-wrapper  {
  margin-bottom: 80px;
  width: 80%;
  justify-content: flex-end;
  background-color: #fff;
}

.anwerbung .progress-bar-wrapper .progress-bar {
  display: unset;
}

.anwerbung ul.progress-bar {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
}

.anwerbung li.section {
    display: inline-block;
    padding-top: 45px;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
    color: gray;
    vertical-align: top;
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anwerbung li.section:before {
    content: 'x';
    position: absolute;
    top: 2px;
    left: calc(50% - 15px);
    z-index: 1;
    width: 30px;
    height: 30px;
    color: white;
    border: 2px solid white;
    border-radius: 17px;
    line-height: 30px;
    background: gray;
}
.anwerbung .status-bar {
    height: 2px;
    background: gray;
    position: relative;
    top: 20px;
    margin: 0 auto;
}
.anwerbung .current-status {
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: mediumseagreen;
}

@keyframes changeBackground {
    from {background: gray}
    to {background: mediumseagreen}
}

.anwerbung li.section.visited:before {
    content: '\2714';
    animation: changeBackground .5s linear;
    animation-fill-mode: forwards;
}

.anwerbung li.section.visited.current:before {
    box-shadow: 0 0 0 2px mediumseagreen;
}

@media (max-width: 990px) {
  .anwerbung .wrapper .slideClass {
    min-width: 60%;
    padding: 20px;
  }

  .anwerbung .wrapper .slideClass p {
    margin-bottom: 8px;
  }
}

@media (max-width: 400px) {
  .anwerbung .wrapper .slideClass {
    width: 100%;
    padding: 20px;
  }

  .anwerbung .wrapper .slideClass p {
    margin-bottom: 8px;
  }
}

@media (max-width: 373px) {
  .anwerbung h2:after {
    width: 100px;
    top: 80px;
    left: 33%;
    width: 33%;
  }
}

/* ==================================================
  Bewerbungsprozess Styling
================================================== */

.bewerbungsprozess {
  position: relative;
  background-image: url(../img/background/team.jpg);
  /*background-image: url(../img/cover.jpg);*/
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  width: 100%;
}

.bewerbungsprozess::after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bewerbungsprozess .container-fluid {
  position: relative;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.bewerbungsprozess h2 {
  text-align: center;
}

.bewerbungsprozess .boxWrapper {
  box-sizing: border-box;
  background-color: #fff;
  padding: 30px;
  height: 100%;

  -webkit-box-shadow: 2px 2px 1px -1px rgb(170 140 65 / 99%);
  -moz-box-shadow: 2px 2px 10px -1px rgba(170, 140, 65, 0.99);
  -ms-box-shadow: 2px 2px 10px -1px rgba(170, 140, 65, 0.99);
  -o-box-shadow: 2px 2px 10px -1px rgba(170, 140, 65, 0.99);
  box-shadow: 2px 2px 10px 3px rgb(170 140 65 / 99%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.bewerbungsprozess .boxWrapper .box {
  position: relative;
  padding: 20px;
  min-height: 200px;
}

.bewerbungsprozess .boxWrapper .box span{
  position: absolute;
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  color: black;
  font-size: 30px;
  font-family: sans-serif;
  font-weight: 600;
  line-height: 2;
  background-color: var(--mainColor);
}

.bewerbungsprozess .boxWrapper .box i{
  color: var(--mainColor);
  font-size: 60px;
}

.bewerbungsprozess .boxWrapper .box h3{
  padding-top: 20px;
  color: #333;
}

.bewerbungsprozess .boxWrapper .box p{
  padding-top: 10px;
  color: #333;
  font-size: 15px;
}



@media (max-width: 1500px) {
  .bewerbungsprozess .boxWrapper .box {
    position: relative;
    padding: 20px 10px;
    min-height: 230px;
  }

  .bewerbungsprozess .boxWrapper .box i{
    color: var(--mainColor);
    font-size: 60px;
  }
  
  .bewerbungsprozess .boxWrapper .box h3{
    padding-top: 10px;
    color: #333;
    font-size: 18px;
  }
  
  .bewerbungsprozess .boxWrapper .box p{
    padding-top: 10px;
    color: #333;
    font-size: 15px;
  }
}

@media (max-width: 1235px) {
  .bewerbungsprozess .boxWrapper {
    padding: 10px;
  }
  
  .bewerbungsprozess .boxWrapper .box {
    position: relative;
    padding: 20px;
    min-height: 210px;
  }
  
  .bewerbungsprozess .boxWrapper .box span{
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    color: black;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 600;
    line-height: 2;
    background-color: var(--mainColor);
  }

  .bewerbungsprozess .boxWrapper .box i{
    color: var(--mainColor);
    font-size: 60px;
  }
  
  .bewerbungsprozess .boxWrapper .box h3{
    padding-top: 5px;
    color: #333;
    font-size: 15px;
  }
  
  .bewerbungsprozess .boxWrapper .box p{
    padding-top: 5px;
    color: #333;
    font-size: 13px;
  }
}

@media (max-width: 1000px) {
  .bewerbungsprozess .boxWrapper {
    padding: 5px;
    padding-bottom: 20px;
  }
  
  .bewerbungsprozess .boxWrapper .box {
    position: relative;
    padding: 10px 2px;
    min-height: 170px;
  }
  
  .bewerbungsprozess .boxWrapper .box span{
    position: absolute;
    top: -5px;
    left: -5px;
    width: 40px;
    height: 40px;
    color: black;
    font-size: 20px;
    font-family: sans-serif;
  }

  .bewerbungsprozess .boxWrapper .box i{
    color: var(--mainColor);
    font-size: 40px;
  }
  
  .bewerbungsprozess .boxWrapper .box h3{
    padding-top: 5px;
    color: #333;
    font-size: 13px;
  }
  
  .bewerbungsprozess .boxWrapper .box p{
    padding-top: 5px;
    color: #333;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .bewerbungsprozess .boxWrapper .box {
    position: relative;
    padding: 10px 2px;
    min-height: 130px;
  }
}

/* ==================================================
  proJob Styling
================================================== */

.proJob {

}

.proJob p.preHead{
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
  margin-bottom: 5px;
}

.proJob .box {
  padding: 10px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proJob .box i {
  
  padding-bottom: 20px;
  font-size: 80px;
  color: var(--mainColor);
}

.proJob .box h4 {
  font-weight: 900;
  font-size: 20px;
  color: rgb(73, 73, 73);
  margin-bottom: 4px;
}

.proJob .box p {
  width: 90%;
  text-align: center;
  font-size: 13px;
}

/* ==================================================
  CarrerAction Styling
  ================================================== */

  .carrerAction {
    border-top: 3px solid var(--mainColor);
    border-bottom: 3px solid var(--mainColor);
    padding: 30px;
    color: #fff;
    background: rgb(17, 17, 17);
  }
  
  .carrerAction .actionWrapper {
    display: flex;
    height: 100%!important;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding: 20px;
  }
  
  .carrerAction .actionWrapper h4 {
    margin: 0;
    font-size: 20px;
  }
  
  .carrerAction .actionWrapper p {
    margin: 0;
    font-size: 16px;
    color: inherit;
  }
  
  .carrerAction .actionWrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carrerAction .actionWrapper .btn i {
    font-weight: 600;
    font-size: 30px;
    margin: 3px;
    padding-left: 10px;
  }
  
  @media (max-width: 767px) {
    .carrerAction .actionWrapper {
      padding: 10px;
    }
    
    .carrerAction .actionWrapper h4 {
      margin: 0;
      font-size: 15px;
    }
    
    .carrerAction .actionWrapper p {
      margin: 0;
      font-size: 13px;
      color: inherit;
    }
    
    .carrerAction .actionWrapper .btn {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .carrerAction .actionWrapper .btn i {
      font-weight: 600;
      font-size: 20px;
      padding-left: 10px;
    }
  }
  
  @media (max-width: 650px) {
    .carrerAction .actionWrapper {
      align-items: center;
      padding: 5px;
    }
    
    .carrerAction .actionWrapper h4 {
      margin: 0;
      font-size: 14px;
      text-align: center;
    }
    
    .carrerAction .actionWrapper p {
      margin: 0;
      font-size: 12px;
      color: inherit;
      text-align: center;
    }
    
    .carrerAction .actionWrapper .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }
    
    .carrerAction .actionWrapper .btn i {
      font-weight: 600;
      font-size: 20px;
      padding-left: 10px;
    }
  }

/* ==================================================
  Testimonials Styling
================================================== */

.testimonials {
  background-color: rgb(165, 143, 70);
}

.testimonials h2 {
  padding-top: 30px;
  margin-bottom: 150px;
  color: #fff;
  text-align: center;
}

.testimonials p {
  color: #7f7f7f;
}

.testimonials .box {
  position: relative;
  padding: 30px;
  padding-top: 5em;
  padding-bottom: 50px;
  background: rgba(255, 255, 255, 1);
  float: left;
  width: 100%;
  -webkit-box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -moz-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.19);
  -ms-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.19);
  -o-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.testimonials .box .user {
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: -73px;
  margin-left: -73px;
  width: 147px;
  height: 80px;
  text-align: center;
  z-index: 1;
}

.testimonials .box .user img {
  width: 147px;
  height: 147px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  /* border: 15px solid #f1faff; */
  border: 15px solid rgb(165, 143, 70);
}

.testimonials .box h3 {
  font-family: "PT Sans", Arial, serif;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px;
}

.testimonials .box .position {
  font-size: 16px;
  color: #8f989f;
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.testimonials .box p {
  color: #7f7f7f;
  text-align: center;
}

/* ==================================================
  Perks Styling
================================================== */

.perks {
  padding: 0;
  margin: 0;
}

.perkWrapper {
  position: relative;
}

.perkWrapper .imgWrapper {
  background-color: black;
  width: 100%!important;
  height: calc(30vh);
}
.perkWrapper .imgWrapper img {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  transition: all .5s ease-out 0s;
}

.perkWrapper:hover .imgWrapper img {
  opacity: 0.4;
}

.perkWrapper .contentWrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all .3s ease-out 0s;
}

.perkWrapper .contentWrapper .content {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  opacity: 0;
  /* z-index: 1; */
  transition: opacity .9s ease-in;
}

.perkWrapper:hover .contentWrapper .content {
  opacity: 1;
  /* display: table-cell; */
  /* z-index: 4!important; */
  
}

.perkWrapper .contentWrapper .content p {
  color: #fff;
}

/* ==================================================
  Company Styling
================================================== */

.company {
  padding: 0;
  margin-bottom: 20px;
  /* background: linear-gradient(); */
}

.company h3 {
  margin: 0;
  padding: 0;
  color: var(--mainColor);
  font-size: 28px;
}

.company .owlWrapper{
  width: 100%;
  margin: 5px 30px 10px;
}

.company .boxWrapper{
  padding: 20px;
  margin: 10px 5px;
  margin-top: 10px!important;
  margin-bottom: 30px!important;
  background: #f1f1f1;

  box-shadow: 0px 0px 10px var(--mainColor), 0px 0px 10px var(--mainColor);
}

.company .boxWrapper .box{
  
}

.company .boxWrapper .box img{

}

.company .boxWrapper .box h3{
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
}

.company .boxWrapper .box p{
  font-size: 15px;
  color: #333;
  text-align: justify;
}

.company .container .nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.company .container .nav ul>li a {
  font-family: "Jost",sans-serif;
  color: black;
  font-weight: 400;
  padding: 21px 7px;
  display: block;
  font-size: 16px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  text-transform: capitalize;
  position: relative;
}

.company .container .nav ul>li a.selected::before {
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.company .container .nav ul>li {
  display: inline-block;
  position: relative;
  margin: 0px 14px;
}

.company .container .nav ul>li a::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 10px;
  right: 5px;
  left: -5px;
  height: 2px;
  /* background: #fff; */
  background: var(--mainColor);
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

.company .container .nav ul>li:hover>a {
  color: black;
}

.company .container .nav ul>li:hover>a::before{
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.company .owlContentWrapper {
  background: black;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.company .news {
  cursor: pointer;
  position: relative;
  width: 100%!important;
}

.company .news .imgWrapper {
  background: black;
  /* overflow: hidden; */
}
.company .news .imgWrapper img {
  object-position: center;
  object-fit: fill;
  opacity: 0.8;
  transition: opacity .3s ease-in;
}

.company .news:hover .imgWrapper img {
  opacity: 0.4;
}

.company .news .contentWrapper {
  position: absolute;
  top:70%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.company .news .contentWrapper .details {
  width: 70%!important;
}

.company .news .contentWrapper .details p{
  color: inherit;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.company .news .contentWrapper .details h2 {
  color: inherit;
  padding: 0;
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  text-align: left;
}

@media (max-width: 767px) {
  .company .news .imgWrapper img {
    opacity: 0.7;
  }

  .company .news .contentWrapper .details {
    width: 90%!important;
  }

  .company .news .contentWrapper .details p{
    font-size: 10px;
    font-weight: 400;
    text-align: left;
  }
  
  .company .news .contentWrapper .details h2 {
    color: inherit;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    text-align: left;
  }

  .company h3 {
    text-align: center;
    justify-self: center;
  }

  .company .container .nav {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .company .owlWrapper{
    margin: 0;
  }
}

/* ==================================================
  Testimonial Styling
================================================== */

.testimonial {
  padding: 0;
  /* background: #F5F6F7; */
  background: linear-gradient(to bottom right, var(--mainColor),#F5F6F7);
}

.testimonial .personWrapper,
.testimonial .commentWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%!important;
}

.testimonial .personWrapper {
  position: relative;
  padding: 0px;
  padding-top: 30px;
}

.testimonial .personWrapper .personPic {
  background-color: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial .personWrapper .personPic img {
  width: 300px;
  transition: all .3s ease-out 0s;
}

.testimonial .personWrapper:hover .personPic img {
  opacity: 0.8;
}

.testimonial .personWrapper .personDetails {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 70%;
  opacity: 0;
  overflow: hidden;
  transition: opacity .3s ease-in;
}

.testimonial .personWrapper:hover .personDetails {
  opacity: 1;
}

.testimonial .personWrapper .personName {
  
}

.testimonial .personWrapper .personName p{
  margin-bottom: 0;
  font-weight: 800;
  font-size: 25px;
  /* color: #1A1A1A; */
  /* color: #fff; */
  color: #F5F6F7;
  /* color: #b9b9b9; */
  text-shadow: 0px 0px 5px black;
}

.testimonial .personWrapper .personPosition p {
  font-size: 14px;
  font-weight: 600;
  /* color: rgb(226, 226, 255); */
  color: #e0e1e2;
  text-shadow: 0px 0px 1px black;
}

.testimonial .personWrapper .personPosition p a {
  color: inherit;
}

.testimonial .personWrapper .personPosition p a:hover {
  color: var(--mainColor);
}

.testimonial .commentWrapper .comment p {
  font-family: 'Architects Daughter', cursive;
  font-weight: 600;
  font-size: 30px;
  color: var(--mainColor);
  margin-bottom: 0px;
}

.testimonial .commentWrapper .personName p {
  font-size: 18px;
}

.testimonial .commentWrapper .bubbleWrapper {
  position: absolute;
  top: 90%;
}

.testimonial .commentWrapper .bubbleWrapper img {
  cursor: pointer;
  height: 25px;
  width: 25px;
}

.testimonial .commentWrapper .bubbleWrapper img:hover {
  background: radial-gradient(ellipse at center, var(--mainColor), transparent 60%);
}

@media (max-width: 830px) {
  .testimonial .commentWrapper .comment p {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .testimonial .personWrapper .personName p{
    font-weight: 600;
    font-size: 22px;
  }
  
  .testimonial .personWrapper .personPosition p {
    font-size: 12px;
  }
  
  .testimonial .commentWrapper .bubbleWrapper {
    position: inherit;
    padding: 15px 0px 20px 0px;
  }

  .testimonial .commentWrapper .comment p {
    font-size: 22px;
    text-align: center;
  }

  .testimonial .commentWrapper .personName p {
    font-size: 15px;
  }
}

@media (max-width: 376px) {
  .testimonial .personWrapper .personPic img {
    width: 180px;
  }

  .testimonial .personWrapper .personName p{
    font-weight: 400;
    font-size: 18px;
  }
  
  .testimonial .personWrapper .personPosition p {
    font-size: 12px;
  }

  .testimonial .commentWrapper .comment p {
    font-size: 16px;
    text-align: center;
  }
}

/* ==================================================
  Opinion Styling
  ================================================== */
.opinion {
  position: relative;
  padding: 30px;
  background: url("../img/background/blackwall.jpg");
}

.opinion:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.opinion .container-fluid {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.opinion .textWrapper {
  background: unset;
  display: flex;
  height: 100%!important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.opinion .textWrapper h4 {
  font-size: 24px;
  text-align: left;
}

.opinion .textWrapper p {
  text-align: left;
  font-size: 14px;
  color: inherit;
  justify-self: flex-start;
  align-self: flex-start;
}

.opinion .pictureWrapper {
  display: flex;
  align-self: center;
  justify-content: center;
}

.opinion .pictureWrapper img {
  cursor: pointer;
  margin: 10px;
  width: 180px;
  height: 150px;
}

.opinion .pictureWrapper img:hover {
  box-shadow: 7px 7px 10px var(--mainColor),
   -7px -7px 10px var(--mainColor);
}

.opinion .pictureWrapper .selected,
.opinion .pictureWrapper .selected:hover {
  box-shadow: 5px 5px 10px var(--mainColor),
   -5px -5px 10px var(--mainColor);
}

/* ==================================================
  Action Styling
  ================================================== */

.action {
  border-top: 1px solid var(--mainColor);
  padding: 30px;
  color: #fff;
  background: black;
}

.action .actionWrapper {
  display: flex;
  height: 100%!important;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  padding: 20px;
}

.action .actionWrapper h4 {
  margin: 0;
  font-size: 20px;
}

.action .actionWrapper p {
  margin: 0;
  font-size: 16px;
  color: inherit;
}

.action .actionWrapper .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.action .actionWrapper .btn i {
  font-weight: 600;
  font-size: 30px;
  margin: 3px;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .action .actionWrapper {
    padding: 10px;
  }
  
  .action .actionWrapper h4 {
    margin: 0;
    font-size: 15px;
  }
  
  .action .actionWrapper p {
    margin: 0;
    font-size: 13px;
    color: inherit;
  }
  
  .action .actionWrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .action .actionWrapper .btn i {
    font-weight: 600;
    font-size: 20px;
    padding-left: 10px;
  }
}

@media (max-width: 650px) {
  .action .actionWrapper {
    align-items: center;
    padding: 5px;
  }
  
  .action .actionWrapper h4 {
    margin: 0;
    font-size: 14px;
    text-align: center;
  }
  
  .action .actionWrapper p {
    margin: 0;
    font-size: 12px;
    color: inherit;
    text-align: center;
  }
  
  .action .actionWrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  .action .actionWrapper .btn i {
    font-weight: 600;
    font-size: 20px;
    padding-left: 10px;
  }
}

/* ==================================================
  Service Styling
  ================================================== */
.services {
  position: relative;
  padding: 30px;
  background: url(../img/background/services.jpg);
  background-size: cover;
  background-position: center;
}

.services::after {
  content: ' ';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.services .container {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.services .row h2 {
  font-size: 35px;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 5px black;
  text-align: left;
}

.services .row p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  /* text-shadow: 0 0 5px black; */
  text-align: left;
}

.services .row p a {
  color: inherit;
}

.services .cardWrapper {
  z-index: 1;
  width: 100%;
  margin: 20px;
  padding: 20px;
  background: #fff;
}

.services .cardWrapper img {
  width: 100%;
  height: width;
}

.services .cardWrapper h4 {
  font-size: 18px;
  text-align: left;
  padding: 10px 0px;
  color: var(--mainColor);
  z-index: 1;
}

.services .cardWrapper p {
  margin: 0;
  text-align: justify;
  color: #5E5E5E;
  text-shadow: unset;
}

/* ==================================================
  Companies Styling
  ================================================== */
.companies {
  background: #fff;
}

.companies h3 {
  color: var(--mainColor);
  font-weight: 600;
  font-size: 30px;
}

.companies .container .nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.companies .container .nav ul>li a {
  font-family: "Jost",sans-serif;
  color: black;
  font-weight: 400;
  padding: 21px 7px;
  display: block;
  font-size: 16px;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  text-transform: capitalize;
  position: relative;
}

.companies .container .nav ul>li a.selected::before {
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.companies .container .nav ul>li {
  display: inline-block;
  position: relative;
  z-index: 10;
  margin: 0px 14px;
}

.companies .container .nav ul>li a::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 10px;
  right: 5px;
  left: -5px;
  height: 2px;
  z-index: 10;
  /* background: #fff; */
  background: var(--mainColor);
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

.companies .container .nav ul>li:hover>a {
  color: black;
}

.companies .container .nav ul>li:hover>a::before{
  left:0;
  right:auto;
  width:100%;
  -webkit-transition:all .4s ease-out 0s;
  -moz-transition:all .4s ease-out 0s;
  -ms-transition:all .4s ease-out 0s;
  -o-transition:all .4s ease-out 0s;
  transition:all .4s ease-out 0s;
}

.companies .contentWrapper .kompetenz {
	width: 280px;
	height: 300px;
  margin: 10px;
  padding: 10px;
	/* padding: 40px; */
	border: 1px solid var(--secondColor);
	/* width: 150px!important; */
	background-color: #fff;
	color: var(--secondColor);
    
	border: 1px solid #80808026; 
	display: -ms-flexbox!important; 
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;

  box-shadow: 0px 0px 5px var(--mainColor), 0px 0px 5px var(--mainColor);

}

.companies .contentWrapper .kompetenz:hover {
	-webkit-box-shadow: 0px 0px 33px 0px var(--secondColor);
    -moz-box-shadow: 0px 0px 33px 0px var(--secondColor);
    box-shadow: 0px 0px 33px 0px var(--secondColor);
    box-shadow: 0px 0px 8px var(--mainColor), 0px 0px 8px var(--mainColor);
}

.companies .contentWrapper .kompetenz img {
	width: 150px!important;
	transition: all 1s;
}

.companies .contentWrapper .kompetenz img:hover {
	width: 80%!important;
}

.companies .contentWrapper .kompetenz p {
  width: 80%!important;
  font-size: 18px;
  text-align: center;
  text-shadow: 0px 0px 1px black;
  margin-top: 10px;
  color: var(--mainColor);
}

.companies .buttonWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.companies .buttonWrapper button {
  width: 100%;
  padding: 30px;
  margin: 10px;
}

/* ==================================================
  Article Styling
  ================================================== */
.article {
  padding: 30px;
  padding-top: 10px;
  margin-bottom: 80px;
}

.article h3 {
  color: var(--mainColor);
  font-weight: 600;
  font-size: 30px;
}

.article button {
  padding: 10px;
}

.article button.selected {
  background-color: var(--btnHoverColor);
  color: #fff;
  opacity: .8;
}

.article img {
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition:all .4s ease-out 0s;
  box-shadow: 0px 0px 5px var(--footerColor), 0px 0px 5px var(--footerColor);
}

.article img:hover {
  box-shadow: 0px 0px 8px var(--mainColor), 0px 0px 8px var(--mainColor);
}

/* ==================================================
  About Styling
================================================== */

.product-wrapper {
  margin-top: 65px;
  box-shadow: 1px 2px 10px 2px #888888;
}

.product-wrapper .card > .card-title {
  width: 100%;
  height: 75px;
  padding-top: 25px;
  margin: auto;
  background-color: rgba(0, 0, 0, 1);
  align-self: center;
}

.product-wrapper .card > img {
  vertical-align: middle;
  border-style: none;
  width: 100%;
}

.product-wrapper .card .product-over {
  margin: auto;
  position: absolute;
  display: table-cell;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-wrapper .card:hover .product-over {
  visibility: visible;
  opacity: 1;
}

.product-wrapper .card .product-over .centerItems {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product-wrapper .card .product-over h3 {
  color: #fff;
}

.product-wrapper .card .product-over p {
  padding: 20px;
  color: #fff;
}

@media (max-width: 61.9em) {
  .product-wrapper .card .product-over .card-text {
    font-size: 10px;
  }

  .product-wrapper .card .product-over .card-subtitle {
    font-size: 10px;
  }
}

/* ==================================================
  Stats Styling
================================================== */

.stats-row {
  margin-top: 65px;
}

.stats-col .circle {
  display: inline-block;
  width: 160px;
  height: 160px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #666;
  border: 6px solid var(--mainColor);
  border-radius: 50%;
  padding: 55px 25px 0 25px;
  position: relative;
}

.stats-col .circle-custom {
  display: inline-block;
  width: 160px;
  height: 160px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #666;
  border: 6px solid var(--mainColor);
  border-radius: 30%;
  padding: 55px 25px 0 25px;
  position: relative;
}

.stats-col .circle .stats-no {
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  top: -25px;
  right: -15px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 18px;
  background-color: var(--secondColor);
  position: absolute;
  border-radius: 50%;
  font-weight: 700;
}

.stats-col .circle-custom .stats-no {
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  top: -25px;
  right: -15px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 32px;
  background-color: var(--secondColor);
  position: absolute;
  border-radius: 50%;
  font-weight: 700;
}

/* ==================================================
  Parallax Styling
  ================================================== */

.block {
  color: #fff;
  height: 490px;
  overflow: hidden;
  padding-top: 85px;
}

.block h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.block p {
  color: #fff;
  margin-bottom: 45px;
}

/* ==================================================
  Features Styling
  ================================================== */

.features {
  padding-bottom: 45px;
}

.features h2 {
  color: var(--mainColor);
}

.feature-col {
  display: table;
  padding-bottom: 45px;
}

.feature-col > div > div {
  display: table-cell;
  vertical-align: middle;
}

.feature-col > div > div:last-child {
  padding-left: 20px;
}

.feature-col .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  background: var(--secondColor);/*#199EB8;*/
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
}

.feature-col h3 {
  color: var(--mainColor);
}

.feature-col p {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #999;
}

/* ==================================================
  Call-to-action Styling
  ================================================== */

.cta {
  background-color: var(--mainColor);
  padding: 25px 0;
}

.cta h2 {
  margin-bottom: 5px;
}

.cta h2,
.cta p {
  color: #fff;
}

.cta p {
  margin-bottom: 0;
  opacity: .75;
}

.cta .btn-ghost {
  position: relative;
  top: 13px;
}

/* ==================================================
  Websites Styling
  ================================================== */

  .websites {
    background-color: #edf6ff;
    padding-bottom: 0;
  }
  
  .websites h2 {
    color: var(--mainColor);
    margin-bottom: 25px;
  }

  .featureBox {
    position: relative;
    /*width: 18rem;*/
    max-width: 370px;
    box-shadow: 1px 2px 10px 2px #888888;
    margin: auto;
    overflow: hidden;
  }

  .featureBox .featureImgWrapper {
    width: 100%;
  }
  
  .featureBox .featureImg {
    width: 100%;
    height: 270px;
    z-index: 0;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .featureBox:hover .featureImg {
    width: 110%;
  }

  .featureBox .featureQuote {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    /*background-color: rgb(223, 221, 221);*/
    background-color: #fff;
    font-size: 1.2rem;
    font-style: bold;
  }
  
  .featureBox .featureBody {
    background: #fff;
    width: 100%;
    padding: 10% 10% 18%;
    margin-top: -11.2%;
    display: table-cell;
    z-index: 1;
    /*background-color: #fff;*/
  }

  .featureBox .featureBody h3 {
    text-align: left;
    font-weight: 400;
  }
  
  .featureBox .featureBody p {
    text-align: left;
    margin-bottom: 0;
  }
  
  .featureBox .featureBody p b {
    color: red;
    font-weight: bold;
  }


  .websites .mediaWrapper {
  }

  .websites .mediaWrapper img {
    width: 80%;
    padding: .25rem;
  }

/* ==================================================
  Pricing Styling
  ================================================== */

  .pricing {
    background-color: #edf6ff;
  }
  
  .pricing h2 {
    color: var(--mainColor);
    margin-bottom: 25px;
  }

  .cardBox {
    width: 18rem;
    box-shadow: 1px 2px 10px 2px #888888;
    margin: auto;
  }
  
  .cardBox .cardTitle {
    width: 100%;
    height: 75px;
    padding-top: 25px;
    margin: auto;
    background-color: #fff;
    align-self: center;
  }
  
  .cardBox .cardQuote {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    background-color: rgb(223, 221, 221);
    font-size: 1.2rem;
    font-style: bold;
  }
  
  .cardBox .cardQuote p {
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
  
  .cardBox .cardBody {
    width: 100%;
    height: 150px;
    display: inline-table;
    align-items: center;
    background-color: #fff;
    padding-top: 10px;
  }
  
  .cardBox .cardBody p {
    text-align: left;
    margin-bottom: 0;
    padding-top: 9px;
    padding-left: 33px;
  }
  
  .cardBox .cardBody p b {
    color: red;
    font-weight: bold;
  }
  
  .cardBox .cardFooter {
    width: 100%;
    height: 100px;
    align-items: center;
    align-self: center;
    background-color: #fff;
  }

  @media (max-width: 61.9em) {

    .cardBox {
      margin-top: 20px;
      width: 80%;
    }

    .cardBox .cardBody {
      display: flex!important;
      -webkit-box-orient: vertical!important;
      -webkit-box-direction: normal!important;
      -ms-flex-direction: column!important;
      flex-direction: column!important;
      -webkit-box-pack: center!important;
      -ms-flex-pack: center!important;
      justify-content: center!important;
      align-items: center;
      width: 100%;
    }

    .cardBox .cardBody .innerCardBox p {
      margin: 0;
      padding: 0;
    }

    .innerCardBox {
      align-self: center;
    }
  }

/* ==================================================
  Portfolio Styling
  ================================================== */

.portfolio {
  background-color: #edf6ff;
  padding-bottom: 0;
}

.portfolio h2 {
  color: var(--mainColor);
  margin-bottom: 25px;
}

.portfolio-grid {
  margin-top: 65px;
}

.portfolio-grid .row {
  margin: 0;
}

.portfolio-grid .row > div {
  padding: 0;
}

.portfolio-grid .row > div .card img {
  width: 100%;
}

.portfolio-grid .row > div .card .portfolio-over {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio-grid .row > div .card .portfolio-over > div {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.portfolio-grid .row > div .card .portfolio-over .card-title {
  color: #fff;
  font-size: 30px;
}

.portfolio-grid .row > div .card .portfolio-over .card-text {
  color: #fff;
  opacity: .75;
  padding: 0 45px;
}

.portfolio-grid .row > div .card:hover .portfolio-over {
  opacity: 1;
  visibility: visible;
}

/* ==================================================
  Software Styling
  ================================================== */

  .software {
    background-color: #f8f9fa;
  }
  
  .software h2 {
    color: var(--secondColor);
    margin-bottom: 25px;
  }

  .smallBox {
    position: relative;
    /*width: 18rem;*/
    max-width: 370px;
    box-shadow: 1px 2px 10px 2px #888888;
    background: #fff;
    margin: auto;
    overflow: hidden;
  }

  .smallBox hr {
    width: 40%;
    border-top: 3px solid var(--secondColor); 
  }

  .smallBox .smallImgWrapper {
    width: 100%;
  }
  
  .smallBox .smallImg {
    margin-top: 50px;
    width: 100px;
    height: 100px;
    z-index: 0;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .smallBox:hover .smallImg {
    width: 105px;
  }

  .smallBox .smallQuote {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    /*background-color: rgb(223, 221, 221);*/
    background-color: #fff;
    font-size: 1.2rem;
    font-style: bold;
  }
  
  .smallBox .smallTitle {
    background: #fff;
    width: 100%;
    padding: 5%;
    padding-bottom: 0;
    z-index: 1;
    font-family: Muli,sans-serif;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #262f3c;
    /*background-color: #fff;*/
  }

  .smallBox .smallTitle h3 {
    text-align: center;
    font-weight: 400;
  }

  .smallBox .smallBody {
    background: #fff;
    width: 100%;
    padding: 5%;
    padding-top: 0;
    padding-bottom: 10%;
    z-index: 1;
    /*background-color: #fff;*/
  }
  
  .smallBox .smallBody p {
    text-align: center;
    margin-bottom: 0;
  }
  
  .smallBox .smallBody p b {
    color: red;
    font-weight: bold;
  }

  @media (max-width: 61.9em) {

    .smallBox {
      margin-top: 20px;
      width: 80%;
      max-width: unset;
    }
    
    .smallBox .smallBody{
      padding: 5%;
      padding-top: 3%;
    }
  }

/* ==================================================
  Other Products Section
  ================================================== */

  .products {
    background-color: #f8f9fa;
  }
  
  .products h2 {
    color: var(--secondColor);
    margin-bottom: 150px;
  }

  .products h3 {
    color: var(--secondColor);
  }
  
  .productWrapper {
    display: flex!important;
    display: -ms-flexbox!important;
    display: -webkit-box!important;

    flex-direction: column!important;
    -ms-flex-direction: column!important;
    -webkit-box-direction: normal!important;
    -webkit-box-orient: vertical!important;

    justify-content: center!important;
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;

    align-items: center!important;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;

    height: 100%!important;
  }

  .productImageWrapper {
    display: flex!important;
    display: -ms-flexbox!important;
    display: -webkit-box!important;

    flex-direction: column!important;
    -ms-flex-direction: column!important;
    -webkit-box-direction: normal!important;
    -webkit-box-orient: vertical!important;

    justify-content: center!important;
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;

    align-items: center!important;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;

    height: 100%!important;
  }

  .productWrapper h3 {
    text-align: left;
  }

  .productImage {
    width: 200px;
  }

  @media (max-width: 61.9em) {

    .products h2 {
      margin-bottom: 40px;
    }

    .productWrapper {
      margin-top: 30px;
    }

    .productWrapper h3 {
      font-size: 1.5rem;
    }

    .productWrapper p {
      margin-top: 10px;
      margin-bottom: 10px;
      width: 80%;
      text-align: center;
    }

    .productWrapper button {
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .productImageWrapper {

    }

  }


/* ==================================================
  Team Styling
  ================================================== */

.team h2 {
  color: var(--mainColor);
}

.team .col-sm-3 {
  padding: 0;
}

.team .card > a {
  display: block;
}

.team .card img {
  width: 100%;
}

.team .card h4 {
  color: #fff;
  text-transform: uppercase;
}

.team .card p {
  font-size: 11px;
  color: #fff;
  opacity: .75;
  margin: 0;
  padding: 0 35px;
}

.team .card .social-nav {
  margin-bottom: 45px;
}

.team .card .social-nav a {
  color: #fff;
  font-size: 16px;
  margin: 0 4px;
}

.team .card .social-nav a:hover {
  opacity: .75;
}

.team .card:hover .team-over {
  opacity: 1;
  visibility: visible;
}

.team .card:hover .card-title-wrap {
  background-color: var(--mainColor);
}

.team .card:hover .card-title-wrap .card-title,
.team .card:hover .card-title-wrap .card-text {
  color: #fff;
}

.team .team-over {
  padding-top: 45px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.team .card-title-wrap {
  padding: 15px 25px;
  position: relative;
  z-index: 9;
  background-color: #fff;
}

.team .card-title-wrap .card-title,
.team .card-title-wrap .card-text {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  display: block;
  margin: 0;
}

.team .card-title-wrap .card-title {
  font-size: 24px;
  color: #333;
}

.team .card-title-wrap .card-text {
  font-size: 18px;
  color: #999;
}

@media (max-width: 61.9em) {
  .team .card {
    margin-bottom: 20px;
  }
}

/* ==================================================
  freelancer Styling
  ================================================== */

  .freelancer {
    padding-top: 0;
  }

  .freelancer h2 {
    color: var(--mainColor);
  }

  .freelancer .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .freelancer .descriptionWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-left: 2rem;
    background-color: var(--mainColor);
  }
  
  .freelancer .descriptionWrapper:hover{
    background: var(--secondColor);
  }

  .freelancer .descriptionWrapper .description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .freelancer .descriptionWrapper .description p {
    color: #fff;
  }

  
  @media (max-width: 61.9em) {

    .freelancer .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .freelancer .imageWrapper img {
      width: 100%;
    }

    .freelancer .descriptionWrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 2rem;
      background-color: var(--mainColor);
    }

    .freelancer .descriptionWrapper .description {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }

    .freelancer .card {
      margin-bottom: 20px;
    }
  }

/* ==================================================
  Terms of Service
  ================================================== */

  .terms {
    padding-top: 0;
  }
  
  .terms h2 {
    padding-bottom: 0;
    color: var(--mainColor);
  }

  .terms h3 {
    padding: 15px 0;
    color: var(--mainColor);
  }

  .terms p {
    margin-bottom: 5px;
  }

  .terms a {
    color: var(--mainColor);
  }

  .terms a:hover {
    color: var(--btnHoverColor);
  }

  @media (max-width: 61.9em) {

    .terms h3 {
      font-size: 24px;
      padding: 15px 0px 10px 0px;
    }

    .terms h4 {
      padding: 15px 0;
    }
  }

/* ==================================================
  ProductLogin
  ================================================== */

  .productLogin {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .productLogin h2{
    color: var(--mainColor);
  }

  .productLogin .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .productLogin .progress-bar-wrapper  {
    width: 100%;
    background-color: #fff;
  }

  .productLogin .progress-bar-wrapper .progress-bar {
    display: unset;
  }

  .productLogin ul.progress-bar {
      width: 100%;
      margin: 0;
      padding: 0;
      font-size: 0;
      list-style: none;
  }

  .productLogin li.section {
      display: inline-block;
      padding-top: 45px;
      font-size: 13px;
      font-weight: bold;
      line-height: 16px;
      color: gray;
      vertical-align: top;
      position: relative;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .productLogin li.section:before {
      content: 'x';
      position: absolute;
      top: 2px;
      left: calc(50% - 15px);
      z-index: 1;
      width: 30px;
      height: 30px;
      color: white;
      border: 2px solid white;
      border-radius: 17px;
      line-height: 30px;
      background: gray;
  }
  .productLogin .status-bar {
      height: 2px;
      background: gray;
      position: relative;
      top: 20px;
      margin: 0 auto;
  }
  .productLogin .current-status {
      height: 2px;
      width: 0;
      border-radius: 1px;
      background: mediumseagreen;
  }

  @keyframes changeBackground {
      from {background: gray}
      to {background: mediumseagreen}
  }

  .productLogin li.section.visited:before {
      content: '\2714';
      animation: changeBackground .5s linear;
      animation-fill-mode: forwards;
  }

  .productLogin li.section.visited.current:before {
      box-shadow: 0 0 0 2px mediumseagreen;
  }


/* ==================================================
  Responsive Styling
  ================================================== */

@media (max-width: 768px) {
  #header {
    height: 90px;
  }

  #header #logo {
    margin: 10px 0 0 0;
  }

  #header #logo h1 {
    padding: 2px 0;
    font-size: 26px;
  }

  #header #logo img {
    max-height: 30px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}

@media (max-width: 767px) {
  .block {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact h3 {
    text-align: center;
  }
}

@media (max-width: 61.9em) {
  section,
  .block,
  .cta {
    padding: 35px 0;
  }

  .features {
    padding-bottom: 5px;
  }

  p,
  .block p {
    margin: 0;
  }

  .hero-brand {
    margin-bottom: 35px;
  }

  .tagline {
    margin: 35px 0;
  }

  h1 {
    font-size: 32px;
    margin: 0;
  }

  h2,
  .tagline {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    font-size: 14px;
  }

  

  .stats-col {
    margin-bottom: 25px;
  }

  .block {
    height: auto;
  }

  

  .featureBox{
    margin-top: 20px;
  }

  .smallBox{
    margin-top: 20px;
  }

  .feature-col {
    padding-bottom: 30px;
  }

  .portfolio-grid .card h3.card-title {
    font-size: 18px !important;
  }

  .portfolio-grid .card .card-text {
    font-size: 13px;
  }

  .team .team-over {
    padding-top: 20px;
  }

  .team .card .social-nav {
    margin-bottom: 15px;
    padding: 0;
  }

  .contact h3 {
    margin-top: 10%;
    font-size: 1rem;
    text-align: center;
  }

  .contact p {
    text-align: justify;
  }

  .site-footer .social-nav {
    margin-bottom: 35px;
  }

  .site-footer .list-inline {
    text-align: center;
    padding-bottom: 15px;
  }

  .site-footer .list-inline li {
    display: inline-block;
  }
}