.com-button{
  background-color: #1F6F9A;
  font-weight: 300;
  font-size: 18px;
  padding: .7em 2em;
  border-radius: 100px;
}

.main-button{
  margin-top: 1em;
  text-align: center;
}

.card{
  border-radius:3px;
  border: 1px solid #D1D1D1;
}

.card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 6px;
    margin-bottom: 0;
    margin-left: 6px;
}

.com-icon{
  margin-bottom: .35em;
  color: var(--thm-base);
}

.card-body .title{
    color: var(--thm-base);
}

.main-menu .navigation>li:hover>a, .main-menu .navigation>li.current>a {
    color: #ffffff;;
}

.quote {
    display: inline-block;
    margin: 1em;
    overflow: hidden;
}
.quote blockquote {
    background-color: #eff7f8;
    border: solid 2px #757575;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}
.quote blockquote:before {
    background-color: #eff7f8;
    bottom: -10%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: -10%;
    transform: rotate(-15deg) skew(5deg);
}
.quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}
.quote blockquote cite:before {
    content: "- ";
}
.quote blockquote > * {
    position: relative;
    z-index: 1;
}

.quote-right {
    display: inline-block;
    margin: 1em;
    overflow: hidden;
}
.quote-right blockquote {
    background-color: #eff7f8;
    border: solid 2px #757575;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}
.quote-right blockquote:before {
    background-color: #eff7f8;
    bottom: -10%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: -10%;
    transform: rotate(15deg) skew(-5deg);
}
.quote-right blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}
.quote-right blockquote cite:before {
    content: "- ";
}
.quote-right blockquote > * {
    position: relative;
    z-index: 1;
}

.animated-border-quote {
    display: inline-block;
    margin: 1em;
    max-width: 20em;
    overflow: hidden;
}
.animated-border-quote blockquote {
    border: solid 2px #757575;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}
.animated-border-quote blockquote:before {
    animation: clockwise 30s infinite linear;
    bottom: 10%;
    content: "";
    left: 0;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 10%;
}
.animated-border-quote blockquote:after {
    animation: counter 30s infinite linear;
    bottom: 10%;
    content: "";
    left: 0;
    opacity: 0.5;
    position: absolute;
    right: 0;
    top: 10%;
}
.animated-border-quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}
.animated-border-quote blockquote cite:before {
    content: "- ";
}
.animated-border-quote blockquote > * {
    position: relative;
    z-index: 1;
}
@keyframes clockwise {
    0% {
        transform: rotate(0);
   }
    100% {
        transform: rotate(360deg);
   }
}
@keyframes counter {
    0% {
        transform: rotate(0);
   }
    100% {
        transform: rotate(-360deg);
   }
}
.animated-shadow-quote {
    display: inline-block;
    margin: 1em;
    max-width: 20em;
    position: relative;
}
.animated-shadow-quote blockquote {
    animation: shadows 2s linear infinite alternate;
    display: inline-block;
    margin: 0;
    padding: 1em;
}
.animated-shadow-quote blockquote cite {
    display: block;
    font-style: italic;
    text-align: right;
}
.animated-shadow-quote blockquote cite:before {
    content: "- ";
}
@keyframes shadows {
    0% {
        box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .25);
        transform: scale(0.95);
   }
    100% {
        box-shadow: 0 0 4px 2px rgba(0, 0, 0, .25);
        transform: scale(1);
   }
}
.square-brackets-quote {
    display: inline-block;
    font-family: sans-serif;
    margin: 1em;
    max-width: 20em;
}
.square-brackets-quote blockquote {
    border: solid 1em #ccc;
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}
.square-brackets-quote blockquote:before {
    background-color: #fff;
    bottom: -1em;
    content: "";
    left: 2em;
    position: absolute;
    right: 2em;
    top: -1em;
}
.square-brackets-quote blockquote cite {
    color: #757575;
    display: block;
    font-size: small;
    font-style: normal;
    text-align: right;
    text-transform: uppercase;
}
.square-brackets-quote blockquote > * {
    position: relative;
    z-index: 1;
}
.giant-quotes-quote {
    display: inline-block;
    font-family: sans-serif;
    margin: 1em;
    max-width: 20em;
}
.giant-quotes-quote blockquote {
    display: inline-block;
    margin: 0;
    padding: 1em;
    position: relative;
}
.giant-quotes-quote blockquote:before {
    color: #f90;
    content: "\201C";
    font-size: 4em;
    left: 0;
    line-height: 0.75em;
    position: absolute;
    top: 0;
    transform: scale(2, 8);
    transform-origin: top;
}
.giant-quotes-quote blockquote:after {
    color: #f90;
    content: "\201D";
    font-size: 4em;
    line-height: 0.75em;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(2, 8);
    transform-origin: top;
}
.giant-quotes-quote blockquote > * {
    padding: 0 2em;
}
.giant-quotes-quote blockquote cite {
    color: #c60;
    display: block;
    font-style: normal;
    text-align: right;
    text-transform: uppercase;
}

