@import url("https://fonts.googleapis.com/css?family=Montserrat|Notable");
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

ul {
  margin-block-start: 0px;
  margin-block-end: 0px;
}

#message2, #message1 {
  margin: 0 auto;
}

.footer {
  grid-area: footer;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  width: 100vw;
  height: 6vh;
}
@media (min-width: 320px) and (min-width: 320px) {
  .footer {
    font-size: 0.6em;
    line-height: 3.5em;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .footer {
    font-size: 0.9em;
    line-height: 4.4em;
  }
}

nav {
  display: grid;
  background-color: rgb(0, 0, 0);
  position: fixed;
  z-index: 12;
  width: 100vw;
}
@media (max-width: 320px) {
  nav {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 9vh;
  }
}
@media (min-width: 1200px) {
  nav {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 3em;
  }
}

@media (max-width: 320px) {
  ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    grid-column: 2/2;
    position: absolute;
    top: 6vh;
    right: 0;
    width: 0px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0 0 0 10px;
    transition: width 1s;
  }
}
@media (min-width: 1200px) {
  ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    grid-column: 10/12;
    width: 100%;
    top: 0;
  }
}

li {
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
}
@media (max-width: 320px) {
  li {
    font-size: 0.8em;
    text-align: center;
    line-height: 2.5em;
    height: 30px;
    width: 50%;
    margin: 0 auto;
    padding: 5px 0 0 0;
  }
}
@media (min-width: 1200px) {
  li {
    font-size: 1em;
    line-height: 2.5em;
    cursor: pointer;
  }
}
li:hover {
  color: rgb(63, 169, 245);
  cursor: pointer;
}

.active {
  text-decoration: underline;
  text-decoration-color: rgb(63, 169, 245);
}
@media (max-width: 320px) {
  .active {
    text-decoration-color: rgb(63, 169, 245);
  }
}

@media (max-width: 320px) {
  #logo {
    grid-column: 1/1;
    height: 100%;
    width: 75%;
    margin: 0 0 0 30px;
  }
  #logo .page-phone {
    display: block;
    height: 9vh;
  }
  #logo .page-desktop {
    display: none;
  }
}
@media (min-width: 1200px) {
  #logo {
    grid-column: 2/4;
    width: 100%;
  }
  #logo .page-phone {
    display: none;
  }
  #logo .page-desktop {
    display: block;
    height: 3em;
    cursor: pointer;
  }
}

#nav-icon {
  width: 25px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  cursor: pointer;
}
@media (min-width: 320px) and (min-width: 320px) {
  #nav-icon {
    position: relative;
    width: 100%;
  }
  #nav-icon span {
    position: absolute;
    height: 3px;
    width: 20%;
    border-radius: 5px;
    opacity: 1;
    right: 30px;
    background-color: rgb(255, 255, 255);
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #nav-icon {
    display: none;
  }
}

#nav-icon span:nth-child(1) {
  top: 17px;
}

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 25px;
}

#nav-icon span:nth-child(4) {
  top: 33px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 100%;
}

#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
  transition: 0.5s ease-in-out;
}

#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.5s ease-in-out;
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 100%;
}

#container {
  position: relative;
  min-width: 100vw;
}
@media (max-width: 320px) {
  #container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 15vh 1fr 1fr 94vh 6vh;
    grid-template-areas: "nav-bar" "home" "about" "contact" "footer";
  }
}
@media (min-width: 1200px) {
  #container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: 3em 1fr 1fr 95vh 5vh;
    grid-template-areas: "nav-bar nav-bar nav-bar" "home home home" "about about about" "contact contact contact" "footer footer footer";
    min-height: 300vh;
  }
}

.about {
  grid-area: about;
  min-height: 100vh;
  min-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 320px) and (min-width: 320px) {
  .about {
    background-image: url("../images/bkgb-phone.jpg");
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .about {
    background-image: url("../images/bkgb.jpg");
  }
}

#message1 {
  height: 15vh;
  margin-top: 32vh;
  font-family: "Notable", sans-serif;
  letter-spacing: 5px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 320px) and (min-width: 320px) {
  #message1 {
    font-size: 1em;
    line-height: 4.5em;
    width: 80vw;
  }
  @keyframes slide-right {
    from {
      transform: translateX(-200px);
    }
    to {
      transform: translateX(0);
    }
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #message1 {
    font-size: 2.5em;
    line-height: 3em;
    width: 25vw;
  }
  @keyframes slide-right {
    from {
      transform: translateX(-1000px);
    }
    to {
      transform: translateX(0);
    }
  }
}

