/*
 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: #007F3D;
    --color-primary-hover: #1b80cb;
    --color-secondary: #490a0a;
    --color-secondary-hover: #7a0000;
    --color-light: #f3f3f3;
    --font-primary: 'Poppins', sans-serif;
    --time: .25s;
    --holder-color: #d6d6d6;
}

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

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

body {
    --container-width: 1450px;
    margin: 0;
    color: #000;
    font-size: 20px;
    background: #ffffff;
    font-family: var(--font-primary);
}

.main {
    --space-250: 250px;
    --space-200: 200px;
    --space-180: 180px;
    --space-160: 160px;
    --space-140: 140px;
    --space-130: 130px;
    --space-120: 120px;
    --space-80: 80px;
}

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: 34px;
}

strong {
    font-weight: 600;
}

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

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

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

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 {
    --radius: 15px;
    height: 100px;
    resize: none;
    padding: var(--padding);
}

.form-field {
    --height: 50px;
    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;
}

.overflow {
    overflow: hidden;
}

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

.form-style {
    --space: .5%;
    --radius: 100px;
    --padding: 15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    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);
}

.form-style .site-button {
    display: flex;
    align-items: center;
}

.form-style .site-button img {
    margin-left: 25px;
}

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

.site-button {
    --radius: 100px;
    --height: 58px;
    --padding: 40px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #ffffff;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    color: #ffffff;
    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:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.site-button img {
    margin-left: 15px;
}

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

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

.button-primary:hover {
    background: var(--color-primary-hover);
    border-color: 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;
    padding: 0 15px;
    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 !important;
}

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

.owl-nav .disabled {
    opacity: .2;
    pointer-events: none;
}

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

.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: rgba(0, 0, 0, .85);
}

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

.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 .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;
    background: #f1f1f1;
    background-size: cover;
    background-position: center center;
}

.sub-banner .container {
    height: 592px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-banner h1 {
    color: #ffffff;
    font-size: 70px;
    font-weight: 600;
    line-height: 75px;
    margin: 0;
    text-transform: uppercase;
}

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

.breadcrumbs {
    --space: 20px;
    display: flex;
    flex-wrap: wrap;
}

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

.pagination-ul {
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.pagination-ul a,
.pagination-ul 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;
}

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

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

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

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

.no-vecancies-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    padding: 30px;
    background: #f1f1f1;
    border-radius: 6px;
}

.no-vecancies-container p {
    line-height: 28px;
}

.no-vecancies-container a {
    font-weight: 500;
}

.no-vecancies-container a:hover {
    color: var(--color-primary);
}

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

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px);
    position: relative;
    z-index: 2;
}

.owl-dot {
    width: 20px;
    height: 5px;
    background: #ffffff;
    transition: width .5s ease-in-out;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
}

.owl-dot:not(.active) {
    opacity: .7;
    width: 5px;
}

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


label::after{
    content:"";
    position: absolute;
    left: 0;
    top:0;
    background: red;
}