<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* START: Bootstrap Global Overrides ------------------------------------------------------------------------------------ */
button,
.btn {
  /*.border-radius-all(3px);
    .transition(all, 0.2s, ease-out);*/
}
/* END: Bootstrap Global Overrides ------------------------------ */
/* START: SVG icons ----------------------- */
.rx-svg-icon {
  outline: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  fill: #0a0c0d;
}
.rx-svg-defs {
  left: -100000px;
  position: absolute;
  top: -100000px;
}
/* END: SVG icons ----------------------- */
/* START: Vertical Centering ------------------------------------------------------------------------------------ */
.rx-v-al-center {
  position: relative;
}
.rx-v-al-center::before {
  content: " ";
  display: inline-block;
  height: 100%;
  width: 1px;
  margin: 0 -1px;
  vertical-align: middle;
}
.rx-v-al-center &gt; div,
.rx-v-al-center &gt; p,
.rx-v-al-center &gt; span,
.rx-v-al-center &gt; ul,
.rx-v-al-center &gt; a {
  display: inline-block;
  vertical-align: middle;
}
.rx-v-al-center-row [class*=col-] {
  position: relative;
}
.rx-v-al-center-row [class*=col-]::before {
  content: " ";
  display: inline-block;
  height: 100%;
  width: 1px;
  margin: 0 -1px;
  vertical-align: middle;
}
.rx-v-al-center-row [class*=col-] &gt; div,
.rx-v-al-center-row [class*=col-] &gt; p,
.rx-v-al-center-row [class*=col-] &gt; span,
.rx-v-al-center-row [class*=col-] &gt; ul,
.rx-v-al-center-row [class*=col-] &gt; a {
  display: inline-block;
  vertical-align: middle;
}
.rx-v-al-c {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .rx-v-al-center-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
  }
  .rx-v-al-center-flex &gt; [class^="col-"],
  .rx-v-al-center-flex &gt; [class*=" col-"] {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional, to align inner items horizontally inside the column */
  }
  /* Optional, "flex: 1" or "flex-grow: 1" is added to make the inner div. 
    Which is also a flex-item - take up all the horizontal space, available space inside the flex container (.col-* elements) */
  .rx-v-al-center-flex &gt; [class^="col-"] &gt; div,
  .rx-v-al-center-flex &gt; [class*=" col-"] &gt; div {
    /* flex: 1; */
    flex-grow: 1;
  }
  .pl-md-3 {
    padding-left: 3rem;
  }
  .pr-md-3 {
    padding-right: 3rem;
  }
  .pl-md-4 {
    padding-left: 4rem;
  }
  .pr-md-4 {
    padding-right: 4rem;
  }
}
/* END: Vertical Centering ------------------------------ */
/* START: Misc ------------------------------------------------------------------------------------ */
button,
.btn,
input,
textarea,
button:focus,
.btn:focus,
input:focus,
textarea:focus,
button:active,
.btn:active,
input:active,
textarea:active {
  outline: none !important;
}
::selection {
  background-color: rgba(0, 0, 0, 0.3);
}
::-moz-selection {
  background-color: rgba(0, 0, 0, 0.3);
}
.rx-txt-al-c {
  text-align: center;
}
.rx-txt-al-l {
  text-align: left;
}
.rx-txt-al-r {
  text-align: right;
}
.rx-txt-upp {
  text-transform: uppercase !important;
}
.rx-inl-block {
  display: inline-block;
}
.rx-c-orange {
  color: #e68523;
}
.fw-600,
b {
  font-weight: 600 !important;
}
@media (max-width: 767px) {
  .rx-marg-t30-max767 {
    margin-top: 30px !important;
  }
}
/* Fade In */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.rx-fade-in {
  -webkit-animation: 0.5s ease 0s normal forwards 1 fade-in;
  animation: 0.5s ease 0s normal forwards 1 fade-in;
}
.rx-flip-hor {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
.rx-flip-ver {
  -moz-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}
.rx-flip-hor-ver {
  -moz-transform: scale(-1, -1);
  -o-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
/* END: Misc ------------------------------ */
/* START: Help Classes ------------------------------------------------------------------------------------ */
.divider {
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: -moz-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -webkit-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -ms-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  width: 95%;
  height: 1px;
}
.divider-blank-tb10,
.divider-blank-tb20,
.divider-blank-tb30,
.divider-blank-tb40,
.divider-blank-tb50 {
  margin: 50px 0;
  width: 100%;
  height: 1px;
}
.divider-blank-tb40 {
  margin: 40px 0;
}
.divider-blank-tb30 {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .divider-blank-tb30.tb-15-down-sm {
    margin: 15px 0;
  }
}
.divider-blank-tb20 {
  margin: 20px 0;
}
.divider-blank-tb10 {
  margin: 10px 0;
}
@media (min-width: 768px) {
  .row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .row-eq-heightUp992 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .height100Up992 {
    height: 100%;
  }
}
.pos-rel {
  position: relative;
}
.ovf-hid {
  overflow: hidden;
}
.c-lightblue {
  color: #00a0dc;
}
.c-lightgray-blue {
  color: #4d7d8f;
}
.c-red {
  color: #dd5143;
}
.padd-b3 {
  padding-bottom: 3px;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.dis-in-b {
  display: inline-block;
}
.opacity-07 {
  -webkit-opacity: 0.7 !important;
  -moz-opacity: 0.7 !important;
  opacity: 0.7 !important;
}
.align-justify,
.align-justify p {
  text-align: justify !important;
}
/* END: Help Classes ------------------------------ */
.rx-btn-rotate {
  line-height: 1;
  height: 50px;
  width: 50px;
  margin: 2px;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 100%;
  border: 0;
  background-color: transparent;
  z-index: 2;
}
.rx-btn-rotate .rx-btn-close-x {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 7px;
  left: 7px;
  cursor: pointer;
}
.rx-btn-rotate .rx-btn-close-x::before,
.rx-btn-rotate .rx-btn-close-x::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  height: 2px;
  background: rgba(61, 71, 77, 0.7);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.rx-btn-rotate .rx-btn-close-x::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.rx-btn-rotate:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rx-btn-rotate:hover .rx-btn-close-x::before,
.rx-btn-rotate:hover .rx-btn-close-x::after {
  background: #3d474d;
}
/* START: Col Half ------------------------------------------------------------------------------------ */
.col-sm-5-05,
.col-sm-6-05 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .col-sm-5-05,
  .col-sm-6-05 {
    float: left;
  }
  .col-sm-6-05 {
    width: 54.16666667%;
  }
  .col-sm-5-05 {
    width: 45.83333334%;
  }
}
/* END: Col Half -------------------------- */
@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCA.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIw.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf) format('truetype');
}
/*************************
*******Typography******
**************************/
html,
body {
  overflow-x: hidden;
}
body {
  padding-top: 100px;
  background: #fff;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #3d474d;
  line-height: 1.6;
  font-size: 16px;
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}
body.modal-open {
  padding-right: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
  color: #272727;
}
a {
  color: #0077b5;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #005582;
}
hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('../images/preloader-sun.gif') 50% 50% no-repeat #f9f9f9;
  opacity: 0.8;
  background-color: #f8f8f8;
  opacity: 1;
}
.section-header .section-title {
  font-size: 44px;
  color: #272727;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 20px;
}
.section-header .section-title::before {
  content: "";
  position: absolute;
  width: 90%;
  bottom: 0;
  left: 10%;
  height: 1px;
  background-color: #778893;
  background: -moz-linear-gradient(left, rgba(119, 136, 147, 0) 0%, rgba(119, 136, 147, 0.85) 45%, rgba(119, 136, 147, 0.85) 55%, rgba(119, 136, 147, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(119, 136, 147, 0) 0%, rgba(119, 136, 147, 0.85) 45%, rgba(119, 136, 147, 0.85) 55%, rgba(119, 136, 147, 0) 100%);
  background: linear-gradient(to right, rgba(119, 136, 147, 0) 0%, rgba(119, 136, 147, 0.85) 45%, rgba(119, 136, 147, 0.85) 55%, rgba(119, 136, 147, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00778893', endColorstr='#00778893', GradientType=1);
}
#get-in-touch .section-header .section-title::before {
  background: -moz-linear-gradient(left, rgba(126, 165, 185, 0) 0%, #7ea5b9 45%, #7ea5b9 55%, rgba(126, 165, 185, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(126, 165, 185, 0) 0%, #7ea5b9 45%, #7ea5b9 55%, rgba(126, 165, 185, 0) 100%);
  background: linear-gradient(to right, rgba(126, 165, 185, 0) 0%, #7ea5b9 45%, #7ea5b9 55%, rgba(126, 165, 185, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007ea5b9', endColorstr='#007ea5b9', GradientType=1);
}
.section-header .section-title::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -11px;
  left: 50%;
  margin-left: -12px;
  border: 5px solid #fff;
  border-radius: 20px;
  background: #0077b5;
  -webkit-box-shadow: 0 0 1px 1px #778893;
  -moz-box-shadow: 0 0 1px 1px #778893;
  box-shadow: 0 0 1px 1px #778893;
}
#get-in-touch .section-header .section-title::after {
  border-color: #00669c;
  -webkit-box-shadow: 0 0 1px 1px #7ea5b9;
  -moz-box-shadow: 0 0 1px 1px #7ea5b9;
  box-shadow: 0 0 1px 1px #7ea5b9;
  background: #ffffff;
}
.btn {
  border-width: 0;
  border-bottom-width: 3px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.btn.btn-primary {
  background: #0077b5;
  border-color: #005582;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #005582;
}
.btn.btn-anthracite-grey {
  background: #2f3437;
  border-color: #282c2f;
}
.btn.btn-anthracite-grey:hover,
.btn.btn-anthracite-grey:focus {
  background: #282c2f;
}
.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  border-bottom: 1px solid #0077b5;
}
ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #0077b5;
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/*************************
*******Header******
**************************/
.navbar {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}
@media (max-width: 320px) {
  .navbar.navbar-default {
    min-width: 300px;
  }
}
.navbar.navbar-default .navbar-toggle {
  margin-top: 10px;
  margin-right: 5px;
  border: none;
  background: transparent !important;
}
.navbar.navbar-default .navbar-toggle:hover {
  background: transparent !important;
}
.navbar.navbar-default .navbar-toggle .icon-bar {
  background-color: #dd5143;
  width: 33px;
  height: 3px;
  transition: all 0.2s;
}
.navbar.navbar-default .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 6px;
}
.navbar.navbar-default .navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar.navbar-default .navbar-toggle .middle-bar {
  opacity: 0;
}
.navbar.navbar-default .navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar.navbar-default .navbar-toggle.collapsed .icon-bar {
  background-color: #93a1a9;
}
.navbar.navbar-default .navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar.navbar-default .navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}
.navbar.navbar-default .navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 0;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 171px;
  height: 81px;
}
.navbar.navbar-default .navbar-brand &gt; img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}
@media (max-width: 991px) {
  .navbar.navbar-default .navbar-brand {
    max-width: 130px;
    margin-top: 19px;
    width: 131px;
    height: 62px;
  }
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-brand {
    max-width: 100px;
    margin-top: 7px;
    margin-bottom: 6px;
    width: 100px;
    height: 47px;
  }
}
.past-main.navbar.navbar-default .navbar-brand {
  margin-top: 7px;
  margin-bottom: 6px;
  width: 100px;
  height: 47px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar.navbar-default &gt; .container-fluid .navbar-header.pull-right .navbar-brand {
  margin-left: 0;
}
@media (max-width: 767px) {
  .navbar.navbar-default &gt; .container-fluid .navbar-header.pull-right .navbar-brand {
    margin-right: 15px;
  }
}
.rx-languages {
  position: absolute;
  left: 50%;
  margin-left: -48px;
  width: 30px;
  top: 11px;
  text-align: center;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.past-main .rx-languages {
  top: 0;
}
@media (max-width: 767px) {
  .rx-languages {
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    width: 80px;
    margin-left: -75px;
  }
  .past-main .rx-languages {
    top: 11px;
  }
}
@media (max-width: 480px) {
  .rx-languages {
    display: none;
  }
}
.rx-languages button {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  margin: 6px auto;
  background-color: transparent;
  padding: 0;
  border: solid 1px #bec6cb;
  font-size: 10px;
  line-height: 1.1;
  color: #93a1a9;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .past-main .rx-languages button {
    margin: 4px auto 3px auto;
    width: 22px;
    height: 22px;
  }
  .past-main .rx-languages button:last-child {
    margin: 0 auto;
  }
}
.rx-languages button:hover {
  border-color: #00a0dc;
}
.rx-languages button:focus,
.rx-languages button.active {
  color: #3d474d;
  border-color: #00a0dc;
  background-color: #ffffff;
}
.rx-languages button.active {
  pointer-events: none;
  cursor: default;
}
@media (max-width: 767px) {
  .rx-languages button {
    display: inline-block;
    margin: 6px 3px;
  }
}
#main-menu.navbar-default {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  #main-menu.navbar-default {
    background: rgba(255, 255, 255, 0.9);
  }
  #main-menu.navbar-default .navbar-nav &gt; li &gt; a {
    -webkit-transition: padding 0.3s ease-out;
    -moz-transition: padding 0.3s ease-out;
    -o-transition: padding 0.3s ease-out;
    -ms-transition: padding 0.3s ease-out;
    transition: padding 0.3s ease-out;
    padding-top: 37px;
    padding-bottom: 40px;
    border-top: 3px solid transparent;
  }
  .past-main#main-menu.navbar-default .navbar-nav &gt; li &gt; a {
    padding-top: 17px;
    padding-bottom: 20px;
  }
  #main-menu.navbar-default .navbar-nav &gt; li.active &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.open &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li:hover &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li:focus &gt; a {
    background: transparent;
    border-top-color: #0077b5;
  }
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer.active &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer.open &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer:hover &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer:focus &gt; a {
    padding-left: 40px;
    padding-right: 40px;
    border-top-color: transparent;
    cursor: default;
    pointer-events: none;
  }
  #main-menu.navbar-default .dropdown-menu {
    padding: 0 20px;
    min-width: 220px;
    background-color: rgba(26, 28, 40, 0.9);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-clip: inherit;
  }
  #main-menu.navbar-default .dropdown-menu &gt; li {
    border-left: 3px solid transparent;
    margin-left: -20px;
    padding-left: 17px;
    -webit-transition: border-color 400ms;
    transition: border-color 400ms;
  }
  #main-menu.navbar-default .dropdown-menu &gt; li &gt; a {
    border-top: 1px solid #404455;
    padding: 15px 0;
    color: #eeeeee;
  }
  #main-menu.navbar-default .dropdown-menu &gt; li:first-child &gt; a {
    border-top: 0;
  }
  #main-menu.navbar-default .dropdown-menu &gt; li.active,
  #main-menu.navbar-default .dropdown-menu &gt; li.open,
  #main-menu.navbar-default .dropdown-menu &gt; li:hover {
    border-left-color: #0077b5;
  }
  #main-menu.navbar-default .dropdown-menu &gt; li.active &gt; a,
  #main-menu.navbar-default .dropdown-menu &gt; li.open &gt; a,
  #main-menu.navbar-default .dropdown-menu &gt; li:hover &gt; a {
    color: #0077b5;
    background-color: transparent;
  }
}
@media only screen and (min-width: 768px) and (min-width: 992px) {
  #main-menu.navbar-default .navbar-nav &gt; li &gt; a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1200px) {
  #main-menu.navbar-default .navbar-nav &gt; li &gt; a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1600px) {
  #main-menu.navbar-default .navbar-nav &gt; li &gt; a {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 828px) {
  #main-menu.navbar-default .navbar-nav &gt; li &gt; a {
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer.active &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer.open &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer:hover &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer:focus &gt; a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 828px) {
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer.active &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer.open &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer:hover &gt; a,
  #main-menu.navbar-default .navbar-nav &gt; li.lang-spacer:focus &gt; a {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    text-align: center;
    float: none;
  }
  .navbar-nav &gt; li {
    float: none;
    display: inline-block;
  }
  .navbar-nav &gt; li.mob-lang {
    display: none;
  }
}
/* navbar menu when collapsed */
@media (max-width: 767px) {
  .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    font-size: 20px;
  }
  .navbar-nav &gt; li &gt; a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar-nav &gt; li &gt; a:hover {
    color: #3d474d;
  }
  .navbar-nav &gt; li.lang-spacer {
    display: none;
  }
  .navbar-nav &gt; li.mob-lang {
    display: none;
  }
  .navbar-nav &gt; li.mob-lang &gt; a .fa-check {
    display: none;
    margin-left: 5px;
  }
  .navbar-nav &gt; li.mob-lang &gt; a:hover .fa-check {
    display: inline-block;
  }
  .navbar-default .navbar-nav &gt; li.active &gt; a {
    background-color: #0077b5;
    color: #ffffff;
  }
  .navbar-default .navbar-nav &gt; li.active &gt; a:hover {
    background-color: #00a0dc;
    color: #ffffff;
  }
  .navbar-collapse {
    clear: both;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .navbar-nav &gt; li.mob-lang {
    display: block;
  }
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a {
    font-weight: 600;
  }
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a,
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a:hover,
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a:focus,
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a:active {
    color: #0077b5;
    cursor: default;
    pointer-events: none;
  }
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a .fa-check,
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a:hover .fa-check,
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a:focus .fa-check,
  .navbar-nav &gt; li.mob-lang.lang-active &gt; a:active .fa-check {
    display: inline-block;
  }
}
@media (max-device-width: 767px) and (orientation: landscape) {
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav &gt; li {
    display: inline-block;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 500px;
}
@media (min-device-width: 668px) and (max-device-width: 736px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
  }
}
@media (min-device-width: 569px) and (max-device-width: 667px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 300px;
  }
}
@media (min-device-width: 481px) and (max-device-width: 568px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 240px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.rx-particles {
  position: absolute;
  width: 100%;
  height: 300vh;
  max-height: 300px;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  top: -50px;
}
@media (max-width: 767px) {
  .rx-particles {
    height: 340vh;
    max-height: 500px;
  }
}
@media (max-width: 480px) {
  .rx-particles {
    height: 380vh;
    max-height: 600px;
  }
}
#main-slider {
  overflow: hidden;
}
#main-slider .item {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../images/slider/rx-slider-default.jpg);
  position: relative;
  background-position: center top;
  background-size: cover;
}
#main-slider .item img,
#main-slider .item picture {
  width: 100%;
  height: auto;
}
#main-slider .item .mob-landcape-img {
  display: none;
}
@media (max-device-width: 991.98px) and (orientation: landscape) {
  #main-slider .item .mob-landcape-img {
    display: block;
  }
  #main-slider .item picture {
    display: none;
  }
}
#main-slider .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#main-slider .slider-inner h2 {
  margin-top: 180px;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
