/*
 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: #88183b;
    --color-primary-hover: #a1030d;
    --color-secondary: #490a0a;
    --color-secondary-hover: #7a0000;
    --color-light: #f3f3f3;
    --font-primary: "Poppins", sans-serif;
    --time: 0.4s;
    --holder-color: #d6d6d6;
}

*,
*::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: 1rem;
    background: #ffffff;
    font-family: var(--font-primary);
    --container-width: 1600px;
}

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

a {
    color: inherit;
    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,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    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"] {
    -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;
}

:focus {
    outline: none;
}

label {
    display: inline-block;
    font-size: 1rem;
}

textarea {
    resize: none;
}

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

.w-100 {
    width: 100%;
}

.relative {
    position: relative;
}

/* -------------------------------------------------------------- */
.outlin-btn {
    color: #ffffff;
    font-size: 19px;
    font-weight: 300;
    border: 1px solid #ffffff;
    padding: 13px 15px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.outlin-btn img {
    margin-left: 5px;
}

.outlin-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: right 0.35s ease-in-out, border-radius 0.35s ease-in-out;
    border-radius: 0 0 0 100px;
    z-index: -1;
}

.outlin-btn:hover::after {
    right: 0;
    border-radius: 0;
}

.fill-btn {
    font-size: 21px;
    padding: 15px 22px;
    width: fit-content;
    display: block;
    border: none;
    color: #ffffff;
    background: #5f021f;
    font-family: "tbj_endgraph_minilight";
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.fill-btn img {
    margin-left: 6px;
}

.form_style .fill-btn img {
    transform: translateX(38px);
}

.fill-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 0;
    height: 100%;
    background: #000000;
    transition: all 0.6s ease-in-out;
    border-radius: 0 0 0 100px;
    z-index: -1;
}

.fill-btn:hover::after {
    right: 0;
    border-radius: 0;
    width: 100%;
}

.round-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #595959;
    border-radius: 50%;
}

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

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

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

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

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

.next,
.prev,
.owl_nav .owl-next,
.owl_nav .owl-prev,
.swiper-button-next,
.swiper-button-prev {
    --size: 70px;
    --side: -35px;
    --radius: 100%;
    position: absolute;
    top: 38%;
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    text-align: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    margin-top: calc(var(--size) * -0.5);
    -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;
}

.prev,
.owl_nav .owl-prev,
.swiper-button-prev {
    left: var(--side);
    right: auto;
    background-image: url(./assets/images/slider-arrow-l.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.next,
.owl_nav .owl-next,
.swiper-button-next {
    right: var(--side);
    left: auto;
    background-image: url(./assets/images/slider-arrow-r.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.next,
.prev,
.swiper-button-next,
.swiper-button-prev {
    top: 38%;
}

.next:hover,
.prev:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover,
.owl_nav .owl-prev:hover,
.owl_nav .owl-next:hover {
    background-color: #ffffff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 0 !important;
}

.next,
.prev {
    top: 57%;
    z-index: 9;
}

.next {
    right: 0;
    left: auto;
}

.prev {
    left: 0;
    right: auto;
}

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

.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: #1f1f1f;
}

.error404 .main,
.search-results .main,
.search-no-results .main {
    margin-top: 153px;
}

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

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

.sub-banner {
    padding: 0;
    background: #f1f1f1;
    background-size: cover;
    background-position: center center;
}

.sub-banner .container {
    height: 360px;
    display: flex;
    color: #ffffff;
    align-items: flex-end;
    padding-bottom: 30px;
}

.sub-banner h1 {
    font-size: 96px;
    line-height: 1;
    /* font-weight: 400; */
    letter-spacing: 1px;
    font-family: "tbj-45-extra_bold_sans_famiRg";
}

.sub-banner p {
    opacity: 0.8;
}

.wpcf7-not-valid-tip:not(:nth-child(1), input):not(:nth-child(2)) {
    display: none;
}

.separate-dial-code+input+.wpcf7-not-valid-tip:not(:nth-child(1), input):not(:nth-child(2)) {
    display: block;
}

@media screen and (max-width: 1440px) {
    .check-mark .custom-checkbox {
        margin-top: 5px;
    }
}

.wpcf7-list-item-label a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.newsletter-msg.newsletter-error{
    color: red;
}