* {
  box-sizing: border-box;
}

body,
html {
  max-width: 1920px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:visited {
  color: inherit;
}

.hide {
  visibility: hidden;
}

.loadingCalc {
  font-weight: bold;
}

.loadingCalcName {
  font-weight: bold;
}

.label {
  padding: 5px;
  font-size: 12px;
  background-color: rgba(96, 140, 177, 0.4705882353);
  border: 2px solid #F9DC5C;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  cursor: pointer;
}

.label:hover {
  background-color: #F9DC5C;
  border: 2px solid rgb(255, 255, 255);
  color: rgba(96, 140, 177, 0.4705882353);
}

.objView {
  display: flex;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9;
  position: absolute;
  top: 0;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 3%;
}

.closeBtnObjView {
  width: 40px;
  height: 40px;
  background-image: url(../img/classroom/close.png);
  color: white;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0%;
  top: 0%;
  margin: 30px;
}

.closeBtnObjView:hover {
  background-image: url(../img/classroom/cross.png);
}

.objInfo-BIG {
  width: 100%;
  margin: auto;
  position: relative;
  bottom: 0;
  background-color: rgba(96, 140, 177, 0);
  justify-content: center;
}

.objInfo {
  width: 80%;
  height: 200px;
  background-color: #ADD8E6;
  color: black;
  font-size: 24;
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  box-shadow: 3px 3px 5px #575757;
  margin: auto;
}

.nav {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: center;
  background-color: rgba(173, 216, 230, 0.3568627451);
  position: absolute;
  z-index: 6;
  bottom: 0;
  position: fixed;
}

.btn-group {
  display: flex;
  justify-content: center;
  margin: auto;
}

.btn {
  border-radius: 30px;
  text-align: center;
  font-size: 20px;
  padding: 15px 20px;
  margin-right: 30px;
  box-shadow: 1px 1px 5px #575757;
  opacity: 0.9;
  cursor: pointer;
  background-color: #fff;
  font-weight: bold;
}

.btn:hover,
.btn:focus {
  background-color: #f9dc5c;
  box-shadow: 5px 5px 10px #b4b4b4;
  transition: 1s;
  transform: translateY(-5px);
  font-size: 20px;
}

.Classroom-name {
  width: 15%;
  margin: 20px;
  padding: 30px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  background-color: #608CB1;
  display: flex;
  font-weight: bold;
  color: #ffffff;
  justify-content: center;
  align-items: center;
}

.Classroom-introduce {
  width: 70%;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0);
}

