* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 28px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color: #111;
  font-weight: 400;
  background-color: #fff;
  width: 100%;
  min-height: 100vh;
}

body::-webkit-scrollbar {
  display: none;
} 

.animated {
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo {
  width: 300px;
  left: 50%;
  margin-left: -150px;
  top: 30px;
  z-index: 20;
}
.home-boxes {
  width: 95%;
  width: calc(100% - 60px);
  margin:0 auto;
  height: calc(100vh - 110px);
}

.home-boxes div, .home-boxes a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position:relative;
}

h1, h2 {
  font-size:20px;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 12px;
  text-align: center;
  font-weight: 400;
}

h2 {
  font-size:16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 4px;
}

.home-boxes h1 {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff;
  left: 0px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 5;
  transform: translateY(-50%);
}

.home-boxes div:before {
  background:#000;
  opacity: .8;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  z-index: 2;
  content: ' ';
  display: block;
    -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
}

.home-boxes div img {
  height: 100%;
  width: 100%;
  max-width: 5000px;
  object-fit: cover;
  object-position: center;
}

.home-boxes div:hover:before {
  opacity: .5;
}

.home-boxes div:hover img {
  transform: scale(1.1);
}

.home-boxes div:hover h1 {
  top: 48%;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

main {
  padding-top: 83px;
}

html.is-animating .transition-fade {
  opacity: 0;
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

.container {
  width: 95%;
  width: calc(100% - 60px);
  margin:0 auto;
  max-width: 100%;
}

.container-dark {
  background-color:#0d0d0d;
}

.container-dark h1 {
  color: #fff;
}

.career-container {
  /*min-height: 2000px;*/
  position: relative;
}

.career-container h1, .career-container .timeline {
  z-index: 1;
  position: relative;
}

.career-container:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-image: url(../img/career.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
  content: ' ';
  display: block;
  opacity: .05;
}

.timeline {
  position: relative;
  max-width: 1000px;
  padding:40px 0px;
  margin:0 auto;
}

.timeline p {
  margin:0px;
}

.timeline::before {
  content: '';
  background: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  width: 100%;
  position: relative;
  margin-bottom: 70px;
  font-size: 14px;
  line-height: 25px;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
}

.timeline-item:nth-child(even) .date {
  right: auto;
  left: 50%;
  margin-left: -85px;
  margin-right: 0px;
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent #fff transparent transparent;
}
.timeline-item::after {
  content: '';
  display: block;
  clear: both;
}

.timeline-content.timeline-card {
  padding:0px 0px 30px 0px;
}

h1 span.no-space {
  letter-spacing: 0px;
}

.timeline-content {
  position: relative;
  width: 45%;
  text-align: center;
  padding: 25px;
  background: #fff;
  box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}
.timeline-content::after {
  content: '';
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f5f5f5;
}

.darker .timeline-content::after {
  border-color: transparent #333 transparent transparent !important;
}

.timeline-img {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top:50%;
  margin-top:-6px;
  margin-left: -6px;
}

.darker .timeline-img {
  background: #eed55e;
}




.timeline-card p, .timeline-card ul {
  padding: 0 30px;
  list-style: none;
}
.timeline-card a {
  margin-left: 20px;
}

.timeline-item .timeline-img-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.timeline-img-header {
  height: 110px;
  position: relative;
  margin-bottom: 20px;
}

.timeline-content a h2 {
  color:#fff;
  text-decoration: none;
}

.timeline-content a:hover {
  text-decoration: none;
}

.smaller .timeline-content.timeline-card {
  padding-bottom:20px;
}

.darker .timeline-content {
  background: #333;
  color:#fff;
  position: relative;
}

.darker .timeline-content:before {
  z-index: 0;
  background-image: url(https://altraswealth.com/img/home-desktop.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: ' ';
  position: absolute;
  display: block;
  opacity: .2;
}

.timeline-item.smaller .timeline-img-header{
  height: 70px !important;
  margin-bottom:0px;
}

.darker .timeline-content a h2 {
  position: relative;
  z-index: 2;
}

.timeline-item.smaller h2 {
  margin-bottom:0px;
  font-size:14px;
}

.timeline-item.smaller p {
  font-size: 13px;
  line-height: 20px;
}

.date {
  display: inline-block;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 5px; font-weight: 500;
  font-size:14px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  margin-top:-10px;
  right: 50%;
  text-align: left;
  margin-right: -85px;
}

.btns {
  display: inline-block;
  width: 240px;
  padding: 13px 0px 14px 0px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 6px;
  font-weight: 600;
  text-transform: uppercase;
  background: #fff;
  cursor: pointer;
  color: #000;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.btns:hover {
  color:#fff;
  text-decoration: none;
  background: #000;
}

.about-img, .content {
  width: 50%;
}

.about-img {
  width: 40%;
}

.content {
  color: #fff;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  position: absolute;
  display: block;
  padding: 0px 30px;
  z-index: 10;
  top: 0;
  left: 0;
  height: 83px;
  width: 100%;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
      -ms-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
          transition: all .4s ease-in-out;
  z-index: 1;
}

@media (min-width: 1200px) {
  .header {
    margin-left: -600px;
    left: 50%;
    padding:0px;
  }

  .header.menu-opened, .home .header {
    left: 0px;
    margin-left: 0px;
    width: 100% !important;
    max-width: 100% !important;
    padding:0 30px;
  }
} 


.header .burger-container {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.header .burger-container #burger {
  width: 23px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px 0 0;
  top: 50%;
}
.header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.header .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
}
.header .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(6px) rotate(0deg);
          transform: translateY(6px) rotate(0deg);
}
.header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.header ul.menu {
  position: relative;
  display: block;
  padding: 0px 48px 0;
  list-style: none;
}
.header ul.menu li.menu-item {
  margin-top: 0px;
  text-align: right;
  -webkit-transform: scale(1.15) translateY(-30px);
          transform: scale(1.15) translateY(-30px);
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.header ul.menu li.menu-item:nth-child(1) {
  -webkit-transition-delay: 0.49s;
          transition-delay: 0.49s;
}
.header ul.menu li.menu-item:nth-child(2) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;

  margin-top:50px;
}
.header ul.menu li.menu-item:nth-child(3) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
  margin-top:50px;
}

