/* FONTS
 ========================================================================== */
@font-face {
  font-family: "Nunito";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Nunito-Bold.woff") format('woff'), url("../fonts/Nunito-Bold.woff2") format('woff2');
}
@font-face {
  font-family: "Nunito";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Nunito-Medium.woff") format('woff'), url("../fonts/Nunito-Medium.woff2") format('woff2');
}
@font-face {
  font-family: "Nunito";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Nunito-Regular.woff") format('woff'), url("../fonts/Nunito-Regular.woff2") format('woff2');
}
@font-face {
  font-family: "Nunito";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Nunito-SemiBold.woff") format('woff'), url("../fonts/Nunito-SemiBold.woff2") format('woff2');
}
@font-face {
  font-family: "Lora";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Lora-Bold.woff") format('woff'), url("../fonts/Lora-Bold.woff2") format('woff2');
}
@font-face {
  font-family: "Lora";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Lora-SemiBold.woff") format('woff'), url("../fonts/Lora-SemiBold.woff2") format('woff2');
}
@font-face {
  font-family: "Lora";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Lora-Medium.woff") format('woff'), url("../fonts/Lora-Medium.woff2") format('woff2');
}
@font-face {
  font-family: "Lora";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Lora-Regular.woff") format('woff'), url("../fonts/Lora-Regular.woff2") format('woff2');
}
@font-face {
  font-family: "Lora";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Lora-Italic.woff") format('woff'), url("../fonts/Lora-Italic.woff2") format('woff2');
}
/* MAIN  FILES
 ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  color: #333;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-weight: 400;
  height: auto;
  min-height: 100vh;
  font-size: 1.25rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
body ::-moz-selection {
  background: #ab837f;
  color: #fff;
}
body ::selection {
  background: #ab837f;
  color: #fff;
}
#wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
mark {
  background: none;
}
/* ==========================================================================
 FORMS & TABLE & NAVIGATION
 ========================================================================== */
