/* ===============================================
  Colordefinition
  ================================================*/

:root {
  /* --mainColor: #199EB8!important; --war mal ursprüngliche farbe*/
  /* --mainColor: #007bff!important; */
  /* --mainColor: #134a84!important; */
  --mainColor: #c03231!important;
  /* --mainColor: #157217!important; */
  --secondColor: #8c0000!important;
  --secondColorHover: #b30202!important;
  --footerCompanyColor: #399e50!important;
  --footerColor: #343a40!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", Helvetica, Arial, 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;
}

.txt-blue {
  color: #199EB8;
}

.txt-orange {
  color: #E04F00;
}

.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;
}

.btn:hover {
  background-color: var(--secondColor);
  color: #fff;
}

.btn:active {
  background-color: var(--mainColor);
}

.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);
}

.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;
}

.table-scrollable {
  width: 100%;
  overflow-y: auto;
  margin: 0 0 1em;
}

.table-scrollable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-scrollable::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, .3);
}

@media (max-width: 430px) {
  .btn-xs-full {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.mt50px {
  margin-top: 50px;
}

.mt80px {
  margin-top: 80px;
}

/* ==================================================
  Hero Styling
================================================== */

.hero {
  display: table;
  position: relative;
  background-color: #fbfbfb;
  background-image: url(../img/backgrounds/e-learning.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  width: 100%;
  height: 20vh;
}

.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%;
}

.hero-brand {
  margin-bottom: 10px;
  display: inline-block;
}

.hero-brand:hover {
  opacity: .75;
}

.tagline {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 26px;
  margin: 10px 0 0 0;
  color: #fff;
}

/* ==================================================
  Floating Button
================================================== */

.floatingButton {
  display: none;
  -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;
  /* background-color: var(--mainColor); */
  /* background-color: #314963; */
  width: 60px;
  border-radius: 20%;
  position: fixed;
  bottom: 21px;
  right: 35px;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 1px 2px 10px 2px #888888;
  font-size: 25px;
  cursor: pointer;
}

.floatingButton:hover {
  right: 37px;
  width: 65px;
  /* border: 4px solid var(--secondColor); */
}

.floatingButton img {
  width: 100%;
}

@media (max-width: 767px) {
  .floatingButton {
    display: flex;
    -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: 60px;
    border-radius: 20%;
    position: fixed;
    top: 15px;
    bottom: unset;
    right: 35px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 9999;
    box-shadow: unset;
    color: #fff;
  }

  .floatingButton:hover {
    right: 50px;
    width: 65px;
  }

  .floatingButton img {
    height: 18px;
    width: 30px;
  }
}

/* ==================================================
  Header Styling
================================================== */

#header {
  background: var(--secondColor);
  height: 70px;
  border-bottom: 1px solid;
  border-color: var(--secondColor);
}

#header #logo {
  margin: 14px 25px 0 0;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 2px 0;
  line-height: 1;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#header .social-nav {
  margin-top: 15px;
}

#header .social-nav a {
  font-size: 24px;
  margin-left: 15px;
  color: #fff;
}

#header .social-nav a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/*--------------------------------------------------------------
# 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;
  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;
}

