.layout-container {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
  padding-left: 13%;
  padding-right: 13%;
  width: 74%;
}

.layout-title {
  font-size: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: .0625rem solid rgba(0,0,0,0.2);
}

.layout-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 3.75rem;
}

.layout-content-nav {
  width: 15%;
  display: flex;
  flex-direction: column;
}

.layout-content-nav-list {
  border: .0625rem solid #0072b8;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.layout-content-nav-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: .5rem;
  padding-top: .5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.layout-content-nav-item:not(:last-child) {
  margin-bottom: .5rem;
}

.layout-content-nav-item-active {
  background-color: #0072b8;
}

.layout-content-nav-item-active > .layout-content-nav-item-text {
  color: white;
}

.layout-content-nav-item-active > .layout-content-nav-item-icon { 
  border-top: .125rem solid white;
  border-right: .125rem solid white;
}

.layout-content-nav-item:hover {
  transition: all .3s;
  background-color: #0072b8;
}

.layout-content-nav-item:hover > .layout-content-nav-item-text {
  color: white;
}

.layout-content-nav-item:hover > .layout-content-nav-item-icon { 
  border-top: .125rem solid white;
  border-right: .125rem solid white;
}

.layout-content-nav-item-text {
  font-size: .875rem;
  color: #0072b8;
}

.layout-content-nav-item-icon {
  border-top: .0625rem solid #0072b8;
  border-right: .0625rem solid #0072b8;
  height: .375rem;
  width: .375rem;
  transform: rotate(45deg);
}

.layout-content-info {
  width: 75%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1920px) { 
  .layout-container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  
  .layout-title {
    font-size: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
  
  .layout-content {
    margin-top: 70px;
  }

  .layout-content-nav-list {
    border: 1px solid #0072b8;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  
  .layout-content-nav-item {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 8px;
    padding-top: 8px;
  }
  
  .layout-content-nav-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .layout-content-nav-item-active > .layout-content-nav-item-icon { 
    border-top: 2px solid white;
    border-right: 2px solid white;
  }

  .layout-content-nav-item:hover > .layout-content-nav-item-icon { 
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
  
  .layout-content-nav-item-text {
    font-size: 16px;
  }
  
  .layout-content-nav-item-icon {
    border-top: 2px solid #0072b8;
    border-right: 2px solid #0072b8;
    height: 6px;
    width: 6px;
  }
}

@media screen and (max-width: 1600px) { 
  .layout-content-nav {
    width: 18%;
  }

  .layout-content-info {
    width: 72%;
  }
}

@media screen and (max-width: 1270px) { 
  .layout-content-nav {
    width: 20%;
  }

  .layout-content-info {
    width: 70%;
  }
}

@media screen and (max-width: 1200px) { 
  .layout-container {
    padding-left: 5%;
    padding-right: 5%;
    width: 90%;
  }
}

@media screen and (max-width: 888px) {
  .layout-content {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .layout-content-nav {
    width: 100%;
    margin-bottom: 30px;
  }

  .layout-content-info {
    width: 100%;
  }
}