/*!
Theme Name: wp-gate
Theme URI: http://underscores.me/
Author: Alaa mostafa
Author URI: https://wp-gate.com/
Description: wp-gate wordpress theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-gate
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

wp-gate is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*********start top header*********/
ol ol, ol ul, ul ol, ul ul{
    list-style: none;
}
::placeholder {
    color: var(--gray-color)
}

/*********end top header*********/

.main-header{
    background: #2f3a3d;
    padding: 20px 50px;
    height: 75px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.main-header .logo-header{
   height: 70px;
}
.main-header a{
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    padding: 5px 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.main-header a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition);
}
.main-header a.active::after,.main-header a:hover::after{
    width: 100%;
}
.main-header .input-group-text,
.main-header .form-control,.main-header .btn{
    background: #696f70;
    border-color: #a0a0a0;
    color: #fff;
}
.main-header .input-group .form-control{
    border-radius: 0 .25rem .25rem 0;
}
.main-header span.input-group-text{
    border-radius: .25rem 0 0  .25rem !important;

}
.main-header .input-group-tex{
    color: #a0a0a0;
}
.main-header  .lang{
    color: #a0a0a0;
    font-size: 24px;
}
.navbar{
    width: 100%;
}
.navbar .form-control{
    width: 100px;
}
.main-header .btn{
    margin-left: 14px;
       width: 200px;
    font-size: 13px;
}
.main-header ul.menu{
        display: flex;
    padding: 0;
    margin: 0;
}
.main-header .lang{
    display: flex;
    align-items: center;
}

.menu-mobile a{
        color: #2f3a3d;
        padding: 10px 0;
}
.navbar-collapse a{
      color: #fff;
       padding: 10px;
}

.navbar-toggler{
    color:#fff;
}
@media screen and (max-width: 992px) {
    .main-header .lang{
     width: auto !important;}
    .main-header{
        overflow: visible;
    }
    .main-header ul.menu{
        display: block;
    }
    .d-none-sm,#menu-mobile-d{
        display:none !important
    }
      .mob-men{
            width:30%  !important;
    }
.main-header{
    height: auto;
        padding: 0;
}
.d-flex{
    flex-wrap: wrap;
        width: 100%;
}
    .main-header .input-group{
        width: 100%;
        margin-top:10px;
        margin-bottom:10px;
}
.main-header .btn{
    width: 100%;
    font-size: 14px;
        margin: 0;
    padding: 9px;
}

}
.main-header .lang{
   width: 14%;
}
@font-face {
    font-family: montserratBold;
    src: url(../fonts/ArbFONTS-Montserrat-Arabic-Bold.ttf);
}
@font-face {
    font-family: montserratExtraLight;
    src: url(../fonts/ArbFONTS-Montserrat-Arabic-ExtraLight.ttf);
}
@font-face {
    font-family: montserratMedium;
    src: url(../fonts/ArbFONTS-Montserrat-Arabic-Medium.ttf);
}
@font-face {
    font-family: montserratRegular;
    src: url(../fonts/ArbFONTS-Montserrat-Arabic-Regular.ttf);
}
:root {
    --main-color: #f2ce15;
    --second-color: #e1282f;
    --transition: all 0.2s ease-in-out;
}

body,
html {
    text-align: left;
    direction: ltr;
    overflow-x: hidden;
    color: var(--dark-gray);
    word-break: break-word;
    font-weight: 500;
}

p {
    font-size: 14px;
    font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}
a,
a:hover {
    text-decoration: none;
}
a {
    display: inline-block;
    transition: var(--transition);
}

input:hover,
input:focus,
button:focus {
    box-shadow: none !important;
    outline: unset !important;
}
.background-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

img {
    max-width: 100%;
    object-fit: cover;
}
.main-header{
     width: 100%;
    transition:all 0.4s ease-in-out
}
.main-header.navbar-fixed-top{
    position: fixed;
    z-index: 999;
    top: 0;
        height: 60px;
}
/*start home-banner*/
.home-banner {
    height: calc(100vh - 160px);
    overflow: hidden;
}

