:root {
  --bg-color: #d3d3d3;
  --bg-color-gr: #7f8c8d;
  --card-bg-color: #5a5a5a;
  --card-primary-color: #299ac9;
  --card-secondary-color: #767677;
  --text-primary-color: #ffffff;
  --text-secondary-color: #eeeeee;
}

html, body {
  height: 100%;
  font-family: "Oswald", sans-serif;
  background-color: var(--bg-color);
  background-image: linear-gradient(315deg, var(--bg-color) 0%, var(--bg-color-gr) 74%);
}

.main-container {
  height: 100%;
}

.wrapper {
  display: grid;
  height: 100%;
  grid-template-areas: "left-panel" "right-panel";
  background-color: var(--card-bg-color);
}

.left-panel, .right-panel {
  position: relative;
}

.left-panel {
  grid-area: left-panel;
}

.right-panel {
  grid-area: right-panel;
  overflow: hidden;
}

.logo-container {
  width: 100%;
  height: 100%;
  background-color: var(--card-primary-color);
  position: relative;
}

.info-container {
  display: flex;
  flex-direction: column;
}

.border-top {
  height: 10px;
  margin-bottom: 5px;
  background-color: var(--card-primary-color);
}

.border-bottom {
  height: 10px;
  margin-top: 5px;
  background-color: var(--card-primary-color);
}

.info-section {
  background-color: var(--card-secondary-color);
  color: var(--text-secondary-color);
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 5px 0;
  position: relative;
}

.name-info {
  padding-left: 30px;
}

.name-info > .name {
  color: var(--text-primary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.info-section > a > span {
  padding-left: 30px;
}

a {
  color: var(--text-secondary-color);
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.with-icon {
  display: grid;
  grid-template-columns: 45px 1fr;
  min-height:58px;
  line-height: 38px;
}

.with-icon > div:first-child {
  background-color: #299ac9;
  margin: 5px 5px 5px 0;
  color: #dfdfdf;
}

.center {
  display: grid;
  place-items: center;
}

.logo {
  width: 200px;
}

.logo > .image {
  text-align: center;
}

.logo > .sub {
  font-size: 0.7rem;
  color: var(--text-primary-color);
  text-align: right;
  margin-top: -5px;
}

.responsive {
  width: min(50vw, 170px);
}

.shadow:hover {
  transition: 0.3s;
}

.shadow:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}


@media (min-width: 600px) {
  .main-container {
    display: grid;
    place-items: center;
    height: 100%;
  }

  .wrapper {
    width: 700px;
    height: 205px;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left-panel right-panel";
  }

  .reset-skew {
    display: block;
    transform: skewX(-10deg);
  }

  .info-container {
    transform: skewX(10deg);
    position: absolute;
    width: 100%;
    left: 25px;
  }

  .logo-container::after {
    content: "";
    background-color: #299ac9;
    position: absolute;
    right: -20px;
    top:0;
    bottom:-1px;
    width: 50px;
    transform: skewX(10deg);
  }

  .card {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: 0.3s;
    transform-style: preserve-3d;
    border-radius: 4px;
    overflow: hidden;
  }

  .card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  }

}