:root {
    --main-color: #c0392b;
    --body-bg: #181616;
    --box-bg: #221f1f;
    --text-color: #ffffff;

    --nav-height: 60px;
    --space-top: 30px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Cairo", sans-serif;
    background-color: var(--body-bg);
    color: var(--text-color);
    padding-top: var(--nav-height);
}

a {
    text-decoration: none;
    color: unset;
}

img {
    max-width: 100%;
}

.main-color {
    color: var(--main-color);
}

.container {
    max-width: 1920px;
    padding: 0 40px;
    margin: auto;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #000000;
}

.nav {
    display: flex;
    height: 130px !important;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    height: var(--nav-height);
}

.nav a {
    color: var(--text-color);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    width: 100px;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.nav-menu li ~ li {
    margin-left: 30px;
}

.nav-menu a {
    text-transform: uppercase;
    font-weight: 700;
}

.nav-menu a:hover {
    color: var(--main-color);
}

.nav-menu a.btn:hover,
a.logo:hover,
a.movie-item:hover {
    color: unset;
}

.btn {
    color: #ffffff;
    padding: 0.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    position: relative;
    align-items: center;
}

.btn-hover::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--main-color);
    transition: 0.3s ease-in-out;
}

.btn-hover:hover::before {
    width: 100%;
}

.btn i,
.btn span {
    z-index: 1;
}

.btn i {
    margin-right: 1rem;
}

.hamburger-menu {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    cursor: pointer;
    z-index: 101;
    position: relative;
    display: none;
    align-items: center;
}

.hamburger {
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: var(--size);
    height: 3px;
    border-radius: 0.5rem;
    background-color: var(--text-color);
    transition: 0.4s;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    bottom: -10px;
}

.hamburger-menu.active .hamburger {
    background-color: transparent;
}

.hamburger-menu.active .hamburger::before {
    transform-origin: top left;
    transform: rotate(45deg);
    left: 6px;
}

.hamburger-menu.active .hamburger::after {
    transform-origin: bottom left;
    transform: rotate(-45deg);
    left: 6px;
}

.hero-slide-item {
    padding-top: 40%;
    position: relative;
    overflow: hidden;
}

.hero-slide-item img {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover !important;
}

.hero-slide-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    display: flex;
}

.item-content-wraper {
    padding-left: 5rem;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.item-content-wraper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.item-content-title {
    font-size: 5rem;
    line-height: 5rem;
    font-weight: 900;
}

.movie-infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: calc(var(--space-top) / 2);
}