.header ul.menu li.menu-item:nth-child(4) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
  margin-top:50px;
}
.header ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #FFF;
  font-size:20px;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 12px;
  text-align: right;
  text-decoration: none !important;
  font-weight: 400;
}
.header.menu-opened {
  height: 100vh;
  background-color: #000;
}
.header.menu-opened .burger-container {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header.menu-opened .burger-container #burger .bar {
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  background: #fff;
}
.header.menu-opened .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}
.header.menu-opened .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
          transform: translateY(3px) rotate(-45deg);
}
.header.menu-opened ul.menu li.menu-item {
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  opacity: 1;
}
.header.menu-opened ul.menu li.menu-item:nth-child(1) {
  -webkit-transition-delay: 0.27s;
          transition-delay: 0.27s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(2) {
  -webkit-transition-delay: 0.34s;
          transition-delay: 0.34s;
}
.header.menu-opened ul.menu li.menu-item:nth-child(3) {
  -webkit-transition-delay: 0.41s;
          transition-delay: 0.41s;
}

.link {
  color: #fff;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
  color:#fff;
}

.fixed-height {
  max-height: 100vh;
  min-height: 600px;
  max-height: calc(100vh - 135px);
}

.mbonly {
  display: none;
}

@media (max-width: 800px) {
  
  .mbonly {
    display: block;
  }

  .container .d-flex {
    display: block !important; 
  }

  .about-img, .content {
    width: 100%;
  }

  .container.pr-5, .container.pl-5, .content .pl-5, .content .pr-5 {
    padding-left:0px !important;
    padding-right: 0px !important;
  }

  .fixed-height {
    max-height: 90000px;
  } 

  .about-img {
    height: 300px;
  }

  .content {
    padding:40px 40px 60px 40px !important;
  }

  .container, .home-boxes {
    width: 90%;
  }

  .home-boxes {
    height: auto;
    display: block !important; 
  }

  .home-boxes div, .home-boxes a {
    width:100%;
    height: 230px;
  }

  .career-container.p-5 {
    padding:20px !important;
  }

  .header ul.menu {
    padding-right: 0px;
  }

  .logo {
        width: 250px;
        left: auto;
        margin-left: 0px;
        right: 5%;
        top: 33px;
        z-index: 20;
    }

    .header {
      padding:0px 5%;
      width: 100%;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-img {
    left: 5px;
    margin-top:10px;
  }

  .timeline-content {
    width: calc(100% - 40px);
        margin-left: 40px;
  }

  .timeline-content::after, .timeline-item:nth-child(even) .timeline-content::after {
    border-width: 10px 15px 10px 0;
    right: auto;
    left: -14px;
    border-color: transparent #fff transparent transparent;
  }

  .darker .timeline-content::after {
    border-color: transparent #333 transparent transparent;
}

  .date {
    display: block;
    margin:0px 0px 10px 40px !important;
    position: static;
  }

  .ti9 .timeline-img-header {
    background-size: 80% auto !important;
  }

  .ti4 .timeline-img-header {
    height: 65px !important;
        background-size: 100% auto !important;
  }

  .ti6 .timeline-card p {
    padding:0 15px;
  }

  .timeline-item:nth-child(even) .date, .date {
    text-align: center;
  }

}
