/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body,
html {
  font-family: "Source Sans 3", sans-serif;
  color: #6D6E70;
  overflow-x: hidden;
}

*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

*:hover {
  text-decoration: none !important;
}

@media only screen and (max-width: 640px) {
  .hideMobile {
    display: none !important;
  }
}

.customContent img {
  width: 100%;
  height: 100%;
  display: block;
}

.flexVertical {
  display: flex;
  align-items: center;
}

.flexEnd {
  display: flex;
  align-items: flex-end;
}

ul {
  font-size: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.clearfix {
  clear: both;
}

p {
  font-size: 16px;
  line-height: 25.6px;
  color: #6D6E70;
  font-weight: 400;
}

p strong {
  font-weight: 700;
}

p.isWhite {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans 3", sans-serif;
  position: relative;
  z-index: 1;
}

h1.isWhite,
h2.isWhite,
h3.isWhite,
h4.isWhite,
h5.isWhite,
h6.isWhite {
  color: white;
}

h1 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: #3C5B97;
  padding-bottom: 32px;
}

h1 span {
  line-height: 48px;
  color: #404041;
  background-color: #E8C5A0;
}

@media only screen and (max-width: 640px) {
  h1 {
    font-size: 32px;
    line-height: 38.4px !important;
    padding-bottom: 16px;
  }

  h1 span {
    line-height: 38.4px !important;
  }
}

h2 {
  font-size: 38.4px;
  line-height: 38.4px;
  font-weight: 700;
  color: #3C5B97;
}

.btn {
  font-size: 18px !important;
  line-height: 18px !important;
  padding: 14px 60px;
  font-weight: 600;
  border-radius: 50px;
}

.btn.btn-primary {
  background-color: #3C5B97 !important;
  border: 1px solid #3C5B97 !important;
  color: white;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #2d4573 !important;
  border: 1px solid #2d4573 !important;
}

.btn.btn-secondary {
  font-size: 16px;
  font-weight: 700;
  background-color: white !important;
  border: 1px solid white !important;
  color: #3C5B97;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background-color: #e6e6e6 !important;
  border: 1px solid #e6e6e6 !important;
}

header {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  header {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

header .logo {
  max-width: 200px;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  header .logo {
    max-width: 120px;
  }
}

ul.hInfo {
  font-size: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

ul.hInfo li {
  margin-right: 16px;
  background-repeat: no-repeat;
  background-position: left;
}

ul.hInfo li.infoPhone {
  padding-left: 24px;
  background-image: url(/assets//images/ic-info-phone.png);
}

ul.hInfo li.infoAddress {
  margin-left: 16px;
  padding-left: 30px;
  background-image: url(/assets//images/ic-info-address.png);
}

ul.hInfo.\--forMobile {
  justify-content: center;
}

ul.hInfo.\--forMobile li {
  margin-right: 0;
}

ul.hSocial {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

ul.hSocial li {
  margin-left: 16px;
}

ul.hSocial.\--forMobile {
  justify-content: center;
}

.openMenuMobile,
.closeMenuMobile {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 99;
  background-color: #3C5B97;
  padding: 4px;
  cursor: pointer;
  display: none;
  border-radius: 50%;
}

.openMenuMobile img,
.closeMenuMobile img {
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .openMenuMobile,
  .closeMenuMobile {
    display: block;
  }
}

nav ul#mainmenu {
  width: 100%;
  font-size: 15px !important;
  font-weight: 600;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav ul#mainmenu li {
  position: relative;
}

nav ul#mainmenu li a {
  padding-bottom: 15px;
  color: #6D6E70;
  transition: 0.2s all ease;
}

nav ul#mainmenu li a:hover {
  color: #3C5B97;
}

nav ul#mainmenu li:hover #submenu {
  display: block;
}

nav ul#mainmenu #submenu {
  width: 260px;
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 99;
  border-left: 8px solid #E8C5A0;
  padding: 12px 20px;
  background-color: white;
  display: none;
}

nav ul#mainmenu #submenu li {
  margin-bottom: 6px;
}

