
html{
    scroll-behavior: smooth;
}

.pagep{
    background: #fffefb;
    width: 100%;
    height: 100%;
    position: relative;
}
.page{
    background: url(../img/abc.jpg) repeat fixed;
    width: 100%;
    height: 100%;
    position: relative;
}
/* .page::before{
    content: "";
   position: absolute;
   top: 0;
   left: 0;
    width: 100%;
    height: 100%;
    background: rgb(225, 225, 225, 0.1);
} */
/*-------SVG-------*/
#svg1{
    width: 100%;
    height: 100px;
    z-index: -1;
    margin: 0;
    display: block;
}
#svg2{
    width: 100%;
    height: 100px;
    z-index: -1;
    margin: 0;
    display: block;
    transform: rotate(180deg);
}
.elementor-shape-fill {
    fill: #cea507;
}
/*------HR-------*/
#hr-page{
    height: 1px;
    width: 90%;
    background: #886b3c;
}
/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #ffe1a8;
}

::-webkit-scrollbar-thumb{
    background: #cea507;
}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    bottom: 15px;
    right: -100px;
    color: #fff;
    z-index: 999999999999999999999999999;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    background: #a78958;
    border: none;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #e0bb7f;
}
.btnUpTop.show{
    right: 25px;
}

/*--------------*/
/*----Home------*/
/*--------------*/
#home{
    color: #000;
    position: relative;
    width: 100%;
    height: 100vh; display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#home .container{
    max-width: 1320px;
    padding: 0 15px;
}

#home h2{
    margin: 0 0 30px 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: #000;
}
@media (max-width: 768px){
    #home h2 {
    font-size: 28px;
    line-height: 36px;
    }
}
#home p{
    color: #aeaeae;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
#home p strong{
    font-family: cursive;
    color: #cea507;
}
#home #btn-home{
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    /* letter-spacing: 1px; */
    display: inline-block;
    padding: 5px 20px;
    border-radius: 3px;
    margin: 10px;
    margin-bottom: 1rem;
    color: #fff;
    background: #cea507;
        text-decoration: none;
        transition: 0.5s;
}
#home #btn-home:hover{
    background: #886b3c;
        transform: skew(30deg, 0);
        text-decoration: none;
    animation: animatebtn 0.2s  ease-in-out infinite alternate-reverse both;
}
/* @keyframes animatebtn {
    0% {
    }
    100% {
        transform:  scale(1);
    }
} */

/*--------------*/
/*----Navbar------*/
/*--------------*/
#nav {
    background: linear-gradient(182deg, #e5bc01, #000000c7);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-top: 0;
    padding-bottom: 0;
}
#nav .container{
    max-width: 1320px;
}
#nav::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out 0s;
}

#logo{
    animation: animateLogo 2s linear infinite;
}
@keyframes animateLogo {
    0%{
        transform: scale(0.9);
    }
    50%{
        transform: scale(1.05);
    }
    100%{
        transform: scale(0.9);
    }
}

#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    transition: 0.4s;
    position: relative;
    padding: 20px 10px;
}
#nav-item:hover{
    color: #000;
}
.drop{
    position: relative;
    cursor: pointer;
}
.drop #dropdown{
    display: none;
    content: "";
    position: absolute;
    width: 260px;
    top: 56px;
    left: 0;
    background: #fff;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 3px solid #000;
    z-index: 99;
}
.drop #dropdown::before{
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    left: 10px;
    transform: rotate(45deg);
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.drop #dropdown li{
    /* margin-bottom: 1rem; */
    padding: 7px 0 7px 13px;
    border-bottom: 1px solid #cea507;
}
.drop #dropdown li a{
    text-decoration: none;
    color: #000;
}
.drop #dropdown li a:hover{
    color: #cea507;
}
.drop:hover #dropdown{
    display: block;
}
#nav-item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out 0s;
    opacity: 0;
}
#nav-item:hover::before{
    top: 56px;
    opacity: 1;
}
#Login-nav{
    color: #fff;
    background: transparent;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #cea507;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    line-height: 1;
    font-size: 13px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}
#Login-nav:hover{
    background: #cea507;
}
#btn-toggler{
    background: #cea507;
    margin-right: 1rem;
}
#btn-toggler span{
    color: #fff;
}

/*--------------*/
/*----How To Start------*/
/*--------------*/
#howTostart{
    padding: 70px 0;
    position: relative;
    /* text-align: center; */
}
#howTostart .container{
    max-width: 1320px;
    color: #000;
}
#howTostart h2{
    color: #cea507;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#howTostart h2 span{
    color: #000;
}
#howTostart h3{
    color: #cea507;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
}
#howTostart h3 span{
    color: #000;
}
#howTostart p{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
#img-StartStep{
    width: 100%;
}
@media (max-width:768px) {
    #img-StartStep{
        width: 100px;
    }
}

