/* colors
--------------------------------- */


/* btn
--------------------------------- */

/* screen width
--------------------------------- */

/* transition
--------------------------------- */
/* reset
-------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,
input,textarea,p,blockquote,th,td{
  margin: 0;
  padding: 0;
}
article,aside,details,figcaption,figure,footer,
header,hgroup,main,nav,section,summary{
  display: block;
}
audio,canvas,video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
}
a:focus {
}
a:active,
a:hover {
  outline: 0;
}
b,strong {
  font-weight: bold;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-style: normal;
}
code,kbd,pre,samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
img,object,embed {
  vertical-align: top;
}
figure {
  margin: 0;
}
button,input,select,textarea {
  margin: 0;
  font-size: 100%;
  font-family: inherit;
}
button,input {
  line-height: normal;
}
button, select {
  text-transform: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
h1,h2,h3,h4,h5,h6 {
  font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,th {
  text-align: left;
}
li {
  list-style-type: none;
}
em{
  font-weight:bold;
}
/*
 ::selection
---------------------------------------------------*/
::-moz-selection {
  background: #6565AC;
  color: #fff;
}
::selection {
  background: #6565AC;
  color: #fff;
}
::-moz-selection {
  background: #6565AC;
  color: #fff;
}

/*
 webkit-scrollbar
---------------------------------------------------*/
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #1D2129;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
   /* box-shadow: inset 0px 0px 2px rgba(200,200,200,1); */
}

::-webkit-scrollbar-track-piece {
  background-color: #f2f2f2 ;
}

/* base
-------------------------------------------------- */
body{
  font-size: 14px;
  line-height: 1.7;
  color: #1F1F1F;
  overflow-x: hidden;
}
a{
  text-decoration:none;
}
/* classes
-------------------------------------------------- */
.container{
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1040px) {
  .container{
    width: 95%;
  }
}


.content{}

.content-title{
  color: #1F1F1F;
  font-size: 36px;
  text-align: center;
  margin-bottom:1em;
  padding-top: 2em;
  font-weight: normal;
}


.row{}

.row:before,
.row:after{
  display: table;
  content: " ";
}

.row:after{
  clear: both;
}

.row .col{
  float: left;
}

.table{
  display: table;
  width: 100%;
}
.table .cell{
  display: table-cell;
}
.table .cell.vam{
  vertical-align: middle;
}


.btn{
  display: inline-block;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 5px;
  transition: background-color .205s;
}
.btn-primary{
  background-color: #6565AC;
}
.btn-primary:hover{
  background-color: #8484AF;
}
.btn-secondly{
  background-color: #A797C9;
}
.btn-secondly:hover{
  background-color: #B8AECD;
}
.btn i{
  margin-right: .5em;
}

.btn-group .btn{
  border-radius: 0;
}
.btn-group .btn:first-child{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.btn-group .btn:last-child{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.btn-group .btn + .btn{
  border-left: 1px solid rgba(255,255,255,.5);
}

/* styles
------------------------------------------------------------ */
#wrap{
  background-color: #fff;
}

/* navbar
-------------------------------------------------- */
#navbar{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  overflow: hidden;
  z-index: 1000;
}

#navbar .container{
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  #navbar .container{
    width: 95%;
  }
}


#navbar .bland{
  float:left;
  display: table;
}

#navbar .bland a{
  display: table-cell;
  vertical-align: middle;
  height: 84px;
}
#navbar .bland a img{
  transition: opacity .5s ease-out;
}
#navbar .bland a:hover img{
  opacity: .6;
  transition-duration: 0s;
}

#navbar .navbar-btns{
  float:right;
  padding-top: 20px;
  line-height: 44px;
}

#navbar .navbar-btns li{
  display: inline-block;
  margin-left: 1em;
}

#navbar .navbar-btns a{
  font-size: 15px;
  color: #1F1F1F;
}
#navbar .navbar-btns a:hover{
  opacity: .6;
  text-decoration: underline;
}