.movie-info {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.movie-info span {
    margin-left: 5px;
}

.movie-info i {
    color: var(--main-color);
}

.movie-info ~ .movie-info {
    margin-left: 5px;
}

.item-content-description {
    font-size: 1.15rem;
    margin-top: var(--space-top);
    line-height: 1.5rem;
}

.item-action {
    margin-top: var(--space-top);
}

.carousel-nav-center {
    position: relative;
}

.carousel-nav-center .owl-nav button i {
    font-size: 3rem;
}

.carousel-nav-center .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-nav-center .owl-nav .owl-prev {
    position: absolute;
    left: 5px;
}

.carousel-nav-center .owl-nav .owl-next {
    position: absolute;
    right: 5px;
}

.owl-nav button {
    border: none;
    outline: none;
}

.owl-nav button i {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.owl-nav button:hover i {
    color: var(--main-color);
}

.top-down {
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-8 {
    transition-delay: 0.8s;
}

.owl-item.active .top-down {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.movie-item {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 140%;
    cursor: pointer;
}

.movie-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s linear;
}

.movie-item:hover img {
    transform: scale(1.2);
}

.movie-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.8);
}

.movie-item-content::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.movie-item-title {
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    font-weight: 700;
}

.section {
    padding-top: 80px;
}

.section-header {
    margin-bottom: 30px;
    padding-left: 20px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 4px solid var(--main-color);
    display: flex;
    align-items: center;
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-box {
    padding: 50px;
    margin: 15px 0;
    background-color: var(--box-bg);
    border-top: 5px solid transparent;
    transition: transform 0.3s ease-in-out;
}

.pricing-box:hover {
    transform: translateY(-20px);
}

.pricing-box.hightlight {
    border-top: 5px solid var(--main-color);
}

.pricing-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
}

.pricing-price {
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
}

.pricing-box-content {
    text-align: center;
    margin-top: 60px;
    font-size: 1.25rem;
}

.pricing-box-action {
    text-align: center;
    margin-top: 60px;
}

footer.section {
    margin-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-color: var(--box-bg);
}

footer a:hover {
    color: var(--main-color);
}

footer a.logo {
    margin-top: -2.5rem;
    display: block;
}

footer a.logo:hover {
    color: unset;
}

.social-list {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social-item {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--main-color);
}

.social-item:hover {
    background-color: var(--main-color);
    color: var(--text-color);
}

.social-item ~ .social-item {
    margin-left: 20px;
}

footer .content {
    margin-top: 20px;
}

.footer-menu {
    list-style-type: none;
}

.footer-menu a {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.footer-menu a:hover {
    transform: translateX(5px);
}

.copyright {
    padding: 10px;
    border-top: 1px solid var(--body-bg);
    background-color: var(--box-bg);
    text-align: center;
}

/* RESPONSIVE */

@media only screen and (max-width: 1280px) {
    html {
        font-size: 14px;
    }

    .hero-slide-item {
        padding-top: 50%;
    }

    .item-content-wraper {
        width: 50%;
    }
}

@media only screen and (max-width: 850px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-slide-item {
        height: max-content;
        padding-top: unset;
    }

    .item-content-wraper {
        width: 100%;
        height: 100%;
        padding-bottom: 20px;
        padding-right: 5rem;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .hero-slide-item-content {
        position: relative;
    }

    .hero-slide-item img {
        height: 100%;
    }

    .item-content-title {
        font-size: 3rem;
    }

    .hamburger-menu {
        display: grid;
    }

    .nav-menu {
        /* display: none; */
        position: absolute;
        top: 100%;
        left: -100%;
        background-color: #000000;
        flex-direction: column;
        width: 80%;
        height: 100vh;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }

    .nav-menu li {
        margin: 10px 30px;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* /////////////////////////////////////////////////////////// */

.about-section {
    width: 100%;
    height: auto;
    position: relative;
    padding: 2%;
    overflow: hidden;
}

.about-section .about-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    position: absolute;
    z-index: 1;
    left: -100%;
    animation: float-left 18s linear infinite;
}


@keyframes float-left {
    0% {
        left: -10%;

    }

    100% {
        left: 100%;

    }
}

.about-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background-image: url(../images/pattern/2.jpg);
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.about-container {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    z-index: 2;

}

.about-images {
    width: 47%;
    height: 500px;
    position: relative;
}

.about-experience {
    width: 250px;
    height: 100px;
    background-color: black;
    position: absolute;
    border-radius: 25px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid white;
    text-align: center;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    justify-content: center;
    animation: float 3s linear infinite;
    animation-delay: 1s;

}

.about-experience h5 {
    color: var(--black);
    font-weight: 900;
}

.about-experience h5 span {
    font-size: 30px;
    color: var(--color);

}

.about-images::before {
    content: '';
    width: 90%;
    height: 480px;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 5px solid red;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 10px;
    z-index: 2;
    border-bottom-right-radius: 50%;
    animation: float 3s linear infinite;
}

@keyframes float {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0;
    }
}

.about-images img {
    width: 90%;
    height: 500px;
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: cover;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 10px;
    z-index:2;
    animation: float 3s linear infinite;
    filter: drop-shadow(0 0 3px var(--black));
    animation-delay: 1.5s;
}

.about-content {
    width: 47%;
    height: auto;
    position: relative;
}

.about-content h5 {
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 900;
}

.about-content p {
    color: var(--gray);
}

.about-checklist {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-checklist-boxs {
    width: 47%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;

}

.about-checklist-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a3242425;
    border-radius: 50%;
}

.about-checklist-icon i {
    color: var(--color);
}

.about-checklist-details h6 {
    color: var(--black);
    font-weight: 600;

}

.about-socialLinks {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.about-links-details {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5%;
}

.about-links-details .about-links-icons {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray);
    border-radius: 50%;
}


.about-links-details .about-links-icons i {
    color: var(--color);
}

.about-links-content a {
    color: var(--color);
    font-weight: 900;
}

@media screen and (max-width:425px) {

    .about-images {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .about-images::before {
        content: '';
        width: 90%;
        height: 350px;
        position: absolute;
        left: 0;
        bottom: 0;
        border: 8px solid var(--color);
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-left-radius: 10px;
        z-index: 2;
        border-bottom-right-radius: 50%;
        animation: float 3s linear infinite;
    }


    .about-images img {
        width: 90%;
        height: 380px;
        position: absolute;
        right: 0;
        bottom: 0;
        object-fit: cover;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 10px;
        z-index: 0;
        animation: float 3s linear infinite;
        filter: drop-shadow(0 0 3px var(--black));
        animation-delay: 1.5s;
    }

    .about-content {
        width: 100%;
        height: auto;
        position: relative;
    }


    .about-checklist-boxs {
        width: 100%;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;

    }


    .about-content h2 {
        font-size: 30px;
        font-weight: 900;
    }


}

@media screen and (min-width:425px) and (max-width:768px) {

    .about-images {
        width: 100%;
        height: 500px;
        position: relative;
    }

    .about-images::before {
        content: '';
        width: 90%;
        height: 400px;
        position: absolute;
        left: 0;
        bottom: 0;
        border: 8px solid red;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-left-radius: 10px;
        z-index: 2;
        border-bottom-right-radius: 50%;
        animation: float 3s linear infinite;
    }


    .about-images img {
        width: 90%;
        height: 400px;
        position: absolute;
        right: 0;
        bottom: 0;
        object-fit: cover;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 10px;
        z-index: 0;
        animation: float 3s linear infinite;
        filter: drop-shadow(0 0 3px var(--black));
        animation-delay: 1.5s;
    }

    .about-content {
        width: 100%;
        height: auto;
        position: relative;
    }

}


/* -----------------------------FAQ section --------------------------- */

.faq {
    margin-bottom: 5%;
    margin-top: 5%;
    position: relative;
    background-image: url(../images/pngs/dots2.png);
}

.faq .title {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    color: var(--color);
    margin-top: 40px;
    margin-bottom: 30px;

}

.faq .item-content-title{
    margin-bottom: 3%;
}

.faq .title span {
    color: var(--black);
}




.questions-container {
    max-width: 600px;
    margin: 0 auto;
}

.question {
    border: 1px solid var(--text-color);
    margin-bottom: 2%;
    padding: 1%;
    border-radius: 50px;
    position: relative;
}

.question::before{
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #c0392b;
    border-top-left-radius: 50px;
    transition: 0.5s;
    border-bottom-left-radius: 50px;
}
.question:hover:before{
    width: 100%;
    border-radius: 50px;
}

.question button {
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-align: start;
    border: none;
    outline: none;
    font-size: 17px;
    color: var(--black);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.question p {
    max-height: 0;
    opacity: 0;
    font-weight: 500;
    text-transform: initial;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;

}

.d-arrow {
    transition: transform 0.5s ease-in;
    color: #fff;
}

/*add this class when click*/

.question p.show {
    max-height: 500px;
    opacity: 1;
    padding: 0px 15px 30px 15px;
}

.rotate {
    transform: rotate(90deg);
    transition: 0.5s ease; 
}



/* Testimonial Section  */

.testimonial-section {
    width: 100%;
    height: auto;
    margin-bottom: 5%;
    position: relative;
    padding: 3%;
}


.testimonial-title {
    margin-bottom: 5%;
}

.testimonial-title h2 {
    color: var(--dBlue);
}

.testimonial-title h2 span {
    color: var(--color);
}

.testimonial-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5%;
    border-radius: 30px;
    background-color: rgb(26, 25, 25);
    margin-top: 3%;
}

.testimonial-content .testimonial-icons i {
    color: gold;
    filter: drop-shadow(0 0 1px var(--black));
}

.testimonial-client {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-client .testimonial-image {
    width: 30%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-client .testimonial-image img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    border-radius: 50%;
}

.testimonial-client i {
    font-size: 50px;
    color: var(--dBlue);
}

.testimonial-client .testimonial-image h3 {
    font-size: 20px !important;
    margin-bottom: 0;
    color: var(--color);
}

.testimonial-client .testimonial-image span {
    color: var(--gray);
    font-size: 15px !important;
}


.testimonial-section  .owl-item {
    border-radius: 25px;
    border: 1px solid white;
}


/* Why Choose us  */

.whyChooseUs-section {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 5%;
    background-image: url(../images/pngs/dots2.png);
    padding: 2%;
}


.whyChooseUs-section .whyChooseUs-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.whyChooseUs-section .whyChooseUs-container .whyChooseUs-content {
    width: 47%;
    height: auto;
    position: relative;

}

.whyChooseUs-content h5{
    color: var(--color);
    font-weight: 700;
}

.whyChooseUs-content h2{
    color: var(--bg-color);
    font-weight: 700;
}

.whyChooseUs-counter{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3%;
}

.whyChooseUs-counter .whyChooseUs-count-box{
    width: 47%;
    margin-bottom: 3%;
    padding: 3%;
    border-bottom: 3px dashed var(--color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.whyChooseUs-images {
    width: 47%;
    height: auto;
    position: relative;
}

.whyChooseUs-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.whyChooseUs-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    border-bottom: 5px solid var(--color1);
    margin-bottom: 5%;
    background-color: var(--color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whyChooseUs-images .whyChooseUs-image-content{
    width: 60%;
    height: auto;
    padding: 2%;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whyChooseUs-images .whyChooseUs-image-content .whyChooseUs-image-icon{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyChooseUs-images .whyChooseUs-image-content .whyChooseUs-image-icon i{
    font-size: 20px;
    color: var(--color);
}

.whyChooseUs-images .whyChooseUs-image-content .whyChooseUs-image-details{
    width: 78%;
}

.whyChooseUs-images .whyChooseUs-image-content .whyChooseUs-image-details h3{
    font-size: 18px;
}


@media screen and (max-width:370px){

    .whyChooseUs-images .whyChooseUs-image-content{
        width: 100%;
        
    }
    
}


@media screen and (max-width:700px) {
    
    .whyChooseUs-section .whyChooseUs-container .whyChooseUs-content {
        width: 100%;
       
    }
.whyChooseUs-images {
    width: 100%;
    
}

}


