/* *******************************************************************



        ********* table of contents **************88

        01. = google fonts
        02. = variables
        03. = overrides variable for - theme dark
        04. = base
        05. = box
        06. = customized bootstrap classes
        07. = anumation keframes
        08. = section - padding , title
        09. = buttons
        10. = page loader
        11. = circular img
        12. = forms
        13. = video modal
        14. = pagination
        15. = breadcrumb
        16. = tabs
        17. = bubble animation
        18. = style switcher
        19. = header
        20. = footer
        21. = banner section
        22. = fun facts section
        23. = courses section
        24. = testimonials section
        25. = bai section
        26. = courses details section
        27. = contact section


 ********************************************************************/







 /*---------------------
  01. = google fonts
---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,500;1,200;1,300;1,500&family=Lato:wght@100&family=Poppins:wght@300;400;500;600;700&display=swap');

 /*---------------------
  02. = variables
---------------------*/

:root{
    --orange: hsl(36, 80%, 50%);
    --white: hsl(0, 0%, 100%);
    --WHITH: hsl(0, 0%, 100%);
    --BLACK: hsl(0, 0%, 0%);
    --black-90: hsl(0, 0%, 10%);
    --black-70: hsl(0, 0%, 30%);
    --black-alpha-40: hsl(0, 0%, 0%, 0.4);
    --yellow-light: hsl(44, 95%, 83%);
    --green-light: hsl(158, 68%, 75%);
    --red-light: hsl(0, 84%, 80%);
    --orange-light: hsl(22, 85%, 80%);
    --select-box-bg-color: hsl(0, 0%, 100%);
    --border-color-1: hsl(0, 0%, 90%);
}




 /*---------------------
  03. = overrides variable for - theme dark
---------------------*/
body.t-dark{
    --body-bg-color: hsl(240, 10%, 19%);
    --black-70: hsl(0, 0%, 87%);
    --black-90: hsl(0, 0%, 100%);
    --shadow: 0 0 10px hsl(0, 0%, 0%, 0.08);
    --white: hsl(240, 8%, 21%);
    --select-box-bg-color: hsl(240, 8%, 21%);
    --border-color-2: hsl(240, 9%, 25%);
    --border-color-1: hsl(240, 9%, 30%);
}


 /*---------------------
  04. = base
---------------------*/
body{
    background-color: var(--body-bg-color);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--black-70);
    min-height: 100vh;
    overflow-x: hidden;

}

a{
    color: var(--main-color);
    text-decoration: none;
}

a:hover{
    color: var(--main-color);
}

img{
    max-width: 100%;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

::selection{
    color: var(--WHITH);
    background-color: var(--main-color);
}

h1,h2,h3,h4,h5{
    color: var(--black-90);
    line-height: 1.3;
}

h3{
    font-size: 20px;
}

 /*---------------------
  05. = box
---------------------*/
.box{
    background-color: var(--white);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 30px;
}


  /*---------------------
 06. = customized bootstrap classes
 ---------------------*/
/* .container{
    --bs-gutter-x: 15px;
    max-width: 1140px;
} */

.row{
    --bs-gutter-x: 30px;

}

    /*---------------------
 07. = anumation keframes
---------------------*/
@keyframes spin {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }


}

@keyframes bubble {

    0%{
        transform: translateY(0vh);
        -webkit-transform: translateY(0vh);
        -moz-transform: translateY(0vh);
        -ms-transform: translateY(0vh);
        -o-transform: translateY(0vh);
        opacity: 0;
    }
    5%,95%{
        opacity: 1;
    }
    100%{
        transform: translateY(-100vh);
        -webkit-transform: translateY(-100vh);
        -moz-transform: translateY(-100vh);
        -ms-transform: translateY(-100vh);
        -o-transform: translateY(-100vh);
        opacity: 0;
}

}