#img-Start{
    width: 100%;
    border: 15px solid #e4e4e4;
    box-shadow: 4px 5px 50px #886b3c;
    animation: animateimg 1s  ease-in-out infinite alternate-reverse both;
}
@keyframes animateimg {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform:  translateY(-10px);
    }
}

/*--------------*/
/*----About------*/
/*--------------*/
#about{
    padding: 70px 0;
    position: relative;
}
#about .container{
    max-width: 1320px;
    color: #000;
}

.hstry-img {
    float: left;
    width: 100%;
    position: relative;
}
.hstry-img::before{
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 15px solid #cea507;
    background: transparent !important;
}

.hstry-img *{
    z-index: -1;
}
#about img{
    width: 100%;
    transition: 0.5s;
    /* z-index: 999; */
    animation: animateimgAbout 1s  ease-in-out infinite alternate-reverse both;
}

@keyframes animateimgAbout {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform:  translateY(10px);
    }
}

.sec-title-inner {
    position: relative;
    padding-bottom: 17px;
}
.sec-title-inner::before {
    content: "";
    position: absolute;
    left: 0;
    width: 150px;
    height: 3px;
    bottom: 0;
    background-image: linear-gradient(91deg, rgb(108, 87, 42) 0%, rgba(80,125,179,0) 100%);
}
#about h5{
    font-size:18px;
    font-weight: 600;    
    color: #000;
    margin-top: 1.5rem;
}
#about h2{
    font-size: 35px;
    font-weight: 600;
    color: #cea507;
}
#about p{
    /* font-family: cursive; */
    margin-top: 1rem;
    margin-bottom: 5px;
    font-size: 16.5px;
    color: #000;
    line-height: 30px;
}
#about ul {
    padding-left: 0;
    margin-bottom: 0;
    float: left;
    width: 100%;
    list-style: none;
    margin-top: -5px;
}
#about ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #000;
    float: left;
    position: relative;
    padding: 0 15px 0 20px;
    width: 50%;
    margin-top: 10px;
}
#about ul li:before {
    content: "";
    height: 11px;
    width: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #cea507;
}


/*--------------*/
/*----whyus------*/
/*--------------*/
#whyus{
    padding: 70px 0;
    position: relative;
}
#whyus .container{
    max-width: 1320px;
    color: #000;
}

.hstry-img {
    float: left;
    width: 100%;
}
#whyus img{
    width: 100%;
    transition: 0.5s;
    /* border: 15px solid #cea507; */
    border-radius: 20px;
}
#whyus img:hover{
    animation: animateimgAbout 1s  ease-in-out infinite alternate-reverse both;
}
@keyframes animateimgAbout {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform:  translateY(10px);
    }
}

.sec-title-inner {
    position: relative;
    padding-bottom: 17px;
}
.sec-title-inner::before {
    content: "";
    position: absolute;
    left: 0;
    width: 150px;
    height: 3px;
    bottom: 0;
    background-image: linear-gradient(91deg, rgb(108, 87, 42) 0%, rgba(80,125,179,0) 100%);
}
#whyus h2{
    font-size: 38px;
    font-weight: 600;
    color: #cea507;
}
#whyus p{
    /* font-family: cursive; */
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 15px;
    line-height: 2;
}
#whyus ul {
    padding-left: 0;
    margin-bottom: 0;
    float: left;
    width: 100%;
    list-style: none;
    margin-top: -5px;
}
#whyus ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #000;
    float: left;
    position: relative;
    padding: 0 15px 0 20px;
    width: 50%;
    margin-top: 10px;
}
#whyus ul li:before {
    content: "";
    height: 11px;
    width: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #cea507;
}

/*--------------*/
/*----courses------*/
/*--------------*/
#courses{
    padding: 40px 0;
    position: relative;
    text-align: center;
}
#courses .container{
    max-width: 1320px;
    color: #000;
}
#card-courses{
    border: none;
    border-radius: 20px;
    background: #fff;
    transition: 0.5s;
    border-bottom: 15px solid #000;
    margin-bottom: 2rem;
    padding: 0;

}

#card-courses:hover{
    border-bottom: 15px solid #cea507;    
    animation: animateCard 0.5s  ease-in-out alternate-reverse both;
}
@keyframes animateCard {
   
    100% {
        transform:  translateZ(160px) rotateY(180deg);
    }
}
#card-courses .top-card{
    display: flex;
    padding: 2rem;
}
#card-courses .top-card a{
    margin: auto;
}
#card-courses .top-card img{
    width: 100px;
    height: 100px;
    border: 5px solid #cea507;
    margin: auto;
    border-radius: 50%;
}
#bodycardCourses{
    padding: 1rem;
    text-align: center;
    color: #cea507;
    border-radius: 20px;
}
#bodycardCourses a{
    text-decoration: none;
}
#bodycardCourses h2{
    font-size: 20px;
    font-weight: 600;
    color: #cea507;
    margin-bottom: 1rem;
}
#bodycardCourses p{
    font-size: 15px;
    font-weight: 500;
}
#btn-courses{
    background: #cea507;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
}
#btn-courses:hover{
    background: #a78958;
}

