/* FONTS
 ========================================================================== */
/* 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: #33404f;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-weight: 400;
  height: auto;
  min-height: 100vh;
  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: #ffa800;
  color: #fff;
}
body ::selection {
  background: #ffa800;
  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: none;
  background: rgba(196, 196, 196, 0.26);
  border-radius: 56px;
  color: #33404f;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 19px;
  height: 67px;
  padding: 0 10px 0 25px;
  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: #33404f;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 19px;
  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: #33404f;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 19px;
  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: #33404f;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 19px;
  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: #ffa800;
}
textarea {
  resize: none;
  height: 157px;
  border-radius: 15px;
  padding: 30px 20px 20px 25px;
}
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;
}
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: 500;
}
h1 {
  font-size: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}
h2 {
  font-size: 60px;
  margin-bottom: 20px;
}
@media (max-width: 1366px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
h3 {
  font-size: 50px;
  margin-bottom: 25px;
}
p {
  padding-bottom: 20px;
  line-height: 1.6;
  font-size: 19px;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
}
a {
  color: #ffa800;
  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: 1280px) {
  ::-webkit-scrollbar {
    width: 13px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-left: 1px solid #ccc;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #ffa800;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #e69700;
  }
}
.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: 1024px) {
  .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: 1280px;
  max-width: 94%;
  position: relative;
}
#content {
  padding: 40px 0;
}
@media (max-width: 1280px) {
  #content {
    padding: 20px 0;
  }
}
#wrap {
  position: relative;
  width: 100%;
  min-height: 100%;
}
.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: #ffa800;
}
.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, .button {
  font-size: 19px !important;
  font-weight: normal !important;
  line-height: 1;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 20px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  text-transform: initial;
  color: #fff !important;
  border: none;
  outline: 0;
  background: #ffa800 !important;
  border-radius: 56px !important;
  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;
}
@media (max-width: 768px) {
  .btn, .button {
    font-size: 14px;
    padding: 15px 15px;
  }
}
.btn:hover, .button:hover {
  background: #d68d00;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.btn:active, .button:active {
  background: #b37600;
}
/* ==========================================================================
 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;
  list-style-type: disc;
}
.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 'Poppins', Helvetica, Arial, sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 67px;
  line-height: 67px;
  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 {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 2px;
  color: #fff;
  background: #ffa800;
  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: 16px;
  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 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.s-link a.fa-facebook:hover {
  background: #3b5993;
}
.s-link a.fa-twitter:hover {
  background: #55acee;
}
.s-link a.fa-instagram:hover {
  background: #181818;
}
.s-link a.fa-linkedin:hover {
  background: #0177b5;
}
.s-link a.fa-youtube:hover {
  background: #f80000;
}
.s-link a.fa-pinterest:hover {
  background: #bd081c;
}
.s-link a.fa-vimeo:hover {
  background: #1bb7ea;
}
.s-link a.fa-yelp:hover {
  background: #d32323;
}
.s-link a.fa-google-plus:hover {
  background: #dd4c39;
}
/* ==========================================================================
 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: #33404f;
}
.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: #ffa800;
  background: #ffa800;
}
#top {
  min-height: 500px;
  text-align: center;
  color: #fff;
}
#top h1 {
  font-size: 60px;
}
.desctop_hide {
  display: none;
}
@media (max-width: 1024px) {
  /* resp_menu_active
   ========================================================================== */
  .mobile_hide {
    display: none;
  }
  .desctop_hide {
    display: block;
  }
  .burger {
    position: absolute;
    z-index: 101;
    top: 52px;
    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: 18px;
    height: 2px;
    background-color: #ffa800;
    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 .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: 110px solid #cc8600;
    border-bottom: 3px solid #cc8600;
    background: #ffa800;
    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: #ffb11a;
  }
  .mobile_menu_container .sub-anchor:hover {
    background: #e69700;
  }
  .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: #ffb933;
  }
  .mobile_menu_container .sub-menu .sub-menu {
    display: none;
    padding-left: 10px;
  }
  .mobile_menu_container .level_a > li {
    border-bottom: 1px solid #ffb11a;
  }
  .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: #ffb11a;
  }
  .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, .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: 1024px) and (max-width: 550px) {
  .burger {
    top: 36px;
    right: 5px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .mobile_menu_container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) and (max-width: 550px) {
  .mobile_menu_container {
    border-top: 110px solid #cc8600;
  }
}
.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: relative;
  z-index: 10;
  padding: 25px 0;
  border-bottom: 1px solid #33404f;
}
.header .wrap {
  width: 1830px;
}
.header .logo {
  max-width: 288px;
  width: 100%;
  opacity: 1;
  color: #181818;
  display: block;
  margin-right: 87px;
}
@media (max-width: 1366px) {
  .header .logo {
    margin-right: 35px;
  }
}
@media (max-width: 1024px) {
  .header .logo {
    margin-right: 0;
  }
}
@media (max-width: 550px) {
  .header .logo {
    max-width: 120px;
  }
}
.header .logo:hover {
  opacity: 0.8;
}
.header .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;
}
.header .right {
  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;
}
@media (max-width: 1024px) {
  .header .right {
    margin-right: 35px;
  }
}
.header .right > * {
  display: inline-block;
  margin-right: 35px;
}
@media (max-width: 380px) {
  .header .right > * {
    margin-right: 15px;
  }
}
.header .right > *:first-child {
  margin-right: 30px;
}
@media (max-width: 380px) {
  .header .right > *:first-child {
    margin-right: 15px;
  }
}
.header .right > *:last-child {
  margin-right: 0;
}
/* ==========================================================================
 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 {
  margin-right: 49px;
}
@media (max-width: 1366px) {
  .main_nav .level_a > li {
    margin-right: 30px;
  }
}
.main_nav .level_a > li > a {
  font-size: 19px;
  padding: 10px 30px;
  color: #33404f;
  border-radius: 25px;
}
.main_nav .level_a > li.current-menu-item > a, .main_nav .level_a > li:hover > a {
  color: #fff;
  background: #ffa800;
}
.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 #ffb933;
  border-bottom: 3px solid #ffb933;
  background: #ffa800;
}
.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: #ffcb66;
}
/* ==========================================================================
 FOOTER
 ========================================================================== */
