@import url('https://fonts.googleapis.com/css?family=Exo+2:400,600,800,900');

/* Reset css */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'Exo 2', 'NanumSquare', sans-serif;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  line-height: 1.5em;
}

/* header */

.header-section {
  border-right: none;
  border-left: none;
  position: relative;
}

#header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  background: rgba(255,255,255,1);
  box-shadow: 0 0 3px 5px rgba(0,0,0,.1);
  z-index: 5000;
}

#header:after {
  content: '';
  display: block;
  clear: both;
}

#header .top-logo {
  float: left;
  padding-left: 30px;
  width: 112px;
  height: 80px;
  display: block;
  cursor: pointer;
  background: url(../img/top-logo.png) no-repeat center center;
  background-size: 112px 60px;
}

#header .main-menu {
  position: relative;
  float: right;
  padding-right: 30px;
  line-height: 80px;
}

#header .main-menu li {
  list-style: none;
  float: left;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  padding-left: 1.2em;
}

#header .mobile-menu-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
}

#header .mobile-menu-icon i {
  color: #0067c6;
  font-size: 1.4em;
  text-align: center;
  line-height: 50px;
}

.mobile-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.7);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 50px;
}

.mobile-menu li {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 1.2em;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.mobile-menu nav .mobile-nav a {
  color: #fff;
}

.mobile-menu a:hover, .offcanvas a:focus {
  color: #fff;
}

.mobile-menu .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  margin-left: 50px;
}

.mobile-menu .closebtn i {
  font-size: 1.2em;
  color: #fff;
}


/* video style */

.no-video .video-container video,
.touch .video-container video {
  display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
  display: block !important;
}
.video-container {
  position: relative;
  bottom: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: url(../img/poster.jpg) no-repeat center center;
  background-size: cover;
}

.down-bt {
  width: 100%;
  height: 50px;
  display: block;
  position: relative;
  text-align: center;
}

.down-bt i {
  padding-bottom: 20px;
  color: #00458b;
  font-size: 3em;
  cursor: pointer;
}

