@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
body {
  margin: 0;
  background-color: #f1f3f5;
}

* {
  font-family: "Open Sans", sans-serif;
}

nav {
  background-color: #49669b;
}
nav .nav-items {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}
nav .nav-items .nav-item {
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 5px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 730px) {
  nav .nav-items .nav-item {
    font-size: 12px;
  }
}
nav .nav-items .nav-item .logo {
  border-radius: 5px;
  background-color: white;
  font-weight: bold;
  color: #49669b;
  padding: 10px 15px;
}
nav .nav-items .search {
  width: 500px;
  max-width: 50%;
}
@media screen and (max-width: 730px) {
  nav .nav-items .search {
    width: 200px;
  }
}
nav .nav-items .search .input-field {
  display: flex;
  background-color: white;
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
}
nav .nav-items .search .input-field input {
  padding: 8px 10px;
  border: none;
  width: 100%;
}
nav .nav-items .search .input-field input:focus {
  outline: none;
}
nav .nav-items .search .input-field .search-icon {
  padding: 5px;
}

.header {
  height: 400px;
  position: relative;
  max-width: 1100px;
  margin: 30px auto;
  margin-bottom: 0;
  background-image: url(./bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 699px) {
  .header {
    margin-top: 0;
  }
}
.header .profile .profile-row .left-bottom {
  position: absolute;
  left: 0px;
  bottom: 0px;
  display: flex;
}
.header .profile .profile-row .content {
  margin-top: auto;
  margin-bottom: 20px;
  margin-left: 20px;
  color: white;
}
.header .profile .profile-row .content .name {
  font-size: 20px;
}
@media screen and (max-width: 699px) {
  .header .profile .profile-row .content .name {
    font-size: 14px;
  }
}
.header .profile .profile-row .content .summary {
  font-size: 14px;
}
@media screen and (max-width: 699px) {
  .header .profile .profile-row .content .summary {
    font-size: 12px;
  }
}
.header .profile .profile-row .profile-icons {
  display: flex;
  right: -20px;
  bottom: 10px;
  position: absolute;
}
@media screen and (max-width: 1130px) {
  .header .profile .profile-row .profile-icons {
    right: 0;
  }
}
@media screen and (max-width: 699px) {
  .header .profile .profile-row .profile-icons {
    top: 0;
    flex-direction: column;
  }
}
.header .profile .profile-row .profile-icons .icon {
  margin: 5px;
  padding: 8px 20px;
  background-color: white;
  border-radius: 7px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #55678a;
  font-weight: bold;
  transition: transform 30ms;
  text-align: center;
}
@media screen and (max-width: 699px) {
  .header .profile .profile-row .profile-icons .icon {
    padding: 10px;
    font-size: 12px;
  }
}
.header .profile .profile-row .profile-icons .icon:active {
  transform: scale(0.93);
}
.header .profile .profile-row .image {
  margin-left: 30px;
  margin-bottom: -30px;
  width: 150px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 699px) {
  .header .profile .profile-row .image {
    margin-left: 0;
    margin-bottom: 0;
    width: 100px;
  }
}
.header .profile .profile-row .image img {
  display: block;
  width: 100%;
}

.lower-nav {
  display: flex;
  max-width: 1100px;
  margin: auto;
  background-color: white;
  padding: 10px;
  box-sizing: border-box;
  padding-left: 210px;
}
@media screen and (max-width: 699px) {
  .lower-nav {
    padding-left: 0;
    justify-content: center;
    font-size: 12px;
  }
}
.lower-nav .lower-nav-item {
  font-weight: bold;
  color: #485b70;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
}
@media screen and (max-width: 699px) {
  .lower-nav .lower-nav-item {
    font-size: 14px;
  }
}

.profile-content .popup {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(89, 120, 167, 0.459);
  display: none;
}
.profile-content .popup svg {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  cursor: pointer;
  fill: white;
}
.profile-content .popup img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  max-width: 900px;
  border-radius: 5px;
  border: 3px solid #1593db;
  display: block;
}
.profile-content .columns {
  max-width: 1100px;
  margin: 80px auto;
  display: flex;
}
@media screen and (max-width: 699px) {
  .profile-content .columns {
    flex-direction: column;
    padding: 20px;
  }
}
.profile-content .columns .column-left {
  max-width: 500px;
  margin-right: 20px;
  width: 45%;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .column-left {
    width: 100%;
    margin: auto;
    max-width: unset;
  }
}
.profile-content .columns .column-right {
  width: 50%;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .column-right {
    width: 100%;
    margin: auto;
  }
}
.profile-content .columns .column-right .post {
  background-color: white;
  padding: 20px;
  margin: 20px 0;
  margin-top: 0;
}
.profile-content .columns .column-right .post .post-header {
  display: flex;
  padding: 10px 0;
  padding-bottom: 0;
}
.profile-content .columns .column-right .post .post-header .poster {
  color: #49669b;
  font-weight: bold;
  margin-right: 5px;
}
.profile-content .columns .column-right .post .post-header .post-sub {
  font-size: 14px;
  color: gray;
  margin-top: auto;
  line-height: 1.5;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .column-right .post .post-header .post-sub {
    font-size: 12px;
  }
}
.profile-content .columns .column-right .post .post-image {
  margin: 15px 0;
  border: 1px solid rgba(79, 84, 87, 0.123);
  padding: 5px;
  cursor: pointer;
}
.profile-content .columns .column-right .post .post-image img {
  width: 100%;
  display: block;
}
.profile-content .columns .column-right .post .post-image .post-image-info {
  margin: 10px 0;
  padding: 10px 15px;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .column-right .post .post-image .post-image-info {
    font-size: 14px;
  }
}
.profile-content .columns .column-right .post .post-image .post-image-info .post-image-title {
  color: #49669b;
  font-weight: bold;
}
.profile-content .columns .column-right .post .post-image .post-image-info .post-image-text {
  color: #5d6679;
}
.profile-content .columns .column-right .post .time-stamp {
  font-size: 12px;
  color: gray;
}
.profile-content .columns .column-right .post .post-buttons {
  display: flex;
}
.profile-content .columns .column-right .post .post-buttons .button {
  padding: 10px;
  font-weight: bold;
  color: gray;
  font-size: 14px;
  cursor: pointer;
}
.profile-content .columns .section {
  background-color: white;
  margin: 20px 0;
  margin-top: 0;
  padding: 20px;
}
.profile-content .columns .section .section-title {
  font-weight: bold;
  color: #55678a;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .section .section-title {
    font-size: 12px;
  }
}
.profile-content .columns .section p {
  margin: 0;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .section p {
    font-size: 12px;
  }
}
.profile-content .columns .gallery .gallery-images {
  text-align: center;
}
.profile-content .columns .gallery .gallery-images .gallery-image {
  width: 200px;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  margin: 10px;
}
@media screen and (max-width: 699px) {
  .profile-content .columns .gallery .gallery-images .gallery-image {
    width: 150px;
  }
}
.profile-content .columns .gallery .gallery-images .gallery-image img {
  display: block;
  width: 100%;
}

/*# sourceMappingURL=app.css.map */
