:root {
  --color-primary: #01abb6;
  --color-primary-hover: #037c85;
  --color-secondary: #490a0a;
  --color-secondary-hover: #7a0000;
  --font-primary: 'Poppins', sans-serif;
  --transition-time: .35s;
  --container-width: 1200px;
  --container-lg-width: 1400px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: #000;
  font-size: 15px;
  background: #ffffff;
  font-family: var(--font-primary);
  font-weight: 300;
}

a {
  color: #000;
  text-decoration: none;
  -moz-transition: all var(--transition-time) ease;
  -o-transition: all var(--transition-time) ease;
  -webkit-transition: all var(--transition-time) ease;
  -ms-transition: all var(--transition-time) ease;
  transition: all var(--transition-time) ease;
}

/* a:hover {
  color: var(--color-primary);
} */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p {
  line-height: 24px;
  font-weight: 300;
}

p:only-child,
p:last-child {
  margin: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

small,
.small {
  font-size: 14px;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

button,
[role=button] {
  cursor: pointer
}

:disabled {
  cursor: default
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  line-height: inherit;
}

span {
  display: inline-block;
}

select {
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:focus {
  outline: none;
}

textarea {
  min-height: 150px;
  resize: none;
}

.form-field {
  display: block;
  width: 100%;
  height: 52px;
  padding: 5px 15px;
  background-color: #fff;
  border: 1px solid #ced4da;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

iframe {
  border: 0;
}

.w-25 {
  width: 100% !important;
}

.w-50 {
  width: 100% !important;
}

.w-75 {
  width: 100% !important;
}

.w-100 {
  width: 100% !important;
}

/* -------------------------------------------------------------- */

.p-0 {
  padding: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

/* -------------------------------------------------------------- */

.m-0 {
  margin: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

/* -------------------------------------------------------------- */

.button {
  display: inline-block;
  cursor: pointer;
  background-color: #d4d5d6;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 30px;
  height: 44px;
  line-height: 44px;
  font-size: 1rem;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
}

.button+.button {
  margin-left: 10px;
}

.button-primary {
  color: #ffffff;
  background: var(--color-primary);
}

.button-primary:hover {
  background: var(--color-primary-hover);
}

/* -------------------------------------------------------------- */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* -------------------------------------------------------------- */

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.container,
.container-lg {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: var(--container-width);
}

.container-lg {
  max-width: var(--container-lg-width);
}

/* -------------------------------------------------------------- */

.text-white {
  color: #ffffff;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

/* -------------------------------------------------------------- */

.zoom-effect {
  overflow: hidden;
}

.zoom-effect>a {
  display: block;
}

.zoom-effect img {
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
  will-change: transform;
}

.zoom-effect:hover img {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

/* -------------------------------------------------------------- */

.owl-nav button {
  --size: 50px;
  --side: 80px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8d8d8 !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
  will-change: transform;
}

.owl-nav button span {
  font-size: 30px;
  color: #fff;
}

.owl-nav button.owl-prev {
  left: var(--side);
}

.owl-nav button.owl-next {
  right: var(--side);
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: var(--color-primary-hover) !important;
}

.owl-nav button.owl-prev:hover span,
.owl-nav button.owl-next:hover span {
  color: #fff;
}

/* -------------------------------------------------------------- */

.pagination {
  margin-top: 40px;
  display: flex
}

.pagination a {
  --size: 47px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .2);
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center
}

.pagination .active,
.pagination a:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.pagination li+li {
  margin-left: 14px
}

/* -------------------------------------------------------------- */

.search-pannel {
  --search-height: 40px;
  position: absolute;
  height: var(--search-height);
  top: -8px;
  width: 200px;
  display: none;
  border-radius: 30px;
  overflow: hidden;
  right: calc(100% + 10px);
  z-index: 99;
  display: none;
}

.search-expand {
  width: 100%;
  color: #000;
  font-weight: 400;
  z-index: 999;
  padding: 0 5% 0 20px;
  background: #fff;
  border: none;
  font-size: 14px;
  height: var(--search-height);
}

.search-btn {
  color: red;
  cursor: pointer;
}

/* -------------------------------------------------------------- */

.contact-map {
  min-height: 600px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
}

.wpcf7 form .wpcf7-response-output {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #dc3232;
  border-color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background-color: #46b450;
}

/* -------------------------------------------------------------- */

.default-page {
  padding: 100px 0;
}

.default-page ol:not(.pagination),
.default-page ul:not(.pagination) {
  padding-left: 28px;
}

.default-page ol:not(:last-child),
.default-page ul:not(:last-child) {
  margin: 0 0 20px 0;
}

/* -------------------------------------------------------------- */

.error-404,
.search-page-inner,
.search-noresult-inner {
  text-align: left;
  padding: 90px 120px;
}

.error-404 h1,
.search-page h1,
.search-noresult h1 {
  font-size: 30px;
}

.error-404 h1 {
  margin-bottom: 15px;
}

.error-404 h3 {
  margin: 40px 0 25px 0;
}

.error-404 h4 {
  margin-bottom: 15px;
}

.error-404 ul {
  padding-left: 25px;
  list-style: disc;
}

.error-404 ul li {
  font-size: 15px;
  margin-bottom: 0;
}

.error-404 ul li+li {
  margin-top: 10px;
}

.error-404 .button {
  margin-top: 30px;
}

/* -------------------------------------------------------------- */

.search-page ul {
  padding: 0;
  margin: 40px 0 0 0;
  list-style: none;
}

.search-page li {
  border: 1px solid #ddd;
}

.search-page li+li {
  margin-top: 20px;
}

.search-page li a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.search-page .image {
  width: 30%;
}

.search-page .content {
  width: 70%;
  padding: 20px 30px;
}

/* -------------------------------------------------------------- */

.search-no-results .search-form {
  display: flex;
  margin-top: 20px;
  max-width: 380px;
  width: 100%;
}

.search-no-results .search-form label {
  width: 100%;
}

.search-no-results .search-field {
  width: 100%;
  padding-left: 15px;
  border: 1px solid #999;
}

.search-no-results .search-field,
.search-no-results .search-submit {
  height: 40px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.search-no-results .search-submit {
  border: none;
  padding: 0 20px;
  color: #ffffff;
  font-weight: bold;
  margin-left: 5px;
  background: var(--color-primary);
}

.search-no-results .search-submit:hover {
  background: var(--color-primary-hover)
}

/* -------------------------------------------------------------- */

.sub-banner {
  padding: 0;
  background: #f1f1f1;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  position: relative;
}

.sub-banner .container {
  height: 490px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

.sub-banner h1 {
  color: #ffffff;
  position: relative;
  margin: 0;
  line-height: 1;
}

.sub-banner h1::after {
  content: "";
  position: absolute;
  left: 0;
  top: -25px;
  width: 168px;
  height: 3px;
  background: var(--color-primary);
}

/* -------------------------------------------------------------- */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li+li {
  margin-left: 30px;
}

.breadcrumbs a {
  position: relative;
  text-transform: capitalize;
}

.breadcrumbs a:hover,
.breadcrumbs a.active {
  color: var(--color-primary);
}

.breadcrumbs a::after {
  content: "";
  width: 8px;
  height: 11px;
  position: absolute;
  transform: translate(10px, 5px);
  background: url(../images/arrow-right.png) no-repeat;
}