/*===== GOOGLE FONTS =====*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rowdies:wght@300;400;700&display=swap');

/* common style start */

html {
    scroll-behavior: smooth;
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-size: .938rem;
    font-weight: 500;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a, a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.bd-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.container-fluid {
    padding: 0 5%;
}

.section-top a {
    color: #fc800a;
}

/* animation up and down */

@keyframes MoveUpDown {
    0%, 100% {
        top: 0;
    }
    50% {
        top: 30px;
    }
}

@keyframes zoomInOut {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.1, 1.1);
    }
    100% {
      transform: scale(1, 1);
    }
}

@keyframes rippleAnimation {
    0% {
        -webkit-transform: scale(.01);
        -moz-transform: scale(.01);
        -o-transform: scale(.01);
        transform: scale(.01);
        opacity: 0
    }

    33% {
        -webkit-transform: scale(.4);
        -moz-transform: scale(.4);
        -o-transform: scale(.4);
        transform: scale(.4);
        opacity: .8
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* common style end */

/* navigationbar style start */

.main-navbar-section .header-top ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    justify-content: end;
}

.main-navbar-section .header-top {
    background: linear-gradient(135deg, #fbf1e3 30%, #fc800a 0%);
    padding: 10px 5px;
}

.header-top .top-contact-info {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    flex-wrap: wrap;
}

.top-contact-info .social-media ul li i {
    font-size: 20px;
}

.main-navbar-section .header-top address {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.main-navbar-section .header-top ul a {
    color: #f1f1f1;
    font-size: 14px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.main-navbar-section header.header {
    background: #fff;
    padding: 5px 0;
}

.main-navbar-section .header-top ul li:nth-child(1) {
    border-right: 1px solid #ddd;
    padding-right: 10px;
}

.main-navbar-section .header-top ul a span {
    line-height: normal;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.main-navbar-section {
    width: 100%;
    padding: 0;
}

.main-navbar-section header.header img {
    width: 100px;
}

.header__logo {
    color: #E6E7E9
}

.header__toggle {
    color: #fc800a;
    cursor: pointer;
    font-size: 40px;
}

section.about-us.notice-details .card {
    text-align: center;
}

section.about-us.notice-details .education-features {
    display: unset;
}

section.about-us.notice-details .education-features embed {
    max-width: 100% !important;
}

.nav__content {
    height: 100%;
    -ms-grid-rows: max-content 1fr max-content;
    grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
    grid-template-rows: max-content 1fr max-content;
    row-gap: 2rem;
}

.nav__close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.3rem;
    padding: .25rem;
    background-color: #282B3A;
    border-radius: 50%;
    cursor: pointer;
}

.nav__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: .25rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nav__img img {
    width: 100px;
}

.nav__name {
    display: block;
    color: #E6E7E9;
}

.nav__profesion {
    font-size: .813rem;
}

.nav__menu {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
    justify-content: center;
}

.nav__item {
    margin: 1.5rem 0;
    font-size: 16px;
}

.nav__link {
    color: #444;
    font-weight: 600;
    line-height: normal;
}

.nav__social {
    padding-top: .5rem;
}

.nav__social-icon {
    font-size: 1.2rem;
    color: #E6E7E9;
    margin-right: 1rem;
}

.nav__social-icon:hover {
    color: #fd0606;
}

nav#nav-menu .nav__menu .dropdown-items {
    position: absolute;
    background: #fcf7ee;
    padding: 15px;
    border-radius: 15px;
    border-style: dashed;
    border-color: #fc800a;
    top: 120px;
    z-index: 99999;
    text-align: left;
    min-width: 300px;
    display: none;
    transition: all .5s linear;
}

nav#nav-menu li.nav__item.active .dropdown-items {
    display: block;
    top: 120px;
}

nav#nav-menu .nav__menu .dropdown-items ul li a {
    display: block;
    color: #444;
    font-weight: 500;
    padding: 3px 0;
}

nav#nav-menu .nav__menu .dropdown-items ul li a:hover {
    padding-left: 5px;
    color: #fc800a;
    transition: all .3s linear;
}

nav#nav-menu .nav__menu li.nav__item a img {
    width: 12px;
}

.show {
    left: 0;
}

.active {
    color: #fc800a;
}

.header-bottom-shape img {
    width: 100%;
    height: 100%;
    background: #fbf1e3;
}

nav#nav-menu ul li a i {
    color: #fc800a;
    margin-right: 2px;
}

.header-bottom-shape svg, g {
    fill: #fff;
    background: transparent;
    width: 100%;
    height: auto;
}

header.header nav#nav-menu .auth-info ul li .btn {
    background: #171e45;
    width: 35px;
    height: 35px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    padding: 0;
}

header.header nav#nav-menu .auth-info ul li .btn i {
    color: #fff;
}

li.nav__item.active ul.sub-menu-dropdown {
    position: absolute;
    left: 100%;
    background: #fcf7ee;
    padding: 15px;
    border-radius: 15px;
    border-style: dashed;
    border-color: #fc800a;
    right: 120px;
    z-index: 99999;
    text-align: left;
    min-width: 300px;
    margin-top: -25px;
    display: none;
    transition: all .5s linear;
}

li.nav__item.active ul.sub-menu-dropdown.active {
    display: block;
    transition: all .3s linear;
}

li.nav__item.active li.sub-menu .sub-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}





/* navigationbar style start */

/* loder style start  */

.loader-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #040404c2;
    overflow: hidden;
}

.loader-icon img {
    width: 70px;
}

/* loder style end  */

/* search style start */

.nav__menu ul li button {
    background: transparent;
    border: 0;
    color: #444;
    font-size: 18px;
    cursor: pointer;
    line-height: normal;
}

.nav__menu ul li button:focus {
    outline: none;
}

section.search-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #000000c4;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

section.search-form form .form-group {
    position: relative;
    margin: 0;
}

section.search-form form .form-group input {
    width: 100%;
    border: 0;
    padding: 15px;
    border-radius: 5px;
}

section.search-form form .form-group input:focus-visible{
    outline: none;
}

