
.com {
  display: flex;
  align-items: stretch;
  height: 90vh;
  overflow: hidden;
}
.com__content {
  /*position: relative;*/
  flex: 8;
  background: #404855;
  padding: 10vh 10vw;
  margin-top: 100px;
}
.com__section {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 75vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 10%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
     background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.com__section.forone
{
  background-image: url(../images/slider5.jpg);

}
/*.banner{
background:rgba(32,35,42,0.5); height: 75vh;width:100%;padding-left: 5%;

}*/
.com__section.fortwo
{
  background-image: url(../images/slider2.jpeg);
}
.com__section.forthree
{
  background-image: url(../images/slider3.jpg);
}
.com__section.forfour
{
  background-image: url(../images/slider4.jpg);
}



.com__section.active {
  opacity: 1;
  visibility: visible;
}
.com__section-half {
  flex: 1;
  height: 75vh;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}
.com__section--text h1 {
  margin-bottom: 3vh;
  font-size: 48px;
  font-weight: 300;
  color: #f8f8f8;
}
@media (max-width: 576px) {
.com__section--text h1 {
  margin-bottom: 3vh;
  font-size: 30px;
  font-weight: 300;
  color: #22E2ED;
}
  }


.com__section--text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 20px;
  text-align:start;
}
.com__section--text img {
  max-width: 250px;
  margin: 0 auto;
}
.com__section--text.centered {
  text-align: center;
}
.com__section--text-img {
  display: flex;
  flex-flow: row wrap;
}
.com__nav {
  width: 90px;
  margin-top: 100px;
}
.com__nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: column wrap;
  height: 100vh;
  overflow: visible;
}
.com__nav-item {
  flex: 1;
  position: relative;
  overflow: visible;
  border-bottom: 7px solid #1BAFB9;
  background: #22E2ED;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.com__nav-item.active {
  background: #20232a;
}
.com__nav-item:last-child {
  border-bottom: none;
}
.com__nav-item:hover {
  flex: 2;
}
.com__nav-item:hover .com__nav-link {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.com__nav-item:hover .blue-line,
.com__nav-item:hover .white-line,
.com__nav-item:hover .white-circle {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
.com__nav-link {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  padding: 0 20%;
  position: absolute;
  width: 280%;
  height: 100%;
  left: calc(-280% + 90px);
  background: rgba(32, 35, 42, 0.75);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.com__nav-link.flex-row {
  flex-flow: row wrap;
}
.com__nav-link.centered {
  align-items: center;
}
.com__nav-link .com__section-half {
  height: auto;
}
.com__nav-link .com__section-half:nth-child(2) {
  align-items: center;
}

.blue-line {
      display: block;
    width: 80%;
    /* height: 14px; */
    /* background: #22E2ED; */
    margin-bottom: 0px;
    color: #22E2ED;
    font-size: 16px;
}

.white-line {
     display: inline-block;
    width: 100%;
    /* height: 5px; */
    /* background: rgba(255, 255, 255, 0.9); */
    margin-bottom: 0px;
    color: #fff;
    font-size: 12px;
}
.white-line:nth-of-type(3) {
  width: 50%;
}

.white-circle {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

/* animation classes */
.animate {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.slideInLeft {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.slideInRight {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.scaleIn {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.scaleInLeft {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.delay-1 {
  transition-delay: 0.05s;
}

.delay-2 {
  transition-delay: 0.1s;
}

.delay-3 {
  transition-delay: 0.15s;
}

.delay-4 {
  transition-delay: 0.2s;
}

.delay-5 {
  transition-delay: 0.25s;
}

.logo {
  position: fixed;
  bottom: 3vh;
  left: 3vw;
  z-index: 2;
}
.logo img {
  width: 45px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.logo img:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}
