@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;
  }
}

.home-1 .home-1-1 {
  position: relative;
}

.home-1 .home-1-1 source, .home-1 .home-1-1 img {
  display: block;
  margin: 0 auto;
  width: 78vw;
  height: 34vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(65%);
          filter: brightness(65%);
}

.home-1 .home-1-1 .textOnPic {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  letter-spacing: 1.5px;
  font-family: "Raleway", sans-serif;
}

.home-1 .home-1-1 .textOnPic span {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.home-1 .home-1-2 {
  padding: 3rem 0;
}

.home-1 .home-1-2 #intro {
  padding-left: calc(11vw + 4rem);
}

.home-1 .home-1-2 #intro h3 {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
  font-size: 1.5rem;
  padding-bottom: 0.25rem;
  background-image: linear-gradient(45deg, #0F4C66, #00afbe);
  -webkit-background-clip: text;
  color: transparent;
}

.home-1 .home-1-2 #intro p {
  font-size: 1.1rem;
  line-height: 2rem;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
  text-decoration-thickness: 3px;
}

.home-1 .home-1-2 #intro p #break-5 {
  display: none;
}

.home-1 .home-1-2 #table {
  padding-right: calc(11vw + 8rem);
  gap: 3rem;
}

.home-1 .home-1-2 #table a {
  padding: 0.85rem 3.5rem;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #0F4C66;
  border-radius: 2rem;
  background-color: #fff;
  -webkit-filter: drop-shadow(2px 2px 3px gray);
          filter: drop-shadow(2px 2px 3px gray);
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.home-1 .home-1-2 #table a:hover {
  background-color: #0F4C66;
  color: white;
}

.home-2 {
  padding-left: 11vw;
  padding-right: 11vw;
}

.home-2 .home-2-1 {
  gap: 1rem;
}

.home-2 .home-2-1 .i-1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

.home-2 .home-2-1 .i-2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