section.search-form form .form-group button.btn {
    position: absolute;
    border: 0;
    background: transparent;
    color: #444;
    font-size: 25px;
    padding: 0;
    margin: 0;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

section.search-form form .form-group button.btn:focus {
    outline: none;
}

section.search-form button.close-search {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

section.search-form button.close-search:focus {
    outline: none;
}

section.search-form.active {
    display: flex;
}

/* search style end */

/* slider section style start */

section.slider-section .slider-group-imges {
    position: relative;
    text-align: center;
}

section.slider-section .slider-group-imges .images-one {
    position: absolute;
    z-index: -9;
}

section.slider-section .slider-group-imges .images-three img{
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    width: 34%;
    animation: MoveUpDown 3s linear infinite;
}

section.slider-section .slider-group-imges .images-four {
    position: absolute;
    z-index: -9;
    bottom: 0;
    right: 0;
    text-align: right;
}

section.slider-section .slider-group-imges .images-four img {
    width: 20%;
}

section.slider-section .slider-group-imges .images-two {
    text-align: center;
}

section.slider-section .slider-group-imges .images-two img {
    width: 75%;
}

section.slider-section .slider-group-imges .images-one img {
    width: 73%;
    animation: zoomInOut 2s ease-out infinite;
}

section.slider-section {
    position: relative;
    background: #fbf1e3;
    z-index: 0;
}

section.slider-section .background-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.slider-section .slider-content-group h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: normal;
    color: #fc800a;
}

section.slider-section .slider-content-group h1 {
    font-family: "Rowdies", sans-serif;
    font-size: 55px;
    line-height: normal;
    color: #444;
}

section.slider-section .slider-content-group article {
    margin: 25px 0;
}

section.slider-section .slider-content-group p {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.slider-section .slider-content-group a.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.slider-section .slider-content-group a.btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.slider-section .slider-content-group img {
    width: 120px;
    margin-bottom: 20px;
}

section.slider-section .active-slider button.slick-prev {
    background: #000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

section.slider-section .active-slider button.slick-next {
    background: #000;
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(-50%);
}

section.slider-section .active-slider .slider-content-group {
    padding-bottom: 50px;
}




/* about us style start */

section.about-us {
    background: #FCF7EE;
    padding: 100px 0;
}

section.about-us .card {
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

section.about-us .card .card-body {
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    /*text-align: center;*/
}

section.about-us .card .frame {
    text-align: center;
}

section.about-us h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: normal;
    color: #fc800a;
}

section.about-us h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 45px;
    line-height: normal;
    color: #444;
}

section.about-us article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
    margin: 25px 0;
}

section.about-us .education-features .single-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    width: 100%;
}

section.about-us .education-features .single-feature .content {
    width: 100%;
}

section.about-us .education-features .single-feature h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.about-us .education-features .single-feature h5:hover {
    color: #fc800a;
    transition: all .3s linear;
}

section.about-us .education-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

section.about-us .about-us-img {
    width: 100%;
    height: 100%;
    border: 2px solid #8AB326;
    border-style: dashed;
    border-radius: 25px;
    overflow: hidden;
}
section.about-us .about-us-img img{
    border-radius: 25px;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-out;
}
section.about-us .about-us-img img:hover{
    scale: 1.1;
}
section.about-us .about-us-video video {
    height: 100%;
    width: 100%;
    border: 2px solid #fc800a;
    border-style: dashed;
    border-radius: 25px;
    background: #fc800a;
}

section.about-us .about-us-video {
    height: 100%;
}

section.about-us a.btn.see-more {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.about-us a.btn.see-more:hover {
    border-color: #333;
    border-style: dashed;
}

section.about-us .about-us-img {
    height: 100%;
}
.about-us .card .card-body .btn.btn-secondary{
    background-color: #922690;
    border: 1px solid #922690;
}
.about-us .card .card-body .btn.btn-secondary a{
    color: #FFF;
}

/* foundation of knowledge */

section.foundation-of-knowledge {
    background: #FCF7EE;
    padding: 100px 0;
}

.section-top {
    text-align: center;
    margin-bottom: 50px;
}

.section-top h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: normal;
    color: #fc800a;
}

.section-top h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 45px;
    line-height: normal;
    color: #444;
}

section.foundation-of-knowledge .card {
    border: 0;
    border-radius: 0;
    background: transparent;
    border-right: 2px solid #8AB326;
    border-style: dashed;
}

section.foundation-of-knowledge .card .card-body {
    padding: 0 25px;
    text-align: center;
}

section.foundation-of-knowledge .card .content {
    margin-top: 15px;
}

section.foundation-of-knowledge .card .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.foundation-of-knowledge .card .content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.foundation-of-knowledge .foundation-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
}

.foundation-list .single-foundation:last-child .card {
    border: 0px;
}


/* our customers */

section.our-customers {
    background: #FCF7EE;
    padding: 100px 0;
}

section.our-customers .customer-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
    gap: 15px;
}

section.our-customers .customer-list .single-customer {
    background: #fff;
    text-align: center;
    border-radius: 10px;
    height: 100%;
}

section.our-customers .customer-list .single-customer img {
    padding: 25px;
}


/* our quality */

section.our-quality .background-img {
    padding: 150px 0;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0;
}

section.our-quality .card {
    border: 0;
    background: transparent;
}

section.our-quality .card .card-body {
    padding: 0px;
}

section.our-quality .card .card-body h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: normal;
    color: #fc800a;
}

section.our-quality .card .card-body h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 55px;
    line-height: normal;
    color: #fff;
}

section.our-quality .card .card-body article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
    margin: 25px 0;
}

section.our-quality .card .card-body a.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.our-quality .card .card-body a.btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.our-quality .background-img .bottom-shap {
    padding-top: 150px;
}

section.our-quality .bottom-shap svg {
    width: 100%;
    height: 100%;
}



/* our course */

section.our-course {
    padding: 100px 0;
    background: #fff;
}

section.our-course .card {
    border: 2px solid #ddd;
    border-style: dashed;
    border-radius: 10px;
}

section.our-course .card:hover {
    border-color: #fc800a;
    transition: all .3s linear;
}

section.our-course .card .card-body {
    padding: 25px;
}

section.our-course .card .course-img img {
    border-radius: 10px;
    width: 100%;
}

section.our-course .card .card-body .content {
    padding-top: 25px;
}

section.our-course .card .card-body .content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.our-course .card .card-body .content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.our-course .card .card-body .content .join-now {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: space-between;
    flex-direction: row;
}

section.our-course .card .card-body .content .join-now span {
    font-family: "Rowdies", sans-serif;
    font-size: 30px;
    line-height: normal;
    font-weight: 600;
    color: #fc800a;
}