/*---------------*/
/*----contact----*/
/*---------------*/
#contact{
    padding: 70px 0;
    position: relative;
}
#contact .container{
    max-width: 1320px;
}
#title-courses{
    color: #cea507;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#p-title-courses{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2rem;
    font-family: cursive;
}
#col-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-contact h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
}
#col-contact h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #cea507;
}
#col-contact p{
    color: #777777;
}
#contact iframe{
    width: 100%;
    height: 300px;
}
#row-info{
    padding-top: 2rem;
}
#info-contact{
    margin-bottom: 2rem;
}
#contact #info-contact i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #cea507;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
#contact #info-contact h2{
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #cea507;
}
#contact #info-contact p{
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 15px;
    font-style: italic;
    color: #777777;
}
#input-contact{
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: transparent;
    border-color: #bebebe;
    color: #cea507;
    margin-bottom: 2rem;
    height: 40px;
}
#textarea-contact{
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: transparent;
    border-color: #bebebe;
    color: #cea507;
    margin-bottom: 2rem;
}
#input-contact:focus,#textarea-contact:focus{
    border-color: #cea507;
}
#btn-contact{
    background: #cea507;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
}
#btn-contact:hover{
    background: #a78958;
}


/*------------------*/
/*------Footer-----*/
/*------------------*/
#footer{
    padding: 5rem 0;
    text-align: left;
}
#footer .container{
    max-width: 1320px;
    color: #000;
}
#logo-footer{
      width: 60px;
      margin-bottom: 2rem;
}
#p-footer{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
#footer hr{
    width: 100%;
    height: 1px;
    background: #cecece;
}
#h3-footer{
    color: #cea507;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.icon-footer{
    display: flex;
}
.icon-footer a:hover{
    text-decoration: none;
}
.facebook-footer,.twitter-footer,.instagram-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: 1px solid #000;
    margin-right: 0.5rem;
}
.facebook-footer:hover,.twitter-footer:hover,.instagram-footer:hover{
    animation: animateIcon 0.5s  ease-in-out infinite alternate-reverse both;
}
.facebook-footer:hover,.twitter-footer:hover,.instagram-footer:hover{
    animation: animateIconhover 0.5s  ease-in-out alternate-reverse both;
}
@keyframes animateIconhover {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-270deg);
    }
    
}
#h2-footer{
    color: #cea507;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
}
#a-footer{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.4rem;
}
#a-footer:hover{
    text-decoration: none;
    color: #cea507;
}
  
#footer-i{
    color: #cea507;
    font-size: 25px;
    font-weight: 700;
}
#h5-footer{
    color: #000;
    font-size: 15px;
    font-weight: 600;
}
#p2-footer{
    font-size: 13px;
    font-weight: 400;
    color: #000;
}
  
.payment-footer{
    display: flex;
}
.payment-footer a:hover{
    text-decoration: none;
}
.visa, .mastercard, .discover, .paypal{
    color: #cea507;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: #91a3bb 1px solid;
    border-radius: 1px;
    margin-right: 0.6rem;
    padding: 0.25rem;
}
  
.page-end{
    padding: 1rem 0 0.5rem;
    background:  none repeat scroll 0 0;
    /* border-top: 1px solid #e7e7e7;  */
}
.page-end p{
    color: #000;
}

/*----------------------------*/
/*-------Courses-Page Start-------*/
/*----------------------------*/
#Courses-Page{
    overflow: hidden;
    padding: 90px 0;

}
#Courses-Page .container{
    max-width: 1520px;
}
.section-header {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}
.section-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: #cea507;
    bottom: 0;
    left: calc(50% - 25px);
}
#h2-Courses-Page{
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    color: #cea507;
}
#h2-Courses-Page span{
    color: #000;
}
#p-Courses-Page{
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
#nav-tab{
    border: 0;
}
#btn-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
}
#btn-tab{
    border-radius: 100px;
    background: #4d320e;
    padding: 10px 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: 0.5s;
    margin: 0.25rem;
}
#btn-tab.active{
    background: #cea507;
    border: none;
}
#p2-price{
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    margin: 30px auto 30px auto;
    color: #000;
}
#p2-price span{
    display: block;
}

#img-details{
    width: 100%;
}
#info-cours{
    background: #f6f7f6;
    padding: 10px 15px;
    margin-bottom: 15px;
    color: #000;
}
#info-cours h5{
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}
#info-cours p{
    margin: 0;
    color: #000;
    font-weight: 400;
}