.home-2 .home-2-1 .i-3 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.home-2 .home-2-1 .i-4 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.home-2 .home-2-1 .i-1, .home-2 .home-2-1 .i-2, .home-2 .home-2-1 .i-3, .home-2 .home-2-1 .i-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-filter: drop-shadow(1.5px 1.5px 1px #a5a5a5);
          filter: drop-shadow(1.5px 1.5px 1px #a5a5a5);
}

.home-2 .home-2-1 img, .home-2 .home-2-1 source {
  width: 12vw;
  height: 18vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 0 0 1rem;
  -webkit-filter: brightness(75%);
          filter: brightness(75%);
}

.home-2 .home-2-1 .duty {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-size: 1.35rem;
  color: white;
  letter-spacing: 5px;
  text-align: center;
  -webkit-filter: drop-shadow(1px 1px 0 #0F4C66);
          filter: drop-shadow(1px 1px 0 #0F4C66);
}

.home-2 .home-2-1 .details {
  width: 24vw;
  height: 18vh;
  background-color: white;
  border-radius: 0 1rem 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-2 .home-2-1 .details p {
  padding: 1.5rem;
  font-size: 1.05rem;
}

.home-2 .home-2-2 {
  padding: 2rem 0 2.5rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-2 .home-2-2 div {
  padding: 0.35rem;
}

.home-2 .home-2-2 div p {
  padding: 0.75rem 1.15rem;
  border-radius: 1.75rem;
  border: 2px solid #0F4C66;
  color: #0F4C66;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  background-color: rgba(255, 255, 255, 0.75);
}

.home-2 .home-2-3 p {
  width: 100%;
  margin: auto;
  text-align: center;
  font-size: .95rem;
  padding: 1rem 1.75rem;
  background-color: rgba(254, 255, 250, 0.5);
  border-top: 1px dotted #0F4C66;
  border-bottom: 1px dotted #0F4C66;
}

.home-2 .home-2-3 p #break, .home-2 .home-2-3 p #break-2 {
  display: none;
}

.home-2 .home-2-3 p a {
  font-size: 1rem;
  font-weight: 500;
  background-image: linear-gradient(15deg, #8e5a00, #00a8c2);
  -webkit-background-clip: text;
  color: transparent;
  padding: 0 0.25rem;
  letter-spacing: 0.25px;
}

.home-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: center;
  position: relative;
  padding-bottom: 10vh;
}

.home-3 .home-3-1 {
  width: 48vw;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background-color: #FFF;
  border-radius: 1rem;
  border: 2px solid #63abb6;
  -webkit-filter: drop-shadow(0 0 6px #63abb6);
          filter: drop-shadow(0 0 6px #63abb6);
}

.home-3 .home-3-1 #ad {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 2rem;
  background-image: linear-gradient(45deg, #0F4C66, #00afbe);
  -webkit-background-clip: text;
  color: transparent;
}

.home-3 .home-3-1 #call {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5rem auto;
  padding: 0.65rem 3.25rem;
  color: white;
  font-size: 1rem;
  letter-spacing: 1.25px;
  border-radius: 1rem;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #0F4C66), color-stop(80%, #007DB3), to(#0F4C66));
  background-image: linear-gradient(0deg, #0F4C66 10%, #007DB3 80%, #0F4C66);
  -webkit-transition: .1s linear;
  transition: .1s linear;
}

.home-3 .home-3-1 #call img {
  width: 1.5rem;
  padding-right: 0.15rem;
}

.home-3 .home-3-1 #call img, .home-3 .home-3-1 #call p {
  display: inline-block;
  vertical-align: middle;
}

.home-3 .home-3-1 #call:hover {
  opacity: 0.9;
}

.home-3 .home-3-1 #call:active {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #007DB3), color-stop(80%, #0F4C66), to(#007DB3));
  background-image: linear-gradient(0deg, #007DB3 10%, #0F4C66 80%, #007DB3);
  opacity: 1;
}

.home-3 .home-3-1 #note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #c80000;
  letter-spacing: 0.25px;
  font-size: 0.8rem;
  text-align: left;
}

.home-3 .home-3-1 #note #here-accnt {
  font-family: "IBM Plex Sans KR", sans-serif;
  color: #c80000;
  letter-spacing: 0.25px;
  font-weight: 500;
  font-size: 0.8rem;
  border-bottom: 1px dotted #3c2b00;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.home-3 .home-3-2 {
  margin-bottom: 2.5rem;
}

.home-3 .home-3-2 .home-3-2-1 {
  padding-right: 4rem;
}

.home-3 .home-3-2 .home-3-2-1 img {
  width: 16vw;
  border: 0.5rem solid white;
  border-radius: 0.5rem;
}

.home-3 .home-3-2 .home-3-2-2 #address {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.home-3 .home-3-2 .home-3-2-2 a img {
  margin: 1rem 0;
  width: 2rem;
}

.home-3 .home-3-2 .home-3-2-2 #contact {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 1rem;
}

.home-3 .footer {
  position: absolute;
  bottom: 0;
  height: 10vh;
  background-color: rgba(17, 68, 90, 0.2);
  width: 100%;
  border-top: .5px solid black;
  font-family: "IBM Plex Sans KR", sans-serif;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.25px;
}

.home-3 .footer a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-size: .75rem;
  letter-spacing: .1px;
  -webkit-text-decoration: underline 1px dotted black;
          text-decoration: underline 1px dotted black;
  color: #0F4C66;
}