/* ==================================================
  VideoPopUp
  ================================================== */
  
  .popupWrapper {
    /* display: none; Hidden by default */
    display: flex;
    align-items: center;
    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 */
  }

  .popup {
    background-color: #fefefe;
    margin: auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 70%; /* Could be more or less, depending on screen size */
    max-width: 1000px;
  }

  .popup .btnclose {
    color: var(--mainColor);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .popup .btnclose:hover {
    color: var(--secondColor);
  }

  .popup .btnclose:active {
    color: var(--mainColor);
  }

  .popup .content {
    display: flex;
    width: 100%;
    min-height: 200px;
    max-height: none;
    height: auto;
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 61.9em) {
    .popup {
      width: 100%;
    }
  }

/* ==================================================
  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 #dialogNewEntryInfoBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .dialog #dialogNewEntryInfoBox i {
    font-size: 30px;
    padding-right: 10px;
    padding-left: 10px;
    color: var(--mainColor);
  }

  .dialog #dialogNewEntryInfoBoxValue {
    margin-bottom: 0;
  }

  .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 .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;
  }

  .dialog .content .slideClass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    min-width: 330px;
    transition: all .5s ease-in 0s;
  }

  .dialog .content .slideClass .slider.slider-horizontal {
    width: 100%;
  }

  .dialog .content .slideClass p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--mainColor);
    padding: 12px 17px;
    width: 100%;
    color: #fff;
    cursor: pointer;
    opacity: .65;
  }

  .dialog .content .slideClass p input {
    width: 100%;
    text-align: center;
  }

  .dialog .content input,
  .dialog .content select {
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px 0;
    padding-left: 10px;
  }

  .dialog .content #dialogValueChangeSliderValue {
    text-align: center;
  }

  .dialog .content textarea {
    width: 100%;
    margin-bottom: 15px;
  }

  .dialog .content select.form-control:not([size]):not([multiple]) {
    height: auto;
  }


  @media (max-width: 61.9em) {
    .dialog {
      width: 100%;
    }
  }

/* ==================================================
  Login
  ================================================== */

  .login {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .login h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .login .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

/* ==================================================
  Videos
  ================================================== */

  .videos {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .videos h2{
    color: var(--mainColor);
  }

  .videos h3 {
    color: var(--secondColor);
  }

  .videos h4.infoSection {
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--mainColor);
    cursor: pointer;
  }

  .videos h4.infoSection i {
    font-size: inherit;
    margin-left: 10px;
  }

  .videos video {
    border: 0;
  }

  .videos .description {
    border-top: 4px solid var(--mainColor);
    color: #607182;
    padding: 10px;
    margin: 10px;
    margin-top: 0px;
    text-align: justify;
  }

  .videos .tippWrapper {
    background: #FBB998;
    border-top: 1px dotted gray;
    color: #607182;
    padding: 10px;
    margin: 10px;
    margin-top: 0px;
  }

  .videos .downloadWrapper {
    background: #98B4D4;
    border-top: 1px dotted gray;
    color: #607182;
    padding: 10px;
    margin: 0 10px;
  }

  .videos .wrapper {
    padding: 10px;
    margin: 0 10px;
  }

  .videos .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .videos .w-80 {
    width: 80%;
  }

  .videos i {
    float: right;
    font-size: 25px;
    margin-top: 3px;
    cursor: pointer;
  }

  .videos .icon {
    width: 32px;
    height: 32px;
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .videos ul {
    list-style-type: none;
    margin: auto;
  }

/* ==================================================
  Introduction
  ================================================== */

  .introduction {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .introduction h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .introduction .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .introduction .wrapper p {
    text-align: justify;
  }

/* ==================================================
  Customeradmin
  ================================================== */

  .customeradmin {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
  }
  
  .customeradmin h2{
    /* color: var(--mainColor); */
    color: var(--secondColor);
    margin-bottom: 25px;
  }

  /* ==================================================
   AddCustomer
  ================================================== */

  .addcustomer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .addcustomer h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .addcustomer .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .addcustomer .formWrapper select {
    cursor: pointer;
    /* margin-bottom: 20px; */
    width: 100%;
    /* padding: 15px 0; */
    /* padding-left: 10px; */
  }

  .addcustomer .formWrapper ul li button {
    cursor: pointer;
    transition: all .5s ease-in 0s;
  }

  .addcustomer .formWrapper ul li button:focus {
    outline: 1px auto var(--mainColor);
  }

  .addcustomer .formWrapper ul li button:hover {
    background-color: #fff;
  }

/* ==================================================
   EditCustomer
  ================================================== */

  .editcustomer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .editcustomer h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .editcustomer .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .editcustomer .customer {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .editcustomer .customer:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .editcustomer .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .editcustomer .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    white-space: nowrap!important;
  }

  .editcustomer .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .editcustomer .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .editcustomer .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .editcustomer .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .editcustomer .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

/* ==================================================
   RemoveCustomer
  ================================================== */

  .removecustomer {
    padding-top: 80px;
    padding-bottom: 180px;
  }
  
  .removecustomer h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .removecustomer .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .removecustomer .customer {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .removecustomer .customer:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .removecustomer .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .removecustomer .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    white-space: nowrap!important;
  }

  .removecustomer .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .removecustomer .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .removecustomer .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .removecustomer .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .removecustomer .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

  /* ==================================================
   ChooseCustomer
  ================================================== */

  .choosecustomer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .choosecustomer h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .choosecustomer .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .choosecustomer .customer {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .choosecustomer .customer:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .choosecustomer .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .choosecustomer .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    white-space: nowrap!important;
  }

  .choosecustomer .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .choosecustomer .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .choosecustomer .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .choosecustomer .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .choosecustomer .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

/* ==================================================
  Infocontainer /info, liquidation, vorsorge, beruf
  ================================================== */

  .infocontainer {
    margin: 0;
    padding: 0;
  }

  .infocontainer h2 {
    padding: 5px;
    padding-left: 10px;
    margin-bottom: 20px;
    background-color: #d9d9d9;
  }

  .infocontainer h3 {
    padding: 1px;
    padding-left: 10px;
    background-color: #d9d9d9;
    font-weight: bold;
    font-size: large;
  }

  .infocontainer h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--mainColor);
    cursor: pointer;
  }

  .infocontainer table {
    width: 100%;
  }

  .infocontainer table td p {
    margin: 0;
    padding: 0;
  }

  .infocontainer i {
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    color: var(--secondColor);
  }

  .infocontainer i:hover {
    color: var(--secondColorHover);
  }

  .infocontainer .container > p.center {
    text-align: center;
  }

  .infocontainer .chartWrapper,
  .infocontainer .chartWrapperFluid {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    padding-bottom: 30px;
  }

  .infocontainer .chartWrapperFluid {
    max-width: unset;
  }

/* ==================================================
  Useradmin
  ================================================== */

  .useradmin {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
  }
  
  .useradmin h2{
    /* color: var(--mainColor); */
    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;
    cursor: pointer;
  }

  .smallBox:hover,
  .smallBox:active {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .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;
  }

  .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%;
    margin-bottom: 5%;
    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%;
    }
  }

  /* ==================================================
   Adduser
  ================================================== */

  .adduser {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .adduser h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .adduser .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

/* ==================================================
   Edituser
  ================================================== */

  .edituser {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .edituser h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .edituser .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .edituser .user {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .edituser .user:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .edituser .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .edituser .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    white-space: nowrap!important;
  }

  .edituser .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .edituser .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .edituser .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .edituser .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .edituser .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

/* ==================================================
   Removeuser
  ================================================== */

  .removeuser {
    padding-top: 80px;
    padding-bottom: 180px;
  }
  
  .removeuser h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .removeuser .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .removeuser .user {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .removeuser .user:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .removeuser .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .removeuser .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    white-space: nowrap!important;
  }

  .removeuser .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .removeuser .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .removeuser .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .removeuser .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .removeuser .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

/* ==================================================
   ChangePw
  ================================================== */

  .changePw {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .changePw h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .changePw .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

/* ==================================================
  Videoadmin
  ================================================== */

  .videoadmin {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .videoadmin h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }


  /* ==================================================
   Addvideo
  ================================================== */

  .addvideo {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .addvideo h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .addvideo .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .addvideo i {
    color: var(--mainColor); 
    font-size: 25px; 
    padding-right: 8px;
  }

  .addvideo i:hover {
    color: var(--secondColor);
    cursor: pointer;
  }

/* ==================================================
   Editvideo
  ================================================== */

  .editvideo {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .editvideo h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .editvideo .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .editvideo i {
    color: var(--mainColor); 
    font-size: 25px; 
    padding-right: 8px;
  }

  .editvideo i:hover {
    color: var(--secondColor);
    cursor: pointer;
  }

  .editvideo .video {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    height: 90%;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .editvideo .video:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .editvideo .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .editvideo .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    /* white-space: nowrap!important; */
  }

  .editvideo .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .editvideo .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .editvideo .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .editvideo .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .editvideo .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

/* ==================================================
   Removevideo
  ================================================== */

  .removevideo {
    padding-top: 80px;
    padding-bottom: 180px;
  }
  
  .removevideo h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .removevideo .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .removevideo .video {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    height: 90%;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .removevideo .video:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .removevideo .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .removevideo .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    /* white-space: nowrap!important; */
  }

  .removevideo .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .removevideo .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .removevideo .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .removevideo .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .removevideo .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

/* ==================================================
   Posideo
  ================================================== */

  .posvideo {
    padding-top: 80px;
    padding-bottom: 180px;
  }
  
  .posvideo h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .posvideo .formWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .posvideo .video {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    height: 90%;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.3);
  }

  .posvideo .video:hover {
    -webkit-box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
    box-shadow: 0 14px 12px 0 rgba(0,0,0,0.17), 0 20px 40px 0 rgba(0,0,0,0.3);
  }

  .posvideo .nameWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  .posvideo .name {
    padding: 0;
    padding-top: 5px;
    margin: 0!important;
    overflow-wrap: break-word;
    /* white-space: nowrap!important; */
  }

  .posvideo .number {
    padding: 0!important;
    margin: 0!important;
    color: #6c757d!important;
  }

  .posvideo .imageWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .posvideo .imageWrapper img {
    width: 100%;
  }

  @media (max-width: 61.9em) {

    .posvideo .nameWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .posvideo .imageWrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

  /* ==================================================
  DocumentsDVAG
  ================================================== */

  .documentsDVAG {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .documentsDVAG h2{
    color: var(--mainColor);
    margin-bottom: 35px;
  }

  .documentsDVAG h3 {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .documentsDVAG i {
    cursor: pointer;
    font-size: 25px;
    color: var(--secondColor);
  }

  .documentsDVAG i.active {
    font-size: 20px;
    color: #fff;
    vertical-align: middle;
    padding-left: 3px;
  }

  .documentsDVAG .currYearWrapper,
  .documentsDVAG .currMonthWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .documentsDVAG .date {
    margin: 0 10px;
    font-size: 20px;
    vertical-align: bottom;
  }

  /* width */
  .documentsDVAG .table-scrollable::-webkit-scrollbar {
    width: 13px;
  }

  /* Track */
  .documentsDVAG .table-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  .documentsDVAG .table-scrollable::-webkit-scrollbar-thumb {
    /* background: #888;  */
    background: var(--mainColor); 
  }

  /* Handle on hover */
  .documentsDVAG .table-scrollable::-webkit-scrollbar-thumb:hover {
    /* background: #555;  */
    background: var(--secondColor); 
  }

  .documentsDVAG table {
    margin-bottom: 30px;
  }
  .documentsDVAG table thead {
    background-color: var(--secondColor);
    color: #fff;
  }

  .documentsDVAG table thead th {
    background-color: var(--secondColor);
    cursor: pointer;
  }

  .documentsDVAG table thead .tableHeadSearch {
    display: flex;
    align-items: center;
  }

  .documentsDVAG table thead .tableHeadFormControl {
    line-height: 1.5!important;
    font-size: 1rem!important;
    text-align: center;
  }

  .documentsDVAG table tbody td {
    display: flex;
    align-items: center;
    justify-content: start;
    min-height: 25px;
  }

  .documentsDVAG table tbody td:hover {
    cursor: pointer;
    background-color: var(--mainColor);
  }

  .documentsDVAG table tbody td p {
    margin: 0;
    padding: 0;
    font-size: 15px;
  }

  .documentsDVAG table tbody td a {
    text-decoration: none;
    color: inherit;
  }

  @media (max-width: 750px) {

    .documentsDVAG h3 {
      text-align: center;
      font-size: 16px;
    }

    .documentsDVAG table thead th {
      font-size: 14px;
    }
    
    .documentsDVAG table tbody td {
      font-size: 12px;
    }

    .documentsDVAG table thead .tableHeadFormControl {
      line-height: 1.2!important;
      font-size: 0.7rem!important;
    }

  }

  @media (max-width: 500px) {

    .documentsDVAG .date {
      font-size: 14px;
      vertical-align: bottom;
    }

    .documentsDVAG i {
      font-size: 19px;
      color: var(--secondColor);
    }

    .documentsDVAG table thead th {
      font-size: 10px;
    }
    
    .documentsDVAG table tbody td {
      font-size: 9px;
    }

    .documentsDVAG table thead .tableHeadFormControl {
      line-height: 0.9!important;
      font-size: 0.4rem!important;
    }

  }

  /* ==================================================
  Performance
  ================================================== */

  .performance {
    padding: 0 0 85px;
  }

  .performance .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .performance .wrapper h2{
    color: var(--mainColor);
    margin-bottom: 25px;
  }

  .performance .wrapper .slider.slider-horizontal {
    width: 70%;
    margin-right: 20px;
  }

  .performance .wrapper .slideClass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    min-height: 200px;
    min-width: 330px;
    transition: all .5s ease-in 0s;
  }
  
  .performance .wrapper .slideClass.active {
    opacity: 1;
    transition: all .3s ease-out 0s;
  }
  
  .performance .wrapper .slideClass p:first-of-type{
    margin-top: 20px;
  }
  
  .performance .wrapper .slideClass p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--mainColor);
    padding: 12px 17px;
    width: 100%;
    color: #fff;
    cursor: pointer;
    opacity: .65;
  }
  
  .performance .wrapper .slideClass p:hover,
  .performance .wrapper .slideClass p:focus {
    background-color: var(--secondColor);
  }
  
  .performance .wrapper .slideClass p.active {
    opacity: 1;
  }
  
  .performance .wrapper .slideClass p input {
    width: 100%;
    text-align: center;
  }
  
  .performance .wrapper #dialogContactSlider {
    background: var(--mainColor);
    width: 100%;
  }
  
  .performance .wrapper #dialogContactSlider .slider-handle {
    background: var(--secondary);
  }
  
  .performance .wrapper .slideClass ul {
    width: 100%;
    text-align: center;
    background: var(--mainColor);
  }
  
  .performance .wrapper .slideClass ul .btn {
    padding: 15px 5px;
  }
  
  .performance .wrapper .slideClass .btnWrapper .btn:hover {
    opacity: .65!important;
    background-color: var(--mainColor);
  }
  
  .performance .wrapper .slideClass .wrapperDragDrop {
    justify-self: flex-end;
    padding: 25px 0px;
    max-width: 450px;
    width: 100%;
    border-radius: 3px;
    /* background: red; */
  }
  
  .performance .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;
  }
  
  .performance .wrapper .slideClass .wrapperDragDrop .item .text {
    font-size: 18px;
    font-weight: 400;
  }
  
  .performance .wrapper .slideClass .wrapperDragDrop .item i {
    color: #fff;
    font-size: 20px;
    padding-bottom: 10px;
  }
  
  .performance .wrapper .progressWrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    width: 30%;
  }
  
  .performance .wrapper .btnWrapper {
    margin-top: 30px;
    justify-content: flex-end;
  }
  
  .performance .progress-bar-wrapper  {
    margin-bottom: 80px;
    width: 80%;
    justify-content: flex-end;
    background-color: #fff;
  }
  
  .performance .progress-bar-wrapper .progress-bar {
    display: unset;
  }
  
  .performance ul.progress-bar {
      width: 100%;
      margin: 0;
      padding: 0;
      font-size: 0;
      list-style: none;
  }
  
  .performance 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;
  }
  
  .performance 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;
  }
  .performance .status-bar {
      height: 2px;
      background: gray;
      position: relative;
      top: 20px;
      margin: 0 auto;
  }
  .performance .current-status {
      height: 2px;
      width: 0;
      border-radius: 1px;
      background: mediumseagreen;
  }
  
  @keyframes changeBackground {
      from {background: gray}
      to {background: mediumseagreen}
  }
  
  .performance li.section.visited:before {
      content: '\2714';
      animation: changeBackground .5s linear;
      animation-fill-mode: forwards;
  }
  
  .performance li.section.visited.current:before {
      box-shadow: 0 0 0 2px mediumseagreen;
  }
  
  @media (max-width: 990px) {
    .performance .wrapper .slideClass {
      min-width: 60%;
      padding: 20px;
    }
  
    .performance .wrapper .slideClass p {
      margin-bottom: 8px;
    }
  }
  
  @media (max-width: 400px) {

    .performance .wrapper .slideClass {
      width: 100%;
      padding: 20px;
    }
  
    .performance .wrapper .slideClass p {
      margin-bottom: 8px;
    }
  }
  
  @media (max-width: 373px) {
    .performance h2:after {
      width: 100px;
      top: 80px;
      left: 33%;
      width: 33%;
    }
  }

  .performance table {
    margin-bottom: 30px;
  }
  .performance table thead {
    background-color: var(--secondColor);
    color: #fff;
  }

  .performance table thead th {
    background-color: var(--secondColor);
    cursor: pointer;
  }

  .performance table thead .tableHeadSearch {
    display: flex;
    align-items: center;
  }

  .performance table thead .tableHeadFormControl {
    line-height: 1.5!important;
    font-size: 1rem!important;
    text-align: center;
  }

  .performance table tbody td {
    display: flex;
    align-items: center;
    justify-content: start;
    min-height: 25px;
  }

  .performance table tbody td:hover {
    cursor: pointer;
    /* background-color: var(--mainColor); */
  }

  .performance table tbody td p {
    margin: 0;
    padding: 0;
    font-size: 15px;
  }

  .performance table tbody td a {
    text-decoration: none;
    color: inherit;
  }

  @media (max-width: 750px) {

    .performance table thead th {
      font-size: 14px;
    }
    
    .performance table tbody td {
      font-size: 12px;
    }

    .performance table thead .tableHeadFormControl {
      line-height: 1.2!important;
      font-size: 0.7rem!important;
    }

  }

  @media (max-width: 500px) {

    .performance table thead th {
      font-size: 10px;
    }
    
    .performance table tbody td {
      font-size: 9px;
    }

    .performance table thead .tableHeadFormControl {
      line-height: 0.9!important;
      font-size: 0.4rem!important;
    }

  }


