body,
html {
  margin: 0px;
  height: 100%;
  font-family: "Work Sans";
  font-size: 20px;
  color: white;
  margin: auto;
  scroll-behavior: smooth;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */ }
  body ::-webkit-scrollbar,
  html ::-webkit-scrollbar {
    width: 6px; }
  body ::-webkit-scrollbar-track,
  html ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px; }
  body ::-webkit-scrollbar-thumb,
  html ::-webkit-scrollbar-thumb {
    background: #003778;
    border-radius: 10px; }
  body ::-webkit-scrollbar-thumb:hover,
  html ::-webkit-scrollbar-thumb:hover {
    background: #517aab; }

.wrap {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto; }

.header {
  height: 768px;
  display: flex;
  flex-direction: column; }
  .header .action {
    display: flex;
    padding: 48px; }
    .header .action .navbar {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      display: flex;
      margin-left: auto;
      margin-right: auto; }
      .header .action .navbar li {
        margin-right: 48px; }
        .header .action .navbar li a {
          text-decoration: none;
          color: white;
          display: inline-block;
          position: relative; }
        .header .action .navbar li a::after {
          content: "";
          position: absolute;
          width: 100%;
          transform: scaleX(0);
          height: 5px;
          bottom: 0;
          left: 0;
          background-color: #003778;
          transform-origin: bottom right;
          transition: transform 0.25s ease-out; }
        .header .action .navbar li a:hover::after {
          transform: scaleX(1);
          transform-origin: bottom left; }
  .header .thumb {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 768px;
    object-fit: cover; }
  .header .content {
    display: flex;
    flex-direction: column;
    padding: 48px;
    margin-top: auto;
    margin-bottom: auto; }
    .header .content .name {
      font-size: 46px; }
    .header .content .slogan {
      font-size: 86px;
      font-weight: bold;
      margin-top: 26px; }
    .header .content .description {
      max-width: 580px;
      margin-top: 26px; }

.body {
  color: black;
  margin-top: 56px;
  display: flex;
  justify-content: center;
  flex-direction: column; }
  .body .session:not(:first-child) {
    margin-top: 64px; }
  .body .session {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column; }
    .body .session h1 {
      margin: 0px;
      font-weight: 100;
      width: -moz-fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto; }
    .body .session p {
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      text-align: center; }
    .body .session .team {
      display: flex;
      justify-content: space-between; }
      .body .session .team img {
        width: 378px;
        height: 412px;
        object-fit: cover; }
    .body .session .card-list {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-top: 36px; }
      .body .session .card-list .card {
        width: 378px;
        height: 412px;
        border-radius: 6px;
        background-color: #003778;
        padding: 24px;
        display: flex;
        flex-direction: column;
        color: white;
        justify-content: center;
        align-items: center; }
        .body .session .card-list .card img {
          width: 122px;
          height: 122px;
          color: white; }
        .body .session .card-list .card span {
          font-size: 32px;
          margin-top: 36px;
          font-weight: bold; }
        .body .session .card-list .card p {
          margin-top: 36; }
    .body .session .photos {
      position: relative;
      display: flex; }
      .body .session .photos .mySlides {
        display: none;
        width: 100%;
        height: 809px;
        object-fit: contain; }

input::placeholder {
  color: white; }

.contact {
  background-color: #003778;
  width: 100%;
  height: 520px;
  margin-top: 250px;
  position: relative;
  display: flex; }
  .contact img {
    position: absolute;
    bottom: 0;
    left: 0; }
  .contact .contact-form {
    height: 100%;
    display: flex;
    justify-content: flex-end; }
    .contact .contact-form-wrap {
      max-width: 580px;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .contact .contact-form-wrap span {
        font-size: 46px;
        font-weight: bold; }
      .contact .contact-form-wrap .input {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 26px; }
        .contact .contact-form-wrap .input input {
          width: calc(100% - 75px);
          height: 74px;
          border: 0;
          outline: 0;
          padding: 26px;
          background: rgba(255, 255, 255, 0.2);
          color: white; }
          .contact .contact-form-wrap .input input :focus {
            outline: none !important; }
          .contact .contact-form-wrap .input input ::placeholder {
            color: white !important; }
        .contact .contact-form-wrap .input .send-btn {
          width: 74px;
          height: 74px;
          background-color: white;
          cursor: pointer;
          display: flex; }
          .contact .contact-form-wrap .input .send-btn img {
            position: relative;
            margin: auto; }

.footer {
  width: 100%;
  height: 398px;
  position: relative;
  display: flex;
  justify-content: center; }
  .footer img {
    width: 100%;
    height: 398px;
    object-fit: cover; }
  .footer .overlay,
  .footer .info {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; }
  .footer .overlay {
    background: rgba(30, 30, 30, 0.8); }
  .footer .info {
    height: auto;
    margin: 126px; }
    .footer .info span {
      font-size: 26px;
      font-weight: bold; }
  .footer .copyright {
    position: absolute;
    bottom: 12px;
    right: 12px; }