footer {
  padding: 70px 0;
  border-top: 1px solid #33404f;
  text-align: center;
}
@media (max-width: 768px) {
  footer {
    padding: 35px 0;
  }
}
footer p {
  padding-bottom: 0;
}
footer a {
  color: #33404f;
}
footer > .flex > * {
  margin: 5px 19px;
}
.home-top-slider {
  background-image: url('../img/slider-bg.png');
  background-position: center;
  background-repeat: no-repeat;
}
.home-top-slider .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding-left: 320px;
}
@media (max-width: 1600px) {
  .home-top-slider .swiper-slide {
    padding-left: 125px;
  }
}
@media (max-width: 1400px) {
  .home-top-slider .swiper-slide {
    padding-left: 50px;
  }
}
@media (max-width: 1024px) {
  .home-top-slider .swiper-slide {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding-left: 0;
  }
}
.home-top-slider .swiper-slide .title {
  -webkit-flex-basis: 685px;
  -moz-flex-basis: 685px;
  -ms-flex-basis: 685px;
  flex-basis: 685px;
  margin-top: 96px;
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .home-top-slider .swiper-slide .title {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
.home-top-slider .swiper-slide .imge {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .home-top-slider .swiper-slide .imge {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    text-align: center;
  }
}
.next-section {
  margin-bottom: 65px;
  margin-top: 35px;
}
@media (max-width: 1024px) {
  .next-section {
    margin-bottom: 35px;
  }
}
.next-section .click-to-next-section {
  width: 81px;
  height: 81px;
  background: #ffa800;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  -webkit-flex-basis: 81px;
  -moz-flex-basis: 81px;
  -ms-flex-basis: 81px;
  flex-basis: 81px;
  margin-right: 28px;
}
.next-section .click-to-next-section img {
  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%);
}
.next-section hr {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #33404f;
}
.home-about-us {
  padding: 65px 0 103px;
  position: relative;
}
@media (max-width: 1024px) {
  .home-about-us {
    padding: 35px 0 50px;
  }
}
@media (max-width: 480px) {
  .home-about-us {
    padding: 30px 0 35px;
  }
}
.home-about-us:before {
  content: url('../img/about-before.png');
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
}
@media (max-width: 1024px) {
  .home-about-us:before {
    display: none;
  }
}
.home-about-us .image {
  -webkit-flex-basis: 830px;
  -moz-flex-basis: 830px;
  -ms-flex-basis: 830px;
  flex-basis: 830px;
  margin-right: 150px;
}
@media (max-width: 1500px) {
  .home-about-us .image {
    margin-right: 35px;
  }
}
@media (max-width: 1366px) {
  .home-about-us .image {
    -webkit-flex-basis: 680px;
    -moz-flex-basis: 680px;
    -ms-flex-basis: 680px;
    flex-basis: 680px;
  }
}
@media (max-width: 1280px) {
  .home-about-us .image {
    -webkit-flex-basis: 500px;
    -moz-flex-basis: 500px;
    -ms-flex-basis: 500px;
    flex-basis: 500px;
  }
}
@media (max-width: 1024px) {
  .home-about-us .image {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.home-about-us .about-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.home-about-us .about-info .info {
  max-width: 626px;
  width: 100%;
  margin-top: 70px;
  padding-right: 15px;
}
@media (max-width: 1366px) {
  .home-about-us .about-info .info {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .home-about-us .about-info .info {
    text-align: center;
    padding: 0 30px;
    max-width: 100%;
  }
}
.home-gallery .top-title {
  background: #ffa800;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .home-gallery .top-title {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .home-gallery .top-title {
    padding: 30px 0;
  }
}
.home-gallery .top-title:before {
  content: url('../img/gallery-before.png');
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
}
@media (max-width: 768px) {
  .home-gallery .top-title:before {
    display: none;
  }
}
.home-gallery .top-title:after {
  content: url('../img/gallery-after.png');
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
}
@media (max-width: 768px) {
  .home-gallery .top-title:after {
    display: none;
  }
}
@media (max-width: 1650px) {
  .home-gallery .top-title > .flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .home-gallery .top-title > .flex > * {
    margin: 0 20px;
  }
}
.home-gallery .top-title h3 {
  color: #fff;
  margin-bottom: 0;
}
.home-gallery .swiper-button {
  border: 1px solid #fff;
  margin: 0 15px;
}
.swiper-button {
  width: 81px;
  height: 81px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background: #ffa800;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .swiper-button {
    width: 60px;
    height: 60px;
  }
}
.swiper-button:before {
  content: url('../img/arrow.png');
  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%);
}
.swiper-button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.swiper-button.button-prev:before {
  left: 45%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.swiper-button.button-next:before {
  left: 55%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -moz-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}
.home-testimonials {
  padding: 110px 0;
  border-bottom: 1px solid #33404f;
}
@media (max-width: 768px) {
  .home-testimonials {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .home-testimonials {
    padding: 35px 0;
  }
}
.home-testimonials h2 {
  text-align: center;
}
.home-testimonials .wrap-swiper {
  padding: 10px 30px;
}
@media (max-width: 768px) {
  .home-testimonials .wrap-swiper {
    padding: 10px 15px;
  }
}
.home-testimonials .top-title {
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .home-testimonials .top-title {
    margin-bottom: 100px;
  }
}
.home-testimonials .swiper-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 480px) {
  .home-testimonials .swiper-button {
    top: 60px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.home-testimonials .swiper-button.button-prev {
  left: 0;
}
.home-testimonials .swiper-button.button-next {
  right: 0;
}
.home-testimonials .swiper-slide {
  border: 1px solid #33404f;
  border-radius: 15px;
}
.home-testimonials .swiper-slide .top-info {
  padding: 20px 50px;
}
@media (max-width: 1024px) {
  .home-testimonials .swiper-slide .top-info {
    padding: 20px 25px;
  }
}
.home-testimonials .swiper-slide .top {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .home-testimonials .swiper-slide .top {
    margin-bottom: 15px;
  }
}
.home-testimonials .swiper-slide .title {
  font-size: 25px;
}
.home-testimonials .swiper-slide .time {
  font-size: 16px;
  font-weight: 300;
}
.home-testimonials .swiper-slide .info {
  font-size: 16px;
  font-weight: 300;
}
.home-testimonials .swiper-slide .image-name {
  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;
  padding-left: 50px;
  padding-bottom: 28px;
}
@media (max-width: 1024px) {
  .home-testimonials .swiper-slide .image-name {
    padding-left: 25px;
  }
}
.home-testimonials .swiper-slide .image {
  margin-right: 23px;
  -webkit-flex-basis: 66px;
  -moz-flex-basis: 66px;
  -ms-flex-basis: 66px;
  flex-basis: 66px;
}
.home-testimonials .swiper-slide .image img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 50%;
}
.home-testimonials .swiper-slide .name {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 25px;
  padding: 10px 0 10px 25px;
  background: #ffa800;
  border-radius: 20px 0px 0px 20px;
  color: #fff;
}
@media (max-width: 480px) {
  .home-testimonials .swiper-slide .name {
    font-size: 20px;
  }
}
.contact-us {
  background-image: url('../img/contact-us-before.png');
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .contact-us {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .contact-us {
    padding: 35px 0;
  }
}
.contact-us .info {
  max-width: 843px;
  width: 100%;
  margin: 0 auto;
}
.contact-us .info h3 {
  text-align: center;
  margin-bottom: 46px;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .contact-us .info h3 {
    margin-bottom: 25px;
  }
}
.contact-us .form-border {
  padding: 69px 52px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(51, 64, 79, 0.16);
}
@media (max-width: 1024px) {
  .contact-us .form-border {
    padding: 35px 25px;
  }
}
@media (max-width: 768px) {
  .contact-us .form-border {
    padding: 25px 20px;
  }
}
.contact-us .input-field {
  margin-bottom: 38px;
}
@media (max-width: 480px) {
  .contact-us .input-field {
    margin-bottom: 25px;
  }
}
.contact-us .btn {
  max-width: 278px;
  width: 100%;
}
.contact-us .relative {
  text-align: center;
}
.relative {
  position: relative;
}
.content-area {
  padding: 95px 0;
}
@media (max-width: 1024px) {
  .content-area {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .content-area {
    padding: 30px 0;
  }
}
.woocommerce-products-header .page-description {
  max-width: 626px;
  width: 100%;
}
.shop-top-section {
  position: relative;
  margin-bottom: 97px;
  padding-left: 100px;
}
@media (max-width: 1400px) {
  .shop-top-section {
    padding-left: 0;
    margin-bottom: 20px;
  }
}
.shop-top-section:before {
  content: url('../img/shop-before.png');
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1800px) {
  .shop-top-section:before {
    display: none;
  }
}
.shop-top-section:after {
  content: url('../img/shop-after.png');
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1400px) {
  .shop-top-section:after {
    display: none;
  }
}
.woocommerce ul.products li.product {
  text-align: center;
  border-radius: 15px;
  padding: 25px 30px;
  border: 1px solid rgba(51, 64, 79, 0.16);
}
@media (max-width: 480px) {
  .woocommerce ul.products li.product {
    padding: 15px;
    width: 100% !important;
  }
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 25px;
  font-weight: 500;
  color: #33404f;
  min-height: 101px;
}
.woocommerce ul.products li.product .price del, .woocommerce ul.products li.product .price ins {
  display: block;
}
.woocommerce ul.products li.product .price del {
  font-size: 19px;
  font-weight: 400;
  color: #62758a;
  opacity: 1;
}
.woocommerce ul.products li.product .price ins {
  font-size: 25px;
  font-weight: 500;
  color: #33404f;
  text-decoration: none;
}
.woocommerce ul.products li.product .button {
  font-size: 19px;
  background: #ffa800;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  min-width: 156px;
}
.woocommerce ul.products li.product .button:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.woocommerce ul.products li.product .added_to_cart {
  width: 100%;
}
.woocommerce span.onsale {
  display: none;
}
.woocommerce div.product div.images {
  margin-bottom: 118px;
}
@media (max-width: 768px) {
  .woocommerce div.product div.images {
    margin-bottom: 35px;
  }
}
.woocommerce div.product .stock {
  color: #33404f;
}
.woocommerce div.product .price del, .woocommerce div.product .price ins {
  display: block;
}
.woocommerce div.product .price del {
  font-size: 19px;
  font-weight: 400;
  color: #62758a;
  opacity: 1;
  margin-right: 20px;
}
.woocommerce div.product .price ins {
  font-size: 25px;
  font-weight: 500;
  color: #33404f;
  text-decoration: none;
}
.woocommerce div.product .product_title {
  font-size: 50px;
}
@media (max-width: 480px) {
  .woocommerce div.product .product_title {
    font-size: 35px;
  }
}
.woocommerce div.product form.cart .button {
  background: #ffa800;
  border-radius: 50px;
  padding: 20px 25px;
}
.woocommerce .woocommerce-result-count {
  display: none;
}
@media (max-width: 768px) {
  .woocommerce .related.products ul.products[class*=columns-] li.product, .woocommerce-page .related.products ul.products[class*=columns-] li.product {
    width: 100% !important;
  }
}
.related.products {
  clear: both;
}
.related.products h2 {
  text-align: center;
  margin-bottom: 100px;
}
.related.products ul.products li.product, .related.products .woocommerce-page ul.products li.product {
  margin-bottom: 0;
}
.wpgis-popup:hover {
  text-decoration: none;
}
.single-wrap-section {
  position: relative;
}
.single-wrap-section:before {
  content: url('../img/single-product-before.png');
  position: absolute;
  top: 97px;
  left: 0;
}
@media (max-width: 1700px) {
  .single-wrap-section:before {
    display: none;
  }
}
.single-wrap-section:after {
  content: url('../img/single-product-after.png');
  position: absolute;
  top: 198px;
  right: 0;
}
@media (max-width: 1700px) {
  .single-wrap-section:after {
    display: none;
  }
}
.related-top-section {
  position: relative;
}
.related-top-section .swiper-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.related-top-section .swiper-button.button-prev {
  left: 0;
}
.related-top-section .swiper-button.button-next {
  right: 0;
}
@media (max-width: 480px) {
  .related-top-section .swiper-button {
    top: 60px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.home-products h2 {
  text-align: center;
  margin-bottom: 50px;
}
.cart-contents {
  position: relative;
}
.cart-contents span.wrap-number {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffa800;
  border-radius: 50%;
  top: -10px;
  right: -10px;
}
.cart-contents span.wrap-number .number {
  color: #fff;
  font-size: 14px;
  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%);
}
.search-box {
  position: relative;
  display: inline-block;
  font-size: 0;
  z-index: 0;
}
@media (max-width: 768px) {
}
.search-box .search-form {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-box .search-form button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  border: none;
  width: 40px;
  background: transparent;
  color: #33404f;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-box .search-form button:hover {
  color: #ffa800;
}
.search-box .search-form.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.search-box .search-form.active ~ .search-btn img {
  display: none;
}
.search-box input[type="text"] {
  width: 270px;
  padding: 0 40px 0 50px;
  font-size: 16px;
  border-radius: 10px;
  background: #f0f0f0;
}
@media (max-width: 480px) {
  .search-box input[type="text"] {
    width: 180px;
  }
}
.search-box .search-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  font-size: 24px;
  position: relative;
  z-index: 2;
  color: #33404f;
  cursor: pointer;
}
.search-box .search-btn::before, .search-box .search-btn img {
  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%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cat-buttons {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 480px) {
  .cat-buttons {
    display: block;
  }
}
.cat-buttons a.item {
  margin-bottom: 20px;
  display: inline-block;
  margin-right: 5px;
}
@media (max-width: 480px) {
  .cat-buttons a.item {
    margin-bottom: 15px;
  }
}
.cat-buttons {
  font-size: 0;
}
.cat-buttons a.item {
  -webkit-flex-basis: 180px;
  -moz-flex-basis: 180px;
  -ms-flex-basis: 180px;
  flex-basis: 180px;
}
.cat-buttons .taxonomy-list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cat-buttons .taxonomy-list .taxonomy-list-item {
  margin-bottom: 0;
}
.cat-buttons a {
  font-size: 18px;
  padding: 18px 20px;
  border: 1px solid #ffa800;
  border-radius: 50px;
}
.cat-buttons a.active, .cat-buttons a:hover {
  text-decoration: none;
  background: #ffa800;
  color: #fff;
}
@media (max-width: 480px) {
  .tax-title a {
    margin: 0 0 15px 0;
  }
}
.woocommerce-ordering {
  float: none;
  -webkit-flex-basis: 190px;
  -moz-flex-basis: 190px;
  -ms-flex-basis: 190px;
  flex-basis: 190px;
  margin-bottom: 20px !important;
}
.woocommerce-ordering select {
  background-color: #dedede;
  padding: 18px 15px;
  font-size: 19px;
  cursor: pointer;
  border-radius: 50px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: 14px;
}
@media (max-width: 768px) {
  .woocommerce-ordering {
    float: none !important;
  }
}
@media (max-width: 768px) {
  .filter-btn-wrap {
    display: block;
  }
}
.tax-name .tax-image, .tax-name .tax-title {
  float: none;
}
.tax-name .tax-image a, .tax-name .tax-title a {
  display: inline-block;
}
.select2-container--default .select2-selection--single {
  background: rgba(196, 196, 196, 0.26);
  height: 67px;
  border-radius: 50px;
  border: none;
  padding: 0 10px 0 45px;
  font-size: 19px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 67px;
  right: 0;
  width: 45px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 67px;
}
.tpl-site-info .home-testimonials {
  padding: 60px 0;
}
bdi {
  font-weight: 700;
  font-size: 25px;
  color: #33404f;
}
del bdi {
  font-weight: 400;
  font-size: 19px;
  color: #62758a;
}
.home .filter-btn-wrap {
  text-align: center;
}
.bottom-shop-info {
  margin-bottom: 30px;
}
.bottom-shop-info .lists {
  margin-bottom: 20px;
  padding: 28px 36px;
  border: 1px solid rgba(51, 64, 79, 0.16);
  border-radius: 15px;
}
.bottom-shop-info .lists ul {
  margin-bottom: 20px;
}
.bottom-shop-info .lists ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
  font-size: 19px;
}
@media (max-width: 768px) {
  .bottom-shop-info .lists ul li {
    font-size: 16px;
  }
}
.bottom-shop-info .lists ul li:first-child:before {
  width: 8px;
  height: 8px;
}
.bottom-shop-info .lists ul li:last-child {
  margin-bottom: 0;
}
.bottom-shop-info .lists ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #ffa800;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .bottom-shop-info .lists ul li:before {
    top: 9px;
  }
}
