@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 1rem;
}

main {
  background-color: rgba(0, 114, 163, 0.075);
}

a, a:hover, a:visited, a:active {
  text-decoration: none;
  color: #000000;
  text-align: center;
  font-size: 1rem;
}

.section-1 {
  padding-top: 12vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: center;
}

.section-2 {
  padding-top: 12vh;
  padding-left: 11vw;
  padding-right: 11vw;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  scroll-snap-align: center;
}

.section-3 {
  padding-top: 12vh;
  padding-left: 11vw;
  padding-right: 11vw;
  text-align: center;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-3 .raleway {
  font-family: "Raleway", sans-serif;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.a-i-c {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.a-s-c {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.j-c-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.j-c-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.j-c-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.relative {
  position: relative;
}

.raleway {
  font-family: "Raleway", sans-serif;
}

.secClr {
  color: #007DB3;
  font-weight: 500;
}

.sFont {
  font-size: 0.75rem;
}

.textOnPic {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

header {
  z-index: 5;
  position: fixed;
  width: 100vw;
  height: 12vh;
  padding: 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
}

header .header {
  width: 100%;
}

header .logo img {
  width: 17.5vw;
}

header nav {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 3.25px;
  line-height: 1.25rem;
  padding: 1px;
  background-color: white;
}

header nav a {
  display: inline-block;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
}

header nav a .hover {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1.15px;
}

header nav a::before {
  content: attr(data-hover);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header nav a:hover::before {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

header nav a .hover {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header nav a:hover .hover {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

header #slideUpBtn {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  -webkit-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

header #slideUpBtn img {
  width: 4.5rem;
}

header #slideUpBtn.active {
  opacity: 1;
  pointer-events: auto;
}

header #slideUpBtn:hover {
  -webkit-filter: drop-shadow(0 1px 3px #7e5f00);
          filter: drop-shadow(0 1px 3px #7e5f00);
}

@media only screen and (max-width: 912px) {
  header {
    padding: 0 1rem;
  }
  header .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .logo {
    padding-bottom: 1rem;
  }
  header .logo img {
    width: 32vw;
  }
  header nav {
    letter-spacing: 2.75px;
  }
  header nav a {
    font-size: 1.25rem;
    padding: 0 2.75rem;
  }
  header #slideUpBtn img {
    width: 3.75rem;
  }
}

@media only screen and (max-width: 768px) {
  header .logo {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 540px) {
  header {
    height: 14vh;
  }
  header .logo {
    padding-bottom: 0;
  }
  header .logo img {
    width: 28vw;
  }
  header nav a {
    font-size: .85rem;
    padding: 0 .95rem;
  }
  header #slideUpBtn img {
    width: 3rem;
  }
}

@media only screen and (max-width: 414px) {
  header {
    padding: 1.5rem .75rem 1rem .75rem;
  }
  header .logo img {
    width: 44vw;
  }
  header nav a {
    font-size: .65rem;
    padding: 0 .75rem;
    letter-spacing: .35px;
  }
  header #slideUpBtn {
    bottom: 2rem;
    right: 1.25rem;
  }
  header #slideUpBtn img {
    width: 3rem;
  }
}

@media only screen and (max-width: 375px) {
  header #slideUpBtn {
    bottom: 2rem;
    right: 1.25rem;
  }
  header #slideUpBtn img {
    width: 3rem;
  }
}

.cnslt-1 {
  width: 78vw;
  color: white;
  padding-bottom: 1rem;
}

.cnslt-1 img, .cnslt-1 source {
  width: 100%;
  height: 25vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(55%);
          filter: brightness(55%);
}

.cnslt-1 .textOnPic {
  padding-bottom: 0.75rem;
}

.cnslt-1 .textOnPic .raleway {
  font-size: 1.5rem;
  letter-spacing: 3px;
  padding-bottom: .75rem;
}

.cnslt-2 {
  padding-top: 1rem;
  width: 78vw;
}

.cnslt-2 .cnt {
  background-color: white;
  padding: 2rem 1rem;
  margin-right: 2.5rem;
  height: 46vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cnslt-2 .cnt .raleway {
  font-weight: 500;
  letter-spacing: 2px;
  color: #0F4C66;
}

.cnslt-2 .cnt .cntinfo {
  padding: 1rem 0;
}

.cnslt-2 .requestForm {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  margin: auto 0;
}

.cnslt-2 .requestForm h2 {
  padding-bottom: 1rem;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.cnslt-2 .requestForm form {
  width: 96%;
}

.cnslt-2 .requestForm form label {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: .9rem;
  padding-right: 3px;
}

.cnslt-2 .requestForm form label span {
  color: red;
  font-weight: 500;
}

.cnslt-2 .requestForm form .form-1 select {
  height: 2rem;
  width: 6.5rem;
  margin: 0 .25rem;
  padding: 0 .3rem;
}

.cnslt-2 .requestForm form .form-2 {
  padding: 1rem 0;
  gap: 1rem;
}

.cnslt-2 .requestForm form .form-2 input {
  height: 2rem;
  padding: 0 .5rem;
}

.cnslt-2 .requestForm form .form-2 .i-1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

.cnslt-2 .requestForm form .form-2 .i-1 input {
  width: 8rem;
}

.cnslt-2 .requestForm form .form-2 .i-2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

.cnslt-2 .requestForm form .form-2 .i-2 input {
  width: 12rem;
}

.cnslt-2 .requestForm form .form-2 .i-3 {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
}

.cnslt-2 .requestForm form .form-2 .i-3 input {
  width: 18rem;
}

.cnslt-2 .requestForm form textarea {
  height: 16vh;
  padding: 1rem;
  font-family: "IBM Plex Sans KR", sans-serif;
}

.cnslt-2 .requestForm form button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: .5rem 3rem;
  border: 0;
  font-size: 1rem;
  font-family: "IBM Plex Sans KR", sans-serif;
  background-color: #0F4C66;
  color: white;
  border-radius: 7.5px;
  -webkit-filter: drop-shadow(0 2px 0 rgba(87, 87, 87, 0.8));
          filter: drop-shadow(0 2px 0 rgba(87, 87, 87, 0.8));
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.cnslt-2 .requestForm form button:hover {
  background-color: #007DB3;
  cursor: pointer;
}

.cnslt-2 .requestForm form button:active {
  position: relative;
  top: 2px;
  -webkit-filter: none;
          filter: none;
}

.cnslt-2 .requestForm form select, .cnslt-2 .requestForm form input, .cnslt-2 .requestForm form textarea {
  border-radius: 7.5px;
  border: 1.5px solid #0F4C66;
}

.cnslt-2 .requestForm p {
  padding-top: .5rem;
  font-size: .75rem;
  color: #c80000;
}

@media only screen and (max-width: 1024px) {
  .cnslt-1 {
    padding-bottom: 0;
  }
  .cnslt-1 img, .cnslt-1 source {
    height: 20vh;
  }
  .cnslt-1 .textOnPic .raleway {
    font-size: 1.25rem;
  }
  .cnslt-1 .textOnPic #inst-1 {
    font-size: .85rem;
  }
  .cnslt-2 .cnt {
    margin-right: 1rem;
    height: 52vh;
  }
  .cnslt-2 .cnt .raleway {
    font-size: .85rem;
  }
  .cnslt-2 .requestForm h2 {
    font-size: 1rem;
  }
  .cnslt-2 .requestForm form {
    width: 86%;
  }
  .cnslt-2 .requestForm form .form-1 select {
    height: 1.75rem;
  }
  .cnslt-2 .requestForm form .form-2 {
    padding: .5rem 0;
    gap: .25rem;
  }
  .cnslt-2 .requestForm form .form-2 input {
    height: 1.75rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-1 input {
    width: 8rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-2 input {
    width: 10rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .cnslt-2 .requestForm form .form-2 .i-3 input {
    width: 20rem;
  }
  .cnslt-2 .requestForm form button {
    font-size: .85rem;
    padding: .5rem 1rem;
  }
  .cnslt-2 .requestForm p {
    font-size: .65rem;
  }
}

@media only screen and (max-width: 912px) {
  .cnslt-1 img, .cnslt-1 source {
    height: 18vh;
  }
  .cnslt-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cnslt-2 .cnt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  .cnslt-2 .cnt .cntinfo {
    padding: .25rem 0;
  }
  .cnslt-2 .requestForm h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
  }
  .cnslt-2 .requestForm .form-2 {
    padding: 1rem 0;
  }
}

@media only screen and (max-width: 540px) {
  .cnslt-1 img, .cnslt-1 source {
    height: 10vh;
  }
  .cnslt-1 .textOnPic {
    padding-bottom: 0;
  }
  .cnslt-1 .textOnPic .raleway {
    padding-bottom: 0;
  }
  .cnslt-1 #inst-1 {
    display: none;
  }
  .cnslt-2 .cnt {
    margin-bottom: 0;
    padding: 1.25rem 0;
  }
  .cnslt-2 .cnt .cntinfo #break-4 {
    display: none;
  }
  .cnslt-2 .cnt .cntinfo .raleway {
    font-size: .75rem;
  }
  .cnslt-2 .cnt .cntinfo .cntinfo-1 {
    font-size: .65rem;
  }
  .cnslt-2 .requestForm {
    margin-top: 2rem;
  }
  .cnslt-2 .requestForm h2 {
    margin-top: 0;
    font-size: 1rem;
  }
  .cnslt-2 .requestForm form .form-1 select {
    height: 1.65rem;
  }
  .cnslt-2 .requestForm form .form-2 {
    padding: .5rem 0;
    gap: .5rem;
  }
  .cnslt-2 .requestForm form .form-2 input {
    height: 1.65rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-1 input {
    width: 5rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-2 input {
    width: 7.5rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .cnslt-2 .requestForm form .form-2 .i-3 input {
    width: 14rem;
  }
  .cnslt-2 .requestForm form button {
    font-size: .85rem;
    padding: .5rem 1rem;
  }
  .cnslt-2 .requestForm p {
    font-size: .65rem;
  }
}

@media only screen and (max-width: 414px) {
  .cnslt-2 .cnt .cntinfo .raleway {
    font-size: .55rem;
    letter-spacing: 1px;
  }
  .cnslt-2 .cnt .cntinfo .cntinfo-1 {
    font-size: .775rem;
  }
  .cnslt-2 .requestForm {
    margin-top: 2rem;
  }
  .cnslt-2 .requestForm form {
    width: 100%;
  }
  .cnslt-2 .requestForm form label {
    font-size: .75rem;
  }
  .cnslt-2 .requestForm form .form-1 select {
    width: 4.5rem;
    margin: 0 .1rem;
  }
  .cnslt-2 .requestForm form .form-2 {
    padding: .5rem 0;
    gap: .5rem;
  }
  .cnslt-2 .requestForm form .form-2 input {
    height: 1.65rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-1 input {
    width: 4.25rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-2 input {
    width: 6.5rem;
  }
  .cnslt-2 .requestForm form .form-2 .i-3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .cnslt-2 .requestForm form .form-2 .i-3 input {
    width: 12rem;
  }
  .cnslt-2 .requestForm form button {
    font-size: .85rem;
    padding: .5rem 1rem;
  }
  .cnslt-2 .requestForm p {
    font-size: .65rem;
  }
}
/*# sourceMappingURL=style-consultation.css.map */