body {
  height: auto;
}

section {
  height: auto;
  /* min-height: 100vh; */
  scroll-margin-top: 70px;
}

.mainNavWrap {
  position: sticky;
}

.mainNavWrap h1 {
  height: 72px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.mainNavWrap a {
  height: 100%;
  display: block;
  align-content: center;
}

.mainNavWrap a img {
  width: auto;
  max-height: 100%;
}

#home {
  min-height: 100vh;
}

#home .content {
  display: grid !important;
  grid-template-columns: 3fr 7fr;
  row-gap: 30px;
}

.outlineBtnWarap {
  grid-column: 2 / 3;
}

.title-img {
  width: 300px;
}

.title_img {
  max-width: 200px;
}

#find-school>.row,
#find-major>.row {
  width: 100%;
}

#find-school>.row>div:first-child,
#find-major>.row>div:first-child {
  position: relative;
  align-content: center;
  background: url(../img/bgDarkPattern.png) repeat center / contain;
}

#find-school>.row>div:first-child::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

#find-school .a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background-color: rgba(var(--bs-white-rgb)); */
}

#find-major .a {
  width: 100%;
  background-color: #9AD1DD;
}

#important-dates {
  min-height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  row-gap: 50px;
}

#important-dates {
  background: url(../img/bgLightPattern.png) repeat center / contain;
}

#important-dates .row {
  width: 100%;
}

#important-dates .flex-container {
  top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 10px;
}

#important-dates .flex-container .impbox {
  width: 100%;
  background-color: #fff;
}

#important-dates .flex-container .impbox h1 {
  font-weight: 700;
}

#important-dates .flex-container .impbox a {
  font-weight: 900;
}

#special-classes {
  display: block;
  background: url(../img/bgDarkPattern.png) center / cover;
}

#special-classes .title {
  position: static;
}

#special-classes .cards {
  margin: 0 auto;
}

#special-classes .cards h5 {
  text-align: left;
}

#special-classes .d-flex {
  justify-content: space-between;
}

#special-classes .d-flex i {
  position: static;
  cursor: pointer;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .outlineBtnWarap {
    grid-column: 1 / 3;
  }
}

@media (max-width: 992px) {
  .mainNavWrap {
    height: 50px;
  }

  .mainNavWrap h1 {
    height: 50px;
  }

  section {
    scroll-margin-top: 50px;
  }
}

@media (max-width: 767px) {

  #find-school>.row>div:first-child,
  #find-major>.row>div:first-child {
    background-image: none;
  }

  #find-school .a {
    flex-direction: row-reverse;
  }

  .title_img {
    max-width: 100px;
  }

  #home .content {
    display: flex !important;
  }

  .title-img {
    width: 250px;
  }
}

@media (max-width: 575px) {
  #important-dates .flex-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .title_img {
    max-width: 80px;
  }

  #important-dates .flex-container .impbox {
    height: auto;
  }

  #important-dates .flex-container .impbox p {
    line-height: 1.5;
  }

  #important-dates .flex-container .impbox a {
    display: block;
    width: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    color: #000;
    padding-right: 10px;
    margin-left: auto;
  }

  .title-img {
    width: 200px;
  }
}