@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.menu {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #213329;
  z-index: 9998;
  padding: 2rem;
  padding-top: calc(80px + 2rem);
}
.menu.open {
  display: flex;
}
.menu.close {
  display: none;
}
.menu * {
  color: #ffffff;
  font-size: 1rem;
}
.menu li {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.menu li div {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  z-index: 1000;
  font-size: 1.2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
.header img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger-menu {
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.header .hamburger-menu .open.open-icon {
  display: flex;
}
.header .hamburger-menu .open.close-icon {
  display: none;
}
.header .hamburger-menu .close.open-icon {
  display: flex;
}
.header .hamburger-menu .close.close-icon {
  display: none;
}
.header .header-primary-ul {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 100px;
}
.header .header-primary-ul .header-primary-li {
  list-style: none;
  width: auto;
  min-width: 130px;
  height: 100%;
  position: relative;
  padding: 1rem;
}
.header .header-primary-ul .header-primary-li .header-primary-a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.header .header-primary-ul .header-secondary-ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  padding: 1rem;
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 999;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.3);
}
.header .header-primary-ul .header-secondary-ul .header-secondary-li {
  list-style: none;
  padding: 0.5rem 0;
}
.header .header-primary-ul .header-primary-li:hover + .header-secondary-ul,
.header .header-primary-ul .header-secondary-ul:hover {
  display: flex;
}

@media only screen and (max-width: 550px) {
  .header .header-primary-ul {
    display: none;
  }
  .header {
    justify-content: space-between;
  }
  .header a {
    order: 1;
  }
  .header a img {
    height: 40px;
  }
  .header .hamburger-menu {
    order: 2;
    display: flex;
    width: 100px;
    height: 100%;
  }
}
@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 4rem;
  padding-bottom: 2rem;
  background-color: #213329;
}
.footer .footer-top {
  width: 90%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ffffff;
}
.footer .footer-top .footer-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 4rem;
  width: auto;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.footer .footer-top .footer-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer .footer-top .footer-slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.footer .footer-top .footer-slogan h2 {
  font-weight: normal;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}
.footer .footer-top .footer-slogan img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-middle {
  width: 90%;
  padding: 0 1rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ffffff;
}
.footer .footer-middle ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-middle ul a {
  color: #ffffff;
}
.footer .footer-middle ul li {
  list-style: none;
}
.footer .footer-middle ul li ul {
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-bottom p {
  color: #ffffff;
}

@media only screen and (max-width: 1200px) {
  .footer .footer-top .footer-slogan img {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 1100px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 4rem;
    height: auto;
  }
  .footer .footer-top .footer-image {
    width: 100%;
    aspect-ratio: auto;
  }
  .footer .footer-top .footer-image img {
    max-width: 200px;
  }
  .footer .footer-top .footer-slogan {
    width: 100%;
    min-height: 200px;
    padding: 2rem;
    order: 1;
  }
  .footer .footer-top .footer-slogan h2 {
    font-size: 2rem;
  }
  .footer .footer-top .footer-slogan img {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .footer {
    padding: 4rem 2rem;
  }
}
@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.content {
  margin-top: 80px;
  width: 100%;
}
.content .partners {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  gap: 1rem;
}
.content .partners .page-title {
  width: 100%;
  height: 80px;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.content .partners .partner-block {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.4);
  background-color: #f7f7f7;
}
.content .partners .partner-block:nth-child(odd) {
  flex-direction: row-reverse;
}
.content .partners .partner-block img {
  width: 150px;
  border-radius: 10px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.4);
}
.content .partners .partner-block .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  padding-right: 2rem;
  position: relative;
}
.content .partners .partner-block .left h2 {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600;
}

@media only screen and (max-width: 800px) {
  .content .partners {
    padding: 2rem;
    gap: 4rem;
  }
  .content .partners .partner-block {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 2rem;
    padding: 1rem;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: none;
  }
  .content .partners .partner-block img {
    width: 100%;
    height: 200px;
    padding: 2rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  .content .partners .partner-block:nth-child(odd) {
    flex-direction: column;
  }
}/*# sourceMappingURL=whoAmI.resume.css.map */