@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

:root {
  --accent-blue: #0968c8;
  --accent-blue-dark: #025fbb;
  --grey-text: #313131;
  --lightgrey-text: #717171;
  --body-grey: #f2f2f2;
  --link: #0076ec;
  --lightblue-circle: #b9dcff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
  overflow-x: hidden;
}

html,
body {
  background-color: var(--body-grey);
  width: 100vw;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Utility Classes */
.text-white {
  color: #fff;
}

._2rem {
  font-size: 2rem;
}

.nav-text-thin {
  font-weight: 300;
  font-size: 15px;
}

.grey-text {
  color: #313131;
}

.grey-text-sm {
  color: var(--lightgrey-text);
  font-size: 0.7rem;
  text-decoration: none;
}

a.grey-text-sm:hover {
  text-decoration: underline;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.action-link {
  color: var(--link);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 15px 20px;
  overflow-y: none;
  overflow-x: none;
}


/* .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
} */


/* ./utility-classes end */

/* NAVBAR */

.navbar {
  height: 8vh;
  width: 100%;
  max-height: 50px;
  background-color: var(--accent-blue);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.navbar ul li {
  height: 100%;
}

.nav-col-left,
.nav-col-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  list-style: none;
  flex-wrap: wrap;
  overflow-y: hidden;
}

.nav-dropdown-button li {
  display: block;
}

.nav-dropdown-button {
  width: 100%;
  background-color: #fff;
  color: #000;
  position: absolute;
  z-index: 999;
  display: none;
}

.nav-button {
  margin: 0 0.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0.5rem;
}

.nav-button i {
  margin-left: 5px;
}

.nav-profile-circle img {
  border: 2px solid #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.nav-button:hover {
  background-color: var(--accent-blue-dark);
}

/* MAIN */

/* MAIN > TOP SECTION */
.main-top-section {
  margin-top: 8vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* MAIN > TOP > PROFILE SECTION */
.top-profile-section {
  display: flex;
  flex-direction: row;
}

.top-profile-section>.top-profile-info-section {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0 1rem;
}

.top-profile-info-section>.profile-name {
  color: var(--grey-text);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
}

.top-profile-info-section>.profile-mail {
  color: var(--lightgrey-text);
  text-decoration: none;
  font-size: 0.8rem;
}

.top-profile-info-section>.profile-name:hover {
  text-decoration: underline;
}

.top-profile-info-section>.profile-mail:hover {
  color: var(--link);
  text-decoration: underline;
}

.top-profile-section img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

/* MAIN > TOP > ACTION SECTION */
.top-actions-section {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;

}

.action {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 2rem;
  cursor: pointer;
}

.action:hover {
  color: var(--link);
}


.action-circle {
  height: 2.5rem;
  width: 2.5rem;
  /* border-radius: 50%; */
  shape-outside: circle();
  clip-path: circle();
  background-color: var(--lightblue-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 20px;
  margin: 10px;
}

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

.action-title {
  font-size: 0.8rem;
  font-weight: 500;
}

.action-category {
  color: var(--lightgrey-text);
  font-size: 0.8rem;
}

/* ROWS SECTION */
.rows-section {
  display: flex;
  flex-direction: column;
  margin: 6vh 0;
}

.row-card {
  width: 100%;
  background-color: #fff;
  border-radius: 7px;
  margin-bottom: 3px;
  padding: 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  flex-direction: row;
  align-items: center;
  border-right: 2px solid #e7e7e7;
  border-bottom: 2px solid #e7e7e7;
}

.row-card:hover {
  background-color: #e4e4e4;
  cursor: pointer;
}

.row-card-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-height: 66px;
  justify-content: space-between;
  overflow-y: hidden;
}


.row-card-head-icon i,
.row-card-head-action i {
  color: var(--link);
  font-size: 1.2rem;
  margin: 0 1rem;
  text-shadow: 3px 5px 14px rgba(0, 0, 0, 0.1);
}

.row-card-head-info {
  display: flex;
  flex-direction: column;
}

.row-card-title {
  font-weight: 500;
  font-size: 0.9rem;
  /* margin-bottom: 5px; */
}

/* COLUMNS SECTION */
.columns-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.column-card {
  height: 424px;
  width: auto;
  min-width: 244px;
  max-width: 288px;
  background-color: #fff;
  border-radius: 7px;
  /* margin-bottom: 3px; */
  margin: 5px;
  /* padding: 0.5rem 0.5rem; */
  display: flex;
  flex-direction: column;
  border-right: 2px solid #e7e7e7;
  border-bottom: 2px solid #e7e7e7;
}

.column-card-body {
  border-top: 1px solid var(--body-grey);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2rem;
}

.column-card-title p,
.column-card-body-title p {
  font-weight: 500;
  font-size: 0.9rem;
  margin: 15px 20px;
}

.column-card-body-title {
  overflow-y: none;
}

.column-card-body-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-card-body-image img {
  width: 150px;
  margin: auto auto;
  height: 100%;
}

.card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.column-card-action {
  height: 47px;
  cursor: pointer;
  border-top: 1px solid var(--body-grey);
  display: flex;
  align-items: center;
  overflow-y: none;
}

.column-card-action:hover {
  background-color: #e4e4e4;
}

/* FOOTER */

.footer-language-section {
  display: flex;
  align-items: center;
}

.footer-language-section i {
  margin: 10px;
}

.footer-links-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-item {
  margin: 0 10px;
}





main.container {
  margin: 0 auto;
  max-width: 1366px;
  width: 90%;
}

footer.container {
  margin: 10vh auto 0 auto;
  max-width: 1366px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


@media only screen and (min-width: 601px) {
  .container {
    width: 90%;
  }
}

@media only screen and (min-width: 993px) {
  .container {
    width: 70%;
  }
}

/* ./main-container end */

/* Mobile Devices only  */
@media only screen and (max-width: 600px) {
  .footer-links-section {
    justify-content: center;
  }
}

/* Tablets and Mobile*/
@media only screen and (max-width: 991px) {
  .main-top-section {
    flex-direction: column;
  }

  .top-actions-section {
    flex-direction: column;
  }

  .action-info {
    flex-direction: row;
  }

  .action-category {
    display: none;
  }
  footer.container {
    flex-direction: column;
  }
}

/* Computers and Above*/
@media only screen and (min-width: 992px) {}