nav ul#mainmenu #submenu li a {
  padding-bottom: 0;
}

nav.isMobile {
  display: none;
  background-color: #D3DDF2;
  width: 100%;
  height: 100vh;
  overflow: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 33333;
  padding-bottom: 32px;
}

nav.isMobile #mobileMenu {
  width: 100%;
  font-size: 18px !important;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

nav.isMobile #mobileMenu li {
  position: relative;
}

nav.isMobile #mobileMenu li a {
  padding: 8px;
  color: #6D6E70;
  display: block;
  transition: 0.2s all ease;
}

nav.isMobile #mobileMenu li a:hover {
  color: #3C5B97;
}

nav.isMobile #mobileMenu #submenu {
  width: 100%;
  border-left: 8px solid #E8C5A0;
  padding: 12px 20px;
  background-color: white;
  display: none;
}

nav.isMobile #mobileMenu #submenu li {
  margin-bottom: 6px;
}

nav.isMobile #mobileMenu #submenu li a {
  padding-bottom: 0;
}

footer {
  background-color: #3C5B97;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 115px;
}

footer .logo {
  display: block;
}

@media only screen and (max-width: 640px) {
  footer .logo {
    max-width: 200px;
    margin: 0 auto 30px auto;
  }
}

footer ul.footMenu {
  font-size: 15px;
}

footer ul.footMenu li a {
  color: white;
}

