/*
@font-face {
  font-family: 'magistralcbold';
  src: url('fonts/magistralc-bold-webfont.eot');
  src: url('fonts/magistralc-bold-webfont.eot?#iefix') format('embedded-opentype'),
       url('fonts/magistralc-bold-webfont.woff2') format('woff2'),
       url('fonts/magistralc-bold-webfont.woff') format('woff'),
       url('fonts/magistralc-bold-webfont.svg#magistralcbold') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/


/* RESETOR */
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, font, 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{margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;}
body{font-weight:normal; line-height:23px;}
a{cursor:pointer; text-decoration:none;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after, q:before, q:after{content:''; content:none;}
:focus{outline:0;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{border-collapse:collapse; border-spacing:0;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
img{max-width:100%; height:auto;}


/*
font-family: 'Lato', sans-serif;
font-family: 'Maven Pro', sans-serif;
font-family: 'magistralcbold';
*/



/*COMMONS*/
html {
  overflow-x: hidden;
  /* Adjust font size */
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
  /* Font varient */
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}


body{
  color: #687891;
  background: #ffffff;
  font-family: 'Lato', sans-serif;
}
a, a:visited, a:focus, a:active {
	color: royalblue;
  outline: 0;
  text-decoration: none;
}
a:hover {
	color: midnightblue;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}



h1,h2,h3,h4,h5,h6{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
}






a.button,
button.button{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  border:none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  background: #02d072;
  border-radius: 4px;
  padding: 10px 20px;
  color: #fff;
  background: #02d072;
  background: -moz-linear-gradient(45deg,  rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
a.button:hover,
button.button:hover{
  text-decoration: none;
}
a.button.blue,
button.button.blue{
  background: #009fd5;
}
a.button.red,
button.button.red{
  background: #d50000;
}



.padding-v{
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-v-t{
  padding-top: 60px;
}
.padding-v-b{
  padding-bottom: 60px;
}
.padding-v-half{
  padding-top: 30px;
  padding-bottom: 30px;
}
.padding-v-t-half{
  padding-top: 30px;
}
.padding-v-b-half{
  padding-bottom: 30px;
}


.dtable{
  display: table;
  height: 100%;
}
.dtable .dcell{
  display: table-cell;
  vertical-align: middle;
}
.dtable .dcell.bottom{
  vertical-align: bottom;
}



.field-wrap{
  margin-bottom: 14px;
}
.field-wrap.tradio{
  height: 50px;
}
.field-wrap.nomargin{
  margin-bottom: 0;
}
.field-wrap.submitter{
  width: 100%;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
}
.field-wrap.fl{
  float: left;
}
.field-wrap.fr{
  float: right;
}
.field-wrap.il-margin{
  padding-right: 7px;
}
.field-wrap.ir-margin{
  padding-left: 7px;
}
.field-wrap.i20{
  width: 20%;
}
.field-wrap.i30{
  width: 30%;
}
.field-wrap.i40{
  width: 40%;
}
.field-wrap.i50{
  width: 50%;
}
.field-wrap.i60{
  width: 60%;
}
.field-wrap.i70{
  width: 70%;
}
.field-wrap.i80{
  width: 80%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select{
  background: #fff;
  border:2px solid #687891;
  color: #687891;
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  padding: 15px 10px;
  height: 50px;
  border-radius: 4px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
textarea{

}
select{
  background-image:url('../media/select-arrow.png');
  background-repeat: no-repeat;
  background-position: right 15px center;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus{
  border:2px solid #009953;
  color: #009b55;
}

textarea{
  height: 120px;
}

  /* placeholder */
  input[type="text"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #687891;
  }
  input[type="text"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  textarea::-moz-placeholder {
    opacity: 1;
    color: #687891;
  }
  input[type="text"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #687891;
  }
  input[type="text"]:-moz-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="tel"]:-moz-placeholder,
  input[type="password"]:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #687891;
  }

    /* focus */
    input[type="text"]:focus::-webkit-input-placeholder,
    input[type="email"]:focus::-webkit-input-placeholder,
    input[type="tel"]:focus::-webkit-input-placeholder,
    input[type="password"]:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder {
      color: #009b55;
    }
    input[type="text"]:focus::-moz-placeholder,
    input[type="email"]:focus::-moz-placeholder,
    input[type="tel"]:focus::-moz-placeholder,
    input[type="password"]:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder {
      opacity: 1;
      color: #009b55;
    }
    input[type="text"]:focus:-ms-input-placeholder,
    input[type="email"]:focus:-ms-input-placeholder,
    input[type="tel"]:focus:-ms-input-placeholder,
    input[type="password"]:focus:-ms-input-placeholder,
    textarea:focus:-ms-input-placeholder {
      color: #009b55;
    }
    input[type="text"]:focus:-moz-placeholder,
    input[type="email"]:focus:-moz-placeholder,
    input[type="tel"]:focus:-moz-placeholder,
    input[type="password"]:focus:-moz-placeholder,
    textarea:focus:-moz-placeholder {
      color: #009b55;
    }

input[type="checkbox"]{
  float: left;
}
label.obs{
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #687891;
  float: left;
  margin-left: 5px;
  margin-top: 3px;
}



.site{
  overflow: hidden;
}

/* media commons */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {
  select{
    background-size: 14px;
  }
  .field-wrap.i20,
  .field-wrap.i30,
  .field-wrap.i40,
  .field-wrap.i50,
  .field-wrap.i60,
  .field-wrap.i70,
  .field-wrap.i80{
    width: 100%;
  }
  .field-wrap.fl,
  .field-wrap.fr{
    float: none;
  }
  .field-wrap.il-margin,
  .field-wrap.ir-margin{
    padding-left: 0;
    padding-right: 0;
  }
}














/* header */
.site-header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 12;
  background: #f7f7f7;
  border-top: 6px solid #009fd5;
  min-height: 70px;
  padding: 20px 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.site-header.paciente{
  border-top-color: #f2851a;
}
.site-header.profissional{
  border-top-color: #02d071;
}

  /* logo */
  .site-header .site-branding{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -134px;
    /*
    -webkit-transition: translate(-50%);
    -moz-transition: translate(-50%);
    -ms-transition: translate(-50%);
    -o-transition: translate(-50%);
    transform: translate(-50%);
    */
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .site-header .site-branding img{
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .site-header .site-branding img.mob{
    display: none;
  }

  /* menu */
  .site-header .main-navigation{
    float: left;
  }
  .site-header .main-navigation .menu-header-container{

  }
  .site-header .main-navigation ul.menu{

  }
  .site-header .main-navigation ul.menu li{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    float: left;
    color: #303b4d;
    margin: 0 ;
    text-transform: uppercase;
  }
  .site-header .main-navigation ul.menu li:first-child{
    margin-left: 40px;
  }
  .site-header .main-navigation ul.menu li a{
    color: #303b4d;
    display: block;
    padding: 20px 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .site-header .main-navigation ul.menu li a:hover{
    text-decoration: none;
  }

    /* menu right */
    .site-header .main-navigation.mr{
      float: right;
    }
    .site-header .main-navigation.mr ul.menu li:first-child{
      margin-right: 70px;
      margin-left: 0;
    }
    .site-header .main-navigation.mr ul.menu li:last-child{
      margin-right: 0;
    }

    /* menu colors */
    .site-header .main-navigation ul.menu li.menu-item-special a{
      background: #02d072;
      border-radius: 4px;
      color: #fff;
      background: #02d072;
      background: -moz-linear-gradient(45deg,  rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }
    .site-header .main-navigation ul.menu li.menu-item-special-2 a{
      border-radius: 4px;
      color: #fff;
      background: rgb(1,89,182); /* Old browsers */
      background: -moz-linear-gradient(45deg,  rgba(1,89,182,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b6', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }
    .site-header .main-navigation ul.menu li.menu-item-orange a{
      color: #f2851a;
    }
    .site-header .main-navigation ul.menu li.menu-item-green a{
      color: #02d071;
    }
    .site-header .main-navigation ul.menu li.menu-item-special.orange a{
      background: #f2851a;
    }
    .site-header .main-navigation ul.menu li.menu-item-special.special2 a{
      font-size: 16px;
    }


    /* menu toogle */
    .site-header .menu-toggle {
      border: 0;
      background: none;
      width: 38px;
      height: 32px;
      position: relative;
      float: left;
      top: 12px;
      left:0;
      /*z-index: 1;*/
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .menu-toggle span{
      position: absolute;
      width: 100%;
      height: 6px;
      background: #00253a;
      border-radius: 10px;
      left: 0;
      top: 0;
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .menu-toggle span::before,
    .site-header .menu-toggle span::after{
      content: '';
      position: absolute;
      width: 32px;
      height: 6px;
      top: 12px;
      left: 0;
      background: #009fd5;
      border-radius: 10px;
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .menu-toggle span::after{
      top: 24px;
      width: 26px;
      background: #00253a;
    }


    /* scrolled */
    .site-header.scrolled{
      padding: 10px;
      box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
    }
    .site-header.scrolled .site-branding{
      top: -3px;
      margin-left: -120px;
    }
    .site-header.scrolled .site-branding img{
      max-width: 240px;
    }
    .site-header.scrolled .main-navigation ul.menu li a{
      padding: 10px 20px;
    }
    .site-header.scrolled .menu-toggle{
      top: 5px;
    }



    /* main-navigation.clickable */
    .site-header .main-navigation.clickable{

    }
    .site-header .main-navigation.clickable .overlay {
      width: 100%;
      height: 100%;
      position: fixed;
      background: rgba(0,0,0,.8);
      background: rgba(10, 64, 123, 0.9);
      background: rgba(19, 25, 36, 0.95);
      z-index: 0;
      top: 0;
      left: 0;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .main-navigation.clickable .menu-wrap{
      position: fixed;
      width: 40%;
      height: 100%;
      background: #303b4d;
      left: -45%;
      top: 0;
      opacity: 0;
      padding-top: 69px;
      border-right: 2px solid #01b563;
      -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
      box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .main-navigation.clickable .menu-wrap .menu-close{
      position: absolute;
      right: 20px;
      top: 25px;
      color: #fff;
      cursor: pointer;
      font-size: 20px;
      line-height: 20px;
      opacity: .5;
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .main-navigation.clickable .menu-wrap .menu-close:hover{
      opacity: 1;
      -webkit-transform: rotate(540deg);
      -moz-transform: rotate(540deg);
      -ms-transform: rotate(540deg);
      -o-transform: rotate(540deg);
      transform: rotate(540deg);
    }
    .site-header .main-navigation.clickable .menu-wrap .logo-wrap{
      position: absolute;
      top: 20px;
      left: 20px;
    }
    .site-header .main-navigation.clickable .menu-wrap .logo-wrap img{
      max-width: 170px;
    }
    .site-header .main-navigation.clickable .menu-wrap .menu-wrap-wrap {
      overflow-x: hidden;
      overflow-y: auto;
      height: 100%;
      width: 100%;
      /*background: red;*/
      border-top: 1px solid #5b6980;
    }
    .site-header .main-navigation.clickable .menu-block{
      margin-top: 20px;
      margin-left: 40px;
      margin-right: 30px;
    }
    .site-header .main-navigation.clickable .menu-block h4{
      font-size: 20px;
      line-height: 20px;
      color: #fff;
      margin-bottom: 5px;
      padding-bottom: 5px;
      border-bottom: 1px solid #5b6980;
    }
    .site-header .main-navigation.clickable .menu-block h4 span{
      display: block;
      font-size: 14px;
    }
    .site-header .main-navigation.clickable .menu-block ul{

    }
    .site-header .main-navigation.clickable .menu-block ul li{
      width: 100%;
      font-size: 16px;
      line-height: 20px;
    }
    .site-header .main-navigation.clickable ul.menu li:first-child{
      margin: 0;
    }
    .site-header .main-navigation.clickable .menu-block ul li a{
      padding: 5px 0;
      display: inline-block;
      color: #fff;
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .site-header .main-navigation.clickable .menu-block ul li a:hover{
      text-decoration: none;
      color: #13abfb;
    }

      /* blocks */
      .site-header .main-navigation.clickable .menu-block.m3{
        margin-bottom: 20px;
      }
      .site-header .main-navigation.clickable .menu-block.m2 h4{
        color: #f2851a;
        border-bottom: 1px solid #f2851a;
      }
      .site-header .main-navigation.clickable .menu-block.m2 h4 a{
        color: #f2851a;
      }
      .site-header .main-navigation.clickable .menu-block.m2 h4 a:hover{
        text-decoration: none;
      }
      .site-header .main-navigation.clickable .menu-block.m3 h4{
        color: #02d071;
        border-bottom: 1px solid #02d071;
      }
      .site-header .main-navigation.clickable .menu-block.m3 h4 a{
        color: #02d071;
      }
      .site-header .main-navigation.clickable .menu-block.m3 h4 a:hover{
        text-decoration: none;
      }
      .site-header .main-navigation.clickable .menu-block.m2 ul li a:hover{
        color: #f2851a;
      }
      .site-header .main-navigation.clickable .menu-block.m3 ul li a:hover{
        color: #02d071;
      }


      /* active */
      .site-header .main-navigation.clickable.active .menu-wrap {
        opacity: 1;
        left: 0;
      }
      .site-header .main-navigation.clickable.active .overlay {
        opacity: 1;
        visibility: visible;
      }



/* media header */
@media only screen and (max-width: 1200px) {
  .site-header .container{
    width: 100%;
  }
  .site-header .main-navigation ul.menu li a{
    padding: 20px 10px;
  }
  .site-header .main-navigation.mr ul.menu li:first-child{
    margin-right: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .site-header{
    background: none;
    box-shadow: none;
    border-top: 3px solid #009fd5;
    border-bottom: 1px solid transparent;
  }
  .site-header .main-navigation{
    display: none;
  }
  .site-header .main-navigation.clickable {
    display: block;
  }
  .site-header .menu-toggle span,
  .site-header .menu-toggle span::before,
  .site-header .menu-toggle span::after{
    background: #fff;
  }
  .site-header .site-branding{
    position: relative;
    left: auto;
    margin-left: 0;
    float: right;
    top: 12px;
  }

  .site-header .site-branding img{
    width: 170px;
    display: none;
  }
  .site-header .site-branding img.mob{
    display: block;
  }
  .site-header.scrolled{
    padding: 10px 0;
    background: #303b4d;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
    border-bottom: 1px solid #5b6980;
  }
  .site-header.scrolled .site-branding,
  .site-header.scrolled .menu-toggle{
    top: 8px;
  }
  .site-header .main-navigation.clickable .menu-block{
    margin-left: 20px;
    margin-right: 20px;
  }
  .site-header .main-navigation.clickable .menu-wrap{
    width: 60%;
    left: -65%;
  }

  .site-header {
    padding: 10px 0;
    background: #303b4d;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
    border-bottom: 1px solid #5b6980;
  }
  .site-header .site-branding,
  .site-header .menu-toggle{
    top: 8px;
  }

}
@media only screen and (max-width: 768px) {
  .site-header .main-navigation.clickable .menu-wrap{
    width: 80%;
    left: -85%;
  }
}
@media only screen and (max-width: 480px) {
  .site-header .main-navigation.clickable .menu-wrap{
    width: 93%;
    left: -100%;
  }
}








/* page-banner */
.page-banner{
  background: #005285;
  overflow: hidden;
  width: 100%;
  padding: 240px 0 60px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.page-banner.dark{
  background: #00253a;
}
.page-banner h1{
  text-align: center;
  font-size: 38px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 30px;
}
.page-banner h1 .green{
  color: #02d071;
}
.page-banner h1 .orange{
  color: #f2851a;
}

  /* slideshow */
  .page-banner.slideshow{
    text-align: center;
    padding: 240px 0 50px 0;
    min-height: 850px;
  }
  .page-banner.slideshow h1{
    font-size: 44px;
    line-height: 44px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
  }
  .page-banner.slideshow h2{
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 28px;
    text-transform: uppercase;
    color: #02d072;
    margin-top: 15px;
  }
  .page-banner.slideshow .swiper-slide .item-wrap{
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .page-banner.slideshow .swiper-slide-active .item-wrap{
    opacity: 1;
  }


  /* cards */
  .page-banner .cards{
    width: 800px;
    margin: 120px auto 0 auto;
    border-radius: 10px;
    position: relative;
  }
  .page-banner .cards .card{
    width: 50%;
    float: left;
    position: relative;
    padding: 20px;
    text-align: left;
    height: 170px;
    border-bottom: 2px solid #00d072;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.7);
    z-index: 2;
  }
  .page-banner .cards .card .info-wrap{
    padding-left: 50px;
    margin-top: 40px;
  }
  .page-banner .cards .card h2{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    margin: 0;
    text-transform: none;
  }
  .page-banner .cards .card h2 span{
    color: #687891;
  }
  .page-banner .cards .card .ill-wrap{
    position: absolute;
    width: 199px;
    height: 203px;
    bottom: 0;
    right: -11px;
    z-index: 1;
    background-repeat: no-repeat;
  }
  .page-banner .cards .card .icon-wrap{
    position: absolute;
    left:-42.5px;
    top: 50%;
    margin-top: -42.5px;
    width: 85px;
    height: 85px;
    z-index: 1;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    font-size: 50px;
    line-height: 80px;
    background: rgb(0,140,76); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(0,140,76,1) 0%, rgba(2,206,114,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,140,76,1) 0%,rgba(2,206,114,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,140,76,1) 0%,rgba(2,206,114,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008c4c', endColorstr='#02ce72',GradientType=0 ); /* IE6-9 */
  }
  .page-banner .cards .white-shadow{
    position: absolute;
    width: 400px;
    height: 0;
    left: 50%;
    margin-left: -200px;
    bottom: 0;
    box-shadow: 0 30px 50px 30px rgba(255, 255, 255, 0.2);
    border-radius: 100%;
  }
  .page-banner .cards .linespro{
    position: absolute;
    top: -80px;
    height: 290px;
    left: 80px;
    width: 2px;
    background: #029854;
  }
  .page-banner .cards .linespac{
    position: absolute;
    top: -80px;
    height: 290px;
    right: 80px;
    width: 2px;
    background: #029854;
  }
  .page-banner .cards .card .cta-goto,
  .page-banner .cards .card .full{
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 4;
  }


    /* less margin */
    .page-banner .cards.lessmargin{
      margin: 70px auto 0 auto;
    }
    .page-banner .cards.lessmargin .linespro,
    .page-banner .cards.lessmargin .linespac{
      top: -65px;
    }

    /* card profissionais */
    .page-banner .cards .card.pro{
      background: #015ec5;
      border-radius: 10px 0 0 10px;
      box-shadow: -25px 20px 50px -15px rgba(0,0,0,.7);
    }

    /* card pacientes */
    .page-banner .cards .card.pac{
      background: #fff;
      border-radius: 0 10px 10px 0;
      text-align: right;
      z-index: 1;
    }
    .page-banner .cards .card.pac .info-wrap{
      padding-left: 0;
      padding-right: 50px;
      margin-top: 50px;
    }
    .page-banner .cards .card.pac h2{
      color: #f2851a;
    }
    .page-banner .cards .card.pac .ill-wrap{
      right: auto;
      left: 13px;
    }
    .page-banner .cards .card.pac .icon-wrap{
      left:auto;
      right:-42.5px;
      background: rgb(234,100,4); /* Old browsers */
      background: -moz-linear-gradient(top,  rgba(234,100,4,1) 0%, rgba(243,139,31,1) 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(top,  rgba(234,100,4,1) 0%,rgba(243,139,31,1) 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom,  rgba(234,100,4,1) 0%,rgba(243,139,31,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea6404', endColorstr='#f38b1f',GradientType=0 ); /* IE6-9 */
    }

    /* card pacientes - pacientes */
    .page-banner .cards .card.pro.alt{

    }
    .page-banner .cards .card.pro.alt .info-wrap{
      padding-left: 60px;
      margin-top: 50px;
    }
    .page-banner .cards .card.pro.alt h2{
      color: #fff;
    }
    .page-banner .cards .card.pac.alt{

    }
    .page-banner .cards .card.pac.alt .info-wrap{
      margin-top: 40px;
    }
    .page-banner .cards .card.pac.alt .ill-wrap{
      -webkit-transform: scaleX(-1);
      -moz-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      transform: scaleX(-1);
    }


    /* card profissional - profissionais */
    .page-banner .cards .card.pac.alt.alt2 .icon-wrap{
      background: rgb(0,140,76); /* Old browsers */
      background: -moz-linear-gradient(top,  rgba(0,140,76,1) 0%, rgba(2,206,114,1) 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(top,  rgba(0,140,76,1) 0%,rgba(2,206,114,1) 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom,  rgba(0,140,76,1) 0%,rgba(2,206,114,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008c4c', endColorstr='#02ce72',GradientType=0 ); /* IE6-9 */
    }
    .page-banner .cards .card.pac.alt.alt2 h2{
      color: #02d071;
    }
    .page-banner .cards .card.pac.alt.alt2 .ill-wrap{
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
    }

  /* intro */
  .page-banner .intro{
    max-width: 740px;
    margin: 60px auto 0 auto;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
  }
  .page-banner .intro p{
    margin-bottom: 20px;
  }
  .page-banner .intro p b,
  .page-banner .intro p strong{
    font-weight: 700;
    color: #02d071;
  }
  .page-banner .intro p b i,
  .page-banner .intro p i b,
  .page-banner .intro p strong i,
  .page-banner .intro p i strong{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-weight: 700;
    color: #13abfb;
  }
  .page-banner .intro h2,
  .page-banner .intro h2 a{
    color: #004570;
    margin: 0;
    font-size: 24px;
    line-height: 26px;
    font-weight: 900;
  }
  .page-banner .intro h2.orange,
  .page-banner .intro h2.orange a{
    color: #f3871c;
  }
  .page-banner .intro h2.green,
  .page-banner .intro h2.green a{
    color: #02d072;
  }


  /* slides */
  .page-banner.slideshow .img-wrap-s{

  }
  .page-banner.slideshow .card.full{
    background: #02d071;
    width: 100%;
    float: none;
    border-radius: 10px;
    padding-right: 60px;
  }
  .page-banner.slideshow .card.full .ill-wrap{
    width: 423px;
    height: 251px;
    left: 50px;
    right: auto;
    bottom: -2px;
    z-index: 0;
  }
  .page-banner.slideshow .card.full .info-wrap{
    width: 300px;
    text-align: right;
    width: 50%;
    float: right;
    z-index: 1;
    position: relative;
  }
  .page-banner.slideshow .card.full .info-wrap .button{
    background: #004570;
    font-size: 22px;
    line-height: 22px;
    display: inline-block;
    padding: 20px 40px;
  }


/* media page-banner */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {
  .page-banner{
    padding: 150px 0 50px 0;
  }
  .page-banner h1{
    font-size: 32px;
    line-height: 32px;
  }
  .page-banner.slideshow{
    padding: 150px 0 50px 0;
    min-height: 850px;
    min-height: auto;
  }
  .page-banner.slideshow h1 {
    font-size: 34px;
    line-height: 34px;
  }
  .page-banner.slideshow h2{
    font-size: 22px;
    line-height: 24px;
  }
  .page-banner .cards .linespro,
  .page-banner .cards.lessmargin .linespro{
    top: -40px;
    height: 130%;
    left: 35px;
  }
  .page-banner .cards .linespac,
  .page-banner .cards.lessmargin .linespac{
    top: -40px;
    height: 130%;
    right: 35px
  }
  .page-banner .cards .white-shadow{
    width: 100%;
    margin-left: -50%;
  }
  .page-banner .cards,
  .page-banner .cards.lessmargin{
    width: 440px;
    margin: 60px auto 0 auto;
  }
  .page-banner .cards .card{
    width: 100%;
    float: none;
    height: 150px;
  }
  .page-banner .cards .card .ill-wrap{
    right: auto;
    left: -10px;
  }
  .page-banner .cards .card .icon-wrap{
    width: 60px;
    height: 60px;
    left: auto;
    right: 40px;
    margin-top: -30px;
    font-size: 34px;
    line-height: 60px;
  }
  .page-banner .cards .card .ill-wrap{
    background-size: contain;
    height: 160px;
  }
  .page-banner .cards .card .info-wrap {
    padding-left: 140px;
    margin-top: 30px;
  }
  .page-banner .cards .card h2{

  }
  .page-banner .cards .card.pro{
    z-index: 1;
    border-radius: 10px 0 0 0;
    border-bottom: none;
    border-left: 2px solid #00d072;
  }
  .page-banner .cards .card.pac{
    z-index: 2;
    border-radius: 0 0 0 10px;
    border-bottom: none;
    border-left: 2px solid #00d072;
  }
  .page-banner .cards .card.pac .icon-wrap{
    right: auto;
    left: 40px;
  }
  .page-banner .cards .card.pac .ill-wrap{
    right: -65px;
    left: auto;
  }
  .page-banner .cards .card.pac .info-wrap{
    padding-left: 100px;
    text-align: left;
    margin-top: 40px;
  }
  .page-banner .cards .card.pro {
    box-shadow: 0 0 50px 0 rgba(0,0,0,.4);
  }
  .page-banner .cards .card.pac {
    box-shadow: 0 20px 30px 0 rgba(0,0,0,.4);
  }

  .page-banner .cards .card.pro.alt .info-wrap{
    padding-left: 0;
    text-align: center;
  }
  .page-banner .cards .card.pac.alt .info-wrap {
    margin-top: 30px;
  }
  .page-banner .cards .card.pac.alt .ill-wrap {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .page-banner.slideshow .img-wrap-s{
    margin-bottom: 60px;
    display: inline-block;
    margin-top: 60px;
  }
  .page-banner.slideshow .img-wrap-s img{
    max-width: 300px;
  }
  .page-banner.slideshow .card.full .ill-wrap {
    width: 275px;
    height: 160px;
    left: 10px;
  }
  .page-banner.slideshow .card.full{
    padding-right: 0;
    width: 100%;
    float: none;
  }
  .page-banner.slideshow .card.full .info-wrap{
    width: auto;
  }
  .page-banner.slideshow .card.full .info-wrap .button{
    width: auto;
    font-size: 18px;
    line-height: 18px;
    margin-right: -30px;
  }

}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {

  .page-banner.slideshow h1 {
    font-size: 28px;
    line-height: 28px;
  }
  .page-banner.slideshow h2 {
    font-size: 16px;
    line-height: 18px;
  }
  .page-banner .intro{
    font-size: 16px;
    line-height: 22px;
    margin: 50px auto 40px auto;
  }
  .page-banner.slideshow {
    padding: 120px 0 0 0;
  }
  .page-banner .cards .card {
    height: 110px;
  }
  .page-banner .cards,
  .page-banner .cards.lessmargin {
    width: 100%;
  }
  .page-banner .cards .card .ill-wrap{
    height: 130px;
  }
  .page-banner .cards .card .icon-wrap{
    width: 44px;
    height: 44px;
    left: auto;
    right: 40px;
    margin-top: -22px;
    font-size: 24px;
    line-height: 42px;
  }
  .page-banner .cards .card .icon-wrap{
    right: 10px;
  }

  .page-banner .cards .card .info-wrap {
    padding-left: 38%;
    margin-top: 15px;
  }
  .page-banner .cards .card h2{
    font-size: 18px;
    line-height: 20px;
  }

  .page-banner .cards .card.pac .icon-wrap {
    left: 10px;
  }
  .page-banner .cards .card.pac .ill-wrap{
    right: -90px;
  }
  .page-banner .cards .card.pac .info-wrap{
    padding-left: 50px;
    margin-top: 25px;
  }

  .page-banner .cards .card.pro.alt .info-wrap{
    margin-top: 25px;
  }
  .page-banner .cards .card.pac.alt .info-wrap {
    margin-top: 15px;
  }

  .page-banner.slideshow .card.full {
    padding-right: 20px;
  }
  .page-banner.slideshow .img-wrap-s {
    margin-bottom: 120px;
    margin-top: 40px;
  }
  .page-banner.slideshow .img-wrap-s img {
    max-width: 230px;
  }
  .page-banner.slideshow .card.full .ill-wrap{
    height: 110px;
    bottom: auto;
    top: -110px;
    left: 20px;
  }
  .page-banner.slideshow .card.full .info-wrap{
    text-align: center;
    float: none;
    width: 100%;
    padding: 0;
    margin: 5px 0 0 0;
  }
  .page-banner.slideshow .card.full .info-wrap .button{
    margin: 0;
  }


}















/* page-form */
.page-form{
  position: relative;
  background: #f7f7f7;
}
.page-form::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: #005285;
}
.page-form div[class^='col-md-'],
.page-form div[class*=' col-md-']{
  float: right;
}

  /* form */
  .page-form .form-wrap{
    position: relative;
    background: #ffffff;
    padding: 40px 80px 0 80px;
    box-shadow: 0px 30px 50px 0 rgba(0,0,0,.4);
    border-radius: 6px;
    border-right: 8px solid #687891;
    z-index: 2;
  }
  .page-form .form-wrap .icon-wrap{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  .page-form .form-wrap .icon-wrap i{
    color: #f2f7fc;
    font-size: 290px;
    margin-top: -45px;
    margin-left: -45px;
    display: inline-block;
  }
  .page-form .form-wrap h2{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: #687891;
    position: relative;
    padding-right: 90px;
    margin-bottom: 20px;
  }
  .page-form .form-wrap h2 i{
    position: absolute;
    right: 30px;
    top: 0;
    color: #00d072;
    font-size: 50px;
    line-height: 50px;
  }
  .page-form .form-wrap h2 span.diff{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #015ec5;
    display: block;
    letter-spacing: 0.15em;
  }
  .page-form .form-wrap h2 span.green{
    color: #02d072;
  }

    .page-form .form-wrap .form{
      position: relative;
    }
    .page-form .form-wrap .field-wrap.submitter{
      margin-bottom: -25px;
      float: left;
      margin-top: 5px;
    }
    .page-form .form-wrap .button{
      font-size: 22px;
      line-height: 22px;
      padding: 25px 35px 20px 35px;
    }
    .page-form .form-wrap .button i{
      margin-left: 10px;
      font-size: 32px;
      float: right;
      margin-top: -7px;
    }

.page-form .patient-wrap{
  position: relative;
  z-index: 1;
  text-align: right;
  margin-top: 40px;
}
.page-form .patient-wrap .ill{
  position: absolute;
  width: 155px;
  height: 303px;
  top: 100px;
  left: -70px;
  background: url('../media/patient-back.png');
}
.page-form .patient-wrap h2{
  display: inline-block;
  color: #ffffff;
  background: #f2851a;
  border-radius: 4px;
  padding: 15px 60px;
  font-size: 30px;
  line-height: 30px;
}
.page-form .patient-wrap .info-wrap{
  margin-right: 60px;
  max-width: 315px;
  float: right;
  margin-top: 60px;
}
.page-form .patient-wrap h3{
  color: #004f81;
  font-size: 44px;
  line-height: 44px;
  margin-bottom: 40px;
}
.patient-wrap p{
  font-size: 18px;
  line-height: 22px;
  color: #687891;
  margin-bottom: 20px;
  font-weight: 700;
}

/* media page-form */
@media only screen and (max-width: 1200px) {
  .page-form .container{
    width: 100%;
  }
  .page-form .form-wrap{
    padding: 40px 40px 0 40px;
  }
}
@media only screen and (max-width: 992px) {
  .page-form div[class^='col-md-'],
  .page-form div[class*=' col-md-']{
    float: none;
  }
  .page-form::before{
    top: auto;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
  }
  .page-form .patient-wrap{
    margin-top: 0;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .page-form .patient-wrap .info-wrap{
    margin-top: 0;
    margin-right: 0;
    text-align: right;
  }
  .page-form .patient-wrap .ill{
    left: 40px;
    top: auto;
    bottom: -40px;
  }
  .page-form .patient-wrap h3{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .page-form .patient-wrap h2{
    font-size: 26px;
    line-height: 26px;
  }
  .page-form .form-wrap{
    max-width: 580px;
    margin: 0 auto;
    padding: 40px 40px 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .page-form{
    padding-top: 0;
  }
  .page-form .patient-wrap h2{
    margin-bottom: 0 !important;
    top: -25px;
    position: relative;
  }



}
@media only screen and (max-width: 640px) {
  .page-form .patient-wrap{
    text-align: center;
  }
  .page-form .patient-wrap h2{
    margin-bottom: 30px;
  }
  .page-form .patient-wrap .ill{
    opacity: .2;
    z-index: -1;
  }
  .page-form .patient-wrap h3{
    font-size: 30px;
    line-height: 30px;
  }
  .page-form .patient-wrap .info-wrap{
    text-align: center;
    float: none;
    width: 100%;
    max-width: 100%;
  }

  .page-form .patient-wrap .info-wrap{
    max-width: 350px !important;
    margin: 0 auto;
  }
  .page-form .patient-wrap h3{
    max-width: 250px;
    margin: 0 auto 20px auto;
  }
  .page-form .patient-wrap .ill{
    position: relative;
    opacity: 1 !important;
    margin: 0 auto;
    max-height: 270px;
    background-size: contain;
    background-repeat: no-repeat;
    top: auto;
    left: auto;
    bottom: 0;
    transform: rotate(-7deg);
  }
  .page-form .form-wrap{
    margin-top: -110px;
  }
  .page-form::before{
    height: 40%;
  }

}
@media only screen and (max-width: 480px) {
  .page-form .form-wrap{
    padding: 20px 20px 0 20px;
    border-right: 4px solid #687891
  }
  .page-form .form-wrap h2{
    padding-right: 35px;
    font-size: 28px;
    line-height: 30px;
  }
  .page-form .form-wrap h2 i{
    right: 0;
    font-size: 30px;
    line-height: 30px;
  }
  .page-form .form-wrap h2 span.diff{
    font-size: 14px;
    line-height: 20px;
  }
  .page-form .patient-wrap h3 {
    font-size: 26px;
    line-height: 28px;
  }
  .page-form .form-wrap .button {
    font-size: 20px;
    line-height: 20px;
    padding: 20px 30px 15px 30px;
  }
  .page-form .form-wrap .button i {
    font-size: 28px;
    margin-top: -4px;
  }

}














/* page-strip */
.page-strip{
  background: #02d071;
  position: relative;
  overflow: hidden;
}
.page-strip .logo-wrap{

}
.page-strip .info-wrap{
  text-align: center;
  margin: 0 auto;
}
.page-strip .info-wrap h2{
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}
.page-strip .info-wrap h2 span{
  color: #005285;
  font-weight: 700;
}
.page-strip .ill-wrap{
  position: absolute;
  top: 14px;
  right: 15px;
  width: 297px;
  height: 202px;
  background: url('../media/strip-ill.png');
}



/* media page-strip */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {
  .page-strip{
    text-align: center;
    padding-bottom: 0;
  }
  .page-strip .logo-wrap {
    max-width: 240px;
    margin: 0 auto 20px auto;
  }
  .page-strip .info-wrap{
    max-width: 400px;
  }
  .page-strip .ill-wrap{
    position: relative;
    top: 0;
    right: 0;
    margin: 30px auto 0 auto;
  }
  .page-strip{
    display: none;
  }
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {

}









/* page-doctor */
.page-doctor{
  background: url('../media/bg-doctor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 710px;
  border-bottom: 6px solid #01ad5e;
}
.page-doctor h2{
  display: inline-block;
  color: #ffffff;
  border-radius: 4px;
  padding: 15px 60px;
  font-size: 30px;
  line-height: 30px;
  margin-top: 40px;
  background: #02d072;
  background: -moz-linear-gradient(45deg, rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%);
  background: linear-gradient(45deg, rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 );
}
.page-doctor .info-wrap{
  margin-left: 60px;
  margin-top: 60px;
  max-width: 350px;
}
.page-doctor .info-wrap h3 {
  color: #ffffff;
  font-size: 44px;
  line-height: 44px;
  margin-bottom: 40px;
}

.page-doctor .info-wrap2{
  float: right;
  max-width: 400px;
  text-align: right;
  margin-right: 60px;
}
.page-doctor .info-wrap2 p{
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #005284;
  margin-bottom: 20px;
}

.page-doctor .ill{
  position: absolute;
  width: 279px;
  height: 266px;
  bottom: 0;
  background: url('../media/ill-doctor.png');
}

.page-doctor .navigator{
  margin-top: 25px;
  position: absolute;
}
.page-doctor .navigator a.navi-prev,
.page-doctor .navigator a.navi-next{
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  color: #01a4f7;
  display: inline-block;
  background: #fff;
  border-radius: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.page-doctor .navigator a.navi-next{
  margin-left: 10px;
  width: 80px;
  height: 80px;
  font-size: 30px;
  line-height: 80px;
}
.page-doctor .navigator a.navi-prev:hover{
  color: #01b864;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
}
.page-doctor .navigator a.navi-next:hover{
  color: #01b864;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.4);
}


  /* slider */
  .offset-slideshow{
    position: absolute;
    /*height: 440px;*/
    right: 0;
    bottom: 60px;
  }
  .offset-slideshow .swiper-container{
    height: 100%;
  }
  .offset-slideshow .swiper-slide{
    width: 44%;
  }
  .offset-slideshow .item-wrap{
    height: 100%;
    position: relative;
  }
  .offset-slideshow .img-wrap{
    border: 3px solid #fff;
    border-radius: 100%;
    width: 115px;
    height: 115px;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  .offset-slideshow .img-wrap img{

  }
  .offset-slideshow .info-wrap{
    padding: 90px 20px 20px 20px;
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: 100%;
    /*height: 340px;*/
    background: #e6f6fe;
    border-radius: 4px;
    margin-top: -80px;
    border-left: 8px solid #687891;
    position: relative;
    margin-bottom: 60px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .offset-slideshow .info-wrap h2{
    background: none;
    border-radius: 0;
    color: #687891;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    padding: 0 20px;
    margin: 0;
  }
  .offset-slideshow .info-wrap h3{
    margin-top: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #01a4f7;
    line-height: 14px;
  }
  .offset-slideshow .info-wrap .crm{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #015ec4;
    margin-bottom: 5px;
    display: block;
  }
  .offset-slideshow .agenda{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    position: absolute;
    bottom: -60px;
    left: 10%;
    background: #005a92;
    color: #fff;
    width: 80%;
    height: 60px;
    text-align: center;
    border-radius: 0 0 6px 6px;
    line-height: 58px;
  }
  .offset-slideshow .agenda a{
    color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .offset-slideshow .agenda a:hover{
    text-decoration: none;
  }
  .offset-slideshow .go-doc{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
  }
  .offset-slideshow .options{
    margin-top: 20px;
    width: 100%;
    display: inline-block;
  }
  .offset-slideshow .options .verified{
    width: 44%;
    float: left;
  }
  .offset-slideshow .options .verified i{
    font-size: 30px;
    float: left;
    color: #02d072;
  }
  .offset-slideshow .options .verified span{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #687891;
    float: left;
    width: 68%;
    text-align: left;
    line-height: 14px;
    margin-top: 2px;
    margin-left: 5px;
  }
  .offset-slideshow .options .verified span span{
    display: block;
    margin-left: 0;
    margin-top: 0;
    float: none;
    width: auto;
  }
  .offset-slideshow .options .knowmore{
    width: 55%;
    float: right;
    text-align: right;
  }
  .offset-slideshow .options .knowmore a{
    font-size: 12px;
  }

    /* hover / active */
    .offset-slideshow .swiper-slide:hover .info-wrap
    /*,.offset-slideshow .swiper-slide-active .info-wrap*/{
      background: #fff;
      box-shadow:0 5px 20px 0 rgba(0,0,0,.5);
    }

/* media page-doctor */
@media only screen and (max-width: 2100px) {
  .offset-slideshow .swiper-slide{
    width: 29%;
  }
}
@media only screen and (max-width: 1500px) {
  .offset-slideshow .swiper-slide{
    width: 44%;
  }
}
@media only screen and (max-width: 1200px) {

  .page-doctor .info-wrap {
    margin-top: 20px;
  }
  .offset-slideshow {
    position: relative;
    width: 100% !important;
    right: auto;
    height: auto;
    bottom: auto;
  }

  .offset-slideshow .swiper-slide{
    width: 39%;
  }

  .offset-slideshow .options .verified span{
    float: left;
  }
  .page-doctor .navigator{
    margin-top: 0;
    position: relative;
    float: right;
  }
  .page-doctor h2{
    margin-top: 0;
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }
  .page-doctor .info-wrap {
    margin-left: 30px;
  }
  .page-doctor .info-wrap2{
    margin-right: 0;
    margin-top: 30px;
  }
  .page-doctor .ill{
    bottom: 320px;
    opacity: .2;
  }
  .offset-slideshow .info-wrap{
    margin-top: -80px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .page-doctor{
    text-align: center;
  }
  .offset-slideshow .swiper-slide{
    width: 45%;
  }
  .page-doctor h2 {
    padding: 15px 30px;
    width: auto;
    font-size: 26px;
    line-height: 26px;
  }
  .page-doctor .info-wrap h3 {
    font-size: 36px;
    line-height: 36px;
  }
  .offset-slideshow .info-wrap h3{
    font-size: 12px;
    margin-bottom: 0;
  }
  .page-doctor .info-wrap{
    margin-left: 0;
    max-width: 100%;
  }
  .offset-slideshow .info-wrap {
    margin-left: 0;
  }
  .page-doctor .info-wrap2{
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }
  .page-doctor .navigator{
    float: none;
    z-index: 2;
  }
  .offset-slideshow .item-wrap{
    padding-top: 20px;
    border-left: 8px solid #687891;
    background: #e6f6fe;
    border-radius: 4px;
    margin-top: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .offset-slideshow{
    margin-bottom: 70px;
  }
  .offset-slideshow .info-wrap{
    border-left: none;
    background: none;
    border-radius: 0;
    margin-top: 0px;
    padding-top: 10px;
  }
  .offset-slideshow .swiper-slide:hover .item-wrap {
    background: #fff;
    box-shadow: 0 5px 20px 0 rgba(0,0,0,.5);
  }
  .offset-slideshow .swiper-slide:hover .info-wrap {
    background: none;
    box-shadow: none;
  }
  .page-doctor{
    border-bottom: 0;
  }
  .page-doctor::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #01ad5e;
    height: 37%;
  }
  .page-doctor .ill{
    left: auto !important;
    right: 15px;
    opacity: 1;
    bottom: 0;
    z-index: 2;
    background-size: contain;
    height: 150px;
    width: 170px;
    background-repeat: no-repeat;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
@media only screen and (max-width: 768px) {
  .offset-slideshow .swiper-slide{
    width: 45%;
  }
}
@media only screen and (max-width: 640px) {
  .offset-slideshow .swiper-slide{
    width: 88%;
  }
  .offset-slideshow{
    margin-top: -50px;
  }
}
@media only screen and (max-width: 480px) {
  .page-doctor h2 {
    padding: 15px 10px;
  }
  .page-doctor .info-wrap h3 {
    font-size: 26px;
    line-height: 28px;
  }
  .offset-slideshow .info-wrap h3{
    font-size: 12px;
  }
  .page-doctor .navigator a.navi-next {
    margin-left: 5px;
    width: 60px;
    height: 60px;
    font-size: 28px;
    line-height: 60px;
  }
  .offset-slideshow .options .verified i {
    font-size: 26px;
  }
  .offset-slideshow .options .verified span{
    margin-top: -1;
  }
  .offset-slideshow .options .verified span span{
    margin-top: 0;
  }
  .offset-slideshow {
    margin-top: -40px;
  }
  .offset-slideshow {
    margin-bottom: 50px;
  }
}











/* page-infos */
.page-infos{
  position: relative;
  background: #fff;
  z-index: 1;
  padding: 90px 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.page-infos .bg{
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: #f7f7f7;
}
.page-infos.odd div[class^='col-sm-'],
.page-infos.odd div[class*=' col-sm-']{
  float: right;
}

.page-infos .info-wrap{
  position: relative;
  z-index: 1;
}
.page-infos .icon-wrap{
  position: relative;
  width: 150px;
  height: 150px;
  color: #02d072;
  float: left;
  text-align: center;
  border-radius: 100%;
  font-size: 80px;
  line-height: 150px;
  background: rgb(1,89,183); /* Old browsers */
  background: -moz-linear-gradient(45deg,  rgba(1,89,183,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(1,89,183,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(1,89,183,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b7', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.page-infos .icon-wrap::after{
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  right: -25%;
  top: 0;
  background: #02d072;
}
.page-infos .infos{
  float: left;
  max-width: 290px;
  margin-left: 16%;
}
.page-infos .infos h2{
  color: #004f81;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 20px;
}
.page-infos .infos p{
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  color: #687891;
}
.page-infos .button{
  width: 170px;
  position: absolute;
  left: 50%;
  margin-left: -85px;
  top: 30px;
  font-size: 16px;
  text-transform: none;
  line-height: 20px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 40px 0 rgba(0,0,0,.3);
}
.page-infos .button span{
  text-transform: uppercase;
  color: #003d6a;
  display: block;
}
.page-infos .ill-wrap{
  width: 100%;
  height: 250px;
  position: absolute;
  top: -40px;
}
.page-infos .button.mob{
  display: none;
  position: relative;
  top: auto;
  left: auto;
  margin-left: 0;
  opacity: 1;
  visibility: visible;
}
.page-infos .infos p span{
  display: block;
}

  /* odd */
  .page-infos.odd .bg{
    left: auto;
    right: 0;
  }
  .page-infos.odd .col-md-6{
    float: right;
  }
  .page-infos.odd .icon-wrap{
    float: right;
  }
  .page-infos.odd .icon-wrap::after{
    left: -25%;
    right: auto;
  }
  .page-infos.odd .infos {
    text-align: right;
    margin-left: 0;
    margin-right: 16%;
    float: right;
  }

  /* ills */
  .page-infos#s1 .ill-wrap{
    background: url('../media/ill-serv-1.png') no-repeat center top;
    top: -10px;
  }
  .page-infos#s2 .ill-wrap{
    background: url('../media/ill-serv-2.png') no-repeat center top;
    top: -10px;
  }
  .page-infos#s3 .ill-wrap{
    background: url('../media/ill-serv-3.png') no-repeat center top;
    top: 0;
  }
  .page-infos#s4 .ill-wrap{
    background: url('../media/ill-serv-4.png') no-repeat center top;
    top: 0;
  }

  /* hover */
  .page-infos:hover{
    box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    z-index: 2;
  }
  .page-infos:hover .button{
    opacity: 1;
    top: 40px;
    visibility: visible;
  }
  .page-infos:hover .button.mob{
    top: auto;
  }



  /* alt */
  .page-infos.alt{

  }
  .page-infos.alt .infos{
    max-width: none;
  }
  .page-infos.alt .infos h2{

  }
  .page-infos.alt .infos h3{
    color: #02d072;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .page-infos.alt .ill-wrap {
    left: 25%;
  }
  .page-infos.odd.alt .ill-wrap {
    left: 15%;
  }


/* media page-infos */
@media only screen and (max-width: 1200px) {
  .page-infos .container{
    width: 100%;
  }
  .page-infos .infos {
    margin-left: 4%;
  }
  .page-infos.odd .infos{
    margin-left: 0;
    margin-right: 4%;
  }
  .page-infos .icon-wrap::after{
    right: -5%;
  }
  .page-infos.odd .icon-wrap::after{
    left: -5%;
  }
}
@media only screen and (max-width: 992px) {
  .page-infos{
    overflow: hidden;
  }
  .page-infos .button{
    display: none;
  }
  .page-infos .button.mob{
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .page-infos .icon-wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    font-size: 40px;
    line-height: 80px;
  }
  .page-infos.odd .icon-wrap {
    left: auto;
    right: 0;
  }
  .page-infos .infos{
    max-width: 100%;
    margin-left: 130px;
    position: relative;
  }
  .page-infos.odd .infos {
    margin-left: 0;
    margin-right: 130px;
  }
  .page-infos .infos p span {
    display: inline;
  }
  .page-infos .icon-wrap::after{
    right: -15px;
    display: none;
  }
  .page-infos.odd .icon-wrap::after{
    left: -15px;
  }
  .page-infos .infos::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: -28px;
    top: 0;
    background: #02d072;
  }
  .page-infos.odd .infos::before{
    left: auto;
    right: -28px;
  }


  .page-infos.alt .infos{
    margin-left: 40px;
  }
  .page-infos.alt.odd .infos{
    margin-left: 0;
    margin-right: 40px;
  }
  .page-infos.alt .ill-wrap,
  .page-infos.odd.alt .ill-wrap{
    left: 10%;
  }

}
@media only screen and (max-width: 768px) {
  .page-infos{
    padding: 60px 0;
  }
  .page-infos.odd{
    background: #f7f7f7;
  }
  .page-infos .bg{
    display: none;
  }
  .page-infos.odd div[class^="col-sm-"],
  .page-infos.odd div[class*=" col-sm-"]{
    float: none;
  }
  .page-infos .icon-wrap,
  .page-infos.odd .icon-wrap{
    left: auto;
    top: auto;
    right: auto;
    position: relative;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .page-infos .infos,
  .page-infos.odd .infos{
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    float: none;
  }
  .page-infos .infos::before{
    display: none;
  }
  .page-infos .ill-wrap{
    opacity: .1;
  }
  .page-infos#s1 .ill-wrap{
    top: auto;
    bottom: 0;
  }
  .page-infos#s2 .ill-wrap{
    top: auto;
    bottom: 0;
  }
  .page-infos#s3 .ill-wrap{
    top: auto;
    bottom: 0;
  }
  .page-infos#s4 .ill-wrap{
    top: auto;
    bottom: 0;
  }

  .page-infos.alt .infos{
    margin: 0 auto !important;
    text-align: center;
    max-width: 400px;
  }
  .page-infos.alt .ill-wrap,
  .page-infos.odd.alt .ill-wrap {
    opacity: .07;
    left: 25%;
    bottom: -70px;
    top: auto;
  }
}
@media only screen and (max-width: 480px) {
  .page-infos#s1 .ill-wrap{
    left: 0;
  }
  .page-infos#s2 .ill-wrap{
    left: 0;
  }
  .page-infos#s3 .ill-wrap{
    left: 0;
  }
  .page-infos#s4 .ill-wrap{
    left: 0;
  }

  .page-infos.alt .ill-wrap,
  .page-infos.odd.alt .ill-wrap {
    left: 0;
  }

}





/* page-social */
.page-social{
  padding: 100px 0;
}
.page-social h2{
  color: #303b4d;
  font-size: 44px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 50px;
}
.page-social .social-wrap{
  float: left;
  margin-right: 20px;
}
.page-social .social-wrap i{
  color: #09a4e6;
  font-size: 50px;
  line-height: 50px;
  display: block;
}
.page-social .social-wrap p{
  color: #303b4d;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
}
.page-social .social-wrap p span{
  color: #09a4e6;
  display: block;
  text-transform: none;
}
.page-social .social-wrap p span span{
  color: #303b4d;
  display: inline;
}
.page-social .social-wrap a:hover{
  text-decoration: none;
}

/* media page-social */
@media only screen and (max-width: 1200px) {
  .page-social .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .page-social{
    padding: 60px 0;
  }
  .page-social h2{
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .page-social .social-wrap {
    float: none;
    margin-right: 0;
    text-align: center;
    margin-top: 30px;
  }
  .page-social .feed-wrap{
    text-align: center;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {
  .page-social h2 {
    font-size: 28px;
    line-height: 30px;
  }
}










/* plans */
.plans{
  position: relative;
  background: #f7f7f7;
  min-height: 350px;
  text-align: center;
  padding-bottom: 90px;
}
.plans .bg{
  position: absolute;
  top: 0;
  left: 0;
  height: 350px;
  width: 100%;
  background: #02d072;
  background: -moz-linear-gradient(45deg,  rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.plans h2{
  margin-top: 20px;
  color: #ffffff;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

  /* plan */
  .plans .plan{
    background: #fff;
    border: 1px solid #67778f;
    border-radius: 6px;
    padding: 0 20px 50px 20px;
    margin-top: 60px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .plans .plan h3.title{
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    text-align: center;
    background: #67778f;
    border-radius: 4px;
    padding: 18px 0;
    width: 238px;
    color: #fff;
    top: -25px;
    position: relative;
  }
  .plans .plan .price {
    font-size: 50px;
    line-height: 52px;
    font-weight: 700;
    color: #687891;
    margin-bottom: 40px;
  }
  .plans .plan .list-wrap{
    padding: 0 0 0 50px;
  }
  .plans .plan .list-wrap ul{

  }
  .plans .plan .list-wrap ul li{
    font-family: 'Maven Pro', sans-serif;
    width: 100%;
    text-align: left;
    color: #005285;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    margin: 10px 0;
  }
  .plans .plan .list-wrap ul li i{
    margin-right: 10px;
    color: #4fccc4;
  }
  .plans .plan .button-wrap{
    text-align: center;
    position: absolute;
    left: 50%;
	/*bottom: 0;
    opacity: 0;
    visibility: hidden;*/
	bottom: -10px;
	opacity: 1;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .plans .plan .button-wrap .button{
    padding: 15px 40px
  }

    /* inactive */
    .plans .plan .list-wrap ul li.inactive{
      color: #818181;
      font-weight: 400;
    }
    .plans .plan .list-wrap ul li.inactive i{
      color: #818181;
    }


    /* pro */
    .plans .plan.pro{

    }
    .plans .plan.pro h3.title{
      background: rgb(1,89,182); /* Old browsers */
      background: -moz-linear-gradient(45deg,  rgba(1,89,182,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b6', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }
    .plans .plan.pro h3.title span{
      color: #00e37b;
    }
    .plans .plan.pro .price{
      color: #0159b6;
      font-size: 36px;
      line-height: 34px;
    }
    .plans .plan.pro .price span{
      text-decoration: line-through;
      display: block;
      color: #828282;
      font-size: 16px;
      line-height: 18px;
    }
    .plans .plan.pro .list-wrap{
      padding: 0 0 0 80px;
    }

    /* hover */
    .plans .plan:hover {
      box-shadow: 0 0 30px 0 rgba(0,0,0,.4);
    }
    .plans .plan:hover .button-wrap{
      bottom: -10px;
      opacity: 1;
      visibility: visible;
    }
    .plans .plan.pro:hover{
      border-color: #0159b6;
    }


/* media plans */
@media only screen and (max-width: 1200px) {
  .plans .container{
    width: 100%;
  }
  .plans .plan .list-wrap {
    padding: 0 0 0 8%;
  }
  .plans .plan.pro .list-wrap{
    padding: 0 0 0 15%;
  }
}
@media only screen and (max-width: 992px) {
  .plans .plan .button-wrap{
    opacity: 1;
    visibility: visible;
    bottom: -10px;
  }
  .plans .plan .list-wrap {
    padding: 0 0 0 0;
  }
  .plans .plan.pro .list-wrap{
    padding: 0 0 0 10%;
  }
}
@media only screen and (max-width: 768px) {
  .plans{
    padding-bottom: 40px;
  }
  .plans h2{
    font-size: 28px;
    line-height: 30px;
  }
  .plans .plan{
    max-width: 450px;
    margin: 40px auto;
  }
  .plans .plan.pro{
    margin-top: 80px;
  }
  .plans .plan .price {
    font-size: 44px;
    line-height: 46px;
  }
  .plans .plan.pro .list-wrap{
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .plans .plan .button-wrap .button {
    padding: 15px 20px;
  }
}















/* login */
.login{
  background: #f7f7f7;
  position: relative;
  padding: 240px 0 90px 0;
}
.login::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 650px;
  top: 0;
  left: 0;
  background: #005285;
}
.login .card{
  margin-top: 70px;
  position: relative;
  border-radius: 6px;
  padding: 0 20px 0 20px;
  text-align: center;
  background: #fff;
  border-left: 5px solid #687891;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.login .card h2{
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  text-align: center;
  background: #f2851a;
  border-radius: 4px;
  padding: 18px 0;
  width: 290px;
  color: #fff;
  top: -25px;
  position: relative;
}
.login .card h3{
  color: #f2851a;
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 30px;
}
.login .card .form-wrap{
  max-width: 300px;
  margin: 0 auto;
}
.login .card .form-wrap .field-wrap.submitter {
  position: relative;
  bottom: -25px;
  margin-top: 10px;
}
.login .card .form-wrap .button {
  font-size: 16px;
  line-height: 16px;
  padding: 20px 35px 20px 35px;
}
.login .card .form-wrap .forgot,
.login .card .form-wrap .first-access{
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.login .card .form-wrap .forgot{
  float: left;
  color: #f2851a;
}
.login .card .form-wrap .first-access{
  float: right;
  text-transform: uppercase;
  color: #687891;
  font-weight: 900;
}
.login .card .form-wrap .field-wrap.middle{
  max-width: 130px;
  margin-left:auto;
  margin-right:auto;
}

.login .card .card-infos{
  margin-top: 60px;
}
.login .card .card-infos h3{
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  color: #687891;
}
.login .card .card-infos h4{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: #687891;
}
.login .card .card-infos .button-wrap{
  margin-top: 15px;
}
.login .card .card-infos .button-wrap .button{
  display: inline-block;
  padding: 18px 30px;
}

.login .card .form-wrap input[type="text"],
.login .card .form-wrap input[type="password"]{
  text-align: center;
}

  /* alt */
  .login .card.alt{
    border: 1px solid #67778f;
    height:342px;
  }
  .login .card.alt h2{
    background: #67778f;

  }

  /* hover */
  .login .card:hover{
    box-shadow: 0px 0 30px 0 rgba(0,0,0,.4);
  }

  /* pro */
  .login.pro .card h2{
    background: #02d072;
    background: -moz-linear-gradient(45deg,  rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  .login.pro .card.alt h2 {
    background: #67778f;
  }
  .login.pro .card h3{
    color: #0159b6;
  }
  .login.pro .card .form-wrap .forgot{
    color: #0159b6;
  }
  .login.pro .card .card-infos h3{
    color: #687891;
    max-width: 300px;
    margin: 0 auto;
  }
  .login.pro .card .card-infos .button-wrap .button{
    background: rgb(1,89,182); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(1,89,182,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b6', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }

/* media login */
@media only screen and (max-width: 1200px) {
  .login .container {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .login {
    padding: 150px 0 50px 0;
  }
  .login::before{
    height: 560px;
  }
}
@media only screen and (max-width: 768px) {
  .login .card{
    max-width: 480px;
    margin: 60px auto 0 auto;
  }
  .login .card.alt{
    margin-top: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .login .card h2{
    min-width: 230px;
    width: auto;
    padding: 18px 18px;
  }
  .login .card.alt{
    height: auto;
    padding: 0 0 30px 0;
  }
  .login .card .card-infos{
    margin-top: 10px;
  }
}













/* faq */
.faq{

}
.faq .faq-item{
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.faq .faq-item .item-wrap{
  cursor: pointer;
  padding: 20px 40px;
  position: relative;
  border-radius: 20px;
  border-left: 5px solid transparent;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.faq .faq-item .arrow{
  width: 40px;
  height: 40px;
  background: #d3d3d3;
  color: 777;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  position: absolute;
  right: 30px;
  top: 13px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.faq .faq-item .arrow i {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.faq .faq-item .question{
  position: relative;
  position: relative;
  padding-left: 35px;
}
.faq .faq-item .question .icon-wrap{
  position: absolute;
  left: 0;
  top: 0;
  color: #c6c6c6;
  font-size: 22px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.faq .faq-item .question .icon-wrap i{
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.faq .faq-item .question h2{
  color: #d3d3d3;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  padding-right: 40px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.faq .faq-item .answer{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  color: #616161;
  font-size: 14px;
  line-height: 18px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  -moz-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  -ms-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  -o-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.faq .faq-item .answer .answer-wrap{
  padding: 10px 45px 0 35px;
}

  /* hover */
  .faq .faq-item:hover .question h2{
    color: #005285;
  }
  .faq .faq-item:hover .question .icon-wrap{
    color: #4fccc4;
  }
  .faq .faq-item:hover .arrow{
    background: none;
    color: #01ae5f;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
  }

  /* active */
  .faq .faq-item.active .item-wrap{
    padding: 30px 40px;
    background: #fff;
    border-left: 5px solid #687891;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
  }
  .faq .faq-item.active .question .icon-wrap{
    color: #4fccc4;
  }
  .faq .faq-item.active .question h2{
    color: #005285;
  }
  .faq .faq-item.active .arrow{
    top: 22px;
  }
  .faq .faq-item.active .arrow,
  .faq .faq-item.active:hover .arrow{
    color: #01ae5f;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .faq .faq-item.active .answer{
    max-height: 2000px;
    -webkit-transition: max-height 1.0s ease-in-out;
    -moz-transition: max-height 1.0s ease-in-out;
    -ms-transition: max-height 1.0s ease-in-out;
    -o-transition: max-height 1.0s ease-in-out;
    transition: max-height 1.0s ease-in-out;
  }

  /* alt */
  .faq.alt{
    background: #f7f7f7;
  }
  .faq.alt .files{
    margin-bottom: 10px;
    width: 100%;
  }
  .faq.alt .files a{
    font-family: 'Maven Pro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #f2851a;
    position: relative;
    display: inline-block;
  }
  .faq.alt .files a i{
    font-size: 30px;
    line-height: 30px;
    float: left;
    margin-right: 5px;
    color: #4fccc4;
  }
  .faq.alt .files a:hover{

  }


/* media faq */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {
  .faq .faq-item .item-wrap,
  .faq .faq-item.active .item-wrap{
    padding: 20px 20px;
  }
  .faq .faq-item .question{
    padding-left: 30px;
  }
  .faq .faq-item .question .icon-wrap{
    font-size: 18px;
    top: 2px;
  }
  .faq .faq-item .question h2{
    font-size: 20px;
    line-height: 22px;
  }
  .faq .faq-item .arrow{
    top: 18px;
    font-size: 12px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    right: 10px;
  }
  .faq .faq-item.active .arrow {
    top: 18px;
  }
  .faq .faq-item .answer .answer-wrap {
    padding: 10px 10px 0 30px;
  }

}
@media only screen and (max-width: 480px) {
  .faq .faq-item .item-wrap,
  .faq .faq-item.active .item-wrap {
    padding: 20px 10px;
  }
  .faq .faq-item .question h2 {
    font-size: 18px;
    line-height: 20px;
  }
}










/* support */
.support{
  padding:70px 0 100px 0;
  background: #f7f7f7;
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  color: #303b4d;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
}
.support h2{
  margin-top: 20px;
  color: #09a4e6;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 20px;
}
.support a{
  color: #09a4e6;
}

/* media support */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {
  .support {
    font-size: 18px;
    line-height: 22px;
  }
  .support h2{
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 480px) {

}









/* register */
.register{
  position: relative;
  background: #f7f7f7;
  padding-bottom: 80px;
  padding-top: 50px;
}
.register::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: #00253a;
}
.register .bg{
  position: absolute;
  width: 155px;
  height: 304px;
  top: -60px;
  left: calc(50% - 120px);
  background: url('../media/illu-form.png') no-repeat;
}
.register .form-wrap{
  box-shadow: 0 0 40px 0 rgba(0,0,0,.4);
  border-radius: 6px;
  background: #fff;
  position: relative;
  padding: 0 40px;
  border-left: 5px solid #687891;
}

.register .form-wrap h2 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  text-align: center;
  background: #f2851a;
  border-radius: 4px;
  padding: 20px 40px;
  color: #fff;
  top: -35px;
  position: relative;
}
.register .form-wrap .block{
  border-bottom: 2px solid #d3d3d3;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.register .form-wrap .block.last{
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.register .form-wrap .block h3{
  color: #f2851a;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 30px;
}
.register .field-wrap{

}
.register .checkcpf{
  float: left;
  margin-top: 6px;
}
.register .nocpf{
  margin-top: 17px;
  margin-left: 20px;
  float: left;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  color: #f2851a;
}
.register .field-wrap.tradio{
  padding-top: 12px;
  text-align: center;
}
.register label{
  color: #687891;
  font-weight:700;
  margin-right: 5px;
  margin-left: 5px;
}
.register input[type="text"],
.register input[type="email"],
.register input[type="tel"],
.register input[type="password"],
.register textarea,
.register select{
  text-align: center;
}
.register .form-wrap .field-wrap.submitter {
  position: relative;
  bottom: -25px;
}
.register .form-wrap .field-wrap.submitter .button {
  font-size: 16px;
  line-height: 16px;
  padding: 20px 35px 20px 35px;
}

  /* custom select */
  .register .field-wrap.type-custom{
    position: absolute;
    top: -20px;
    right: 60px;
    width: 155px;
  }
  .register .field-wrap.type-custom .box-select {
    position: relative;
    width: 100%;
    cursor: pointer;
    display: inline-block;
    z-index: 1;
  }
  .register .field-wrap.type-custom .box-select .icon-wrap{
    position: absolute;
    right: -15px;
    top: 7px;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    border-radius: 100%;
    background: #fff;
    color: #01ae5f;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  .register .field-wrap.type-custom .box-select .box-select-wrap {
    padding: 0;
  }
  .register .field-wrap.type-custom .box-select .box-select-wrap ul {
    border-radius: 0 0 6px 6px;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 200px;
    display: none;
    visibility: hidden;
    z-index: 1;
  }
  .register .field-wrap.type-custom .box-select .box-select-wrap ul li a {
    color: #fff;
    display: block;
    opacity: .8;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .register .field-wrap.type-custom .box-select .p-pro,
  .register .field-wrap.type-custom .box-select .p-free{
    border-radius: 6px;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    display: block;
    background: rgb(1,89,182); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(1,89,182,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b6', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  .register .field-wrap.type-custom .box-select .p-pro span{
    color: #00e37b;
  }
  .register .field-wrap.type-custom .box-select .p-free{
    background: #67778f;
  }
  .register .field-wrap.type-custom .box-select ul li .p-pro,
  .register .field-wrap.type-custom .box-select ul li .p-free{
    border-radius: 0;
  }


    /* hover / active */
    .register .field-wrap.type-custom .box-select.active .p-pro,
    .register .field-wrap.type-custom .box-select.active .p-free{
      border-radius: 6px 6px 0 0;
    }
    .register .field-wrap.type-custom .box-select.active ul li .p-pro,
    .register .field-wrap.type-custom .box-select.active ul li .p-free{
      border-radius: 0;
    }
    .register .field-wrap.type-custom .box-select.active {
      z-index: 2;
      box-shadow: 0 0 5px 0 rgba(0,0,0,.4);
    }
    .register .field-wrap.type-custom .box-select.active ul {
      display: block;
      visibility: visible;

    }
    /*.register .field-wrap.type-custom .box-select ul li.active a,*/
    .register .field-wrap.type-custom .box-select ul li a:hover {
      opacity: 1;
    }
    .register .field-wrap.type-custom .box-select .box-select-wrap ul li a:hover{
      text-decoration: none;
    }
    .register .field-wrap.type-custom .box-select:hover .icon-wrap{
      box-shadow: 0 0 10px 0 rgba(0,0,0,.6);
    }
    .register .field-wrap.type-custom .box-select.active .icon-wrap{
      box-shadow: 0 0 10px 0 rgba(0,0,0,.6);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
    }

  /* profissional */
  .register.pro{

  }
  .register.pro .bg{
    background: url('../media/illu-form-pro.png') no-repeat;
  }
  .register .form-wrap h2{
    background: #02d072;
  }
  .register .form-wrap .block h3{
    color: #02d071;
  }

/* media register */
@media only screen and (max-width: 1200px) {
  .register .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .register .bg{
    top: -50px;
    left: calc(50% - 220px);
  }
}
@media only screen and (max-width: 768px) {
  .register .form-wrap{
    padding: 0 20px;
  }
  .register .bg {
    top: -50px;
    left: calc(50% - 40px);
  }
  .register .field-wrap.type-custom {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 30px;
  }
  .register .field-wrap.type-custom .box-select .box-select-wrap ul li a{
    opacity: .95;
  }
}
@media only screen and (max-width: 480px) {
  .register .form-wrap h2 {
    font-size: 22px;
    line-height: 22px;
    padding: 20px 30px;
  }
  .register .form-wrap .block h3 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .register .form-wrap .block {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}











/* busca */
.search{
  background: #f7f7f7;
  padding: 240px 0 110px 0;
}
.search::before{
  top: 0;
  bottom: auto;
  width: 100%;
  background: #005285;
  height: 600px;
}
.search .form-wrap{
  max-width: 682px;
  margin: 0 auto;
}

.results{
  background: #f7f7f7;
}
.results .total{
  text-align: center;
  max-width: 570px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.results .total .icon-wrap{

}
.results .total h2{
  padding-top: 50px;
  text-align: left;
  position: relative;
  color: #f2851a;
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
  padding-left: 140px;
}
.results .total h2 i{
  position: absolute;
  font-size: 130px;
  top: 0;
  left: 0;
  color: #005285;
}
.results .total h2 span{
  display: block;
  color: #687891;
  font-size: 24px;
  line-height: 26px;
}
.results ul.result-list{

}
.results ul.result-list li{
  width: 100%;
  display: inline-block;
  margin: 20px 0;
}
.results ul.result-list li .item-wrap{
  background: #ffffff;
  border: 1px solid #c1c1c1;
  border-radius: 8px;
  width: 100%;
  display: inline-block;
  padding: 30px 40px 30px 20px;
  vertical-align: top;
  position: relative;
  
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
    .results ul.result-list li .item-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background: #687891;
        opacity: 0;
        left: -8px;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        border-radius: 8px 0 0 8px;
    }

  /* profile */
  .results ul.result-list li .profile{
    float: left;
    width: 25%;
    text-align: center;
    padding-right: 15px;
  }
  .results ul.result-list li .profile .img-wrap{
    overflow: hidden;
    width: 165px;
    height: 165px;
    border-radius: 100%;
    border: 1px solid #67778f;
    background: #67778f;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .results ul.result-list li .profile .img-wrap img{
    vertical-align: top;
  }
  .results ul.result-list li .profile .especialidades{
    color: #01a4f7;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .results ul.result-list li .profile .especialidades p{

  }
  .results ul.result-list li .profile .button-wrap{
    position: relative;
  }
  .results ul.result-list li .profile .button-wrap .button{
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 30px;
    font-weight: 700;
    z-index: 2;
    position: relative;
    text-transform: none;
  }
  .results ul.result-list li .profile .button-wrap span{
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    width: 100%;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #01ce6d;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .results ul.result-list li .profile .button-wrap.active .button{
    opacity: 0;
    cursor: default;
  }
  .results ul.result-list li .profile .button-wrap.active span{
    opacity: 1;
  }

  /* infos */
  .results ul.result-list li .infos{
    float: left;
    width: 39%;
    padding-right: 40px;
  }
  .results ul.result-list li .info-wrap{

  }
  .results ul.result-list li .info-wrap .name{
    padding-bottom: 25px;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 25px;
  }
  .results ul.result-list li .info-wrap .name h2{
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #687891;
  }
  .results ul.result-list li .info-wrap .name h2 a{
    color: #687891;
  }
  .results ul.result-list li .info-wrap .name h4{
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #015ec4;
    margin-bottom: 5px;
  }
  .results ul.result-list li .info-wrap .name .verified{
    position: relative;
    padding-left: 25px;
    color: #687891;
    font-family: 'Maven Pro', sans-serif;
    font-size: 12px;
    line-height: 12px;
    margin-top: 15px;
  }
  .results ul.result-list li .info-wrap .name .verified i{
    color: #02d072;
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 20px;
    line-height: 20px;
  }
  .results ul.result-list li .info-wrap .convenio{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #687891;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d3d3d3;
  }
  .results ul.result-list li .info-wrap .convenio h3{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    color: #015ec4;
    margin-bottom: 3px;
  }
  .results ul.result-list li .info-wrap .convenio p{

  }
  .results ul.result-list li .info-wrap .locale{
    padding-right: 22%;
    position: relative;
  }
  .results ul.result-list li .info-wrap .locale h3{
    margin-bottom: 10px;
    position: relative;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    padding-left: 20px;
    color: #015ec4;
  }
  .results ul.result-list li .info-wrap .locale h3 i{
    position: absolute;
    top: -3px;
    left: 0;
    font-size: 20px;
    line-height: 20px;
    color: #02d072;
  }
  .results ul.result-list li .info-wrap .locale h5{
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #02d072;
    margin-bottom: 5px;
  }
  .results ul.result-list li .info-wrap .locale p{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #687891;
  }
  .results ul.result-list li .info-wrap .locale .navigation{
    position: absolute;
    right: -10px;
    top: 50%;
    -webkit-transition: translate(0, -50%);
    -moz-transition: translate(0, -50%);
    -ms-transition: translate(0, -50%);
    -o-transition: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .results ul.result-list li .info-wrap .locale .navigation .nav-prev,
  .results ul.result-list li .info-wrap .locale .navigation .nav-next{
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    background: #d3d3d3;
    border-radius: 100%;
    color: #fff;
	font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .results ul.result-list li .info-wrap .locale .navigation .nav-next{
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 33px;
    font-weight: bold;
  }
  .results ul.result-list li .info-wrap .locale .navigation .nav-prev:hover,
  .results ul.result-list li .info-wrap .locale .navigation .nav-next:hover{
    background: #fff;
    color: #06bd6a;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
	text-decoration: none;
  }

  /* agenda */
  .results ul.result-list li .agenda{
    float: right;
    width: 36%;
    text-align: center;
  }
  .results ul.result-list li .agenda h3{
    color: #01ce6d;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .results ul.result-list li .agenda .agenda-wrap{
    position: relative;
    padding: 20px 20px 10px 20px;
    border: 2px solid #d3d3d3;
    border-radius: 30px;
  }
  .results ul.result-list li .agenda .date{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    color: #015ec4;
    margin-bottom: 15px;
    display: inline-block;
  }
  .results ul.result-list li .agenda .date span{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #687891;
    display: block;
    margin-top: 5px;
  }
  .results ul.result-list li .agenda .hour{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .results ul.result-list li .agenda .hour a{
    display: block;
    color: #fff;
    padding: 14px 0;
    background: #015ec4;
    border-radius: 30px;
    color: #ffffff;
  }
  .results ul.result-list li .agenda .hour.inactive{
    background: #d3d3d3;
    border-radius: 30px;
    padding: 14px 0;
  }
  .results ul.result-list li .agenda .nav-prev,
  .results ul.result-list li .agenda .nav-next{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: -15px;
    text-align: center;
    background: #d3d3d3;
    border-radius: 100%;
    margin-top: -15px;
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .results ul.result-list li .agenda .nav-next{
    left: auto;
    right: -20px;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 33px;
    font-weight: bold;
  }
  .results ul.result-list li .agenda .nav-prev:hover,
  .results ul.result-list li .agenda .nav-next:hover{
    background: #fff;
    color: #06bd6a;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
	text-decoration: none;
  }
  .results ul.result-list li .agenda .notavaible{
    position: relative;
    padding: 40px;
    border: 2px solid #d3d3d3;
    background: #f3f3f3;
    color: #a7a7a7;
    border-radius: 30px;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
	top: -60px;
    -webkit-transform: translate(0,50%);
    -moz-transform: translate(0,50%);
    -ms-transform: translate(0,50%);
    -o-transform: translate(0,50%);
    transform: translate(0,50%);
  }

    /* hover */
    .results ul.result-list li .item-wrap:hover{
      box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
    }
    .results ul.result-list li .item-wrap:hover::before{
      opacity: 1;
      left: 0;
    }
    .results ul.result-list li .agenda .hour a:hover{
      text-decoration: none;
      background: green;
    }


/* media busca */
@media only screen and (max-width: 1200px) {
  .results .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .search{
    padding: 150px 0 90px 0;
  }
  .results .total{
    max-width: 460px;
  }
  .results .total h2{
    font-size: 28px;
    line-height: 30px;
    padding-left: 110px;
    margin-top: -40px;
  }
  .results .total h2 i{
    font-size: 100px;
    top: 22px;
  }
  .results .total h2 span {
    font-size: 20px;
    line-height: 24px;
  }
  .results ul.result-list li .profile .img-wrap{
    width: 135px;
    height: 135px;
  }
  .results ul.result-list li .item-wrap{
    padding: 30px 20px 30px 20px;
  }
  .results ul.result-list li .info-wrap .name h2{
    font-size: 20px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 768px) {

  .results ul.result-list li .profile{
    padding-right: 20px;
  }
  .results ul.result-list li .infos {
    width: 72%;
    padding-right: 0;
    float: right;
  }


  .results ul.result-list li .agenda{
    margin: 30px 0 0 0;
    width: 100%;
    display: inline-block;
    float: none;
  }
  .results ul.result-list li .agenda .agenda-wrap{
    margin: 0 auto;
    max-width: 500px;
  }
  .results ul.result-list li .agenda .notavaible{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }
  .results ul.result-list li .agenda h3{
    display: inline-block;
  }
  .results ul.result-list li .info-wrap .locale {
    padding-right: 70px;
  }

}
@media only screen and (max-width: 660px) {

  .results ul.result-list li{
    text-align: center;
    margin: 30px 0;
  }
  .results ul.result-list li .item-wrap {
    padding: 0 10px 20px 10px;
    overflow: visible;
    border-top: 4px solid #687891;
    max-width: 500px;
  }
  .results ul.result-list li .item-wrap::before{
    display: none;
  }
  .results ul.result-list li .profile .img-wrap {
    margin-top: -40px;
    margin-bottom: 10px;
  }
  .results ul.result-list li .profile,
  .results ul.result-list li .infos{
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .results ul.result-list li .profile .img-wrap{

  }
  .results ul.result-list li .profile .especialidades{
    margin-bottom: 10px;
  }
  .results ul.result-list li .profile .button-wrap{
    display: none;
  }
  .results ul.result-list li .info-wrap .name .verified{
    max-width: 130px;
    margin: 15px auto 0 auto;
  }
  .results ul.result-list li .info-wrap .locale{
    padding: 0;
    padding-bottom: 50px;
  }
  .results ul.result-list li .info-wrap .locale h3{
    display: inline-block;
  }
  .results ul.result-list li .info-wrap .locale .navigation{
    top: auto;
    transform: none;
    bottom: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
  }
  .results ul.result-list li .agenda {
    margin: 10px 0 0 0;
    padding: 0 20px;
  }

  .results .total{
    width: 100%;
  }
  .results .total h2 i {
    font-size: 70px;
    top: 38px;
  }
  .results .total h2 {
    font-size: 24px;
    line-height: 26px;
    padding-left: 70px;
  }
  .results .total h2 span {
    font-size: 18px;
    line-height: 22px;
  }


}
@media only screen and (max-width: 480px) {
  .results .total h2 i {
    top: 48px;
  }
  .results ul.result-list li .agenda{
    padding: 0 10px;
  }
}










/* single profissional */
.profile{

}
.profile h1{
  text-align: left;
}
.profile ul.profile-nav{
  float: right;
  width: 100%;
  display: inline-block;
}
.profile ul.profile-nav li{
  width: 50%;
  float: left;
}
.profile ul.profile-nav li a{
  font-family: 'Maven Pro', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  display: block;
  position: relative;
  padding-left: 80px;
  color: #f6f6f6;
}
.profile ul.profile-nav li a::before{
  content: '';
  position: absolute;
  width: 70px;
  height: 2px;
  background: #009fd5;
  top: 50%;
  margin-top: -1px;
  left: 0;
  z-index: 0;
}
.profile ul.profile-nav li .icon-wrap{
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  left: 0;
  border-radius: 100%;
  background: #02d071;
  color: #fff;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
}
.profile ul.profile-nav li span{
  margin-top: 4px;
  display: inline-block;
}
.profile ul.profile-nav li.nav-search .icon-wrap{
  background: #f2851a;
}

  /* result */
  .results.single{
    position: relative;
  }
  .results.single::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 70%;
    background: #00253a;
    top: 0;
    left: 0;
  }
  .results.single ul.result-list li .item-wrap{
    padding: 100px 40px 100px 20px;
    border: none;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
  }
  .results.single ul.result-list li .item-wrap::before{
    opacity: 1;
    left: 0;
  }
  .results.single ul.result-list li{
    margin: 0;
  }

  /* curriculum */
  .curriculum{
    margin-top: 80px;
    position: relative;
  }
  .curriculum::before,
  .curriculum::after{
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background: #02c96f;
    top: -80px;
    left: 100px;
    z-index: 1;
  }
  .curriculum::after{
    left: auto;
    right: 100px;
  }
  .curriculum .item-wrap{
    padding: 100px 40px 85px 20px;
    background: #ffffff;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
  }
  .curriculum .item-wrap .circle-wrap{
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 500px;
    top: 0;
    left: 0;
    border-radius: 8px;
  }
  .curriculum .item-wrap .circle-wrap-wrap{
    top: -50%;
    left: -125%;
    position: absolute;
    height: 200%;
    width: 200%;
    background: #01bd67;
    border-radius: 100%;
  }
  .curriculum .item-wrap .circle-wrap-wrap::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: -5px;
    background: #687891;
    border-radius: 100%;
  }
  .curriculum .title-wrap{
    float: left;
    width: 30%;
    position: relative;
  }
  .curriculum .title-wrap h2{
    font-family: 'Maven Pro', sans-serif;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0;
  }
  .curriculum .title-wrap h2 span{
    display: block;
    font-weight: 400;
  }
  .curriculum .title-wrap .icon-wrap{
    margin-bottom: 20px;
    text-align: center;
    font-size: 70px;
    line-height: 70px;
    position: relative;
    color: #02d072;
  }
  .curriculum ul.info-wrap{
    float: right;
    width: 55%;
  }
  .curriculum ul.info-wrap li{
    position: relative;
    font-family: 'Maven Pro', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #687891;
    padding-left: 12px;
    margin-bottom: 15px;
  }
  .curriculum ul.info-wrap li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 14px;
    width: 2px;
    background: #015ec4;
  }


/* media single profissional */
@media only screen and (max-width: 1200px) {
  .page-banner.profile .container{
    width: 100%;
  }

}
@media only screen and (max-width: 992px) {
  .profile ul.profile-nav{
    width: 100%;
    float: none;
  }
  .page-banner.profile h1{
    text-align: center;
  }
  .curriculum .item-wrap .circle-wrap-wrap{
    left: -140%;
  }
  .profile ul.profile-nav li{
    text-align: center;
  }
  .profile ul.profile-nav li a{
    padding-left: 0;
    display: inline-block;
  }
  .profile ul.profile-nav li a:hover{
    text-decoration: none;
  }
  .profile ul.profile-nav li a::before{
    display: none;
  }
  .profile ul.profile-nav li .icon-wrap{
    position: relative;
    margin: 0 auto;
    top: auto;
    left: auto;
  }
  .profile ul.profile-nav li span{
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .results.single ul.result-list li .item-wrap{
    padding: 40px 40px 40px 20px;
  }
  .curriculum .title-wrap,
  .curriculum ul.info-wrap{
    width: 100%;
    float: none;
    text-align: center;
  }
  .curriculum .item-wrap .circle-wrap{
    height: 510px;
    width: 100%;
    top: 0;
    left: 0;
  }
  .curriculum .item-wrap .circle-wrap-wrap {
    left: -50%;
    top: -160%;
  }
  .curriculum .item-wrap {
    padding: 30px 20px 20px 20px;
  }
  .curriculum ul.info-wrap{
    margin-top: 40px;
  }
  .curriculum .item-wrap .circle-wrap-wrap::before{
    top: -3px;
    left: 0px;
  }
  .curriculum ul.info-wrap li{
    text-align: left;
  }
}
@media only screen and (max-width: 660px) {
  .results.single ul.result-list li .item-wrap{
    padding: 0 10px 20px 10px
  }
  .profile ul.profile-nav{
    margin-bottom: 30px;
  }
  .profile ul.profile-nav li a{
    font-size:16px;
    line-height: 18px;
  }
  .curriculum .title-wrap .icon-wrap{
    font-size: 40px;
    line-height: 40px;
  }
  .curriculum .title-wrap h2{
    font-size: 20px;
  }
  .curriculum .item-wrap .circle-wrap {
    height: 380px;
  }

}
@media only screen and (max-width: 480px) {

}








/* area-pac */
.area-pac {
    background: #005285;
    position: relative;
    padding: 240px 0 90px 0;
}
.area-pac h1{
  background: #f2851a;
  border-radius: 4px;
  font-size: 34px;
  line-height: 34px;
  padding: 20px 30px;
  display: inline-block;
}
.area-pac .area-pac-navigation{
  margin-top: 28px;
}
.area-pac .area-pac-navigation ul{
  float: right;
}
.area-pac .area-pac-navigation ul li{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  float: left;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
.area-pac .area-pac-navigation ul li::after{
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background: #009fd5;
  right: 0;
  top: 0;
}
.area-pac .area-pac-navigation ul li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.area-pac .area-pac-navigation ul li:last-child::after{
  display: none;
}
.area-pac .area-pac-navigation ul li a{
  color: #fff;
}
.area-pac .area-pac-navigation ul li a:hover,
.area-pac .area-pac-navigation ul li.active a{
  text-decoration: none;
  color: #f2851a;
}

.appointments{
  background: #f7f7f7;
  position: relative;
}
.appointments::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: #005285;
  top: 0;
  left: 0;
}
.appointments .block{

}
.appointments .block h2{
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  position: relative;
  padding-left: 35px;
  margin-left: 40px;
  margin-bottom: 40px;
}
.appointments .block h2 i{
  color: #02d072;
  font-size: 26px;
  line-height: 26px;
  position: absolute;
  top: -1px;
  left: 0;
}
.appointments .block h2 span{

}
.appointments .block .appointments-list{
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  border-left: 5px solid #687891;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
}
.appointments .block .appointments-list .scroll{
  max-height: 430px;
  overflow: auto;
}
.appointments .block .appointments-list ul{

}
.appointments .block .appointments-list ul li{
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
  font-weight: 700;
  color: #687891;
  font-size: 14px;
  line-height: 16px;
}
.appointments .block .appointments-list ul li .item-wrap{
  display: table;
  position: relative;
  width: 100%;
  border:1px solid #d1d1d1;
  border-radius: 50px;
  padding: 10px 20px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.appointments .block .appointments-list ul li .item-wrap .show-mob{
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.appointments .block .appointments-list ul li .buttons-mob{
  display: none;
  position:relative;
  /*z-index: 2;*/
  text-align: center;
  padding-bottom: 20px;
  margin-top: -5px;
}
.appointments .block .appointments-list ul li .cell-date{
  width: 15%;
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
}
.appointments .block .appointments-list ul li .cell-doc{
  width: 20%;
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
  height: 50px;
  position: relative;
}
.appointments .block .appointments-list ul li .cell-type{
  width: 30%;
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
  height: 50px;
  position: relative;
}
.appointments .block .appointments-list ul li .cell-view{
  width: 30%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.appointments .block .appointments-list ul li .cell-view .button{
  display: inline-block;
}
.appointments .block .appointments-list ul li .cell-view p{
  padding-bottom: 10px;
}

  /* doc */
  .appointments .block .appointments-list ul li .cell-doc .img-wrap{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    border-radius: 100%;
    overflow: hidden;
    border:2px  solid #fff;
    background: #687891;
  }
  .appointments .block .appointments-list ul li .cell-doc p{
    padding-left: 55px;
  }
  .appointments .block .appointments-list ul li .cell-doc p.sm{
    font-size: 12px;
    line-height: 14px;
  }

  /* type */
  .appointments .block .appointments-list ul li .cell-type .img-wrap{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
  }
  .appointments .block .appointments-list ul li .cell-type p{
    padding-left: 55px;
  }
  .appointments .block .appointments-list ul li .cell-type p.sm{
    font-size: 12px;
    line-height: 14px;
  }

  /* head */
  .appointments .block .appointments-list ul li.head{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    color: #f2851a;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
  }
  .appointments .block .appointments-list ul li.head .item-wrap{
    border: none;
    border-radius: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
  .appointments .block .appointments-list ul li.head .cell-date,
  .appointments .block .appointments-list ul li.head .cell-doc,
  .appointments .block .appointments-list ul li.head .cell-type,
  .appointments .block .appointments-list ul li.head .cell-view{

  }

  /* hover */
  .appointments .block .appointments-list ul li .item-wrap:hover{
    background: #f4f4f4;
  }
  .appointments .block .appointments-list ul li.head .item-wrap:hover{
    background: none;
  }

  /* alt */
  .appointments.alt{

  }
  .appointments.alt::before{
    display: none;
  }
  .appointments.alt .block h2 span{
    color: #005285;
  }
  .appointments.alt .block h2 i{
    color: #4fccc4;
  }


  /* single */
  .appointments.single{
    background: none;
    margin-top: 30px;
  }
  .appointments.single .block .appointments-list{
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: none;
  }
  .appointments.single .block .appointments-list ul li.head{
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    color: #f2851a;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
  }
  .appointments.single .block .appointments-list ul li.head .item-wrap{
    padding: 0;
  }
  .appointments.single .block .appointments-list ul li .item-wrap{
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .appointments.single .block .appointments-list ul li{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
  }
  .appointments.single .block .appointments-list ul li .cell-doc .img-wrap{
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  .appointments.single .block .appointments-list ul li .cell-doc p {
    padding-left: 80px;
  }
  .appointments.single .block .appointments-list ul li .cell-type .img-wrap{
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  .appointments.single .block .appointments-list ul li .cell-type p {
    padding-left: 80px;
  }
  .appointments.single .block .appointments-list ul li .cell-view .button{
    display: inline-block;
    text-align: center;
    background: #f2851a;
  }
  .appointments.single .block .appointments-list ul li .item-wrap:hover {
    background: none;
  }
  .appointments.single .block .appointments-list ul li .cell-date {
    width: 20%;
  }
  .appointments.single .block .appointments-list ul li .cell-view {
    width: 20%;
  }

/* media area-pac */
@media only screen and (max-width: 1200px) {
  .area-pac .container,
  .appointments .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .area-pac {
    text-align: center;
    padding: 150px 0 50px 0;
  }
  .area-pac h1{
    font-size: 28px;
    line-height: 28px;
  }
  .area-pac .area-pac-navigation{
    margin-top: 10px;
  }
  .area-pac .area-pac-navigation ul{
    float: none;
    text-align: center;
  }
  .area-pac .area-pac-navigation ul li{
    float: none;
    width: auto;
    display: inline-block;
  }
}
@media only screen and (max-width: 768px) {
  .appointments .block h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 30px;
    padding-left: 30px;
  }
  .appointments .block h2 i{
    font-size: 22px;
    line-height: 22px;
  }

  .appointments .block .appointments-list{
    padding: 20px 10px;
  }
  .appointments .block .appointments-list ul li.head{
    font-size: 14px;
    line-height: 16px;
  }
  .appointments .block .appointments-list ul li .item-wrap{
    padding: 10px;
  }
  .appointments .block .appointments-list ul li .cell-view {
    display: block;
    width: 100%;
  }
  .appointments .block .appointments-list ul li .item-wrap .show-mob{
    display: block;
  }
  .appointments .block .appointments-list ul li .item-wrap{
    display: block; 
  }
  .appointments .block .appointments-list ul li .buttons-mob{
    display: block;
  }
  .appointments .block .appointments-list ul li .buttons-mob p{
    display: inline-block;
    width: 60%;
    padding-right: 20px;
    vertical-align: middle;
    background-color: #FFF;
    border-radius: 4px;
  }
  .appointments .block .appointments-list ul li .cell-date{
    width: 20%;
    padding-right: 5px;
  }
  .appointments .block .appointments-list ul li .cell-doc{
    width: 37.55%;
    padding-right: 5px;
  }
  .appointments .block .appointments-list ul li .cell-type{
    width: 37.55%;
    padding-right: 5px;
  }


  .appointments.single .block .appointments-list ul li .item-wrap{
    display: inline-block;
    width: 100%;
  }
  .appointments.single .block .appointments-list ul li .cell-date,
  .appointments.single .block .appointments-list ul li .cell-doc,
  .appointments.single .block .appointments-list ul li .cell-type{
    width: 33.33%;
    display: inline-block;
    float: left;
    text-align: center;
    height: auto;
    padding: 0 10px;
  }
  .appointments.single .block .appointments-list ul li .cell-view{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 30px;
  }
  .appointments.single .block .appointments-list ul li.head .cell-view{
    display: none;
  }
  .appointments.single .block .appointments-list ul li .cell-doc .img-wrap,
  .appointments.single .block .appointments-list ul li .cell-type .img-wrap{
    position: relative;
    top: auto;
    margin: 0 auto;
    left: auto;
    margin-bottom: 5px;
  }
  .appointments.single .block .appointments-list ul li .cell-doc p,
  .appointments.single .block .appointments-list ul li .cell-type p{
    padding: 0;
  }
  .appointments.single .block .appointments-list ul li{
    font-size: 16px;
    line-height: 18px;
  }



}
@media only screen and (max-width: 480px) {

  .appointments .block .appointments-list ul li .cell-date{
    width: 30%;
  }
  .appointments .block .appointments-list ul li .cell-doc{
    width: 50%;
  }
  .appointments .block .appointments-list ul li .cell-type{
    width: 20%;
    padding: 0;
  }
  .appointments .block .appointments-list ul li .cell-doc .img-wrap{
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .appointments .block .appointments-list ul li .cell-type .img-wrap{
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }
  .appointments .block .appointments-list ul li .cell-doc p {
    padding-left: 45px;
  }
  .appointments .block .appointments-list ul li .cell-type p{
    display: none;
  }
  .appointments .block .appointments-list ul li .cell-date{
    text-align: center;
  }
  .appointments .block .appointments-list ul li.head .cell-date,
  .appointments .block .appointments-list ul li.head .cell-doc,
  .appointments .block .appointments-list ul li.head .cell-type,
  .appointments .block .appointments-list ul li.head .cell-view{
    text-align: center;
  }




  .appointments.single .block .appointments-list ul li .cell-date,
  .appointments.single .block .appointments-list ul li .cell-doc,
  .appointments.single .block .appointments-list ul li .cell-type{
    width: 100%;
    float: none
  }
  .appointments.single .block .appointments-list ul li .cell-doc{
    margin-top: 20px;
  }
  .appointments.single .block .appointments-list ul li .cell-type{
    width: 100%;
    float: none;
    margin-top: 20px;
  }
  .appointments.single .block .appointments-list ul li.head .cell-doc,
  .appointments.single .block .appointments-list ul li.head .cell-type{
    display: none;
  }
  .appointments.single .block .appointments-list ul li .cell-type p{
    display: block;
  }
  .appointments.single .block .appointments-list ul li.head{
    margin-bottom: 10px;
  }

}
@media only screen and (max-width: 330px) {
  .appointments .block .appointments-list ul li{
    font-size: 12px;
    line-height: 14px;
  }
}






















/* pagination */
.pagination{
  width: 100%;
  display: inline-block;
  margin-top: 40px;
}
.pagination ul{
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.pagination ul li{
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  margin: 5px;
}
.pagination ul li a{
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  background: #67778f;
  border-radius: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.pagination ul li.active a,
.pagination ul li a:hover{
  text-decoration: none;
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
  color: #015ec4;
}

/* media pagination */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {
  .pagination {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {

}















/* about */
.about{
  padding: 240px 0 0 0;
}
.about h1{
  font-size: 30px;
  line-height: 32px;
}
.about .intro{
  max-width: none;
  margin: 0;
  margin-bottom: 80px;
  font-size: 18px;
  line-height: 26px;
}
.about .intro p{
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  max-width: 750px;
  margin: 0 auto;
}
.about .block{
  padding-left: 110px;
}
.about .block h2{
  font-size: 32px;
  line-height: 34px;
  color: #009fd5;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.about .block p{
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.about .illu{
  text-align: center;
  margin-top: 80px;
}
.about .illu img{
  vertical-align: top;
}

  /* v2 */
  .about.v2{
    padding:240px 0 80px 0;
  }
  .about.v2 .intro p{
    max-width: none;
  }

.team{
  border-top: 10px solid #4fccc4;
  border-bottom: 10px solid #4fccc4;
  background: #67778f;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}
.team h2{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 32px;
  color: #4ff0e6;
  margin-bottom: 30px;
}
.team .illu{
  text-align: center;
  margin-top: 80px;
}
.team .illu img{
  vertical-align: top;
}

  /* slider */
  .team-slider{
    width: 600px;
    margin: 60px 0 0 0;
    text-align: left;
    float: left;
  }
  .team-slider .item-wrap{
    position: relative;
    min-height: 200px;
    padding: 20px 0 20px 170px;
  }
  .team-slider .item-wrap::before{
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: #fff;
    top: 0;
    left: 70px;
  }
  .team-slider .img-wrap{
    position: absolute;
    top: 40px;
    opacity: 0;
    left: 0;
    width: 140px;
    height: 140px;
    float: left;
    border-radius: 100%;
    overflow: hidden;
    border:3px solid #005285;
    background: #fff;
    -webkit-transition: all .6s .3s ease;
    -moz-transition: all .6s .3s ease;
    -ms-transition: all .6s .3s ease;
    -o-transition: all .6s .3s ease;
    transition: all .6s .3s ease;
  }
  .team-slider .img-wrap img{
    vertical-align: top;
  }
  .team-slider .info-wrap{
    font-size: 16px;
    line-height: 24px;
  }
  .team-slider .info-wrap h3{
    font-family: 'Maven Pro', sans-serif;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    color: #4ff0e6;
    margin-bottom: 20px;
    left: -20px;
    opacity: 0;
    position: relative;
    -webkit-transition: all .6s .3s ease;
    -moz-transition: all .6s .3s ease;
    -ms-transition: all .6s .3s ease;
    -o-transition: all .6s .3s ease;
    transition: all .6s .3s ease;
  }
  .team-slider .info-wrap p{
    left: -20px;
    opacity: 0;
    position: relative;
    -webkit-transition: all .6s .5s ease;
    -moz-transition: all .6s .5s ease;
    -ms-transition: all .6s .5s ease;
    -o-transition: all .6s .5s ease;
    transition: all .6s .5s ease;
  }

    /* active */
    .team-slider .swiper-slide-active .img-wrap{
      opacity: 1;
      top: 20px;
    }
    .team-slider .swiper-slide-active .info-wrap h3{
      left: 0;
      opacity: 1;
    }
    .team-slider .swiper-slide-active .info-wrap p{
      left: 0;
      opacity: 1;
    }

      /* duplicate */
      .team-slider .swiper-slide-duplicate-active .img-wrap{
        top: 40px;
        opacity: 0;
      }
      .team-slider .swiper-slide-duplicate-active .info-wrap h3,
      .team-slider .swiper-slide-duplicate-active .info-wrap p{
        left: -20px;
        opacity: 0;
      }

    /* navigation */
    .team-nav{
      margin: 120px 0 0 0;
      float: right;
      width: calc(100% - 630px);
    }
    .team-nav .t-prev,
    .team-nav .t-next{
      width: 50px;
      height: 50px;
      border-radius: 100%;
      line-height: 50px;
      text-align: center;
      font-size: 20px;
      background: #fff;
      color: #0d3f7a;
      display: inline-block;
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
    }
    .team-nav .t-next{
      width: 70px;
      height: 70px;
      line-height: 70px;
      font-size: 30px;
      margin-left: 10px;
    }
    .team-nav .t-prev:hover,
    .team-nav .t-next:hover{
      color: #01b864;
      box-shadow: 0 0 15px 0 rgba(0,0,0,.3);
    }

/* media about */
@media only screen and (max-width: 1200px) {
  .about .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .about {
    padding: 150px 0 0 0;
  }
  .about.v2 {
    padding: 150px 0 40px 0;
  }
  .about .intro{
    margin-bottom: 10px;
  }
  .about .block{
    padding: 0;
    margin: 40px auto;
    text-align: center;
    max-width: 400px;
  }
  .about .illu,
  .team .illu{
    max-width: 400px;
    margin: 0 auto 0 auto;
  }
  .team-slider {
    width: 100%;
    float: none;
  }
  .team-nav{
    margin: 40px 0 60px 0;
    float: none;
    width: 100%;
  }


}
@media only screen and (max-width: 768px) {
  .about .block h2{
    font-size: 28px;
    line-height: 30px;
  }

  .team h2{
    font-size: 28px;
    line-height: 30px;
  }
  .team-slider .item-wrap{
    position: relative;
    min-height: auto;
    padding: 0;
    text-align: center;
  }
  .team-slider .item-wrap::before{
    display: none;
  }
  .team-slider .img-wrap{
    position: relative;
    float: none;
    margin: 0 auto;
    top: 0;
    margin-bottom: 10px;
  }
  .team-slider .info-wrap h3{
    margin-bottom: 10px;
  }
  .team-slider .swiper-slide-active .img-wrap{
    top: 0;
  }

}
@media only screen and (max-width: 480px) {

}








/* contact */
.contact{

}
.contact-block{
  margin-top: 100px;
  margin-bottom: 30px;
}
.contact-block h2{
  color: #00beff;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 30px 0;
}
.contact-block ul.contact-infos{

}
.contact-block ul.contact-infos li{
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  line-height: 22px;
  position: relative;
  padding-left: 40px;
  color: #ffffff;
  margin: 20px 0;
  display: inline-block;
  width: 100%;
}
.contact-block ul.contact-infos li .icon-wrap{
  position: absolute;
  top: 50%;
  left: 0;
  color: #09a4e6;
  font-size: 30px;
  line-height: 30px;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.contact-block ul.contact-infos li p{

}
.contact-block ul.contact-infos li a{
  color: #ffffff;
}
.contact-block ul.contact-infos li a:hover{

}

.contact-block.page-form{
  background: none;
  margin-top: 50px;
}
.contact-block.page-form .form-wrap{
  padding: 40px 50px 0 50px;
  border-right: 0;
  border-left: 8px solid #687891;
}
.contact-block.page-form .field-wrap.submitter{
  text-align: left;
}
.contact-block.page-form .form-wrap .button {
  font-size: 16px;
  line-height: 16px;
  padding: 20px 35px 20px 35px;
}
.contact-block.page-form .form-wrap input[type="checkbox"]{
  width: 20px;
  margin: 0;
  margin-top: 3px;
}
.contact-block.page-form .form-wrap label.obs{
  width: calc(100% - 25px);
  margin: 0 0 0 5px;
}


/* media contact */
@media only screen and (max-width: 1200px) {
  .contact .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .contact-block{
    max-width: 580px;
    margin: 40px auto 30px auto;
  }

  .contact-block ul.contact-infos li{
    margin: 15px 0;
  }
}
@media only screen and (max-width: 768px) {
  .contact-block h2{
    font-size: 18px;
    line-height: 22px;
  }
  .contact-block ul.contact-infos li{
    font-size: 16px;
    line-height: 18px;
  }
  .contact-block ul.contact-infos li .icon-wrap{
    font-size: 26px;
    line-height: 26px;
  }
  .contact-block.page-form .form-wrap{
    margin-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .contact-block.page-form .form-wrap{
    border-left: 4px solid #687891;
  }
  .contact-block.page-form .form-wrap{
    padding: 20px 20px 0 20px;
  }
}











/* footer */
.site-footer{
  background: #303b4d;
}
.site-footer img{
  vertical-align: top;
  max-width: 240px;
}
.site-footer .site-footer-wrap{

}

  /* infos */
  .site-footer .site-infos{
    float: left;
    width: 42%;
    margin-top: 30px;
  }

    /* logo */
    .site-footer .site-logo{
      float: left;
      margin: 24px 9% 0 0;
    }

    /* contact info */
    .site-footer .site-contact-info{
      float: left;
    }
    .site-footer .site-contact-info ul{

    }
    .site-footer .site-contact-info ul li{
      font-size: 12px;
      line-height: 18px;
      color: #fff;
      margin-bottom: 20px;
    }
    .site-footer .site-contact-info ul li:last-child{
      margin-bottom: 0;
    }
    .site-footer .site-contact-info ul li a{
      color: #fff;
    }
    .site-footer .site-contact-info ul li i{
      color: #09a4e6;
      font-size: 20px;
      float: left;
      margin-right: 10px;
      text-align: center;
      width: 20px;
    }
    .site-footer .site-contact-info ul li span{
      font-weight: 700;
    }

  /* menus */
  .site-footer .blocks-wrap{
    float: right;
    width: 55%;
  }
  .site-footer .block{
    float: left;
    width: 33.33%;
  }
  .site-footer .block.m1,
  .site-footer .block.m2{
    width: 30%;
  }
  .site-footer .block.m3{
    width: 40%;
  }
  .site-footer .block h4{
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
    height: 45px;
  }
  .site-footer .block h4 span{
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    line-height: 12px;
    display: block;
  }
  .site-footer .block ul{

  }
  .site-footer .block ul li{
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 5px;
  }
  .site-footer .block ul li:last-child{
    margin-bottom: 0;
  }
  .site-footer .block ul li a{
    color: #ffffff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .site-footer .block ul li a:hover{
    text-decoration: none;
  }

    /* colors */
    .site-footer .block h4,
    .site-footer .block h4 a{
      color: #fff;
    }
    .site-footer .block h4 a:hover{
      text-decoration: none;
    }
    .site-footer .block.m2 h4,
    .site-footer .block.m2 h4 a{
      color: #f2851a;
    }
    .site-footer .block.m3 h4,
    .site-footer .block.m3 h4 a{
      color: #02d071;
    }
    .site-footer .block ul li a:hover{
      color: #09a4e6;
    }
    .site-footer .block.m2 ul li a:hover{
      color: #f2851a;
    }
    .site-footer .block.m3 ul li a:hover{
      color: #02d071;
    }


  /* bottom bar */
  .bottom-bar{
    background: #262c36;
    padding: 20px 0;
    text-align: center;
  }
  .bottom-bar p{
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
  }
  .bottom-bar p span{
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    color: #09a4e6;
  }

/* media footer */
@media only screen and (max-width: 1200px) {
  .site-footer .container{
    width: 100%;
  }
  .site-footer .site-infos{
    margin-top: 0;
  }
  .site-footer .site-logo{
    float: none;
    margin: 0 0 20px 0;
  }
  .site-footer .site-contact-info{
    float: none;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .site-footer .site-infos{
    width: 100%;
    margin: 0;
    text-align: center;
    float: none;
  }
  .site-footer .site-contact-info ul li{
    display: inline-block;
    margin: 0 10px;
  }
  .site-footer .blocks-wrap{
    width: 100%;
    float: none;
    text-align: center;
    display: inline-block;
    margin-top: 40px;
  }
  .site-footer .block.m1,
  .site-footer .block.m2,
  .site-footer .block.m3{
    width: 33.33%;
  }
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {
  .site-footer .site-contact-info ul li {
    display: inline-block;
    width: 100%;
    margin: 5px 0;
  }
  .site-footer .site-contact-info ul li i{
    float: none;
  }
  .site-footer .blocks-wrap{
    margin-top: 20px;
  }
  .site-footer .block.m1,
  .site-footer .block.m2,
  .site-footer .block.m3{
    width: 100%;
    float: none;
    margin-top: 20px;
  }
  .site-footer .block h4{
    height: auto;
    margin-bottom: 10px;
  }
  .bottom-bar p{
    font-size: 12px;
    line-height: 14px;
  }
}







/* no-freelunch */
.no-freelunch{
  padding: 200px 0 0 0;
  position: relative;
}
.no-freelunch .intro{
  margin-bottom: 120px;
  position: relative;
}
.no-freelunch .intro .top-img{
  position: absolute;
  top: -100px;
  left: 0;
  width: 140px;
  height: 83px;
  background:url('../media/coin.png') left bottom no-repeat;
}
.no-freelunch::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 450px;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top,  rgba(38,64,89,0) 0%, rgba(38,64,89,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(38,64,89,0) 0%,rgba(38,64,89,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(38,64,89,0) 0%,rgba(38,64,89,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00264059', endColorstr='#264059',GradientType=0 ); /* IE6-9 */
}
.no-freelunch h1 {
    font-size: 40px;
    line-height: 42px;
}
.no-freelunch .content{
  position: relative;
  padding-left: 40%;
}
.no-freelunch .content ul.inner-list{

}
.no-freelunch .content ul.inner-list li{
  width: 100%;
  display: inline-block;
  padding-bottom: 70px;
}
.no-freelunch .content ul.inner-list li .item-wrap{
  position: relative;
}
.no-freelunch .content ul.inner-list li .icon-wrap{
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border:5px solid #f4a643;
  text-align: center;
  color: #fff;
  font-size: 60px;
  line-height: 118px;
  top: 20px;
  left: 0;
}
.no-freelunch .content ul.inner-list li .info-wrap{
  color: #fff;
  padding-left: 180px;
  min-height: 150px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  position: relative;
}
.no-freelunch .content ul.inner-list li .info-wrap::before,
.no-freelunch .content ul.inner-list li .info-wrap::after{
  content: '';
  position: absolute;
  width: 4px;
  left: 58px;
  top: -40px;
  height: 60px;
  background: #01d7d6;
}
.no-freelunch .content ul.inner-list li .info-wrap::after{
  height: 60%;
  top: 140px;
}
.no-freelunch .content ul.inner-list li h2{
  font-family: 'Maven Pro', sans-serif;
  font-size: 24px;
  line-height: 26px;
  color: #f4a643;
  margin: 20px 0;
}
.no-freelunch .content ul.inner-list li p{

}
.no-freelunch .content .side-img{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 285px;
  height: 100%;
  background:url('../media/nofreelunch.png') left bottom no-repeat;
}
.no-freelunch .content .bottom-img{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 242px;
  height: 100%;
  background:url('../media/star-people.png') left bottom no-repeat;
}
.no-freelunch .content .bottom-content{
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-top: 40px;
  position: relative;
  margin-bottom: 70px;
  display: inline-block;
  width: 100%;
}
.no-freelunch .content .bottom-content span{
  color: #01d7d6;
}


/* media no-freelunch */
@media only screen and (max-width: 1200px) {
  .no-freelunch .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .no-freelunch {
      padding: 150px 0 0 0;
  }
  .no-freelunch .intro {
    margin-bottom: 90px;
  }
  .no-freelunch h1 {
    font-size: 36px;
    line-height: 38px;
  }
  .no-freelunch .content {
    padding-left: 5%;
    padding-right: 5%;
  }
  .no-freelunch .intro .top-img{
    background-size: contain;
    height: 60px;
    width: 100px;
    top: -80px;
    left: 20px;
  }
  .no-freelunch .content .bottom-img{
    background-size: contain;
    width: 200px;
  }
  .no-freelunch .content .side-img{
    background-size: contain;
    width: 70px;
    bottom: -1px;
    left: 50px;
  }
  .no-freelunch .content ul.inner-list li{
    padding-bottom: 30px;
  }
  .no-freelunch .content ul.inner-list li .icon-wrap{
    width: 80px;
    height: 80px;
    border: 3px solid #f4a643;
    font-size: 40px;
    line-height: 78px;
  }
  .no-freelunch .content ul.inner-list li .info-wrap::before,
  .no-freelunch .content ul.inner-list li .info-wrap::after{
    left: 38px;
  }
  .no-freelunch .content ul.inner-list li .info-wrap::after {
    height: 60%;
    top: 100px;
  }
  .no-freelunch .content ul.inner-list li .info-wrap {
    padding-left: 120px;
  }
  .no-freelunch .content .bottom-content{
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .no-freelunch .content {
    padding-left: 0;
    padding-right: 0;
  }
  .no-freelunch .content ul.inner-list li .info-wrap {
    padding-left: 70px;
  }
  .no-freelunch h1 {
    font-size: 32px;
    line-height: 34px;
  }
  .no-freelunch .content .bottom-img {
    width: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .no-freelunch .content ul.inner-list li .icon-wrap {
    width: 50px;
    height: 50px;
    border: 2px solid #f4a643;
    font-size: 26px;
    line-height: 48px;
  }
  .no-freelunch .content ul.inner-list li .info-wrap::before,
  .no-freelunch .content ul.inner-list li .info-wrap::after {
    left: 24px;
    width: 2px;
    top: -10px;
    height: 30px;
    display: none;
  }
  .no-freelunch .content ul.inner-list li .info-wrap::after {
    display: block;
    height: calc(100% - 5px);
    top: 50px;
  }
  .no-freelunch h1 {
    font-size: 30px;
    line-height: 32px;
  }
  .no-freelunch .content ul.inner-list li .icon-wrap{
    top: 0;
  }
  .no-freelunch .content ul.inner-list li h2{
    font-size: 22px;
    line-height: 24px;
    margin: 15px 0;
  }
  .no-freelunch .content ul.inner-list li:last-child{
    padding: 0;
  }
  .no-freelunch .content .bottom-content{
    margin-top: 60px;
    margin-bottom: 120px;
  }
  .no-freelunch .content .side-img{
    display: none;
  }
  .no-freelunch .content .bottom-img {
    left: 50%;
    right: auto;
    margin-left: -75px;
  }
  .no-freelunch .intro {
    margin-bottom: 60px;
  }
  .no-freelunch .intro .top-img {
    height: 40px;
    width: 70px;
  }
  .no-freelunch .content ul.inner-list li:last-child .info-wrap::after{
    height: calc(100% - 30px);
  }
}

/**PAGAMENTO**/

.payment{
  background: #f7f7f7;
  position: relative;
}
.payment::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: #005285;
  top: 0;
  left: 0;
}
.payment .block{
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  border-left: 5px solid #687891;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
}

.payment.success .block{
  border-left-color: #02d071;
}
.payment .block .info-wrap .name{
  padding-bottom: 25px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 25px;
}
.payment .block .info-wrap .name h2{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  color: #687891;
}
.payment .block .info-wrap .name h2 a{
  color: #687891;
}
.payment .block .info-wrap .name h4{
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #015ec4;
  margin-bottom: 5px;
}
.payment .block .info-wrap .name .verified{
  position: relative;
  padding-left: 25px;
  color: #687891;
  font-family: 'Maven Pro', sans-serif;
  font-size: 12px;
  line-height: 12px;
  margin-top: 15px;
}
.payment .block .info-wrap .name .verified i{
  color: #02d072;
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 20px;
  line-height: 20px;
}
.payment .block .info-wrap .horario{
  position: relative;
}
.payment .block .info-wrap .horario h3{
  margin-bottom: 10px;
  position: relative;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #015ec4;
}
.payment .block .info-wrap .horario h3 i{
  font-size: 20px;
  color: #02d072;
}
.payment .block .info-wrap .horario h4{
  font-size: 20px;
}
.payment .block .info-wrap .horario p{
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #687891;
}
.payment .block .valor{
  padding-top: 50px;
}
.payment .block .valor h3{
  color: #02d072;
  font-size: 30px;
}
.payment .block .convenio h3{
  margin-bottom: 10px;
  position: relative;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #015ec4;
}
.payment .block .convenio h3 i{
  font-size: 20px;
  color: #02d072;
}
.payment .block .convenio h4{
  font-size: 20px;
}

.payment .block .locale{
  padding-bottom: 25px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 25px;
  padding-top: 25px;
  border-top: 1px solid #d3d3d3;
  margin-top: 25px;
}
.payment .block .locale h3{
  margin-bottom: 10px;
  position: relative;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #015ec4;
}
.payment .block .locale h3 i{
  font-size: 20px;
  color: #02d072;
}
.payment .block .locale h5{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #02d072;
  margin-bottom: 5px;
}
.payment .block .locale p{
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #687891;
}

.payment .block hr{
  border-color: #d3d3d3;
  margin: 30px 0;
}
.payment .block h5{
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 1em;
}
.payment.success .block h5{
  color: #02d071;
}
.payment .field-wrap.submitter {
  position: relative;
  bottom: -50px;
}
.payment .field-wrap.submitter .button {
  font-size: 16px;
  line-height: 16px;
  padding: 20px 35px 20px 35px;
}
.payment .text-time{
  color: #02d071;
  font-size: 30px;
  margin-bottom: 1em;
}
.payment .list{
  list-style: disc;
  margin-left: 3em;
  padding-top: 15px;
}
.payment .list li{
  padding-bottom: 15px;
}
.payment .bg-sccess{
  background-color: #00d072;
  color: #FFF;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 -60px;
  padding: 30px 60px;
}
.payment .bg-alert{
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
}
.payment .bg-sccess h2{
  font-size: 32px;
  margin-bottom: .5em;
}
.payment .overflow-hidden{
  overflow: hidden;
}


@media only screen and (max-width: 992px) {
  .payment .block .profile,
  .payment .block .info-wrap,
  .payment .block .valor{
    text-align: center;
  }
  .payment .bg-sccess img{
    display: none;
  }
  .payment .overflow-hidden{
    clear: both;
  }
}
@media only screen and (max-width: 768px) {

}





/* asterisk */
.asterisk{
  position: relative;
  background: #f4a643;
  padding: 30px 0;
}
.asterisk .info-wrap{
  position: relative;
  padding-left: 40%;
}
.asterisk .info-wrap h2{
  position: relative;
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-decoration: line-through;
}
.asterisk .info-wrap .ast-wrap{
  font-family: 'Lato', sans-serif;
  font-size: 100px;
  line-height: 110px;
  font-weight: 700;
  color: #01d7d6;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  top: -60px;
  left: -70px;
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
}

/* media asterisk */
@media only screen and (max-width: 1200px) {
  .asterisk .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .asterisk .info-wrap {
    padding-left: 0;
    text-align: center;
  }
  .asterisk .info-wrap .ast-wrap{
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 80px;
    line-height: 84px;
    margin-left: -25px;
  }
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {
  .asterisk .info-wrap .ast-wrap {
    width: 40px;
    height: 40px;
    font-size: 60px;
    line-height: 64px;
    top: -40px;
  }
}










/* propositions */
.propositions{
  position: relative;
  padding: 90px 0 30px 0;
}
.propositions.bottom{
  padding: 20px 0 30px 0;
}
.propositions .intro-wrap{
  text-align: center;
}
.propositions .intro-wrap h2{
  font-family: 'Maven Pro', sans-serif;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
  color: #303b4d;
  margin: 0;
  margin-bottom: 50px;
}

.propositions ul.cards{
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.propositions ul.cards li{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
  color: #687891;
  font-size: 18px;
  line-height: 22px;
  padding: 20px 30px;
  width: 50%;
}
.propositions ul.cards li .item-wrap{
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: #fff;
  width: 100%;
  border-radius: 8px;
  border:1px solid #67778f;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.propositions ul.cards li .item-wrap::before{
  content: '';
  position: absolute;
  width: 8px;
  height: 100%;
  top: 0;
  left: -10px;
  background: #687891;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.propositions ul.cards li .icon-wrap{
  margin: 0 auto;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background: #67778f;
  text-align: center;
  color: #fff;
  line-height: 90px;
  font-size: 46px;
  position: relative;
  margin-bottom: 30px;
}
.propositions ul.cards li .icon-wrap.green{
  background: #02d072;
}
.propositions ul.cards li .icon-wrap.blue{
  background: #015ec4;
}
.propositions ul.cards li .icon-wrap .iconned{
  font-size: 16px;
  line-height: 26px;
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #02d072;
  right: 0;
  top: 0;
}
.propositions ul.cards li .icon-wrap.special{
  line-height: 114px;
  font-size: 30px;
}
.propositions ul.cards li .icon-wrap.special .iconned{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: none;
  color: #fff;
  right: auto;
  left: 50%;
  top: 10px;
  margin-left: -12px;
}
.propositions ul.cards li .info-wrap{
  padding: 0 30px;
}
.propositions ul.cards li .info-wrap h2{
  text-transform: uppercase;
  font-family: 'Maven Pro', sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #67778f;
  margin-bottom: 30px;
}
.propositions ul.cards li .info-wrap h2 span.blue{
  color: #15bdcd;
}
.propositions ul.cards li .info-wrap h2 span.green{
  color: #02d071;
}
.propositions ul.cards li .info-wrap h2 span.orange{
  color: #f2851a;
}
.propositions ul.cards li .price-wrap{
  margin-top: 30px;
}
.propositions ul.cards li .price-wrap .price{
  font-family: 'Maven Pro', sans-serif;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  background: #67778f;
  border-radius: 6px;
  padding: 15px 30px;
}
.propositions ul.cards li .price-wrap .price.blue{
  background: rgb(1,89,182); /* Old browsers */
  background: -moz-linear-gradient(45deg,  rgba(1,89,182,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b6', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.propositions ul.cards li .price-wrap .price.blue span{
  color: #a4e2e9;
}
.propositions ul.cards li .price-wrap .price.yellow{
  background: rgb(252,206,19); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(252,206,19,1) 0%, rgba(238,142,15,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(252,206,19,1) 0%,rgba(238,142,15,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(252,206,19,1) 0%,rgba(238,142,15,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcce13', endColorstr='#ee8e0f',GradientType=1 ); /* IE6-9 */
}

.propositions ul.cards li .d-icons{
  margin-bottom: 30px;
  position: relative;
}
.propositions ul.cards li .d-icons::before{
  content: '';
  position: absolute;
  width: 80%;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
  left: 10%;
  background: #15bdcd;
}
.propositions ul.cards li .d-icons .icon-wrap{
  margin: 0 10px;
  display: inline-block;
}
.propositions ul.cards li .d-icons .icon-wrap.green{
  background: #02d072;
  background: -moz-linear-gradient(45deg,  rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.propositions ul.cards li .d-icons .icon-wrap.orange{
  background: #f2851a;
}

  /* hover */
  .propositions ul.cards li .item-wrap:hover{
    box-shadow: 0 15px 20px 0 rgba(0,0,0,.3);
  }
  .propositions ul.cards li .item-wrap:hover::before{
    left: 0;
  }


/* media propositions */
@media only screen and (max-width: 1200px) {
  .propositions .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .propositions .intro-wrap h2{
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .propositions ul.cards li{
    padding: 20px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .propositions {
    padding: 50px 0 30px 0;
  }
  .propositions .intro-wrap h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .propositions ul.cards {
    max-width: 470px;
    margin: 0 auto;
  }
  .propositions ul.cards li{
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .propositions ul.cards li{
    font-size: 16px;
    line-height: 22px;
  }
  .propositions ul.cards li .icon-wrap{
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 38px;
    margin-bottom: 15px;
  }
  .propositions ul.cards li .info-wrap h2{
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 20px;
  }
  .propositions ul.cards li .info-wrap {
    padding: 0 0px;
  }

}






/* between */
.between{
  position: relative;
  background: #67778f;
  color: #fff;
  padding: 30px 0;
}
.between::before,
.between::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 150px;
  top: -150px;
  left: 0;
  background: #67778f;
  z-index: -1;
}
.between::after{
  top: auto;
  bottom: -150px;
}
.between .info-wrap{
  padding: 0 80px;
}
.between .info-wrap h2{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
  margin: 0;
  color: #02d072;
  width: 35%;
  float: left;
  text-transform: uppercase;
}
.between .info-wrap p{
  position: relative;
  float: right;
  text-align: right;
  width: 60%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}
.between .info-wrap p span{
  color: #15b7c7;
}
.between .info-wrap span.dq{
  position: absolute;
  color: #f4a643;
  top: -30px;
  left: 30px;
  font-size: 110px;
  line-height: 110px;
}


/* media between */
@media only screen and (max-width: 1200px) {
  .between .container{
    width: 100%;
  }
  .between .info-wrap span.dq {
    top: -50px;
    left: -10px;
  }
}
@media only screen and (max-width: 992px) {
  .between .info-wrap {
    padding: 0;
  }
  .between .info-wrap h2{
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
  .between .info-wrap p{
    width: 100%;
    float: none;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .between{
    padding: 0 0 30px 0;
  }
  .between .info-wrap span.dq {
    top: -10px;
    left: -10px;
    font-size: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {

}






/* questions */
.questions{

}
.questions .info-wrap{

}
.questions .info-wrap h2{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
  margin: 0;
  margin-bottom: 30px;
  color: #303b4d;
}
.questions .info-wrap p{
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  color: #687891;
}
.questions .info-wrap p strong,
.questions .info-wrap p b{
  font-weight: 700;
}
.questions .info-wrap p span{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  color: #15bdcd;
}

.questions .good-block{
  position: relative;
  background: #f4a643;
  border-radius: 40px;
  padding: 25px 30px 25px 175px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  width: 420px;
  margin-top: 90px;
}
.questions .good-block span{
  font-weight: 900;
}
.questions .good-block::after{
  content: '';
  position: absolute;
  width: 131px;
  height: 153px;
  top: -60px;
  left: 30px;
  background:url('../media/good.png') left top no-repeat;
  background-size: contain;
}

.questions .desc{
  margin-top: 30px;
  line-height: 20px;
}

.questions .feature{
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  padding: 15px 25px;
  text-transform: uppercase;
  border-radius:6px;
  display: inline-block;
  margin-top: 20px;
  background: rgb(1,89,182); /* Old browsers */
  background: -moz-linear-gradient(45deg,  rgba(1,89,182,1) 0%, rgba(0,59,100,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(1,89,182,1) 0%,rgba(0,59,100,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0159b6', endColorstr='#003b64',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.questions .feature span{
  color: #a4e3e9;
}

  /* alt */
  .questions.alt{
    text-align: right;
  }
  .questions.alt div[class^='col-md-'],
  .questions.alt div[class*=' col-md-']{
    float: right;
  }

  /* imgs */
  .questions .img-wrap.q1{
    width: 490px;
    height: 451px;
    background: url('../media/question1.png') left top no-repeat;
    background-size: contain;
  }
  .questions .img-wrap.q2{
    width: 412px;
    height: 403px;
    background: url('../media/question2.png') left top no-repeat;
    background-size: contain;
    position: relative;
    top: -40px;
  }


/* media questions */
@media only screen and (max-width: 1200px) {
  .questions .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .questions{
    text-align: center !important;
    padding: 30px 0;
  }
  .questions.alt div[class^='col-md-'],
  .questions.alt div[class*=' col-md-']{
    float: none;
  }
  .questions .img-wrap.q1,
  .questions .img-wrap.q2{
    background-position: center;
    width: 100%;
    height: 230px;
    margin-bottom: 30px;
  }
  .questions .img-wrap.q2{
    margin-bottom: -50px;
  }
  .questions .info-wrap,
  .questions .desc {
    max-width: 500px;
    margin: 0 auto 0 auto;
  }
  .questions .desc{
    margin: 30px auto 0 auto;
  }
  .questions .good-block{
    margin: 90px auto 0 auto;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .questions{
    padding: 0;
  }
  .questions.alt{
    padding-top: 60px;
  }
  .questions .info-wrap h2{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .questions .good-block{
      padding:15px 20px 15px 145px;
      margin: 60px auto 0 auto;
  }
  .questions .good-block::after{
    height: 103px;
    top: -30px;
  }
}
@media only screen and (max-width: 480px) {
  .questions .good-block{
    width: 100%;
    padding: 10px 20px 10px 85px;
    font-size: 16px;
    line-height: 20px;
  }
  .questions .good-block::after {
    height: 53px;
    top: 20px;
    left: 20px;
  }
  .questions .feature{
    padding: 15px;
  }
}













/* cancel */
.cancel{
  padding-bottom: 60px;
}
.cancel h2{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
  margin: 0;
  color: #fc636f;
  background: url('../media/cancel.png') left top no-repeat;
  padding-left: 150px;
  padding-bottom: 50px;
  padding-top: 30px;
  padding-right: 50px;
}
.cancel .info-wrap{
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  position: relative;
}
.cancel .info-wrap::before{
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: -70px;
  background: #15bdcd;
}
.cancel .info-wrap span{
  font-weight: 900;
  text-transform: uppercase;
  color: #fc636f;
}

/* media cancel */
@media only screen and (max-width: 1200px) {
  .cancel .container{
    width: 100%;
  }
  .cancel .info-wrap::before{
    left: -40px;
  }
  .cancel h2{
    padding-right: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .cancel{
    padding: 40px 0 60px 0;
    text-align: center;
  }
  .cancel .head-wrap{
    text-align: center;
    margin-bottom: 20px;
  }
  .cancel h2{
    display: inline-block;
  }
  .cancel .info-wrap{
    max-width: 550px;
    margin: 0 auto;
  }
  .cancel .info-wrap::before{
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cancel {
    padding: 60px 0;
  }
  .cancel h2{
    font-size: 28px;
    line-height: 30px;
    padding-left: 90px;
    padding-bottom: 30px;
    padding-top: 20px;
    background-size: 25%;
    background-position: left center;
  }
}
@media only screen and (max-width: 480px) {

}













/* friends */
.friends{
  border-top: 20px solid #f4a643;
  background: #005285;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  position: relative;
}
.friends::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 250px;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top,  rgba(38,64,89,1) 0%, rgba(38,64,89,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(38,64,89,1) 0%,rgba(38,64,89,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(38,64,89,1) 0%,rgba(38,64,89,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#264059', endColorstr='#00264059',GradientType=0 ); /* IE6-9 */
}
.friends h2{
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  margin: 0;
  text-transform: uppercase;
  color: #009fd5;
  margin-top: 40px;
}
.friends .img-wrap{
  margin-top: 60px;
}
.friends .img-wrap img{
  vertical-align: top;
}

/* media friends */
@media only screen and (max-width: 1200px) {
  .friends .container{
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 480px) {
  .friends h2{
    font-size: 22px;
    line-height: 24px;
  }
  .friends .img-wrap {
    margin-top: 30px;
  }
}

















/* popup */
#popup{
  z-index: 15;
  visibility: hidden;
}
#popup a.b-close{
  position: absolute;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #015ec4;
  text-align: center;
  border-radius: 100%;
  top: -20px;
  right: -20px;
  font-size: 22px;
  line-height: 40px;
  box-shadow: 0 0 5px 0 rgba(255,255,255,.6);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#popup a.b-close:hover{
  background: #01ce6d;
}
/*
#popup a.b-close i{
  display: inline-block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#popup a.b-close:hover i{
  -webkit-transform: rotate(720deg);
  -moz-transform: rotate(720deg);
  -ms-transform: rotate(720deg);
  -o-transform: rotate(720deg);
  transform: rotate(720deg);
}
*/
#popup .overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#popup .popup-wrap{
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px 0 rgb(0, 0, 0.8);
  border-bottom: 10px solid #687891;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#popup .scroller{
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80vh;
  width: 100%;
}
#popup .infos{
  float: unset;
  width: unset;
  padding-right: unset;
}
#popup .infos h2{
  font-family: 'Maven Pro', sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #01ce6d;
  margin: 0;
  position: relative;
  padding-left: 40px;
  padding-top: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#popup .infos h2 i{
  font-size: 30px;
  color: #015ec4;
  position: absolute;
  top: 0;
  left: 0;
}
#popup .infos h2 span{

}
#popup .infos ul.agenda-infos{
  position: relative;
  padding-bottom: 10px;
}
#popup .infos ul.agenda-infos::before{
  content: '';
  position: absolute;
  width:2px;
  height: 100%;
  background: #01b664;
  top: 0;
  left:22px;
}
#popup .infos ul.agenda-infos li{
  position: relative;
  display: unset;
}
#popup .infos ul.agenda-infos li h3{
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #f2851a;
  padding-left: 40px;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
  text-align: left;
}
#popup .infos ul.agenda-infos li .block{
  padding: 15px 15px 15px 40px;
  background: #f4f4f4;
  border-radius: 30px;
  position: relative;
}
#popup .infos ul.agenda-infos li .block .block-info{
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #687891;
  text-align: left;
}
#popup .infos ul.agenda-infos li .block .block-info h5{
	font-size: 14px;
    line-height: 16px;
    color: #02d072;
    margin-bottom: 5px;
}
#popup .infos ul.agenda-infos li .block .block-info p{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}
#popup .infos ul.agenda-infos li .block .block-info h3{
	margin-bottom: 10px;
    position: relative;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    padding-left: 20px;
    color: #015ec4;
}
#popup .infos ul.agenda-infos li .block .block-info h3 i{
	position: absolute;
    top: -3px;
    left: 0;
    font-size: 20px;
    line-height: 20px;
    color: #02d072;
}
#popup .infos ul.agenda-infos li .block .Presencial h3{
	margin: 0;
}
#popup .infos ul.agenda-infos li .block .block-info span{
  color: #009853;
}
#popup .infos ul.agenda-infos li .block .img-wrap{
  overflow: hidden;
  border-radius: 100%;
  border:3px solid #fff;
  width: 70px;
  height: 70px;
  float: left;
}
#popup .infos ul.agenda-infos li .block .img-wrap img{
  width: 100%;
  vertical-align: top;
}
#popup .infos ul.agenda-infos li .block.clearfix .block-info{
  padding-left: 80px;
  font-size: 18px;
  margin-top: 15px;
  line-height: 20px;
}
#popup .button-wrap{
  text-align: center;
  margin-top: 20px;
}
#popup .button-wrap .button{
  display: inline-block;
  background: #009fd5;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 18px;
}
#popup .options{
  text-align: center;
  margin-top: 30px;
}
#popup .options h2{
  font-family: 'Maven Pro', sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #687891;
  max-width: 300px;
  margin: 0 auto;
}
#popup .options .button-wrap{

}
#popup .options .button{
  background: #02d072;
  background: -moz-linear-gradient(45deg,  rgba(2,199,109,1) 0%, rgba(0,149,81,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  rgba(2,199,109,1) 0%,rgba(0,149,81,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02c76d', endColorstr='#009551',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  font-size: 16px;
  line-height: 16px;
  padding: 20px 30px;
  margin: 0 4px;
}
#popup .options .button.orange{
  background: #f2851a;
}

  /* active */
  #popup.active{
    visibility: visible;
  }
  /*#popup.active .overlay{
    opacity: .5;
    visibility: visible;
  }*/
  #popup.active .popup-wrap{
    opacity: 1;
    visibility: visible;
  }

#popup .inner-pop.hide{
  display: none;
}


/* media popup */
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {
  #popup.active .popup-wrap{
    width: 450px;
  }
  #popup a.b-close{
    width: 30px;
    height: 30px;
    top: -15px;
    right: -15px;
    font-size: 18px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 480px) {
  #popup{
	
  }
  #popup.active .popup-wrap{
    width: 100%;
  }
  #popup .popup-wrap{
    padding: 20px 10px;
  }
  #popup .infos h2{
    font-size: 18px;
    line-height: 20px;
	text-align: left;
  }
  #popup .infos ul.agenda-infos li .block .img-wrap{
    width: 60px;
    height: 60px;
  }
  #popup .infos ul.agenda-infos li .block.clearfix .block-info {
    padding-left: 70px;
    font-size: 16px;
    margin-top: 5px;
    line-height: 18px;
  }

  #popup .infos ul.agenda-infos li .block {
    padding: 15px;
  }

}















.wow{ opacity: 0; visibility: hidden; }

.preloader-bg{position:fixed; width:100%; height:100%; overflow:hidden; background: #fff;; z-index:999999;}
#loader-spinner{z-index:1999999; border-width:4px; border-style:solid; width:50px; height:50px; top:50%; left:50%;
  position:fixed; border-radius:50%; margin-left:-25px;
  border-color:#009470;
  border-top-color:#bbb;
  border-right-color:#bbb;
  border-bottom-color:#bbb;
  -webkit-animation:ldr-spin 0.6s linear infinite;
  animation:ldr-spin 0.6s linear infinite;
}
.an-ldr-spin{
  -webkit-animation-name:ldr-spin;
  -khtml-animation-name:ldr-spin;
  -moz-animation-name:ldr-spin;
  -o-animation-name:ldr-spin;
  animation-name:ldr-spin;
  -webkit-animation-duration:0.5s;
  -khtml-animation-duration:0.5s;
  -moz-animation-duration:0.5s;
  -o-animation-duration:0.5s;
  animation-duration:0.5s;
  -webkit-animation-iteration-count:infinite;
  -khtml-animation-iteration-count:infinite;
  -moz-animation-iteration-count:infinite;
  -o-animation-iteration-count:infinite;
  animation-iteration-count:infinite;
  -webkit-animation-fill-mode:both;
  -khtml-animation-fill-mode:both;
  -moz-animation-fill-mode:both;
  -o-animation-fill-mode:both;
  animation-fill-mode:both;
  -webkit-animation-timing-function:linear;
  -khtml-animation-timing-function:linear;
  -moz-animation-timing-function:linear;
  -o-animation-timing-function:linear;
  animation-timing-function:linear;
}
@keyframes ldr-spin{
  0%		{-webkit-transform:rotate(0deg); transform:rotate(0deg);}
  100%	{-webkit-transform:rotate(360deg); transform:rotate(360deg);}
}
@-moz-keyframes ldr-spin{
  0%		{-webkit-transform:rotate(0deg); transform:rotate(0deg);}
  100%	{-webkit-transform:rotate(360deg); transform:rotate(360deg);}
}
@-webkit-keyframes ldr-spin{
  0%		{-webkit-transform: rotate(0deg); transform:rotate(0deg);}
  100%	{-webkit-transform: rotate(360deg); transform:rotate(360deg);}
}


/* animation duration for wow */
.anm-dur-3{
  -webkit-animation-duration: 300ms;
  -moz-animation-duration: 300ms;
  -ms-animation-duration: 300ms;
  -o-animation-duration: 300ms;
  animation-duration: 300ms;
}
.anm-dur-5{
  -webkit-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -ms-animation-duration: 500ms;
  -o-animation-duration: 500ms;
  animation-duration: 500ms;
}
.anm-dur-8{
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
}
.anm-dur-10{
  -webkit-animation-duration: 1000ms;
  -moz-animation-duration: 1000ms;
  -ms-animation-duration: 1000ms;
  -o-animation-duration: 1000ms;
  animation-duration: 1000ms;
}
.anm-dur-12{
  -webkit-animation-duration: 1200ms;
  -moz-animation-duration: 1200ms;
  -ms-animation-duration: 1200ms;
  -o-animation-duration: 1200ms;
  animation-duration: 1200ms;
}
.anm-dur-13{
  -webkit-animation-duration: 1300ms;
  -moz-animation-duration: 1300ms;
  -ms-animation-duration: 1300ms;
  -o-animation-duration: 1300ms;
  animation-duration: 1300ms;
}
.anm-dur-15{
  -webkit-animation-duration: 1500ms;
  -moz-animation-duration: 1500ms;
  -ms-animation-duration: 1500ms;
  -o-animation-duration: 1500ms;
  animation-duration: 1500ms;
}
.anm-dur-20{
  -webkit-animation-duration: 2000ms;
  -moz-animation-duration: 2000ms;
  -ms-animation-duration: 2000ms;
  -o-animation-duration: 2000ms;
  animation-duration: 2000ms;
}
.anm-dur-30{
  -webkit-animation-duration: 3000ms;
  -moz-animation-duration: 3000ms;
  -ms-animation-duration: 3000ms;
  -o-animation-duration: 3000ms;
  animation-duration: 3000ms;
}

/* animation delay for wow */
.anm-del-3{
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  -ms-animation-delay: 300ms;
  -o-animation-delay: 300ms;
  animation-delay: 300ms;
}
.anm-del-5{
  -webkit-animation-delay: 500ms;
  -moz-animation-delay: 500ms;
  -ms-animation-delay: 500ms;
  -o-animation-delay: 500ms;
  animation-delay: 500ms;
}
.anm-del-8{
  -webkit-animation-delay: 800ms;
  -moz-animation-delay: 800ms;
  -ms-animation-delay: 800ms;
  -o-animation-delay: 800ms;
  animation-delay: 800ms;
}
.anm-del-10{
  -webkit-animation-delay: 1000ms;
  -moz-animation-delay: 1000ms;
  -ms-animation-delay: 1000ms;
  -o-animation-delay: 1000ms;
  animation-delay: 1000ms;
}
.anm-del-12{
  -webkit-animation-delay: 1200ms;
  -moz-animation-delay: 1200ms;
  -ms-animation-delay: 1200ms;
  -o-animation-delay: 1200ms;
  animation-delay: 1200ms;
}
.anm-del-13{
  -webkit-animation-delay: 1300ms;
  -moz-animation-delay: 1300ms;
  -ms-animation-delay: 1300ms;
  -o-animation-delay: 1300ms;
  animation-delay: 1300ms;
}
.anm-del-15{
  -webkit-animation-delay: 1500ms;
  -moz-animation-delay: 1500ms;
  -ms-animation-delay: 1500ms;
  -o-animation-delay: 1500ms;
  animation-delay: 1500ms;
}
.anm-del-20{
  -webkit-animation-delay: 2000ms;
  -moz-animation-delay: 2000ms;
  -ms-animation-delay: 2000ms;
  -o-animation-delay: 2000ms;
  animation-delay: 2000ms;
}
.anm-del-30{
  -webkit-animation-delay: 3000ms;
  -moz-animation-delay: 3000ms;
  -ms-animation-delay: 3000ms;
  -o-animation-delay: 3000ms;
  animation-delay: 3000ms;
}
.button {
	/*-webkit-appearance: button;
    cursor: pointer; */
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: buttontext;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: pointer;
    background-color: buttonface;
    box-sizing: border-box;
    font: 400 13.3333px Arial;
    padding: 1px 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonface;
    border-image: initial;
}

.loading-div {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.8);
    z-index: 1000000;
    width: 100%;
    height: 100%;
}
.box-loading {
    width: 270px;
    text-align: center;
    left: 50%;
    position: absolute;
    margin-left: -135px;
    top: 50%;
    margin-top: -50px;
}
i.fab.fa-whatsapp.fa-2x {
    font-size: 40px;
    color: #fff;
}
.whatsappRDP a {
    display: block;
    padding-left: 17px;
	padding-top: 15px;
    background-color: #81d742;
    -webkit-border-radius: 70px;
    border-radius: 70px;
    width: 70px;
    height: 70px;
    color: #fff;
}
.whatsappRDP {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000000;
}
@media only screen and (max-width: 992px) {
	.whatsappRDP a{
		padding: 0;
		width: 42px;
		height: 42px;
		text-align:center;
		-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
	}
	.whatsappRDP a i{
		font-size: 24px;
		line-height: 38px;
	}
}