* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

#review-body-bg {
    background: rgb(209, 214, 219);
}
.alert {
    margin-bottom: 0;
}

#bimage {
    background-image: url('/assets/template/photos/logo/front.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
}
#app-body-bg {
    background-image: url('/ssapp/assets/template/photos/logo/app-back.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#port-body-bg {
    background: rgb(170 167 167);
}

body {
    /* margin-top: 65px; */
    font-size: 14px;
    font-family: Poppins;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;

}

.back {

    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 400px; */
    min-height: 400px;
    text-align: center;

}

.back img {
    padding: 25px 5px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

.back h1 {
    position: absolute;
}

#soon {
    width: 100%;
    padding: 140px 50px;
    text-align: center;
    color: rgb(63, 48, 8);
    font-size: 35px;
}

.course-back {
    background-color: #f5efef;
    margin-top: 10px;
}

.navbar-nav {
    margin-left: 40px;
}

.navbar-nav li {
    font-size: 18px;
    padding: 0px 20px;
}

.navbar-nav li:hover {
    background-color: #a93333;
    border-radius: 10px;

}

.mlogo {
    width: 50px;
    height: 50px;
    /* border-radius: 20%; */
    margin: 0px 20px;
}

.navbar-brand {
    color: rgb(239, 205, 119);
    /* font-family: 'Satisfy', cursive; */
    font-family: 'Bruno Ace SC', cursive;
    /* margin-bottom: -7px; */
    font-size: 20px;
    text-align: center;
    width: 100%;
    padding: 10px 5px;
}

.navbar-brand:hover {
    color: rgb(239, 205, 119);
}

.d-flex ul li {
    background-color: blue;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 5px;
}

.d-flex ul li:hover {
    background-color: rgb(132, 97, 11);

}

.banner-div {
    /* border: 2px solid red; */
    width: 100%;
    height: 500px;
    display: flex;
    float: left;
}

.banner-text {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    float: left;
    text-align: center;
    justify-items: center;
    align-items: center;
}

.banner-text1 {
    padding: 90px 20px;
    color: rgb(232, 213, 163);
    /* color: #746262; */
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    font-size: 50px;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    background-color: rgb(35, 34, 34);
}

.banner-text2 {
    padding: 90px 5px;
    color: rgb(232, 213, 163);
    /* color: #746262; */
    height: 100%;
    width: 100%;
    font-size: 50px;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    background-color: rgb(35, 34, 34);
    animation: fade 10s infinite;
}

.banner_sign {
    font-size: 20px;
    color: #c20b0b;
    font-family: 'Dancing Script', cursive;
}

.banner-img {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    float: left;
    justify-items: center;
    align-items: center;
    /* background-color: rgb(137, 152, 152); */
}

.img1 {
    position: absolute;
    padding: 20px 0px;
    height: 100%;
    width: 100%;
    background-color: rgb(35, 34, 34);
    /* background-color: blueviolet; */
    z-index: -1;
}

.img2 {
    /* margin-top: 50px; */
    padding: 20px 0px;
    height: 100%;
    width: 100%;
    background-color: rgb(35, 34, 34);
    /* background-color: rgb(203, 177, 47); */
    animation: fade 10s infinite;
}

.banner-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    height: 100%;
    border-radius: 50%;
    padding: 0px 30px;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #34b7a7;
    border-top-color: #dcf5f2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 18px;
    bottom: 100px;
    z-index: 996;
    background: #179889;
    color: #c9c5c5;
    width: 100px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}


