/*
 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: #be1e2d;
    --color-primary-hover: #a1030d;
    --color-secondary: #490a0a;
    --color-secondary-hover: #7a0000;
    --color-light: #f3f3f3;
    --font-primary: "Titillium Web", serif;
    --time: .25s;
    --holder-color: #d6d6d6;
    --container-width: 1200px;
}

*,
*::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;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    background: #ffffff;
    font-family: var(--font-primary);
}

.main {
    --space-x: 120px;
    --space-y: 140px;
    --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;
}

a:hover {
    text-decoration: none;
}



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

h1,
h1 {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 30px;
}

h2,
h2 {
    font-size: 32px;
    line-height: 34px;
    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;
}

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

.flex {
    display: flex;
    flex-wrap: wrap;
}

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

button {
    cursor: pointer
}

: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;
    font-size: 13px;
}

textarea {
    height: 100px;
    resize: none;
    padding: var(--padding);
}

.form-field {
    --height: 52px;
    height: var(--height);
    line-height: var(--height);
    padding: 0 var(--padding);
}

textarea,
.form-field {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ced4da;
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    border-radius: var(--radius);
}

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

.w-100 {
    width: 100%;
}

.relative {
    position: relative;
}

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

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

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

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

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

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

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

.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-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;
    max-width: var(--container-width);
}

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

.image {
    position: relative;
    z-index: 0;
}

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

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

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

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

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

.search-btn {
    cursor: pointer;
    margin-left: 20px;
}

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

.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 .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 .main-btn {
    margin-top: 35px;
}

.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: 30px;
    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: top center;
    position: relative;
}

.sub-banner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, 0.6951155462184874) 78%);
}

.sub-banner.without-overlay::after {
    display: none;
}

.sub-banner .container {
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    position: relative;
    z-index: 2;
}

.sub-banner .text-center {
    margin-bottom: 100px;
}


.sub-banner h1 {
    font-size: 70px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

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

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

.nice-select.open .list {
    width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    row-gap: 0;
}

.nice-select.open .list li {
    width: 100%;
}

.nice-select:after {
    width: 11px;
    height: 7px;
    border: none;
    background-image: url(assets/images/arrow-select.png);
    background-repeat: no-repeat;
    right: 18px;
    margin-top: -2px;
    transition: all 0.3s ease-in-out;
}

.nice-select.open:after {
    border: none;
    margin-top: -4px;
    transform: rotate(-180deg);
    right: 22px;
}


@media (max-width: 1800px) {
    .header .container {
        max-width: 1160px !important;
    }

    .container {
        max-width: 1080px !important;
    }


    .sub-banner .container {
        height: 430px;
    }

    .sub-banner .text-center {
        margin-bottom: 65px;
    }

    .sub-banner h1 {
        font-size: 60px;
        line-height: 55px;
    }
}

@media (max-width: 1367px) {

    .header .container {
        max-width: 90% !important;
    }

    .container {
        max-width: 85% !important;
    }

    .sub-banner .container {
        height: 380px;
    }

    .sub-banner h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .sub-banner .text-center {
        margin-bottom: 45px;
    }

    body {
        font-size: 15px;
    }



}

@media (max-width: 1040px) {
    .sub-banner h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .sub-banner .text-center {
        margin-bottom: 30px;
    }

    .sub-banner .container {
        height: 360px;
    }

    .sub-banner::after {
        background: rgb(0, 0, 0);
        background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    }
}

@media (max-width: 767px) {
    .sub-banner .container {
        height: 300px;
    }

    .sub-banner .text-center {
        margin-bottom: 20px;
    }

    .sub-banner h1 {
        font-size: 35px;
        line-height: 40px;
    }

}


#site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(247, 231, 233);
    background: linear-gradient(180deg, rgba(247, 231, 233, 1) 43%, rgba(255, 255, 255, 1) 88%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.loader-text {
    font-size: 24px;
    color: #333;
    animation: fadeInOut 1.5s infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}