#main-slider .slider-inner h2 &gt; span {
  color: #0077b5;
}
#main-slider .slider-inner .btn {
  margin-top: 10px;
}
#main-slider .owl-prev,
#main-slider .owl-next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 30px;
  display: inline-block;
  margin-top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 8px;
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#main-slider .owl-prev:hover,
#main-slider .owl-next:hover {
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
}
#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}
#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #0077b5;
}
#progressBar {
  margin-top: -4px;
  position: relative;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.rx-p-title {
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin: 5px 0 2px 0;
  color: #0a0c0d;
}
#cta {
  padding: 50px 0;
  background-color: #0a0c0d;
  color: #ffffff;
  -webkit-box-shadow: inset 0 0 70px 0 #000;
  -moz-box-shadow: inset 0 0 70px 0 #000;
  box-shadow: inset 0 0 70px 0 #000;
}
#cta h2 {
  margin-top: 0;
  color: #0077b5;
}
#cta .btn {
  margin-top: 40px;
}
#cta p {
  font-size: 15px;
}
#cta2 {
  background: url(../images/beauty-1920x332.jpg) #ffffff center bottom no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 200px;
  position: relative;
}
@media (max-width: 575px) {
  #cta2 {
    background-size: auto;
    padding-bottom: 160px;
  }
}
#cta2::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
#cta2 .btn {
  margin-top: 10px;
}
#cta2 h2 {
  color: #6b6b6b;
  font-size: 44px;
  line-height: 1;
  margin-top: 0;
}
#cta2 h3 {
  color: #6b6b6b;
  font-size: 40px;
  line-height: 1;
}
#features {
  padding: 100px 0;
}
#features .media.service-box:first-child {
  margin-top: 80px;
}
#brands {
  padding: 100px 0;
  position: relative;
}
#brands .media.service-box:first-child {
  margin-top: 80px;
}
#brands .cbp-wrapper-outer {
  overflow: visible;
}
.rx-brands-pictures-row {
  margin: 40px auto;
}
@media (max-width: 767px) {
  .rx-brands-pictures-row &gt; [class*=col-] {
    margin-bottom: 30px;
    text-align: center;
  }
  .rx-brands-pictures-row &gt; [class*=col-] .img-responsive {
    margin: 0 auto;
  }
  .rx-brands-pictures-row &gt; [class*=col-]:last-child {
    margin-bottom: 0;
  }
}
.rx-brand-description .rx-p-title {
  margin-top: 30px;
  margin-bottom: 5px;
  color: #444b50;
}
.rx-brand-description .cbp-l-member-desc p:first-of-type .rx-p-title {
  margin-bottom: 10px;
}
.rx-brand-description p:first-of-type .rx-p-title {
  margin-top: 0;
}
.cbp-popup-singlePage {
  font-family: 'Titillium Web', sans-serif;
}
.cbp-popup-singlePage .cbp-popup-content {
  text-align: justify;
}
.cbp img {
  width: 100%;
}
.cbp-popup-singlePage .cbp-popup-navigation {
  width: 100vw !important;
}
.cbp-caption-active .cbp-caption-defaultWrap {
  border: solid 1px rgba(61, 71, 77, 0.3);
}
.cbp-popup-singlePage .cbp-popup-navigation-wrap {
  background-color: #0a0c0d;
}
.cbp-popup-singlePage .cbp-l-member-name {
  font: 600 30px/1.4 'Titillium Web', sans-serif;
  color: #0a0c0d;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.cbp-popup-singlePage .cbp-l-member-position {
  font: 600 20px/1.4 'Titillium Web', sans-serif;
  color: #0a0c0d;
}
.cbp-popup-singlePage .cbp-l-member-desc {
  margin-top: 15px;
  font: 400 16px/1.6 'Titillium Web', sans-serif;
}
.cbp-l-grid-team-name {
  margin-top: 2px;
}
.cbp-caption-fadeIn .cbp-caption-activeWrap {
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 481px) {
  .cbp-l-filters-alignCenter .cbp-filter-item:first-child {
    float: left;
  }
  .cbp-l-filters-alignCenter .cbp-filter-item:last-child {
    float: right;
  }
}
.cbp-l-filters-alignCenter .cbp-filter-item {
  background-color: #fff;
  border: 1px solid #0077b5;
  cursor: pointer;
  font: 400 14px/1.4 'Titilium web', sans-serif;
  padding: 5px 13px;
  position: relative;
  overflow: visible;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #0077b5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 18px;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .cbp-l-filters-alignCenter .cbp-filter-item {
    width: 100%;
    max-width: 70%;
  }
}
@media (max-width: 320px) {
  .cbp-l-filters-alignCenter .cbp-filter-item {
    max-width: 80%;
    white-space: nowrap;
  }
}
.cbp-l-filters-alignCenter .cbp-filter-item:hover {
  color: #ffffff;
  background-color: #00a0dc;
  border-color: #00a0dc;
}
.cbp-l-filters-alignCenter .cbp-filter-item-active {
  background-color: #0077b5;
  color: #fff !important;
  opacity: 1;
  border: 1px solid #0077b5;
}
.cbp-popup-content &gt; .container-fluid,
.cbp-popup-content &gt; .container {
  padding-bottom: 30px;
}
.container-fluid [class*=col-] .cbp-l-member-img,
.container [class*=col-] .cbp-l-member-img,
.container-fluid [class*=col-] .cbp-l-member-info,
.container [class*=col-] .cbp-l-member-info {
  float: none;
  width: auto;
  padding: 0;
}
@media (min-width: 768px) {
  .container-fluid [class*=col-] .cbp-l-member-info,
  .container [class*=col-] .cbp-l-member-info {
    margin-top: 0;
  }
}
#services {
  padding: 100px 0 75px;
}
.media.service-box {
  margin: 25px 0;
}
.media.service-box .pull-left {
  margin-right: 20px;
}
.media.service-box .pull-left &gt; i {
  font-size: 24px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  border-radius: 100%;
  color: #0077b5;
  box-shadow: inset 0 0 0 1px #d7d7d7;
  -webkit-box-shadow: inset 0 0 0 1px #d7d7d7;
  transition: background-color 400ms, background-color 400ms;
  position: relative;
}
.media.service-box .pull-left &gt; i:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: -10px;
  border: 4px solid #fff;
  border-radius: 20px;
  background: #0077b5;
}
.media.service-box:hover .pull-left &gt; i {
  background-color: #0077b5;
  color: #fff;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}
#portfolio {
  padding: 100px 0;
  background: #f5f5f5;
}
#portfolio .rx-enlarge-image {
  color: #778893;
  margin: 30px 0;
  line-height: 24px;
  display: inline-block;
}
#portfolio .rx-enlarge-image .fa {
  margin-right: 3px;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  bottom: -1px;
}
#portfolio .cbp-l-filters-button .cbp-filter-item,
#portfolio .cbp-l-filters-dropdownList .cbp-filter-item,
#portfolio .cbp-l-filters-dropdownHeader,
#portfolio .cbp-l-loadMore-button .cbp-l-loadMore-link {
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
}
#retailperfumes {
  /*background: #333 url(../images/bg-retail-perfumes.jpg) no-repeat 0 0;
    background-size: cover;*/
  background-color: #383e42;
  padding: 70px 0;
  color: #ffffff;
  position: relative;
  /*    &amp;::before {
        .mx-pseudo-base-abs ();
        left: 0;
        top: 100px;
        width: 300px;
        height: 300px;
        background: url(../images/slider-decor-bg-white.svg) 0 0 no-repeat;
        background-size: contain;
        .opacity(0.1);
    }*/
}
#retailperfumes h4 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#retailperfumes h3 {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0.05em;
}
#retailperfumes .img-thumbnail {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
#retailperfumes .btns {
  margin-top: 10px;
}
#retailperfumes .btns .btn {
  margin: 0 10px;
  height: 40px;
  width: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.5);
}
#retailperfumes .btns .btn .fa {
  font-size: 26px;
  position: relative;
  right: -2px;
}
#retailperfumes .btns .btn:first-child .fa {
  left: -2px;
  right: auto;
}
#retailperfumes .btns .btn:hover {
  color: #ffffff;
}
#retailperfumes .carousel-inner a {
  color: #ffffff;
  font-size: 14px;
}
#retailperfumes .carousel-inner a:hover {
  color: #0099e8;
}
#partners {
  padding: 60px 0 40px;
  background: #20222e url(../images/bg-work-process.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
}
#partners h2 {
  color: #fff;
}
#partners h3 {
  color: #b5e6ff;
  margin-top: 5px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