#course-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    color: #cea507;
}
#course-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #eef0ef;
    bottom: -5px;
    left: 0;
}
#course-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #cea507;
    bottom: -5px;
    left: 0;
}
#course-details p{
    color: #000;
}
#course-details h5{
    color: #cea507;
    font-weight: 600;
}
#course-details ul {
    padding-left: 0;
    margin-bottom: 0;
    float: left;
    width: 100%;
    list-style: none;
    margin-top: -5px;
}
#course-details ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #000;
    float: left;
    position: relative;
    padding: 0 15px 0 20px;
    width: 50%;
    margin-top: 10px;
}
#course-details ul li:before {
    content: "";
    height: 11px;
    width: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #cea507;
}
#btn-coursesDetails{
    background: #cea507;
    border: 0;
    padding: 10px 35px;
    color: #000;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
    margin: auto;
    margin-top: 3rem;
}
#btn-coursesDetails:hover{
    background: #a78958;
}

/*----------------------------*/
/*-------Courses-Page End-------*/
/*----------------------------*/




/*----------------------------*/
/*-------Pricing Start-------*/
/*----------------------------*/
#price{
    overflow: hidden;
    padding: 90px 0;
}
#price .container{
    max-width: 1520px;
}
.section-header {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}
.section-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: #cea507;
    bottom: 0;
    left: calc(50% - 25px);
}
#h2-price{
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
#p-price{
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
#nav-tab{
    border: 0;
}
#btn-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
}
#btn-tab{
    border-radius: 100px;
    background: #4d320e;
    padding: 10px 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: 0.5s;
    margin: 0.25rem;
}
#btn-tab.active{
    background: #cea507;
    border: none;
}
#p2-price{
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    margin: 30px auto 30px auto;
    color: #000;
}
#p2-price span{
    display: block;
}

#card-price{
    margin-bottom: 2rem;
    transition: 0.5s;
    box-shadow: 2px 2px 5px #ffe2ab;
}
#card-price:hover{
    border: 1px solid #cea507;
}
#card-price.active{
    border: 1px solid #cea507;
}
.bottom-card.active{
    border-top: 1px solid #cea507;
}
.top-card{
    position: relative;
    overflow: hidden;
}
.top-card{
    color: #cea507;
    text-align: center;
    padding: 1.5rem 0;

    border-bottom: 1px solid #cea507;
}
.top-card h2{
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;

}
.top-card h3{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    color: #000;
    background: #cea507;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 11px;
    font-weight: 600;
}
#body-price{
    text-align: center;
}
#body-price h3{
    color: #5e5e5e;
    font-size: 18px;
    font-weight: 400;
    margin: 2rem 0;
}
#span1-price{
    font-size: 20px;
    top: -15px;
    color: #cea507;
    left: 5px;
}
#span2-price{
    color: #cea507;
    font-size: 40px;
    font-weight: 700;
}
#body-price ul{
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}
#body-price ul li{
    padding-bottom: 16px;
}
.bottom-card{
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    transition: 0.5s;
}
#card-price:hover .bottom-card{
    border-top: 1px solid #cea507;
}
#btn-price{
    padding: 5px 30px;
    color: #cea507;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    border-radius: 100px;
    border: 2px solid #cea507;
    transition: 0.5s;
}
#btn-price:hover{
    color: #fff;
    background: #cea507;
}
#btn-price.active{
    color: #fff;
    background: #cea507;
}

/*----------------------------*/
/*-------Pricing End-------*/
/*----------------------------*/

/*----------------------------*/
/*-------AboutPage Start-------*/
/*----------------------------*/
#aboutPage{
    overflow: hidden;
    padding: 0 0 90px;
}
#aboutPage .container{
    max-width: 1520px;
}
.title-aboutPage {
    text-align: center;
    background: #cea507;
    padding: 30px 0;
    color: #000;
    margin-bottom: 60px;
}
#aboutPage h2 {
    font-weight: 600;
    color: #fff;
    font-size: 30px;
    margin-bottom: 1rem;
}
#aboutPage p {
    color: #fff;
    font-style: italic!important;
    margin-bottom: 1.5rem;
}
#aboutPage ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#aboutPage ul li {
    color: #000;
    padding-bottom: 10px;
}
#aboutPage ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #cea507;
}
#aboutPage img{
    width: 100%;
}

#our-items{
    padding: 3rem 0;
    text-align: center;
}
.boxitems{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}
#our-items h2{
    color: #cea507;
    font-size: 50px;
    font-weight: 700;
}
#our-items p{
    color: #000;
    font-size: 15px;
    font-weight: 600;
}

/*-----------------*/
/*--What The Say About Us---*/
/*-----------------*/
#review{
    padding: 4rem 0;
    position: relative;
}
#review .container{
    max-width: 1520px;
}
#col-review{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-review h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
    margin-bottom: 2rem;
}
#col-review h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #cea507;
}
#card-review{
    box-sizing: content-box;
    padding: 30px 60px 60px 30px;
    margin: 30px 15px;
    min-height: 200px;
    border: 1px solid #eef0ef;
    position: relative;
    background: #fff;
}