/* ==================================================
  Leader
  ================================================== */

  .leader {
    padding: 0 0 85px;
  }

  .leader .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .leader .wrapper h2{
    color: var(--mainColor);
    margin-bottom: 25px;
  }

  .leader .wrapper .slider.slider-horizontal {
    width: 70%;
    margin-right: 20px;
  }

  .leader .wrapper .slideClass {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    min-height: 200px;
    min-width: 330px;
    transition: all .5s ease-in 0s;
  }
  
  .leader .wrapper .slideClass.active {
    opacity: 1;
    transition: all .3s ease-out 0s;
  }
  
  .leader .wrapper .slideClass p:first-of-type{
    margin-top: 20px;
  }
  
  .leader .wrapper .slideClass p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--mainColor);
    padding: 12px 17px;
    width: 100%;
    color: #fff;
    cursor: pointer;
    opacity: .65;
  }
  
  .leader .wrapper .slideClass p:hover,
  .leader .wrapper .slideClass p:focus {
    background-color: var(--secondColor);
  }
  
  .leader .wrapper .slideClass p.active {
    opacity: 1;
  }
  
  .leader .wrapper .slideClass p input {
    width: 100%;
    text-align: center;
  }
  
  .leader .wrapper #dialogContactSlider {
    background: var(--mainColor);
    width: 100%;
  }
  
  .leader .wrapper #dialogContactSlider .slider-handle {
    background: var(--secondary);
  }
  
  .leader .wrapper .slideClass ul {
    width: 100%;
    text-align: center;
    background: var(--mainColor);
  }
  
  .leader .wrapper .slideClass ul .btn {
    padding: 15px 5px;
  }
  
  .leader .wrapper .slideClass .btnWrapper .btn:hover {
    opacity: .65!important;
    background-color: var(--mainColor);
  }
  
  .leader .wrapper .slideClass .wrapperDragDrop {
    justify-self: flex-end;
    padding: 25px 0px;
    max-width: 450px;
    width: 100%;
    border-radius: 3px;
    /* background: red; */
  }
  
  .leader .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;
  }
  
  .leader .wrapper .slideClass .wrapperDragDrop .item .text {
    font-size: 18px;
    font-weight: 400;
  }
  
  .leader .wrapper .slideClass .wrapperDragDrop .item i {
    color: #fff;
    font-size: 20px;
    padding-bottom: 10px;
  }
  
  .leader .wrapper .progressWrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    width: 30%;
  }
  
  .leader .wrapper .btnWrapper {
    margin-top: 30px;
    justify-content: flex-end;
  }
  
  .leader .progress-bar-wrapper  {
    margin-bottom: 80px;
    width: 80%;
    justify-content: flex-end;
    background-color: #fff;
  }
  
  .leader .progress-bar-wrapper .progress-bar {
    display: unset;
  }
  
  .leader ul.progress-bar {
      width: 100%;
      margin: 0;
      padding: 0;
      font-size: 0;
      list-style: none;
  }
  
  .leader 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;
  }
  
  .leader 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;
  }
  .leader .status-bar {
      height: 2px;
      background: gray;
      position: relative;
      top: 20px;
      margin: 0 auto;
  }
  .leader .current-status {
      height: 2px;
      width: 0;
      border-radius: 1px;
      background: mediumseagreen;
  }
  
  @keyframes changeBackground {
      from {background: gray}
      to {background: mediumseagreen}
  }
  
  .leader li.section.visited:before {
      content: '\2714';
      animation: changeBackground .5s linear;
      animation-fill-mode: forwards;
  }
  
  .leader li.section.visited.current:before {
      box-shadow: 0 0 0 2px mediumseagreen;
  }
  
  @media (max-width: 990px) {
    .leader .wrapper .slideClass {
      min-width: 60%;
      padding: 20px;
    }
  
    .leader .wrapper .slideClass p {
      margin-bottom: 8px;
    }
  }
  
  @media (max-width: 400px) {

    .leader .wrapper .slideClass {
      width: 100%;
      padding: 20px;
    }
  
    .leader .wrapper .slideClass p {
      margin-bottom: 8px;
    }
  }
  
  @media (max-width: 373px) {
    .leader h2:after {
      width: 100px;
      top: 80px;
      left: 33%;
      width: 33%;
    }
  }

  .leader table {
    margin-bottom: 30px;
  }
  .leader table thead {
    background-color: var(--secondColor);
    color: #fff;
  }

  .leader table thead th {
    background-color: var(--secondColor);
    cursor: pointer;
  }

  .leader table thead .tableHeadSearch {
    display: flex;
    align-items: center;
  }

  .leader table thead .tableHeadFormControl {
    line-height: 1.5!important;
    font-size: 1rem!important;
    text-align: center;
  }

  .leader table tbody td {
    display: flex;
    align-items: center;
    justify-content: start;
    min-height: 25px;
  }

  .leader table tbody td:hover {
    cursor: pointer;
    /* background-color: var(--mainColor); */
  }

  .leader table tbody td p {
    margin: 0;
    padding: 0;
    font-size: 15px;
  }

  .leader table tbody td a {
    text-decoration: none;
    color: inherit;
  }

  @media (max-width: 750px) {

    .leader table thead th {
      font-size: 14px;
    }
    
    .leader table tbody td {
      font-size: 12px;
    }

    .leader table thead .tableHeadFormControl {
      line-height: 1.2!important;
      font-size: 0.7rem!important;
    }

  }

  @media (max-width: 500px) {

    .leader table thead th {
      font-size: 10px;
    }
    
    .leader table tbody td {
      font-size: 9px;
    }

    .leader table thead .tableHeadFormControl {
      line-height: 0.9!important;
      font-size: 0.4rem!important;
    }

  }


