/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/*
     @include grid-md {
        min-height: 40vh;
    }
*/
.bg-img {
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover; }

.bg-overlay {
  position: relative; }
  .bg-overlay .container {
    position: relative;
    z-index: 1; }
  .bg-overlay:before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0; }
  .bg-overlay-light:before {
    background-color: rgba(0, 0, 0, 0.1); }
  .bg-overlay-dark:before {
    background-color: rgba(0, 0, 0, 0.5); }

.overlay-white {
  position: relative; }
  .overlay-white:before {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0; }

.bg-black {
  background-color: #000 !important; }

.fs-1x {
  font-size: 12px; }

.fs-2x {
  font-size: 14px; }

.fs-3x {
  font-size: 16px; }

.fs-4x {
  font-size: 18px; }

.fs-5x {
  font-size: 20px; }

.fs-6x {
  font-size: 22px; }

.fs-7x {
  font-size: 24px; }

.fs-8x {
  font-size: 26px; }

.fs-9x {
  font-size: 28px; }

.fs-10x {
  font-size: 30px; }

.fs-11x {
  font-size: 32px; }

.fs-12x {
  font-size: 34px; }

.fs-13x {
  font-size: 36px; }

.fs-14x {
  font-size: 38px; }

.fs-15x {
  font-size: 40px; }

.opacity-1 {
  opacity: 0.1; }

.opacity-2 {
  opacity: 0.2; }

.opacity-3 {
  opacity: 0.3; }

.opacity-4 {
  opacity: 0.4; }

.opacity-5 {
  opacity: 0.5; }

.opacity-6 {
  opacity: 0.6; }

.opacity-7 {
  opacity: 0.7; }

.opacity-8 {
  opacity: 0.8; }

.opacity-9 {
  opacity: 0.9; }

.opacity-10 {
  opacity: 1; }

.box-glow {
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }

.separator-with-text {
  display: flex;
  align-items: center; }
  .separator-with-text:before, .separator-with-text:after {
    flex: 1;
    width: 100%;
    content: "";
    display: inline-block;
    border-bottom: 1px solid #fafafa; }
  .separator-with-text:before {
    margin-right: 20px; }
  .separator-with-text:after {
    margin-left: 20px; }

.row-7 {
  margin-left: -7px;
  margin-right: -7px; }
  .row-7 > div[class^='col-'] {
    padding-left: 7px;
    padding-right: 7px; }

@media only screen and (max-width: 767.98px) {
  .mobile-no-bg {
    background: none !important; } }

.text-underline {
  text-decoration: underline !important; }

.txt-black {
  color: #000 !important; }

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; }

section {
  overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600 !important; }

.main {
  background: white;
  position: relative;
  margin-top: 86vh; }
  @media only screen and (max-width: 991.98px) {
    .main {
      margin-top: 0; } }

.social-icon {
  list-style: none; }
  .social-icon li {
    display: inline-block; }
    .social-icon li:not(:last-child) {
      margin-right: 20px; }
    .social-icon li a {
      font-size: 22px;
      text-align: center; }
      .social-icon li a i {
        color: rgba(255, 255, 255, 0.5); }
      .social-icon li a:hover i.fa-twitter {
        color: #1da1f2; }
      .social-icon li a:hover i.fa-facebook, .social-icon li a:hover i.fa-facebook-f {
        color: #3b5998; }
      .social-icon li a:hover i.fa-linkedin {
        color: #0077b5; }
      .social-icon li a:hover i.fa-youtube-play {
        color: #cd201f; }

.hover-sink-away {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.hover-sink-away:hover,
.hover-sink-away:focus,
.hover-sink-away:active {
  -webkit-animation-name: anim-sink-away;
  animation-name: anim-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite; }

.dot:before {
  content: '\2022'; }

i[class*="h-icon-"] {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0; }

.btn:hover, .btn:focus {
  outline: none; }

.btn-load-more {
  display: block;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 5px solid #f9f9f978;
  color: #f1f1f1;
  padding: 10px 50px;
  background-color: #ffcb08;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase; }
  .btn-load-more:focus {
    outline: unset;
    box-shadow: unset;
    color: #f1f1f1; }

body {
  overflow-anchor: none; }

.main-header .navbar img {
  width: 220px; }
  @media only screen and (max-width: 991.98px) {
    .main-header .navbar img {
      max-width: 180px; } }
.main-header .navbar .main-nav a.nav-link {
  font-size: 20px;
  font-weight: 600; }
@media only screen and (max-width: 991.98px) {
  .main-header .navbar {
    padding-left: 0;
    padding-right: 0; } }

.main-header {
  background-color: #fff;
  position: relative;
  width: 100%;
  min-height: 81px;
  z-index: 999; }
  .main-header .main-nav {
    z-index: 1234;
    padding: 16px 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
    .main-header .main-nav.sticky {
      background-color: #fff;
      padding: 0; }
    .main-header .main-nav .nav-item {
      margin-right: 45px; }
      .main-header .main-nav .nav-item .nav-link {
        font-weight: 700;
        font-size: 20px;
        color: #000000;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif; }
        .main-header .main-nav .nav-item .nav-link.active {
          color: #000000; }
      .main-header .main-nav .nav-item:last-child {
        margin: 0; }

.sticky {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 10px -10px rgba(0, 0, 0, 0.7);
  padding: 6px 0; }
  .sticky .navbar img {
    width: 200px;
    padding: 12px 0; }
  .sticky .mobile-collapse {
    display: none !important; }
  .sticky .navbar.navbar-expand-lg {
    padding: 0; }
  .sticky .navbar-toggler {
    margin: auto 0 !important; }
  .sticky .navbar-expand-lg .navbar-collapse.desktop-collapse {
    top: 58px; }
    .sticky .navbar-expand-lg .navbar-collapse.desktop-collapse:after {
      top: -55px; }

.overflow-hidden .sticky {
  padding-right: 17px; }

.slideDown {
  animation: slideDown 0.5s linear 0s;
  -webkit-animation: slideDown 0.5s linear 0s;
  -moz-animation: slideDown 0.5s linear 0s; }

.fadeOut {
  animation: fadeOut 0.1s linear 0s;
  -webkit-animation: fadeOut 0.1s linear 0s;
  -moz-animation: fadeOut 0.1s linear 0s; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes slideDown {
  0% {
    transform: translateY(-40%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-40%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
@-moz-keyframes slideDown {
  0% {
    transform: translateY(-40%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
.hero-section .inner-wrapper {
  position: relative;
  height: 250px; }
  .hero-section .inner-wrapper .hero-title {
    position: absolute;
    bottom: -90px;
    left: 4%;
    color: #fff;
    z-index: 0;
    font-size: 90px; }
    .hero-section .inner-wrapper .hero-title span {
      color: #f2c02d; }
  @media only screen and (max-width: 991.98px) {
    .hero-section .inner-wrapper {
      display: none; } }
.hero-section, .hero-section video {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; }
.hero-section video {
  background: rgba(255, 206, 26, 0.8);
  object-fit: cover; }
  @media only screen and (max-width: 991.98px) {
    .hero-section video {
      display: none; } }
.hero-section:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 206, 26, 0.4);
  z-index: 0; }
@media only screen and (max-width: 991.98px) {
  .hero-section {
    width: 100%;
    position: relative;
    height: auto;
    z-index: 0; }
    .hero-section:before {
      display: none; } }

.inner-wrapper, .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .inner-wrapper, .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .inner-wrapper, .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .inner-wrapper, .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .inner-wrapper, .container {
      max-width: 1366px; } }

.section-title {
  padding: 30px 0;
  position: relative;
  /*
  &:before{
    content: "";
    width: 100px;
    height: 8px;
    background-color: #ffcb08;
    position: absolute;
    top: 0;
    right: 15px;
    border-radius: 5px;
  }
  */ }
  .section-title h1 {
    color: #FFCB08;
    font-size: 52px;
    font-weight: 700; }
    @media only screen and (max-width: 991.98px) {
      .section-title h1 {
        font-size: 30px; } }
  .section-title p {
    color: #062641;
    font-size: 25px; }

.description-section {
  padding: 120px 0;
  background-image: url("../images/bg-logo-mark.png");
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: 400px;
  background-position: 50% 50%; }
  @media only screen and (max-width: 991.98px) {
    .description-section {
      background-image: none;
      padding-top: 80px; } }
  .description-section .inner-content {
    padding: 30px 0;
    position: relative;
    z-index: 0; }
    .description-section .inner-content h2 {
      font-size: 36pt;
      font-weight: 700;
      margin-top: 1.6em;
      color: #f8cc46; }
      @media only screen and (max-width: 991.98px) {
        .description-section .inner-content h2 {
          font-size: 36px; } }
    .description-section .inner-content p {
      font-size: 24pt;
      font-weight: 400;
      line-height: 1.2em; }

.change-purpose {
  padding-top: 0; }
  .change-purpose .message h2 {
    color: #ffcb08;
    font-size: 50px; }
    @media only screen and (max-width: 991.98px) {
      .change-purpose .message h2 {
        font-size: 18px; } }

.valueprop-primary {
  padding: 0; }
  .valueprop-primary p {
    font-size: 1.6em; }
    .valueprop-primary p strong {
      font-weight: 700; }

.valueprop-secondary {
  padding: 180px 0;
  background-image: url("../images/bg-section-agency.jpg"); }
  .valueprop-secondary .section-title:before {
    background-color: #fff; }
  .valueprop-secondary .section-title h1 {
    color: #fff; }
  .valueprop-secondary p {
    font-size: 1.6em; }

.our-team-section {
  padding-top: 80px; }
  .our-team-section .our-team-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
    @media only screen and (max-width: 991.98px) {
      .our-team-section .our-team-block {
        flex-direction: column; } }
    .our-team-section .our-team-block .team-member {
      flex: 1 1 auto;
      padding: 10px 20px;
      width: 33.33%;
      margin-bottom: 20px;
      position: relative; }
      @media only screen and (max-width: 991.98px) {
        .our-team-section .our-team-block .team-member {
          width: 100%;
          padding: 0; } }
      .our-team-section .our-team-block .team-member .team-member-img {
        max-width: 320px;
        margin: 0 auto;
        position: relative;
        cursor: pointer;
        margin-bottom: 30px; }
        .our-team-section .our-team-block .team-member .team-member-img:before {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          border: 5px solid #fff;
          border-top-color: #ffcb08;
          border-left-color: #ffcb08;
          transform: rotate(0deg);
          border-radius: 50%; }
        .our-team-section .our-team-block .team-member .team-member-img img {
          border: 10px solid #fff;
          border-radius: 50%;
          height: 320px;
          width: 320px; }
          @media only screen and (max-width: 1199.98px) {
            .our-team-section .our-team-block .team-member .team-member-img img {
              height: auto; } }
        .our-team-section .our-team-block .team-member .team-member-img .text-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          width: 100%;
          height: 100%;
          padding: 50px;
          opacity: 0;
          background-color: rgba(255, 203, 8, 0.85);
          transition: all 0.5s ease;
          border-radius: 50%; }
          .our-team-section .our-team-block .team-member .team-member-img .text-overlay p {
            text-align: center;
            position: relative;
            top: 90px;
            font-weight: 700;
            margin: 0;
            font-size: 1.4em; }
        .our-team-section .our-team-block .team-member .team-member-img:hover .text-overlay {
          opacity: 1; }
      .our-team-section .our-team-block .team-member .name, .our-team-section .our-team-block .team-member .designation {
        text-transform: uppercase;
        text-align: center; }
      .our-team-section .our-team-block .team-member:nth-child(1) .team-member-img:before {
        transform: rotate(315deg); }
      .our-team-section .our-team-block .team-member:nth-child(2) .team-member-img:before {
        transform: rotate(6deg); }
      .our-team-section .our-team-block .team-member:nth-child(3) .team-member-img:before {
        transform: rotate(174deg); }
      .our-team-section .our-team-block .team-member:nth-child(4) .team-member-img:before {
        transform: rotate(250deg); }
      .our-team-section .our-team-block .team-member:nth-child(4) .team-member-img:before {
        transform: rotate(315deg); }
      .our-team-section .our-team-block .team-member:nth-child(5) .team-member-img:before {
        transform: rotate(6deg); }
      .our-team-section .our-team-block .team-member:nth-child(6) .team-member-img:before {
        transform: rotate(174deg); }
      .our-team-section .our-team-block .team-member:nth-child(7) .team-member-img:before {
        transform: rotate(250deg); }
      .our-team-section .our-team-block .team-member:nth-child(8) .team-member-img:before {
        transform: rotate(315deg); }
      .our-team-section .our-team-block .team-member:nth-child(9) .team-member-img:before {
        transform: rotate(6deg); }
      .our-team-section .our-team-block .team-member:nth-child(10) .team-member-img:before {
        transform: rotate(174deg); }
      .our-team-section .our-team-block .team-member:nth-child(11) .team-member-img:before {
        transform: rotate(250deg); }
      .our-team-section .our-team-block .team-member:nth-child(12) .team-member-img:before {
        transform: rotate(315deg); }
      .our-team-section .our-team-block .team-member:nth-child(13) .team-member-img:before {
        transform: rotate(6deg); }
      .our-team-section .our-team-block .team-member:nth-child(14) .team-member-img:before {
        transform: rotate(174deg); }
      .our-team-section .our-team-block .team-member:nth-child(15) .team-member-img:before {
        transform: rotate(250deg); }
      .our-team-section .our-team-block .team-member:nth-child(16) .team-member-img:before {
        transform: rotate(315deg); }
      .our-team-section .our-team-block .team-member:nth-child(17) .team-member-img:before {
        transform: rotate(6deg); }
      .our-team-section .our-team-block .team-member:nth-child(18) .team-member-img:before {
        transform: rotate(174deg); }
  @media only screen and (max-width: 991.98px) {
    .our-team-section {
      padding: 80px 0; } }

@media only screen and (max-width: 991.98px) {
  .dn-on-mob {
    display: none; } }

.btn-load-more {
  display: none; }
  @media only screen and (max-width: 991.98px) {
    .btn-load-more {
      display: block; } }

.best-awards-section {
  padding: 60px 0 90px;
  margin-top: 58px;
  background-color: #FFCB08; }
  .best-awards-section .title {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    padding-left: 30px; }
    @media only screen and (max-width: 991.98px) {
      .best-awards-section .title {
        padding-top: 30px; } }
    .best-awards-section .title:before {
      content: '';
      width: 20px;
      height: 122px;
      position: absolute;
      border-left: 5px dotted black;
      left: 0;
      top: -12px; }
      @media only screen and (max-width: 991.98px) {
        .best-awards-section .title:before {
          width: 100%;
          height: 3px;
          border-top: 5px dotted black;
          top: 0; } }
  .best-awards-section .message {
    color: #fff; }
    .best-awards-section .message h2 {
      font-size: 48px;
      font-weight: 500; }
      @media only screen and (max-width: 991.98px) {
        .best-awards-section .message h2 {
          font-size: 26px; } }
      .best-awards-section .message h2 span {
        font-weight: 400;
        font-size: 1.6rem;
        color: #444; }
  .best-awards-section .service-box-slider {
    padding-top: 30px; }
    .best-awards-section .service-box-slider .slick-dots li button {
      background-color: #ffcb08;
      border-radius: 50%;
      border: 2px solid transparent; }
      .best-awards-section .service-box-slider .slick-dots li button:before {
        font-size: 1.25rem;
        color: #fff;
        opacity: 1;
        display: flex;
        justify-content: center;
        align-items: center; }
    .best-awards-section .service-box-slider .slick-dots li.slick-active button {
      border-color: #000; }
    .best-awards-section .service-box-slider .slick-active button:before {
      opacity: 0 !important;
      color: #fff !important; }
  .best-awards-section .service-box {
    text-align: center; }
    .best-awards-section .service-box .circle-img {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 24px; }
      .best-awards-section .service-box .circle-img img {
        max-width: 240px; }
    .best-awards-section .service-box h6 {
      font-size: 1.2em;
      line-height: 1.2em; }
  @media only screen and (max-width: 991.98px) {
    .best-awards-section .award-logo-img {
      text-align: center; } }

.our-client-section {
  padding: 80px 0; }
  .our-client-section .img-boxes {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; }
    .our-client-section .img-boxes .img-box-item {
      height: 118%;
      width: 100%;
      width: 23.3%;
      margin: 10px;
      position: relative;
      overflow: hidden; }
      @media only screen and (max-width: 991.98px) {
        .our-client-section .img-boxes .img-box-item {
          width: 100%; } }
      .our-client-section .img-boxes .img-box-item .bg-img {
        height: 190px;
        overflow: hidden;
        text-align: center; }
        .our-client-section .img-boxes .img-box-item .bg-img img {
          max-height: 100%;
          min-width: 100%;
          height: 100%;
          width: auto; }
          @media only screen and (max-width: 991.98px) {
            .our-client-section .img-boxes .img-box-item .bg-img img {
              height: auto; } }
        @media only screen and (max-width: 991.98px) {
          .our-client-section .img-boxes .img-box-item .bg-img {
            height: auto;
            min-height: 186px; } }
      .our-client-section .img-boxes .img-box-item .text-hover {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        padding: 10px;
        width: 100%;
        background-color: #FFCB08;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(100%); }
        .our-client-section .img-boxes .img-box-item .text-hover h6 {
          color: #fff;
          font-size: 18px;
          margin-top: 12px; }
        .our-client-section .img-boxes .img-box-item .text-hover p {
          font-size: 12px;
          line-height: 1.2em;
          font-weight: 400; }
          @media only screen and (max-width: 991.98px) {
            .our-client-section .img-boxes .img-box-item .text-hover p {
              font-size: 12px; } }
      .our-client-section .img-boxes .img-box-item:hover .text-hover {
        transform: translateY(0%);
        opacity: 1; }
      .our-client-section .img-boxes .img-box-item a {
        text-decoration: none;
        color: #000000; }
      @media only screen and (max-width: 991.98px) {
        .our-client-section .img-boxes .img-box-item.dn-on-mob {
          display: none; } }
  @media only screen and (max-width: 991.98px) {
    .our-client-section .inner-wrapper .container {
      padding: 0; } }
  @media only screen and (max-width: 991.98px) {
    .our-client-section {
      padding-bottom: 50px; } }

.client-about-us {
  padding: 60px 0;
  text-align: center;
  overflow: hidden; }
  .client-about-us h2 {
    font-size: 26pt;
    color: #ffcb08;
    font-weight: 600; }
  .client-about-us .client-review {
    padding-top: 30px; }
    .client-about-us .client-review p.client-quote {
      color: #062641;
      font-size: 20pt;
      line-height: 1.4em;
      margin-bottom: 30px;
      letter-spacing: 2px;
      font-style: italic;
      font-weight: 300; }
      @media only screen and (max-width: 991.98px) {
        .client-about-us .client-review p.client-quote {
          font-size: 18px; } }
    .client-about-us .client-review p.client-name {
      color: #062641;
      font-size: 16pt;
      margin-bottom: 30px;
      letter-spacing: 2px; }
      @media only screen and (max-width: 991.98px) {
        .client-about-us .client-review p.client-name {
          font-size: 18px; } }
    .client-about-us .client-review .slick-dots li button {
      background-color: #ffcb08;
      border-radius: 50%; }
      .client-about-us .client-review .slick-dots li button:before {
        font-size: 1.25rem;
        color: #fff;
        opacity: 1;
        display: flex;
        justify-content: center;
        align-items: center; }
    .client-about-us .client-review .slick-active button:before {
      opacity: 0 !important;
      color: #fff !important; }

.contact-us-section {
  padding: 70px 0;
  background-color: #FFCB08;
  text-align: center; }
  .contact-us-section .icon-img {
    max-width: 280px;
    margin: 0 auto; }
  .contact-us-section h2 {
    color: #fff;
    font-size: 48pt;
    font-weight: 600;
    margin-bottom: 0; }
  .contact-us-section p {
    font-size: 22px; }
  .contact-us-section .btn-contact-us {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: 12px solid #fce29b;
    color: #fff;
    padding: 12px 160px;
    background-color: transparent;
    font-size: 30pt;
    font-weight: 600;
    text-transform: uppercase; }
    .contact-us-section .btn-contact-us:focus, .contact-us-section .btn-contact-us:active {
      outline: 0;
      box-shadow: unset; }
    @media only screen and (max-width: 991.98px) {
      .contact-us-section .btn-contact-us {
        font-size: 24px;
        padding: 10px 56px; } }

.footer {
  padding: 80px 0;
  background-color: #062641;
  color: #b0afad;
  position: relative; }
  .footer a {
    color: #b0afad; }
  .footer .nav-links {
    padding: 0; }
    .footer .nav-links li {
      list-style: none;
      margin-right: 30px;
      display: inline-block; }
      @media only screen and (max-width: 991.98px) {
        .footer .nav-links li {
          margin-right: 12px; } }
      .footer .nav-links li a {
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none; }
  .footer .social-links {
    padding: 0;
    padding-top: 20px;
    border-top: 1px solid #939598; }
    .footer .social-links li {
      list-style: none;
      margin-right: 20px;
      display: inline-block;
      background-color: #939598;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      text-align: center; }
      .footer .social-links li a {
        color: #fff;
        font-size: 18px;
        line-height: 40px;
        text-decoration: none;
        transition: all 0.5s ease; }
      .footer .social-links li:hover a {
        color: #062641; }

.modal .modal-dialog .modal-content {
  border: 22px solid #FFF;
  border-radius: 4px; }

body.modal-open {
  padding-right: 0px !important;
}

.contact-us-form {
  padding: 20px;
  border-radius: 5px; }
  .contact-us-form input.form-control {
    border: none;
    border-top: 1px solid #FFCB08;
    background-color: transparent;
    border-radius: 0;
    color: #062641; }
    .contact-us-form input.form-control:focus, .contact-us-form input.form-control:active {
      outline: none;
      box-shadow: unset; }
    .contact-us-form input.form-control::-webkit-input-placeholder {
      color: #062641; }
  .contact-us-form textarea.form-control {
    border: 1px solid #FFCB08;
    background-color: transparent;
    border-radius: 0;
    color: #062641; }
    .contact-us-form textarea.form-control:focus, .contact-us-form textarea.form-control:active {
      outline: none;
      box-shadow: unset; }
  .contact-us-form .form-group {
    margin-bottom: 1.5rem; }
  .contact-us-form .btn-submit {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: none;
    color: #fff;
    background-color: #FFCB08;
    padding: 10px 50px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase; }
    .contact-us-form .btn-submit:focus, .contact-us-form .btn-submit:active {
      outline: 0;
      box-shadow: unset; }
    .contact-us-form .btn-submit:hover {
      background-color: #FFCB08;
      color: #fff; }
    @media only screen and (max-width: 991.98px) {
      .contact-us-form .btn-submit {
        padding: 10px 35px; } }
  .contact-us-form .contact-form-logo {
    max-width: 50px; }

.our-service-section .service-list .list-item {
  position: relative; }
  .our-service-section .service-list .list-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8; }
    @media only screen and (max-width: 991.98px) {
      .our-service-section .service-list .list-item:before {
        background: #07233dc4;
        opacity: 1;
        transition: background .55s; } }
  .our-service-section .service-list .list-item .service-title {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 55px; }
    .our-service-section .service-list .list-item .service-title h3 {
      font-size: 30px;
      line-height: 36px;
      color: #fff;
      text-transform: uppercase;
      opacity: 1;
      letter-spacing: 4px;
      transition: all 0.1s ease;
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
      transform: translateY(0px); }
      @media only screen and (max-width: 991.98px) {
        .our-service-section .service-list .list-item .service-title h3 {
          opacity: 0; } }
  .our-service-section .service-list .list-item .overlay-text {
    position: absolute;
    top: 16%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 30px 60px 60px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .55s,visibility .55s;
    transition: opacity .55s,visibility .55s; }
    @media only screen and (max-width: 991.98px) {
      .our-service-section .service-list .list-item .overlay-text {
        opacity: 1;
        visibility: visible; } }
    .our-service-section .service-list .list-item .overlay-text h3 {
      width: 100%;
      text-align: left;
      font-size: 30px;
      line-height: 36px;
      letter-spacing: 4px;
      margin-bottom: 34px;
      padding-right: 22px; }
    .our-service-section .service-list .list-item .overlay-text p {
      margin-bottom: 30px;
      font-size: 18px;
      font-weight: 400; }
    .our-service-section .service-list .list-item .overlay-text ul {
      padding: 0;
      margin: 0; }
      .our-service-section .service-list .list-item .overlay-text ul li {
        font-size: 18px;
        font-weight: 700;
        padding-left: 24px;
        margin-bottom: 10px;
        position: relative;
        list-style: none; }
        .our-service-section .service-list .list-item .overlay-text ul li:before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          width: 5px;
          height: 5px;
          background: #ffd100;
          display: block;
          margin-top: -2px; }
        .our-service-section .service-list .list-item .overlay-text ul li:last-child {
          margin-bottom: 0; }
    .our-service-section .service-list .list-item .overlay-text .link {
      text-transform: uppercase;
      display: inline-block;
      vertical-align: top;
      position: absolute;
      overflow: hidden;
      text-decoration: none;
      font-size: 18px;
      color: #ffd100;
      padding-bottom: 6px;
      bottom: 70px;
      left: 60px; }
      .our-service-section .service-list .list-item .overlay-text .link:before {
        content: '';
        width: 100%;
        height: 2px;
        background-color: #ffd100;
        bottom: 0;
        position: absolute; }
    @media only screen and (max-width: 991.98px) {
      .our-service-section .service-list .list-item .overlay-text {
        top: 18%;
        padding: 30px 15px; } }
  .our-service-section .service-list .list-item .list-item-img {
    height: 689px; }
    .our-service-section .service-list .list-item .list-item-img img {
      display: block;
      max-width: 100%;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center; }
.our-service-section .slick-list {
  padding: 0 16% 0 0; }
  @media only screen and (max-width: 991.98px) {
    .our-service-section .slick-list {
      padding: 0; } }
.our-service-section .slick-slide:hover .list-item:before {
  background: #07233dc4;
  opacity: 1;
  transition: background .55s; }
.our-service-section .slick-slide:hover .overlay-text {
  opacity: 1;
  visibility: visible; }
.our-service-section .slick-slide:hover .service-title h3 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px); }
.our-service-section .slick-prev {
  display: none; }
.our-service-section .slick-next {
  right: 11%;
  bottom: -3%;
  top: auto;
  width: 70px;
  height: 78px; }
  .our-service-section .slick-next:before {
    font-size: 50px;
    transition: all 0.3s ease;
    color: #ffcb08; }
  .our-service-section .slick-next:hover:before {
    font-size: 70px; }
    @media only screen and (max-width: 991.98px) {
      .our-service-section .slick-next:hover:before {
        font-size: 50px; } }

.mobile-view {
  position: relative;
  display: none; }
  .mobile-view .video-box {
    position: relative; }
    .mobile-view .video-box .overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      padding: 20px;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
      .mobile-view .video-box .overlay.btn-center {
        justify-content: center;
        align-items: center; }
    .mobile-view .video-box a {
      max-width: 80px; }
  @media only screen and (max-width: 991.98px) {
    .mobile-view {
      display: block; } }

.best-boutique-section {
  padding: 60px 0; }
  .best-boutique-section .best-boutique-item h1 {
    font-size: 30pt;
    line-height: 60px;
    margin: 30px 0 20px 0; }
    @media only screen and (max-width: 991.98px) {
      .best-boutique-section .best-boutique-item h1 {
        font-size: 36px;
        margin-top: 10px;
        line-height: 40px; } }
  .best-boutique-section .best-boutique-item .item-img {
    max-width: 130px; }
    @media only screen and (max-width: 991.98px) {
      .best-boutique-section .best-boutique-item .item-img {
        margin: 0 auto; } }
  .best-boutique-section h1 {
    font-size: 56px;
    line-height: 2em;
    font-weight: 300 !important;
    color: #f8cc46; }
    @media only screen and (max-width: 991.98px) {
      .best-boutique-section h1 {
        font-size: 38px; } }
  .best-boutique-section p {
    font-size: 24px; }

.aim-section {
  padding: 130px 0;
  background-image: url("../images/walk-bg-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center; }
  @media only screen and (max-width: 991.98px) {
    .aim-section {
      background-attachment: scroll; } }
  .aim-section h1 {
    font-size: 38px;
    color: #f8cc46;
    margin: 20px 0; }
  .aim-section p {
    color: #fff;
    font-size: 24px;
    line-height: 38px; }
  .aim-section img {
    max-width: 115px;
    height: 115px;
    margin: 0 auto; }
  .aim-section .aim-slider-mobile .slick-dots li button {
    background-color: #fff;
    border-radius: 50%;
    color: #fff;
    border: 2px solid transparent; }
    .aim-section .aim-slider-mobile .slick-dots li button:before {
      color: #fff; }
  .aim-section .aim-slider-mobile .slick-dots li.slick-active button {
    background-color: #f8cc46;
    border-color: #000; }
    .aim-section .aim-slider-mobile .slick-dots li.slick-active button:before {
      color: #f8cc46; }

.member-detail-section {
  padding: 80px 0;
  background-color: #f7f7f5; }
  .member-detail-section .team-member-img {
    max-width: 100%;
    min-height: 400px;
    margin: 0 auto;
    position: relative; }
    @media only screen and (max-width: 991.98px) {
      .member-detail-section .team-member-img {
        height: 260px;
        width: 260px;
        max-width: unset;
        min-height: unset;
        overflow: hidden; } }
    .member-detail-section .team-member-img:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      border: 6px solid #f7f7f5;
      border-top-color: #ffcb08;
      border-left-color: #ffcb08;
      transform: rotate(315deg);
      border-radius: 50%; }
    .member-detail-section .team-member-img img {
      border: 14px solid #f7f7f5;
      border-radius: 50%;
      height: 100%;
      min-height: 425px;
      width: 100%;
      object-fit: cover;
      object-position: center; }
      @media only screen and (max-width: 991.98px) {
        .member-detail-section .team-member-img img {
          height: 260px;
          min-height: unset; } }
  .member-detail-section .member-description {
    transition: all 1s ease;
    padding-left: 40px; }
    @media only screen and (max-width: 991.98px) {
      .member-detail-section .member-description {
        padding-left: 0; } }
    .member-detail-section .member-description h1 {
      font-size: 48px;
      line-height: 70px; }
      @media only screen and (max-width: 991.98px) {
        .member-detail-section .member-description h1 {
          font-size: 32px;
          line-height: 36px; } }
    .member-detail-section .member-description h4 {
      font-size: 30px;
      font-weight: 500 !important; }
      @media only screen and (max-width: 991.98px) {
        .member-detail-section .member-description h4 {
          font-size: 22px; } }
    .member-detail-section .member-description p {
      font-size: 20px;
      max-width: 760px; }
      @media only screen and (max-width: 991.98px) {
        .member-detail-section .member-description p {
          font-size: 20px; } }
    .member-detail-section .member-description a {
      text-decoration: none;
      color: #000000;
      text-transform: uppercase;
      font-weight: 400; }
    .member-detail-section .member-description.slide-up .read-more-btn {
      display: none; }

/*# sourceMappingURL=main.css.map */