.vision-mission-text {
    text-align: center !important;
    padding: 0px 50px;
    color: var(--thm-gray) !important;
}

.snip1273 {
    position: relative;
    width: 100%;
    color: #ffffff;
    text-align: left;
    background-color: #000000;
    font-size: 20px;
  }
  .snip1273 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
  }
  .snip1273 img {
    position: relative;
    max-width: 100%;
    vertical-align: top;
  }
  .snip1273 figcaption {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    padding: 20px 30px;
  }
  .snip1273 figcaption:before,
  .snip1273 figcaption:after {
    width: 1px;
    height: 0;
  }
  .snip1273 figcaption:before {
    right: 0;
    top: 0;
  }
  .snip1273 figcaption:after {
    left: 0;
    bottom: 0;
  }
  .snip1273 h3,
  .snip1273 p {
    line-height: 1.5em;
  }
  .snip1273 h3 {
    margin: 0 0 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5em;
    border-bottom: 1px #ffffff solid;
  }
  .snip1273 p {
    font-size: 1em;
    margin: 0 0 15px;
  }
  .snip1273 a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
  }
  .snip1273:before,
  .snip1273:after,
  .snip1273 figcaption:before,
  .snip1273 figcaption:after {
    position: absolute;
    content: '';
    background-color: #ffffff;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    opacity: 0.8;
  }
  .snip1273:before,
  .snip1273:after {
    height: 3px;
    width: 0%;
  }
  .snip1273:before {
    top: 0;
    left: 0;
  }
  .snip1273:after {
    bottom: 0;
    right: 0;
  }
  .snip1273:hover img,
  .snip1273.hover img {
    opacity: 0.4;
  }
  .snip1273:hover figcaption,
  .snip1273.hover figcaption {
    opacity: 1;
  }
  .snip1273:hover figcaption:before,
  .snip1273.hover figcaption:before,
  .snip1273:hover figcaption:after,
  .snip1273.hover figcaption:after {
    height: 100%;
  }
  .snip1273:hover:before,
  .snip1273.hover:before,
  .snip1273:hover:after,
  .snip1273.hover:after {
    width: 100%;
  }
  .snip1273:hover:before,
  .snip1273.hover:before,
  .snip1273:hover:after,
  .snip1273.hover:after,
  .snip1273:hover figcaption:before,
  .snip1273.hover figcaption:before,
  .snip1273:hover figcaption:after,
  .snip1273.hover figcaption:after {
    opacity: 0.1;
  }
  
 @media (min-width: 1000px) {
  #timeline .demo-card:nth-child(odd) .head::after, #timeline .demo-card:nth-child(even) .head::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
 }
  #timeline .demo-card:nth-child(odd) .head::before, #timeline .demo-card:nth-child(even) .head::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #bdbdbd;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 8px #f7f7f7;
 }
}
/* Some Cool Stuff */
.demo-card:nth-child(1) {
  order: 1;
}
.demo-card:nth-child(2) {
  order: 4;
}
.demo-card:nth-child(3) {
  order: 2;
}
.demo-card:nth-child(4) {
  order: 5;
}
.demo-card:nth-child(5) {
  order: 3;
}
.demo-card:nth-child(6) {
  order: 6;
}
/* Border Box */
* {
  box-sizing: border-box;
}