/* ==================================================
  NoAccess
  ================================================== */

  .noaccess {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .noaccess h2{
    /* color: var(--mainColor); */
    color: #c03231;
  }

  .noaccess .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .noaccess .wrapper a {
    color: #000;
  }

  .whistle{
    width: 20%;
    fill: #f95959;
    margin: 100px 40%;
    text-align: left;
    transform: translate(-50%, -50%);
    transform: rotate(0);
    transform-origin: 80% 30%;
    animation: wiggle .2s infinite;
  }
  
  @keyframes wiggle {
    0%{
      transform: rotate(3deg);
    }
    50%{
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(3deg);
    }
  }

/* ==================================================
  Footer Social Media Styling
  ================================================== */

  .socialMediaWrapper {
    display: flex!important;
    display: -ms-flexbox!important;
    display: -webkit-box!important;

    flex-direction: row!important;
    -ms-flex-direction: row!important;
    -webkit-box-direction: normal!important;
    webkit-box-orient: horizontal!important;

    justify-content: flex-end!important;
    -ms-flex-pack: end!important;
    -webkit-box-pack: end!important;

  }

  .socialMediaIconWrapper {
    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;
    margin: 5px;
    padding-bottom: 2px;
    border-width: 5px;
    border-color: var(--mainColor);
    border-radius: 100%;
    background-color: var(--mainColor);
  }

  .socialMediaIconWrapper:hover,
  .socialMediaIconWrapper:hover .socialMediaIcon {
    border-color: var(--secondColor);
    background-color: var(--secondColor);
  }

  .socialMediaIcon {
    margin: 10px;
    height: 40px;
    text-align: center;
    width: 40px;
    background-color: var(--mainColor);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }

  @media (max-width: 61.9em) {
    .socialMediaWrapper {
      justify-content: flex-end!important;
      -ms-flex-pack: end!important;
      -webkit-box-pack: end!important;
    }
  }

  @media (max-width: 575px) {
    .socialMediaWrapper {
      margin-top: 20px;
      margin-bottom: 20px;
      justify-content: flex-start!important;
      -ms-flex-pack: start!important;
      -webkit-box-pack: start!important;
    }
  }

/* ==================================================
  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;
}



/* ==================================================
  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;
  }

  .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;
  }

/* ==================================================
  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;
}

/* ==================================================
  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 {
    color: var(--mainColor);
  }


/* ==================================================
  Contact Section
  ================================================== */

#contact {
  background: #f7f7f7;
  padding: 80px 0;
}