@media (max-device-width: 767px) {
  #partners h3 {
    margin-top: 0;
    font-size: 20px;
  }
}
@media (min-device-width: 481px) and (max-device-width: 766px) and (orientation: portrait) {
  #partners h3 {
    margin-top: -2px;
    margin-bottom: 20px;
    font-size: 19px;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  #partners h3 {
    margin-top: -4px;
    margin-bottom: 14px;
  }
}
@media (min-device-width: 668px) and (max-device-width: 767px) (orientation: landscape) {
  #partners h3 {
    font-size: 18px;
  }
}
@media (min-device-width: 481px) and (max-device-width: 667px) and (orientation: landscape) {
  #partners h3 {
    font-size: 17px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  #partners h3 {
    font-size: 16px;
  }
}
#partners .icon-circle {
  display: inline-block;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border: 2px solid #0077b5;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.25);
}
@media (min-device-width: 668px) and (max-device-width: 767px) and (orientation: landscape) {
  #partners .icon-circle {
    width: 110px;
    height: 110px;
    line-height: 110px;
  }
}
@media (min-device-width: 481px) and (max-device-width: 667px) and (orientation: landscape) {
  #partners .icon-circle {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  #partners .icon-circle {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}
#partners .icon-circle &gt; span {
  border-radius: 50%;
  background-color: #0a0c0d;
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 24px;
  top: -6px;
  right: 16px;
  color: #ffffff;
}
@media (min-device-width: 481px) and (max-device-width: 767px) and (orientation: landscape) {
  #partners .icon-circle &gt; span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: -9px;
    right: 7px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  #partners .icon-circle &gt; span {
    width: 18px;
    height: 18px;
    line-height: 20px;
    top: -7px;
    right: 6px;
  }
}
#partners .icon-circle &gt; span .fa {
  font-size: 14px;
  line-height: 24px;
  vertical-align: top;
}
@media (min-device-width: 481px) and (max-device-width: 767px) and (orientation: landscape) {
  #partners .icon-circle &gt; span .fa {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  #partners .icon-circle &gt; span .fa {
    font-size: 10px;
    line-height: 18px;
  }
}
#partners .icon-circle .icon-circle-img-holder {
  height: 116px;
  width: 116px;
  margin: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: url(../images/partners/partner-angelini-beauty.png) #cacbcc no-repeat center center;
  background-size: contain;
}
@media (min-device-width: 668px) and (max-device-width: 767px) and (orientation: landscape) {
  #partners .icon-circle .icon-circle-img-holder {
    height: 94px;
    width: 94px;
    margin: 6px;
  }
}
@media (min-device-width: 481px) and (max-device-width: 667px) and (orientation: landscape) {
  #partners .icon-circle .icon-circle-img-holder {
    height: 76px;
    width: 76px;
    margin: 5px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  #partners .icon-circle .icon-circle-img-holder {
    height: 68px;
    width: 68px;
    margin: 4px;
  }
}
#partners .icon-circle .icon-circle-img-holder.angelini {
  background-image: url(../images/partners/partner-angelini-beauty.png);
}
#partners .icon-circle .icon-circle-img-holder.coty {
  background-image: url(../images/partners/partner-coty.png);
}
#partners .icon-circle .icon-circle-img-holder.euroitalia {
  background-image: url(../images/partners/partner-euroitalia.png);
}
#partners .icon-circle .icon-circle-img-holder.shiseido {
  background-image: url(../images/partners/partner-shiseido.png);
}
#partners .icon-circle .icon-circle-img-holder.salvatore-f {
  background-image: url(../images/partners/partner-salvatore-f.png);
}
#partners .icon-circle .icon-circle-img-holder.lalique {
  background-image: url(../images/partners/partner-lalique.png);
}
#partners .icon-circle .icon-circle-img-holder.artdeco {
  background-image: url(../images/partners/partner-artdeco.png);
}
#partners .icon-circle .icon-circle-img-holder.pupa {
  background-image: url(../images/partners/partner-pupa.png);
}
#partners .icon-circle .icon-circle-img-holder.guerlain {
  background-image: url(../images/partners/partner-guerlain.png);
}
#partners .icon-circle .icon-circle-img-holder.chanel {
  background-image: url(../images/partners/partner-chanel.png);
}
#partners .icon-circle .icon-circle-img-holder.deborah {
  background-image: url(../images/partners/partner-deborah.png);
}
#partners .icon-circle .icon-circle-img-holder.collistar {
  background-image: url(../images/partners/partner-collistar.png);
}
#partners .icon-circle .icon-circle-img-holder.sisley {
  background-image: url(../images/partners/partner-sisley.png);
}
#partners .icon-circle .icon-circle-img-holder.jeanne-p {
  background-image: url(../images/partners/partner-jeanne-p.png);
}
#partners .icon-circle .icon-circle-img-holder.diego {
  background-image: url(../images/partners/partner-diego.png);
}
#partners .cbp-l-slider-testimonials-wrap {
  background-color: transparent;
  border: 0;
  padding: 20px 0 0 0;
}
#partners .cbp-l-grid-slider-testimonials-body {
  max-width: 1170px;
  padding: 0;
}
#partners .cbp-l-grid-slider-testimonials-body &gt; .row {
  padding-top: 20px;
}
@media (max-device-width: 767px) and (orientation: landscape) {
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row {
    margin: 0;
  }
}
@media (min-device-width: 668px) and (max-device-width: 767px) (orientation: landscape) {
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-device-width: 1px) and (max-device-width: 667px) and (orientation: landscape) {
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-device-width: 480px) and (orientation: landscape) {
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-device-width: 767px) and (orientation: landscape) {
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row &gt; [class*=col-] {
    width: 25%;
    float: left;
  }
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row &gt; [class*=col-].col-sm-offset-2 {
    margin-left: auto;
  }
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row &gt; [class*=col-].rx-offset-3-back-max767-land {
    margin-left: 25%;
  }
  #partners .cbp-l-grid-slider-testimonials-body &gt; .row &gt; [class*=col-].rx-offset-4-back-max767-land {
    margin-left: 33.33333333%;
  }
}
#partners .cbp-slider-edge .cbp-nav-pagination {
  bottom: -10px;
}
@media (min-device-width: 481px) and (max-device-width: 766px) and (orientation: portrait) {
  #partners .cbp-slider-edge .cbp-nav-pagination {
    bottom: -20px;
  }
}
@media (max-device-width: 480px) and (orientation: portrait) {
  #partners .cbp-slider-edge .cbp-nav-pagination {
    bottom: -30px;
  }
}
#partners .cbp-nav-pagination-item {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-color: #ffffff;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
#partners .cbp-nav-pagination-item:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.5);
}
#partners .cbp-nav-pagination-active {
  background-color: #ffffff;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#partners .cbp-nav-next,
