/*
 Theme Name: Twenty Nineteen Child
 Theme URI: https://www.element8.ae
 Author: Element8
 Author URI: https://www.element8.ae
 Template: twentynineteen
 Description: Child theme for Twenty Seventeen.
 Version: 0.1
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags:
 Text Domain: twentynineteen-child
 */

:root {
  --color-primary: #ff1075;
  --color-primary-hover: #a1030d;
  --color-secondary: #490a0a;
  --color-secondary-hover: #7a0000;
  --color-light: #f3f3f3;
  --color-dark: #020404;
  --font-primary: "Poppins", sans-serif;
  --time: 0.35s;
  --holder-color: #d6d6d6;
  --container-width: 1400px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -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;
  font-size: 16px;
  background: #ffffff;
  font-family: var(--font-primary);
}

.main {
  --space-x: 120px;
  --space-y: 150px;
  --space-z: 160px;
}

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

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

h1 {
  font-size: 122px;
  line-height: 95px;
}

h2 {
  color: #020404;
  font-size: 64px;
  font-weight: 500;
  line-height: 70px;
  margin-bottom: 25px;
}

h3 {
  font-size: 26px;
  line-height: 28px;
  margin-bottom: 20px;
}

h4 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 15px;
}

h5 {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 15px;
  font-weight: 500;
}

h6 {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  font-family: var(--font-primary);
  line-height: 24px;
}

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

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 {
  margin: 0;
  -webkit-appearance: none;
}

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

input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: transparent;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
}

:disabled {
  cursor: default;
}

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

span {
  display: inline-block;
}

select {
  background-image: url("assets/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;
}

label {
  display: inline-block;
  margin: 0 0 7px 0;
  
}

label:not(.wpcf7-list-item-label) {
    font-size: 13px;
}

textarea {
  height: 90px;
  resize: none;
}

.form-field {
  padding: 0 10px 20px 0;
}

textarea,
.form-field {
  display: block;
  width: 100%;
  color: #cdcdcd;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ced4da;
}

iframe {
  border: 0;
  vertical-align: bottom;
}

.w-100 {
  width: 100%;
}

.relative {
  position: relative;
}

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

.form-style {
  --space: 1%;
  --radius: 5px;
  --padding: 15px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  margin: 0 calc(var(--space) * -1);
}

.form-style li {
  width: 100%;
  position: relative;
}

.form-style .column-2 {
  width: 48%;
}

.form-style .column-3 {
  width: 32.33%;
}

.form-style > li,
.form-style [class*="column-"] {
  margin: 0 var(--space);
}

.form-style .url-link {
  margin-top: 0;
}

.form-style span {
  display: block;
}

.form-style label {
  margin: 0;
  color: #5c5c5c;
  font-weight: 400;
  /*position: absolute;*/
  /*top:0;*/
  transition: top var(--time) ease-in-out;
}

.form-style .form-field:focus ~ label {
    top:-20px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-style i::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  background: var(--color-primary);
  transform-origin: center;
  transition: transform 0.5s ease-in-out;
}

.form-style .form-field:focus ~ i::after {
  transform: scale(1, 1);
}

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

.label-wrap input{
  margin-right:10px;
  accent-color: var(--color-primary);
}

.terms{
  display: flex;
  align-items: flex-start;
}

.terms span {
    width: 100%;
}

.terms input{
  margin:5px 10px 0 0;
  width:15px;
}

.form-style .wpcf7-list-item{
    width:100%;
}

.form-style .wpcf7-radio .wpcf7-list-item label {
    align-items:center;
}

.form-style .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
}

.form-style .wpcf7-list-item label span{
    width:calc(100% - 15px);
}

.wpcf7-spinner{
    display:none;
}

.form-style .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 4px;
}

.form-style .wpcf7-radio {
    display: flex;
    margin-top:20px;
}

.form-style .wpcf7-radio span{
    white-space: nowrap;
}

.form-style .wpcf7-list-item:first-child{ 
    margin:0;
}

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

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

.site-button + .site-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;
}

.text-white {
  color: #ffffff;
}

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

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

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

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

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

.bg-white{
  background: #ffffff;
}

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

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

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

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

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

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

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

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: var(--container-width);
}

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

.no-image {
  --size: 150px;
  position: relative;
  width: 100%;
  background-size: var(--size);
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1);
  z-index: 0;
}

.image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--holder-color);
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.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(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
  will-change: transform;
}

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

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

.owl-stage,
.owl-carousel,
.owl-stage-outer {
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .disabled {
  display: none;
}

.owl-stage-outer {
  position: relative;
  overflow: hidden;
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
}

.owl-loaded,
.owl-loading {
  display: block;
}

.owl-loading {
  opacity: 0;
}

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

.owl_nav .owl-next,
.owl_nav .owl-prev {
  --size: 50px;
  --side: -60px;
  --radius: 10%;
  position: absolute;
  top: 50%;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  cursor: pointer;
  background: var(--color-primary);
  margin-top: calc(var(--size) * -0.5);
  will-change: transform;
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  border-radius: var(--radius);
  -webkit-transition: all var(--time) ease-in-out;
  transition: all var(--time) ease-in-out;
}

.owl_nav [class*="icon-"] {
  color: #fff;
  font-size: 16px;
}

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

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

.owl_nav .owl-prev:hover,
.owl_nav .owl-next:hover {
  background: var(--color-primary-hover);
}

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

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

.store-locator-info-window a,
.store-locator-info-window p {
  font-weight: 500;
}

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

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

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

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

.page-template-default .default-page ul {
  margin: 20px 0;
  padding-left: 30px;
}

.page-template-default .default-page ul li {
  list-style: disc;
}

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

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

.error404 .main {
  margin-top: 120px;
}

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

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

.error-404 h1,
.search-page h1,
.search-noresult h1 {
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 30px;
}

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

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

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

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

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

.error-404 .site-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;
  position: relative;
  overflow: hidden;
}

.sub-banner .container {
  height: 490px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sub-banner span{
  font-weight:100;
}

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

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

.breadcrumbs li + li {
  margin-left: var(--space);
}

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

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

.breadcrumbs a::after {
  position: relative;
  font-size: 12px;
  left: calc(var(--space) / 2);
  font-family: "icomoon";
  color: #000;
}

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

.pagination {
  margin: 55px 0 0 0;
}

ul.page-numbers {
  padding: 0 15px;
  display: flex;
  justify-content: flex-end;
}

ul.page-numbers a,
ul.page-numbers span {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  display: flex;
  font-weight: 600;
  color: #858585;
  text-align: center;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

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

@keyframes motion {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 0;
  }
}

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

.pan-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index:-1; */
}
.image-wrapper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-aspect-ratio: 1920/1281) {
  .image-wrapper {
    width: 110vw;
    height: calc(110vw * 1281 / 1920);
  }
}
@media screen and (max-aspect-ratio: 1920/1281) {
  .image-wrapper {
    height: 110vh;
    width: calc(110vh * 1920 / 1281);
  }
}

.purchase-content {
  max-width: 800px;
  margin: auto;
}