/*
Theme Name: Boubyan Petroleum
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: boubyan
Tags: custom-theme, responsive, modern
*/
html {
    margin: 0 !important;
}
ul.main_menu li {
    display: inline-block;
}
ul.main_menu li a {
    color: white;
    margin-left: 15px;
    transition: .2s all linear;
}
ul.main_menu li.current-menu-item a {
    text-decoration: line-through;
    color: #3ebccc;
}
ul.main_menu li a:hover {
    color: #3ebccc;
}
.requirements_detail li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ff0000;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 10px;
}

.requirements_detail li {
    margin-bottom: 10px;
}
.job_detail_area {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}
.job_detail_area.active {
    max-height: 10000px;
    opacity: 1;
    overflow: visible;
}
.service_content .wp-block-columns p {
    font-size: 0.9rem;
}
.service_content h4 {
    color: #309499;
    font-weight: bold;
    font-size: 1rem;
}
.service_content p {
    margin-bottom: 20px;
}
.career_home_btn {
    align-self: center;
    padding: 25px 30px;
}

.slide-img {
    animation: zoom 5s linear infinite;
}

.slide.active .content {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}


div#mobileMenu.menu_mobile {
    display: inherit !important;
    position: absolute;
    top: 80px;
    background: #2f385d;
    width: 90%;
    left: 50%;
    transform: translate(-50%, 0);
}

div#mobileMenu.menu_mobile ul li {
    display: block;
    font-size: 1rem;
    margin: 10px;
}

div#mobileMenu.menu_mobile ul li a {
    display: block;
}