#card-review img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: 6px solid #fff;
    position: absolute;
    top: -45px;
    left: 35px;
}
#card-review h3{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}
#card-review h4{
    font-size: 14px;
    color: #999;
    margin: 0;
}
#card-review p{
    font-style: italic;
    margin: 15px auto;
}
#card-review p i{
    color: #ffdb97;
    font-size: 26px;
}

/*------------*/
/*--Coursoll || Review--*/
/*------------*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
#swiper-slide{
    margin: 0;

}
.swiper-slide #card-review{
    display: block;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #cea507;
}
.btn-swiper span{
    background: #cea507;
    width: 20px;
    height: 20px;
}
/*----------------------------*/
/*-------ApoutPage End-------*/
/*----------------------------*/

/*---------------*/
/*----HowWorksPage Page----*/
/*---------------*/
#HowWorksPage{
    padding: 4rem 0;
}
#HowWorksPage .container{
    max-width: 1520px;
}
#col-HowWorksPage{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-HowWorksPage h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
    z-index: 9;
}
#col-HowWorksPage h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #cea507;
}
#col-HowWorksPage p{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4rem;
    z-index: 9;
} 
#col-HowWorksPage p span{
    display: block;
}

#list-HowWorksPage{
    border: 0;
    padding: 12px 0 12px 15px;
    transition: 0.3s;
    color: #433f39;
    border-radius: 0;
    border-right: 4px solid #e4e4e8;
    font-size: 15px;
    font-weight: 700;
    display: flex;
}
#list-HowWorksPage:hover{
    color: #cea507;
}
#list-HowWorksPage.active {
    z-index: 2;
    color: #fff;
    background: #cea507;
    border-right: 4px solid #cea507;
}

#nav-tabContent p{
    color: #000;
}
#nav-tabContent p:nth-child(2){
    font-style: italic;
}
#btn-HowWorksPage{
    color: #fff;
    background: #cea507;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #cea507;
    transition: all ease-in-out 0.3s;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
#btn-HowWorksPage:hover{
    background: none;
    color: #cea507;
}
#HowWorksPage img{
    position: relative;
    width: 100%;
    animation: animateimg 2s  ease-in-out infinite alternate-reverse both;
}
@keyframes animateimg {
    0% {
        transform: translateY(13px);
    }
    100% {
        transform: translateY(-13px);
    }
}
#h2-WorkPage{
    color: #cea507;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
#p-WorkPage{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
}
#HowWorksPage ul{
    list-style: none;
    margin: 0;
    padding: 0;
    color: #000;
}
#HowWorksPage ul li{
    margin-bottom: 2rem;
}
#HowWorksPage ul li span{
    color: #cea507;
}
#HowWorksPage ul li #span2{
    color: red;
}
/*----------------------------*/
/*-------HowWorksPage Page End-------*/
/*----------------------------*/


/*---------------------*/
/*------LoginPage------*/
/*---------------------*/
#loginPage{
    padding: 117px 0;
}
#loginPage .container{
    max-width: 1520px;
}
#formLogin{
    padding: 2rem 1rem;
    border: 2px solid #cea507;
    border-radius: 8px;
    width: 100%;
}
#loginPage #formLogin a{
    margin: auto;
    margin-bottom: 2rem;
}
#loginPage #formLogin a img{
    width: 80px;
}
#loginPage #formLogin h2{
    margin: auto;
    color: #000;
    margin-bottom: 2rem;
}
#formLogin label{
    color: #000;
}
#formLogin #input-login{
    width: 100%;
    padding: 8px 3px;
    background: transparent !important;
    border: 1px solid #9b9b9b;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#formLogin #input-login:focus{
    border: 1px solid #cea507;
    box-shadow: none;
}
#btn-login{
    background: #cea507;
    border: 0;
    padding: 5px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 1.5rem;
}
#btn-login:hover{
    background: #a78958;
}
#formLogin p{
    color: #000;
}
#formLogin p a{
    text-decoration: none;
    color: #cea507;
    transition: 0.3s;
}
#formLogin p a:hover{
    color: #70572f;
}
@media (max-width:426px) {
    #formLogin{
        padding: 2rem 0;
    }
}