.back-to-top:hover {
    background: #646666;
    color: #c9c5c5;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* *********************************************** */
/* .portfolio1 {
    background-color: rgb(158 129 117);
    width: 100%;
    height: 119px;
} */

.about_taital {
    margin-top: 10px;
    width: 100%;
    float: left;
    font-size: 30px;
    color: #4d4545;
    text-align: center;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
    text-transform: uppercase;
    /* background-color: rgb(158 129 117); */
}

.about_text {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #4d4545;
    text-align: center;
    font-size: 18px;
    font-weight: bolder;
    font-family: 'Dancing Script', cursive;
    margin: 0px;
    /* background-color: rgb(158 129 117); */
}

.col {
    text-align: center;
    background-color: rgb(35, 34, 34);
    margin: 0px auto;
    height: 200px;
}

.btn-warning {
    border-radius: 4%;
    color: #494444;
    padding: 5px 25px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-bottom: 20px;
    /* border-style:groove; */
}

/* 
.grp-photo{
    width: 85%;
    height: 650px;
    margin-left: auto ;
    margin-right: auto;
} */
.grp-photo img {
    /* padding: 20px 20px; */
    margin: 5px 5px;
    width: 100%;
    height: 100%;
    border-top-right-radius: 350px;
    border: 10px solid #5c450e;
}

/* .btn-warning:hover {
    box-shadow: 10px 12px 16px 10px rgb(243, 177, 36, 0.24),0 17px 50px 0 rgb(243, 177, 36, 0.19);
  } */
.frames {
    height: 460px;
}


.frames img {
    border: 5px solid #999292;
    margin-top: 20px;
    height: 350px;
    border-radius: 10%;
}

.frames h3 {
    margin-top: -10px;
    color: #a06d6d;
    align-items: center;
    font-size: 25px;
    font-family: 'Satisfy', cursive;
}

/* ************************************************************************ */
.course-head {
    width: 100%;
    margin: 0;
    background-color: rgb(89 85 85);
    color: whitesmoke;
    text-align: center;
    padding: 10px 0px;
}

.course img {
    border: 5px solid #999292;
    margin-top: 20px;
    width: 300px;
    height: 350px;
    border-radius: 1%;
}

.course h5 {
    color: #4d4545;
    padding-top: 5px;
    font-size: 18px;
    font-weight: bold;
}

.matter p,
h3 {
    color: rgb(184, 5, 184);
    padding-top: 20px;
    font-size: 25px;
    font-family: cursive;
    font-family: 'Satisfy', cursive;
}

.video-section {
    background-color: #2e2d2d;
    /* height: 700px; */
}

.vdo video {
    margin: auto;
    padding: 30px 30px;
    width: 300px;
    height: 450px;
}

video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

/* *********************************************************/
.mrev {
    height: 450px;
    width: auto;
    padding: 35px 50px;
}

.swiper {
    width: 100%;
    height: 90%;
}

.swiper-slide {

    font-size: 18px;
    background: #a09f9f;
    display: flex;
    align-items: center;
    border: 3px solid rgb(159, 159, 159);
    line-height: 280px;
    /* height: 600px; */
    text-align: center;
}

.swiper-slide p {
    padding: 0px 25px;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-style: italic;
    color: #292631;
    /* font-weight: bold; */
}

.mrev h2 {
    margin-bottom: 17px;
    text-align: center;
    color: rgb(45, 69, 69);
    padding-bottom: 5px;
}

.index-cert {
    padding: 15px;
    text-align: center;
    color: rgb(45, 69, 69);
    padding-bottom: 5px;
}

/* *********************************************************/
.useful_text {
    width: 100%;
    font-size: 20px;
    color: rgb(239, 205, 119);
    font-family: cursive;
    margin: 20px 0px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer_section {
    width: 100%;
    float: left;
    background-color: #171717;
    height: auto;
    padding: 20px 0px;

}

.footer_text {
    width: 100%;
    float: left;
    font-size: 15px;
    color: #878585;
    margin: 0px;
    font-weight: bold;
}

.footer_menu {
    width: 100%;
    float: left;
}

.footer_menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer_menu li {
    padding-top: 5px;
    font-size: 18px;
    color: #878585;
}

.footer_menu li a {
    color: #878585;
    text-decoration: none;
}

.footer_menu li a:hover {
    color: #e4e219;
}

.compname {
    color: #efe561;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 30px;
}

.lorem_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #807171;
    margin: 0px;
    text-align: center;
    padding-top: 24px;
    font-family: cursive;
}

.sname {
    color: #a06d6d;
}

.social_icon {
    width: 100%;
    float: left;
    padding-top: 20px;
}

.social_icon ul {
    margin: 0px;
    padding: 0px;
}

.social_icon li {
    list-style: none;
    float: left;
    padding-right: 15px;
}

span {
    font-weight: bold;
}

.copyright_section {
    width: 100%;
    float: left;
    background-color: #585656;
    height: auto;
}

.copyright_text {
    width: 100%;
    height: 70px;
    float: left;
    font-size: 17px;
    color: #b7b7bd;
    text-align: center;
    margin-left: 0px;
    padding-top: 10px;
}

.copyright_text a {
    font-weight: bold;
    color: #eb8a84;
}

.copyright_text a:hover {
    color: #292631;
}


/* ************************************************************ */
/* Hairstyle page css */
/* ************************************************************ */
.hairframes {
    height: 385px;
}

.hairframes img {
    border: 7px solid rgb(217, 189, 116);
    margin-top: 20px;
    height: 350px;
    border-radius: 0%;
}

.hair-banner {
    margin: 7px 0px;
    height: 93px;
    width: 100%;
    background-image: url('/assets/template/photos/logo/pbanner.jpg');
    background-repeat: no-repeat;
    background-size: contain;
}

.partyframes {
    height: 385px;
}

.partyframes img {
    border: 7px solid rgb(196 178 130);
    margin-top: 20px;
    height: 350px;
    border-radius: 4%;
}

.party-banner {
    margin: 7px 0px;
    height: 93px;
    width: 100%;
    background-image: url('/assets/template/photos/logo/partybanner.jpg');
    background-repeat: no-repeat;
    background-size: contain;
}

.fa {
    padding: 20px;
    font-size: 30px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    /* border-radius: 50%; */
}


.fa:hover {
    opacity: 0.7;
    color: #a93333;
}

.my-col {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: auto;
    /* border: 2px solid red; */
    text-align: center;
}

.my-col p {
    color: rgb(103, 76, 6);
    font-weight: bold;
    display: block;
    font-size: 20px;
    padding: 5px;
    margin-top: 14px;
    font-style: italic;
}

.col-lg-3 {
    /* border: 2px solid red; */
    text-align: center;
}

.foot-logo img {
    width: 280px;
    height: 280px;
    /* border: 5px solid #878585; */
    padding: 0px;
    /* border-radius: 12px; */
}

.bi {
    font-size: 16px;
    color: #e7dddd;
    font-weight: bold;
    padding-left: 3px;
}

.bi-envelope-fill,
.fa-facebook,
.fa-instagram {
    /* color: #543fca */
    color: rgb(103, 76, 6);
}

/* ***************************************************** */
/* Reception page css */
#bg-colr-rpage {
    background-color: #cdc3c3;
}