@media only screen and (max-width: 1024px) {
  .home-1 .home-1-1 img, .home-1 .home-1-1 source {
    height: 10rem;
  }
  .home-1 .home-1-1 p {
    font-size: 1rem;
  }
  .home-1 .home-1-1 p span {
    font-size: 1.25rem;
  }
  .home-1 .home-1-2 {
    padding: 2rem 0;
  }
  .home-1 .home-1-2 #intro {
    padding-left: calc(11vw + 2rem);
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .home-1 .home-1-2 #intro h3 {
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
  }
  .home-1 .home-1-2 #table {
    padding-right: calc(11vw + 3rem);
    gap: 2.5rem;
  }
  .home-1 .home-1-2 #table a {
    padding: 0.6rem 1.45rem;
    font-size: .95rem;
  }
  .home-2 {
    gap: .5rem;
  }
  .home-2 .home-2-1 img, .home-2 .home-2-1 source {
    width: 10vw;
    height: 14vh;
  }
  .home-2 .home-2-1 .duty {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  .home-2 .home-2-1 .details {
    height: 14vh;
  }
  .home-2 .home-2-1 .details p {
    font-size: .8rem;
    padding: 1rem;
  }
  .home-2 .home-2-2 {
    padding: .75rem 0 1.25rem 0;
  }
  .home-2 .home-2-2 div {
    padding: 0.2rem;
  }
  .home-2 .home-2-2 div p {
    padding: 0.5rem .75rem;
    font-size: .725rem;
    letter-spacing: 0.25px;
    border: 1.5px solid #0F4C66;
  }
  .home-2 .home-2-3 p {
    font-size: .75rem;
    padding: 1rem;
  }
  .home-2 .home-2-3 p a {
    font-size: .85rem;
  }
  .home-3 .home-3-1 {
    margin: 0 auto 1rem auto;
    padding: .5rem 2rem;
  }
  .home-3 .home-3-1 #ad {
    font-size: .9rem;
    line-height: 1.5rem;
  }
  .home-3 .home-3-1 #ad span {
    font-size: 1rem;
    letter-spacing: 0.25px;
  }
  .home-3 .home-3-1 #call {
    padding: 0.35rem 2rem;
    font-size: .9rem;
    letter-spacing: 1px;
    border-radius: .75rem;
  }
  .home-3 .home-3-1 #call img {
    width: 1.25rem;
  }
  .home-3 .home-3-1 #note {
    padding: .75rem;
    font-size: 0.7rem;
  }
  .home-3 .home-3-1 #note #here-accnt {
    font-size: 0.7rem;
  }
  .home-3 .home-3-2 .home-3-2-1 {
    padding-right: 3rem;
  }
  .home-3 .home-3-2 .home-3-2-2 #address {
    font-size: .9rem;
    letter-spacing: 0.25px;
  }
  .home-3 .home-3-2 .home-3-2-2 #contact {
    font-size: .85rem;
  }
  .home-3 .footer {
    font-size: 0.6rem;
  }
  .home-3 .footer a {
    font-size: .65rem;
  }
}

