/* video section css */
.videosection {
  border: var(--stdborder3);
  color: var(--whitecolor);
  padding: 200px 0px 90px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.videodiv {
  border: var(--stdborder1);
  width: 40vw;
  overflow: hidden;
  border-radius: 5vw;
  position: relative;
  z-index: 2;
  transition: all 1s ease;
  position: relative;
  box-shadow: 0px 0px 20px 5px var(--scolor)
}
.videodiv video {
  width: 100%;
}
.videodiv:hover {
  transform: scale(1.02);
}
.videoinfodiv {
  border: var(--stdborder2);
  background: var(--bgcolor2);
  font-size: var(--stdfontsize2);
  max-width: 700px;
  border-radius: 10px 40px 40px 10px;
  padding: 20px 10px;
  position: relative;
  z-index: 1;
}
.videotitle {
  padding: 1vw 0vw 2vw 0vw;
  font-size: var(--stdfontsize3);
  color: var(--scolor2);
  font-weight: bolder;
}
.videonote {
    color: #696666;
    padding: 10px 0px;
}
.videonote a {
    color: #696666;
}

.otherproject{
  color: var(--whitecolor);
  padding: 2vw 6vw;
  font-size: var(--stdfontsize3);
  border-bottom: var(--bottomborder);
  width: 90vw;
  text-align: center;
  margin: auto;
}
.videosection p {
    word-spacing: 3px;
}
/* responsiveness css */
@media screen and (max-width: 1500px) {
  .videosection {
    padding: 140px 0px 90px 0px;
  }
  .videotitle {
    padding: 1vw 0vw 2vw 0vw;
    font-size: var(--stdfontsize2);
  }
  .videoinfodiv {
    font-size: 1.3em;
    width: 45vw;
  }
}
@media screen and (max-width: 1070px) {
  .videotitle {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 908px) {
  .videosection {
    flex-direction: column-reverse;
  }
  .videodiv {
    width: 60vw;
  }
  .videoinfodiv {
    border-radius: 18px;
    width: 85vw;
    text-align: center;
  }
}
@media screen and (max-width: 620px) {
  .videodiv {
    width: 80vw;
  }
  .videoinfodiv {
    font-size: 3.5vw;
  }
}