.rframes {
    height: 385px;
}

.reception-bg {
    background-color: #d8abab;
}

.rframes img {
    border: 12px solid rgb(33 27 10);
    margin-top: 20px;
    height: 350px;
    border-radius: 0%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ***************************************************** */
/* bridal page css */
#bg-colr-bpage {
    background-color: #cdc3c3;
}

.bframes {
    height: 385px;
}

.bridal-bg {
    background-color: #3f2222;
}

.bframes img {
    border: 8px solid rgb(130 124 109);
    margin-top: 20px;
    height: 350px;
    border-radius: 3%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ***************************************************** */
/* mature page css */
#bg-colr-bpage {
    background-color: #cdc3c3;
}

.mframes {
    height: 420px;
}

.mature-bg {
    background-color: #b4b3b3;
}

.mframes img {
    border: 8px solid rgb(60 49 22);
    margin-top: 50px;
    height: 350px;
    border-radius: 3%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ***************************************************** */
/* selfmakeup page css */
#bg-colr-bpage {
    background-color: #cdc3c3;
}

.selfframes {
    height: 420px;
}

.self-bg {
    background-color: #f44949;
}

.selfframes img {
    border: 10px solid rgb(244 215 143);
    margin-top: 50px;
    height: 350px;
    border-radius: 0%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ***************************************************** */
/* course page css */
.course-page h2 {
    margin: 20px 5px;
    font-weight: bold;
    color: rgb(39, 62, 5);
    ;
}

.course-page h1 {
    margin: 30px 5px;
    font-weight: bold;
    color: #2e2d2d;
}

.mconainter {
    display: flex;
    justify-content: center;
    justify-items: center;
    width: 70%;
    margin-top: 45px;
    margin-bottom: 25px;
    border: 8px solid rgb(39, 62, 5);
    margin-left: auto;
    margin-right: auto;
    border-radius: 20%;
    box-shadow: 17px 20px 8px 0 rgb(136 6 6 / 20%), 18px 20px 20px 0 rgb(222 19 47 / 19%);
}

.mcol-6 {
    width: 50%;
    display: flex;
    justify-content: center;
    justify-items: center;
    text-align: center;

    /* border: 2px solid red; */
}

.mcol-6 img {
    padding: 5px 5px;
    width: 350px;
    height: 350px;
    border-radius: 30%;
}

.mcol-6 p {
    /* border: 2px solid red; */
    font-size: 25px;
    padding: 40px 15px;
    color: #833b52d7;
}

.mcol-6 a {
    color: rgb(220, 204, 204);
    font-weight: bold;
    text-decoration: none;
    font-size: large;
    background-color: #863c3c;
    padding: 12px 15px;
    margin-bottom: 5px;
    outline-style: auto;
    outline-color: #451f1f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, cursive;
}

.mcol-6 a:hover {
    background-color: #542626;
}

.corse-title {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #652f2f;
}

.div-apply {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    /* height: 150px; */
}

.div-apply h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #652f2f;
    font-weight: bold;
}

.div-apply p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #652f2f;
    font-size: 20px;
    font-weight: 500;
}

div.chat {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 3;

    /* width: 300px; */
    /* border: 3px solid #73AD21; */
}

.chat img {
    width: 65px;
    height: 65px;
    padding: 5px 5px;
    border-radius: 25%;
}