section.our-course .card .card-body .content .join-now button.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.our-course .card .card-body .content .join-now button.btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.our-course a.btn.view-all-course {
    display: inline-block;
    text-align: center;
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.our-course a.btn.view-all-course:hover {
    border-color: #333;
    border-style: dashed;
}

/* our mission and vission */

section.mission-vission .our-mission {
    display: flex;
    background: #f4a21a;
    padding: 30px 50px;
    border-radius: 40px;
    flex-direction: row;
    margin-left: 200px;
    margin-top: 25px;
    margin-bottom: 25px;
    border: 2px solid #000;
    border-style: dashed;
}

section.mission-vission .our-mission .content-details {
    display: flex;
    align-items: start;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    margin-top: 25px;
}

section.mission-vission .our-mission .content-details article {
    width: 55%;
}

section.mission-vission .our-mission h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
}

section.mission-vission .our-mission article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.mission-vission .our-mission .content-details ul li {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.mission-vission .our-mission .icon {
    transform: translateY(-80px);
}

section.mission-vission .our-vision {
    display: flex;
    background: #376179;
    padding: 30px 50px;
    border-radius: 40px;
    flex-direction: row;
    margin-left: 200px;
    margin-top: 25px;
    margin-bottom: 25px;
    border: 2px solid #000;
    border-style: dashed;
}

section.mission-vission .our-vision .content-details {
    display: flex;
    align-items: start;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    margin-top: 25px;
}

section.mission-vission .our-vision .content-details article {
    width: 55%;
}

section.mission-vission .our-vision h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
}

section.mission-vission .our-vision article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.mission-vission .our-vision .content-details ul li {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.mission-vission .our-vision .icon {
    transform: translateY(-80px);
}

section.mission-vission .our-values {
    display: flex;
    background: #88b520;
    padding: 30px 50px;
    border-radius: 40px;
    flex-direction: row;
    margin-right: 200px;
    margin-top: 25px;
    margin-bottom: 25px;
    border: 2px solid #000;
    border-style: dashed;
}

section.mission-vission .our-values .content-details {
    display: flex;
    align-items: start;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    margin-top: 25px;
}

section.mission-vission .our-values .content-details article {
    width: 55%;
}

section.mission-vission .our-values h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
}

section.mission-vission .our-values article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.mission-vission .our-values .content-details ul li {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.mission-vission .our-values .icon {
    transform: translateY(-80px);
}

section.mission-vission .content {
    width: 100%;
}

section.mission-vission .background-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

section.mission-vission .content img {
    width: 50px;
}

section.mission-vission .icon {
    max-width: 180px;
}


/* joining now */

section.joining-now {
    background: #F8AD12;
    padding: 100px 0;
    position: relative;
    padding-bottom: 0px;
}

section.joining-now .joining-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 15px;
}

section.joining-now .joining-box .single-box {
    text-align: center;
    padding: 15px;
    position: relative;
}

section.joining-now .joining-box .single-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, #ddd 50%, transparent 50%);
    transform: rotate(30deg);
    left: calc(100% - 64px);
    top: 33%;
    transform: rotate(35deg);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 2px, 0px 0px, 0px 0px, 0px 0px;
    background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px;
    animation: moving-border 8s infinite linear;
    -webkit-animation: moving-border 8s infinite linear;
}


section.joining-now .joining-box .single-box .icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: #fff;
    text-align: center;
    line-height: 60px;
    border-radius: 100%;
    padding: 20px;
    margin: 0 auto;
}

section.joining-now .joining-box .single-box .icon::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    left: -50%;
    top: -50%;
    background: -webkit-radial-gradient(center, ellipse, rgba(182, 225, 235, 0) 0, rgba(182, 225, 235, .05) 40%, rgba(182, 225, 235, .4) 100%);
    background: -moz-radial-gradient(center, ellipse, rgba(182, 225, 235, 0) 0, rgba(182, 225, 235, .05) 40%, rgba(182, 225, 235, .4) 100%);
    background: -o-radial-gradient(center, ellipse, rgba(182, 225, 235, 0) 0, rgba(182, 225, 235, .05) 40%, rgba(182, 225, 235, .4) 100%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .05) 40%, rgba(255, 255, 255, .4) 100%);
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation-name: rippleAnimation;
    -moz-animation-name: rippleAnimation;
    -o-animation-name: rippleAnimation;
    animation-name: rippleAnimation;
    -webkit-animation-duration: 6s;
    -moz-animation-duration: 6s;
    -o-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

section.joining-now .joining-box .single-box .icon::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    left: -50%;
    top: -50%;
    background: -webkit-radial-gradient(center, ellipse, rgba(182, 225, 235, 0) 0, rgba(182, 225, 235, .05) 40%, rgba(182, 225, 235, .4) 100%);
    background: -moz-radial-gradient(center, ellipse, rgba(182, 225, 235, 0) 0, rgba(182, 225, 235, .05) 40%, rgba(182, 225, 235, .4) 100%);
    background: -o-radial-gradient(center, ellipse, rgba(182, 225, 235, 0) 0, rgba(182, 225, 235, .05) 40%, rgba(182, 225, 235, .4) 100%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .05) 40%, rgba(255, 255, 255, .4) 100%);
    border-radius: 50%;
    opacity: 0;
    -webkit-animation-name: rippleAnimation;
    -moz-animation-name: rippleAnimation;
    -o-animation-name: rippleAnimation;
    animation-name: rippleAnimation;
    -webkit-animation-duration: 6s;
    -moz-animation-duration: 6s;
    -o-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    -o-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}


section.joining-now .joining-box .single-box .content {
    margin-top: 20px;
}

.joining-box .single-box .content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
}

.joining-box .single-box .content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.joining-now .joining-box .single-box:nth-child(2) {
    margin-top: 150px;
}

section.joining-now .joining-box .single-box:nth-child(4) {
    margin-top: 150px;
}