@media only screen and (max-width: 912px) {
  .home-1 .home-1-1 img, .home-1 .home-1-1 source {
    height: 18vh;
  }
  .home-1 .home-1-1 .textOnPic {
    font-size: 1.5rem;
  }
  .home-1 .home-1-1 .textOnPic span {
    font-size: 2rem;
  }
  .home-1 .home-1-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 4rem;
  }
  .home-1 .home-1-2 #intro {
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: center;
  }
  .home-1 .home-1-2 #intro h3 {
    font-size: 2.25rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
  .home-1 .home-1-2 #intro p {
    font-size: 1.75rem;
    line-height: 2.75rem;
  }
  .home-1 .home-1-2 #intro p #break-5 {
    display: block;
  }
  .home-1 .home-1-2 #table {
    margin-bottom: 6rem;
    padding-left: calc(11vw + 2rem);
    padding-right: calc(11vw + 2rem);
    gap: 3rem;
  }
  .home-1 .home-1-2 #table a {
    padding: 1rem 2rem;
    font-size: 1.25rem;
  }
  .home-1 .home-1-2 #table .i-a {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .home-1 .home-1-2 #table .i-b {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .home-1 .home-1-2 #table .i-c {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .home-2 {
    gap: .5rem;
  }
  .home-2 .home-2-1 img, .home-2 .home-2-1 source {
    width: 12vw;
  }
  .home-2 .home-2-1 .duty {
    font-size: 1.25rem;
  }
  .home-2 .home-2-1 .details p {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
  .home-2 .home-2-2 {
    padding: 2rem 0;
  }
  .home-2 .home-2-2 div {
    padding: .5rem .35rem;
  }
  .home-2 .home-2-2 div p {
    font-size: 1.15rem;
    padding: .75rem 1.5rem;
  }
  .home-2 .home-2-3 p {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
  .home-2 .home-2-3 p #break {
    display: block;
  }
  .home-2 .home-2-3 p a {
    font-size: 1.35rem;
  }
  .home-3 .home-3-1 {
    padding: 4rem 0;
    width: 72vw;
  }
  .home-3 .home-3-1 #ad {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  .home-3 .home-3-1 #call {
    font-size: 1.75rem;
    padding: 1rem 2.5rem;
    border-radius: 1.75rem;
    margin: 3rem auto 2rem auto;
  }
  .home-3 .home-3-1 #note {
    font-size: 1.1rem;
    padding: 0;
  }
  .home-3 .home-3-1 #note #here-accnt {
    font-size: 1.1rem;
  }
  .home-3 .home-3-2 {
    margin-bottom: 2rem;
    padding: 2rem 0;
  }
  .home-3 .home-3-2 .home-3-2-1 img {
    width: 24vw;
  }
  .home-3 .home-3-2 .home-3-2-2 #address {
    font-size: 1.5rem;
  }
  .home-3 .home-3-2 .home-3-2-2 a img {
    width: 3rem;
  }
  .home-3 .home-3-2 .home-3-2-2 #contact {
    font-size: 1.25rem;
  }
  .home-3 .footer {
    font-size: 1rem;
  }
  .home-3 .footer a {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 540px) {
  .home-1 .home-1-1 .textOnPic {
    font-size: 1rem;
  }
  .home-1 .home-1-1 .textOnPic span {
    font-size: 1.25rem;
  }
  .home-1 .home-1-2 {
    padding: 0;
  }
  .home-1 .home-1-2 #intro h3 {
    font-size: 1.25rem;
    padding-bottom: 0;
  }
  .home-1 .home-1-2 #intro p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .home-1 .home-1-2 #table {
    margin-bottom: 1rem;
    gap: 2rem;
    padding: 1.5rem 0;
  }
  .home-1 .home-1-2 #table a {
    font-size: .8rem;
    padding: .5rem 1rem;
  }
  .home-2 .home-2-1 .i-1, .home-2 .home-2-1 .i-2, .home-2 .home-2-1 .i-3, .home-2 .home-2-1 .i-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-2 .home-2-1 img, .home-2 .home-2-1 source {
    width: 100%;
    height: 6vh;
    border-radius: 1rem 1rem 0 0;
  }
  .home-2 .home-2-1 .duty {
    width: 100%;
    font-size: 1rem;
    -webkit-filter: none;
            filter: none;
  }
  .home-2 .home-2-1 .details {
    width: 100%;
    height: 12vh;
    border-radius: 0 0 1rem 1rem;
  }
  .home-2 .home-2-1 .details p {
    font-size: .75rem;
    padding: 0 1rem;
  }
  .home-2 .home-2-2 {
    padding: 1rem 0;
  }
  .home-2 .home-2-2 div {
    padding: .15rem .25rem;
  }
  .home-2 .home-2-2 div p {
    font-size: .75rem;
    padding: .5rem .8rem;
  }
  .home-2 .home-2-3 p {
    font-size: .75rem;
    line-height: 1.25rem;
  }
  .home-2 .home-2-3 p a {
    font-size: .8rem;
  }
  .home-3 .home-3-2 {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-3 .home-3-2 .home-3-2-1 {
    padding: 0;
  }
  .home-3 .home-3-2 .home-3-2-1 img {
    display: none;
  }
  .home-3 .home-3-2 .home-3-2-2 #address {
    font-size: 1rem;
  }
  .home-3 .home-3-2 .home-3-2-2 a img {
    width: 1.85rem;
    margin: .35rem;
  }
  .home-3 .home-3-2 .home-3-2-2 #contact {
    font-size: .8rem;
  }
  .home-3 .home-3-1 {
    padding: 1.5rem 0;
  }
  .home-3 .home-3-1 #ad {
    font-size: 1.25rem;
  }
  .home-3 .home-3-1 #call {
    font-size: 1.1rem;
    margin: 1rem auto;
    padding: .65rem 1.75rem;
    border-radius: 1rem;
  }
  .home-3 .home-3-1 #note {
    font-size: .725rem;
  }
  .home-3 .home-3-1 #note #here-accnt {
    font-size: .725rem;
  }
  .home-3 .footer {
    font-size: .675rem;
  }
  .home-3 .footer a {
    font-size: .675rem;
  }
}