.book-chat img {
    width: 65px;
    height: 65px;
    padding: 5px 5px;
    border-radius: 25%;
}

/* ************************************************** */
/* contact page css */
.container h5 {
    padding: 20px 5px;
    text-align: center;
    color: rgb(109, 86, 26);
    font-family: fantasy;
}

.contact h2 {
    padding: 20px 5px;
    text-align: center;
    color: rgb(118, 89, 16);
    font-family: fantasy;
}

.contact .myinfo {
    width: 50%;
    /* background-color: rgb(248, 246, 244); */
    /* background: #fff; */
    margin: auto;
}


.contact .myinfo i {
    font-size: 20px;
    /* color: #34b7a7; */
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .myinfo h4 {
    padding: 8px 0 0 50px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #222222;
    font-family: 'Roboto Condensed', 'Rubik', sans-serif;
}

.contact .myinfo p {
    position: relative;
    top: -35px;
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
    color: #3a3737;
    float: right;
    font-family: 'Roboto Condensed', 'Rubik', sans-serif;
}



/* ***************************************************** */
/* portfolio page css */
.port-bg {
    background-color: whitesmoke;
}

#body-bg {
    background-color: #eae7e7da;
}

.row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

.column {
    -webkit-box-flex: 25%;
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;

}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;

}

.banner-port {
    font-family: 'Satisfy', cursive;
    color: #451f1f;
    text-align: center;
    margin: 20px 5px;
}


.mactive,
.btn:hover {
    background-color: goldenrod;
    color: white;
}



/* ******************************************* */
/* course enrollemt page css */

.app-head {

    margin: 15px 5px;
    padding: 25px 5px;
    /* border: 2px solid red; */
    width: 75%;

    margin-left: auto;
    margin-right: auto;
}

.app-head h2 {
    color: rgb(205, 180, 180);
    font-size: 45px;
}

.app-form {
    color: rgb(232, 187, 187);
    margin: 15px 5px;
    padding: 25px 40px;
    border: 4px solid rgb(229, 225, 225);
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

#st-dob,
#st-state,
#st-gender,
#st-email,
#st-course,
#st-doj,
#st-status {
    height: 52px;
    font-size: 18px;
}
#st-finyear{
    height: 52px;
    font-size: 18px;
    margin-top: 20px;
    background-color: #8ddcd3;
}
.fybtndiv{
    margin-top: 50px;
}
.app-row1 {
    margin: 50px 0px;
    background-color: #312525;
    padding-bottom: 25px;
    border-radius: 3%;
    box-shadow: 10px 12px 16px 10px rgb(213 210 210), 0px 20px 50px 0 rgba(166, 165, 161, 0.882);
}

.app-row {
    margin: 50px 0px;
    background-color: #6b6767;
    padding-bottom: 25px;
    border-radius: 3%;
    box-shadow: 10px 12px 16px 10px rgb(213 210 210), 0px 20px 50px 0 rgba(166, 165, 161, 0.882);
}

#btn-reset {
    background-color: rgb(121, 121, 69);
    color: white;
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    outline-style: groove;
    border-radius: 4px;
    width: 96%;
    cursor: pointer;
    float: right;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

#btn-reset:hover {
    background-color: rgb(117, 106, 207);
}

#btn-dash {
    background-color: rgb(156, 71, 201);
    color: white;
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    outline-style: groove;
    border-radius: 4px;
    width: 96%;
    cursor: pointer;
    float: right;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

#btn-dash:hover {
    background-color: rgb(51, 183, 152);
}
.modal-body {
    background-color: #d4d2d8;
    font-size: 22px;
    font-weight: bold;
}

.modal-footer {
    justify-content: space-evenly;

}

.modal-footer .btn {
    font-size: 16px;
    width: 45%;
}

/* ************************************ */
/* login page css */
.logindiv {
    width: 60%;
    border: 2px solid red;
    margin-left: auto;
    margin-right: auto;

}

.setpos {
    width: 40%;
    font-size: 15px;
    position: absolute;
    padding: 0;
    top: 25%;
    left: 30%;

}

.setpos p {
    padding: 5px 20px;
    margin-bottom: 1px;
}

.verify-sub {
    margin-top: 20px;
    padding: 20px;
    align-items: center;
    border: 6px solid rgb(98, 74, 12);
    border-radius: 2%;
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

.auth-sms {
    background-color: rgb(230, 214, 214);
    width: 100%;
    margin: 15px 0 0 0;
    padding: 0;
}

.auth-sms p {
    color: green;
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    font-size: 12px;
    padding: 10px 20px;
    margin-bottom: 0;
}

.auth-sms span {
    color: #3f2222;
}
.fybtndiv .btn{
    margin: 10px ;
    padding: 8px 20px;
}