#navbar .navbar-btns .btn{
  height: 44px;
  border: 3px solid #1F1F1F;
  border-radius: 22px;
  font-size: 13px;
  line-height: 41px;
  padding: 0 3em;
}
#navbar .navbar-btns .btn:hover{
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  #navbar,
  #navbar .bland a{
    height: 50px;
  }
  #navbar .bland a img{
    height: 20px;
  }
  #navbar .navbar-btns{
    padding-top: 10px;
    line-height: 30px;
  }
  #navbar .navbar-btns a{
    font-size: 12px;
  }
  #navbar .navbar-btns .btn{
    height: 30px;
    line-height: 27px;
    padding: 0 1.5em;
  }
}
@media screen and (max-width: 400px) {
  #navbar .navbar-btns .btn-login{
    display: none;
  }
}


#navbar .navbar-links{
  display: none;
}


#navbar.fixed{
  position: fixed;
  height: 60px;
  background-color: rgba(249, 250, 252, .9);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#navbar.fixed.show{
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#navbar.fixed .bland a{
  height: 60px;
}
#navbar.fixed .bland a img{
  height: 30px;
}

#navbar.fixed .navbar-btns{
  display: none;
}
#navbar.fixed .navbar-links{
  display: block;
}
#navbar .navbar-links{
  float:right;
  padding-top: 5px;
  line-height: 48px;
}

#navbar .navbar-links .s{
  display: none;
}

#navbar .navbar-links li{
  display: inline-block;
  margin-left: 1em;
}
#navbar .navbar-links li .btn{
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  #navbar.fixed{
    height: 85px;
  }
  #navbar.container{
    width: 100%;
  }
  #navbar.fixed .bland{
    float: none;
    width: 100%;
    text-align: center;
  }
  #navbar.fixed .bland a{
    height: 30px;
  }
  #navbar.fixed .bland a img{
    height: 20px;
  }
  #navbar .navbar-links{
    float: none;
    text-align: center;
    padding-top: 0;
  }

  #navbar .navbar-links li{
    margin-left: .5em;
  }

  #navbar .navbar-links .p{
    display: none;
  }

  #navbar .navbar-links .s{
    display: inherit;
  }
}

@media screen and (max-width: 374px) {
  .navbar-links{
    display: none;
  }
  #navbar.fixed{
    height: 30px;
  }
}


/* #key
-------------------------------------------------- */
#key{
  padding-top: 84px;
  background-image: linear-gradient(-180deg, #FFB500 4%, #FFE676 100%);
}


#key .container{
  padding: 3% 0 20%;
}

#key .body{
  float: left;
  width: 48%;
  padding-top: 8%;
}

#key .fig{
  width: 52%;
  float: right;
  margin-bottom: 20px;
}

#key .fig img{
  width: 100%;
  max-width: 600px;
}

#key .copy{
  margin-bottom: 1.2em;
  color: #6565AC;
  font-size: 26px;
  font-weight: normal;
}

#key .copy .s{
  display: none;
}


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

  #key .container{
    text-align: center;
    padding-bottom: 30%;
  }

  #key .body,
  #key .fig{
    float: none;
    width: 100%;
    padding-top: 0;
  }
}

@media screen and (max-width: 500px) {
  
  #key .copy .s{
    display: inherit;
  }
}

#key .btn{
  height: 60px;
  padding: 0 2em;
  line-height: 60px;
  font-size: 20px;
}



#screens{
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  padding-top: 35%;
  margin-top: -15%;
  overflow-x: hidden;
}

#screens img{
  position: absolute;
  top:0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: 30px;
  height: 100%;
  max-height: 100%;
  width: auto;
}

@media screen and (max-width: 1040px) {
  #screens{
    margin-top: -20%;
    padding-top: 45%;
  }
}

/* #concept
-------------------------------------------------- */
#concept{}

#concept .container{
  padding: 20% 0;
}
@media screen and (max-width: 1040px) {
  #concept .container{
    padding: 25% 0;
  }
}

#concept .content{
  max-width: 700px;
  margin: 0 auto;
}

#concept .content-title{
  font-size: 22px;
}

#concept .content p{
  font-size: 16px;
  margin: 0 20px 30px;
}

/* #point
-------------------------------------------------- */
#point{
  background-color: #EFF2F9;
}
#point .container{
  margin-top: -10%;
}

#point .point{
  max-width: 780px;
  margin: 0 auto 40px;
  background: #FFFFFF;
  box-shadow: 0 10px 26px 0 rgba(167,151,201,0.60);
}
#point .point:first-child{
  -webkit-transform: translateY(-45px);
          transform: translateY(-45px);
  margin-bottom:-5px;
}
#point .point:last-child{
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  margin-bottom:0;
  margin-top:-40px;
}