footer ul.footMenu li.\--head {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

footer ul.footInfo {
  font-size: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

footer ul.footInfo li {
  color: white !important;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-position: left;
}

footer ul.footInfo li.infoPhone {
  padding-left: 24px;
  background-image: url(/assets//images/ic-info-phone-white.png);
}

footer ul.footInfo li.infoAddress {
  margin-left: 16px;
  padding-left: 30px;
  background-image: url(/assets//images/ic-info-address-white.png);
}

@media only screen and (max-width: 640px) {
  footer ul.footInfo {
    flex-direction: column;
  }

  footer ul.footInfo li {
    margin-right: 0;
  }

  footer ul.footInfo li.infoPhone {
    margin-bottom: 15px;
    padding-left: 24px;
  }

  footer ul.footInfo li.infoAddress {
    margin-left: 0;
    padding-left: 30px;
  }
}

footer ul.footSocial {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

footer ul.footSocial li {
  margin-left: 16px;
}

@media only screen and (max-width: 640px) {
  footer ul.footSocial {
    justify-content: center;
  }
}

@media only screen and (max-width: 640px) {
  footer {
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

input[type=text],
input[type=email],
textarea,
select {
  color: #6D6E70;
  border: 1px solid #3C5B97 !important;
  background-color: white !important;
  margin-bottom: 14px;
  border-radius: 20px !important;
}

t input[type=text]:focus,
t input[type=email]:focus,
t textarea:focus,
t select:focus {
  color: #2a2a2a;
}

.form-control.error {
  margin-bottom: 0 !important;
}

label.error {
  font-size: 13px;
  color: red;
  display: block;
  padding: 5px 15px;
}

textarea {
  color: #a8a8a8;
  resize: none;
}

textarea:focus {
  color: #2a2a2a;
}

#response {
  display: none;
}

.owl-carousel .item h1 {
  line-height: 75.2px;
}

.owl-carousel .item p {
  font-size: 12px;
  line-height: 14px;
}

.owl-carousel.homeBanners {
  background-color: #3C5B97;
}

.owl-carousel.homeBanners .item {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 640px) {
  .owl-carousel.homeBanners .item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.owl-dots {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 30px;
}

.owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: white;
  border-radius: 50%;
}

.owl-dots .owl-dot.active span {
  background-color: #E8C5A0;
}

section.hasPad {
  padding-top: 115px;
}

section.head {
  background-color: #3C5B97;
  padding-top: 60px;
  padding-bottom: 60px;
}

section.head h1 {
  color: white;
  padding-bottom: 0;
}

section .homeServices {
  margin-top: 100px;
}

section .homeTeam {
  background-color: #D3DDF2;
  position: relative;
  padding-top: 130px;
  padding-bottom: 40px;
  padding-left: 6px;
  padding-right: 6px;
  margin-top: 75px;
  margin-bottom: 30px;
  min-height: 280px;
}

section .homeTeam a {
  width: 80%;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}

section .homeTeam .\--img {
  width: 215px;
  height: 215px;
  display: block;
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  border: 4px solid #E8C5A0;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

section .homeTeam .\--title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 24px;
}

section .homeTeam .\--title span {
  display: block;
}

section .homeTeam p {
  font-size: 10px;
  line-height: 12px;
  padding: 0;
}

section ul.aboutFeatures li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

section ul.aboutFeatures li img {
  margin-right: 10px;
  display: block;
}

section ul.aboutFeatures li p {
  margin-bottom: 0;
}

section .aboutGallery span {
  width: 100%;
  max-width: 240px;
  height: 240px;
  display: block;
  margin: 0 auto 40px auto;
  border: 6px solid #E8C5A0;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

section .aboutImage {
  display: none;
}

section .professionalImg {
  width: 290px;
  height: 290px;
  margin: 0 auto;
  border: 6px solid #E8C5A0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  section .professionalImg {
    position: static;
    margin-bottom: 30px;
  }
}

section .professionalList h1 .isUppercase {
  display: block !important;
  text-transform: uppercase !important;
}

section .professionalList ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

section .professionalList ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 9;
  width: 10px;
  height: 16px;
  background-image: url(/assets//images/ic-arrow.png);
}

section .blogPost {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

section .blogPost h1 {
  padding-bottom: 0;
}

section .blogPost.\--normal {
  align-items: flex-start;
}

section .blogPost .blogImage {
  width: 300px;
  height: 300px;
  display: block;
  float: right;
  border: 6px solid #E8C5A0;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

section .blogPost .blogImage.\--single {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  section .blogPost .blogImage.\--single {
    position: static;
  }
}

@media only screen and (max-width: 640px) {
  section.hasPad {
    padding-top: 60px;
  }

  section.head {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  section .homeServices {
    margin-top: 60px;
  }

  section .homeTeam {
    margin-bottom: 60px !important;
  }

  section .aboutImage {
    display: block;
  }
}

.hasSplash {
  position: relative;
}

.hasSplash iframe {
  width: 400px;
  height: 270px;
  position: absolute;
  top: 160px;
  left: 80px;
  z-index: 99;
  border: none !important;
  border-radius: 10px;
}

@media only screen and (max-width: 640px) {
  .hasSplash iframe {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
}

.hasSplash .spashArt {
  width: 920px;
  height: 617px;
  position: relative;
  left: 0;
  top: -30px;
  z-index: -1;
  background-position: center center;
  background-repeat: no-repeat;
}

.hasSplash .spashArt.isHome {
  position: absolute;
  left: 0;
  background-image: url("/assets//images/bg-splash.png");
}

.hasSplash .spashArt.isAbout {
  right: 0;
  left: unset;
}

.hasSplash .spashArt.isSingle {
  width: 684px;
  height: 480px;
  top: -30px;
  left: -510px;
  background-image: url("/assets//images/bg-splash-img.png");
}

.hasSplash .spashArt.isAboutLeft {
  left: -420px;
}

@media only screen and (max-width: 640px) {
  .hasSplash.\--isVideo {
    padding-top: 0;
    padding: 0;
    margin-bottom: 0;
    margin-top: 30px !important;
  }

  .hasSplash .spashArt {
    display: none;
  }
}

.wame {
  width: 64px;
  height: 64px;
  background-image: url("/assets//images/ic-whatsapp.png");
  background-position: center center;
  background-size: cover;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 101;
}