section.joining-now .joining-box .single-box:nth-child(2)::before {
    content: '';
    background: linear-gradient(90deg, #ddd 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 2px, 0px 0px, 0px 0px, 0px 0px;
    background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px;
    animation: moving-border 8s infinite linear;
    -webkit-animation: moving-border 8s infinite linear;
    transform: rotate(327deg);
    left: calc(100% - 77px);
    top: -11%;
}

section.joining-now .joining-box .single-box:nth-child(4)::before {
    background: none;
}

section.joining-now .joining-box .single-box:nth-child(2) .icon {
    background: #dd5540;
}

section.joining-now .joining-box .single-box:nth-child(4) .icon {
    background: #dd5540;
}

section.joining-now .shape img {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 250px;
    animation: MoveUpDown 3s linear infinite;
}

section.joining-now .images {
    text-align: right;
}

section.joining-now .images img {
    width: 80%;
    margin-right: 0;
}

section.joining-now .section-top {
    text-align: left;
}

section.joining-now .section-top h4 {
    color: #fff;
}

section.joining-now .section-top h6 {
    color: #fff;
}

/* our events */

section.our-events {
    padding: 100px 0;
    background: #fcf7ee;
}

section.our-events .card {
    border: 0;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

section.our-events .card .card-body {
    padding: 0px;
}

section.our-events .card .single-event {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 100%;
    gap: 10px;
}

section.our-events .card .single-event .event-content {
    width: 100%;
}

section.our-events .card .single-event .event-img:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

section.our-events .card .single-event .event-img img {
    height: 100%;
    min-height: 192px;
    width: 384px;
}

section.our-events .card .single-event .event-img {
    overflow: hidden;
    max-width: 384px;
    height: 100%;
    width: 100%;
    height: 192px;
}

section.our-events .card .schadule-badge {
    text-align: right;
}

section.our-events .card .schadule-badge span {
    text-align: center;
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: auto;
    margin: auto;
    display: inline-flex;
    align-items: center;
    z-index: 1;
    color: #ffff;
    height: auto;
    padding: 5px 15px;
    background: #f96ea0;
    border-radius: 0 0 0 10px;
}

section.our-events .card .single-event .event-content {
    width: 100%;
    padding: 32px 10px;
    padding-bottom: 10px;
}

section.our-events .card .single-event .event-content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #444;
}

section.our-events .card .single-event .event-content p {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
    margin: 0;
}

section.our-events .card .single-event .event-content address {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
    margin-bottom: 25px;
}

section.our-events .card .single-event .event-content .btn {
    display: inline-block;
    text-align: center;
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.our-events .card .single-event .event-content .btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.our-events .view-all-event {
    display: inline-block;
    text-align: center;
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.our-events .view-all-event:hover {
    border-color: #333;
    border-style: dashed;
}

/* our gallery style  */

section.our-gallery {
    padding: 100px 0;
    background: #fcf7ee;
}

section.our-gallery .slick-slide {
    display: block;
    padding: 0 10px;
}

section.our-gallery .slick-slide img {
    width: 100%;
    border: 2px solid #222;
    border-style: dashed;
    border-radius: 10px;
    height: 100%;
    max-height: 270px;
}

section.our-gallery .slick-slide img:hover {
    border-color: #fc800a;
    transition: all .3s linear;
}

section.our-gallery .slick-slide img:hover {
    transform: scale(1.1);
    transition: all .3s linear;
}

/* our testimonial */

section.our-testimonial {
    padding: 100px 0;
    background: #fcf7ee;
}

section.our-testimonial .testimonial-content .star ul {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row;
    margin: 15px 0;
    justify-content: center;
}

section.our-testimonial .testimonial-content .star ul i {
    font-size: 25px;
    color: #fff;
}

section.our-testimonial .content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.our-testimonial .testimonial-content {
    position: relative;
}

section.our-testimonial .testimonial-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0px 70px !important;
    text-align: center;
}

section.our-testimonial .person {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
}

section.our-testimonial .person img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

section.our-testimonial .person .name {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #444;
}

section.our-testimonial .slick-slide {
    display: block;
    padding: 0 10px;
}

/* footer style */

footer.footer .footer-shep svg, g {
    width: 100% !important;
    height: 100% !important;
    fill: #171e45 !important;
    border: 0;
    margin: 0;
    padding: 0;
    margin-bottom: -1px;
}

footer.footer .footer-shep svg g {
    fill: #171e45 !important;
}

footer.footer .footer-top {
    background: #171e45;
    padding: 100px 0;
}

footer.footer .footer-content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #fff;
    margin-bottom: 20px;
}

footer.footer .footer-content address {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

footer.footer .footer-content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

footer.footer .footer-content ul li {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
    padding: 3px 0;
}

footer.footer .footer-content ul li:hover a {
    padding-left: 5px;
    transition: all .3s linear;
    color: #fc800a;
}

footer.footer .footer-content ul li a {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

footer.footer .footer-content form {
    margin-top: 25px;
}

footer.footer .footer-content form button.btn {
    width: 100%;
    margin-top: 20px;
    background: #fc800a;
    color: #fff;
}

footer.footer .logos img {
    width: 150px;
}

footer.footer .logos {
    text-align: center;
}

footer.footer .footer-top article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

footer.footer .footer-top .social-media ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-direction: row;
    width: 100%;
}

footer.footer .footer-top .social-media ul li {
    width: 35px;
    height: 35px;
    background: #ddd;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
}

footer.footer .footer-top .social-media ul li i {
    font-size: 22px;
}

footer.footer .footer-top .social-media ul li a {
    color: #444;
}

footer.footer .footer-top .social-media ul li a:hover {
    color: #fc800a;
    transition: all .3s linear;
}

footer.footer .footer-top .social-media h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #fff;
    margin-bottom: 20px;
}

.footer-bottom {
    background: #973fea;
    padding: 10px 0;
}

.footer-bottom .payment-img ul {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    gap: 5px;
}

.footer-bottom .payment-img ul li {
    width: 60px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

footer.footer .footer-bottom p {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

footer.footer .footer-shep {
    background: #fcf7ee;
}

footer.footer .footer-bottom p a {
    color: #fff;
}


/* about us page design */

section.follow-instagram {
    padding: 100px 0;
    background: #fcf7ee;
}

section.follow-instagram .slick-slide {
    padding: 60px 15px;
}

section.follow-instagram .slick-slide img {
    border: 2px solid #fc800a;
    border-style: dashed;
    border-radius: 10px;
}

section.follow-instagram .slick-slide.left {
    transform: rotate(22deg);
}

section.follow-instagram .slick-slide.right {
    transform: rotate(330deg);
}

section.incredible-student .shape-img svg {
    width: 100%;
    height: 100%;
}

/* incredible student */

section.incredible-student {
    padding-bottom: 100px;
}

section.incredible-student .card {
    border: 0;
}

section.incredible-student .card .card-body{
    padding: 0px;
}

section.incredible-student .card .card-body .images {
    position: relative;
    height: 100%;
    border: 2px solid #000;
    border-style: dashed;
    border-radius: 10px;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    text-align: center;
}


section.incredible-student .card .card-body .images:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

section.incredible-student .card .card-body .social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fc800a;
    padding: 8px;
    width: 210px;
    border-radius: 25px;
    gap: 15px;
    margin: 0 auto;
}

section.incredible-student .card .card-body .social-media ul i {
    font-size: 22px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #fff;
    border-radius: 50%;
}

section.incredible-student .card .card-body .social-media ul a {
    color: #444;
}

section.incredible-student .card .card-body .social-media ul i {
    font-size: 22px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    display: block;
}

section.incredible-student .card .social-media {
    position: absolute;
    width: 100%;
    bottom: -50px;
    opacity: 0;
    overflow: hidden;
    transition: all .3s linear;
}

section.incredible-student .card .card-body .images:hover .social-media {
    opacity: 1;
    bottom: 25px;
    overflow: visible;
}

section.incredible-student .card .content {
    margin-top: 25px;
    text-align: center;
}

section.incredible-student .card .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.incredible-student .shape-img {
    background: #fcf7ee;
}

/* kids education section */

section.kids-education {
    background: #fcf7ee;
    padding: 100px 0;
}

section.kids-education .card {
    position: relative;
    padding: 0;
    border: none;
    background: transparent;
    padding-top: 50px;
}

section.kids-education .card .single-service .image img {
    width: 200px;
    border-radius: 100px 100px 100px 0px;
}

section.kids-education .card .single-service {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 50px;
    text-align: center;
}

section.kids-education .card .single-service .content {
    margin-top: 20px;
}

section.kids-education .card .single-service .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #444;
}

section.kids-education .card .single-service .content .icon {
    margin-top: 20px;
}

section.kids-education .card .single-service .content .icon img {
    width: 50px;
}

/* breadcrumb area */

section.breadcrumb-area .background-images {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    background-color: #fc800a;
}

section.breadcrumb-area .header-bottom-shape svg, g {
    fill: #fff !important;
    background: #fc800a;
    width: 100%;
    height: auto;
}

section.breadcrumb-area h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 40px;
    line-height: normal;
    color: #fff;
    margin-bottom: 20px;
}

