/*
Theme Name: Dar AL Yousif
Theme URI: https://pastel.com.iq/
Author: Hassan Mehmood
Author URI: https://pastel.com.iq/
Description: Custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dalalyousif
Tags: custom-theme, responsive, modern
*/

:root {
    --yellow: #ECCA35;
    --blue: #21549D;
    --black: #000;
    --white: #fff;
    --gray: #E8E8E8;
}

html,
body {
    overflow-x: hidden;
    font-family: "Noto Kufi Arabic", sans-serif;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

a,
a:active,
a:hover,
a:focus {
    text-decoration: none;
}

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

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

header.header.pageHeader {
    position: unset;
}

.topbar {
    padding-top: 30px;
    text-align: right;
}

.topbar ul.langSwitcher {
    display: inline-block;
    background-color: var(--white);
    border-radius: 30px;
    overflow: hidden;
}

.header.pageHeader .topbar ul.langSwitcher,
.header.pageHeader .topbar form {
    border: 1px solid var(--black);
}

.topbar ul.langSwitcher li {
    display: inline-block;
}

.topbar ul.langSwitcher li a {
    display: block;
    border-radius: 100%;
    padding: 5px 10px;
    color: var(--black);
    text-transform: uppercase;
}

.topbar ul.langSwitcher li.current-lang a {
    background: var(--yellow);
}

.topbar form {
    display: inline-block;
    border: 1px solid var(--white);
    border-radius: 30px;
    overflow: hidden;
}

.topbar form input,
.topbar form button {
    background: transparent;
    outline: none;
    color: var(--white);
    border: none;
    padding: 4.2px 10px;
}

.header.pageHeader .topbar form input,
.header.pageHeader .topbar form button {
    color: var(--black);
}

a.btnDefault {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    vertical-align: top;
    transition: .2s all linear;
}
a.btnDefault:hover {
    background: var(--yellow);
}
a.btnDefault.white {
    background: var(--white);
    color: var(--black);
}
a.btnDefault.white:hover {
    background: var(--blue);
    color: var(--white);
}
.pageHeader a.btnDefault.white {
    background: var(--yellow);
}

a.btnDefault.yellow {
    background: var(--yellow);
    color: var(--black);
}
a.btnDefault.yellow:hover {
    background: var(--blue);
    color: var(--white);
}
a.navbar-brand {
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    overflow: hidden;
    width: 100px;
}

a.navbar-brand img {
    transform: scale(1.077);
    width: 100%;
}

.navbar-nav {
    background: var(--blue);
    border-radius: 30px;
    padding: 0 30px;
}

.navbar-nav>li>a:after {
    content: '|';
    display: inline-block;
    margin: 0 20px;
    color: var(--white);
}

.navbar-nav>li:last-child>a:after {
    display: none;
}

.navbar-nav li a {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    padding: 15px 0;
    transition: .2s all linear;
}

.navbar-nav li a:hover {
    color: var(--yellow);
}

.homeVideo {
    position: relative;
}

.homeVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.homeVideoContent {
    height: 100vh;
    min-height: 695px;
    position: relative;
}

.homeVideoInner {
    position: absolute;
    top: 55%;
    left: 0;
    transform: translate(0, -50%);
}

.homeVideoInner h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

a.downCircle {
    position: absolute;
    font-size: 2rem;
    width: 70px;
    height: 70px;
    border: 3px solid var(--white);
    color: var(--white);
    text-align: center;
    padding-top: 14px;
    border-radius: 100%;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}

/* main Space */
section.homeAbout,
section.homeServices,
section.homeProjects,
section.ourClients {
    padding: 50px 0;
}

/* main Heading */
section.homeAbout h2,
section.homeServices h2,
section.homeWhy h3,
section.homeProjects h3,
section.ourClients h3,
.mainHeading {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

.homeAboutBox h3 {
    font-size: 1.2rem;
}

.homeAboutImg {
    background: whitesmoke;
    width: 100%;
    aspect-ratio: 1 / 0.7;
    margin-bottom: 10px;
    overflow: hidden;
}

.homeAboutImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s all linear;
}
.homeAboutImg:hover img {
    transform: scale(1.1);
}
.textRight {
    text-align: right;
}

ul.servicesCat {
    margin-top: 20px;
}

ul.servicesCat li {
    display: inline-block;
}

ul.servicesCat li a {
    background: var(--yellow);
    color: var(--black);
    padding: 7px 20px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 10px;
}

.serviceImg {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: whitesmoke;
    margin-bottom: 10px;
    overflow: hidden;
}

.serviceImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s all linear;
}
.serviceBox:hover img {
    transform: scale(1.2);
    filter: saturate(02);
}

.serviceBox {
    margin-top: 30px;
}

.serviceBox a {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 500;
}

section.homeWhy {
    background: var(--gray);
    padding: 50px;
}

section.homeWhy h3 {
    margin-bottom: 30px;
}

.whyImg {
    text-align: center;
}

.whyImg img {
    max-width: 100%;
    margin-left: auto;
}

.projSlideBox {
    margin-top: 50px;
}

.projImg img {
    width: 100%;
    margin-bottom: 20px;
    transition: .2s all linear;
}
.projSlideBox:hover img {
    transform: scale(1.2);
    filter: saturate(2);
}
ul.projCat li {
    display: inline;
}