#partners .cbp-nav-prev {
  background: none;
  background-color: transparent;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 40px;
  text-align: center;
  bottom: auto;
  top: 40%;
  margin-top: -20px;
  color: #ffffff;
  left: -20px;
}
#partners .cbp-nav-next::after,
#partners .cbp-nav-prev::after {
  display: none;
}
#partners .cbp-nav-next::before,
#partners .cbp-nav-prev::before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f104";
}
#partners .cbp-nav-next:hover,
#partners .cbp-nav-prev:hover {
  opacity: 0.7;
}
#partners .cbp-nav-next:focus,
#partners .cbp-nav-prev:focus,
#partners .cbp-nav-next:active,
#partners .cbp-nav-prev:active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  color: #0a0c0d;
}
#partners .cbp-nav-next {
  left: auto;
  right: -20px;
}
#partners .cbp-nav-next::before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f105";
}
#meet-team {
  padding: 100px 0;
  position: relative;
}
#meet-team .section-header {
  margin-bottom: 20px;
}
#meet-team .team-member {
  padding: 13px;
  background: #eeeeee;
  border: 2px solid #e6e6e6;
  -webkit-transition: border-color 400ms ease-out;
  -moz-transition: border-color 400ms ease-out;
  -o-transition: border-color 400ms ease-out;
  -ms-transition: border-color 400ms ease-out;
  transition: border-color 400ms ease-out;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
