@import url('https://fonts.googleapis.com/css?family=Roboto');
/**
 * Author : Raycille Dimla
 * Description : Default Theme Stylesheet
 * 
 * -------------- CONTENTS --------------
 * VARIABLES
 * 
 * GENERAL
 * MISC
 * VENDORS
 * WORDPRESS
 * HEADER
 * CONTENT
 * FOOTER
 * --------------------------------------
 */
/*======================================================================
 =                                VARIABLES                             =
 ======================================================================*/
/* > Colors ========================================================== */
/* > Sizes =========================================================== */
/* > Strings ========================================================= */
/* > MIXINS ========================================================== */
/* ------------------------------------------------------------------- */
/*======================================================================
 =                                 GENERAL                              =
 ======================================================================*/
body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
hr {
  border: solid thin #ddd;
  margin: 15px 0;
}
h1, h2, h3, h4, h5, h6 {
  color: #036bb1;
  text-transform: uppercase;
  font-size: 30px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
a {
  text-decoration: none !important;
}
a:active, a:hover, a:focus, a:visited {
  text-decoration: none;
  color: #036bb1;
}
blockquote, ul, li {
  margin: 0;
  padding: 0;
  border: none;
}
span.big {
  color: #036bb1;
  line-height: 75px;
  font-weight: 800;
  font-size: 28px;
}
span.super-big {
  color: #222;
  font-weight: 800;
  font-size: 70px;
}
span.super-big.muted {
  color: #ddd;
}
/*======================================================================
 =                                  MISC                                =
 ======================================================================*/
.menu {
  /* > Menu ============================= */
  text-align: center;
  background: #fff;
}
.menu li {
  margin: 7.5px 40px 2.5px;
  display: inline-block;
  float: unset;
  border-bottom: solid 3px transparent;
  position: relative;
}
.menu li:first-child {
  margin-left: 40px;
}
.menu li:last-child {
  margin-right: 40px;
}
.menu li .sub-menu {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  box-shadow: 1px 2px 10px -5px rgba(0, 0, 0, .5);
  position: absolute;
  background: #fafafa;
  left: 0;
  text-align: left;
  margin: 25px 0 0 0;
  padding: 5px 10px;
  display: none;
}
.menu li .sub-menu:after {
  position: absolute;
  content: ' ';
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fafafa transparent;
  left: 20px;
  top: -20px;
}
.menu li .sub-menu li {
  display: block;
  padding: 2.5px;
}
.menu li:hover > a, .menu li.current-menu-item > a {
  color: #036bb1;
}
.menu li:hover .sub-menu, .menu li.current-menu-item .sub-menu {
  display: block;
}
.menu li a {
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.footer-menu {
  /* > Footer Menu =============== */
  background: transparent;
}
.footer-menu li {
  margin: 0;
  padding: 0;
  display: block;
}
.footer-menu li a {
  color: #fff;
  font-weight: 700;
}
.button, .button-2, form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload:before, form.panpharm-form .gform_footer input[type="submit"] {
  /* > Buttons ========================== */
  position: relative;
  color: #fff !important;
  font-size: 16px;
  padding: 10px 30px;
  min-width: 150px;
  background-color: #036bb1;
  border: solid 2px #036bb1;
  border-radius: 3px;
}
.button:before, .button-2:before, form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload:before, form.panpharm-form .gform_footer input[type="submit"]:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -1;
  background-color: #036bb1;
}
.button:after, .button-2:after, form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload:before:after, form.panpharm-form .gform_footer input[type="submit"]:after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 0;
  opacity: 0;
  margin-top: 0;
  z-index: -1;
  background-color: #0489e3;
}
.button:hover, .button-2:hover, form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload:before:hover, form.panpharm-form .gform_footer input[type="submit"]:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: solid 2px #0489e3;
}
.button:hover:after, .button-2:hover:after, form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload:before:hover:after, form.panpharm-form .gform_footer input[type="submit"]:hover:after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 100%;
  opacity: 1;
}
.button-2 {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: transparent;
  color: #0489e3 !important;
  border: solid 2px #0489e3;
}
.button-2:before {
  background-color: transparent;
}
.button-2:after {
  width: 0;
  height: 0;
  margin: auto;
  background-color: #036bb1;
  border: double 5px #036bb1;
  border-radius: 100%;
}
.button-2:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff !important;
  border: solid 2px #0489e3;
  background-color: #0489e3;
}
.button-2:hover:after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  background-color: #0489e3;
  border-radius: 100%;
}
.icon {
  /* > Icons ============================ */
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 50px;
  border: solid 2px #036bb1;
}
.icon a {
  height: 35px;
  width: 35px;
  border-radius: 100%;
  margin: 0 5px;
  border: thin solid transparent;
  color: #fff;
}
.icon i {
  text-indent: 0.5px;
  text-align: center;
  vertical-align: top;
  margin-top: 7.5px;
  font-size: 31px;
  color: #036bb1;
}
.icon i.fa-facebook {
  text-indent: -1px;
  margin-top: 9px;
}
.icon.circular {
  border-radius: 100%;
}
.icon.square {
  border-radius: 3px;
}
.icon.style2 {
  background-color: #fff;
  height: 30px;
  width: 30px;
  text-align: center;
  margin: 0;
  border-radius: 4px;
  border: none;
}
.icon.style2 i {
  color: #036bb1;
  font-size: 16px;
  margin-top: 2px;
}
.icon.style2 i.fa-facebook {
  text-indent: -1px;
  margin-top: 3px;
}
.limit-width {
  max-width: 1300px;
  margin: auto;
}
/*======================================================================
 =                                 VENDORS                              =
 ======================================================================*/