/*-------------------*/
/*------Register Page----*/
/*-------------------*/
#registerPage{
    padding: 109px 0 108px;
}
#registerPage .container{
    max-width: 1320px;
}
#form-register{
    padding: 2rem 1rem;
    border: 2px solid #cea507;
    border-radius: 8px;
    width: 100%;
}
#registerPage #form-register a{
    margin: auto;
    margin-bottom: 2rem;
}
#registerPage #form-register a img{
    width: 80px;
}
#registerPage #form-register h2{
    margin: auto;
    color: #000;
    margin-bottom: 2rem;
}
#form-register label{
    color: #000;
}
#form-register #input-register{
    width: 100%;
    padding: 8px 3px;
    background: transparent !important;
    border: 1px solid #9b9b9b;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#form-register #input-register:focus{
    border: 1px solid #cea507;
    box-shadow: none;
}
#btn-register{
    background: #cea507;
    border: 0;
    padding: 5px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 1.5rem;
}
#btn-register:hover{
    background: #a78958;
}
#form-register p{
    color: #000;
}
#form-register p a{
    text-decoration: none;
    color: #cea507;
    transition: 0.3s;
}
#form-register p a:hover{
    color: #70572f;
}
@media (max-width:426px) {
    #form-register{
        padding: 2rem 0;
    }
}

/*-------------------*/
/*------Enroll Page----*/
/*-------------------*/
#enroll-Page{
    padding: 70px 0;
}
#enroll-Page .container{
    max-width: 1520px;
}
#enroll-Page #formEnroll .col-md-12{
    margin-top: 1.5rem;
}
#formEnroll{
    padding: 1rem;
    border: 1px solid #cea507;
}
#enroll-Page h2, #enroll-Page h3{
    color: #cea507;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
#enroll-Page #formEnroll p{
    color: #000;
}
#enroll-Page #formEnroll p span{
    color: red;
}
#enroll-Page #formEnroll label{
    color: #cea507;
}
#enroll-Page #formEnroll #input-enroll{
    padding: 22px 5px;
    border: 1px solid #9b9b9b;
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    background: transparent !important;
}
#enroll-Page #formEnroll #input-enroll:focus{
    border: 1px solid #cea507;
    box-shadow: none;
}
#btn-enroll{

    background: #cea507;
    border: 0;
    padding: 5px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 1.5rem;
}
#btn-enroll:hover{
    background: #a78958;
}

/*-------------------*/
/*------Student Page----*/
/*-------------------*/
#studentPage{
    padding: 70px 0;
}
#studentPage .container{
    max-width: 1520px;
}
#studentPage h2{
    margin-bottom: 3rem;
    color: #cea507;
    font-size: 30px;
    font-weight: 700;
    position: relative;
}
#studentPage h2::before{
    content: "";
    position: absolute;
    width: 200px;
    height: 4px;
    bottom: -15px;
    left: 0;
    background-image: linear-gradient(91deg, rgb(108, 87, 42) 0%, rgba(80,125,179,0) 100%);
}
#studentPage img{
    width: 100%;
    margin-bottom: 0.5rem;
}

/*-------------------*/
/*------FAQS Page----*/
/*-------------------*/
#faqsPage{
    padding: 70px 0;
}
#faqsPage .container{
    max-width: 1520px;
}
#card-faq{
    border: 1px solid #cea507;
}
#faqsPage .card-header{
    cursor: pointer;
    border: none;
    background: #fff;
}
#faqsPage h3{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
}
#faqsPage h2{
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/*-------------------*/
/*------police Page----*/
/*-------------------*/
#ourTerms{
    padding: 70px 0;
}
#ourTerms .container{
    max-width: 1320px;
}
#ourTerms h2{
    color: #cea507;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#ourTerms p{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}

#ourTerms ul{
    list-style: none;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
#ourTerms ul li{
    margin-bottom: 1.5rem;
}
#ourTerms strong{
    color: #cea507;
}
#ourTerms a{
    text-decoration: none;
    color: #cea507;
    font-weight: 700;
}
#ourTerms a:hover{
    text-decoration: underline 2px solid #ffffff;
}
#ourTerms span{
    display: block;
    color: #000;
}

/*-------------------*/
/*------police Page----*/
/*-------------------*/
#policePage{
    padding: 70px 0;
}
#policePage .container{
    max-width: 1320px;
}
#policePage h2{
    color: #cea507;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#policePage p{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#policePage ul{
    list-style: outside;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
#policePage ul li{
    margin-bottom: 1.5rem;
}
#policePage a{
    text-decoration: none;
    color: #cea507;
    font-weight: 700;
}
#policePage a:hover{
    text-decoration: underline 2px solid #ffffff;
}


/*---------------*/
/*-----JOPS------*/
/*---------------*/
#jops{
    padding: 70px 0;
}
#jops .container{
    max-width: 1320px;
}
#h2-jops{
    color: #cea507;
    font-size: 33px;
    font-weight: 700;
    text-align: center;
}
#jops h2 span{
    color: #000;
}
#p-jops{
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}
#jops hr{
    width: 60px;
    height: 2px;
    background: #cea507;
    margin-bottom: 2rem;
}
  
#col-jops{
    margin-top: 2rem;
    text-align: left;
}
#col-jops h5{
    color: #cea507;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}
#col-jops p{
    color: #000;
    font-size: 15px;
    font-weight: 400;
}
#col2-jops h5{
    color: #cea507;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}