#meet-team .team-member .team-img {
  margin: -13px -13px 0 -13px;
  overflow: hidden;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
#meet-team .team-member .team-img img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#meet-team .team-member .team-info {
  padding-bottom: 10px;
  /*border-bottom: 1px solid #dbdbdb;
            margin-bottom: 10px;*/
}
#meet-team .team-member .rx-message {
  font-size: 14px;
  line-height: 1.2;
}
#meet-team .team-member:hover {
  border-color: #0077b5;
}
#meet-team .team-member:hover .team-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a {
  background: #0077b5;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-fb {
  background: #3b5998;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-fb:hover {
  background: #213f7f;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-tw {
  background: #00aced;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-tw:hover {
  background: #0087ba;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-gp {
  background: #d34836;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-gp:hover {
  background: #c02a16;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-in {
  background: #8a3ab9;
}
#meet-team .team-member:hover .social-icons &gt; li &gt; a.si-in:hover {
  background: #711fa1;
}
#meet-team .rx-team-single-item {
  float: none;
  margin: auto;
}
@media (min-width: 611px) and (max-width: 700px) {
  #meet-team .rx-team-single-item {
    width: 55%;
  }
}
@media (min-width: 481px) and (max-width: 610px) {
  #meet-team .rx-team-single-item {
    width: 62%;
  }
}
@media (min-width: 321px) and (max-width: 480px) {
  #meet-team .rx-team-single-item {
    width: 70%;
  }
}
@media (max-width: 320px) {
  #meet-team .rx-team-single-item {
    width: 80%;
  }
}
#meet-team .rx-team-single-item .team-member .team-img .img-responsive {
  margin: auto;
  width: 100%;
  max-width: initial;
}
#meet-team .rx-team-other-items {
  line-height: 1.2;
}
#meet-team .rx-team-other-items .social-icons &gt; li &gt; a {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
#meet-team .rx-team-other-items h3 {
  font-size: 18px;
}
@media (max-width: 767px) {
  #meet-team .rx-team-other-items {
    float: none;
    margin: auto auto 20px auto;
  }
  #meet-team .rx-team-other-items:last-child {
    margin-bottom: auto;
  }
}
@media (min-width: 701px) and (max-width: 767px) {
  #meet-team .rx-team-other-items {
    width: 35%;
  }
}
@media (min-width: 611px) and (max-width: 700px) {
  #meet-team .rx-team-other-items {
    width: 40%;
  }
}
@media (min-width: 481px) and (max-width: 610px) {
  #meet-team .rx-team-other-items {
    width: 45%;
  }
}
@media (min-width: 321px) and (max-width: 480px) {
  #meet-team .rx-team-other-items {
    width: 50%;
  }
}
@media (max-width: 320px) {
  #meet-team .rx-team-other-items {
    width: 55%;
  }
}
#meet-team .rx-team-other-items .team-member .team-img .img-responsive {
  margin: auto;
  width: 100%;
  max-width: initial;
}
#meet-team .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}
#meet-team .social-icons &gt; li {
  display: inline-block;
}
#meet-team .social-icons &gt; li &gt; a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: #222534;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .brand-social-networks.bsn-top {
    position: absolute;
    width: 100%;
    margin-top: -10px;
    background-color: #ffffff;
  }
}
@media (max-width: 767px) {
  .brand-social-networks {
    text-align: center;
  }
}
.brand-social-networks .brand-website {
  font-size: 18px;
  display: inline-block;
  color: #808b93;
}
.brand-social-networks .brand-website:hover {
  color: #2c3134;
}
.brand-social-networks .social-icons {
  list-style: none;
  padding: 0;
  display: inline-block;
  white-space: nowrap;
}
.brand-social-networks .social-icons &gt; li {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .brand-social-networks .social-icons &gt; li:first-child {
    margin-left: 15px;
  }
}
.brand-social-networks .social-icons &gt; li &gt; a {
  background: #0077b5;
  color: #ffffff;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-fb {
  background: #3b5998;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-fb:hover {
  background: #213f7f;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-tw {
  background: #00aced;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-tw:hover {
  background: #0087ba;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-gp {
  background: #d34836;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-gp:hover {
  background: #c02a16;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-in {
  background: #8a3ab9;
}
.brand-social-networks .social-icons &gt; li &gt; a.si-in:hover {
  background: #711fa1;
}
.panel-default {
  border-color: #eee;
}
.panel-default &gt; .panel-heading {
  background-color: #fff;
  border-color: #eee;
}
.panel-default &gt; .panel-heading .panel-title {
  font-size: 15px;
  font-weight: normal;
}
.panel-default &gt; .panel-heading + .panel-collapse &gt; .panel-body {
  border-top-color: #eee;
}
#about {
  padding: 100px 0;
  background-color: rgba(61, 71, 77, 0.2);
  position: relative;
}
#about .about-content p {
  font-size: 14px;
}
@media (max-width: 991px) {
  #about .about-content p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #about .about-content p {
    font-size: 16px;
  }
}
#about .about-content .about-image {
  background: url(../images/radix-about.jpg) center center no-repeat;
  background-size: cover;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