#point .point .fig{
  text-align: center;
  width: 38.5%;
  height: 300px;
  background-color: #6565AC;
}
#point .point.r .fig{
  float: right;
}

#point .point .body{
  width: 61.5%;
  padding: 45px 60px 0;
}
#point .point .body h4{
  padding-left: 55px;
  font-size: 26px;
  line-height: 1.5;
}
#point .point .body .no{
  height: 86px;
  background: no-repeat left 50%;
  margin-bottom: 2em;
}
#point #point01 .body .no{ background-image: url(/assets/img/no_point01-c1295fb23f95bfad9503a188dec584a6.svg); }
#point #point02 .body .no{ background-image: url(/assets/img/no_point02-9abc5fb5545701c5171fbfdcddff5ba7.svg); }
#point #point03 .body .no{ background-image: url(/assets/img/no_point03-5fbf98b11bf66a0bda64dc4dba948399.svg); }
#point #point04 .body .no{ background-image: url(/assets/img/no_point04-9991baf5d3b93338eb00ff5e89e43253.svg); }

@media screen and (max-width: 768px) {
  #point .point .fig{
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  #point .point.l .col,
  #point .point.r .col{
    float: none;
    width: 100%;
  }
  #point .point .fig{
    height: 300px;
  }
  #point .point .body{
    padding-bottom:45px;
  }
}


/* #functions
-------------------------------------------------- */
#functions{
  background-color: #A797C9;
}
#functions .container{
  padding-top: 60px;
}

#functions .content-title{
  color: #fff;
  margin-bottom:3em;
}

#functions .main .func{
  margin-bottom: 100px;
}

#functions .main .func .col{
  width: 50%;
}

#functions .main .func .fig{
  position: relative;
  height: 0;
  padding-top: 40%;
}

@media screen and (max-width: 1040px){
  #functions .main .func .fig{
    margin-top: 5%;
  }
}

@media screen and (max-width: 768px){
  #functions .main .func .fig{
    margin-top: 20%;
  }
}

#functions .main .func.r .fig{
  float: right;
}

#functions .main .func .fig img{
  position: absolute;
  width: auto;
  height: 100%;
  max-height: 383px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#functions .main .func.l .fig img{
  left: -50%;
}
#functions .main .func.r .fig img{
  right: -50%;
}

#functions .main .func .body{
  float: right;
  padding: 0 20px;
}
#functions .main .func.r .body{
  float: left;
}

#functions .main .func .body .icon{
  margin-bottom: 1em;
}

#functions .main .func .body h4{
  color: #fff;
  font-size: 24px;
  margin-bottom: .5em;
}

#functions .main .func .body .lead{
  color: #fff;
  font-size: 18px;
  margin-bottom: 1em;
}

#functions .main .func .body .body{
  color: #322F4E;
}

@media screen and (max-width: 600px){
  #functions .main .func.l .col,
  #functions .main .func.r .col{
    float: none;
    width: 100%;
  }

  #functions .main .func .fig{
    margin-top: 0;
    padding-top: 0;
    height: auto;
  }

  #functions .main .func.l .fig img,
  #functions .main .func.r .fig img{
    position: relative;
    right: auto;
    left: 0;
    top:0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    width: 100%;
    height: auto;
  }

  #functions .main .func .body{
    margin-bottom: 30px;
  }
}

#functions .sub{
  width: 940px;
  margin: 0 auto; 
  -webkit-transform: translateY(60px); 
          transform: translateY(60px);
  margin-bottom:0;
  margin-top:-60px;
}
#functions .sub .row{
  margin-left:-20px;
}

@media screen and (max-width: 980px) {
  #functions .sub{
    width: 620px;
  }
}

@media screen and (max-width: 660px) {
  #functions .sub{
    width: 300px;
  }
}

#functions .sub .func{
  width: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  background-color: #E3E8F3;
  border-radius: 4px;
}

#functions .sub .func .fig{
}

#functions .sub .func .body{
  color: #322F4E;
  padding: 30px 20px;
}

#functions .sub .func .body h4{
  font-size: 18px;
}



/* #support
-------------------------------------------------- */
#support{
  background-color: #EFF2F9;
  text-align: center;
}

#support .container{
  padding: 60px 0 100px;
}