section.breadcrumb-area nav ol li a {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
}

section.breadcrumb-area nav ol li {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #444 !important;
}

/* contact us page design */

section.contact-form {
    padding: 100px 0;
    padding-bottom: 0px;
}

section.contact-form .section-top {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    flex-direction: row;
}

section.contact-form .section-top .icon img {
    width: 55px;
}

section.contact-form form {
    height: 100%;
    background: #FDE5E9;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
}

section.contact-form form .form-group {
    margin: 25px 0;
}

section.contact-form form .form-group input {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.contact-form form .form-group textarea {
    border-radius: 10px;
}

section.contact-form form .form-group button {
    background: #fc800a;
    padding: 10px 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 25px;
}

section.contact-form .card {
    height: 100%;
    background: rgb(130,213,255);
    background: radial-gradient(circle, rgba(130,213,255,1) 0%, rgba(178,158,255,1) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
}

section.contact-form .card h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 30px;
    line-height: normal;
    color: #444;
}

section.contact-form .card article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.contact-form .card img {
    border-radius: 15px;
    width: 100%;
}

section.contact-form .card .contact-img {
    margin-bottom: 25px;
}

section.contact-form .card h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 30px;
    line-height: normal;
    color: #444;
}

section.contact-form .card .social-icon ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-direction: row;
}

section.contact-form .card .social-icon ul li {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: transparent;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #444;
}

section.contact-form .card .social-icon ul a {
    color: #444;
}

section.contact-form .card .social-icon ul a i {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

section.contact-form .card p {
    margin: 10px 0;
}

section.contact-form .card p a {
    color: #444;
}

section.contact-form .card p a:hover {
    color: #fc800a;
    transition: all .3s linear;
}

section.contact-form .card.location {
    margin-top: 15px;
    background: #A5DBEA;
}

section.contact-form .card.location ul li {
    display: flex;
    text-align: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    flex-direction: row;
    margin: 5px 0;
    align-items: center;
}

section.contact-form .card.location ul li i {
    font-size: 22px;
    color: #444;
}

section.contact-form .card.location ul li a {
    color: #444;
}

section.contact-form .card.location .card-body {
    padding: 0;
}

section.contact-form .location-map {
    padding-top: 100px;
}

/* blogs page design */

section.blogs {
    background: #fcf7ee;
    padding: 100px 0;
}

section.blogs .card {
    border: 0;
    border-radius: 0;
    background: transparent;
}

section.blogs .card .card-body {
    padding: 0;
}

section.blogs .card .card-body .image {
    position: relative;
}

section.blogs .card .card-body .image span.badge {
    background: #fc800a;
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 5px;
}

section.blogs .card .card-body .image img {
    border-radius: 10px;
}

section.blogs .card .card-body .content {
    padding: 15px 0;
}

section.blogs .card .card-body .content ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    line-height: normal;
    flex-direction: row;
    margin-bottom: 10px;
}

section.blogs .card .card-body .content ul a {
    color: #444;
}

section.blogs .card .card-body .content ul li:first-child a {
    color: #fc800a;
}

section.blogs .card .card-body .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin-bottom: 0px;
}

section.blogs .card .card-body .content h5 a {
    color: #444;
}

section.blogs .card .card-body .content a.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.blogs .card .card-body .content a.btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.blogs .card .card-body .content article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.blogs .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

section.blogs .pagination ul li {
    width: 45px;
    height: 45px;
    line-height: 42px;
    background: transparent;
    border: 1px solid #222;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
}

section.blogs .pagination ul li a.btn {
    border: 0;
    padding: 0;
    font-weight: 500;
}

section.blogs .pagination {
    justify-content: center;
    margin-top: 35px;
}

section.blogs .pagination ul li:hover {
    background: #fc800a;
    transition: all .3s linear;
}

section.blogs .pagination ul li:hover a {
    color: #fff;
}

/* blog details page design */

section.blog-details {
    padding: 100px 0;
    background: #fcf7ee;
}

section.blog-details .card {
    height: 100%;
    border: 2px solid #000;
    border-style: dashed;
    background: #fbf1e3;
    padding: 25px;
    border-radius: 10px;
}

section.blog-details .cover-images {
    position: relative;
    margin-bottom: 25px;
}

section.blog-details .cover-images .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #f96ea0;
    padding: 15px;
    flex-direction: row;
}

section.blog-details .cover-images .content .right ul {
    display: flex;
    gap: 15px;
    flex-direction: row;
    justify-content: start;
    text-align: center;
}

section.blog-details .cover-images .content .right ul p {
    margin: 0;
    color: #fff;
}

section.blog-details .cover-images .content .right ul h6 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #fff;
}