#message2 {
  height: 15vh;
  font-family: "Notable", sans-serif;
  letter-spacing: 5px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 320px) and (min-width: 320px) {
  #message2 {
    font-size: 1em;
    line-height: 4.5em;
    width: 80vw;
  }
  @keyframes slide-left {
    from {
      transform: translateX(200px);
    }
    to {
      transform: translateX(0);
    }
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #message2 {
    font-size: 2.5em;
    line-height: 3em;
    width: 25vw;
  }
  @keyframes slide-left {
    from {
      transform: translateX(1000px);
    }
    to {
      transform: translateX(0);
    }
  }
}

.contact {
  grid-area: contact;
}
@media (min-width: 320px) and (min-width: 320px) {
  .contact {
    
    background-image: url("../images/bkgc-phone.jpg");
   
}
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .contact {
    background-image: url("../images/bkgc.jpg");
    min-height: 100vh;
    min-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

@media (min-width: 320px) and (min-width: 320px) {
  #overlay2 {
    position: absolute;
    min-height: 100vh;
    min-width: 100%;
    top: 209vh;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #overlay2 {
    position: absolute;
    min-height: 100vh;
    min-width: 100%;
    top: 206vh;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.8);
  }
}

#wrapper {
  position: relative;
  height: 100vh;
  width: 100vw;
}

@media (min-width: 320px) and (min-width: 320px) {
  #message3 {
    width: 90vw;
    height: 10vh;
    position: relative;
    top: 37.5vh;
    font-family: "Notable", sans-serif;
    font-size: 0.7em;
    letter-spacing: 3px;
    line-height: 1.4em;
    margin: 0 auto;
    text-align: center;
    color: rgb(255, 255, 255);
    z-index: 12;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #message3 {
    width: 80vw;
    height: 10vh;
    position: relative;
    top: 37.5vh;
    font-family: "Notable", sans-serif;
    font-size: 2.5em;
    letter-spacing: 5px;
    line-height: 2.4em;
    margin: 0 auto;
    text-align: center;
    color: rgb(255, 255, 255);
    z-index: 12;
  }
}

.home {
  grid-area: home;
  min-height: 100vh;
  min-width: 100%;
}
@media (max-width: 320px) {
  .home {
    background-color: white;
  }
}
@media (min-width: 1200px) {
  .home {
    background-image: url("../images/bkga.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

#page1 {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  overflow-y: hidden;
}

#logo-txt {
  z-index: 11;
}
@media (max-width: 320px) {
  #logo-txt {
    position: absolute;
    width: 150px;
    top: 14vh;
    left: 50%;
    margin-left: -75px;
    display: block;
    box-sizing: border-box;
    background: url("../images/cbt-blue-phone.png");
    height: 86px;
  }
}
@media (min-width: 1200px) {
  #logo-txt {
    position: absolute;
    width: 384px;
    top: 12vh;
    left: 50%;
    margin-left: -192px;
    display: block;
    box-sizing: border-box;
    background: url("../images/cbt-blue.png");
    height: 219px;
    padding-left: 0px;
  }
}

@media (max-width: 320px) {
  #overlay1 {
    position: absolute;
    min-height: 100vh;
    min-width: 100%;
    top: 9vh;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
@media (min-width: 1200px) {
  #overlay1 {
    position: absolute;
    min-height: 100vh;
    min-width: 100%;
    top: 3em;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.9);
  }
}

.placeholder-txt {
  font-family: "Notable", sans-serif;
  color: rgb(255, 255, 255);
  position: absolute;
  width: 70vw;
  top: 48vh;
  left: 50%;
  margin-left: -35vw;
  letter-spacing: 5px;
  text-align: center;
  z-index: 10;
}
@media (max-width: 320px) {
  .placeholder-txt {
    font-size: 1em;
  }
}
@media (min-width: 1200px) {
  .placeholder-txt {
    font-size: 2.5em;
  }
}

/*# sourceMappingURL=style.css.map */
