/*
Theme Name: AL Buratha
Theme URI: http://www.sizdom.com/
Description: A custom WordPress website for AL Buratha Company.
Author: Sizdom Technologies
Text Domain: sizdom
Author URI: https://www.sizdom.com/
Version: 1.0
Tags: clean, light, responsive, multi-column, portfolio, business

License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme goes along with the AL Buratha Company.
*/
:root{
    --themelight: #024660;
    --themedark: #00212E;
    --white: #ffffff;
    --themegradientright: linear-gradient(to right, #024660,#00212E);
    --transition2s: .2s all linear;
    --themegray: #82a1b0;

}
html, body{
    scroll-behavior: smooth;
}
body{
    font-family: 'Almarai', sans-serif;
    background-color: var(--themedark);
    font-size: 16px;
    color: var(--white);
}
a, a:hover, a:active, a:focus{
    text-decoration: none;
}
div#wpadminbar {
    display: none;
}
.page_loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: var(--themegradientright);
    z-index: 999999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.page_loader > .loader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page_loader > .loader > span {
    width: 26px;
    height: 26px;
    display: inline-block;
    position: absolute;
    transform: translate(-50%, -50%);
    background-image: url(images/loader1.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.page_loader > .loader > span:nth-child(2) {
    background-image: url(images/loader2.svg);
    min-width: 61px;
    min-height: 61px;
    animation: loaderspin 2s ease-in-out infinite;
}
.page_loader > .loader > span:nth-child(3) {
    background-image: url(images/loader3.svg);
    min-width: 91px;
    min-height: 91px;
    animation: loaderspin 2s ease-in-out infinite;
}
@keyframes loaderspin {
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    40%{
        transform: translate(-50%, -50%) rotate(120deg);
    }
    50%{
        transform: translate(-50%, -50%) rotate(120deg);
    }
    90%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header.header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}
a.navbar-brand {
    max-width: 200px;
    padding: 0;
}
.navbar-nav li a {
    display: inline-block;
    margin-right: 30px;
    color: var(--themelight);
    font-weight: bold;
    position: relative;
    transition: var(--transition2s);
}
.navbar-nav li:last-child a{
    margin-right: 0;
}
.navbar-nav li a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: var(--themelight);
    width: 0%;
    height: 3px;
    transition: var(--transition2s);
    opacity: 0;
}
.navbar-nav li.current-menu-item a:after, .navbar-nav li:hover a:after{
    width: 100%;
    opacity: 1;
}
.header_buttons ul {
    text-align: right;
}
.header_buttons > ul > li {
    display: inline-block;
    position: relative;
}
.header_buttons ul li > ul {
    position: absolute;
    background-color: var(--themedark);
    display: block;
    min-width: 90px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition2s);
}
.header_buttons ul li:hover > ul{
    visibility: visible;
    opacity: 1;
}
.header_buttons ul li > ul li a{
    color: var(--white);
    display: block;
    text-align: center;
    width: 100%;
    margin: 5px 0;
    font-size: 14px;
}
.header_buttons ul li a {
    display: inline-block;
    width: 35px;
    margin-left: 20px;
}
.header_space{
    height: 80px;
}
.pop_menu {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    opacity: 0;
    background: #00212ec2;
    transition: .3s all linear;
}
.pop_menu.show_menu_pop{
    left: 0;
    opacity: 1;
}
a#close_pop_menu {
    position: absolute;
    right: 9%;
    top: 10px;
    font-size: 2.5rem;
    color: var(--white);
}
.pop_menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--themedark);
    display: block;
    width: 40%;
    z-index: -1;
}
a.pop_logo {
    display: block;
    max-width: 150px;
    filter: invert(1) grayscale(1);
    margin: 20px auto;
}
ul.pop_menus {
    display: block;
    margin-top: 50px;
}
ul.pop_menus > li > a {
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--white);
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}
ul.pop_menus > li > a:before {
    display: inline-block;
    content: '\f0d9';
    position: absolute;
    font-family: 'FontAwesome';
    left: -15px;
    transform: rotate(180deg);
    transition: var(--transition2s);
    top: -100vh;
    opacity: 0;
}
ul.pop_menus > li > a:hover:before{
    top: 2px;
    opacity: 1;
}
.search_popup {
    position: fixed;
    top: 83px;
    z-index: 9999;
    width: 100%;
    min-height: 50px;
    background: var(--themedark);
    padding: 30px 0;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition2s);
}
.search_popup.show_search{
    visibility: visible;
    opacity: 1;
}
form#searchform button {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: -4px;
    outline: none;
    border: none;
}
form#searchform button img {
    max-width: 100%;
}
form#searchform input {
    width: calc(100% - 40px);
    height: 40px;
    vertical-align: top;
    border: none;
    outline: none;
    margin-bottom: 10px;
    background: #f0f0f0;
}
div#search_response > a:hover {
    background: var(--themelight);
}
div#search_response > a {
    display: block;
    color: var(--white);
    padding: 3px 0;
    transition: var(--transition2s);
}
section.home_slider {
    min-height: 300px;
    background: whitesmoke;
    position: relative;
}
.home_slides .slick-slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(10deg, var(--themedark), transparent);
    opacity: 1;
}
.home_slides .slick-slide img {
    width: 100%;
}
.home_slides ul.slick-dots {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    border-right: 2px solid var(--white);
    padding: 10px;
}
.home_slides ul.slick-dots li {
    position: relative;
    min-height: 20px;
    min-width: 20px;
}
.home_slides ul.slick-dots li button {
    background: transparent;
    border: none;
    color: var(--white);
    margin: 3px 0;
    position: absolute;
    top: -4px;
    width: 60px;
    text-align: left;
    padding: 0 5px;
}
.home_slides ul.slick-dots li.slick-active button{
    background-color: var(--themedark);
}
.home_slides ul.slick-dots li.slick-active button:after, .home_slides ul.slick-dots li.slick-active button:before {
    position: absolute;
    content: '\f0d8';
    font-family: 'FontAwesome';
    right: 3px;
    top: -5px;
    height: 9px;
    vertical-align: revert;
}
.home_slides ul.slick-dots li.slick-active button:before {
    content: '\f0d7';
    top: 4px;
}
.home_slides ul.slick-dots li.slick-active button:after:hover, .home_slides ul.slick-dots li.slick-active button:before:hover{
    color: var(--themelight);
}
.home_slide_content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0px, -50%);
    max-width: 50%;
}
.home_slide_content h3 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}
.home_slide_content p {
    font-size: 16px;
    text-align: justify;
}
ul.slide_social {
    position: absolute;
    bottom: 15%;
    left: 10%;
    z-index: 10;
}
ul.slide_social li {
    display: inline-block;
}
ul.slide_social li a{
    display: inline-block;
    color: var(--white);
    margin-right: 20px;
    font-size: 16px;
}
a.disocver_more {
    display: inline-block;
    position: absolute;
    z-index: 10;
    bottom: 8%;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--white);
    font-weight: bold;
}
a.disocver_more > i {
    display: inline-block;
    margin-right: 10px;
    background: var(--white);
    color: var(--themedark);
    font-size: 21px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
}
a.disocver_more:before {
    content: '';
    width: 40px;
    height: 40px;
    border: 1px dashed var(--white);
    display: inline-block;
    position: absolute;
    border-radius: 100%;
    left: 10px;
    top: -10px;
}
section.home_section {
    padding: 50px 0; 
    position: relative;
}
section.home_section.with_bg:before {
    position: absolute;
    content: '';
    background-image: url(images/projectbs.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
    height: 100%;
    background-position: -25vw center;
    opacity: 0.1;
    z-index: -1;
}
h2.section_heading {
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
}
.service_box {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    color: var(--themedark);
    margin-bottom: 40px;
}
.service_box h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--themelight);
    margin-bottom: 0px;
}
.service_box p {
    min-height: 63px;
    margin-bottom: 10px;
}
.service_box_img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.service_box .service_box_img img{
    transition: var(--transition2s);
}
.service_box:hover .service_box_img img{
    transform: scale(1.1);
}
a.learn_more {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: var(--themedark);
    padding: 10px 45px 10px 20px;
    border-radius: 5px;
    color: var(--white);
    position: relative;
    transition: var(--transition2s);
}
a.learn_more i {
    background: var(--white);
    color: var(--themedark);
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0 0 0 3px;
    vertical-align: middle;
    margin-left: 7px;
    border-radius: 100%;
    font-size: 21px;
    border: 5px solid var(--themedark);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    transition: var(--transition2s);
}
a.learn_more:after {
    content: '';
    width: 30px;
    height: 30px;
    border: 1px dashed var(--white);
    display: block;
    position: absolute;
    top: 6px;
    right: 35px;
    border-radius: 100%;
}
a.learn_more:hover {
    background: var(--white);
}
a.learn_more:hover:after{
    border-color: transparent;
}
a.learn_more:hover i {
    right: calc(50% - 15px);
}
.section_normal_link{
    text-align: center;
}
.section_normal_link > a {
    color: var(--white);
    font-size: 16px;
    margin-top: 30px;
    display: inline-block;
    text-align: center;
}
a.learn_more.projects_btn {
    margin: 0;
    background: var(--white);
    color: var(--themedark);
}
a.learn_more.projects_btn i{
    background-color: var(--themedark);
    color: var(--white);
}
a.learn_more.projects_btn:hover {
    background: transparent;
    color: transparent;
}
a.learn_more.projects_btn:hover i{
    background: var(--white);
    border-color: var(--white);
    color: var(--themedark);
    right: calc(100% - 30px);
}
a.learn_more.projects_btn:after{
    display: none;
}
.project_box {
    border: 10px solid var(--white);
    border-radius: 7px;
    padding: 20px 30px;
    min-height: 250px;
    position: relative;
    margin-bottom: 30px;
}
.project_box:last-child{
    margin-bottom: 0;
}
.project_box > p{
    max-width: 40%;
    text-align: justify;
}
.project_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(to right, var(--themedark),transparent), url(images/home-slide.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}
.project_box a.learn_more.projects_btn {
    margin-top: 50px;
}
.clients_slider .swiper-wrapper {
    padding-bottom: 30px;
}
.swiper-scrollbar {
    background: #41626e;
    height: 10px !important;
    border-radius: 0 !important;
}
.swiper-scrollbar-drag {
    background: var(--white);
    border-radius: 0;
}
.client_box {
    max-width: 150px;
    max-height: 150px;
    overflow: hidden;
    border-radius: 100%;
    margin: 0 auto 30px;
}
footer.footer {
    background: var(--white);
    color: var(--themedark);
    padding: 50px 0;
    margin-top: 50px;
}
a.footer_logo {
    display: block;
    max-width: 100px;
    margin: 0 auto;
}
p.powered_by {
    text-align: right;
}
p.powered_by img {
    max-height: 40px;
}
.footer p{
    margin: 0;
}
.contact_box {
    position: relative;
    color: var(--themedark);
}
.contact_box:after {
    content: '';
    width: 80%;
    height: 100%;
    background: var(--white);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.contact_left {
    background: var(--themegray);
    padding: 50px;
    margin: 50px 0;
}
.contact_left h3 {
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
}
ul.contact_info {
    margin-bottom: 50px;
}
ul.contact_info li {
    margin-bottom: 30px;
    color: var(--white);
}
ul.contact_info li img {
    max-width: 25px;
    margin-right: 10px;
}
.contact_left .slide_social {
    position: unset;
}
.content_right {
    padding: 50px 100px 50px 50px;
}
.content_right h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.content_right input, .content_right textarea {
    outline: none;
    border: none;
    border-bottom: 1px solid var(--themedark);
    margin-bottom: 20px;
    width: 100%;
}
.content_right label {
    font-size: 16px;
    font-weight: bold;
    color: var(--themelight);
    text-transform: capitalize;
    display: block;
}
.content_right textarea {
    min-height: 100px;
    resize: none;
}
.content_right input[type="submit"] {
    width: fit-content;
    display: block;
    background: var(--themedark);
    padding: 5px 30px;
    color: var(--white);
    text-transform: capitalize;
    margin-left: auto;
}
section.home_section.with_bg.contact_page:before {
    background-position: -100px center;
}
.project_divider{
    width: 100%;
    height: 2px;
    background-color: var(--white);
    margin: 50px 0;
}
.about_head {
    padding: 100px;
    background-color: var(--white);
    border-radius: 50px;
    color: var(--themelight);
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}
.about_head:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(images/about-shape.png);
    width: 300px;
    height: 300px;
    top: -6px;
    left: -15px;
    transform: rotate(-106deg) scale(1.3);
    opacity: 0.2;
}
.about_head h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}
.about_img_box {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 1px 5px 5px #ccc;
    padding: 50px;
    text-align: center;
}
.about_img_box img {
    max-width: 300px;
}
.about_simple{
    margin-bottom: 100px;
    text-align: justify;
}
.about_heading {
    color: var(--themelight);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 50px;
}
.with_counter{
    counter-reset: my-sec-counter;
}
.with_counter h3::before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter,decimal-leading-zero);
    display: inline-block;
    background: #ffffff40;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    border-radius: 100%;
    text-align: center;
    padding-top: 9px;
    border: 1px dotted var(--white);
    margin-right: 10px;
}
.about_simple h3 {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
}
.news_box_large {
    padding: 50px 50px 20px;
    background: var(--white);
    border-radius: 30px;
    color: var(--themelight);
    text-align: justify;
    margin-bottom: 30px;
    position: relative;
}
.news_box_large h3 {
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
}
.page_parent{
    position: absolute;
    top: 20px;
    right: 50px;
}
.page_parent a {
    display: inline-block;
    background: var(--themedark);
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--white);
    padding-top: 3px;
    border-radius: 7px;
}
a.news_more {
    display: block;
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
    color: var(--themegray);
    font-weight: bold;
    margin: 30px auto 10px auto;
}
p.time {
    min-height: auto;
    margin: 5px 0;
}
.service_box_img.project_include_img {
    position: relative;
    height: 250px;
}
.service_box_img.project_include_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: unset;
}
.service_box:hover .service_box_img.project_include_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    height: 100%;
    width: auto;
    max-width: unset;
}
.wpcf7 br {
    display: none;
}


@media screen and (max-width: 565px) {
    button.navbar-toggler{
        display: none;
    }
    header.header, .pop_menu {
        width: 100vw;
    }
    .header_space {
        height: 62px;
    }
    ul.pop_menus{
        text-align: center;
    }
    .pop_menu:before {
        width: 80vw;
    }
    .home_slide_content h3 {
        font-size: 1.2rem;
    }
    .home_slide_content p {
        display: none;
    }
    .home_slide_content {
        max-width: 70%;
    }
    section.home_slider {
        min-height: 150px;
    }
    .project_box > p {
        max-width: 100%;
    }
    .footer p, p.powered_by {
        text-align: center;
        margin: 20px 0;
    }
    .about_img_box img {
        max-width: 100%;
    }
    .about_head {
        padding: 50px;
    }
    .about_img_box {
        margin: 20px 0;
    }
    .contact_box:after{
        width: 100%;
    }
}