section.blog-details .cover-images .content .left h6 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #fff;
}

section.blog-details .cover-images .content .left p {
    color: #fff;
}

section.blog-details .cover-images .content .left {
    text-align: center;
}

section.blog-details .cover-images img {
    border-radius: 15px;
}

section.blog-details h2 {
    font-family: "Rowdies", sans-serif;
    font-size: 35px;
    line-height: normal;
    color: #444;
}

section.blog-details article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.blog-details .blog-details-content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin-bottom: 0px;
}

section.blog-details .massage-ceo {
    background: #674FA3;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
    margin-top: 25px;
}

section.blog-details .massage-ceo article {
    color: #fff;
}

section.blog-details .massage-ceo h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
    text-align: right;
}

section.blog-details .comments .card .card-body {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: row;
    justify-content: start;
}

section.blog-details .comments .card .card-body .content {
    width: 100%;
}

section.blog-details .comments .card .card-body .icon img {
    width: 80px;
    height: 80px;
    background: #fff;
    text-align: center;
    border-radius: 100%;
}

section.blog-details .comments .card .card-body .content .header-info {
    border-bottom: 2px solid #444;
    border-bottom-style: dashed;
}

section.blog-details .comments .card .card-body .content .header-info h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
}

section.blog-details .comments .card {
    border: none;
    border-radius: 25px;
    margin: 25px 0;
}

section.blog-details .comment-replay h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
}

section.blog-details .comment-replay p {
    font-size: 12px;
    margin: 0px;
    color: #444;
}

section.blog-details .comment-replay .form-group {
    margin: 25px 0;
}

section.blog-details .comment-replay .form-group label {
    margin-bottom: 10px;
    color: #444;
    line-height: normal;
}

section.blog-details .comment-replay .form-group input {
    border: 2px solid #fbf1e3;
    background: #fbf1e3;
    padding: 12px;
    border-radius: 10px;
}

section.blog-details .comment-replay .form-group input:focus {
    border: 2px solid #fc800a;
    border-style: dashed;
    box-shadow: none;
}

section.blog-details .comment-replay .form-group textarea {
    background: #fbf1e3;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #fbf1e3;
}

section.blog-details .comment-replay .form-group textarea:focus {
    border: 2px solid #fc800a;
    border-style: dashed;
    box-shadow: none;
}

section.blog-details .comment-replay .form-group button.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
}

section.blog-details .comment-replay .form-group button.btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.blog-details .card form .form-group {
    position: relative;
}

section.blog-details .card form .form-group button.btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #444;
}

section.blog-details .recent-posts ul li .single-blog {
    display: flex;
    align-items: start;
    gap: 15px;
    flex-direction: row;
    margin: 15px 0;
    justify-content: start;
    width: 100%;
    border-bottom: 2px solid #444;
    border-bottom-style: dashed;
    padding-bottom: 15px;
}

section.blog-details .recent-posts ul li .single-blog .image img {
    width: 200px;
}

section.blog-details .recent-posts ul li .single-blog .content {
    width: 100%;
    color: #444;
}

section.blog-details .recent-posts ul li .single-blog .content h6 {
    margin: 0;
    font-family: "Rowdies", sans-serif;
    font-size: 16px;
    line-height: normal;
}

section.blog-details .card .recent-posts h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    margin: 20px 0;
    color: #444;
}

section.blog-details .card .recent-category h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    margin: 20px 0;
    color: #444;
}

section.blog-details .card .recent-category ul li {
    border-bottom: 2px solid #444;
    border-bottom-style: dashed;
    padding: 10px 0;
}

section.blog-details .card .recent-category ul li a {
    color: #444;
    font-size: 18px;
}

section.blog-details .card .recent-category ul li:last-child {
    border: none;
}

section.blog-details .recent-posts ul li:last-child .single-blog {
    border: none;
}

section.blog-details .card .ads img {
    width: 100%;
    border-radius: 15px;
}

section.blog-details .card form .form-group input {
    background: #fff;
    border: 2px solid #fff;
    padding: 12px;
    border-radius: 10px;
}

section.blog-details .card form .form-group input:focus {
    box-shadow: none;
    border: 2px solid #fc800a;
    border-style: dashed;
}

section.blog-details .card form .form-group button.btn i {
    font-size: 23px;
    font-weight: 700;
}

section.blog-details .card.sidebar {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 0;
    bottom: auto;
    height: auto;
}

/* teachers page design */

section.upcoming-course .card {
    border: 0;
}

section.upcoming-course .card .card-body {
    padding: 0;
}

section.upcoming-course .card .card-body img {
    border-radius: 15px;
    border: 2px solid #fc800a;
    border-style: dashed;
}

section.upcoming-course .card .content {
    margin-top: 15px;
}

section.upcoming-course .card .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin-bottom: 15px;
}

section.upcoming-course .card .content button.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
    margin-top: 30px;
    transition: all .3s linear;
    overflow: hidden;
    opacity: 0;
}

section.upcoming-course .card:hover .content button.btn {
    margin-top: 0px;
    overflow: visible;
    opacity: 1;
}


/* teachers details page design */

section.teacher-details {
    padding: 100px 0;
    background: #fcf7ee;
}

section.teacher-details .card {
    border: 0;
    background: transparent;
}

section.teacher-details .card .card-body{
    padding: 0px;
}

section.teacher-details .card .card-body .images {
    position: relative;
}

section.teacher-details .card .card-body img {
    border: 2px solid #000;
    border-style: dashed;
    border-radius: 10px;
    width: 100%;
}

section.teacher-details .card .card-body .social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fc800a;
    padding: 8px;
    margin: 0 100px;
    border-radius: 25px;
    gap: 15px;
}

section.teacher-details .card .card-body .social-media ul i {
    font-size: 22px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #fff;
    border-radius: 50%;
}

section.teacher-details .card .card-body .social-media ul a {
    color: #444;
}

section.teacher-details .card .card-body .social-media ul i {
    font-size: 22px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    display: block;
}

section.teacher-details .card .social-media {
    position: absolute;
    width: 100%;
    bottom: -50px;
    opacity: 0;
    overflow: hidden;
    transition: all .3s linear;
}

section.teacher-details .card .card-body .images:hover .social-media {
    opacity: 1;
    bottom: 25px;
    overflow: visible;
}

section.teacher-details .card .content {
    margin-top: 25px;
    text-align: center;
}

section.teacher-details .card .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.teacher-details h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.teacher-details article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.teacher-details .class-handling table thead tr th {
    background: #fc800a;
    padding: 10px 15px;
    border: 1px solid #fc800a;
    line-height: normal;
    color: #444;
}