ul.projCat li:after {
    content: '|';
    display: inline-block;
    margin: 0 10px;
    color: var(--yellow);
}

ul.projCat li:last-child:after {
    display: none;
}

ul.projCat li a {
    color: var(--yellow);
    font-size: 1rem;
}

.projSlideBox>a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    display: block;
    margin-top: 10px;
}

.projSliderExtra .projPrev,
.projSliderExtra .projNext {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--black);
    border-radius: 30px;
    text-align: center;
    padding-top: 8px;
    transition: .2s all linear;
}
.projSliderExtra .projPrev:hover, .projSliderExtra .projNext:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}
.projScrollbar.swiper-scrollbar-horizontal {
    background: whitesmoke;
    height: 10px;
    width: calc(100% - 110px);
    display: inline-block;
    margin-right: 20px;
    border-radius: 30px;
}
.projImg {
    overflow: hidden;
}

.swiper-scrollbar-drag {
    background: var(--yellow);
}

ul.clientsList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

ul.clientsList li {
    border: 1px solid var(--black);
    padding: 10px;
    flex: 0 0 calc((100% - 120px) / 7);
}

ul.clientsList li img {
    width: 100%;
}

footer.footer {
    background: var(--blue);
    padding: 50px 0 20px;
    color: var(--white);
    font-weight: 200;
}

a.footerLogo {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    overflow: hidden;
    max-width: 150px
}

a.footerLogo img {
    width: 100%;
}

p.poweredBy {
    margin-top: 10px;
}

p.poweredBy img {
    max-height: 25px;
}

ul.footerSocial {
    margin: 20px 0;
}

ul.footerSocial li {
    display: inline-block;
}

ul.footerSocial li a {
    color: var(--white);
    font-size: 1.5rem;
    display: block;
    margin-right: 10px;
}

.footer h5 {
    font-weight: 200;
}

.pageArea {
    padding: 50px 0;
}

.newsBox {
    margin-top: 30px;
    padding: 0 30px;
}

.newsImg img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.newsBox>a {
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
}

.pageArea img {
    width: 100%;
    height: auto;
}

section.pageArea h1,
h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
}

#faqItems .accordion-item {
    border-radius: 0 !important;
    border: none;
    border-top: 1px solid var(--black);
}

#faqItems button.accordion-button {
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    border: 1px solid #fff !important;
    box-shadow: none !important;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black) !important;
}

.gmap iframe {
    width: 100%;
    height: 450px;
}

.gmap img {
    width: 100%;
}

.contactBox {
    border: 1px solid var(--gray);
    padding: 20px 20px 40px;
    border-radius: 30px;
    margin-bottom: 20px;
    min-height: 180px;
    position: relative;
}

.contactBox a {
    position: absolute;
    bottom: 20px;
    font-size: 1.5rem;
    color: var(--black);
    font-weight: bold;
}

.pageArea ul.footerSocial li a,
.pageArea ul.footerSocial li {
    color: orange;
    font-size: 1.5rem;
}

ul.contactNumbers {
    margin-top: 20px;
}

ul.contactNumbers li {
    display: inline-block;
    width: 49%;
    font-size: 18px;
}

.contactBox p {
    color: gray;
}
.form_fields input, .form_fields select, .form_fields textarea, .form_fields button {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--black);
    padding: 10px 20px;
    border-radius: 30px;
    max-height: 200px;
    resize: none;
}

.form_fields button {
    width: 50%;
    text-align: left;
    position: relative;
    background: var(--blue);
    color: var(--white);
    border: none;
    transition: .2s all linear;
}
.form_fields button:hover {
    background-color: var(--yellow);
}
.form_fields button i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}
@media only screen and (max-width: 500px) {
    .topbar form {
        display: none;
    }

    .container-fluid {
        padding: 0;
    }

    a.navbar-brand {
        width: 80px;
    }

    .navbar-toggler {
        color: var(--white);
        font-size: 1.7rem;
        border: none;
        outline: none !important;
        box-shadow: none !important;
    }
    header.header.pageHeader .navbar-toggler {
        color: var(--black);
    }
    .navbar-nav {
        margin-top: 20px;
        padding: 10px 30px;
    }

    .navbar-nav>li>a:after {
        display: none;
    }

    .navbar-nav li a {
        border-bottom: 1px solid #ffffff21;
    }

    .navbar-nav li:last-child a {
        border-bottom: none
    }

    .homeVideoInner h1 {
        font-size: 2.7rem;
    }

    .homeVideoInner {
        top: 50%;
    }

    .homeAboutBox {
        margin-top: 30px;
    }

    section.homeAbout h2,
    section.homeServices h2,
    section.homeWhy h3,
    section.homeProjects h3,
    section.ourClients h3,
    .mainHeading {
        font-size: 1.8rem;
    }
    .projImg img {
        height: auto;
    }
    .serviceBox a {
        font-size: 1.3rem;
    }
    section.homeWhy {
        padding: 20px;
    }
    section.homeWhy h3 {
        margin-bottom: 10px;
    }
    ul.clientsList li {
        flex: 0 0 calc((100% - 40px) / 3);
    }
    section.pageArea h1, h1 {
        font-size: 2rem;
    }
}