@import url(variable.css);
@import url(fonts.css);

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--primaryTextColor);
  line-height: 24px;
}

img {
  max-width: 100%;
}

figure {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  height: 100%;
}

figure img {
  max-height: 100%;
}

.strong {
  font-weight: 800;
}

small {
  font-size: 12px;
}

.container {
  max-width: 1600px;
  padding: 10px 40px;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
  color: inherit;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(238 193 40 / 32%);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.header {
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgb(0 0 0 / 6%);
  transition: all ease .3s;
  width: 100%;
  background: var(--primaryBrown);
  padding: 10px 0;
}

.header .logo img {transition: all ease .2s;height: 70px;}

.header.fixed {
  position: fixed;
}

.header.fixed .logo img {height: 60px;}

.header .btn-primary {
  padding: 0px 20px;
}
.header .btn-primary:hover {
  background: none;
    color: #fff
}

.header .btn-primary img {
}

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

h1 {
  font-size: 30px;
  line-height: 45px;
  color: #146e65;
}

h2 {
  font-size: 26px;
  margin: 0 0 20px;
  line-height: 36px;
}

h3 {
  color: #146e65;
  font-size: 30px;
  line-height: 35px;
  margin: 0 0 20px;
  font-family: "Alata", sans-serif;
  position: relative;
  font-weight: 400;
  color: var(--primaryBrown);
  text-align: left;
}

h3:after {
  content: "";
  background: url(../images/underline.svg) no-repeat;
  height: 3px;
  width: 200px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

h3.golden {
  color: var(--primaryGolden);
}

h3.golden:after {
  background: url(../images/underline-golden.svg) no-repeat;
}

h3.center {
  display: table;
  margin: 0 auto;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primaryColor);
}

h5 {
  font-size: 24px;
  line-height: 39px;
}

h6 {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}

.show_767 {
  display: none;
}

.btn {
  line-height: 48px;
  padding: 0px 30px;
  display: inline-flex;
  align-items: center;
  height: 50px;
  border-radius: 0;
  font-size: 16px;
  font-family: "Alata", sans-serif;
  gap: 10px;
}

.btn-primary {
  border: solid 1px var(--primaryGolden);
  background: var(--primaryGolden);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--primaryGolden);
  color: var(--primaryGolden);
  background: none;
}

.btn-trinary {
  border: 1px solid var(--primaryBrown);
  color: var(--primaryBrown);
  background: none;
}

.btn-secondary.focus, .btn-secondary:focus {
  box-shadow: 0 0 0 .2rem rgb(224 183 127 / 40%);
}

input {
  height: 50px;
  border: solid 1px #444 !important;
}

.btn-blank {
  background: none;
}

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

.btn-primary:hover {
  border: 1px solid var(--primaryGolden);
  background: #fff;
  color: var(--primaryGolden);
}
.btn-secondary:hover,
.btn-trinary:hover {
  background: var(--primaryBrown);
  color: #fff !important;
}

.btn-secondary:hover img,
.btn-trinary:hover img{
  filter: brightness(0) invert(1)
}

.btn-small {
  height: 28px;
  padding: 0 14px;
  font-size: 8px;
}

.text_link:hover {
  text-decoration: underline;
}

.read {
  font-size: 12px;
  color: var(--primaryRed);
  text-decoration: underline;
}

.logo {
  display: block;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.noBg {
  background: none !important;
}

.modal-body {
  padding: 14px 20px;
}

.modal-body h3 {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
}

.modal-body h3 .close {
  height: 18px;
  margin: 0 0 0 auto;
  cursor: pointer;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 10px;
  color: #603509;
}

.breadcrumb-item.active {
  color: inherit;
  font-weight: 800;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "|";
  position: relative;
  top: -1px;
  padding: 0 6px;
}

.badge {
  font-size: 16px;
  border-radius: 5px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
}

.badge.primary {
  background: rgb(238 193 40 / 32%);
  color: #DB8520;
}

.owl-dots {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.owl-dot {
  height: 14px;
  width: 14px;
  border: solid 1px #603509 !important;
  border-radius: 50px;
}

.owl-dot.active {
  background: #603509 !important;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

.modal-title {
  font-size: 24px;
}

.modal-content {
  border: none;
  box-shadow: 0px 4px 112px rgb(12 108 173 / 10%);
  border-radius: 10px;
}

.modelFooter {
  display: flex;
  justify-content: space-between;
}

.modelFooter .btn {
  width: 48%;
  text-align: center;
  padding: 12px 10px;
}

.modal-header {
  border: 0;
}

.form-group label {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 0;
}

.form-group label.error {
  color: red
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  height: 40px;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="number"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  height: inherit;
}

.owl-carousel {
  display: block;
}

#goToTop {
  display: none;
  position: fixed;
  bottom: 66px;
  right: 20px;
  z-index: 99;
  font-size: 34px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  border: 1px solid #707070;
  background: #fdf0f1;
  color: #564300;
  transition: all ease 0.2s;
}

#goToTop:hover {
  background: #707070;
  color: #fff
}

.thumbWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.thumbWrap .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 5px;
  font-size: 30px;
}

.owl-nav button {
  width: 34px;
  height: 34px;
  border: solid 1px #C4C4C4 !important;
  transition: all ease 0.2s;
  border-radius: 5px !important;
}