#col-input-jops{
    padding: 0;
}
#input-jops{
    background: transparent !important;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #b8b8b8;
    border-radius: 0;
    height: 40px;
    margin-bottom: 1rem;
}
#input-jops:focus,#select-jops:focus,#textarea-jops:focus,#inputfile-jops:focus{
    border: 1px solid #cea507;
    box-shadow: none;
}
#input-jops::placeholder{
    color: #000;
}
#select-jops{
    border-radius: 0;
    margin-bottom: 1rem;
    background: transparent !important;
    color: #000;
}
#select-jops option{
    background: #000 !important;
    color: #000;
}
#textarea-jops{
    background: transparent !important;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #b8b8b8;
    border-radius: 0;
}
#col-file{
    color: #000;
    font-size: 14px;
    font-weight: 400;
}
#inputfile-jops{
    background: transparent !important;
    color: #000;
    font-weight: 400;
    border: 1px  solid #b8b8b8;
    border-radius: 0;
    height: 50px;
    padding: 10px;
    margin-bottom: 0.25rem;
}

#btn-jops{
    margin-top: 2rem;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    background: none;
    border-radius: 50px;
    border: 2px solid #cea507;
    padding: 0.5rem 2rem;
    transition: 0.4s;
}
#btn-jops:hover{
    background: #cea507;
}
  

/*---------------------*/
/*------Teachers / Team-------*/
/*---------------------*/
#team{
    padding: 70px 0;
}
#team .container{
    max-width: 1320px;
}
#team .section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}
#team .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
    padding-bottom: 20px;
    position: relative;
}
#team .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #cea507;
    bottom: 0;
    left: calc(50% - 25px);
}
#team .section-title p {
    color: #000;
    margin-bottom: 0;
}
#team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    position: relative;
    width: 100%;
}
#team .member-img {
    position: relative;
    overflow: hidden;
}
#team .member-img img {
    width: 100%;
}
#team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}
#team .social a {
    transition: color 0.3s;
    color: #111111;
    margin: 0 3px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: #daaa5e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    color: #fff;
}
#team .social i {
    font-size: 18px;
    line-height: 0;
}
#team .member-info {
    padding: 25px 15px;
}
#team .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #111111;
}
#team .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}



/*---------------------*/
/*-------Blogs /-------*/
/*---------------------*/
#blog{
    padding: 70px 0;
}
#blog .container{
    max-width: 1320px;
}
#blog .section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}
#blog .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
    padding-bottom: 20px;
    position: relative;
}
#blog .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e4b262;
    bottom: 0;
    left: calc(50% - 25px);
}
#blog .section-title p {
    color: #000;
    margin-bottom: 0;
}

/*---Blog's card-----*/
.posts-list article {
    height: 100%;
    border-bottom: 1px solid #d6e2ef;
    padding-bottom: 30px;
}
.posts-list .post-img {
    max-height: 240px;
    overflow: hidden;
}
.posts-list .title {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0 0 0;
}
.posts-list .title a {
    color: #8a6b3b;
    transition: 0.3s;
    text-decoration: none;
}
.posts-list .title a:hover {
    color: #e4b262;
}
.posts-list .meta-top {
    margin-top: 20px;
    color: #e4b262;
}
.meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #e4b262;
}
.meta-top a {
    color: #e4b262;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
.meta-top ul li+li {
    padding-left: 20px;
}
.posts-list .content {
    margin-top: 20px;
    color: #000;
}
.posts-list .read-more a {
    display: inline-block;
    color: #000;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
    background: #cea507;
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 3px;
}
.posts-list .read-more a:hover {
    background: #e6b66a;

}
/*------Btns To auther Pages------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #e4b262;
}
.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}
.blog .blog-pagination li a {
    color: #b99252;
    border-radius: 0;
    width: 40px;
    height: 40px;
    background: #faf2db;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-pagination li.active a, 
.blog-pagination li:hover a {
    background: #e4b262;
    color: #000;
    text-decoration: none;
}
/*-----Blog's Sidebar--------*/
.blog .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #be9c50;
}
.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(69, 59, 27, 0.2);
    padding: 3px 10px;
    position: relative;
}
.blog .sidebar #input-blog {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
.blog .sidebar #input-blog:focus{
    box-shadow: none;
}
.blog .sidebar #btn-blogSearch {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #e4b262;
    color: #000;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}
.blog .sidebar #btn-blogSearch:focus{
    box-shadow: none;
}
.blog .sidebar #btn-blogSearch i {
    line-height: 0;
}