.tp-caption {
  /* >> Revslider ======================= */
  padding: 5%;
  max-width: 400px;
}
.tp-caption > * {
  display: block;
}
.tp-caption label {
  background: rgba(255, 255, 255, .7);
  color: #036bb1;
  font-size: 36px;
  text-transform: uppercase;
  padding: 30px;
  white-space: normal;
}
.tp-caption p {
  white-space: normal !important;
}
.parallax-window {
  padding: 5% 0;
}
.parallax-window p {
  color: #222;
}
.parallax-window::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .7);
}
.ls-wrapper h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
}
.ls-wrapper p {
  color: #fff !important;
}
/*--------------------------------------------------------------
 Gravity Form Layout
 --------------------------------------------------------------*/
div.gform_wrapper {
  margin: auto;
  max-width: 450px;
}
form.panpharm-form {
  background: #fafafa;
}
form.panpharm-form .gform_heading {
  margin: 0;
}
form.panpharm-form .gform_heading .gform_title {
  background: #036bb1;
  width: 100%;
  color: #fafafa;
  font-size: 18px;
  padding: 11px;
  text-align: center;
  margin: 0;
  text-transform: capitalize;
}
form.panpharm-form .gform_heading .gform_description {
  color: #f7f7f7;
  font-size: 14px;
  padding: 10px 20px;
  display: none;
}
form.panpharm-form .top_label div.ginput_container {
  margin: 0;
  padding-bottom: 10px;
}
form.panpharm-form .gform_body {
  margin: 0;
}
form.panpharm-form .gform_body ul.gform_fields {
  padding: 0 5%;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield {
  margin-top: 0;
  padding-right: 0;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield:first-child {
  padding-top: 20px;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield label {
  color: #333;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield span {
  color: #333;
  text-transform: capitalize;
  font-size: 11px;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield input {
  font-size: 14px;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_recaptcha {
  position: absolute;
  margin: 0;
  left: calc(-30% + 50px);
}
form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload {
  position: relative;
  overflow: hidden;
  height: 70px;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload span {
  position: absolute;
  bottom: 0;
  left: 0;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload:before {
  content: 'Choose File';
  position: absolute;
  top: 0;
  text-transform: capitalize;
  min-width: 150px !important;
  cursor: pointer;
}
form.panpharm-form .gform_body ul.gform_fields li.gfield .ginput_container_fileupload > input[type="file"] {
  position: absolute;
  cursor: inherit;
  display: block;
  filter: alpha(opacity=0);
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  left: 0;
  text-align: left;
  top: 0;
  text-transform: capitalize;
}
form.panpharm-form .gform_footer {
  padding: 0 5% 5% 5%;
}
/*======================================================================
 =                                WORDPRESS                             =
 ======================================================================*/
.entry-header {
  margin: 0 0 5% 0;
  padding: 0;
}
.entry-header .image-item {
  position: relative;
  display: table;
  width: 100%;
}
.entry-header .image-item:before {
  content: ' ';
  position: absolute;
  background: rgba(0, 0, 0, .4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.entry-header .image-item .title {
  position: sticky;
  display: table-cell;
  vertical-align: middle;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
.entry-header .image-item .title .entry-title {
  position: relative;
  width: fit-content;
  margin: auto;
  padding: 0 30px;
}
@media only screen and (max-width: 768px) {
  .entry-header .image-item .title {
    padding-top: 75px;
    vertical-align: middle;
    padding-bottom: 0;
  }
}
.fl-builder-content p {
  text-align: unset;
}
.fl-builder-content strong {
  font-weight: 700;
  font-size: 32px;
  color: #036bb1;
}
/* PANPHARMA */
.userloggedout #menu-item-222 {
  display: inline-block;
}
.userloggedout #menu-item-9 {
  display: none;
}
.userlogged #menu-item-222 {
  display: none;
}
.userlogged #menu-item-9 {
  display: inline-block;
}
/*======================================================================
 =                                 HEADER                               =
 ======================================================================*/
main {
  margin: 0;
}
.site-header #site-navigation {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  width: 100%;
  height: 95px;
  border: none;
  background-color: #fff;
  z-index: 9999;
  /* Small Devices, Tablets */
  /* Medium Devices, Desktops */
}
.site-header #site-navigation > * {
  position: initial;
  display: none;
  height: 100%;
  margin: auto;
  padding: 0 5%;
}
.site-header #site-navigation > * > * {
  display: table-cell;
  vertical-align: middle;
}
.site-header #site-navigation .large-screen {
  width: 1300px;
}
.site-header #site-navigation .large-screen .site_branding {
  position: relative;
  height: 100%;
  text-align: left;
}
.site-header #site-navigation .large-screen .site_branding img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: auto;
  width: auto;
  margin: auto;
}
.site-header #site-navigation .large-screen .main-menu {
  vertical-align: bottom;
}
.site-header #site-navigation .large-screen .main-menu .menu {
  /* > Menu ============================= */
  text-align: center;
  background: #fff;
  text-align: right;
  padding-bottom: 10px;
}
.site-header #site-navigation .large-screen .main-menu .menu li {
  margin: 2.5px 10px 0;
}
.site-header #site-navigation .large-screen .main-menu .menu li:first-child {
  margin-left: 10px;
}
.site-header #site-navigation .large-screen .main-menu .menu li:last-child {
  margin-right: 10px;
}
.site-header #site-navigation .small-screen {
  display: none;
  width: 100%;
}
.site-header #site-navigation .small-screen a[href="#header-menu-mobile"] {
  text-align: right;
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .site-header #site-navigation .small-screen {
    display: table;
  }
}
@media only screen and (min-width: 769px) {
  .site-header #site-navigation .large-screen {
    display: table;
  }
}
/*======================================================================
 =                                 CONTENT                              =
 ======================================================================*/