.home-banner .banner-content {
    color: #fff;
    max-width: 60%;
}
.home-banner .banner-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}
.home-banner .banner-p {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--main-color);
}
.home-banner .btn,
.custom-btn {
    background: #ffcf26;
    color: #262626;
    font-weight: 700;
    padding: 8px 45px;
    margin-top: 30px;

    transition: var(--transition);
}
.home-banner .btn:hover,
.custom-btn:hover {
    background: var(--second-color);
    color: #fff;
}
/*end home-banner*/

.main-title h2 {
    position: relative;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

.social-banner {
    display: flex;
    flex-direction: column;
}
.social-banner a {
    background: #707070;
    border: 1px solid #fff;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    padding: 3px;
    margin-bottom: 10px;
}
.success-title {
    position: absolute;
    z-index: 2;
    width: 50%;
    left: 27%;
    text-align: center;
    top: -40px;
    background: #ffcf26;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 2px;
    padding: 10px 0;
}
.servies-sec {
    position: relative;
}
.servies-sec .servies-side {
    padding-left: 80px;
    width: 80%;
    position: relative;
}

.our-work-page{
    position: relative;
}
.servies-sec::after,.contact-us::after ,
.our-work-page::after{
    content: "";
    width: 155px;
    height: 75px;
    background-image: url("assets/images/right_dotted_square.png");
    position: absolute;
    top: 0;
    right: -75px;
    background-size: cover;
    background-repeat: no-repeat;
}
.our-work-page::before{
    content: "";
    width: 155px;
    height: 75px;
    background-image: url("assets/images/right_dotted_square.png");
    position: absolute;
    bottom: 0;
    left:0;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-servies img{
    position: relative;
    height: 550px;
    width: 100%;
}
.servies-sec::before,
.banner-servies:before {
    content: "";
    width: 155px;
    height: 75px;
    background-image: url("assets/images/dots.png");
    position: absolute;
    bottom: 50%;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-servies:before {
    bottom: -36px;
    right: -152px;
    width: 352px;
    z-index: 0;
}
.servies-side .main-title {
    width: 60%;
}
.servies-side li {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.servies-side li i {
    color: var(--second-color);
    margin-right: 10px;
    font-size: 20px;
}
.servies-side .custom-btn {
    margin-left: 80px;
    padding: 8px 65px;
    margin-top: 10px;
}

.our-work .main-title h2,.contact-page .main-title h2 {
    margin-bottom: 10px;
}

.work-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.single-work .work-img {
    position: relative;
}
.single-work {
    box-shadow: 0 0 8px 4px #f1f1f1;
    margin-bottom: 20px;
    background:#fff;
}
.work-img .img-label {
    position: absolute;
    top: 0;
    right: 25px;
    background: linear-gradient(to bottom, #e7cc45, #a78b00);
    width: 75px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}
.work-content{
    padding: 10px 20px;
}
.work-content h5{
    font-size: 18px;
}
.work-price{
    margin-bottom: 5px;
}
.current-price{
    color: var(--main-color);
    font-size: 14px;
}
.old-price,.work-content p {
    color:#909090;
    font-size: 12px;
    font-weight: normal;
}
.old-price{
    text-decoration: line-through;
}
.work-content .btn{
    background: #FFCF26;
    margin: auto;
    text-align: center;
    display: block;
    width: 110px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: bold;
    padding: 5px;
    font-size: 15px;
    box-shadow: 0 5px 0px -2px #f1f1f1;
}
.work-content .btn:hover{
    background: var(--second-color);
    color: #fff;
}
.our-work,.about-us{
    padding-left: 100px;
}
.owl-stage {
    right: 90px;
}
.about-us .banner-servies:before{
    left: -80px;
    right: auto;
    height: 100px;
    width: 100%;
}
.about-us {
    background: #EAEFF5;
    padding-top: 80px;
    padding-bottom: 60px;
    margin-top: -60px;
}
.about-us .banner-servies img{
    height: 350px;

}
.about-side span{
    color: #5D5D5D;
    font-size: 13px;
    font-weight: normal;
    width: 50%;
    display: block;
}
.contact-us{
    padding: 20px 100px;
    position: relative;
}

.contact-form h2{
    color: #002147;
    margin: 0;
    font-size: 40px;
}
.contact-form .color{
    color: var(--main-color);
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 12px;
    display: block;
}
span.input-group-text{
    background: transparent;
    border-radius: 4px 0 0 4px;
    border-right: 0;
}
.input-group .form-control{
    border-radius: 0 4px 4px 0;
    border-left: 0;
    color: #BDBDBD;
    font-size: 14px;
    padding-left: 0;
}
.form-group label{
    font-size: 14px;
}
textarea.form-control{
    border: 1px solid #ced4da !important;
    height: 100px;
    padding: .375rem .75rem !important;
}
.contact-form .btn{
    margin-top: 0;
    float: right;
}
.contact-form{
    padding-left: 70px;
    padding-right: 70px;
}
.contact-us::after{
    width: 230px;
    height: 260px;
    right: -112px;
}
.our-work-page{
    padding: 50px 0;
}
.our-work-page .main-title ,.contact-page .main-title {
    text-align: center;
    margin-bottom: 20px;
}
.intro-banner{
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
}
.intro-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}
.intro-banner .sec-title {
    z-index: 2;
    position: relative;
    color: #fff;
}

/*start footer*/
.footer {
    color: #fff;
    background: #525252;
    padding-top: 40px;
}

.footer .footer-logo {
    height: 100px;
}
.footer .footer-text {
    color: #fff;
}
.footer .list-title {
    position: relative;
    margin-bottom: 20px;
}

.footer a {
    font-weight: normal;
    font-size: 13px;
    padding: 6px 0;
    color: #fff;
}
.footer .payment{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .payment .links a:first-of-type{
    padding: 0;
   border-right: 1px solid #fff;
}
.footer .social img{
    width: 22px;
}
.footer a:hover {
    color: #fff;
}
.footer ul{
    padding: 0;
}
.copy-right {
    font-size: 13px;
    color: #fff;
    text-align: center;
    border-top: 1px solid #ffffff54;
    padding: 10px 0;
    display: block;
}
/*end footer*/


.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    color: #fff;
    text-decoration:none;
}
 
.navigation li {
    display: inline;
}
 
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    background-color: #6FB7E9;
    border-radius: 3px;
    cursor: pointer;
    padding: 12px;
    padding: 0.75rem;
}
 
.navigation li a:hover,
.navigation li.active a {
    background-color: #3C8DC5;
}

.single-course-author-meta {
    display: flex;
    margin-top: 30px;
}
.single-course-author-meta .single-course-author {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.single-course-author-meta .single-course-author .author-avatar a img {
    max-width: 42px;
    border-radius: 50%;
    vertical-align: top;}
.single-course-author-meta .single-course-author .author-content {
        margin-left: 15px;
    }
.single-course-author-meta .single-course-author .author-content span {
        display: block;
        font-size: 15px;
        line-height: 17px;
        color: var(--main-color);
    }
.single-course-author-meta .single-course-author .author-content .name a {
        font-size: 15px;
        line-height: 28px;
        color: #fff;
        font-weight: 700;
    }
.single-course-author-meta .single-course-update {
        position: relative;
        margin-left: 50px;
    }
.single-course-author-meta .single-course-update::before {
        position: absolute;
        content: "";
        height: 45px;
        width: 1px;
        background: #29303B;
        right: -25px;
        top: 0px;
        opacity: 0.2;
    }
    
.single-course-author-meta .single-course-update span {
    display: block;
    font-size: 15px;
    line-height: 17px;
    color: var(--main-color);
}
 .single-course-author-meta .single-course-update .date {
    font-size: 15px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
}
.course-price-box {
    padding: 40px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 50px 0px rgb(44 44 52 / 8%);
    box-shadow: 0px 10px 50px 0px rgb(44 44 52 / 8%);
    border: none;
    background: #ffffff;
    margin-bottom: 55px;
    margin-top: -305px;
}
.course-price-box .price-box-video {
    margin: -20px -20px 20px;
    position: relative;
}
.course-price-box .price-box-video .popup-video {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: #00b3ff;
    opacity: 0.9;
    position: absolute;
    top: 50%;
    right: 0;
    text-align: center;
    margin: auto;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.course-price-box .price {
    font-size: 35px;
    line-height: 47px;
    font-weight: 700;
    color: var(--main-color);
}
.course-price-box .price-box-content li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid #f3f3f3;
}
.course-price-box .price-box-content li .price-box-icon .meta-label {
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    color: #415674;
}
.course-price-box .price-box-content li .price-box-icon .meta-label i {
    min-width: 20px;
    font-size: 15px;
    line-height: 1;
    margin: 0 0 0 4px;
}
.course-price-box .price-box-content li .price-box-info .value {
    font-size: 14px;
    line-height: 26px;
    color: #415674;
}
.viedo-course .modal-dialog{
        width: 700px;
    max-width: 700px;
}
.viedo-course .viedo-img{
        height: 230px;
            width: 100%;
}
.course-price-box .price-box-social {
    margin-top: 28px;
    text-align: center;
}
.course-price-box .price-box-social .share-title {
    font-size: 16px;
    line-height: 30px;
    color: #415674;
}
.course-price-box .price-box-social .social li {
    display: inline-block;
}
.course-price-box .price-box-social .social li a {
    border: 1px solid var(--main-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: var(--main-color);
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    font-size: 13px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.course-price-box .price-box-social .social li a:hover {
    background: var(--main-color);
    color: #ffffff;
}
.price-box-btn .btn {
    line-height: 35px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    background: var(--main-color);
    color: #fff;
}
.price-box-btn .paypal{
    margin: auto;
    width: 80%;
}
.price-box-btn .paypal .paypalbuttonimage{
        width: 100%;
}
.footer .social{
        margin-top: 50px;
}
@media screen and (max-width: 992px) {
    .footer .social{
        margin-top: 10px;
}
    .home-banner{
        padding: 20px;
    }
    .home-banner .banner-content{
        max-width: 85%;
    }
    .home-banner .banner-title {
    font-size: 23px;
}
    .intro-banner{
        height: 250px;
    }
    .intro-banner .banner-title {
    font-size: 30px;
    }

.our-work, .about-us,.contact-us,.contact-form{
     padding: 20px
}
    .our-work-page {
    padding: 20px 0;
}
.course-price-box{
        margin-top: 0;
}
.footer .payment{
    text-align: center;
}
.success-title{
    width: 100%;
    left: 0;
    position: unset;
    border: 0;
}
.banner-servies img,.about-us .banner-servies,
.servies-sec::before, .banner-servies:before{
    display:none
}
.servies-sec .servies-side,.servies-side .main-title{
        padding-left: 0;
    width: 100%;
}
.servies-sec .servies-side{
    padding-left: 15px;
    padding-right: 15px;
        margin-top: 20px;
}
.servies-side .custom-btn{
    margin: auto;
}
.owl-stage {
    right: 0px; 
}
.about-us{
    margin-top: 0;
}
}

 .input-group{
    flex-wrap: nowrap;
    height: 40px;

}
.input-group form{
    width: 100%;
}
.input-group .form-control{
     height: 40px;
     width: 100%;
}
ul,ol{
    list-style: none;
}
.contact-form .input-group p{
        width: inherit;
}