.blog .sidebar .sidebar-item {
    margin-top: 40px;
}
.blog .categories ul {
    list-style: none;
    padding: 0;
}
.blog .categories ul li+li {
    padding-top: 10px;
}
.blog .sidebar .categories ul a {
    color: #000;
    font-size: 15px;
    text-decoration: none;
}
.blog .sidebar .categories ul a:hover{
    color: #cea507;
}
.blog .sidebar .categories ul a span {
    padding-left: 5px;
    font-size: 14px;
}
.blog .sidebar .recent-posts .post-item {
    display: flex;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    background: #fff;
}
.blog .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}
.blog .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400;
}
.blog .sidebar .recent-posts h4 a {
    color: #e4b262;
    transition: 0.3s;
    text-decoration: none;
}
.blog .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #000;
}
.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}
.blog .sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px;
}
.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}
.blog .sidebar .tags ul li {
    display: inline-block;
}
.blog .sidebar .tags ul a {
    color: #000;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #e4b262;
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
}
.blog .sidebar .tags ul a:hover {
    background: #e4b262;
}

/*----------------*/
/*----blog-details------*/
/*----------------*/
#blog-detail{
    padding: 80px 0;
}
#blog-detail .container{
    max-width: 1320px;
}
#blog-detail.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}
#blog-detail .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
    padding-bottom: 20px;
    position: relative;
}
#blog-detail .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e4b262;
    bottom: 0;
    left: calc(50% - 25px);
}
#blog-detail .section-title p {
    text-align: center;
    color: #000;
    margin-bottom: 1.5rem;
}
#blog-detail .blog-details {
    box-shadow: 0 4px 16px rgba(225, 225, 225, 0.5);
    padding: 30px;
    background: #fff;
}
.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}
.blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: #e4b262;
}
.blog-details .meta-top {
    margin-top: 20px;
    color: #000;
}
.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #e4b262;
}
.blog-details .meta-top a {
    color: #000;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
.blog-details .meta-top ul li+li {
    padding-left: 20px;
}
.blog-details .content {
    margin-top: 20px;
}
.blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(155, 125, 42, 0.5);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.blog-details .content blockquote p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}
.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    color: #ffc963;
    font-weight: bold;
}
.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(69, 58, 27, 0.15);
}
.blog-details .meta-bottom i {
    color: #e4b262;
    display: inline;
}
.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}
.blog-details .meta-bottom .cats li {
    display: inline-block;
}
.blog-details .meta-bottom a {
    color: rgba(69, 59, 27, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
.blog-details .meta-bottom a:hover{
    color: #e4b262;
}
.blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}
.blog-details .meta-bottom .tags li {
    display: inline-block;
}
.blog .blog-details .meta-bottom a {
    color: #000;
    transition: 0.3s;
    text-decoration: none;
}
.blog .blog-details .meta-bottom a:hover{
    color: #e4b262;
}
.blog .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: #000;
    content: ",";
}
.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.blog .post-author img {
    max-width: 120px;
    margin-right: 20px;
    height: 120px;
    border-radius: 150px;
}
.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #e4b262;
}
.blog .post-author .social-links {
    margin: 0 10px 10px 0;
}
.blog .post-author .social-links a {
    color: rgba(189, 145, 24);
    margin-right: 5px;
}
.blog .post-author p {
    font-style: italic;
    margin-bottom: 0;
}
/*------Comments-------*/
.blog .comments {
    margin-top: 30px;
    background: #fff;
}
.blog .comments .comments-count {
    font-weight: bold;
    color: #000;
}
.blog .comments .comment {
    margin-top: 30px;
    position: relative;
}
.blog .comments .comment .comment-img {
    margin-right: 14px;
}
.blog .comments .comment .comment-img img {
    width: 60px;
}
.blog .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
.blog .comments .comment h5 a {
    font-weight: bold;
    color: #e29f0d;
    transition: 0.3s;
    text-decoration: none;
}
.blog .comments .comment h5 a:hover {
    color: #000;
}
.blog .comments .reply {
    padding-left: 10px;
    color: #453a1b;
}
.blog .comments .reply i {
    font-size: 20px;
}
.blog .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgb(214, 166, 77);
    margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
    padding-left: 40px;
}
.blog .comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
    color: #000;
}
.blog .comments .reply-form p {
    font-size: 14px;
}
.blog .comments .reply-form .form-group {
    margin-bottom: 25px;
}
.blog .comments .reply-form input {
    border-radius: 4px;
    padding: 20px 10px;
    font-size: 14px;
}
.blog .comments .reply-form input:focus,
.blog .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #e4b262;
}
.blog .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
.blog .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #a7802d;
}
.blog .comments .reply-form .btn-primary:hover {
    background-color: rgb(216, 159, 37);
}
#blog-detail p{
    color: #000;
}


/*------------------*/
/*-Script Show Item-*/
/*------------------*/

/* Button To Top */
.reveal{
    transform: translateY(90px);
    opacity: 0;
    transition: all 1s ease;
}
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}


/* left To Right  */
/* .ToRight{
    transform: translateX(-90px);
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease;
}
.ToRight.active{
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
} */


/* right To Left  */
/* .ToLeft{
    transform: translateX(90px);
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
}
.ToLeft.active{
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
} */