section.teacher-details .class-handling table tbody tr td {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #fc800a;
    line-height: normal;
    color: #444;
}

section.teacher-details .courses-handling table thead tr th {
    background: #fc800a;
    padding: 10px 15px;
    border: 1px solid #fc800a;
    line-height: normal;
    color: #444;
}

section.teacher-details .courses-handling table tbody tr td {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #fc800a;
    line-height: normal;
    color: #444;
}

section.teacher-details .card.educational-info {
    padding: 25px;
    background: #fff;
    border: 2px solid #222;
    border-style: dashed;
    height: 100%;
}

section.teacher-details .card.educational-info ul li {
    margin: 15px 0;
    font-size: 18px;
    line-height: normal;
}

section.teacher-details .card.educational-info ul li a {
    color: #fc800a;
}


/* event details page design */

section.event-details {
    padding: 100px 0;
    background: #fcf7ee;
}

section.event-details .card {
    height: 100%;
    border: 2px solid #000;
    border-style: dashed;
    background: #fbf1e3;
    padding: 25px;
    border-radius: 10px;
}

section.event-details .cover-images {
    position: relative;
    margin-bottom: 25px;
}

section.event-details .cover-images .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #f96ea0;
    padding: 15px;
    flex-direction: row;
}

section.event-details .cover-images .content .right ul {
    display: flex;
    gap: 15px;
    flex-direction: row;
    justify-content: start;
    text-align: center;
}

section.event-details .cover-images .content .right ul p {
    margin: 0;
    color: #fff;
}

section.event-details .cover-images .content .right ul h6 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #fff;
}

section.event-details .cover-images .content .left h6 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #fff;
}

section.event-details .cover-images .content .left p {
    color: #fff;
}

section.event-details .cover-images .content .left {
    text-align: center;
}

section.event-details .cover-images img {
    border-radius: 15px;
    width: 100%;
}

section.event-details h2 {
    font-family: "Rowdies", sans-serif;
    font-size: 35px;
    line-height: normal;
    color: #444;
}

section.event-details article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.event-details .blog-details-content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin-bottom: 0px;
}

section.event-details .massage-ceo {
    background: #674FA3;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
    margin-top: 25px;
}

section.event-details .massage-ceo article {
    color: #fff;
}

section.event-details .massage-ceo h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
    text-align: right;
}

section.event-details .image img {
    border-radius: 15px;
    min-height: 100%;
}

/* gallery page design */

section.gallery {
    padding: 100px 0;
    background: #fcf7ee;
}

section.gallery .gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(470px, 1fr));
    gap: 15px;
}

section.gallery .gallery-items img {
    border-radius: 15px;
    border: 2px solid #fc800a;
    border-style: dashed;
    width: 100%;
    cursor: pointer;
    height: 100%;
}

/* faq page design */

section.faq-page {
    padding: 100px 0;
    background: #fcf7ee;
}

section.faq-page .sidebar {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 0;
    bottom: auto;
    height: auto;
    height: auto;
}

section.faq-page .card.faq-card {
    border: 0;
    padding: 25px;
    background: #fff;
    height: 100%;
}

section.faq-page .card.faq-card ul li p {
    padding: 15px 0;
    border-bottom: 2px solid #ddd;
    border-bottom-style: dashed;
    margin: 0;
}

section.faq-page .card.faq-card ul li span {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    display: block;
}

section.faq-page .card.faq-card ul li:last-child p {
    border: none;
}

section.faq-page .card.faq-card ul li .faq-content article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.faq-page .card.faq-card ul li .images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 15px;
}

section.faq-page .card.faq-card ul li .faq-content {
    margin-bottom: 20px;
    display: none;
    position: relative;
    transition: all .3s linear;
}

section.faq-page .card.faq-card ul li.faq-list.active .faq-content {
    display: block;
    transition: all .3s linear;
}

section.faq-page .card.support {
    border: 2px solid #000;
    border-style: dashed;
    background: #7BBFFF;
    padding: 25px;
    border-radius: 10px;
}

section.faq-page .card.support .image img {
    width: 100%;
    border-radius: 15px;
}

section.faq-page .card.support .content {
    margin-top: 20px;
    text-align: center;
}

section.faq-page .card.support .content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
}

section.faq-page .card.support .content article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.faq-page .card.support .content ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    align-items: center;
}

section.faq-page .card.support .content ul li {
    background: #fc800a;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
}

section.faq-page .card.support .content ul li p {
    margin: 0;
}

section.faq-page .card.support .content ul li a {
    color: #fff;
}

section.faq-page .card.support .content ul li a i {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}

section.faq-page .card.app-download {
    border: 2px solid #000;
    border-style: dashed;
    background: #f96ea0;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

section.faq-page .card.app-download .content {
    text-align: center;
}

section.faq-page .card.app-download .content article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.faq-page .card.app-download .content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #fff;
}