.objcurriculum {
  display: flex;
  text-align: center;
  width: 85%;
  background-color: #ffffff;
  padding: 3%;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.curriculum {
  width: 15%;
  margin: 20px;
  padding: 30px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 24px;
  background-color: #608CB1;
  display: flex;
  justify-content: center;
}

.curriculumBtn {
  width: 100px;
  margin: auto;
  font-size: 20px;
  padding: 20px;
  background-color: #F9DC5C;
  border-radius: 10px;
  border-style: none;
  cursor: pointer;
  color: #575757;
  font-weight: bold;
}

.curriculumBtn:hover {
  box-shadow: 0 0 10px #fff;
}

.objCanvas {
  width: 50%;
  height: 50%;
  margin: auto;
  position: relative;
  display: block;
}

.col-3 {
  width: 100%;
  height: 30%;
  margin-bottom: 20px;
  background-color: #608CB1;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}

.col-4 {
  width: 100%;
  height: 70%;
  font-size: 15px;
  margin: auto;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  text-align: justify;
  letter-spacing: 1px;
  color: #575757;
}

canvas {
  margin: auto;
  background-color: rgba(55, 103, 80, 0);
  position: relative;
}

.curriculumInformation {
  text-align: center;
}
.curriculumInformation img {
  width: 60%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  margin: auto;
  z-index: 10;
}

.closeBtnCurriculumInformation {
  width: 40px;
  height: 40px;
  background-image: url(../img/classroom/close.png);
  color: white;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}

.closeBtnCurriculumInformation:hover {
  background-image: url(../img/classroom/cross.png);
}

.logo {
  position: absolute;
  animation: logo 0.8s infinite;
  top: 0;
  left: 15px;
  z-index: 5;
}
.logo img {
  width: 200px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .logo img {
    width: 180px;
  }
}
@media (max-width: 768px) {
  .logo img {
    width: 150px;
  }
}
@media (max-width: 1400px) {
  .objView {
    display: flex;
    margin: auto;
  }
  .objcurriculum {
    display: flex;
  }
  .curriculumInformation {
    width: 80%;
    margin: auto;
  }
  .curriculumInformation img {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .objCanvas {
    width: 60%;
  }
  .objcurriculum {
    display: flex;
    justify-content: center;
  }
  .curriculumInformation {
    width: 85%;
  }
  .curriculumInformation img {
    width: 100%;
  }
  .col-1,
  .col-3 {
    font-size: 16px;
  }
  .col-4 {
    font-size: 14px;
  }
  .curriculumBtn {
    width: 80px;
    font-size: 16px;
  }
}
@media (max-width: 1080px) {
  .objCanvas {
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .objInfo-BIG {
    width: 100%;
  }
  .objcurriculum {
    width: 85%;
    display: flex;
    margin: auto;
    justify-content: center;
  }
  .objcurriculum .curriculumInformation {
    width: 100%;
  }
  .objcurriculum .curriculumInformation img {
    width: 85%;
  }
  .objcurriculum .col-1,
  .objcurriculum .col-3 {
    font-size: 14px;
  }
  .objcurriculum .col-4 {
    font-size: 12px;
  }
  .objcurriculum .curriculumBtn {
    width: 80px;
    font-size: 14px;
  }
}
@media (max-width: 930px) {
  .objView {
    display: flex;
    margin: auto;
  }
  .objCanvas {
    width: 70%;
  }
  .objInfo-BIG {
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .objcurriculum {
    transform: translate(-50%, -80%);
  }
  .objInfo {
    display: none;
  }
  .objInfoPhone {
    text-align: center;
    width: 100px;
    height: 50px;
    line-height: 50px;
    border-radius: 20px;
    background-color: #F9DC5C;
    display: block;
    cursor: pointer;
  }
}
@media (max-width: 426px) {
  .closeBtnCurriculumInformation {
    top: -55%;
  }
}
@keyframes logo {
  0% {
    transform: translateY(10px);
  }
  20% {
    transform: translateY(5px);
  }
  40% {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #608cb1;
  z-index: 10;
  opacity: 1;
}
.loading .loadingbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .loadingbox .cubeGrid {
  width: 350px;
  height: 100px;
  background-image: url(../img/LOGO.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0;
}
.loading .loadingbox .cubeGrid .cube {
  width: 33.3%;
  height: 33.3%;
  background-color: #608cb1;
  float: left;
  animation: cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.loading .loadingbox .cubeGrid .cube1 {
  animation-delay: 0.2s;
}
.loading .loadingbox .cubeGrid .cube2 {
  animation-delay: 0.3s;
}
.loading .loadingbox .cubeGrid .cube3 {
  animation-delay: 0.4s;
}
.loading .loadingbox .cubeGrid .cube4 {
  animation-delay: 0.1s;
}
.loading .loadingbox .cubeGrid .cube5 {
  animation-delay: 0.2s;
}
.loading .loadingbox .cubeGrid .cube6 {
  animation-delay: 0.3s;
}
.loading .loadingbox .cubeGrid .cube7 {
  animation-delay: 0s;
}
.loading .loadingbox .cubeGrid .cube8 {
  animation-delay: 0.1s;
}
.loading .loadingbox .cubeGrid .cube9 {
  animation-delay: 0.2s;
}
@keyframes cubeGridScaleDelay {
  0%, 70%, 100% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.loading .loadingbox .loadingCalcBox {
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  line-height: 100px;
  font-weight: bold;
}
.loading .loadingbox .loadingCalcBox .loadingBar {
  width: 306px;
  height: 36px;
  border: 3px solid rgb(73, 67, 67);
  border-radius: 5px;
  margin: auto;
}
.loading .loadingbox .loadingCalcBox .loadingBar .loadingBarColor {
  width: 0px;
  height: 30px;
  background-color: #F9DC5C;
  border-radius: 2px;
}

@media (max-width: 1025px) {
  .loading .loadingbox .cubeGrid {
    width: 250px;
    height: 100px;
  }
  .loading .loadingbox .cubeGrid .cube {
    width: 30%;
    height: 30%;
  }
  .loading .loadingbox .loadingCalcBox {
    font-size: 32px;
  }
}
@media (max-width: 376px) {
  .loading .loadingbox .cubeGrid {
    width: 200px;
    height: 80px;
  }
  .loading .loadingbox .loadingCalcBox {
    font-size: 24px;
  }
  .loading .loadingbox .loadingCalcBox .loadingBar {
    width: 250px;
  }
}/*# sourceMappingURL=watch8thfloor.css.map */