@media only screen and (max-width: 414px) {
  .home-1 .home-1-1 {
    width: 100vw;
  }
  .home-1 .home-1-1 img, .home-1 .home-1-1 source {
    width: 100%;
    height: 20vh;
  }
  .home-1 .home-1-1 .textOnPic {
    width: 100%;
    font-size: 1rem;
  }
  .home-1 .home-1-1 .textOnPic span {
    font-size: 1.5rem;
  }
  .home-1 .home-1-2 #table {
    margin: 2rem 0 1rem 0;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  .home-1 .home-1-2 #table a {
    font-size: .85rem;
  }
  .home-1 .home-1-2 #intro {
    padding-top: 1rem;
  }
  .home-1 .home-1-2 #intro h3 {
    padding-bottom: 0;
    font-size: 1.25rem;
  }
  .home-1 .home-1-2 #intro p {
    font-size: .925rem;
    line-height: 1.6rem;
  }
  .home-2 .home-2-1 .duty {
    font-size: 1.1rem;
    -webkit-filter: none;
            filter: none;
  }
  .home-2 .home-2-1 .details {
    height: 12.75vh;
  }
  .home-2 .home-2-1 .details p {
    font-size: .8rem;
    line-height: 1.1rem;
    padding: .8rem;
  }
  .home-2 .home-2-2 {
    padding: .25rem 0;
  }
  .home-2 .home-2-2 div {
    padding: .1rem .075rem;
  }
  .home-2 .home-2-2 div p {
    font-size: .775rem;
    padding: .3rem .45rem;
  }
  .home-2 .home-2-3 p {
    padding: .625rem 1.25rem;
    font-size: .675rem;
    line-height: .95rem;
  }
  .home-2 .home-2-3 p a {
    font-size: .725rem;
  }
  .home-2 .home-2-3 p #break-2 {
    display: block;
  }
  .home-3 .home-3-1 {
    padding: 1rem;
    width: 82vw;
  }
  .home-3 .home-3-1 #ad {
    font-size: 1rem;
    padding: 0;
  }
  .home-3 .home-3-1 #call {
    margin: 1.25rem auto;
  }
  .home-3 .home-3-1 #call img {
    width: 1.25rem;
    padding-right: 0.15rem;
  }
  .home-3 .home-3-1 #note {
    font-size: 0.625rem;
    text-align: left;
  }
  .home-3 .home-3-1 #note #here-accnt {
    font-size: 0.65rem;
    font-weight: 500;
  }
  .home-3 .home-3-2 {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
  }
  .home-3 .home-3-2 .home-3-2-1 {
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .home-3 .home-3-2 .home-3-2-1 img {
    width: 36vw;
    border: 0;
  }
  .home-3 .home-3-2 .home-3-2-2 #address {
    font-size: .95rem;
    letter-spacing: 0.5px;
  }
  .home-3 .home-3-2 .home-3-2-2 a img {
    margin: .25rem 0;
    width: 1.5rem;
  }
  .home-3 .home-3-2 .home-3-2-2 #contact {
    font-size: .8rem;
  }
  .home-3 .footer {
    height: 10vh;
    font-size: 0.75rem;
    letter-spacing: 0.25px;
  }
  .home-3 .footer a {
    font-size: .775rem;
  }
}