.site-content {
  padding: 5% 0;
  padding-top: 95px;
}
.site-content p {
  color: #777;
  padding-bottom: 20px;
}
/* ---------------------------------------------------------------------
 Sections
 --------------------------------------------------------------------- */
#section-1 {
  max-width: calc(1300px + 50px);
  padding: 5% 0;
  margin: auto;
  background-color: #fff;
  /* Small Devices, Tablets */
}
#section-1 .container {
  width: 100%;
}
#section-1 .image-content {
  padding: 0;
  display: table;
}
#section-1 .image-content > * {
  position: initial;
  height: 100%;
}
#section-1 .inner-content {
  padding: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #section-1 .image-content {
    display: block;
    text-align: center;
  }
}
#section-2 {
  max-width: calc(1300px + 50px);
  padding: 5% 0;
  margin: auto;
  background-color: #fff;
  /* Small Devices, Tablets */
}
#section-2 .container {
  width: 100%;
}
#section-2 .image-content {
  padding: 0;
  display: table;
}
#section-2 .image-content > * {
  position: initial;
  height: 100%;
}
#section-2 .inner-content {
  padding: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #section-2 .image-content {
    display: block;
    text-align: center;
  }
}
#section-3 {
  max-width: calc(1300px + 50px);
  padding: 5% 0;
  margin: auto;
  background-color: #fff;
  /* Small Devices, Tablets */
}
#section-3 .container {
  width: 100%;
}
#section-3 .image-content {
  padding: 0;
  display: table;
}
#section-3 .image-content > * {
  position: initial;
  height: 100%;
}
#section-3 .inner-content {
  padding: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #section-3 .image-content {
    display: block;
    text-align: center;
  }
}
#section-1 {
  text-align: left;
}
#section-2 {
  background-color: #f6f6f6;
}
#section-3 {
  max-width: calc(1300px + 50px);
  padding-bottom: 0;
  /* Small Devices, Tablets */
}
#section-3 .col-md-3 {
  height: 500px;
}
@media only screen and (max-width: 768px) {
  #section-3 .col-md-3 {
    height: auto;
  }
}
/*======================================================================
 =                                 FOOTER                               =
 ======================================================================*/
.site-footer .content {
  width: 100%;
  padding: 0 5%;
  display: inline-flex;
  background: #036bb1;
}
.site-footer .content .contact {
  text-align: left;
  width: 65%;
  margin: auto;
  display: inline-flex;
}
.site-footer .content .contact > li {
  list-style: none;
  margin: 0 auto;
  /*width: 200px;*/
  padding: 20px;
}
.site-footer .content .contact > li .image-icon img {
  max-width: 50px;
  height: auto;
}
.site-footer .content .contact > li strong {
  font-size: 14px;
  line-height: 35px;
}
.site-footer .content .contact > li p {
  color: #f4f4f4;
  font-size: 12px;
}
.site-footer .content .contact > li .content {
  display: block;
  text-align: left;
}
.site-footer .content .contact > li .social-media .list {
  display: table;
  margin: 10px 0;
}
.site-footer .content .contact > li .social-media .list > * {
  display: table-cell;
  vertical-align: middle;
  min-width: 30px;
}
.site-footer .content .contact > li .social-media .list p {
  text-indent: 12px;
}
.site-footer .site-info {
  background: #036bb1;
  font-size: 11px;
}
.site-footer .site-info p {
  padding: 20px;
  margin: 0;
}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  .site-footer > .content {
    display: inline-block;
    padding: 10% 5% 5% 5%;
  }
  .site-footer > .content .contact {
    display: inline-block;
    width: 100%;
  }
  .site-footer > .content .contact li {
    width: 100%;
  }
}