.video-container .poster img {
  width: 100%;
  bottom: 0;
  position: absolute;
}
.video-container .filter {
  z-index: 100;
  position: absolute;
  background: url(../img/dot_white.png);
  opacity: .5;
  width: 100%;
}
.video-container .title-container {
  z-index: 1000;
  position: absolute;
  top: 35%;
  width: 100%;
  text-align: center;
  color: #333;
}
.video-container .title-container h3 {
  font-size: 1.5em;
  margin-bottom: .2em;
  transition: all 1s;
}
.video-container .title-container h1 {
  font-size: 4em;
  margin-bottom: .5em;
  font-weight: 900;
  transition: all 1s;
}
.video-container .description .inner {
  font-size: 1em;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.video-container .description .inner:after {
  content: '';
  display: block;
  clear: both;
}

.video-container .description .inner li {
  list-style: none;
  width: 14.28%;
  min-height: 150px;
  float: left;
  padding: 5px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
}

.video-container .description .inner li img {
  width: 100%;
}

.video-container .description .inner li span {
  color: #2145a1;
  font-size: 1.2em;
  font-weight: 600;
}

.video-container .link {
  position: absolute;
  bottom: 3em;
  width: 100%;
  text-align: center;
  z-index: 1001;
  font-size: 2em;
  color: #fff;
}
.video-container .link a {
  color: #fff;
}
.video-container video {
  position: absolute;
  z-index: 0;
  bottom: 0;
}
.video-container video.fillWidth {
  width: 100%;
}

/* section 공통 */

.contents h1 {
  font-size: 3em;
  text-align: center;
  transition: all 1s;
  padding-bottom: 1.5em;
  color: #0a2849;
  letter-spacing: -.005em;
  font-weight: 800;
}

.contents {
  position: relative;
  display: block;
  width: 100%;
  min-height: 600px;
  padding: 150px 0;
}

.wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.wrap .logo, .wrap .article, .wrap .map, .wrap .mapx2 {
  width: 50%;
  float: left;
  display: block;
  padding: 1em;
  box-sizing: border-box;
}

.wrap .mapx2 {
  display: none;
}

.wrap .map img, .wrap .mapx2 img {
  width: 100%;
}

.wrap .article {
  min-height: 280px;
  transition: all .5s;
}

.article h3 {
  font-size: 1.5em;
  padding-bottom: 1em;
}

.wrap:after {
  content: '';
  display: block;
  clear: both;
}

/* section1 DIGITAL OCEAN */

.section1 {
  background: url(../img/section1-bg.jpg) no-repeat center center;
  background-size: cover;
}

.section1 .logo {
  min-height: 280px;
  background: url(../img/logo-wave.gif) no-repeat center center;
  background-size: 500px 280px;
}

/* section2 SHIPNET */

.section2 {
  background: #71edf9;
  background-size: cover;
}

.section2 .logo {
  min-height: 280px;
  background: url(../img/logo-shipnet.png) no-repeat center center;
  background-size: 500px 280px;
}

.section2-sub {
  background: url(../img/section2-bg.jpg) no-repeat center bottom;
  background-size: cover;
}

/* section3 SERVICE */

.section3 {
  background: url(../img/section3-bg.jpg) no-repeat center bottom;
  background-size: cover;
}

.section3 .service-wrap:after {
  content: '';
  display: block;
  clear: both;
}

.section3 .service-wrap li {
  position: relative;
  list-style: none;
  width: 50%;
  max-height: 192px;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  float: left;
  transition: .5s all;
}

.section3 .service-wrap li .wrap {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(255,255,255,.5);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0 0 3px 0px rgba(0,0,0,.1);
}

.section3 .service-wrap li .wrap .download-bt {
  position: absolute;
  font-size: .8em;
  bottom: 1.5em;
  right: 1.5em;
  padding: .3em .5em;
  color: #fff;
  background: #f13437;
  border: 1px solid #dd2d30;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  cursor: pointer;
}

.section3 .service-wrap li .wrap .download-bt:hover {
  background: #333;
  border: 1px solid #000;
}

.section3 .service-wrap li .wrap .fake-position {
  position: absolute;
  top: -80px;
  left: 0px;
  width: 0px;
  height: 0px;
  background: #333;
  display: block;
}

.section3 .service-wrap li .wrap .download-bt i {
  margin-right: .3em;
}

.section3 .service-wrap li:last-child {
  width: 100%;
}

.section3 .service-wrap li .wrap .icon {
  display: block;
  width: 30%;
  float: left;
  max-width: 152px;
}

.section3 .service-wrap li .wrap .icon img {
  border-radius: 10px;
}

.section3 .service-wrap li .wrap .content {
  display: block;
  width: 70%;
  float: left;
  min-height: 152px;
  padding-left: 1.4em;
  box-sizing: border-box;
}

.section3 .service-wrap li .wrap .content h3 {
  display: block;
  font-size: 1.5em;
  padding-bottom: .2em;
  color: #1f335e;
}

.section3 .service-wrap li .wrap .content h4 {
  display: block;
  font-size: .8em;
  font-weight: 300;
  padding-bottom: .5em;
}

.section3 .service-wrap li .wrap .content p {
  font-size: 1em;
  color: #3e578d;
}

/* section4 DIRECTION */

.section4 {
  background: url(../img/section4-bg.jpg) no-repeat center bottom;
  background-size: cover;
}

.section4 .contents h1 {
  color: #fff;
}

.section4 .contents p {
  color: #ededed;
}

.article .map-icon {
  width: 100%;
  margin: 20px auto;
}

.article .map-icon:after {
  content: '';
  display: block;
  clear: both;
}

.article .map-icon li {
  width: 105px;
  height: 105px;
  margin: 0 5px;
  display: block;
  float: left;
}

.article .map-icon .kakao-map {
  width: 105px;
  height: 105px;
  display: block;
  background: url(../img/kakao-map.png) no-repeat center center;
  background-size: 105px 105px;
}

.article .map-icon .naver-map {
  width: 105px;
  height: 105px;
  display: block;
  background: url(../img/naver-map.png) no-repeat center center;
  background-size: 105px 105px;
}

/* section5 CONTACT */

.section5 {
  background: url(../img/section5-bg.jpg) no-repeat center bottom;
  background-size: cover;
}

form {
  width: 100%;
  max-width: 1024px;
  text-align: center;
  margin: 0 auto;
}

.input_area {
  width: 100%;
}

.input_area:after {
  content: '';
  display: block;
  clear: both;
}

.input_area .info, .input_area .message {
  width: 50%;
  float: left;
  padding: 0 1em;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}

form .submit {
  display: block;
  width: 100%;
  padding: 0 1em;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}

form .submit input {
  background: #0093d9;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
}

form .submit input:hover {
  background: #0071a7;
}

.contact {
  content: '';
  display: block;
  clear: both;ƒ
}

input,textarea {
  border: 0;
  outline: 0;
  padding: 1em;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  display: block;
  width: 100%;
  font-size: 1.1em;
  margin-top: 1em;
  box-shadow: 0 0 3px 2px rgba(0,0,0,.1);
  box-sizing: border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing: border-box;
}

input::placeholder ,textarea::placeholder {
  color: #ededed;
}

.submit input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  min-height: 200px;
}

/* section6 BLOG */

.section6 {
  background: url(../img/section6-bg.jpg) no-repeat center bottom;
  background-size: cover;
}

.section6 .wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 1024px;
  min-height: 400px;
  background: rgba(255,255,255,.4);
  border-radius: 10px;
}

.section6 .wrap .article {
  padding: 3em 2em;
  box-sizing: border-box;
  width: 100%;
}