#contact h2 {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: var(--mainColor);
}

#contact p {
  font-size: 14px;
}

#contact .info i {
  font-size: 32px;
  color: var(--mainColor);
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  line-height: 24px;
}

#contact .form #sendmessage {
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
}

#contact .form button[type="submit"] {
  background: var(--mainColor);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: var(--mainColor);
}

/* ==================================================
  Footer Styling
  ================================================== */

.footer {
  background: #111;
  color: white;
  border-top: 1px solid;
  border-color: var(--secondColor);
}

.footer a {
  color: white;
}

.footer .links ul {
    list-style-type: none;
}
.footer .links li a {
    color: white;
    transition: color .2s;
}
.footer .links li a:hover {
    text-decoration: none;
    color: #4180CB;
}
.footer .about-company i {
    font-size: 25px;
}
.footer .about-company a {
    color: white;
    transition: color .2s;
}
.footer .about-company a:hover {
    color: #4180CB;
}
.footer .location i {
    font-size: 18px;
}
.footer .copyright p {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/*.footer h2 {
  padding: 0;
  margin: 0;
}*/
.footer p {
  color: #fff;
}

#footer h2 {
  color: var(--mainColor);
}

.phrase {
  color: grey;
  font-size: 18px !important;;
}


.site-footer {
  background-color: #111;
  padding: 0;
}

.site-footer h2,
.site-footer p {
  color: #fff;
}

.site-footer p {
  opacity: .75;
  line-height: 2.0925;
}

.site-footer h2,
.site-footer .btn {
  margin-bottom: 25px;
}

.site-footer .social-nav a {
  color: #fff;
  opacity: .25;
}

.site-footer .social-nav a:hover {
  opacity: 1;
}

.site-footer .bottom {
  background-color: #000;
  padding: 20px 0;
}

.site-footer .bottom .list-inline,
.site-footer .bottom p {
  margin: 0;
}

.site-footer .bottom .list-inline {
  position: relative;
  top: 5px;
}

.site-footer .bottom .list-inline a {
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin-right: 15px;
}

.site-footer .bottom .list-inline a:hover {
  color: #199EB8;
}

.site-footer .credits {
  color: #ddd;
}

.site-footer .credits a {
  color: var(--mainColor);
}

/* ==================================================
  Responsive Styling
  ================================================== */

@media (max-width: 768px) {
  #header {
    height: 50px;
  }

  #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;
  }

  .hero {
    padding: 75px 0;
  }

  .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;
  }
}