:root {
  --color-primary: #1A3F79;
  --color-primary-hover: #CF202F;
  --color-secondary: #CF202F;
  --color-secondary-hover: #7a0000;
  --font-primary: 'Brandon Grotesque';
  --font-secondary: 'Ephesis', cursive;
  --transition-time: .35s;
  --container-width: 1560px;
}

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

body {
  margin: 0;
  color: #000;
  font-size: 20px;
  background: #ffffff;
  font-family: var(--font-primary);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

p {
  font-size: 20px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 30px;
}

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;
}

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

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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;
}

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 {
  --height: 89px;
  display: block;
  width: 100%;
  height: var(--height);
  line-height: var(--height);
  padding: 0 20px;
  font-size: 20px;
  background-color: #fff;
  border: 1px solid #E2E2E2;
}

iframe {
  border: 0;
}

.w-100 {
  width: 100%;
}

.dropdown {
  position: relative;
}

.underline {
  text-decoration: underline;
}

.cover {
  width: 100%;
  background-size: cover;
}

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

.button {
  display: inline-block;
  cursor: pointer;
  background-color: #d4d5d6;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 30px;
  height: 48px;
  line-height: 48px;
  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);
}

.button-white,
.button-primary {
  height: 52px;
  line-height: 52px;
  padding: 0 40px;
  display: inline-flex;
}

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

.button-white span {
  color: var(--color-primary);
}

.button-primary {
  background-color: #1A3F79;
}

.button-block {
  --height: 78px;
  height: var(--height);
  line-height: var(--height);
  color: #ffffff;
  text-align: center;
  display: block;
  text-transform: uppercase;
  padding: 0 20px;
  background: var(--color-primary);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

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

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

.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 {
  width: 100%;
  margin: 0 auto;
  max-width: var(--container-width);
}

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

.justify-center {
  justify-content: center;
}

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

.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);
}

.bg-light {
  background: rgba(238, 248, 255, 0.8);
}

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

.zoom-effect {
  overflow: hidden;
}

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

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

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

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

.owl-nav button {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  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;
}

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

.owl-nav button.owl-prev {
  left: -80px;
}

.owl-nav button.owl-next {
  right: -80px;
}

.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;
}

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

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

.owl-dot {
  width: 20px;
  height: 20px;
  background: #D9D9D9 !important;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

.owl-dot.active {
  background: var(--color-primary) !important;
}

.owl-dot:not(:first-child) {
  margin-left: 10px;
}

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

.search-pannel {
  --search-height: 50px;
  height: var(--search-height);
  width: calc(100% - 100px);
}

.search-expand {
  width: 100%;
  color: #000;
  font-weight: 400;
  padding: 0 5% 0 20px;
  background: #F1F1F1;
  border: none;
  font-size: 14px;
  height: var(--search-height);
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}

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

.scroller {
  max-height: 220px;
  width: 100%;
  overflow: auto;
}

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

ul.page-numbers {
  display: flex;
}

ul.page-numbers a,
ul.page-numbers span {
  --size: 50px;
  width: var(--size);
  height: var(--size);
  background: #f6f6f6;
  display: flex;
  font-weight: 500;
  color: var(--color-primary);
  text-align: center;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

ul.page-numbers .active,
ul.page-numbers .current,
ul.page-numbers a:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

ul.page-numbers li+li {
  margin-left: 10px
}

ul.page-numbers a:hover img {
  filter: brightness(20);
}

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

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

.store-locator-info-window a,
.store-locator-info-window p {
  font-size: 14px;
  font-weight: 400;
}

.store-locator-info-window a {
  display: block;
  margin-top: 12px;
}

.store-locator-info-window p {
  margin: 0;
  line-height: 18px;
}

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

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

.default-page ol,
.default-page ul {
  padding-left: 28px;
}

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

.default-page li+li {
  margin-top: 10px;
}

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

.error404 header,
.search-results header,
.search-no-results header {
  background: #e1e0e0;
}

div.error-404,
.search-page-inner,
.search-noresult-inner {
  text-align: left;
  padding: 120px 120px;
  margin-top: 100px;
}

.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;
}

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

.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)
}