.section6 .wrap .article li {
  list-style: none;
  padding: .7em 0;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

/* navigation */

nav li {

}

nav li a {
    color: #333;
    font-weight:500;
    text-decoration: none;
    cursor: pointer;
}

a.nav-active {
    border-bottom: 2px solid #2ebdff;
}

/* footer */
footer {
  width: 100%;
  min-height: 100px;
  padding: 20px 0;
  background: #333;
  display: block;
  color: #ededed;
  text-align: center;
}

footer p {
  font-size: .8em;
}

footer .logo {
  width: 100%;
  height: 40px;
  background: url(../img/footer-logo.png) no-repeat center center;
  background-size: 56px 30px;
}

@media only screen and (min-width: 1441px) {
  .contents {
    position: relative;
    display: block;
    width: 100%;
    min-height: 1080px;
    padding-top: 300px;
    box-sizing: border-box;
  }

  .section3 .contents {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 1440px) {
  .contents {
    min-height: 900px;
  }
}

@media only screen and (min-width: 1140px) {
  p {
    font-size: 1.2em;
  }
  .video-container .title-container h1 {
    font-size: 5em;
  }
  .video-container .title-container h3 {
    font-size: 2em;
  }
  .contents h1 {
    font-size: 4em;
  }
}

@media only screen and (max-width: 1024px) {

  .contents {
    min-height: 500px;
  }

  .wrap .logo, .wrap .article {
    width: 100%;
  }

  .wrap .article p {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .wrap .article h3 {
    text-align: center;
  }

  .wrap .map, .wrap .mapx2 {
    width: 100%;
    text-align: center;
  }

  .wrap .map img, .wrap .mapx2 img {
    width: 80%;
    max-width: 360px;
  }

  .wrap .article .map-icon {
    width: 230px;
    margin: 20px auto;
  }

}

@media only screen and (max-width: 950px) {
  .section3 .service-wrap li {
    width: 100%;
  }
}

@media only screen and (max-width: 730px) {
  #header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 0 3px 5px rgba(0,0,0,.1);
    z-index: 5000;
  }

  #header .top-logo {
    display: block;
    width: 100%;
    height: 50px;
    cursor: pointer;
    background: url(../img/top-logo.png) no-repeat center center;
    background-size: 93px 50px;
  }

  #header .main-menu {
    display: none;
  }

  #header .mobile-menu-icon {
    display: inline;
  }

  .video-container .description .inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .video-container .description .inner .list-break-1, .video-container .description .inner .list-break-2 {
    width: 100%;
  }

  .video-container .description .inner .list-break-1 li {
    width: 20%;
  }

  .video-container .description .inner .list-break-2 li {
    width: 20%;
    float: none;
    text-align: center;
    display: inline-block;
  }

  .video-container .description .inner .list-break-2 {
    margin: 0 auto;
  }

  video, .video-container .filter {
    display: none;
  }

}

/* below iphone plus */

@media only screen and (max-width: 414px) {

  .contents .wrap {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .video-container .description .inner li {
    min-height: 0;
  }

  .video-container .description .inner li span {
    font-size: .8em;
  }

  .contents h1 {
    font-size: 2.5em;
    padding-bottom: 1em;
  }

  .contents {
    position: relative;
    display: block;
    width: 100%;
    min-height: 500px;
    padding: 120px 0;
  }

  .section1 .logo {
    min-height: 168px;
    background: url(../img/logo-wave.gif) no-repeat center center;
    background-size: 300px 168px;
  }

  .section2 .logo {
    min-height: 168px;
    background: url(../img/logo-shipnet.png) no-repeat center center;
    background-size: 300px 168px;
  }

  .article h3 span {
    display: block;
    padding-top: .5em;
  }

  .section3 .service-wrap li .wrap .icon, .section3 .service-wrap li .wrap .content {
    width: 50%;
  }

  .section3 .service-wrap li .wrap .content {
    text-align: right;
    padding: 0;
  }

  .section3 .service-wrap li .wrap .content h3 {
    font-size: 1.1em;
  }

  .section3 .service-wrap li .wrap .content p {
    font-size: .7em;
  }

  .input_area .info, .input_area .message {
    width: 100%;
  }

}

/* for Retina */

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

  #header .top-logo {
    float: left;
    padding-left: 30px;
    width: 112px;
    height: 80px;
    background: url(../img/top-logo-x2.png) no-repeat center center;
    background-size: 112px 60px;
  }

  .wrap .map {
    display: none;
  }

  .wrap .mapx2 {
    display: inline;
  }

  .article .map-icon .kakao-map {
    width: 105px;
    height: 105px;
    display: block;
    background: url(../img/kakao-map-x2.png) no-repeat center center;
    background-size: 105px 105px;
  }

  .article .map-icon .naver-map {
    width: 105px;
    height: 105px;
    display: block;
    background: url(../img/naver-map-x2.png) no-repeat center center;
    background-size: 105px 105px;
  }

  footer .logo {
    background: url(../img/footer-logo-x2.png) no-repeat center center;
    background-size: 56px 30px;
  }

}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  @media only screen and (max-width: 730px) {
    #header {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      min-height: 50px;
      background: rgba(255,255,255,.8);
      box-shadow: 0 0 3px 5px rgba(0,0,0,.1);
      z-index: 5000;
    }

    #header .top-logo {
      float: left;
      padding: 0;
      width: 100%;
      height: 50px;
      background: url(../img/top-logo-x2.png) no-repeat center center;
      background-size: 93px 50px;
    }
  }
}
a:link { color: #000000; text-decoration: none}