#timeline h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 20px;
}
#timeline p.leader {
  text-align: center;
  max-width: 90%;
  margin: auto;
  margin-bottom: 45px;
}
#timeline .demo-card-wrapper {
  position: relative;
  margin: auto;
}
@media (min-width: 1000px) {
  #timeline .demo-card-wrapper {
    display: flex;
    flex-flow: column wrap;
    width: 1170px;
    height: 1650px;
    margin: 0 auto;
 }
}
#timeline .demo-card-wrapper::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(191, 191, 191, 0.4);
}
@media (min-width: 1000px) {
  #timeline .demo-card-wrapper::after {
    border-left: 1px solid #bdbdbd;
 }
}
#timeline .demo-card {
  position: relative;
  display: block;
  margin: 10px auto 80px;
  max-width: 94%;
  z-index: 2;
}
@media (min-width: 480px) {
  #timeline .demo-card {
    max-width: 60%;
    box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
 }
}
@media (min-width: 720px) {
  #timeline .demo-card {
    max-width: 40%;
 }
}
@media (min-width: 1000px) {
  #timeline .demo-card {
    max-width: 450px;
    height: 450px;
    margin: 90px;
    margin-top: 45px;
    margin-bottom: 45px;
 }
  #timeline .demo-card:nth-child(odd) {
    margin-right: 45px;
 }
  #timeline .demo-card:nth-child(odd) .head::after {
    border-left-width: 15px;
    border-left-style: solid;
    left: 100%;
 }
  #timeline .demo-card:nth-child(odd) .head::before {
    left: 491.5px;
 }
  #timeline .demo-card:nth-child(even) {
    margin-left: 45px;
 }
  #timeline .demo-card:nth-child(even) .head::after {
    border-right-width: 15px;
    border-right-style: solid;
    right: 100%;
 }
  #timeline .demo-card:nth-child(even) .head::before {
    right: 489.5px;
 }
  #timeline .demo-card:nth-child(2) {
    margin-top: 180px;
 }
}
#timeline .demo-card .head {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
}
#timeline .demo-card .head .number-box {
  display: inline;
  float: left;
  margin: 15px;
  padding: 10px;
  font-size: 35px;
  line-height: 35px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.17);
}
#timeline .demo-card .head h2 {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: inherit;
  letter-spacing: 2px;
  margin: 0;
  padding-bottom: 6px;
  line-height: 1rem;
}
@media (min-width: 480px) {
  #timeline .demo-card .head h2 {
    font-size: 165%;
    line-height: 1.2rem;
 }
}
#timeline .demo-card .head h2 span {
  display: block;
  font-size: 0.6rem;
  margin: 0;
}
@media (min-width: 480px) {
  #timeline .demo-card .head h2 span {
    font-size: 0.8rem;
 }
}
#timeline .demo-card .body {
  background: #fff;
  border: 1px solid rgba(191, 191, 191, 0.4);
  border-top: 0;
  padding: 15px;
}
@media (min-width: 1000px) {
  #timeline .demo-card .body {
    height: 365px;
 }
}
#timeline .demo-card .body p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
}
#timeline .demo-card .body img {
  display: block;
  width: 100%;
  height: 250px;
}
#timeline .demo-card--step1 {
  background-color: var(--thm-base);
}
#timeline .demo-card--step1 .head::after {
  border-color: var(--thm-base);
}
#timeline .demo-card--step2 {
  background-color: var(--thm-base);
}
#timeline .demo-card--step2 .head::after {
  border-color: var(--thm-base);
}
#timeline .demo-card--step3 {
  background-color: var(--thm-base);
}
#timeline .demo-card--step3 .head::after {
  border-color: var(--thm-base);
}
#timeline .demo-card--step4 {
  background-color: var(--thm-base);
}
#timeline .demo-card--step4 .head::after {
  border-color: var(--thm-base);
}
#timeline .demo-card--step5 {
  background-color: var(--thm-base);
}
#timeline .demo-card--step5 .head::after {
  border-color: var(--thm-base);
}
