
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b6b6b;
  overflow-x: hidden;
}

a,
button {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

.tm-bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.5);
}

.tm-bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.8);
}

.parallax-window {
  min-height: 1500px;
  background: transparent;
}

.parallax-window-imprint {
  min-height: 500px;
  background: transparent;
}

.container-fluid {
  max-width: 1200px;
}

/*******************************************************************************
* Welcome section
*******************************************************************************/

#tmWelcome {
  position: relative;
  display: flex;
  align-items: center;
}

.tm-brand-description {
  font-size: 1.8rem;
  line-height: 1.6;
}

.tm-header-container {
//  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.tm-header-items-container {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 100px;
//  background-color: rgba( 255, 0, 255, 0.2);
}

.tm-empty-item {
  max-width: 535px;
  height: auto;
  margin-right: 35px;
}

.tm-company-item {
  width: 50%;
  max-width: 535px;
  min-width: 420px;
  height: auto;
  margin-right: 0px;
  background-color: rgba(96, 96, 96, 0.8);
  color: white;
  padding: 54px 34px 44px;
  text-align: center;
}

.tm-welcome-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  background-color: rgba( 255, 255, 255, 0.8);
}

.tm-welcome-title {
  margin-bottom: 40px;
}

.tm-welcome-items-container {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 100px;
}

.tm-message-item {
  width: 50%;
  max-width: 535px;
  height: auto;
//  min-height: 500px;
  margin-right: 35px;
  background-color: rgba( 255, 255, 255, 0.8);
  padding: 54px 34px 44px;
}

.tm-personal-item {
  width: 50%;
  max-width: 535px;
  height: auto;
//  min-height: 500px;
  margin-right: 0px;
//  background-color: white;
  padding: 54px 34px 44px;
  text-align: center;
}

.tm-text-small {
  font-size: 0.9rem;
}


/*******************************************************************************
* Portfolio section
*******************************************************************************/

#tmPortfolio {
  padding-top: 40px;
  padding-bottom: 40px;
}

.tm-portfolio-item {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.tm-portfolio-description {
  width: calc(100% - 20px);
  padding: 20px 30px;
}

.tm-portfolio-description h3 {
  margin-bottom: 20px;
}

.tm-text-green {
  color: #98cb00;
}

.tm-text-orange {
  color: #cc6733;
}

.tm-text-blue {
  color: #3398cc;
}

p {
  line-height: 1.8;
}

/*******************************************************************************
* Services section
*******************************************************************************/
#tmServices {
  min-height: 1197px;
  padding-top: 95px;
}

.tm-skills-items-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.tm-skills-item {
  width: 33.3334%;
  max-width: 345px;
  height: auto;
  min-height: 420px;
  margin-right: 35px;
  background-color: rgba( 255, 255, 255, 0.9);
  padding: 54px 34px 44px;
}

.tm-skills-item:last-child {
  margin-right: 0;
}

.tm-skills-icon {
  margin-bottom: 15px;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-offer-container {
  display: flex;
  align-items: center;
}

.tm-offer-item {
  margin-bottom: 100px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba( 255, 255, 255, 0.9);
}

.tm-copyright-text {
  margin-bottom: 30px;
}

.tm-link {
  color: #676767;
}

/*******************************************************************************
* Responsive Arrangement
*******************************************************************************/
@media (max-width: 960px)
{
  .parallax-window {
    min-height: 1800px;
  }

  .tm-header-items-container {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .tm-company-item {
    width: 100%;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding: 30px 30px 30px;
  }

  .tm-welcome-items-container {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .tm-message-item {
    width: 100%;
    max-width: 800px;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    padding: 30px 30px 30px;
  }
  .tm-personal-item {
    width: 100%;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding: 30px 30px 30px;
  }

  .tm-skills-items-container {
    flex-direction: column;
  }
  .tm-skills-item {
    width: 50%;
    max-width: 480px;
    min-width: 320px;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .tm-skills-item:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }
}

