.buildingInfo > div:nth-child(2) {
  width: 75%;
}

.buildingInfo input[type=text], .buildingInfo select, .buildingInfo input[type=email] {
  border: none;
  border-radius: 0;
  background: #FFF;
  color: var(--mainColor);
  outline: none;
  padding: 0.2em 0.5em;
  line-height: 1.2rem;
  height: 2em;
}

.buildingInfo select {
  border: solid 1px var(--mainColor);
}

.topNav p {
  display: flex;
  justify-content: space-between;
}

.topNav p input {
  width: 45%;
}

#id_description {
  width: 100%;
  border: none;
  height: 6em;
  resize: none;
  padding: 0.2em 0.5em;
}

.buildingInfo button {
  border: none;
  border-radius: 0;
  background: var(--textColor);
  color: #FFF;
  padding: 0.5em 4.5em;
}

.btns {
  display: flex;
  justify-content: space-evenly;
}

input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.agree {
  font-size: 0.75rem;
}

.agree {
  display: flex;
  align-items: center;
  height: 1.6em;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 1em;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: none;
  border: solid 1px var(--mainColor);
}

/* On mouse-over, add a grey background color */
.agree:hover input ~ .checkmark {
  background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.agree input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.agree .checkmark:after {
  left: 6px;
  top: -1px;
  width: 8px;
  height: 18px;
  border: solid var(--textColor);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .buildingBanners > div h1 {
    font-size: 1.8rem;
  }
  .buildingBanners > div {
    margin: 1em;
  }
  .articles article .caseImg  {
    width: 392px;
    height: 206.5px;
  }
  .buildingInfo > .right, .lectureInfo > .right {
    width: 392px;
  }
}

@media screen and (max-width: 850px) {
  .buildingBanners > div h1 {
    font-size: 1.5rem;
  }
  .buildingBanners > div {
    margin: 0.8rem;
  }
  .buildingBanners > div h2 {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  .articles article .caseImg  {
    width: 313.6px;
    height: 162.5px;
  }
  .buildingInfo > .right, .lectureInfo > .right {
    width: 313.6px;
  }
}

@media screen and (max-width: 750px) {
  .buildingBanners > div h1 {
    font-size: 3rem;
  }
  .buildingBanners > div h2 {
    font-size: 2rem;
  }
  .buildingBanners img {
    content: url('../../main/img/bn/bn06.jpg');
  }
}

@media screen and (max-width: 500px) {
  .agree {
    height: 4em;
  }
  .decoration {
    display: none;
  }
  .buildingInfo {
    flex-direction:unset !important; 
  }
  .buildingInfo > div:nth-child(2) {
    width: 100%;
  }
}