@keyframes loader {

    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    25%,50%{
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
    75%, 100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@keyframes loaderIn {

    0%, 25%,100%{
        height: 0;
    }
    50%,75%{
        height: 100%;
    }
}

@keyframes ColorBg {

    0%{
        filter: hue-rotate(0deg);
        -webkit-filter: hue-rotate(0deg);
    }
    100%{
        filter: hue-rotate(360deg);
        -webkit-filter: hue-rotate(360deg);
    }
}

@keyframes spanBg {

    0%{
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    80%,100%{
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
}
}



  /*---------------------
 08. = section - padding , title
---------------------**/
.section-padding{
    padding: 60px 0;
}
.section-title{
    margin-bottom: 40px;
}

.section-title .title{
    font-size: 20px;
    color: var(--main-color);
    text-transform: capitalize;
}

.section-title .sub-title{
    font-size: 35px;
    font-weight: 600;
    color: var(--black-90);
}

  /*---------------------
 09. = buttons
---------------------*/

.btn-border-theme{
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-border-theme:hover{
    background-color: var(--main-color);
    color: var(--WHITH);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 8px 20px;
}
.btn-theme{
    background-color: var(--main-color);
    color: var(--black-90);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-theme:hover{
    color: var(--WHITH);
    background-color: var(--button-hover-color);
}

.btn-theme:focus{
    box-shadow: 0 0 8px var(--main-color);
}

.btn-block{
    width: 100%;
}

.btn-form{
    height: 48px;
}
  /*---------------------
 10. = page loader
---------------------*/
.page-loader{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #042104;
    animation: ColorBg 2s linear infinite;
    -webkit-animation: ColorBg 2s linear infinite;

}

.page-loader .loader{
    position: relative;
    width: 120px;
    height: 120px;
}
.page-loader .loader::before{
    content: 'loading...';
    color: white;
    /* letter-spacing: 1px; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.page-loader .loader span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(calc(-1*(-1*(18deg * var(--i)))));
    -webkit-transform: rotate(calc(-1*(-1*(18deg * var(--i)))));
    -moz-transform: rotate(calc(-1*(-1*(18deg * var(--i)))));
    -ms-transform: rotate(calc(-1*(-1*(18deg * var(--i)))));
    -o-transform: rotate(calc(-1*(-1*(18deg * var(--i)))));
}

.page-loader .loader span::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #00ff0a;
    box-shadow: 0 0 10px #00ff0a,    0 0 20px #00ff0a,    0 0 40px #00ff0a,    0 0 60px #00ff0a,    0 0 80px #00ff0a,    0 0 100px #00ff0a;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    animation: spanBg 1s linear infinite;
    -webkit-animation: spanBg 1s linear infinite;
    animation-delay: calc(0.1s * var(--i));
}



/* .page-loader.fade-out, */
.page-loader .loader.fade-out,
.page-loader .loader span.fade-out{
    opacity: 0;
    transition: all 8.6s ease;
    -webkit-transition: all 8.6s ease;
    -moz-transition: all 8.6s ease;
    -ms-transition: all 8.6s ease;
    -o-transition: all 8.6s ease;
}

/* .page-loader div{
    margin: auto;
    height: 32px;
    width: 32px;
    border: 4px solid var(--main-color);
    position: relative;
    animation: loader 2s linear infinite;
    -webkit-animation: loader 2s linear infinite;
}

.page-loader div::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--main-color);
    left: 0;
    top: 0;
    animation: loaderIn 2s linear infinite;
    -webkit-animation: loaderIn 2s linear infinite;
} */



  /*---------------------
 11. = circular img
---------------------*/
  .circular-img{
    max-width: 360px;
    margin:auto;
    position: relative;
    bottom: 0;
    z-index: 1;
}

.circular-img-inner{
    text-align: center;
    border-radius: 0 0 180px 180px;
    -webkit-border-radius: 0 0 180px 180px;
    -moz-border-radius: 0 0 180px 180px;
    -ms-border-radius: 0 0 180px 180px;
    -o-border-radius: 0 0 180px 180px;
    /* overflow: hidden; */
}

.circular-img-circle{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

}


.circular-img img{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}



   /*---------------------
 12. = forms
---------------------**/
.form-title{
    font-size: 24px;
    margin: 0 0 30px;
    font-weight: 600;
}
.form-control::placeholder{
    color: var(--black-70);
}
.form-group{
    margin-bottom: 25px;
    position: relative;
}

.form-control{
    height: 48px;
    border-color: var(--border-color-1);
    color: var(--black-90);
    background-color: transparent;
}

.form-control:focus{
    background-color: transparent;
    border-color: var(--border-color-1);
    color: var(--black-90);
    box-shadow: none;
}
.select-icon{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    pointer-events: none;
    font-size: 13px;
}

select.form-control:focus option{
    background-color: var(--select-box-bg-color);
}

textarea.form-control{
    height: 120px;
    resize: none;
}
   /*---------------------
 13. = video modal
---------------------*/
.video-modal .btn-close{

    width: 35px;
    height: 35px;
    background-image: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 1;
    z-index: 1;
    position: absolute;
    right: 0;
    top: -35px;
    color: var(--WHITH);
    font-size: 16px;
    padding: 0;
}

.video-modal .modal-content{
    border: 0;
}

   /**---------------------
 14. = pagination
---------------------*/
.page-item.disabled .page-link,
.page-link{
    border: none;
    background-color: transparent;
    color: var(--black-70);

}
.page-item.active .page-link{
    background-color: var(--main-color);
}

.page-link:hover{
    background-color: var(--main-color);
    color: var(--WHITH);
}

   /**---------------------
 15. = breadcrumb
---------------------*/
.breadcrumb-nav{
    padding: 10px 0;
}

.breadcrumb-nav .breadcrumb-item{
    font-size: 14px;
    text-transform: capitalize;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-nav .breadcrumb-item.active{

    color: var(--black-70);
}


   /*---------------------
 16. = tabs
---------------------***/
.nav-tabs .nav-link{
    background-color: var(--white);
    text-transform: capitalize;
    border-color: var(--border-color-2);
    padding: 5px 12px;
    margin: 0 5px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: var(--black-70);
    font-size: 16px;
}
.nav-tabs .nav-link:hover{
    background-color: var(--border-color-2);
}
.nav-tabs .nav-link.active{
    background-color: var(--main-color);
    border-color: transparent;
    color: var(--WHITH);
}


.masd{
    background-color: var(--white);
    text-transform: capitalize;
    border-color: var(--border-color-2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: var(--black-70);
    font-size: 16px;
}
.masd:hover{
    background-color: var(--border-color-2);
}
.masd.active{
    background-color: var(--main-color);
    border-color: transparent;
    color: var(--WHITH);
}

   /*---------------------
 17. = bubble animation
---------------------**/

.bubble-animation-item{
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid transparent;
    z-index: -1;
}

.bubble-animation-item:nth-child(1){
    border-color: var(--yellow-light);
    top: 120%;
    left: 10%;
    animation: bubble 30s linear;
    -webkit-animation: bubble 30s linear;
}

.bubble-animation-item:nth-child(2){
    border-color: var(--green-light);
    top: 60%;
    left: 50%;
    animation: bubble 40s linear;
    -webkit-animation: bubble 40s linear;
}

.bubble-animation-item:nth-child(3){
    border-color: var(--red-light);
    top: 90%;
    left: 90%;
    animation: bubble 50s linear;
    -webkit-animation: bubble 50s linear;
}

.bubble-animation-item:nth-child(4){
    border-color: var(--yellow-light);
    top: 80%;
    left: 60%;
    animation: bubble 60s linear;
    -webkit-animation: bubble 60s linear;
}

.bubble-animation-item:nth-child(5){
    border-color: var(--green-light);
    top: 30%;
    left: 10%;
    animation: bubble 70s linear;
    -webkit-animation: bubble 70s linear;
}

.bubble-animation-item:nth-child(6){
    border-color: var(--red-light);
    top: 20%;
    left: 30%;
    animation: bubble 80s linear;
    -webkit-animation: bubble 80s linear;
}

.bubble-animation-item:nth-child(7){
    border-color: var(--yellow-light);
    top: 100%;
    left: 5%;
    animation: bubble 60s linear;
    -webkit-animation: bubble 60s linear;
}

.bubble-animation-item:nth-child(8){
    border-color: var(--green-light);
    top: 110%;
    left: 33%;
    animation: bubble 70s linear;
    -webkit-animation: bubble 70s linear;
}
.bubble-animation-item:nth-child(9){
    border-color: var(--red-light);
    top: 120%;
    left: 65%;
    animation: bubble 80s linear;
    -webkit-animation: bubble 80s linear;
}

   /*---------------------
 18. = style switcher
---------------------**/
.style-switcher{
    width: 250px;
    position: fixed;
    height: 100%;
    background-color: var(--white);
    left: -250px;
    top: 0;
    z-index: 10;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: left 0.3s ease;
    -webkit-transition: left 0.3s ease;
    -moz-transition: left 0.3s ease;
    -ms-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
}
.headerAuth{
    background-color: var(--main-color);
    color: var(--black-90);

}
.style-switcher.open{
    left: 0;
}

.style-switcher-toggler{
    height: 40px;
    width: 40px;
    position: absolute;
    top: 28%;
    right: -40px;
    background-color: var(--main-color);
    color: var(--WHITH);
    display: flex;
    align-items: center;
    justify-content: center ;
    border-radius: 0 8px 8px 0;
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.style-switcher h3{
    font-size: 18px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border-color-1);
    padding: 0 0 10;
}

.style-switcher-item{
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color-1);
}

.theme-colors button{
    height: 30px;
    width: 30px;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    vertical-align: middle;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0;
    position: relative;
}
.theme-colors button::before{
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--WHITH);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0;
}
.theme-colors button.active::before{
    opacity: 1;
}
.theme-colors .color-1{
    background-color: hsl(0, 74%, 61%);
}
.theme-colors .color-2{
    background-color: hsl(230, 74%, 61%);
}
.theme-colors .color-3{
    background-color: hsl(36, 74%, 61%);
}
.theme-colors .color-4{
    background-color: hsl(277, 74%, 61%);
}
.theme-colors .color-5{
    background-color: hsl(164, 74%, 61%);
}

   /*---------------------
 19. = header
---------------------**/
.header{
    border-bottom: 1px solid var(--border-color-2);

}

.header-logo img{
    /* font-size: 26px; */
    width: 100px;

}

.header-logo span{
    color: var(--main-color);
}

.header .menu-item{
    display: inline-block;
    margin-left: 40px;
    position: relative;
}


.header .menu-item > a{
    display: block;
    padding: 24px 0;
    font-weight: 400;
    color: var(--black-90);
    text-transform: capitalize;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.header .sub-menu-item a:hover,
.header .menu-item:hover > a{
    color: var(--main-color);
}
.header .menu-item > a i{
    font-size: 13px;
    margin-left: 3px;
    pointer-events: none;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.header .sub-menu{
    position: absolute;
    top: 100%;
    background-color: var(--white);
    left: 0;
    width: 210px;
    padding: 10px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all;
    -ms-transition: all;
    -o-transition: all;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

@media (min-width:992px){
    .header .menu-item:hover > .sub-menu{
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}
}

.header .sub-menu-item a{
    display: block;
    padding: 10px 20px;
    color: var(--black-90);
    text-transform: capitalize;
    font-weight: 400;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}
.header-backdrop,
.header-close-btn,
.header-hamburger,
.header-hamburger-btn{
    display: none;
}

   /**---------------------
 20. = footer
---------------------**/
.footer-top{
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color-2);
}

.footer-item{
    margin: 0 0 30px;
}

.footer-item h3{
    text-transform: capitalize;
    margin: 0 0 20px;
}

.footer-item .footer-logo{
    color: var(--black-70);
    text-transform: uppercase;
}

.footer-item .footer-logo span{
    color: var(--main-color);
}

.footer-item ul li:not(:last-child){
     margin-bottom: 8px;
}

.footer-item ul a{
    text-transform: capitalize;
    color: var(--black-70);
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    position: relative;
}
.footer-item ul a:hover{
    color: var(--main-color);
}
.footer-item ul a .social-icon{
    margin-right: 5px;
}

.footer-item ul a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
}

.footer-item ul a:hover:before{
    width: 100%;
}

.footer-bootom{
    border-top: 1px solid var(--border-color-2);
}

.footer-bootom p{
    font-size: 14px;
}


   /*---------------------
 21. = banner section
--------------------- */
.banner-section{
    padding: 0px 0 60px;
    min-height: 520px;
    /* background: url('../img/courses/web-devlopment/1.jpg') no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover; */
    position: relative;
}

.custom-shape-divider-bottom-1659984893 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.custom-shape-divider-bottom-1659984893 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 121px;
}

.custom-shape-divider-bottom-1659984893 .shape-fill {
    fill: var(--body-bg-color);
}

.banner-text>h2{
    font-size: 20px;
    color: var(--main-color);
}
.banner-text>h1{
    font-size: 45px;
    font-weight: 700;
    /* color: var(--main-color); */
}
.banner-section .circular-img-circle{
    background-color: var(--main-color);
}

   /*---------------------
 22. = fun facts section
---------------------*/
.fun-facts-item{
    padding: 10px 3px;


}

.fun-facts-item h2{
    font-weight: 400;
    font-family: 30px;
    text-transform: uppercase;
}

.fun-facts-item p{
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
}

.fun-facts-item .style-1{
    color: var(--black-70);
}
.fun-facts-item .style-2{
    color: var(--green-light);
}
.fun-facts-item .style-3{
    color: var(--red-light);
}
.fun-facts-item .style-4{
    color: var(--orange-light);
}
   /*---------------------
 23. = courses section
 ---------------------*/
.courses-item{
    margin-bottom: 30px;
    position: relative;
}

.courses-item .img-box img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;

}

.courses-item .link{
    color: var(--black-70);
    display: inline-block;
}

.courses-item .title{
    text-transform: capitalize;
    margin: 15px 0;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.courses-item:hover .title{
    color: var(--main-color);
}
.courses-item .instructor{
    text-transform: capitalize;
    margin: 0 0 12px;
}

.courses-item .instructor img{
    width: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 5px;
}
.courses-item .rating{

    font-size: 14px;
}
.courses-item .average-rating{

    font-weight: 600;
    color: var(--orange);
}
.courses-item .average-stars i{

    color: var(--orange);
}
.courses-item .price{
    position: absolute;
    right: 15px;
    top: 15px;
    /*z-index: 1000;
    */
    background-color: var(--main-color);
    /* opacity: 0.1; */
    color: var(--WHITH);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

   /*---------------------
 24. = testimonials section
---------------------**/
.testimonials-section .img-box{
    height: 150px;
    width: 150px;
    background-color: var(--red-light);
    margin: 30px auto 50px;
}

.testimonials-section .img-box img{
    width: 150px;
    height: 150px;
    /* object-fit: contain; */

}

.testimonials-section .img-box::before,
.testimonials-section .img-box::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--red-light);
    animation: spin 15s linear infinite;
    -webkit-animation: spin 15s linear infinite;
}

.testimonials-section .img-box::before{
    height: 180px;
    width: 180px;
    left: -15px;
    top: -15px;
    border-left: 1px solid transparent;
}

.testimonials-section .img-box::after{
    height: 210px;
    width: 210px;
    left: -30px;
    top: -30px;
    border-right: 1px solid transparent;
}


.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next{
    position: relative;
    height: 35px;
    width: 35px;
    background-color: var(--main-color);
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 4px
}

.testimonials-item h3{
    text-transform: capitalize;
}

.testimonials-item .text-2{
    margin: 0;
    text-transform: capitalize;
}


.testimonials-section .decoration-circles-item{
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0.4;
}

.testimonials-section .decoration-circles-item:nth-child(1){
    left: 10%;
    top: 20%;
    height: 30px;
    width: 30px;
    background-color: var(--yellow-light);
}
.testimonials-section .decoration-circles-item:nth-child(2){
    left: 40%;
    top: 40%;
    height: 50px;
    width: 50px;
    background-color: var(--green-light);
}
.testimonials-section .decoration-circles-item:nth-child(3){
    left: 70%;
    top: 70%;
    height: 30px;
    width: 30px;
    background-color: var(--red-light);
}
.testimonials-section .decoration-circles-item:nth-child(4){
    left: 20%;
    top: 50%;
    height: 20px;
    width: 20px;
    background-color: var(--red-light);
}


.testimonials-section .decoration-imgs-item{
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0.4;
}

.testimonials-section .decoration-imgs-item:nth-child(1){
    height: 60px;
    width: 60px;
    left: 20%;
    top: 30%;
    background-color: var(--yellow-light);
    /* object-fit: contain; */
}
.testimonials-section .decoration-imgs-item:nth-child(2){
    height: 80px;
    width: 80px;
    left: 90%;
    top: 40%;
    background-color: var(--red-light);
    /* object-fit: contain; */
}
.testimonials-section .decoration-imgs-item:nth-child(3){
    height: 40px;
    width: 40px;
    left: 10%;
    top: 60%;
    background-color: var(--green-light);
    /* object-fit: contain; */
}

/*---------------------
 25. = bai section
---------------------**/
 .bai-section   .circular-img-circle{
     background-color: var(--yellow-light);
 }
 /*---------------------
 26. = courses details section
---------------------*/

/* course header  */
.course-header h2{
font-size: 30px;
margin: 0 0 15px;
font-weight: 600;
}

.course-header .average-rating{

    font-weight: 600;
    color: var(--orange);
}
.course-header .average-stars i{

    font-size: 14px;
    color: var(--orange);

}

.course-header .rating span{
    vertical-align: middle;
}

.course-header ul li{
    margin: 6px 0 0;
    text-transform: capitalize;
}
.course-header ul li span{
    margin-left: 5px;
}


/* course-tabs */
.course-tabs{
    margin: 30px 0 20px;
}
.course-tabs .nav-link{
    margin: 0 10px 10px 0;
}

/* course curriculum */
.course-curriculum .accordion-item{
    border-color: var(--border-color-1);
    background-color: transparent;
}
.course-curriculum .accordion-button span{
    position: absolute;
    right: 17px;
    font-size: 14px;
}
.course-curriculum .accordion-button::after{
    content: "\f077";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    background-image: none;
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    height: auto;
    width: auto;
    line-height: 1;
}
.course-curriculum .accordion-button{
    background-color: transparent;
    color: var(--black-90);
    font-weight: 300;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 16px;
    line-height: 1.5;
}

.course-curriculum .accordion-button:focus{
    box-shadow: none;
}

.course-curriculum .accordion-button:not(.collapsed) span{
    font-weight: 500;
}
.course-curriculum .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(-180deg);
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -moz-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    -o-transform: translateY(-50%) rotate(-180deg);
}
.course-curriculum .accordion-button:not(.collapsed){
    font-weight: 600;
    border-bottom: 1px solid var(--border-color-1);
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    box-shadow: none;
}

.course-curriculum ul li{
    position: relative;
    padding-right: 0 50px 0 20px;
}

.course-curriculum ul li:not(:last-child){
    margin-bottom: 10px;
}
.course-curriculum ul li span{
    position: absolute;
    font-size: 14px;
    right: 0;
    top: 0;
}
.course-curriculum ul li i{

    color: var(--black-70);
    font-size: 12px;

}


/* course description */
.course-description h4{
    font-size: 16px;
}

/* course instructor */
.course-instruction .img-box img{
    max-width: 128px;
    margin-bottom: 15px;
}

.course-instruction h4{
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.course-instruction h4 span{
    font-weight: 300;
}
.course-instruction ul li i{
    color: var(--main-color);
    margin-right: 5px;
}

.course-instruction ul li:not(:last-child){
    margin-bottom: 5px;
}

/* course reviews */
.rating-summary .average-rating{
    font-size: 40px;
    font-weight: 700;
    color: var(--black-90);
}
.rating-summary .average-stars i{
    color: var(--orange);
}
.rating-summary .rating-bars-item{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rating-summary .progress{
    height: 8px;
    background-color: var(--border-color-2);
    width: calc(100% - 120px);
    margin-right: 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.rating-summary .progress-bar{
    background-color: var(--main-color);
}
.rating-summary .star-text{
    min-width: 60px;
    color: var(--orange);
}

.reviews-filter{
    margin: 0 0 35px;
    width: 200px;
}

.reviews-item{
    position: relative;
    margin-bottom: 30px;
    padding-left: 65px;
}

.reviews-item .img-box{
    max-width: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}
.reviews-item h4{
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 5px;
    color: var(--black-90);
}

.reviews-item .stars-rating i{
    color: var(--orange);
    font-size: 14px;
}
.reviews-item .stars-rating .date{
    margin-left: 5px;
    font-size: 14px;
    display: inline-block;
}

.reviews-item p{
    margin: 5px 0 0;
}

/* course sidebar */
.course-sidar .img-box{
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.course-sidar .img-box::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black-alpha-40);
}

.course-sidar .img-box .play-icon{
    position: absolute;
    height: 50px;
    width: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--WHITH);
}
.course-sidar .img-box p{
    position: absolute;
    color: var(--WHITH);
    top: calc(50% + 40px);
    font-weight: 500;
    width: 100%;
}

.course-sidar .price span{

    margin-right: 8px;
}
.course-sidar .price-new{

    font-size: 30px;
    font-weight: 700;
    color: var(--black-90);
}
.course-sidar .price-discount{
    color: var(--main-color);
}

.course-sidar .features-list{
    margin: 0 0 20px;
}

.course-sidar .features-list li{
    position: relative;
    padding-right: 21px;
    margin-bottom: 8px;
}
.course-sidar .features-list li::before{
    content: '';
    height: 6px;
    width: 6px;
    background-color: var(--main-color);
    position: absolute;
    right: 0;
    top: 9px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

 /*---------------------
 27. = contact section
---------------------*/
.contact-item{
    position: relative;
    padding-left: 55px;
    margin-bottom: 40px;
}

.contact-item .icon-box{
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: 0;
    top: 0;
    color: var(--WHITH);
}



.Post{
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;

}

.Post .Article-Publisher{
    display: flex;



}

.Post .Article-Publisher::after{
    content: "";

    position: absolute;
    top: 90px;
    left: 3%;
    width: 94%;
    height: 0.3px;
   background-color: var(--main-color);
   opacity: 0.5;



}

.Post .Article-Publisher img{
    width: 50px;
    height: 50px;

}

.Post .Article-Publisher .name-date{
    margin-left: 8px;
}

.Post .Article-Publisher .name-date h5{
    padding: 0;
    margin: 0;
}

/* ///////// */

.Post .body-Article{
    width: 100%;
    height: 100%;
    position: relative;
}

/* .Post .body-Article::after{
    content: "";

    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 0.3px;
   background-color: var(--main-color);
   opacity: 0.5;

} */

.Post .count-like-comments{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    position: relative;

}

.Post .count-like-comments::after{

        content: '';
        position: absolute;
        left: 0;
        top: 30px;
        width: 100%;
        height: 0.3px;
        background-color: var(--main-color);
        opacity: 0.5;



}



.Post .count-like-comments .like{
    display: flex;
    flex-direction: row-reverse;

}

.Post .count-like-comments .like div:not(:last-child){
    margin-left: 15px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    /* align-items: c; */
}
.Post .count-like-comments .like div i{
    margin-left: 5px;
}

.Post .count-like-comments .like div:last-child{
    display: flex;
    flex-direction: row-reverse;
}

.Post .count-like-comments .like div:last-child i{
   transform: translateY(5px);
   -webkit-transform: translateY(5px);
   -moz-transform: translateY(5px);
   -ms-transform: translateY(5px);
   -o-transform: translateY(5px);
}

/* ******** */

.Post .count-like-comments .comments{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

/* ********************** */


.Post .clickUser{
    margin-top: 15px;
    width: 100%;
    height: 3vh;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.Post .clickUser .click-like{
    display: flex;
    flex-direction: row-reverse;
}
.Post .clickUser .click-like i{
    margin-left: 5px;
}

.Post .clickUser .click-comments{
    display: flex;
    flex-direction: row-reverse;

}
.Post .clickUser .click-comments i{
    margin-left: 5px;
}

.Post .clickUser .click-share{
    display: flex;
    flex-direction: row-reverse;
}
.Post .clickUser .click-share i{
    margin-left: 5px;
}


