/*! Coded by Von Miones */
* {
  font-family: "Poppins";
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  background-image: linear-gradient(rgba(35, 35, 45, 0.8), rgba(35, 35, 45, 0.9)), url("images/mountain.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  color: beige;
  overflow: hidden;
}

.main {
  padding: 20px;
  max-height: 100vh;
  height: 100vh;
}
.main .main-wrapper {
  width: 1024px;
  background-color: rgba(35, 35, 45, 0.3);
  margin: 0 auto;
}
.main .flex {
  /*! Flex Class */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 80vh;
  margin-top: 2rem;
}
.main .flex .gap .gap-2px {
  gap: 2px;
}
.main .flex .gap .gap-5px {
  gap: 5px;
}
.main .flex .gap .gap-10px {
  gap: 10px;
}
.main .flex .gap .gap-15px {
  gap: 15px;
}

/*! Sidebar */
.sidebar {
  background-color: rgba(35, 35, 45, 0.85);
  width: 200px;
}
.sidebar .profile-pic-wrapper {
  background-color: orange;
  width: 200px;
  height: 160px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-basis: content;
  flex-flow: column;
  margin: 0 auto;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sidebar .profile-pic-wrapper .profile-pic {
  height: 190px;
  position: absolute;
  margin-top: -30px;
  width: 200px;
  background-repeat: no-repeat;
  background-size: 220px;
  background-position: center;
  z-index: 90;
}
.sidebar .profile-pic-wrapper:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0px 5px 5px #303030;
}
.sidebar .profile-info {
  text-align: center;
}
.sidebar .profile-info p {
  font-size: 8pt;
  line-height: 10pt;
  padding: none;
  margin: 0;
}
.sidebar .contact-info {
  text-align: center;
}
.sidebar .contact-info p {
  font-size: 8pt;
  line-height: 10pt;
  padding: none;
  margin: 0;
}
.sidebar .menu {
  margin: 0;
  padding: 0;
  font-size: 12pt;
  width: 100%;
}
.sidebar .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar .menu ul li {
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 10px;
  color: #222;
  background-color: rgb(255, 165, 0);
  list-style: none;
}
.sidebar .menu ul li:hover {
  color: beige;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: rgb(255, 106, 0);
}
.sidebar .menu ul li:hover a {
  color: beige;
}
.sidebar .menu ul li a {
  text-decoration: none;
  color: #222;
}
.sidebar .menu ul li a:visited {
  color: #222;
}
.sidebar .menu ul li a:active {
  color: #222;
}
.sidebar .menu ul li a:hover {
  color: beige;
}

.spacer {
  display: block;
  height: 30px;
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  flex-flow: row;
  flex-basis: 0;
}

h5 {
  font-size: 11pt;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.content {
  background-color: rgba(35, 35, 45, 0.5);
  padding: 20px;
  width: calc(100% - 200px);
  overflow-x: hidden;
  max-height: 80vh;
}
.content .content-title {
  text-shadow: 2px 3px 2px rgb(0, 0, 0), -1px 3px 0px rgb(0, 0, 0), -1px 0px 0px rgb(0, 0, 0), 1px 0px 0px rgb(0, 0, 0), -1px 5px 0px rgb(0, 0, 0), 15px -7px 3px rgba(0, 0, 0, 0), 3px 5px 0px rgb(0, 0, 0), 0px 7px 5px rgb(0, 0, 0), 0px 7px 16px rgb(0, 0, 0);
  font-size: 20pt;
  font-weight: 900;
  font-style: italic;
}
.content div.cards {
  background-color: rgba(35, 35, 45, 0.7);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 8pt;
  height: 270px;
  width: 220px;
  padding: 20px;
  color: rgba(245, 245, 220, 0.3);
}
.content div.cards:hover {
  color: rgb(245, 245, 220);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.content .centerered-content {
  margin: 0 auto;
}
.content .content-wrapper {
  font-size: smaller;
}
.content .content-wrapper .flex {
  max-height: 50vh;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  flex-flow: row;
  flex-basis: 0;
  flex-wrap: wrap;
}
.content .content-wrapper .flex div.cards {
  margin: 5px;
}
.content .content-wrapper .flex div.cards p {
  text-align: justify;
}
.content .content-wrapper .flex div.cards:hover {
  color: rgb(245, 245, 220);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.content .content-wrapper .gap-10 {
  gap: 10px;
}
.content .content-wrapper .gap-20 {
  gap: 20px;
}
.content .content-wrapper .gap-30 {
  gap: 30px;
}
.content .content-wrapper .gap-40 {
  gap: 40px;
}

.justify-center {
  justify-content: center;
  align-items: center;
}

.break-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20pt;
  font-weight: bolder;
}
.break-title .break-title-content {
  padding: 5px;
}
.break-title .left-break-line {
  width: 200px;
  height: 1px;
  background-color: #dc5800;
}
.break-title .right-break-line {
  width: 200px;
  height: 1px;
  background-color: #dc5800;
}

#contactForm {
  width: 400px;
  margin-top: -100px;
}

/* Theme Color Start */
.yellow-01 {
  background-color: rgb(255, 165, 0);
}

/* Theme Color End */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ffcc00 #DFE9EB;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  width: 2px;
  -webkit-transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #DFE9EB;
}

*::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #B67606;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #A3711C;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #E7961C;
}/*# sourceMappingURL=main.css.map */