#about .about-content .about-image &gt; img {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  #about .about-content .about-image {
    background: none !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  #about .about-content .about-image &gt; img {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    visibility: visible;
    margin: 20px 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
  }
}
#about .tab-content {
  background-color: #fcfcfc;
  min-height: 198px;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 991px) {
  #about .nav &gt; li &gt; a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  #about .nav-justified &gt; li {
    display: table-cell;
    width: 1%;
    float: none;
  }
  #about .nav-justified &gt; li &gt; a {
    margin-bottom: 0;
  }
}
@media (max-width: 280px) {
  #about .nav &gt; li &gt; a {
    padding: 8px;
  }
}
#about .rx-accordion {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#about .rx-accordion.panel-group .panel + .panel {
  margin-top: 0;
}
#about .rx-accordion .panel-default {
  border-color: transparent;
  border-bottom-color: #c9cbcb;
  position: relative;
}
#about .rx-accordion .panel-default::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 1px;
  background-color: #c9cbcb;
}
#about .rx-accordion .panel-default,
#about .rx-accordion .panel-default .panel-heading {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#about .rx-accordion .panel-default .panel-heading h4 a {
  border: 0;
}
#about .rx-accordion .panel-default .panel-body {
  font-size: 14px;
  line-height: 1.6;
  border: 0;
}
#about .rx-accordion .panel-default:first-of-type,
#about .rx-accordion .panel-default:first-of-type .panel-heading,
#about .rx-accordion .panel-default:first-of-type h4 a,
#about .rx-accordion .panel-default:first-of-type .panel-heading h4 a {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
#about .rx-accordion .panel-default:last-of-type {
  border-color: transparent;
}
#about .rx-accordion .panel-default:last-of-type::before {
  display: none;
}
#about .rx-accordion .panel-default:last-of-type,
#about .rx-accordion .panel-default:last-of-type .panel-heading,
#about .rx-accordion .panel-default:last-of-type h4 a,
#about .rx-accordion .panel-default:last-of-type .panel-heading h4 a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#about .rx-accordion .panel-default:last-of-type,
#about .rx-accordion .panel-default:last-of-type .panel-heading,
#about .rx-accordion .panel-default:last-of-type h4 a.collapsed,
#about .rx-accordion .panel-default:last-of-type .panel-heading h4 a.collapsed {
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
#about .rx-accordion .panel-default:last-of-type h4 a {
  margin-bottom: -10px;
}
#about .rx-accordion .panel-default:last-of-type h4 a.collapsed {
  margin-bottom: -11px;
}
#about .rx-accordion h4 a {
  font-weight: 600;
  display: block;
  margin: -11px -16px -10px -16px;
  padding: 11px 16px 11px 10px;
  background-color: #0077b5;
  color: #ffffff;
  border-bottom: solid 1px transparent;
}
#about .rx-accordion h4 a .fa {
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#about .rx-accordion h4 a.collapsed {
  background-color: transparent;
  color: #3d474d;
  background-color: #e8ebed;
}
#about .rx-accordion h4 a.collapsed .fa {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
#about .rx-accordion h4 a.collapsed:hover {
  background-color: #bec6cb;
}
#about .rx-accordion h4 a.collapsed:hover .fa {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#about .rx-pecent-tracks &gt; strong {
  line-height: 1.1;
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
}
#about .rx-pecent-tracks .progress {
  margin-bottom: 24px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#owl-about .item img {
  display: block;
  width: 100%;
  height: auto;
}
#owl-about .owl-pagination {
  min-height: 30px;
  padding-top: 10px;
  text-align: center;
}
#owl-about .owl-controls .owl-page {
  cursor: pointer;
  height: 20px;
  width: 20px;
  background-color: gray;
  display: inline-block;
  margin: 5px;
}
#owl-about .owl-controls .owl-page.active {
  background-color: #0077b5;
}
#owl-about .owl-controls .owl-buttons {
  display: none;
}
#owl-about .owl-controls .owl-buttons div {
  cursor: pointer;
  height: 20px;
  width: 20px;
  display: inline-block;
  margin: 5px;
}
.progress {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #eeeeee;
}
.progress .progress-bar.progress-bar-primary {
  background-color: #0077b5;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.nav.main-tab {
  background-color: #e8ebed;
  border-bottom: 1px solid #c9cbcb;
  border-radius: 3px 3px 0 0;
}
.nav.main-tab &gt; li &gt; a {
  color: #3d474d;
  font-weight: 600;
  padding-top: 7px;
  padding-bottom: 6px;
}
.nav.main-tab &gt; li &gt; a:hover {
  background-color: #bec6cb;
}
.nav.main-tab &gt; li.active &gt; a {
  background-color: #0077b5;
  color: #ffffff;
}
.nav.main-tab &gt; li.active &gt; a:hover {
  background-color: #0077b5;
  color: #ffffff;
}
.nav.main-tab &gt; li:first-child &gt; a {
  border-radius: 3px 0 0 0;
}
.nav.main-tab &gt; li:last-child &gt; a {
  border-radius: 0 3px 0 0;
}
.tab-content {
  border-top: 0;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
}
#animated-number {
  padding: 100px 0 70px;
  background: #132125 url(../images/animated-number-bg.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
  position: relative;
}
#animated-number::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 400px;
  height: 400px;
  background: url(../images/slider-decor-bg-white.svg) 0 0 no-repeat;
  background-size: contain;
  -webkit-opacity: 0.1;
  -moz-opacity: 0.1;
  opacity: 0.1;
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}
#animated-number h1,
#animated-number h2,
#animated-number h3,
#animated-number h4 {
  color: #fff;
}
#animated-number .section-header {
  margin-bottom: 30px;
}
#animated-number .rx-fun-facts strong {
  display: block;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
