/**

Color Codes
------------
brown: #986665;
green: #98cb00;
orange: #ffa67d;
blue: #3398cc;
dark-blue: #031c40;
dark-gray: #676767;
light-gray: #999999;
text-gray: #6b6b6b;

*/

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

.container-fluid {
  max-width: 1200px;
}

#navbar {
  overflow: hidden;
  background-color: coral;
  Opacity: .9;
  z-index: 1000;
  box-shadow: 1px 1px 4px #555; 
}

/* Navbar links */
#navbar a {
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 16px;
  text-decoration: none;
  background-color: coral;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

.tm-bg-black-transparent {
  background-color: #78cbc4;
  opacity: .9;
}

.tm-bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.92);
}

.tm-bg-green {
  background-color: #98cb00;
}

.tm-bg-orange {
  background-color: #ffa67d;
}

.tm-bg-blue {
  background-color: #78cbc4;
}

.tm-bg-dark-blue {
	background-color: #031c40;
}

.tm-bg-dark-gray {
  background-color: #676767;
}

/*
  Welcome section
*/
#tmWelcome {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.tm-brand-container-outer {
  margin-top: -400px;
}

.tm-brand-container-inner {
  max-width: 580px;
  width: 100%;
}

.tm-brand-container {
  padding: 45px 45px;
}

.spacer-div {
	width: 100%;
    height: 100px;
}

.spacer-div-half {
	height: 200px;
}

.tm-brand-name {
  font-size: 2rem;
}

.tm-brand-description {
  font-size: 1.4rem;
}

.tm-brand-container .tm-btn-submit {
	background-color: coral;
	margin-top: 10px;
}

.parallax-window {
  min-height: 1100px;
  background: transparent;
}

#tmContact {
  min-height: 1197px;
}

.tm-welcome-container {
  min-height: 400px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.tm-welcome-title {
  margin-bottom: 40px;
}

.tm-welcome-left {
  padding-right: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.tm-welcome-left-col {
  display: flex;
  align-items: center;
}

.tm-welcome-right { 
  background-color: #ffffff;
  background-image: url('../img/journal-top-view-banner-2-dm.jpg');
  background-repeat: no-repeat;
  padding: 80px 43px 70px;
  min-height: 525px;
	background-size: cover;
}


.tm-welcome-icon {
  margin-bottom: 50px;
  display: block;
  text-align: center;
}

/*
  Portfolio section
*/

#tmPortfolio {
  padding-top: 80px;
}

.tm-portfolio-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.tm-portfolio-name {
  width: 330px;
  height: 220px;
  font-size: 2rem;
  padding: 20px 20px;
  display: flex;
  align-content: center;
  text-align: center;
}

.tm-portfolio-name img {
	max-width: 300px;
	align-items: left;
}

.tm-portfolio-description {
  width: calc(100% - 330px);
  padding: 20px 45px;
}

.tm-portfolio-description h3 {
  margin-bottom: 20px;
}

.tm-text-green {
  color: #98cb00;
}

.tm-text-orange {
  color: #ffa67d;
}

.tm-text-blue {
  color: #78cbc4;
}

.tm-text-dark-blue {
	color: #031c40;
}

.tm-text-dark-gray {
  color: #676767;
}

.tm-title-small {
  font-size: 1.3rem;
}

p {
  line-height: 1.8;
}

/*
  Contact section
*/

#tmContact {
  padding-top: 95px;
}

.tm-contact-item {
  width: 33.3334%;
  max-width: 345px;
  height: auto;
  min-height: 420px;
  margin-right: 35px;
  background-color: white;
  padding: 54px 34px 44px;
}

.tm-contact-item:last-child {
  margin-right: 0;
}

.tm-contact-items-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}

.tm-contact-item-icon {
  margin-bottom: 45px;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#tmContactForm {
  width: 100%;
  max-width: 680px;
  padding: 45px 45px 30px;
  margin-bottom: 95px;
}

.form-group {
  max-width: 355px;
}

.form-control {
  background: transparent;
  border-color: #999999;
  padding: 15px 10px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.tm-btn-submit {
  background-color: #999999;
  padding: 12px 30px;
  font-size: 1.2rem;
}

.tm-btn-submit:focus,
.tm-btn-submit:hover {
  background-color: #676767;
}

.tm-copyright-text {
  margin: 60px 0;

}

.tm-link {
  color: #676767;
}

@media (max-width: 1054px) {
  .tm-contact-item-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .tm-contact-items-container {
    flex-direction: column;
  }

  .tm-contact-item {
    width: auto;
    max-width: 680px;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .tm-contact-item:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }

  #tmContactForm {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 730px) {
  .tm-portfolio-item {
    flex-direction: column;
  }

  .tm-portfolio-name {
    justify-content: center;
  }

  .tm-portfolio-name,
  .tm-portfolio-description {
    width: 100%;
  }

  .tm-portfolio-description {
    padding: 20px 30px;
  }
}

@media (max-width: 500px) {
  .tm-brand-container {
    padding: 25px;
  }
}

@media (max-width: 443px) {
  .tm-brand-name {
    font-size: 2.5rem;
  }

  .tm-brand-container {
    padding: 25px;
  }
}

/* Social */

.social-share {
	text-align: center;
	margin-top: 45px;
}

.social-share .fa {
  padding: 8px 9px;
  font-size: 15px!important;
  width: 32px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 3px;
}

.social-share .fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #333;
  color: white;
}

.fa-twitter {
  background: #333;
  color: white;
}

.fa-instagram {
  background: #333;
  color: white;
}

.fa-pinterest {
  background: #333;
  color: white;
}

.fa-snapchat-ghost {
  background: #333;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-rss {
  background: #333;
  color: white;
}