section.faq-page .card.faq-card ul li p {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

section.faq-page .card.faq-card ul li p i {
    font-size: 22px;
    color: #444;
    line-height: normal;
}

section.faq-page .card.faq-card ul li.faq-list.active i {
    transform: rotate(180deg);
    transition: all .3s linear;
}

/* 404 error page design */

section.error-page{
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

section.error-page .background-image {
    background: #fc800ac7;
    height: 100%;
}

section.error-page .card {
    border: 0;
    background: transparent;
}

section.error-page .card .images {
    text-align: center;
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

section.error-page .card .images img {
    max-width: 500px;
    text-align: center;
}

section.error-page .card .content {
    text-align: center;
}

section.error-page .card .content h3 {
    font-family: "Rowdies", sans-serif;
    font-size: 45px;
    line-height: normal;
    color: #fff;
}

section.error-page .card .content article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
}

section.error-page .card .content a.btn {
    background: #fff;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #444;
    border-radius: 25px;
    border: 2px solid #fff;
}

section.error-page .card .content a.btn:hover {
    border-color: #333;
    border-style: dashed;
}

/* application page design */

section.application-form {
    padding: 100px 0;
    background: #fcf7ee;
}

section.application-form form {
    height: 100%;
    background: #FDE5E9;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
}

section.application-form form .form-group {
    margin: 15px 0;
}

section.application-form form .form-group input {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
}

section.application-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.application-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.application-form form .form-group button {
    background: #fc800a;
    padding: 10px 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 25px;
}

section.application-form form .form-group h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin: 0;
}

section.application-form form .form-group.gender {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    justify-content: start;
}

section.application-form form .form-group.gender .male {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    flex-direction: row;
}

section.application-form form .form-group.gender .female {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    flex-direction: row;
}

section.application-form form .form-group.gender input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #999;
    transition: 0.2s all linear;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

section.application-form form .form-group.gender input:checked {
  border: 2px solid #fc800a;
  outline: unset !important
}



/* feedback page design */

section.feedback-form {
    padding: 100px 0;
    background: #fcf7ee;
}

section.feedback-form form {
    height: 100%;
    background: #FDE5E9;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
}

section.feedback-form form .form-group {
    margin: 15px 0;
}

section.feedback-form form .form-group input {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.feedback-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.feedback-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.feedback-form form .form-group button {
    background: #fc800a;
    padding: 10px 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 25px;
}

/* teacher page design */

section.incredible-student.teacher-page {
    padding-top: 100px;
}


/* registration page design */

section.registration-form {
    padding: 100px 0;
    background: #fcf7ee;
}

section.registration-form form {
    height: 100%;
    background: #FDE5E9;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
}

section.registration-form form .form-group {
    margin: 15px 0;
}

section.registration-form form .form-group input {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.registration-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.registration-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.registration-form form .form-group button {
    background: #fc800a;
    padding: 10px 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 25px;
}

section.registration-form form .form-group h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin: 0;
}

/* login page design */

section.login-form {
    padding: 100px 0;
    background: #fcf7ee;
}

section.login-form form {
    height: 100%;
    background: #FDE5E9;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #000;
    border-style: dashed;
}

section.login-form form .form-group {
    margin: 15px 0;
}

section.login-form form .form-group input {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.login-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section.login-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.login-form form .form-group button {
    background: #fc800a;
    padding: 10px 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 25px;
}

section.login-form form .form-group h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
    margin: 0;
}

section.login-form .images img {
    border-radius: 10px;
}

/* index 2 home page design */

.main-section-wrapper.index-2 {
    position: relative;
}

.main-section-wrapper.index-2 div#main-navbar {
    position: absolute;
    width: 100%;
    left: 0;
    height: auto;
    top: 0;
    z-index: 9;
}

.main-section-wrapper.index-2 header.header {
    background: transparent;
}

section.slider-section.index-2 {
    background: transparent;
    padding: 0;
}

section.slider-section.index-2 .background-img {
    padding-top: 150px;
    z-index: -99;
    position: relative;
}

section.slider-section.index-2 .slider-group-imges .images-two img {
    width: 62%;
}

section.slider-section.index-2 .slider-group-imges .images-one img {
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
}

section.slider-section.index-2 form .form-group input {
    width: 65%;
}

/*job details page design */

section.about-us.carrer-details .card .card-body p {
    margin: 0px;
    line-height: normal;
    text-align: left;
    letter-spacing: normal;
    font-weight: normal;
}

section.about-us.carrer-details .job-description {
    margin-bottom: 25px;
}

section.about-us.Carrer table tr td .btn {
    padding: 0;
    margin: 0px;
    border: 0px;
    color: #fc800a;
    line-height: normal;
}

/*appointment page design*/

section.feedback-form.appointment .form-group label {
    color: #444;
    margin-bottom: 10px;
}


/*video gallery page design*/

section.gallery.video-gallery .single-video-gallery a {
    color: #444;
}

section.gallery.video-gallery .single-video-gallery a h3 {
    font-size: 20px;
    padding-top: 15px;
}

section.gallery.video-gallery .single-video-gallery img {
    border-radius: 10px;
    max-height: 300px !important;
    width: 100%;
}

/*Notice Board Section Css Start*/
section.gob_notice {
    background-color: #FCF7EE;
    padding-bottom: 100px;
}

section.gob_notice .gob_contant .gob_card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
    gap: 10px;
}

section.gob_notice .gob_contant .gob_card .gob_notice_card {
    border: 2px dashed #8ab326;
    padding: 10px;
}

section.gob_notice .gob_contant .gob_card .gob_notice_card h4 {
    background-color: #fc800a;
    margin: 0;
    padding: 5px 10px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
}
section.gob_notice .gob_notice_contant .card .card-header:first-child {
    background-color: #fc800a;
}
section.gob_notice .gob_notice_contant {
    height: 100%;
}
section.gob_notice .gob_notice_contant .card {
    height: 100%;
}
.main-body-content-area .middlesidebar-wedget.management-section .notice-details-section .card-header {
    background-color: #fc800a;
}

section.about-us.notice-details .education-features a.btn {
    background: #fc800a;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #fc800a;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 235px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}

section.about-us.notice-details .education-features a.btn i {
    color: #fff;
}

.popup-notice {
    max-width: 400px;
    position: fixed;
    bottom: 5px;
    right: 5px;
}

.popup-notice .card {
    border: 0;
}

.popup-notice .card .notice {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: row;
}

.popup-notice .card .notice button.message-close {
    border: 0;
    background: transparent;
    color: #f26522;
    font-size: 20px;
    font-weight: 700;
}

.popup-notice .card .notice h6 {
    font-size: 15px;
    color: #444;
}

.popup-notice .card .notice p {
    font-size: 14px;
    color: #444;
}

.popup-notice .card .notice h4 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    font-family: "Rowdies", sans-serif;
}

/*Notice Board Section Css End*/

.img-gallery-box img{
    height: 460px !important;
}
.img-count{
    top: -115px !important;
    right: 30px !important;
}
ul.marquee-content-items {
    display: flex;
    gap: 20px;
}

/*popup add css start*/
#once-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    text-align: center;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#once-popup .inner {
    background: #ffffff;
    padding: 20px;
    width: 600px;
    max-width: 90%;
    margin: 50px auto;
    border-radius: 15px;
    }
#once-popup #popup-close {
    float: right;
    font-size: 30px;
    line-height: 10px;
    cursor: pointer;
    background: #fc800a;
    color: #FFF;
    padding: 10px;
    border-radius: 10px;
    }

/* popup scc end*/

/*image gallery border added css start*/

.framed {
    border-image-slice: 53 52 47 52;
    border-image-repeat: stretch;
    border-style: inset;
    border-width: 25px;
    display: grid;
    row-gap: 2rem;
    background-color: #ffe;
    margin: 10px 0;
    padding: 0.5rem;
    overflow: auto;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3), 0 0 6px 0 rgba(0, 0, 0, 0.18);
}
@keyframes pointing {
  to {
    transform: translateY(3px);
  }
}