.animated-number {
  display: inline-block;
  width: 140px;
  height: 140px;
  font-size: 24px;
  line-height: 140px;
  border: 3px solid #fff;
  border-radius: 100px;
  margin-bottom: 20px;
}
#get-in-touch {
  padding: 100px 0 32px;
  background-color: #0077b5;
  color: #fff;
  position: relative;
}
#get-in-touch h1,
#get-in-touch h2 {
  color: #fff;
}
#blog {
  padding: 100px 0;
  background-color: rgba(61, 71, 77, 0.2);
  position: relative;
}
#blog::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 400px;
  height: 400px;
  background: url(../images/slider-decor-bg-white.svg) 0 0 no-repeat;
  background-size: contain;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
#blog .media-body {
  width: 100%;
}
#blog p {
  line-height: 1.6;
}
#blog .blog-post {
  border: 1px solid #cacbcc;
  background-color: #fcfcfc;
  padding: 15px;
}
#blog .blog-post .post-format {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background: #222534;
  border: 3px solid #fff;
  border-radius: 100px;
}
@media (max-width: 991px) {
  #blog .blog-post.blog-large {
    margin-bottom: 30px;
  }
}
#blog .blog-post.blog-large .entry-thumbnail {
  margin: -15px -15px 15px;
  position: relative;
}
@media (max-width: 991px) {
  #blog .blog-post.blog-large .entry-thumbnail &gt; img {
    width: 100%;
  }
}
#blog .blog-post.blog-large .post-format {
  width: 66px;
  height: 66px;
  line-height: 60px;
  position: absolute;
  right: 20px;
  bottom: -33px;
}
#blog .blog-post.blog-large .post-format &gt; i {
  font-size: 20px;
}
#blog .blog-post.blog-large .entry-date {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #0077b5;
}
#blog .blog-post.blog-large .entry-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 15px;
}
#blog .blog-post.blog-large .entry-title a {
  color: #3d474d;
}
#blog .blog-post.blog-large .entry-title a:hover {
  color: #0077b5;
}
@media (max-width: 550px) {
  #blog .blog-post .media-body {
    display: block;
  }
}
#blog .blog-post.blog-media {
  margin-bottom: 30px;
}
@media (max-width: 550px) {
  #blog .blog-post.blog-media {
    visibility: visible;
  }
  #blog .blog-post.blog-media article {
    margin: -15px -15px 0 -15px;
  }
  #blog .blog-post.blog-media .media-body {
    padding: 15px 15px 0 15px;
  }
}
#blog .blog-post.blog-media:last-child {
  margin-bottom: 0;
}
#blog .blog-post.blog-media .entry-thumbnail {
  margin: -15px 15px 0 -15px;
  position: relative;
}
@media (min-width: 551px) {
  #blog .blog-post.blog-media .entry-thumbnail img {
    width: 100%;
    max-width: 263px;
  }
}
@media (max-width: 550px) {
  #blog .blog-post.blog-media .entry-thumbnail {
    margin: 0;
    width: 100%;
    float: none !important;
    padding: 0;
  }
  #blog .blog-post.blog-media .entry-thumbnail .img-wrap-xs {
    height: 300px;
    overflow: hidden;
  }
  #blog .blog-post.blog-media .entry-thumbnail img {
    max-width: 100%;
    margin-top: -10%;
  }
}
#blog .blog-post.blog-media .post-format {
  position: absolute;
  top: 20px;
  right: -10px;
}
@media (max-width: 550px) {
  #blog .blog-post.blog-media .post-format {
    width: 66px;
    height: 66px;
    line-height: 60px;
    top: auto;
    right: 20px;
    bottom: -33px;
  }
  #blog .blog-post.blog-media .post-format .fa {
    font-size: 20px;
  }
}
#blog .blog-post.blog-media .entry-date {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #0077b5;
}
#blog .blog-post.blog-media .entry-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
}
#blog .blog-post.blog-media .entry-title a {
  color: #3d474d;
}
#blog .blog-post.blog-media .entry-title a:hover {
  color: #0077b5;
}
#blog .blog-post .entry-meta {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
#blog .blog-post .entry-meta &gt; span {
  display: inline-block;
  margin-right: 10px;
  color: #999;
}
#blog .blog-post .entry-meta &gt; span &gt; a {
  color: #999;
}
#blog .blog-post .entry-meta &gt; span &gt; a:hover {
  color: #0077b5;
}
#contact {
  position: relative;
  overflow: hidden;
}
#contact::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 650px;
  background: rgba(0, 119, 181, 0.1);
  pointer-events: none;
}
#contact .container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 119, 181, 0.1);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  #contact .container-wrapper {
    position: relative;
    background: #ffffff;
    z-index: 2;
  }
}
#contact .contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-top: 35px;
  pointer-events: all;
  position: relative;
}
@media (max-width: 767px) {
  #contact .contact-form {
    margin-top: 0;
    top: 0;
    left: 0;
    z-index: auto;
  }
}
#contact .contact-form h3 {
  margin-top: 0;
  text-align: center;
}
#contact .contact-form .form-control {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#contact .contact-form .form-control:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#contact .contact-form:hover {
  background: #ffffff;
}
#contact .contact-form address {
  text-align: center;
  font-size: 14px;
}
#contact .contact-form address .rx-company-titles {
  margin-bottom: 10px;
}
#contact .contact-form address .rx-company-titles [class*=col-] {
  white-space: nowrap;
  /* &amp;:first-child {
                        text-align: left;
                        padding-right: 0;
                    }

                    &amp;:last-child {
                        text-align: right;
                        padding-left: 0;
                    } */
}
#contact .contact-form address .rx-company-titles [class*=col-] strong {
  font-size: 20px;
  font-weight: 600;
  color: #0077b5;
}
@media (max-width: 480px) and (max-width: 767px) {
  #contact .contact-form address .rx-company-titles [class*=col-] strong {
    font-size: 18px;
  }
}
#contact .contact-form .rx-info-popup {
  position: absolute;
  left: 15px;
  top: 185px;
  bottom: 65px;
  right: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 80px 20px 10px 20px;
  background-color: #ffffff;
  border: solid 2px #06b44c;
  color: #006e2c;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#contact .contact-form .rx-info-popup.rx-ip-error {
  border-color: #dd5143;
  color: #c32111;
}
#contact .contact-form .rx-info-popup.rx-ip-thanks {
  border-color: #00a0dc;
  color: #0077b5;
}
/***********************
********* Footer ******
************************/
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: #2e2e2e;
  background: #0a0c0d;
  background-position: center center;
  background-image: url(../images/rx-footer-bg.jpg);
  background-repeat: repeat-x;
  font-size: 14px;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #0077b5;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
  font-size: 20px;
}
#footer ul &gt; li {
  display: inline-block;
  margin: 0 7.5px;
}
/*scrol to top*/
.scrollToTop,
a.scrollToTop,
a.scrollToTop:link,
a.scrollToTop:visited {
  background-color: #0077b5;
  bottom: 15px;
  display: none;
  font-size: 32px;
  font-weight: bold;
  height: 60px;
  width: 60px;
  line-height: 53px;
  position: fixed;
  right: 15px;
  text-align: center;
  text-decoration: none;
  z-index: 9980;
  color: #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: solid 1px #0077b5;
  border-radius: 100%;
}
.scrollToTop:hover,
.scrollToTop:focus,
a.scrollToTop:hover,
a.scrollToTop:focus,
a.scrollToTop:active {
  background-color: #ffffff;
  text-decoration: none;
  outline: none;
  color: #0077b5;
  height: 62px;
  width: 62px;
  bottom: 16px;
}
@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}
/***********************
********* Helpers ******
************************/
.pointer-events-none {
  pointer-events: none !important;
}
/***********************
********* Colors ******
************************/
.c-white {
  color: #ffffff !important;
}
/***********************
********* Flex ******
************************/
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-column {
  -ms-flex-direction: column !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  flex-direction: column !important;
}
.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
  flex-grow: 1 !important;
}
@media (min-width: 992px) {
  .d-flex-md-up {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-column-md-up {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }
  .flex-grow-1-md-up {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }
}</pre></body></html>