input, textarea, select {
  outline: 0 none;
  padding: 0 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
input[type='text'], input[type='number'], input[type='email'], input[type='password'], input[type='search'], input[type='tel'], textarea {
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #222;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 40px;
  padding: 0 5px 0 10px;
  width: 100%;
}
input[type='text']::-webkit-input-placeholder, input[type='number']::-webkit-input-placeholder, input[type='email']::-webkit-input-placeholder, input[type='password']::-webkit-input-placeholder, input[type='search']::-webkit-input-placeholder, input[type='tel']::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #4c4c4c;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type='text']::-moz-placeholder, input[type='number']::-moz-placeholder, input[type='email']::-moz-placeholder, input[type='password']::-moz-placeholder, input[type='search']::-moz-placeholder, input[type='tel']::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #4c4c4c;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type='text']:-ms-input-placeholder, input[type='number']:-ms-input-placeholder, input[type='email']:-ms-input-placeholder, input[type='password']:-ms-input-placeholder, input[type='search']:-ms-input-placeholder, input[type='tel']:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #4c4c4c;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-size: 16px;
  opacity: 1;
}
input[type='text']:focus, input[type='number']:focus, input[type='email']:focus, input[type='password']:focus, input[type='search']:focus, input[type='tel']:focus, textarea:focus {
  border-color: #ab837f;
}
textarea {
  resize: none;
  height: 100px;
  padding: 10px;
}
button[disabled], html input[disabled] {
  cursor: default;
}
input[type='search'], input[type='search']::-webkit-search-decoration, input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none !important;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type='number'] {
  -moz-appearance: textfield;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
}
ul {
  list-style: none;
}
ol {
  list-style: decimal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ==========================================================================
 TYPOGRAPHY
 ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Lora';
}
h1 {
  font-size: 60px;
  line-height: 68px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 54px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
h2 {
  font-size: 48px;
  line-height: 3rem;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
h3 {
  font-size: 32px;
  line-height: 42px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 26px;
    line-height: 36px;
  }
}
h4 {
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 18px;
  }
}
h5 {
  font-size: 18px;
  line-height: 24px;
}
p {
  font-size: 20px;
  padding-bottom: 20px;
  line-height: 1.6rem;
}
@media (max-width: 768px) {
  p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  p {
    font-size: 16px;
  }
}
a {
  color: #ab837f;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  outline: 0;
  text-decoration: underline;
}
img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
strong, b {
  font-weight: 700;
}
i {
  font-style: normal;
}
@media screen and (min-width: 1140px) {
  ::-webkit-scrollbar {
    width: 7px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #ccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #ab837f;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #e68a00;
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex.h_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.flex.v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex.vh-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
[class*='col-'] {
  width: 100%;
}
.col-1 {
  -webkit-flex-basis: 5.5833333333%;
  -moz-flex-basis: 5.5833333333%;
  -ms-flex-basis: 5.5833333333%;
  flex-basis: 5.5833333333%;
}
.col-2 {
  -webkit-flex-basis: 14.1666666667%;
  -moz-flex-basis: 14.1666666667%;
  -ms-flex-basis: 14.1666666667%;
  flex-basis: 14.1666666667%;
}
.col-3 {
  -webkit-flex-basis: 22.75%;
  -moz-flex-basis: 22.75%;
  -ms-flex-basis: 22.75%;
  flex-basis: 22.75%;
}
.col-4 {
  -webkit-flex-basis: 31.3333333333%;
  -moz-flex-basis: 31.3333333333%;
  -ms-flex-basis: 31.3333333333%;
  flex-basis: 31.3333333333%;
}
.col-5 {
  -webkit-flex-basis: 39.9166666667%;
  -moz-flex-basis: 39.9166666667%;
  -ms-flex-basis: 39.9166666667%;
  flex-basis: 39.9166666667%;
}
.col-6 {
  -webkit-flex-basis: 48.5%;
  -moz-flex-basis: 48.5%;
  -ms-flex-basis: 48.5%;
  flex-basis: 48.5%;
}
.col-7 {
  -webkit-flex-basis: 57.0833333333%;
  -moz-flex-basis: 57.0833333333%;
  -ms-flex-basis: 57.0833333333%;
  flex-basis: 57.0833333333%;
}
.col-8 {
  -webkit-flex-basis: 65.6666666667%;
  -moz-flex-basis: 65.6666666667%;
  -ms-flex-basis: 65.6666666667%;
  flex-basis: 65.6666666667%;
}
.col-9 {
  -webkit-flex-basis: 74.25%;
  -moz-flex-basis: 74.25%;
  -ms-flex-basis: 74.25%;
  flex-basis: 74.25%;
}
.col-10 {
  -webkit-flex-basis: 82.8333333333%;
  -moz-flex-basis: 82.8333333333%;
  -ms-flex-basis: 82.8333333333%;
  flex-basis: 82.8333333333%;
}
.col-11 {
  -webkit-flex-basis: 91.4166666667%;
  -moz-flex-basis: 91.4166666667%;
  -ms-flex-basis: 91.4166666667%;
  flex-basis: 91.4166666667%;
}
.col-12 {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}
.col-50 {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}
@media (max-width: 960px) {
  .md-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .md-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .md-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .md-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .md-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .md-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .md-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .md-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .md-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .md-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .md-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .md-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .md-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sm-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .sm-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .sm-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .sm-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .sm-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .sm-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .sm-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .sm-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .sm-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .sm-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .sm-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .sm-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .sm-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .xs-1 {
    -webkit-flex-basis: 5.5833333333%;
    -moz-flex-basis: 5.5833333333%;
    -ms-flex-basis: 5.5833333333%;
    flex-basis: 5.5833333333%;
  }
  .xs-2 {
    -webkit-flex-basis: 14.1666666667%;
    -moz-flex-basis: 14.1666666667%;
    -ms-flex-basis: 14.1666666667%;
    flex-basis: 14.1666666667%;
  }
  .xs-3 {
    -webkit-flex-basis: 22.75%;
    -moz-flex-basis: 22.75%;
    -ms-flex-basis: 22.75%;
    flex-basis: 22.75%;
  }
  .xs-4 {
    -webkit-flex-basis: 31.3333333333%;
    -moz-flex-basis: 31.3333333333%;
    -ms-flex-basis: 31.3333333333%;
    flex-basis: 31.3333333333%;
  }
  .xs-5 {
    -webkit-flex-basis: 39.9166666667%;
    -moz-flex-basis: 39.9166666667%;
    -ms-flex-basis: 39.9166666667%;
    flex-basis: 39.9166666667%;
  }
  .xs-6 {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-basis: 48.5%;
    flex-basis: 48.5%;
  }
  .xs-7 {
    -webkit-flex-basis: 57.0833333333%;
    -moz-flex-basis: 57.0833333333%;
    -ms-flex-basis: 57.0833333333%;
    flex-basis: 57.0833333333%;
  }
  .xs-8 {
    -webkit-flex-basis: 65.6666666667%;
    -moz-flex-basis: 65.6666666667%;
    -ms-flex-basis: 65.6666666667%;
    flex-basis: 65.6666666667%;
  }
  .xs-9 {
    -webkit-flex-basis: 74.25%;
    -moz-flex-basis: 74.25%;
    -ms-flex-basis: 74.25%;
    flex-basis: 74.25%;
  }
  .xs-10 {
    -webkit-flex-basis: 82.8333333333%;
    -moz-flex-basis: 82.8333333333%;
    -ms-flex-basis: 82.8333333333%;
    flex-basis: 82.8333333333%;
  }
  .xs-11 {
    -webkit-flex-basis: 91.4166666667%;
    -moz-flex-basis: 91.4166666667%;
    -ms-flex-basis: 91.4166666667%;
    flex-basis: 91.4166666667%;
  }
  .xs-12 {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .xs-bottom {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
 HELPERS
 ========================================================================== */
.wrap {
  margin: 0 auto;
  width: 1140px;
  max-width: 94%;
  position: relative;
}
.row1600 {
  margin: 0 auto;
  width: 1600px;
  max-width: 96%;
  position: relative;
}
.row1800 {
  margin: 0 auto;
  width: 1800px;
  max-width: 96%;
  position: relative;
}
.row800 {
  margin: 0 auto;
  width: 800px;
  max-width: 96%;
  position: relative;
}
#content {
  padding: 40px 0;
}
@media (max-width: 1140px) {
  #content {
    padding: 20px 0;
  }
}
#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;
  padding-top: 90px;
}
.c {
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
  overflow: hidden;
}
.cfx:after, .cfx:before {
  display: table;
  clear: both;
  content: " ";
}
.bg-center {
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.underline {
  position: relative;
  display: inline-block;
}
.underline:after {
  display: block;
  width: 0;
  height: 1px;
  margin: auto;
  content: "";
  transition: width 0.5s ease, background-color 0.5s ease;
  background: transparent;
}
.underline:hover:after {
  width: 100%;
  background: #ab837f;
}
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #0087ca;
}
.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.btn {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #ab837f;
  text-align: center;
  text-decoration: none !important;
  text-transform: capitalize;
  color: #fff;
  border: none;
  outline: 0;
  background: #ab837f;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn:hover {
  background: #ffa929;
}
.btn:active {
  background: #ffb84d;
}
.btn.white {
  background-color: #fff;
}
.btn.white span {
  color: #333;
}
.btn.white:hover {
  background-color: #263347;
}
.btn.white:hover span {
  color: #fff;
}
/* ==========================================================================
 WORDPRESS DEFAULT CLASSES
 ========================================================================== */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
.wp-caption {
  margin: 10px;
  padding-top: 4px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
/* ==========================================================================
 WYSIWYG
 ========================================================================== */
.wysiwyg h1 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.wysiwyg p {
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 20px;
  word-break: break-word;
}
.wysiwyg ul {
  margin-left: 30px;
  padding-bottom: 20px;
}
.wysiwyg ul li {
  line-height: 1.4;
}
/* ==========================================================================
 FULL FRAME
 ========================================================================== */
.fullframe {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
  z-index: 0;
}
.fullframe iframe, .fullframe object, .fullframe embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
/* ==========================================================================
 CONTACT FORM 7
 ========================================================================== */
.wpcf7 {
  width: 100%;
}
.wpcf7 .screen-reader-response {
  display: none;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  display: block;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  display: block;
  background: #16a085;
}
.wpcf7 .wpcf7-not-valid-tip {
  font: 500 16px/1 'Nunito', Helvetica, Arial, sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ff5f5f;
  background: #eee;
}
.wpcf7 .wpcf7-response-output {
  display: none;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  padding: 15px 20px;
  cursor: pointer;
  text-align: center;
  color: white;
  background: #ff5f5f;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #1091ae;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #16a085;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block !important;
}
div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url(../img/ajax-loader.gif);
  width: 16px;
  height: 16px;
  border: none;
  margin: 0 0 0 4px;
  vertical-align: middle;
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
div.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}
/* ==========================================================================
 SOCIAL LINK
 ========================================================================== */
.s-link {
  font-size: 0;
  display: inline-block;
  width: auto;
  cursor: pointer;
  text-align: center;
}
.s-link a {
  width: 35px;
  height: 35px;
  margin-left: 12px;
  border-radius: 50%;
  background-color: #7c89a3;
  position: relative;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.s-link a:before {
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.s-link a:hover {
  background-color: #ab837f;
}
/* ==========================================================================
 index-style
 ========================================================================== */
.index-style .post-item {
  margin-bottom: 20px;
}
.index-style .post-title {
  font-size: 18px;
  display: block;
  padding-bottom: 15px;
}
.index-style .post-title:hover {
  color: #f1b820;
}
.index-style .post-thumbnail {
  min-height: 160px;
  will-change: opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.index-style .post-thumbnail:hover {
  opacity: 0.9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.wp-pagenavi {
  font-size: 0;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #ccc;
}
.wp-pagenavi a, .wp-pagenavi span {
  font-size: 14px;
  margin: 0 3px;
  padding: 3px 5px;
}
.wp-pagenavi a {
  border: 1px solid #ccc;
}
.wp-pagenavi .current, .wp-pagenavi a:hover {
  color: #fff;
  border-color: #ab837f;
  background: #ab837f;
}
.desctop_hide {
  display: none;
}
@media (max-width: 1140px) {
  /* resp_menu_active
   ========================================================================== */
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
  .burger {
    position: fixed;
    z-index: 101;
    top: 40px;
    right: 10px;
    margin-right: 10px;
    text-align: left;
  }
  .burger .burger-icon {
    display: inline-block;
    position: relative;
    margin-top: 6px;
    margin-bottom: 6px;
    user-select: none;
  }
  .burger .burger-icon, .burger .burger-icon::before, .burger .burger-icon::after {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ab837f;
    outline: 1px solid transparent;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .burger .burger-icon::before, .burger .burger-icon::after {
    position: absolute;
    content: "";
  }
  .burger .burger-icon::before {
    top: -6px;
  }
  .burger .burger-icon::after {
    top: 6px;
  }
  .burger.is-active {
    top: 13px;
  }
  .burger.is-active .burger-icon {
    background-color: transparent;
  }
  .burger.is-active .burger-icon::before {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.is-active .burger-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .burger.is-active .burger-icon::before, .burger.is-active .burger-icon::after {
    background: #fff;
  }
  .mobile_menu_container {
    font-size: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 80%;
    max-width: 480px;
    height: 100vh;
    padding: 5px;
    border-top: 40px solid #cc7a00;
    border-bottom: 3px solid #cc7a00;
    background: #ab837f;
    will-change: transform, opacity;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mobile_menu_container nav {
    margin-bottom: 40px;
  }
  .mobile_menu_container li {
    position: relative;
  }
  .mobile_menu_container a {
    z-index: 10;
    display: block;
  }
  .mobile_menu_container a:hover {
    text-decoration: none;
  }
  .mobile_menu_container .sub-anchor {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    width: 40px;
    height: 30px;
    cursor: pointer;
    background: #ffa31a;
  }
  .mobile_menu_container .sub-anchor:hover {
    background: #e68a00;
  }
  .mobile_menu_container .sub-anchor:before {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .mobile_menu_container .sub-menu {
    display: none;
  }
  .mobile_menu_container .sub-menu a {
    font-size: 13px;
    padding: 10px 30px;
    color: #fff;
  }
  .mobile_menu_container .sub-menu a:hover {
    background: #ffad33;
  }
  .mobile_menu_container .sub-menu .sub-menu {
    display: none;
    padding-left: 10px;
  }
  .mobile_menu_container .level_a > li {
    border-bottom: 1px solid #ffa31a;
  }
  .mobile_menu_container .level_a > li > a {
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    padding-left: 20px;
    color: #fff;
  }
  .mobile_menu_container .level_a > li > a:hover {
    background: #ffa31a;
  }
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active:before {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mobile_menu_active .burger {
    position: fixed;
  }
  .mobile_menu_active .burger span {
    position: relative;
    z-index: 101;
  }
  .mobile_menu_active .mobile_menu_container {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1140px) and (max-width: 768px) {
  .mobile_menu_container {
    width: 100%;
    max-width: 100%;
  }
}
.alignleft {
  float: left;
  margin: 0 30px 10px 0;
}
.alignright {
  float: right;
  margin: 0 0 10px 30px;
}
.aligncenter {
  margin: 0 auto 20px;
}
.alignnone {
  margin: 0 0 20px;
}
.block-center {
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  .alignleft, .aligncenter, .alignright {
    float: none;
    margin: 0 auto 20px;
  }
  .alignnone {
    margin: 0 0 20px;
  }
}
/* ==========================================================================
 HEADER
 ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  will-change: transform, opacity;
  padding: 10px 0;
  background-color: #fff;
}
header .row {
  height: 120px;
}
@media (max-width: 1140px) {
  header .row {
    height: 40px;
  }
}
header #logo {
  opacity: 1;
  color: #181818;
  -webkit-flex-basis: 150px;
  -moz-flex-basis: 150px;
  -ms-flex-basis: 150px;
  flex-basis: 150px;
  max-width: 150px;
}
header #logo:hover {
  opacity: 0.8;
}
/* ==========================================================================
 Main Navigation
 ========================================================================== */
.main_nav {
  font-size: 0;
}
.main_nav * {
  line-height: 1;
}
.main_nav a {
  display: block;
}
.main_nav a:hover {
  text-decoration: none;
}
.main_nav .level_a {
  position: relative;
}
.main_nav .level_a li {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.main_nav .level_a > li > a {
  font-size: 18px;
  padding: 5px 20px;
  color: #181818;
}
.main_nav .level_a > li.current-menu-item > a, .main_nav .level_a > li:hover > a {
  color: #ab837f;
}
.main_nav .level_a > li.menu-item-has-children:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  content: "";
}
.main_nav .level_a > li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.main_nav .level_a > li > .sub-menu {
  position: absolute;
  z-index: 100;
  display: none;
  width: 220px;
  margin-top: 27px;
  padding: 10px 0;
  border-top: 3px solid #ffad33;
  border-bottom: 3px solid #ffad33;
  background: #ab837f;
}
.main_nav .level_a > li > .sub-menu .sub-menu {
  display: block;
  padding-left: 10px;
}
.main_nav .level_a > li > .sub-menu li {
  display: block;
  list-style-type: none;
}
.main_nav .level_a > li > .sub-menu a {
  font-size: 13px;
  line-height: 1.3;
  padding: 3px 15px;
  color: #fff;
}
.main_nav .level_a > li > .sub-menu a:hover {
  text-decoration: none;
  background: #ffc266;
}
/* ==========================================================================
 FOOTER
 ========================================================================== */
footer {
  padding: 50px 0;
  background-color: #263347;
  color: #fff;
}
footer .footer-wrapper {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.5fr;
  grid-gap: 50px;
}
@media (max-width: 1024px) {
  footer .footer-wrapper {
    grid-template-columns: 0.5fr 1fr;
  }
}
@media (max-width: 768px) {
  footer .footer-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer-col {
    text-align: center;
  }
}
footer .footer-wrapper .footer-col .footer-logo {
  -webkit-flex-basis: 140px;
  -moz-flex-basis: 140px;
  -ms-flex-basis: 140px;
  flex-basis: 140px;
  max-width: 140px;
  display: block;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer-col .footer-logo {
    margin: 0 auto;
  }
}
footer .footer-wrapper .footer-col .footer-logo img, footer .footer-wrapper .footer-col .footer-logo svg {
  max-width: 100%;
}
footer .footer-wrapper .footer-col .copyright span {
  font-size: 11px;
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.51);
}
footer .footer-wrapper .footer-col .footer_nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
@media (max-width: 576px) {
  footer .footer-wrapper .footer-col .footer_nav ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
footer .footer-wrapper .footer-col .footer_nav ul li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
footer .footer-wrapper .footer-col .footer_nav ul li a:hover {
  color: #fff;
}
.hp-hero__banner {
  position: relative;
  min-height: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  padding: 40px 0;
}
@media (max-width: 1024px) {
  .hp-hero__banner {
    min-height: 500px;
  }
}
@media (max-width: 576px) {
  .hp-hero__banner {
    min-height: 400px;
  }
}
.hp-hero__banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.hp-hero__banner video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -100;
}
.hp-hero__wrapper {
  position: relative;
  z-index: 2;
}
.hp-hero__wrapper .wys {
  max-width: 670px;
}
.hp-hero__wrapper .wys > * {
  color: #fff;
}
.hp-hero__wrapper .wys p {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .hp-hero__wrapper .wys p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hp-hero__wrapper .wys p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .hp-hero__wrapper .wys p {
    font-size: 16px;
  }
}
.quote-icon {
  max-width: 50px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.quote-icon svg, .quote-icon img {
  width: 100%;
  height: 50px;
}
.under-hero-banner__section {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  background-color: #ab837f;
  position: relative;
}
.under-hero-banner__section:after {
  content: "";
  position: absolute;
  left: 5%;
  height: 650px;
  width: 2px;
  bottom: -40%;
  background-color: #ab837f;
}
@media (max-width: 1100px) {
  .under-hero-banner__section:after {
    left: 2%;
  }
}
@media (max-width: 768px) {
  .under-hero-banner__section:after {
    display: none;
  }
}
@media (max-width: 1024px) {
  .under-hero-banner__section {
    grid-template-columns: repeat(1, 1fr);
  }
}
.under-hero-banner__section .left img {
  width: 100%;
  max-height: 650px;
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
@media (max-width: 1024px) {
  .under-hero-banner__section .left img {
    min-height: auto;
    max-height: 400px;
  }
}
@media (max-width: 576px) {
  .under-hero-banner__section .left img {
    max-height: 300px;
  }
}
@media (max-width: 1024px) {
  .under-hero-banner__section .right {
    order: -1;
  }
}
.under-hero-banner__section .right .wys {
  position: relative;
  background-color: #fff;
  padding: 50px 10% 50px 50px;
  overflow: hidden;
  margin-left: -200px;
}
@media (max-width: 1024px) {
  .under-hero-banner__section .right .wys {
    margin-left: 0;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .under-hero-banner__section .right .wys {
    padding: 20px;
  }
}
.under-hero-banner__section .right .wys h1, .under-hero-banner__section .right .wys h2, .under-hero-banner__section .right .wys h3, .under-hero-banner__section .right .wys h4, .under-hero-banner__section .right .wys h5, .under-hero-banner__section .right .wys h6 {
  color: #263347;
}
.under-hero-banner__section .right .wys h1 strong, .under-hero-banner__section .right .wys h2 strong, .under-hero-banner__section .right .wys h3 strong, .under-hero-banner__section .right .wys h4 strong, .under-hero-banner__section .right .wys h5 strong, .under-hero-banner__section .right .wys h6 strong {
  font-weight: 600;
}
.under-hero-banner__section .right .wys h3 {
  line-height: 2.3rem;
}
.under-hero-banner__section .right .wys .quote-icon {
  max-width: 50px;
  margin-bottom: 20px;
  margin: 0 auto auto 0 !important;
}
.under-hero-banner__section .right .wys .quote-icon svg {
  width: 100%;
  height: 50px;
}
.under-hero-banner__section .right .wys .btn {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .under-hero-banner__section .right .wys .btn {
    margin-top: 20px;
  }
}
@keyframes arrowBounce {
  0% {
    margin-left: 15px;
  }
  50% {
    margin-left: 20px;
  }
  100% {
    margin-left: 15px;
  }
}
.what-we-do__section {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: stretch;
  grid-gap: 15px;
}
@media (max-width: 1100px) {
  .what-we-do__section {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0;
  }
}
.what-we-do__section .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.what-we-do__section .left .title {
  font-weight: 700;
  color: #263347;
}
.what-we-do__section .left .wys {
  padding: 50px;
}
@media (max-width: 768px) {
  .what-we-do__section .left .wys {
    padding: 50px 20px;
  }
}
.what-we-do__section .right {
  padding-top: 100px;
}
@media (max-width: 1100px) {
  .what-we-do__section .right {
    padding-top: 0;
  }
}
.what-we-do__section .right .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3px;
}
@media (max-width: 768px) {
  .what-we-do__section .right .cards-wrapper {
    grid-template-columns: repeat(1, 400px);
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .what-we-do__section .right .cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.what-we-do__section .right .cards-wrapper .card {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.what-we-do__section .right .cards-wrapper .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media (max-width: 768px) {
  .what-we-do__section .right .cards-wrapper .card {
    min-height: 400px;
  }
}
.what-we-do__section .right .cards-wrapper .card:hover .hide-info {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.what-we-do__section .right .cards-wrapper .card:hover > .title {
  opacity: 0;
}
.what-we-do__section .right .cards-wrapper .card > .title {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 2;
}
.what-we-do__section .right .cards-wrapper .card > .title h3 {
  color: #fff;
  font-weight: 700;
}
.what-we-do__section .right .cards-wrapper .card .hide-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px;
  z-index: 2;
  background-color: rgba(255, 153, 0, 0.9);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
@media (max-width: 1250px) {
  .what-we-do__section .right .cards-wrapper .card .hide-info {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .what-we-do__section .right .cards-wrapper .card .hide-info {
    padding: 30px 15px;
  }
}
.what-we-do__section .right .cards-wrapper .card .hide-info > * {
  color: #fff;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .title h3 {
  font-weight: 700;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .learn-more a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .learn-more a:hover span svg {
  animation: arrowBounce 0.5s;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .learn-more a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 20px;
}
.what-we-do__section .right .cards-wrapper .card .hide-info .learn-more a span svg {
  width: 15px;
  height: 15px;
  margin-left: 15px;
}
.title-hr.center {
  width: 80px;
  margin: 0 auto;
  border-bottom: 10px dotted #ab837f;
}
.brands-slider__section {
  background-color: #263347;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .brands-slider__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .brands-slider__section {
    padding: 60px 0;
  }
}
.brands-slider__title {
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .brands-slider__title {
    margin-bottom: 20px;
  }
}
.brands-slider__title > * {
  color: #fff;
}
.brands-slider__slider {
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .brands-slider__slider {
    margin-bottom: 20px;
  }
}
.brands-slider__slider .swiper-wrapper {
  align-items: center;
}
.brands-slider__slider .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 0 30px;
}
@media (max-width: 1024px) {
}
.brands-slider__slider .logo img, .brands-slider__slider .logo svg {
  width: 100%;
}
.brands-slider__button {
  text-align: center;
}
.bottom-page__section {
  min-height: 700px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
@media (max-width: 1024px) {
  .bottom-page__section {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .bottom-page__section {
    min-height: auto;
  }
}
.bottom-page__section > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -100;
}
@media (max-width: 768px) {
  .bottom-page__section > video {
    position: relative;
    min-height: 400px;
  }
}
@media (max-width: 576px) {
  .bottom-page__section > video {
    min-height: auto;
  }
}
.bottom-page__section .bt-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -100;
}
@media (max-width: 768px) {
  .bottom-page__section .bt-section-bg {
    position: relative;
    min-height: 400px;
  }
}
@media (max-width: 576px) {
  .bottom-page__section .bt-section-bg {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .bottom-page__section .row1600 {
    max-width: 100%;
  }
}
.bottom-page__content {
  position: relative;
  display: block;
  max-width: 600px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  color: #333;
}
@media (max-width: 768px) {
  .bottom-page__content {
    max-width: 100%;
  }
}
.bottom-page__content .wys {
  background-color: #fff;
  padding: 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .bottom-page__content .wys {
    padding: 40px 20px;
  }
}
.bottom-page__content:after, .bottom-page__content:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ab837f;
  z-index: 1;
}
@media (max-width: 768px) {
  .bottom-page__content:after, .bottom-page__content:before {
    display: none;
  }
}
.bottom-page__content:before {
  left: -10px;
  top: -10px;
}
.bottom-page__content:after {
  right: -10px;
  bottom: -10px;
}
.hp-video__section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: stretch;
  grid-gap: 0px;
  position: relative;
  padding: 70px 0;
}
@media (max-width: 1100px) {
  .hp-video__section {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
}
.hp-video__section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
  background-color: #ab837f;
}
@media (max-width: 1100px) {
  .hp-video__section:after {
    width: 100%;
  }
}
.hp-video__section:before {
  content: "";
  position: absolute;
  right: 5%;
  height: 650px;
  width: 2px;
  bottom: -40%;
  background-color: #ab837f;
  z-index: 3;
}
@media (max-width: 1100px) {
  .hp-video__section:before {
    display: none;
  }
}
.hp-video__section > div {
  position: relative;
  z-index: 2;
}
.hp-video__section .left {
  padding: 0 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .hp-video__section .left {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .hp-video__section .left {
    padding: 20px;
  }
}
.hp-video__section .left .wys {
  max-width: 650px;
  margin-right: auto;
}
.hp-video__section .left .wys > * {
  color: #fff;
}
.hp-video__section .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  bottom: -230px;
}
@media (max-width: 1100px) {
  .hp-video__section .right {
    order: -1;
    bottom: 0;
  }
}
.hp-video__section .right .video-wrapper {
  background-color: #fff;
  padding: 20px;
  height: 700px;
}
@media (max-width: 1480px) {
  .hp-video__section .right .video-wrapper {
    height: 500px;
  }
}
@media (max-width: 1100px) {
  .hp-video__section .right .video-wrapper {
    padding: 0;
    background-color: transparent;
    height: auto;
  }
}
.hp-video__section .right .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top.no-bg {
  margin: 100px 0;
}
@media (max-width: 1024px) {
  #top.no-bg {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  #top.no-bg {
    margin: 60px 0;
  }
}
@media (max-width: 576px) {
  #top.no-bg {
    margin: 40px 0;
  }
}
#top.no-bg h1, #top.no-bg h2, #top.no-bg h3, #top.no-bg h4, #top.no-bg h5, #top.no-bg h6 {
  color: #263347;
}
#top.bg {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0px 0px, 50% 0%;
  min-height: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  position: relative;
}
#top.bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
@media (max-width: 1024px) {
  #top.bg {
    padding: 80px 0;
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  #top.bg {
    padding: 60px 0;
    min-height: 350px;
    background-attachment: inherit;
  }
}
@media (max-width: 576px) {
  #top.bg {
    padding: 40px 0;
    min-height: 280px;
  }
}
#top.bg .top-banner__text > * {
  color: #fff;
}
#top .top-banner__text {
  max-width: 650px;
  position: relative;
  z-index: 3;
}
.blog .top-banner__text h1 {
  font-size: 48px;
  line-height: 3rem;
}
@media (max-width: 1024px) {
  .blog .top-banner__text h1 {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .blog .top-banner__text h1 {
    font-size: 34px;
    line-height: 44px;
  }
}
@media (max-width: 576px) {
  .blog .top-banner__text h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.brands-page__grid {
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .brands-page__grid {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .brands-page__grid {
    margin: 60px 0;
  }
}
@media (max-width: 576px) {
  .brands-page__grid {
    margin: 40px 0;
  }
}
.brands-page__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
@media (max-width: 768px) {
  .brands-page__wrapper {
    grid-template-columns: repeat(1, 500px);
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .brands-page__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.brands-page__wrapper .card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 576px) {
  .brands-page__wrapper .card {
    min-height: 350px;
  }
}
.brands-page__wrapper .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.brands-page__wrapper .card:hover .hide-text {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.brands-page__wrapper .card:hover .logo {
  opacity: 0;
}
.brands-page__wrapper .card .logo {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.brands-page__wrapper .card .logo svg, .brands-page__wrapper .card .logo img {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.brands-page__wrapper .card .hide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 2;
  background-color: rgba(255, 153, 0, 0.9);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
@media (max-width: 768px) {
  .brands-page__wrapper .card .hide-text {
    padding: 15px;
  }
}
.brands-page__wrapper .card .hide-text > * {
  color: #fff;
}
.testimonials__section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .testimonials__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .testimonials__section {
    padding: 60px 0;
  }
}
.testimonials__wrapper .mySwiper {
  padding: 10px 0;
}
.testimonials__wrapper .testimonial__slide {
  margin-bottom: 40px;
}
.testimonials__wrapper .testimonial__slide .author-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
  box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.15);
}
.testimonials__wrapper .testimonial__slide .author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials__wrapper .testimonial__slide .tetimonial-title h4 {
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.testimonials__wrapper .testimonial__slide .testimonial-content, .testimonials__wrapper .testimonial__slide .tetimonial-title {
  text-align: center;
}
.testimonials__wrapper .navigation-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto 20px;
  justify-content: space-between;
  align-items: center;
  grid-gap: 15px;
}
.testimonials__wrapper .navigation-wrapper > div {
  position: relative;
  display: block;
  width: auto;
  height: auto;
}
.testimonials__wrapper .navigation-wrapper > div.nav-arrow {
  left: auto;
  right: auto;
}
.testimonials__wrapper .navigation-wrapper > div.nav-arrow:after {
  font-size: 20px;
  color: #ab837f;
}
.testimonials__wrapper .navigation-wrapper > div.swiper-pagination {
  left: 0;
  top: auto;
  bottom: auto;
  right: 0;
}
.testimonials__wrapper .navigation-wrapper > div.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(34, 34, 34, 0.4);
}
.investment-content__section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .investment-content__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .investment-content__section {
    padding: 60px 0;
  }
}
.investment-content__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}
@media (max-width: 1024px) {
  .investment-content__wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
}
.highlight-text {
  color: #ab837f;
}
.culture-quote__section {
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .culture-quote__section {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .culture-quote__section {
    margin: 60px 0;
  }
}
.culture-quote__wrapper h3 strong {
  font-weight: 600;
}
.our-approach__section {
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .our-approach__section {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .our-approach__section {
    margin: 60px 0;
  }
}
.our-approach__section .row1600 {
  max-width: 92%;
}
@media (max-width: 576px) {
  .our-approach__section .row1600 {
    max-width: 94%;
  }
}
.our-approach__wrapper {
  padding: 30px 0;
  background-color: #ab837f;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 15px;
}
@media (max-width: 1024px) {
  .our-approach__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .our-approach__wrapper {
    padding: 0;
  }
}
.our-approach__wrapper .left .oa-image {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  left: -40px;
}
@media (max-width: 576px) {
  .our-approach__wrapper .left .oa-image {
    left: 0;
    padding: 0;
  }
}
.our-approach__wrapper .left .oa-image img {
  width: 100%;
  object-fit: cover;
}
.our-approach__wrapper .right .wys {
  padding: 20px 40px;
}
@media (max-width: 1024px) {
  .our-approach__wrapper .right .wys {
    padding: 20px;
  }
}
.our-approach__wrapper .right .wys > * {
  color: #fff;
}
.tpl-our-culture .hp-video__section:after, .tpl-careers .hp-video__section:after {
  background-color: #263347;
}
.tpl-careers .hp-video__section:before {
  display: none;
}
.small-title {
  display: inline-block;
  color: #7c89a3;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.leadership-team__section {
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .leadership-team__section {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .leadership-team__section {
    margin: 60px 0;
  }
}
.leadership-team__title h2 {
  font-weight: 700;
  color: #263347;
}
.leadership-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
@media (max-width: 1100px) {
  .leadership-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .leadership-team__grid {
    grid-template-columns: repeat(1, 450px);
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .leadership-team__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.leadership-team__grid .teammate {
  position: relative;
  min-height: 550px;
  background-position: 0px 0px, 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 850px) {
  .leadership-team__grid .teammate {
    min-height: 450px;
    padding: 15px;
  }
}
.leadership-team__grid .teammate:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6));
}
.leadership-team__grid .teammate:hover .info {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.leadership-team__grid .teammate:hover .name {
  opacity: 0;
}
.leadership-team__grid .teammate .name {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 2;
}
.leadership-team__grid .teammate .name h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}
.leadership-team__grid .teammate .name span {
  color: #fff;
  font-size: 16px;
}
.leadership-team__grid .teammate .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 2;
  background-color: rgba(255, 153, 0, 0.9);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
@media (max-width: 576px) {
  .leadership-team__grid .teammate .info {
    padding: 20px;
  }
}
.leadership-team__grid .teammate .info p {
  font-family: 'Lora';
}
.leadership-team__grid .teammate .info > * {
  color: #fff;
}
.leadership-team__grid .teammate .info .quote-icon {
  margin: 0 auto auto 0 !important;
  max-width: 30px;
}
.leadership-team__grid .teammate .info .quote-icon svg path {
  fill: #fff;
}
.wwd-services__section {
  padding: 100px 0;

  background-position: 0px 0px;
  background-size: 30%;
  background-repeat: repeat-y;
}
.wwd-services__section .row1800 {
  max-width: 92%;
}
@media (max-width: 1024px) {
  .wwd-services__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .wwd-services__section {
    padding: 60px 0;
  }
}
.wwd-services__title {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .wwd-services__title {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .wwd-services__title {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .wwd-services__title {
    margin-bottom: 30px;
  }
}
.wwd-services__title h1, .wwd-services__title h2, .wwd-services__title h3, .wwd-services__title h4, .wwd-services__title h5, .wwd-services__title h6 {
  color: #263347;
}
.wwd-services__wrapper .service {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 15px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .wwd-services__wrapper .service {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .wwd-services__wrapper .service {
    padding: 0;
  }
}
.wwd-services__wrapper .service .left .image {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  left: -40px;
  height: 540px;
}
@media (max-width: 576px) {
  .wwd-services__wrapper .service .left .image {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .wwd-services__wrapper .service .left .image {
    left: 0;
    padding: 0;
  }
}
.wwd-services__wrapper .service .left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wwd-services__wrapper .service .right .wys {
  padding: 20px 40px;
}
@media (max-width: 1024px) {
  .wwd-services__wrapper .service .right .wys {
    padding: 20px;
  }
}
.wwd-services__wrapper .service .right .wys > * {
  color: #fff;
}
.exp-services__section {
  padding: 100px 0;
  background-color: rgba(243, 246, 255, 0.72);
}
@media (max-width: 1024px) {
  .exp-services__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .exp-services__section {
    padding: 60px 0;
  }
}
.exp-services__title {
  text-align: center;
  margin-bottom: 50px;
}
.exp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 1024px) {
  .exp-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .exp-services__grid {
    grid-gap: 20px;
  }
}
@media (max-width: 576px) {
  .exp-services__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.exp-services__grid .exp-service .image {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  padding: 0 10px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .exp-services__grid .exp-service .image {
    margin-bottom: 50px;
  }
}
.exp-services__grid .exp-service .image:after {
  content: "";
  display: block;
  padding-bottom: calc(88.4% - 80px);
}
.exp-services__grid .exp-service .image .icon {
  width: 80px;
  height: 80px;
  background-color: #ab837f;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 3;
  margin-bottom: -40px;
}
@media (max-width: 768px) {
  .exp-services__grid .exp-service .image .icon {
    width: 70px;
    height: 70px;
    margin-bottom: -35px;
  }
}
.exp-services__grid .exp-service .image .icon .img_svg {
  max-width: 60%;
  max-height: 60%;
}
.exp-services__grid .exp-service .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.exp-services__grid .exp-service .info h4 {
  font-weight: 900;
  color: #263347;
  margin-bottom: 10px;
}
.exp-services__grid .exp-service .info p {
  padding-bottom: 30px;
}
.tpl-privacy-policy {
  background-color: rgba(243, 246, 255, 0.72);
}
.top-privacy-title {
  background-color: #263347;
  min-height: 300px;
  padding: 100px 0 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
.top-privacy-title h2 {
  color: #fff;
  font-weight: 700;
}
.privacy-content .wys {
  margin-top: -100px;
  padding: 60px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.blog-posts__section {
  margin: 100px 0;
}
@media (max-width: 1024px) {
  .blog-posts__section {
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .blog-posts__section {
    margin: 60px 0;
  }
}
.blog-posts__section .ajax-load-btn {
  text-align: center;
  margin-top: 50px;
}
.blog-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 1100px) {
  .blog-posts__grid {
    grid-gap: 20px;
  }
}
@media (max-width: 1024px) {
  .blog-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-posts__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-posts__grid .post-item {
  text-decoration: none;
}
.blog-posts__grid .post-item:hover .post-thumbnail img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.blog-posts__grid .post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.blog-posts__grid .post-item .post-thumbnail:after {
  content: "";
  display: block;
  padding-bottom: 69.3%;
}
.blog-posts__grid .post-item .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-posts__grid .post-item .post-content .post-title {
  margin: 20px 0 10px;
  color: #263347;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .blog-posts__grid .post-item .post-content .post-title {
    font-size: 20px;
    font-weight: 700;
  }
}
.post-top-banner.bg {
  background-position: center !important;
}
.post-top-banner .top-banner__text .back-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.post-top-banner .top-banner__text .back-link:hover svg path {
  fill: #373f4f;
}
.post-top-banner .top-banner__text .back-link svg {
  max-width: 15px;
  max-height: 15px;
  margin-right: 10px;
}
.post-top-banner .top-banner__text .back-link svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-top-banner .top-banner__text time {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}
.post-top-banner .top-banner__text .post-title {
  margin-bottom: 35px;
}
.single-post__content {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .single-post__content {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .single-post__content {
    padding: 60px 0;
  }
}
.single-post__wrapper {
  display: grid;
  grid-template-columns: 1fr 0.25fr;
  grid-gap: 100px;
}
@media (max-width: 1250px) {
  .single-post__wrapper {
    grid-gap: 50px;
  }
}
@media (max-width: 1100px) {
  .single-post__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-post__wrapper .left .wys {
  max-width: 700px;
}
.single-post__wrapper .left .wys h1, .single-post__wrapper .left .wys h2, .single-post__wrapper .left .wys h3, .single-post__wrapper .left .wys h4, .single-post__wrapper .left .wys h5, .single-post__wrapper .left .wys h6 {
  margin-bottom: 10px;
}
.single-post__wrapper .left .wys blockquote {
  font-size: 24px;
  color: #7c89a3;
  font-weight: 600;
  padding-left: 50px;
  position: relative;
}
.single-post__wrapper .left .wys blockquote p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.9rem;
  font-family: 'Lora';
}
.single-post__wrapper .left .wys blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url(../img/quote.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-post__wrapper .right .aside-post-box > h4 {
  font-size: 16px;
  text-align: center;
  color: #7c89a3;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .single-post__wrapper .right .aside-post-box #catnav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width: 576px) and (max-width: 576px) {
  .single-post__wrapper .right .aside-post-box #catnav {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-post__wrapper .right .aside-post-box #catnav li a {
  text-decoration: none;
}
.single-post__wrapper .right .aside-post-box #catnav li a:hover .post-thumbnail img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  -moz-transform: scale3d(1.1, 1.1, 1.1);
  -ms-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.single-post__wrapper .right .aside-post-box #catnav li a .post-thumbnail {
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
}
.single-post__wrapper .right .aside-post-box #catnav li a .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-post__wrapper .right .aside-post-box #catnav li a .title h4 {
  font-size: 17px;
  color: #263347;
  font-weight: 700;
  line-height: 20px;
}
.single-post__wrapper .right .aside-post-box .share-icons {
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .single-post__wrapper .right .aside-post-box .share-icons {
    display: grid;
    grid-template-columns: repeat(4, 35px);
    justify-content: center;
    grid-gap: 15px;
  }
}
.single-post__wrapper .right .aside-post-box .share-icons a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  width: 35px;
  height: 35px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background-color: #7c89a3;
  text-decoration: none;
}
.single-post__wrapper .right .aside-post-box .share-icons a:hover {
  background-color: #ab837f;
}
.careers-page-content {

}
@media (max-width: 1024px) {
  .careers-page-content {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .careers-page-content {
    padding: 60px 0;
  }
}
.interested-in__section {
  margin: 0 0 100px;
}
@media (max-width: 1024px) {
  .interested-in__section {
    margin: 0 0 80px;
  }
}
@media (max-width: 768px) {
  .interested-in__section {
    margin: 0 0 60px;
  }
}
.interested-in__wrapper {
  border: 1px solid #ab837f;
  position: relative;
  background-color: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
@media (max-width: 380px) {
  .interested-in__wrapper {
    padding: 15px;
  }
}
 .interested-in__wrapper:after,  .interested-in__wrapper:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ab837f;
  z-index: -1;
}
@media (max-width: 768px) {
  .interested-in__wrapper:after, .interested-in__wrapper:before {
    display: none;
  }
}
.interested-in__wrapper:before {
  left: -10px;
  top: -10px;
}
.interested-in__wrapper:after {
  right: -10px;
  bottom: -10px;
}
.careers-page-content .perks__section {
  margin: 100px 0 0;
}
@media (max-width: 1024px) {
  .careers-page-content .perks__section {
    margin: 80px 0 0;
  }
}
@media (max-width: 768px) {
  .careers-page-content .perks__section {
    margin: 60px 0 0;
  }
}
.careers-page-content .perks__title {
  text-align: center;
  margin-bottom: 50px;
}
.careers-page-content .perks__title h2 {
  font-weight: 700;
  color: #263347;
  margin-bottom: 0;
}
.careers-page-content .perks__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 90px;
}
@media (max-width: 1024px) {
  .careers-page-content .perks__wrapper {
    grid-gap: 45px;
  }
}
@media (max-width: 850px) {
  .careers-page-content .perks__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .careers-page-content .perks__wrapper {
    grid-template-columns: repeat(1, 450px);
    justify-content: center;
    grid-gap: 20px;
  }
}
@media (max-width: 480px) {
  .careers-page-content .perks__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.careers-page-content .perks__wrapper .perk .icon {
  background-color: #ab837f;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  padding: 15px;
  margin: 0 auto 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.careers-page-content .perks__wrapper .perk .icon svg, .careers-page-content .perks__wrapper .perk .icon img {
  max-width: 100%;
  max-height: 100%;
}
.careers-page-content .perks__wrapper .perk .title h4 {
  color: #263347;
  font-weight: 700;
  margin-bottom: 10px;
}
.careers-page-content .perks__wrapper .perk .title, .careers-page-content .perks__wrapper .perk .wys {
  text-align: center;
}
.passion__section {
  margin: 0 0 100px;
}
@media (max-width: 1024px) {
  .passion__section {
    margin: 0 0 80px;
  }
}
@media (max-width: 768px) {
  .passion__section {
    margin: 0 0 60px;
  }
}
.passion__title {
  text-align: center;
  margin-bottom: 50px;
}
.passion__title h2 {
  font-weight: 700;
  color: #263347;
  margin-bottom: 0;
}
.passion__slider .passion {
  padding: 30px 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 15px;
}
@media (max-width: 1024px) {
  .passion__slider .passion {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .passion__slider .passion {
    padding: 0;
  }
}
.passion__slider .passion .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 97%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 576px) {
  .passion__slider .passion .bg {
    width: 100%;
  }
}
.passion__slider .passion .left .image {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  left: 0;
}
@media (max-width: 576px) {
  .passion__slider .passion .left .image {
    left: 0;
    padding: 0;
  }
}
.passion__slider .passion .left .image img {
  width: 100%;
  object-fit: cover;
}
.passion__slider .passion .right .wys {
  padding: 20px 40px;
}
@media (max-width: 1024px) {
  .passion__slider .passion .right .wys {
    padding: 20px;
  }
}
.passion__slider .passion .right .wys > * {
  color: #fff;
}
.passion__slider .navigation-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  padding: 20px 0;
}
.passion__slider .navigation-wrapper .arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
.passion__slider .navigation-wrapper .bullets, .passion__slider .navigation-wrapper .arrows {
  position: relative;
}
.passion__slider .navigation-wrapper .bullets > div, .passion__slider .navigation-wrapper .arrows > div {
  position: relative;
  position: relative;
  display: block;
  width: auto;
  height: auto;
}
.passion__slider .navigation-wrapper .bullets > div.nav-arrow, .passion__slider .navigation-wrapper .arrows > div.nav-arrow {
  left: auto;
  right: auto;
  margin-top: 0;
  margin-left: 15px;
}
.passion__slider .navigation-wrapper .bullets > div.nav-arrow:after, .passion__slider .navigation-wrapper .arrows > div.nav-arrow:after {
  font-size: 20px;
  color: #ab837f;
}
.passion__slider .navigation-wrapper .bullets > div.swiper-pagination, .passion__slider .navigation-wrapper .arrows > div.swiper-pagination {
  left: 0;
  top: auto;
  bottom: auto;
  right: 0;
}
.passion__slider .navigation-wrapper .bullets > div.swiper-pagination .swiper-pagination-bullet, .passion__slider .navigation-wrapper .arrows > div.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(34, 34, 34, 0.4);
}
.contact-page__section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .contact-page__section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .contact-page__section {
    padding: 60px 0;
  }
}
.contact-page__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
@media (max-width: 1024px) {
  .contact-page__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-page__wrapper .left .info-block {
  margin-bottom: 30px;
}
.contact-page__wrapper .left .info-block .title {
  font-family: 'Nunito', Helvetica, Arial, sans-serif;
  color: #7c89a3;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.contact-page__wrapper .left .info-block .info .info-row {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 0;
}
.contact-page__wrapper .left .info-block .info .info-row svg {
  width: 30px;
  height: 30px;
}
.contact-page__wrapper .left .info-block .info .info-row span {
  font-size: 20px;
}
.contact-page__wrapper .right .form-wrapper {
  background-color: #263347;
  padding: 50px;
}
@media (max-width: 576px) {
  .contact-page__wrapper .right .form-wrapper {
    padding: 25px;
  }
}
.contact-page__wrapper .right .form-wrapper .gform_body .gfield input, .contact-page__wrapper .right .form-wrapper .gform_body .gfield select {
  height: 50px;
  margin-bottom: 20px;
}
.contact-page__wrapper .right .form-wrapper .gform_body .gfield input, .contact-page__wrapper .right .form-wrapper .gform_body .gfield select, .contact-page__wrapper .right .form-wrapper .gform_body .gfield textarea {
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
}
.contact-page__wrapper .right .form-wrapper .gform_body .gfield input::placeholder, .contact-page__wrapper .right .form-wrapper .gform_body .gfield select::placeholder, .contact-page__wrapper .right .form-wrapper .gform_body .gfield textarea::placeholder {
  color: #fff;
}
.contact-page__wrapper .right .form-wrapper input[type="submit"] {
  background-color: #ab837f;
  border: none;
  outline: none;
  min-width: 400px;
  padding: 15px 25px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .contact-page__wrapper .right .form-wrapper input[type="submit"] {
    min-width: 100%;
    font-size: 16px;
    padding: 10px 20px;
  }
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
