/* =================================================
   =============== STYLE File ======================
        ✔ Fully Responsive .
        ✔ HTML - CSS - JS - Bootstrap V4 .
        ✔ Five Pages .
   =================================================
                    GoOd Luck *__" 
   ================================================= */

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}


/* Start Style Navbar */

.navbar {
    background-color: #ffffffad;
    border-bottom: 0.5px solid #f1f1f1;
    box-shadow: 0 2px 2px #f1f1f1;
    padding: 40px;
}

.navbar-nav {
    border-top: 3px solid #208d03;
    border-bottom: 3px solid #208d03;
    border-radius: 3px;
    background-image: linear-gradient(to bottom, #ffffff, #fafafa, #f6f6f6, #f1f1f1, #ededed);
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 16px solid #1e7e34;
    position: absolute;
    bottom: -3px;
    opacity: 0;
    transition: all 0.1s ease-out;
}

.navbar-nav .nav-item:hover::after {
    opacity: 1;
}

.navbar .nav-link:hover {
    color: #1e7e34;
}

.navbar .navbar-brand {
    position: relative;
}

.navbar .navbar-brand>img {
    padding: 0;
    margin: 0;
    width: 120px !important;
    margin-top: 4px;
    position: absolute;
    top: -54px;
    left: 78px;
}

.navbar .navbar-nav {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.navbar .fa-align-justify {
    font-size: 30px;
    color: #0C8B00;
    box-shadow: none;
    border: 0;
    padding: 5px 0;
}

.navbar .navbar-nav .active {
    color: #fd7e02 !important;
    font-weight: bold;
}

.navbar .nav-link {
    color: #222;
    text-decoration: none;
    padding-right: 25px !important;
    position: relative;
    margin: 3px;
    margin-left: 0;
    transition: all 0.2s ease-in;
}

@media screen and (max-width:780px) {
    .navbar .navbar-brand {
        position: inherit;
    }
    .navbar .navbar-brand img {
        width: 98px !important;
        margin-top: 4px;
        top: 12px;
        left: 117px;
    }
}


/* End Style Navbar */


/* Start Slider */

.slider {
    background-image: url('../img/slider/bg.png');
    background-size: cover;
    background-position: center;
    background-color: #CCC;
}

.slider .carousel-item img {
    width: 46%;
    margin: auto;
}

.slider .carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #1e7e34;
}

.slider .carousel-control-prev span {
    color: #fd7e02;
    background-color: #1e7e34;
    width: 20px;
    height: 23px;
}

.slider .carousel-control-next span {
    color: #fd7e02;
    background-color: #1e7e34;
    width: 20px;
    height: 23px;
}

.slider .carousel-indicators .active {
    background-color: #fd7e02;
}


/* End Style Slider */


/* Start Style Info */

.info {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f1f1f1;
}

.info h5 {
    color: #fd7e02;
    position: relative;
    display: inline-block;
    padding: 20px;
    animation: color 2s ease-in-out infinite;
    animation-fill-mode: forwards;
}

@keyframes color {
    0% {
        color: #fd7e02
    }
    80% {
        color: #0C8B00
    }
    100% {
        color: #fd7e02
    }
}

.info h5 span {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.7;
    animation: change 2s ease-in-out infinite;
    animation-fill-mode: forwards;
}

@keyframes change {
    0% {
        color: #0C8B00
    }
    80% {
        color: #fd7e02
    }
    100% {
        color: #0C8B00
    }
}

.info h5::after {
    content: '';
    width: 60%;
    height: 27%;
    border: 3px solid #1e7e34;
    border-bottom: transparent;
    position: absolute;
    right: 20%;
    top: 14%;
}

@media screen and (max-width:780px) {
    .info h5::after {
        top: 3%;
    }
}

.info h5::before {
    content: '';
    width: 60%;
    height: 27%;
    border: 3px solid #1e7e34;
    border-top: transparent;
    position: absolute;
    right: 20%;
    bottom: -5%;
}

@media screen and (max-width:780px) {
    .info h5::before {
        bottom: 11%;
    }
}

.info .btn {
    color: #fd7e02;
    background-color: transparent;
    border: 2px solid #fd7e02;
    padding: 5px 20px;
    transition: 0.2s ease-in-out;
}

.info .btn:hover {
    background-color: #1e7e34;
    color: #fff;
    border: 2px solid transparent;
}

.info p {
    color: #8a8480;
}


/* Start owl Carousel */

.recent-products {
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.recent-products .box {
    width: 200px;
    height: 400px;
    border: 1px solid #CCC;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 7px #dedede;
}

@media screen and (max-width:780px) {
    .recent-products .box {
        margin: auto;
        width: 268px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        position: absolute !important;
        right: 0 !important;
    }
    .owl-carousel .owl-nav button.owl-next {
        position: absolute !important;
        left: 0 !important;
    }
}

.recent-products .box h1 {
    font-size: 20px;
    font-weight: bold;
    color: #fd7e02;
}

.recent-products .box p {
    color: #fd7e02;
}

.recent-products .box .btn {
    background-color: transparent;
    color: #fd7e02;
    border: 2px solid #fd7e02;
    padding: 5px 20px;
    transition: all 0.2s ease-in-out;
}

.recent-products .box .btn:hover {
    color: #fff;
    background-color: #1e7e34;
    border: 2px solid transparent;
}

.recent-products .owl-carousel .owl-prev,
.owl-next {
    color: #1e7e34 !important;
    font-size: 82px !important;
    position: absolute !important;
    right: -2% !important;
    top: 20% !important;
}

.recent-products .owl-carousel .owl-next {
    left: -2% !important;
}

.recent-products .owl-next,
.owl-prev {
    direction: rtl;
}

.recent-products .one {
    border-top: 3px solid #e87403;
}

.recent-products .two {
    border-top: 3px solid #1e7e34;
}

.recent-products .three {
    border-top: 3px solid #e87403;
}

.recent-products .four {
    border-top: 3px solid #1e7e34;
}

.recent-products .five {
    border-top: 3px solid #e87403;
}

.recent-products .six {
    border-top: 3px solid #1e7e34;
}


/* End owl Carousel */


/* Start footer */

.footer {
    padding-top: 50px;
    overflow: hidden;
    height: 380px !important;
}

.footer .right-content {
    background-color: #0a2702;
    padding: 40px;
    color: #fff;
    height: 100%;
}

.footer .right-content h2 {
    border: 3px solid #fd7e02;
    display: inline-block;
    padding: 10px;
    position: relative;
}

.footer .right-content h2::after {
    content: '';
    width: 3px;
    height: 27px;
    background-color: #208d03;
    position: absolute;
    right: -3px;
    top: 32%;
    z-index: 11;
}

.footer .left-content {
    background-image: url('../../img/1.jpg');
    background-position: bottom;
    padding: 20px;
    height: 350px !important;
}

.footer .left-content .box {
    background-color: #fff;
    padding: 20px;
    width: 50%;
    position: absolute;
    right: -17px;
    z-index: 1000;
    top: 6%;
}

@media screen and (max-width:780px) {
    .footer .left-content .box {
        width: 100% !important;
        position: inherit !important;
    }
    .footer {
        height: 100% !important;
    }
}

.footer .left-content .box h1 {
    font-size: 22px;
    font-weight: bold;
    color: #447325;
}

.footer .left-content .box p {
    color: #447325;
    font-weight: bold;
    line-height: 1.7;
}

.footer .left-content .box p .icon {
    margin-top: 10px;
    margin: 0 !important;
}

.footer .left-content .box p span {
    margin: 28px;
}

.footer .col-lg-4,
.col-lg-8 {
    padding: 0 !important;
    margin: 0 !important;
}

.footer .fas {
    font-size: 35px;
    color: #fd7e02;
}


/* End footer */


/* Start End Footer Style */

.end-footer {
    padding: 20px;
}

.end-footer p {
    color: #e87403;
    padding: 0;
    margin: 0;
}

.end-footer a {
    color: #e87403;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.end-footer a:hover {
    color: #0C8B00;
}


/* End End Footer Style */