#support .content-title{
  margin-bottom: .5em;
}
#support .lead{
  font-size: 22px;
  margin-bottom: 40px;
}

#support .support-wrap{
  width: 720px;
  margin: 0 auto;
}

@media screen and (max-width: 760px) {
  #support .support-wrap{
    width: 300px;
  }
}

#support .support-wrap .row{
  margin-left: -120px;
}

#support .support-wrap .support{
  width: 300px;
  margin-left: 120px;
  margin-bottom: 60px;
}

#support .support h4{
  color: #A797C9;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 1em;
}
#support .support h4 span{
  display: inline-block;
  padding-top: 10px;
}
#support .support h4:before{
  content: '';
  display: inline-block;
  width: 80px;
  height: 80px;
  background: no-repeat 50% 50%;
  vertical-align: top;
  margin-right: 20px;
}

#support .support figure{
  position: relative;
}

#support .support .tool{
  position: absolute;
  bottom: 0;
  right: -10px;
}

#support .support.call h4:before{
  background-image: url(/assets/img/support_icon_call-3d3de6d6a0d114d7a9f8232edbf30d70.svg);
}
#support .support.chat h4:before{
  background-image: url(/assets/img/support_icon_chat-758d9ae9e60d00a7970e4157bb7676f3.svg);
}


/* #contact
-------------------------------------------------- */
#interview{
  background-color: #A797C9;
  padding: 2em 0;
}

#interview ul{
  max-width: 600px;
  margin: 0 auto;
}

#interview .interview{
  color: #fff;
  margin-bottom: 2em;
}
#interview .interview:last-child{
  margin-bottom: 0;
}

#interview .interview a{
  color: #fff;
  display: block;
  transition: opacity .205s;
}

#interview .interview a:hover{
  opacity: .8;
}

#interview .interview .no{
  font-size: 12px;
  margin-bottom: .5em;
}
#interview .interview figure{
  margin-bottom: 1em;
}
#interview .interview figure img{
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}

#interview .interview h3{
  font-weight: normal;
  border-left: 3px solid #fff;
  padding-left: 20px;
}



/* #contact
-------------------------------------------------- */
#contact{
  position: relative;
  background-image: linear-gradient(-90deg, #B5DCF5 0%, #E4F2FB 100%);
}

#contact .container{
  padding: 10% 0;
  min-height: 300px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#contact .logo{
  margin-bottom: 60px;
}

#contact .btn{
  height: 60px;
  padding: 0 2em;
  line-height: 60px;
  font-size: 20px;
}
#contact:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top:0;
  background: url(/assets/img/obm-5d20912d6cee7b4f889c546d4b8d0cf9.svg) 50% 80% no-repeat;
  background-size: 90%;
  opacity: .3;
  z-index: 0;
}

/* #page-foot
-------------------------------------------------- */
#page-foot{
  background-color: #1D2129;
}

#page-foot .container{
  padding: 3% 0 5%;
  color: #fff;
}

#page-foot .foot-links{
  margin-bottom: 1em;
}

#page-foot .foot-links li{
  display: inline-block;
}

#page-foot .foot-links a{
  color: #fff;
  opacity: 0.5;
  transition: opacity .205s;

}
#page-foot .foot-links a:hover{
  opacity: 0.8;
}

#page-foot .info{
  line-height: 30px;
  font-size: 0.9em;
  margin-bottom: 1em;
}
#page-foot .info .logo{
  margin-right: 10px;
  color: #fff;
  opacity: 0.5;
  transition: opacity .205s;
}
#page-foot .info .logo:hover{
  opacity: 0.8;
}

#page-foot .info .div{
  color: #fff;
  opacity: 0.5;
}


#page-foot .info br {
  display: none;
}
@media screen and (max-width: 400px) {
  #page-foot .info br {
    display: inherit;
  }
}


#page-foot .contact{
  margin-bottom: .5em;
}

#page-foot .contact .btn{
  opacity: .8;
  height: 44px;
  line-height: 44px;
  padding-left: 1em;
  padding-right: 1em;
}
#page-foot .contact .btn.main{
  padding-right: .5em;
}
#page-foot .contact .btn.addon{
  padding-left: .5em;
  padding-right: .5em;
}
#page-foot .contact .btn:hover{
  opacity: .7;
}
#page-foot #copyright{
  opacity: .5;
  text-align: center;
  font-size: 0.9em;
}