@media only screen and (max-width: 375px) {
  .home-1 .home-1-1 .textOnPic {
    font-size: .75rem;
  }
  .home-1 .home-1-1 .textOnPic span {
    font-size: 1.5rem;
  }
  .home-1 .home-1-2 #table {
    margin-bottom: 1rem;
  }
  .home-1 .home-1-2 #table a {
    font-size: .85rem;
  }
  .home-1 .home-1-2 #intro h3 {
    padding-bottom: 0;
  }
  .home-1 .home-1-2 #intro p {
    font-size: .925rem;
    line-height: 1.6rem;
  }
  .home-2 .home-2-1 img, .home-2 .home-2-1 source {
    height: 4.5vh;
  }
  .home-2 .home-2-1 .duty {
    font-size: .775rem;
    -webkit-filter: none;
            filter: none;
  }
  .home-2 .home-2-1 .details {
    height: 14.5vh;
  }
  .home-2 .home-2-1 .details p {
    font-size: .675rem;
    line-height: .975rem;
    padding: .8rem;
  }
  .home-2 .home-2-2 {
    padding: .25rem 0;
  }
  .home-2 .home-2-2 div {
    padding: .1rem .075rem;
  }
  .home-2 .home-2-2 div p {
    font-size: .675rem;
    padding: .3rem .45rem;
  }
  .home-2 .home-2-3 p {
    padding: .625rem 1.25rem;
    font-size: .675rem;
    line-height: .95rem;
  }
  .home-2 .home-2-3 p a {
    font-size: .725rem;
  }
  .home-2 .home-2-3 p #break-2 {
    display: block;
  }
  .home-3 .home-3-1 {
    width: 82vw;
    padding: 1rem .75rem 1.5rem .75rem;
  }
  .home-3 .home-3-1 #ad {
    font-size: .9rem;
    padding: 0;
    line-height: 1.5rem;
  }
  .home-3 .home-3-1 #call {
    margin: 1.25rem auto;
    font-size: .95rem;
    padding: .5rem 1.25rem;
  }
  .home-3 .home-3-1 #call img {
    width: 1.25rem;
    padding-right: 0.15rem;
  }
  .home-3 .home-3-1 #note {
    font-size: 0.6rem;
    text-align: left;
  }
  .home-3 .home-3-1 #note #here-accnt {
    font-size: 0.625rem;
    font-weight: 500;
  }
  .home-3 .home-3-2 {
    margin-bottom: .75rem;
    padding: 1rem 0;
  }
  .home-3 .home-3-2 .home-3-2-1 {
    padding-right: 0;
  }
  .home-3 .home-3-2 .home-3-2-1 img {
    width: 36vw;
    border: 0;
  }
  .home-3 .home-3-2 .home-3-2-2 #address {
    font-size: .85rem;
    letter-spacing: 0.5px;
  }
  .home-3 .home-3-2 .home-3-2-2 a img {
    margin: .25rem 0;
    width: 1.5rem;
  }
  .home-3 .home-3-2 .home-3-2-2 #contact {
    font-size: .725rem;
  }
  .home-3 .footer {
    height: 10vh;
    font-size: 0.55rem;
    letter-spacing: 0.25px;
  }
  .home-3 .footer a {
    font-size: .55rem;
  }
}
/*# sourceMappingURL=style-company.css.map */