body {
  overflow-x: hidden;
}


body, html {
  scroll-behavior: smooth;
  /* -ms-overflow-style: none;  IE and Edge */
  /* scrollbar-width: none;  Firefox */
  z-index: 1;
}

html {
  /* overflow: scroll; */
  }
  ::-webkit-scrollbar {
  width: 0px;
  }

a{
  text-decoration: none;
  color: inherit;
  /* text-align: center; */
}

a:focus:hover{
  text-decoration: none;
  color: inherit;
  text-align: center;
}

div p{
  /* margin: 6px; */
  /* line-height: 2px; */
  padding: 0;
  border: 0;
}

.transition-fade {
  opacity: 1;
  transition: 400ms;
  transform: translateX(0);
  transform-origin: left;
}

html.is-animating .transition-fade {
  opacity: 1;
  transform: translateX(100%);
}

html.is-leaving .transition-fade {
  opacity: 0;
  transform: translateX(0);
}

.transition-swipe {
  transition: 400ms;
  transform: translateY(0);
}

html.is-animating .transition-swipe {
  transform: translateY(100px);
}

/* ----------------------------------- */

* {
  box-sizing: border-box;
}

.home-text-container {
    width: 60vw;
}

body {
  margin: 0px;
  font-family:'Montserrat', sans-serif;
}

.nav {
  height: 12vh;
  width: 100%;
  display: flex;
  background-color: #e8e8e87a;
  box-shadow: 0px 2px 12px 3px rgb(0 0 255 / 20%);
  position: fixed;
  z-index: 100;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  padding: 0 4vw;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  color: #0b0000;
  padding: 10px 10px 10px 10px;
  align-items: center;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: large;
  color: #000000;
}

.nav > .nav-links > a:hover {
  background-color: rgb(218 205 205 / 26%);
}

.nav > #nav-check {
  display: none;
}

#navbar {
  top: 0; /* Stay on top */
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
}

@media (max-width:600px) {
  .nav > .nav-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .nav > .nav-btn > label {
    display: flex;
    height: 50px;
    padding: 13px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #ffffffde;
    height: 0px;
    transition: all 0.3s ease-in;
    /* overflow-y: hidden; */
    top: 12vh;
    left: 0px;
    z-index: 1000;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    padding: 24px 46px;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 12vh);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ------------------------------------------ */

.home-container{
  width: 100%;
  /* height: 84vh; */
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0;
}

.home-image-container{
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-text-container{
  width: 50vw;
  height: 100%;
  display: flex;
  padding: 0 10vw 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* ------------------------------------------ */

.about-text-container{
  width: 50vw;
  height: 84vh;
  display: flex;
  padding: 0 10vw 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-scroll{
  overflow: scroll;
  /* height: 100%; */
}
.about-scroll::-webkit-scrollbar {
  width: 4px;
}


/* ----------------------------------------- */

.cards-container{
  width: 100%;
  /* height: 84vh; */
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 4vw;
}

.card-container{
  width: 600px;
  height: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: #ffffffde;
  box-shadow: 0px 2px 6px 2px rgb(0 0 255 / 20%);
  margin-bottom: 6vh;
  /* padding: 2vh; */
  /* box-shadow: 0px 0px 4px #888888; */
}

.card-image-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.card-image{
  width: 300px;
  height: 300px;
  border-radius: 0;
}

.card-text-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4vh 2vh;
}

.name{
  font-size: 2rem;
  font-weight: 500;
  color: #0b0000;
  width: inherit;
  text-align: center;
}
.specifics{
  margin-top: 2vh;
  color: #0b0000;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: inherit;
  flex-wrap: nowrap;
}

.card-specifics-title{
  font-size: 18px;
  font-weight: 600;
  color: #0b0000;
}

.profile-btn{
  width: 8rem;
  height: 3rem;
  color: white;
  font-size: large;
  border: 0;
  margin-top: 2vh;
  border-radius: 10px;
  background: #4aafff;
  cursor: pointer;
}

/* ------------------------bouncing arrow ------------------------ */

.arrow {
  text-align: center;
  margin: 8% 0;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* ------------footer -------------- */

.footer_container{
  background-color: rgb(22 30 38);
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 4vh 4vw 4vh 10vw;
  align-content: flex-start;
}

.footer-div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* flex-wrap: nowrap; */
  align-content: center;
  align-items: flex-start;
}