.thumbWrap .owl-stage-outer {
  padding: 10px 18px;
  width: 105%;
}

.thumbWrap .owl-stage {
  display: flex;
  flex-wrap: wrap;
}

.thumbWrap .thumb {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 10px 0px #EEE;
  padding: 14px 14px 8px 14px;
  position: relative;
  transition: all ease .2s;
  margin: 0 0 20px;
  display: block;
}

.thumbWrap .thumb:hover {
  box-shadow: 0px 0px 30px 0px #efefef;
}

.thumbWrap .thumb figure img {
  width: auto
}

.arrow {
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all ease .2s;
  position: absolute;
  bottom: 5px;
  right: 10px;
  border-radius: 50px;
}

.thumb:hover .arrow {
  background: #ddd;
  right: 5px;
}

.social-icons {
  display: flex;
  margin: 0 0 0 -11px;
}

.social-icons a {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all ease .2s;
}

.social-icons a:hover {
  background: #fff
}

.blogSec {
  padding: 100px 0 100px;
  background: var(--lightYellow);
}

.blogSec h3 {
  margin: 0 0 70px;
}

.blogThumb .heading {
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
  color: var(--primaryRed);
}

.blogThumb .date {
  font-family: "Philosopher", sans-serif;
  font-size: 16px;
  color: #999;
}

.blogThumb {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 6%);
  padding: 10px 10px 20px;
  margin: 0 0 30px;
}

.blogThumb figure {
  position: relative;
}

.blogThumb figure img {
  width: 100%;
}

.blogThumb .heading {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 20px 0 0;
  line-height: 30px;
  min-height: auto;
}

.blogThumb p {
  color: #603509;
  font-size: 12px;
  line-height: 16px;
  min-height: 70px;
}

input[type="checkbox"] {
  accent-color: #E70F14;
}

.productThumb {
  margin: 0;
  position: relative;
  box-shadow: none;
}

.productThumb figure {
  align-items: flex-start;
  overflow: hidden;
}

.productThumb figure img {
  width: 100%;
}

.productThumbContentArea {
  background: #FFF;
  padding: 20px;
}

.productThumbContentArea p {
  margin: 0 0 6px;
}

.productThumb .heading {
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 0 10px;
  font-family: "Philosopher", sans-serif;
  font-size: 20px;
}

.innerPageTopMargin {
  margin: 40px 0 0;
}

.animatedCounterSec {
  display: flex;
  position: relative;
}

.animatedCounterSec .item {
  padding: 28px 10px;
}

.animatedCounterSec .item p {
  margin: 10px 0 0;
}

.animatedCounterSec .number {
}

.table {
  margin: 0 0 0 10px;
}

.table a {
  text-decoration: underline;
}

.table .row {
  background: #fff;
  padding: 14px 0;
}

.table .row:first-child {
  border-top: solid var(--primaryColor);
}

.table .row:not(last-child) {
  border: solid var(--primaryColor);
  border-top: 0;
}

.tableHeader {
  background: var(--primaryColor) !important;
  color: #fff;
}

.footerContactRow {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 0 0 40px;
}

.footerContactRow .thumb {
  display: flex;
  gap: 20px;
}

.footerContactRow .phonewrap {
  display: flex;
  gap: 50px;
}

.footerContactRow .phonewrap figure {
  align-items: flex-start
}

.footerContactRow .thumb figure img {
  width: 30px;
}

.footerContactRow .heading {
  font-size: 20px;
  margin: 0 0 10px;
  font-family: "Alata", sans-serif;
}

.footerContactRow p {
  line-height: 26px;
  font-size: 14px;
}


.footerLinksWrap {
  padding: 40px 40px;
}

.footerLinksWrap a {
  color: #eee;
  transition: all ease .2s;
}

.footerLinksWrap a:hover {
  color: #DB8520;
  padding: 0 0 0 2px;
}

.modelFormSec .form-control {
  margin: 0 0 10px;
}

@media screen and (max-width: 1320px) {}

@media screen and (max-width: 1200px) {
  .container {
    padding: 10px 14px;
  }
}

@media only screen and (max-width: 980px) {
  .logo {
    margin: 0;
  }
  .logo img {
    height: 80px;
  }

  header .btn-primary {
    margin: 0 70px 0 auto;
    padding: 0px !important;
    width: 50px;
    justify-content: center;
  }

  .header .btn-primary img {
    margin: 0;
  }

  .btn-primary span {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {}

@media screen and (max-width: 1024px) {
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 0;
  }

  .header .container {
    padding: 10px 14px;
  }

  h1 {
    font-size: 20px;
    line-height: 24px;
    margin: 20px 0 10px;
  }

  h2 {
    font-size: 30px;
    margin: 10px 0 30px !important;
  }

  h3 {
    font-size: 30px !important;
    margin: 0 0 30px !important;
  }

  h4 {
    line-height: 32px;
  }

  .hide_767 {
    display: none;
  }

  .show_767 {
    display: block;
  }

  #goToTop {
    bottom: 70px;
  }

  .modal-dialog {
    max-width: 90vw !important;
    margin: 1.75rem auto;
  }

  .animatedCounterSec {
    margin: 0 !important;
    flex-wrap: wrap;
  }

  .animatedCounterSec .item {
    width: 50%;
  }
}