/*===== 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;
}

a.btn:active {
    border: 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: #1667b1;
}

/* animation up and down */

@keyframes MoveUpDown {
    0%, 100% {
        top: 0;
    }
    50% {
        top: 30px;
    }
}

@keyframes MoveUpDownBottom {
    0%, 100% {
        bottom: 0;
    }
    50% {
        bottom: 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, #17a6e03b 30%, #1667b1 0%);
    padding: 5px;
}

.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;
    position: relative;
}

.main-navbar-section .header-top ul li:nth-child(1) {
    border-right: 1px solid #919191;
    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: 125px;
}

.header__logo {
    color: #E6E7E9
}

.header__toggle {
    font-size: 1.5rem;
    color: #E6E7E9;
    cursor: pointer;
}

.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: 10px;
    top: 10px;
    font-size: 1.3rem;
    padding: .25rem;
    background-color: #282B3A;
    border-radius: 50%;
    cursor: pointer;
}

.nav.show .nav__menu ul.nav__list .dropdown-items li {
    margin: 5px 0;
}

/* .nav.show .nav__menu ul.nav__list li a.nav__link {
    color: #a9a9a9;
} */

.nav.show .branding-title {
    text-align: center;
    margin-top: 20px;
}

.nav.show .branding-title span{
    font-size: 20px;
    font-family: "Rowdies", sans-serif;
    line-height: normal;
    color: #919191;
}

.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.show .nav__menu {
    text-align: left;
}

nav#nav-menu .nav__menu .dropdown-items {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    border-style: dashed;
    border-color: #1667b1;
    top: 80px;
    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: 80px;
}

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: #1667b1;
    transition: all .3s linear;
}

nav#nav-menu .nav__menu li.nav__item a img {
    width: 12px;
}

.show {
    left: 0;
}

.active {
    color: #1667b1;
}

.header-bottom-shape img {
    width: 100%;
    height: 100%;
    background: #fbf1e3;
}

header.header .auth-info ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-direction: row;
}

header.header .auth-info ul li.nav__item {
    padding: 0;
    position: relative;
}

header.header .auth-info ul li.nav__item span.badge {
    position: absolute;
    right: 0;
    top: 0;
}

header.header .auth-info ul li.nav__item .btn{
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    padding: 0;
    color: #fff;
}

header.header .auth-info ul li.nav__item .btn i{
    color: #fff !important;
}

nav#nav-menu ul li a i {
    color: #1667b1;
    margin-right: 2px;
}

.header-bottom-shape svg, g {
    fill: #fff;
    background: transparent;
    width: 100%;
    height: auto;
}

section.breadcrumb-area .header-bottom-shape svg, g {
    fill: #fff !important;
    background: #1667b1;
    width: 100%;
    height: auto;
}

/* 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: #000000d9;
    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;
    padding: 0;
    background: #c9eaf8;
    z-index: 0;
    padding-bottom: 0px;
}

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: #1667b1;
}

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: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

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;
}

/* category list design */
section.course-category {
    background: #e7e7e73b;
    padding: 100px 0;
}

section.course-category .category-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 15px;
}

section.course-category .category-wrapper .category {
    background: #fff;
    text-align: center;
    border-radius: 10px;
    height: 100%;
    border: 2px solid #919191;
    border-style: dashed;
}

section.course-category .category-wrapper .category .card {
    border: none;
}

section.course-category .category-wrapper .category .card h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 18px;
    line-height: normal;
    color: #444;
    margin: 0;
    padding-top: 15px;
}

section.course-category .category-wrapper .category .card img {
    max-width: 100%;
    width: 135px;
}

section.course-category .category-wrapper .category .card .image {
    overflow: hidden;
}

section.course-category .category-wrapper .category .card:hover .image img {
    transform: scale(1.1);
    transition: all .3s linear;
}


/* shop page design */
section.our-courses {
    padding: 100px 0;
    background: #fff;
}

section.our-courses .card {
    background: #fff;
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
}

section.our-courses .card:hover {
    border-color: #1667b1;
    transition: all .3s ease;
    transform: translateY(-10px);
}

section.our-courses .card .card-body {
    padding: 0;
}

section.our-courses .badge {
    background: #1667b1;
    font-size: 14px;
    color: #ffff;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
}

section.our-courses .card .product-img {
    position: relative;
    overflow: hidden;
    text-align: center;
}

section.our-courses .card .cart-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
}

section.our-courses .card:hover .cart-icon{
    right: 10px;
    visibility: visible;
    opacity: 1;
    transition: all .3s linear;
}

section.our-courses .card .product-img img {
    border-radius: 10px;
    max-height: 270px;
    margin: 0 auto;
}

section.our-courses .card:hover .product-img img {
    border-radius: 10px;
    transform: scale(1.2);
    transition: all .3s linear;
} 

section.our-courses .card .product-info a.read-more {
    color: #1667b1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-top: 10px;
    font-size: 14px;
}

section.our-courses .card .cart-icon button.btn {
    background: #1667b1;
    color: #fff;
    border-radius: 50%;
}

section.our-courses .card .product-info .reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: start;
}

section.our-courses .card .product-info .reviews ul li i {
    font-size: 18px;
    color: #1667b1;
}

section.our-courses .card .product-info .reviews p {
    font-size: 14px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #989898;
}

section.our-courses .card .product-info .reviews ul li {
    display: inline-block;
}

section.our-courses .card .cart-icon li {
    margin: 10px 0;
}

section.our-courses .card .cart-icon button.btn:hover {
    background: transparent;
    border: 1px solid #1667b1;
    color: #444;
    transition: all .3s linear;
}

section.our-courses .card .product-info {
    text-align: left;
    padding: 30px 20px;
    padding-bottom: 20px;
    position: relative;
    background: #fff;
}

section.our-courses .card .product-info a {
    color: #444;
}

section.our-courses .card .product-info h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.our-courses .card .product-info p {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
    font-family: "Rowdies", sans-serif;
    color: #444;
}

section.our-courses .card .product-info p del {
    color: #1667b1;
}

section.our-courses .filter {
    text-align: right;
}

section.our-courses .filter select {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

section.our-courses .pagination {
    justify-content: center;
    margin-top: 35px;
}

section.our-courses .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

section.our-courses .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.our-courses .pagination ul li a.btn {
    border: 0;
    padding: 0;
    font-weight: 500;
}

section.our-courses .pagination ul li:hover {
    background: #1667b1;
    transition: all .3s linear;
}

section.our-courses .pagination ul li:hover a {
    color: #fff;
}

section.our-courses .card .product-info .author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

section.our-courses .card .product-info .author-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background: #e7d1a8;
}

section.our-courses .card .product-info .author-info h6 {
    margin: 0;
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 20px auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 16px;
    background: #1667b1;
    padding: 10px;
    color: #fff;
    border-radius: 3px;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 16px;
    background: #1667b1;
    padding: 10px;
    color: #fff;
    border-radius: 3px;
}

aside.filtering-courses {
    padding: 25px;
    border: 2px solid #919191;
    border-style: dashed;
    border-radius: 10px;
    background: #fff;
}

aside.filtering-courses ul {
    padding-top: 15px;
    padding-bottom: 25px;
}

aside.filtering-courses h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
    color: #444;
    margin-bottom: 0;
}

aside.filtering-courses ul li {
    margin: 10px 0;
}

aside.filtering-courses ul li label {
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
}

aside.filtering-courses ul li input[type=radio] {
    height: 25px;
    aspect-ratio: 1;
    border: calc(25px /8) solid #939393;
    padding: calc(25px /8);
    background: 
        radial-gradient(farthest-side, #1667b1 94%,#0000) 
        50%/0 0 no-repeat content-box;
    border-radius: 50%;
    outline-offset: calc(25px/10);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: inherit;
    transition: .3s;
}

aside.filtering-courses ul li input[type=radio]:checked {
    border-color: #1667b1;
    background-size: 100% 100%;
}

aside.filtering-courses ul li .form-group {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

/* category wise course design */
section.category-wise-course {
    padding: 100px 0;
    background: #fff;
}

section.category-wise-course .card {
    background: #fff;
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
}

section.category-wise-course .card:hover {
    border-color: #1667b1;
    transition: all .3s ease;
    transform: translateY(-10px);
}

section.category-wise-course .card .card-body {
    padding: 0;
}

section.category-wise-course .badge {
    background: #1667b1;
    font-size: 14px;
    color: #ffff;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
}

section.category-wise-course .card .product-img {
    position: relative;
    overflow: hidden;
    text-align: center;
}

section.category-wise-course .card .cart-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
}

section.category-wise-course .card:hover .cart-icon{
    right: 10px;
    visibility: visible;
    opacity: 1;
    transition: all .3s linear;
}

section.category-wise-course .card .product-img img {
    border-radius: 10px;
    max-height: 270px;
    margin: 0 auto;
}

section.category-wise-course .card:hover .product-img img {
    border-radius: 10px;
    transform: scale(1.2);
    transition: all .3s linear;
} 

section.category-wise-course .card .product-info a.read-more {
    color: #1667b1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-top: 10px;
    font-size: 14px;
}

section.category-wise-course .card .cart-icon button.btn {
    background: #1667b1;
    color: #fff;
    border-radius: 50%;
}

section.category-wise-course .card .product-info .reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: start;
}

section.category-wise-course .card .product-info .reviews ul li i {
    font-size: 18px;
    color: #1667b1;
}

section.category-wise-course .card .product-info .reviews p {
    font-size: 14px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #989898;
}

section.category-wise-course .card .product-info .reviews ul li {
    display: inline-block;
}

section.category-wise-course .card .cart-icon li {
    margin: 10px 0;
}

section.category-wise-course .card .cart-icon button.btn:hover {
    background: transparent;
    border: 1px solid #1667b1;
    color: #444;
    transition: all .3s linear;
}

section.category-wise-course .card .product-info {
    text-align: left;
    padding: 30px 20px;
    padding-bottom: 20px;
    position: relative;
    background: #f8f8f8;
}

section.category-wise-course .card .product-info a {
    color: #444;
}

section.category-wise-course .card .product-info h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.category-wise-course .card .product-info p {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
    font-family: "Rowdies", sans-serif;
    color: #444;
}

section.category-wise-course .card .product-info p del {
    color: #1667b1;
}

section.category-wise-course .filter {
    text-align: right;
}

section.category-wise-course .filter select {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

section.category-wise-course .pagination {
    justify-content: center;
    margin-top: 35px;
}

section.category-wise-course .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

section.category-wise-course .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.category-wise-course .pagination ul li a.btn {
    border: 0;
    padding: 0;
    font-weight: 500;
}

section.category-wise-course .pagination ul li:hover {
    background: #1667b1;
    transition: all .3s linear;
}

section.category-wise-course .pagination ul li:hover a {
    color: #fff;
}

section.category-wise-course .card .product-info .author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

section.category-wise-course .card .product-info .author-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background: #e7d1a8;
}

section.category-wise-course .card .product-info .author-info h6 {
    margin: 0;
}

/* mobile apps promotion */
section.apps-promotions {
    background: #fff;
    padding-bottom: 100px;
}

section.apps-promotions .promotion-img img {
    width: 100%;
    border-radius: 10px;
}

/* related course start */
.review-wrapper .related-course {
    padding: 100px 0;
}

.review-wrapper .related-course .card {
    background: #fff;
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
}

.review-wrapper .related-course .card:hover {
    border-color: rgb(252, 128, 10);
    transition: all .3s ease;
    transform: translateY(-10px);
}

.review-wrapper .related-course .card .card-body {
    padding: 0;
}

.review-wrapper .related-course .badge {
    background: #1667b1;
    font-size: 14px;
    color: #ffff;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.review-wrapper .related-course .card .product-img {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.review-wrapper .related-course .card .cart-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
}

.review-wrapper .related-course .card:hover .cart-icon{
    right: 10px;
    visibility: visible;
    opacity: 1;
    transition: all .3s linear;
}

.review-wrapper .related-course .card .product-img img {
    border-radius: 10px;
    max-height: 270px;
    margin: 0 auto;
}

.review-wrapper .related-course .card:hover .product-img img {
    border-radius: 10px;
    transform: scale(1.2);
    transition: all .3s linear;
} 

.review-wrapper .related-course .card .product-info a.read-more {
    color: #1667b1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin-top: 10px;
    font-size: 14px;
}

.review-wrapper .related-course .card .cart-icon button.btn {
    background: #1667b1;
    color: #fff;
    border-radius: 50%;
}

.review-wrapper .related-course .card .product-info .reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: start;
}

.review-wrapper .related-course .card .product-info .reviews ul li i {
    font-size: 18px;
    color: #1667b1;
}

.review-wrapper .related-course .card .product-info .reviews p {
    font-size: 14px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #989898;
}

.review-wrapper .related-course .card .product-info .reviews ul li {
    display: inline-block;
}

.review-wrapper .related-course .card .cart-icon li {
    margin: 10px 0;
}

.review-wrapper .related-course .card .cart-icon button.btn:hover {
    background: transparent;
    border: 1px solid #1667b1;
    color: #444;
    transition: all .3s linear;
}

.review-wrapper .related-course .card .product-info {
    text-align: left;
    padding: 30px 20px;
    padding-bottom: 20px;
    position: relative;
    background: #f8f8f8;
}

.review-wrapper .related-course .card .product-info a {
    color: #444;
}

.review-wrapper .related-course .card .product-info h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

.review-wrapper .related-course .card .product-info p {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
    font-family: "Rowdies", sans-serif;
    color: #444;
}

.review-wrapper .related-course .card .product-info p del {
    color: #1667b1;
}

.review-wrapper .related-course .filter {
    text-align: right;
}

.review-wrapper .related-course .filter select {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.review-wrapper .related-course .pagination {
    justify-content: center;
    margin-top: 35px;
}

.review-wrapper .related-course .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.review-wrapper .related-course .pagination ul li {
    width: 45px;
    height: 45px;
    line-height: 42px;
    background: transparent;
    border: 1px solid #222;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
}

.review-wrapper .related-course .pagination ul li a.btn {
    border: 0;
    padding: 0;
    font-weight: 500;
}

.review-wrapper .related-course .pagination ul li:hover {
    background: #1667b1;
    transition: all .3s linear;
}

.review-wrapper .related-course .pagination ul li:hover a {
    color: #fff;
}

.review-wrapper .related-course .card .product-info .author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.review-wrapper .related-course .card .product-info .author-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background: #e7d1a8;
}

.review-wrapper .related-course .card .product-info .author-info h6 {
    margin: 0;
}

.related-course.teacher-details-page .product-img img {
    border: none !important;
}

.related-course.teacher-details-page .author-info .images img {
    border: none;
}

section.teacher-details.review-wrapper .section-top h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 45px;
    line-height: normal;
    color: #444;
}

section.category-wise-course .filter {
    text-align: right;
}

section.category-wise-course .filter select {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

section.category-wise-course .pagination {
    justify-content: center;
    margin-top: 35px;
}

section.category-wise-course .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

section.category-wise-course .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.category-wise-course .pagination ul li a.btn {
    border: 0;
    padding: 0;
    font-weight: 500;
}

section.category-wise-course .pagination ul li:hover {
    background: #1667b1;
    transition: all .3s linear;
}

section.category-wise-course .pagination ul li:hover a {
    color: #fff;
}

section.category-wise-course .card .product-info .author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

section.category-wise-course .card .product-info .author-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background: #e7d1a8;
}

section.category-wise-course .card .product-info .author-info h6 {
    margin: 0;
}

/* about us style start */

section.about-us {
    background: #fff;
    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;
}

section.about-us h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: normal;
    color: #1667b1;
}

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: #1667b1;
    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 img {
    width: 100%;
    height: 100%;
}

section.about-us .about-us-video video {
    height: 100%;
    width: 100%;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 25px;
}

section.about-us a.btn.see-more {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

section.about-us a.btn.see-more:hover {
    border-color: #333;
    border-style: dashed;
}

section.about-us .about-us-img {
    height: 100%;
    border: 2px solid #8AB326;
    border-style: dashed;
    border-radius: 25px;
    overflow: hidden;
}

section.about-us .about-us-img:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

/* foundation of knowledge */

section.foundation-of-knowledge {
    background: #fff;
    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: #1667b1;
}

.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: #fff;
    padding: 100px 0;
}

section.our-customers .customer-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 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: #1667b1;
}

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: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

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 #919191;
    border-style: dashed;
    border-radius: 10px;
    height: 100%;
}

section.our-course .card:hover {
    border-color: #1667b1;
    transition: all .3s linear;
}

section.our-course .card .card-body {
    padding: 25px;
}

section.our-course .card .course-img {
    overflow: hidden;
}

section.our-course .card .course-img:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

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: 25px;
    line-height: normal;
    font-weight: 600;
    color: #444;
}

section.our-course .card .card-body .content .join-now span del {
    color: #1667b1;
}

section.our-course .card .card-body .content .join-now button.btn {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.our-course .card .card-body .content .join-now button.btn:hover {
    border-color: #333;
    border-style: dashed;
}

section.our-course .card .card-body .content .class-content {
    background: #17a6e03b;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

section.our-course .card .card-body .content .class-content ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

section.our-course .card .card-body .content .class-content ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    color: #444;
    flex-direction: row;
}





section.our-course a.btn.view-all-course {
    display: inline-block;
    text-align: center;
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    text-transform: capitalize;
}

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;
}

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;
}

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;
}

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;
}

section.mission-vission .background-overlay {
    padding: 100px 0;
    background: #e7e7e73b;
}

/* 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, #919191 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, #919191 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: #17a6e03b;
}

section.our-events .card {
    border: 0;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

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%;
    gap: 10px;
}

section.our-events .card .single-event .event-content {
    width: 100%;
}

section.our-events .card .single-event .event-img img {
    height: 100%;
    min-height: 220px;
}

section.our-events .card .single-event .event-img {
    overflow: hidden;
    max-width: 320px;
}

section.our-events .card .single-event .event-img:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

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;
}

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: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    text-transform: capitalize;
}

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: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    text-transform: capitalize;
}

section.our-events .view-all-event:hover {
    border-color: #333;
    border-style: dashed;
}

section.upcoming-course svg g {
    fill: #e1a753 !important;
}

section.upcoming-course .shape-up {
    padding-bottom: 100px;
}

section.upcoming-course .shape-down {
    padding-top: 100px;
}

/* our gallery style  */

section.our-gallery {
    padding: 100px 0;
    background: #17a6e03b;
}

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;
}

section.our-gallery .slick-slide img:hover {
    border-color: #1667b1;
    transition: all .3s linear;
}

/* our testimonial */

section.our-testimonial {
    padding: 100px 0;
    background: #e7e7e73b;
}

section.our-testimonial .testimonial-content .star ul {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row;
    margin: 15px 0;
    justify-content: center;
    margin-top: 0px;
}

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: 0 75px;
    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 {
    width: 100%;
    height: 100%;
}

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: #1667b1;
}

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: #1667b1;
    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: #919191;
    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: #1667b1;
    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: #e7e7e73b;
    margin-bottom: -1px;
}


/* about us page design */

section.follow-instagram {
    padding: 100px 0;
    background: #e7e7e73b;
}

section.follow-instagram .slick-slide {
    padding: 60px 15px;
}

section.follow-instagram .slick-slide img {
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 10px;
    cursor: pointer;
}

section.follow-instagram .slick-slide img:hover {
    transform: scale(1.1);
    transition: all .3s linear;
}

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%;
}

section.our-shop .filter {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

section.our-shop .filter button.btn {
    background: #1667b1;
    padding: 8px 13px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border: 2px solid #1667b1;
}

/* incredible student */

section.incredible-student {
    padding: 100px 0;
    background: #fff;
}

section.incredible-student .card {
    border: 0;
    background: transparent;
}

section.incredible-student .card .card-body{
    padding: 0px;
}

section.incredible-student .card .card-body .images {
    position: relative;
    overflow: hidden;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 10px;
}

section.incredible-student .card .card-body .images:hover img {
    transform: scale(1.1);
    transition: .3s linear;
}

section.incredible-student .card .card-body img {
    width: 100%;
}

section.incredible-student .card .card-body .social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1667b1;
    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: -30px;
    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: #17a6e03b;
}

/* kids education section */

section.kids-education {
    background: #17a6e03b;
    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:hover img {
    transform: scale(1.05);
    transition: all .3s linear;
    overflow: hidden;
}

section.kids-education .card .single-service .image {
    overflow: hidden;
    width: 150px;
    border-radius: 100px 100px 100px 0px;
    margin: 0 auto;
}

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: #1667b1;
}

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: 16px;
    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 #919191;
    border-radius: 10px;
}

section.contact-form form .form-group textarea {
    border-radius: 10px;
}

section.contact-form form .form-group button {
    background: #1667b1;
    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: #1667b1;
    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: #17a6e03b;
    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;
    overflow: hidden;
}

section.blogs .card .card-body .image:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

section.blogs .card .card-body .image span.badge {
    background: #1667b1;
    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: #1667b1;
}

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: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

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: #1667b1;
    transition: all .3s linear;
}

section.blogs .pagination ul li:hover a {
    color: #fff;
}

/* blog details page design */

section.blog-details {
    padding: 100px 0;
    background: #17a6e03b;
}

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 #1667b1;
    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 #1667b1;
    border-style: dashed;
    box-shadow: none;
}

section.blog-details .comment-replay .form-group button.btn {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

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 #1667b1;
    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 #1667b1;
    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: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    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: #e7e7e73b;
}

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: #1667b1;
    padding: 8px;
    margin: 0 auto;
    border-radius: 25px;
    gap: 15px;
    width: 225px;
}

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: #1667b1;
    padding: 10px 15px;
    border: 1px solid #1667b1;
    line-height: normal;
    color: #fff;
}

section.teacher-details .class-handling table tbody tr td {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #1667b1;
    line-height: normal;
    color: #444;
}

section.teacher-details .courses-handling table thead tr th {
    background: #1667b1;
    padding: 10px 15px;
    border: 1px solid #1667b1;
    line-height: normal;
    color: #fff;
}

section.teacher-details .courses-handling table tbody tr td {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #1667b1;
    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: #1667b1;
}


/* event details page design */

section.event-details {
    padding: 100px 0;
    background: #e7e7e73b;
}

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: #17a6e03b;
}

section.gallery .gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(470px, 1fr));
    gap: 15px;
}

section.gallery .gallery-items a.gallery-item.single-img {
    border-radius: 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

section.gallery .gallery-items a.gallery-item.single-img:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

section.gallery .gallery-items img {
    width: 100%;
    cursor: pointer;
}

/* faq page design */

section.faq-page {
    padding: 100px 0;
    background: #fff;
}

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: #e7e7e73b;
    height: 100%;
}

section.faq-page .card.faq-card ul li p {
    padding: 15px 0;
    border-bottom: 2px solid #919191;
    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: #1667b1;
    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: #1667b1c7;
    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: #e7e7e73b;
}

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 #919191;
    border-radius: 10px;
}

section.application-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #919191;
    border-radius: 10px;
}

section.application-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.application-form form .form-group button {
    background: #1667b1;
    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;
}


/* feedback page design */

section.feedback-form {
    padding: 100px 0;
    background: #e7e7e73b;
}

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 #919191;
    border-radius: 10px;
}

section.feedback-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #919191;
    border-radius: 10px;
}

section.feedback-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.feedback-form form .form-group button {
    background: #1667b1;
    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: #e7e7e73b;
}

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 #919191;
    border-radius: 10px;
}

section.registration-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #919191;
    border-radius: 10px;
}

section.registration-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.registration-form form .form-group button {
    background: #1667b1;
    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: #e7e7e73b;
}

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 #919191;
    border-radius: 10px;
}

section.login-form form .form-group select {
    padding: 12px;
    color: #444;
    line-height: normal;
    border: 1px solid #919191;
    border-radius: 10px;
}

section.login-form form .form-group textarea {
    border-radius: 10px;
    padding: 15px;
}

section.login-form form .form-group button {
    background: #1667b1;
    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-top {
    background: linear-gradient(135deg, #973fea 30%, #d1f5ff 0%);
    padding: 10px 0;
}

.main-section-wrapper.index-2 .header-top address {
    color: #fff;
}

.main-section-wrapper.index-2 .main-navbar-section .header-top ul a {
    color: #444;
}

.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: 100%;
    padding: 20px;
    border: 0;
    border-radius: 10px;
    line-height: normal;
    text-transform: capitalize;
}

section.slider-section.index-2 form .form-group input:focus {
    outline: none;
    border-color: #171e45;
}

section.slider-section.index-2 form .form-group {
    position: relative;
    width: 65%;
}

section.slider-section.index-2 form .form-group button.btn {
    position: absolute;
    right: 7px;
    top: 7px;
    background: #973fea;
    padding: 10px 15px;
    color: #fff;
    border-radius: 10px;
    text-transform: capitalize;
    font-weight: 500;
}

section.slider-section.index-2 .slider-content-group h6 {
    color: #973fea;
}

section.slider-section.index-2 .background-overlay {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.about-us.index-2 .about-bottom-shope svg {
    width: 100%;
    height: 100%;
}

/* about us */

section.about-us.index-2 .about-us-img img {
    height: auto;
    width: auto;
    border: none;
    border-radius: unset;
}

section.about-us.index-2 .about-us-img {
    position: relative;
    border: 0;
    border-radius: 0;
    width: auto !important;
}

section.about-us.index-2 .about-us-img:hover img {
    transform: scale(1) !important;
}

section.about-us.index-2 .about-us-img .about-us-img {
    position: absolute;
    top: 0;
    left: 0;
    padding: 35px;
}

section.about-us.index-2 .education-features {
    grid-template-columns: 1fr;
}

section.about-us.index-2 .card {
    position: relative;
}

section.about-us.index-2 .card .about-shape img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    animation: MoveUpDownBottom 3s linear infinite;
}

section.about-us.index-2 h6 {
    color: #973fea;
}

section.about-us.index-2 a.btn.see-more {
    background: #973fea;
    border: 2px solid #973fea;
}

section.about-us.index-2 {
    padding-bottom: 0px;
    background: #f9f9f9;
}

section.our-course .filtering-button {
    text-align: center;
    margin-bottom: 25px;
}

section.our-course .filtering-button button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    background: transparent;
    border: 2px solid #919191;
    border-style: dashed;
    margin: 0 5px;
    border-radius: 25px;
    min-width: 100px;
}

section.our-course .filtering-button button.mixitup-control-active {
    background-image: linear-gradient(45deg, rgba(123, 191, 255,1), rgba(151, 63, 234,1));
    border: 2px solid #171e45;
    border-style: none;
}

section.our-course.index-2 .section-top h6 {
    color: #973fea;
}

section.our-course.index-2 .card .card-body .content .join-now button.btn {
    background: #973fea;
    border-color: #973fea;
}

section.our-course.index-2 .card .card-body .content .join-now span {
    color: #973fea;
}

section.our-course.index-2 .card:hover {
    border-color: #973fea;
}

section.our-course.index-2 a.btn.view-all-course {
    background: #973fea;
    border: 2px solid #973fea;
}

section.kids-education.index-2 .single-service .icon a.btn {
    background: #973fea;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    padding: 10px 15px;
}

section.our-results {
    padding: 100px 0;
    background: #e7e7e73b;
}

section.our-results .result-information {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

section.our-results .result-information .card {
    margin: 30px 0;
    padding: 25px;
    border: 2px solid #1667b1;
    border-style: dashed;
}

section.our-results .result-information .card h5 {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 15px;
    line-height: normal;
}

section.our-results .result-information .card h4 {
    font-size: 45px;
    font-weight: 700;
    color: #444;
    margin-bottom: 15px;
    line-height: normal;
    font-family: "Rowdies", sans-serif;
}

section.our-results .result-information .card article {
    font-size: 16px;
    color: #444;
}

section.our-results .result-information .single-result:first-child .card:first-child h4{
    color: #88b520;
}

section.our-results .result-information .single-result:first-child .card:last-child h4{
    color: #f8ad12;
}

section.our-results .result-information .single-result:last-child .card:first-child h4{
    color: #7bbfff;
}

section.our-results .result-information .single-result:last-child .card:last-child h4{
    color: #f96ea0;
}

section.our-results .result-information .single-result:last-child {
    margin-top: 50px;
}

section.our-results .card.left-side {
    border: 0;
    background: transparent;
    margin: 30px 0;
    height: 100%;
    position: relative;
}

section.our-results .card.left-side .card-body .content h6 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: normal;
    color: #1667b1;
}

section.our-results .card.left-side .card-body .content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 45px;
    line-height: normal;
    color: #444;
}

section.our-results .card.left-side .card-body .content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
    margin: 25px 0;
}

section.our-results .card.left-side .card-body .content a.btn {
    display: inline-block;
    text-align: center;
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

section.our-results .card.left-side .content img {
    width: 60%;
    position: absolute;
    bottom: 0;
    right: 0;
}

section.our-brand {
    padding: 100px 0;
}

/* home page 3 design */
.main-section-wrapper.index-3 {
    position: relative;
}

.main-section-wrapper.index-3 div#main-navbar {
    position: absolute;
    width: 100%;
    left: 0;
    height: auto;
    top: 0;
    z-index: 9;
}

.main-section-wrapper.index-3 .header-top {
    background: linear-gradient(135deg, #973fea 30%, #d1f5ff 0%);
    padding: 10px 0;
}

.main-section-wrapper.index-3 .header-top address {
    color: #fff;
}

.main-section-wrapper.index-3 .main-navbar-section .header-top ul a {
    color: #444;
}

.main-section-wrapper.index-3 header.header {
    background: transparent;
}

section.slider-section.index-3 {
    background: transparent;
    padding: 0;
}

.slider-imges-rightside .images {
    border: 15px solid #b96193;
    border-radius: 50%;
    overflow: hidden;
}

.slider-imges-rightside .images:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

.slider-imges-rightside {
    border: 40px solid #3e4f63;
    border-radius: 50%;
    animation: zoomInOut 3s linear infinite;
}

section.slider-section.index-3 .background-img {
    padding-top: 150px;
    z-index: -99;
    position: relative;
}

section.slider-section.index-3 .slider-content-group ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

section.slider-section.index-3 .slider-content-group ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

section.slider-section.index-3 .slider-content-group ul li h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 35px;
    line-height: normal;
    color: #444;
}

section.slider-section.index-3 .slider-content-group ul li:nth-child(1) h4 {
    color: #88b520;
}

section.slider-section.index-3 .slider-content-group ul li:nth-child(2) h4 {
    color: #e96b3b;
}

section.slider-section.index-3 .slider-content-group ul li:nth-child(3) h4 {
    color: #973fea;
}

section.course-category .course-category-slider .image img {
    padding: 35px;
    border-radius: 50%;
}

section.course-category .course-category-slider .image {
    position: relative;
}

section.course-category .course-category-slider .image::before {
    content: '';
    width: 85%;
    height: 85%;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(120deg, rgba(136, 181, 31, 1) 0%, rgba(136, 181, 31, 1) 100%);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    z-index: -9;
}

section.course-category {
    padding: 100px 0;
}

section.course-category .course-category-slider h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #444;
    margin-bottom: 0;
}

section.our-support .background-img {
    padding: 100px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

section.our-support .background-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000bf;
    left: 0;
    top: 0;
    z-index: 0;
}

section.our-support .background-img .container {
    position: relative;
}

section.our-support .section-top h4 {
    color: #fff;
}

section.our-support .support-service .single-service h5 {
    color: #fff;
}

section.our-support .support-service {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

section.our-support .support-service .single-service {
    text-align: center;
}

section.our-support .support-service .single-service .icon {
    margin-bottom: 15px;
}

section.our-support .support-service .single-service .icon svg {
    width: 60px;
    margin: 0 auto;
    text-align: center;
    fill: #fff !important;
}

section.our-support a.btn {
    display: inline-block;
    text-align: center;
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

section.our-support .section-top article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #fff;
    margin: 25px 0;
}

section.our-support .play-video {
    text-align: center;
    margin-bottom: 25px;
}

section.our-support .play-video i {
    font-size: 90px;
    color: #fff;
    cursor: pointer;
}

section.bottom-to-top {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

section.bottom-to-top img {
    width: 40px;
}

.bottom-to-top {
    display: none;
}

/* become an instructor */
section.instructor-application {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section.instructor-application .background-overlay {
    background: #c9eaf8c7;
    padding: 100px 0;
}

section.instructor-application .content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 45px;
    line-height: normal;
    color: #444;
    margin-bottom: 15px;
}

section.instructor-application .content article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
    padding: 10px 0;
}

section.instructor-application .content a.btn {
    display: inline-block;
    text-align: center;
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    text-transform: capitalize;
    margin-top: 20px;
}

section.instructor-application .promotion-video {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

section.instructor-application .promotion-video span i {
    font-size: 75px;
    color: #444;
}

section.instructor-application .promotion-video span {
    position: relative;
    display: block;
}

section.instructor-application .promotion-video span::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    left: -82%;
    top: -39%;
    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.instructor-application .promotion-video span::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    left: -82%;
    top: -45px;
    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, rgb(10, 107, 252) 0, rgb(10, 107, 252) 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.instructor-application .promotion-video span:hover i {
    transition: all 3s;
    color: #1667b1;
}

/* courser details page design */
section.course-details .header-background-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section.course-details .background-overlay {
    background: #ffffffbd;
}

section.course-details .header-background-img .card {
    border: 0;
    background: transparent;
}

section.course-details .header-background-img .card-body {
    padding: 0px;
}

section.course-details .header-background-img .card-body .course-header {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    padding: 100px 0;
}

section.course-details .header-background-img .card .course-info {
    width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: absolute;
    right: 0;
}

section.course-details .course-header .course-content h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 35px;
    line-height: normal;
    color: #444;
    margin-bottom: 15px;
}

section.course-details .course-header .course-content .review {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: start;
}

section.course-details .course-header .course-content .review ul li {
    display: inline-block;
}

section.course-details .course-header .course-content .review ul li i {
    font-size: 18px;
    color: #1667b1;
}

section.course-details .course-header .course-content .review p {
    font-size: 14px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    color: #989898;
}

section.course-details .header-background-img .card-body .course-header .course-content {
    max-width: 70%;
}

section.course-details .header-background-img .card .short-description article {
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
    padding: 10px 0;
}

section.course-details .course-header .course-content .class-content {
    background: #87ddff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

section.course-details .course-header .course-content .class-content ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

section.course-details .course-header .course-content .class-content ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    color: #444;
    flex-direction: row;
}

section.course-details .card .course-info .features ul li {
    display: flex;
    gap: 10px;
    text-align: center;
    justify-content: start;
    flex-wrap: wrap;
    color: #444;
    padding: 4px 0;
}

section.course-details .card .course-info .features {
    margin: 20px 0;
}

section.course-details .card .course-info .features ul li strong {
    display: flex;
    gap: 4px;
    text-align: center;
    justify-content: start;
    flex-wrap: wrap;
}

section.course-details .card .course-info .checkout-info .price p {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    font-weight: 600;
    color: #444;
}

section.course-details .card .course-info .checkout-info .price p del {
    color: #1667b1;
}

section.course-details .card .course-info .checkout-info .cart-item .btn {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.course-details .card .course-info .checkout-info .cart-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
}

section.course-details .card .course-info .checkout-info .cart-item button.btn.buy-now {
    background: transparent;
    color: #444;
}

section.course-details .card .course-info .promotion-video .background-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.course-details .card .course-info .promotion-video .background-img .background-overlay {
    padding: 100px 0;
    text-align: center;
}

section.course-details .card .course-info .promotion-video i {
    font-size: 70px;
    color: #444;
}

section.course-details .card .course-info .checkout-info {
    padding-top: 20px;
}

section.course-details .card .course-info .cupon h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .card .course-info .cupon .form-group {
    position: relative;
}

section.course-details .card .course-info .cupon .form-group input {
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 25px;
    padding: 10px;
}

section.course-details .card .course-info .cupon .form-group button.btn {
    position: absolute;
    right: 5px;
    top: 3px;
    color: #fff;
    background: #1667b1;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    line-height: normal;
}

section.course-details .card .course-info .social-info {
    padding: 20px 0;
}

section.course-details .card .course-info .social-info h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .card .course-info .social-info ul li {
    display: inline-block;
    margin-right: 5px;
}

section.course-details .card .course-info .social-info ul li i {
    width: 35px;
    height: 35px;
    background: #d8c8b7;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    border-radius: 3px;
    color: #444;
    font-weight: 600;
    font-size: 18px;
}

section.course-details .card .course-info .social-info ul li:hover i {
    transition: all .3s linear;
    background: #fc932e;
}

section.course-details .course-contents-wrapper {
    background: #e7e7e73b;
    padding: 100px 0;
}

section.course-details .course-contents-wrapper .course-content {
    max-width: 70%;
}

section.course-details .course-contents-wrapper .course-content nav .nav {
    border: none;
    justify-content: left;
    padding-bottom: 25px;
    gap: 15px;
}

section.course-details .course-contents-wrapper .course-content nav .nav button {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    border: 2px solid #919191;
    border-style: dashed;
    height: auto;
    border-radius: 5px;
}

section.course-details .course-contents-wrapper .course-content nav .nav button.active {
    border-color: #1667b1;
    color: #1667b1;
}

section.course-details .course-overview .what-you-will-learn {
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
    padding: 25px;
    margin-bottom: 15px;
    background: #fff;
}

section.course-details .course-overview .what-you-will-learn ul {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}

section.course-details .course-overview .what-you-will-learn ul li {
    color: #444;
    font-size: 15px;
    font-weight: normal;
    display: flex;
    gap: 10px;
}

section.course-details .course-overview .what-you-will-learn h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .course-overview .what-you-will-learn ul li p {
    margin: 0;
}

section.course-details .course-overview .course-requerments {
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
    padding: 25px;
    margin-bottom: 15px;
    background: #fff;
}

section.course-details .course-overview .course-requerments ul li {
    color: #444;
    font-size: 15px;
    font-weight: normal;
    display: flex;
    gap: 10px;
}

section.course-details .course-overview .course-requerments h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .course-overview .course-requerments ul li p {
    margin: 0;
}

section.course-details .course-overview .course-description h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .course-overview .course-description {
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
    padding: 25px;
    margin-bottom: 15px;
    background: #fff;
}

section.course-details .course-overview .course-description article {
    color: #444;
    font-size: 15px;
    font-weight: normal;
}

section.course-details .course-overview .author-info {
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}

section.course-details .course-overview .author-info .auth-info {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    border-right: 2px solid #d8c8b7;
    margin-right: 10px;
}

section.course-details .course-overview .author-info .auth-info .about-info {
    width: 85%;
}

section.course-details .course-overview .author-info .images img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

section.course-details .course-overview .author-info .auth-info .about-info h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: #444;
}

section.course-details .course-overview .author-info .auth-info .about-info article {
    color: #444;
}

section.course-details .course-overview .author-info .social-info ul li {
    display: inline-block;
    margin-right: 5px;
}

section.course-details .course-overview .author-info .social-info ul li i {
    width: 35px;
    height: 35px;
    background: #d8c8b7;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    border-radius: 3px;
    color: #444;
    font-weight: 600;
    font-size: 18px;
}

section.course-details .course-overview .author-info .social-info ul li:hover i {
    transition: all .3s linear;
    background: #fc932e;
}

section.course-details .course-overview .author-info .auth-info .about-info .social-info {
    padding-top: 15px;
}

section.course-details .course-overview .author-info .achivements ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: #444;
}

section.course-details .course-content .course-curriculum h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .course-content .course-curriculum .class-content {
    background: #87ddff;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px 0;
    display: inline-block;
}

section.course-details .course-content .course-curriculum .class-content ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

section.course-details .course-content .course-curriculum .class-content ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    color: #444;
    flex-direction: row;
}

section.course-details .course-curriculum div#course-items .card-body ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #444;
}

section.course-details .course-curriculum div#course-items .card-body ul li a {
    color: #444;
}

section.course-details .course-curriculum div#course-items .card-body ul li a:hover {
    text-decoration: underline;
}

section.course-details .course-curriculum div#course-items .card-body ul li .preview {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
}

section.course-details .course-curriculum div#course-items .card-body ul li .preview  a {
    color: #fc932e;
}

section.course-details .course-curriculum div#course-items .card-body ul li .item-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

section.course-details .course-content .course-curriculum .card-header h5 {
    font-size: 18px;
    margin: 0;
    padding: 0;
}

section.course-details .qna-wrapper .auth-question .images img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

section.course-details .qna-wrapper .auth-question {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
}

section.course-details .qna-wrapper .auth-question .about-info {
    width: 85%;
}

section.course-details .qna-wrapper .auth-question .about-info h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: #444;
}

section.course-details .qna-wrapper .auth-question .about-info article {
    color: #444;
}

section.course-details .course-content div#rating svg {
    width: 25px;
}

section.course-details .course-content div#rating {
    padding-bottom: 15px;
}

section.course-details .course-content .review-wrapper .form-group {
    margin-bottom: 15px;
}

section.course-details .course-content .review-wrapper .form-group  label {
    margin-bottom: 15px;
}

section.course-details .course-content .review-wrapper .form-group button.btn {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-wrapper .swiper.review-slider .review {
    border: 2px solid #919191;
    padding: 25px;
    border-radius: 10px;
    border-style: dashed;
}

.review-wrapper .swiper.review-slider .review img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.review-wrapper .swiper.review-slider ul li {
    display: inline-block;
    color: #fc932e;
}

.review-wrapper .swiper.review-slider ul li i {
    font-size: 20px;
}

.review-wrapper .swiper.review-slider .review .profile {
    text-align: center;
    padding-bottom: 20px;
}

.review-wrapper .swiper.review-slider .review article {
    color: #444;
}

.review-wrapper .swiper.review-slider .review h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #444;
    padding-top: 15px;
}

section.course-details .course-content .review-wrapper h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    color: #444;
    padding-bottom: 10px;
}

section.course-details .course-content .review-wrapper form {
    padding-bottom: 35px;
}

section.course-details .course-content .review-wrapper .swiper-slide{
    width: 400px;
    background: #7fdaff;
}

section.course-details .course-content .review-wrapper .swiper-slide.swiper-slide-active {
    background: #fff;
}

section.course-details .course-content .course-curriculum .card .card-body {
    display: none;
    border: 2px solid #ddd;
    border-style: dashed;
}

section.course-details .course-content .course-curriculum .card .card-header.active {
    border: none;
}

section.course-details .course-content .course-curriculum .card .card-header {
    border: none;
    padding: 15px 0px;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    border-bottom-style: dashed;
}

section.course-details .course-content .course-curriculum .card {
    border: none;
}

/* product details page design */

section.product-details {
    padding: 100px 0;
    background: #17a6e03b;
}

section.product-details .card.product-gallery .card-body .slider.details-thumbs {
    margin-bottom: 0px;
}

section.product-details .card.product-gallery .card-body .slider.details-thumbs .slick-list, .slick-track {
    height: auto !important;
}

section.product-details .card.product-gallery .card-body .slider.details-thumbs .slick-slide {
    width: 100px !important;
    height: 100px;
    border: 2px solid #919191;
    margin: 6px;
    border-style: dashed;
    border-radius: 5px;
    cursor: pointer;
}

section.product-details .card.product-gallery {
    border: 0;
    border-radius: 10px;
}

section.product-details .card.product-info {
    border: 0;
    background: transparent;
}

section.product-details .card.product-info .card-body {
    padding: 0 10px;
}

section.product-details .card.product-info h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 30px;
    line-height: normal;
    color: #444;
}

section.product-details .product-review ul li {
    display: inline-block;
}

section.product-details .product-review ul li i {
    font-size: 22px;
    color: #1667b1;
}

section.product-details .product-review {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-direction: row;
}

section.product-details .product-review .review-count a {
    color: #444;
    font-size: 16px;
    text-transform: capitalize;
}

section.product-details .card.product-info .price h6 {
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    color: #444;
    margin: 0;
    line-height: normal;
}

section.product-details .card.product-info .price {
    padding: 15px 0;
}

section.product-details .description article {
    margin: 20px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.product-details .cart-section .form-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: start;
    margin: 20px 0;
}

section.product-details .cart-section .form-group select {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

section.product-details .cart-section .form-group input {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    max-width: 100px;
}

section.product-details .cart-section .form-group button {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
    display: flex;
    align-items: center;
    gap: 5px;
}

section.product-details ul.features li {
    padding: 3px 0;
}

section.product-details .product-description {
    padding-top: 20px;
}

section.product-details .product-description article {
    font-size: 18px;
    font-weight: normal;
    color: #444;
}

section.product-details .product-description ul li svg {
    width: 20px;
    color: #1667b1;
}

section.product-details .product-description ul {
    margin-top: 20px;
}

section.product-details .product-description ul li {
    font-size: 18px;
    font-weight: normal;
    color: #444;
    padding: 5px 0;
}

.product-reviews .comments .card .card-body {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: row;
    justify-content: start;
}

.product-reviews .comments .card .card-body .content {
    width: 100%;
}

.product-reviews .comments .card .card-body .icon img {
    width: 80px;
    height: 80px;
    background: #fff;
    text-align: center;
    border-radius: 100%;
}

.product-reviews .comments .card .card-body .content .header-info {
    border-bottom: 2px solid #444;
    border-bottom-style: dashed;
}

.product-reviews .comments .card .card-body .content .header-info h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
}

.product-reviews .comments .card {
    border: none;
    border-radius: 25px;
    margin: 25px 0;
}

.product-reviews .comment-replay h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
}

.product-reviews .comment-replay p {
    font-size: 12px;
    margin: 0px;
    color: #444;
}

.product-reviews .comment-replay .form-group {
    margin: 25px 0;
}

.product-reviews .comment-replay .form-group label {
    margin-bottom: 10px;
    color: #444;
    line-height: normal;
}

.product-reviews .comment-replay .form-group input {
    border: 2px solid #fbf1e3;
    background: #fbf1e3;
    padding: 12px;
    border-radius: 10px;
}

.product-reviews .comment-replay .form-group input:focus {
    border: 2px solid #1667b1;
    border-style: dashed;
    box-shadow: none;
}

.product-reviews .comment-replay .form-group textarea {
    background: #fbf1e3;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #fbf1e3;
}

.product-reviews .comment-replay .form-group textarea:focus {
    border: 2px solid #1667b1;
    border-style: dashed;
    box-shadow: none;
}

.product-reviews .comment-replay .form-group button.btn {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

.product-reviews .comment-replay .form-group button.btn:hover {
    border-color: #333;
    border-style: dashed;
}

.product-reviews .card form .form-group {
    position: relative;
}

.product-reviews .card form .form-group button.btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #444;
}

.product-reviews .comments .card .card-body .content article {
    margin: 10px 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 25px;
    color: #444;
}

section.product-details .related-product .card {
    border: 0px;
    background: transparent;
}

section.product-details .related-product .card .card-body {
    padding: 0;
}

section.product-details .related-product .badge {
    background: #1667b1;
    font-size: 14px;
    color: #ffff;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
}

section.product-details .related-product .card .product-img {
    background: #fff;
    padding: 15px;
    border: 2px solid #919191;
    border-radius: 10px;
    border-style: dashed;
    position: relative;
    overflow: hidden;
}

section.product-details .related-product .card .cart-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
}

section.product-details .related-product .card:hover .cart-icon{
    right: 10px;
    visibility: visible;
    opacity: 1;
    transition: all .3s linear;
}

section.product-details .related-product .card:hover .product-img img {
    transform: scale(1.2);
    transition: all .3s linear;
} 

section.product-details .related-product .card .cart-icon button.btn {
    background: #1667b1;
    color: #fff;
    border-radius: 50%;
}

section.product-details .related-product .card .cart-icon li {
    margin: 10px 0;
}

section.product-details .related-product .card .cart-icon button.btn:hover {
    background: transparent;
    border: 1px solid #1667b1;
    color: #444;
    transition: all .3s linear;
}

section.product-details .related-product .card .product-info {
    text-align: center;
    padding: 20px 0;
}

section.product-details .related-product .card .product-info a {
    color: #444;
}

section.product-details .related-product .card .product-info h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.product-details .related-product .card .product-info p {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
}

/* shop page design */
section.our-shop {
    padding: 100px 0;
    background: #e7e7e73b;
}

section.our-shop .badge {
    background: #1667b1;
    font-size: 14px;
    color: #ffff;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
}


section.our-shop .card .cart-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
}

section.our-shop .card:hover .cart-icon{
    right: 10px;
    visibility: visible;
    opacity: 1;
    transition: all .3s linear;
}

section.our-shop .card:hover .product-img img {
    transform: scale(1.2);
    transition: all .3s linear;
} 

section.our-shop .card .cart-icon button.btn {
    background: #1667b1;
    color: #fff;
    border-radius: 50%;
}

section.our-shop .card .cart-icon li {
    margin: 10px 0;
}

section.our-shop .card .cart-icon button.btn:hover {
    background: transparent;
    border: 1px solid #1667b1;
    color: #444;
    transition: all .3s linear;
}

section.our-shop .card .product-info a {
    color: #444;
}

section.our-shop .card .product-info h4 {
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.our-shop .card .product-info p {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
}

section.our-shop .filter {
    text-align: right;
}

section.our-shop .filter select {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

section.our-shop .pagination {
    justify-content: center;
    margin-top: 35px;
}

section.our-shop .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

section.our-shop .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.our-shop .pagination ul li a.btn {
    border: 0;
    padding: 0;
    font-weight: 500;
}

section.our-shop .pagination ul li:hover {
    background: #1667b1;
    transition: all .3s linear;
}

section.our-shop .pagination ul li:hover a {
    color: #fff;
}

/* wishlist page design */

section.wishlist {
    padding: 100px 0;
    background: #e7e7e73b;
}

section.wishlist table.table thead tr th:first-child {
    margin: 0;
    border-radius: 20px 0 0 !important;
}

section.wishlist table.table thead tr th:last-child {
    margin: 0;
    border-radius: 0 20px 0 0 !important;
}

section.wishlist table.table tfoot tr th {
    margin: 0;
    border-radius: 0px 0px 20px 20px !important;
}

section.wishlist table.table thead tr th {
    padding: 15px;
    background: #1667b1;
    color: #fff;
}

section.wishlist table.table tbody tr td {
    padding: 15px;
}

section.wishlist table.table tfoot tr th {
    padding: 15px;
    border-bottom: 0px;
}

section.wishlist table.table tfoot tr th .cart-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

section.wishlist table.table tfoot tr th .cart-group .btn{
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}

section.wishlist table.table tfoot tr th .cart-group input {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    max-width: 200px;
}

section.wishlist .social-media ul {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 5px;
}

section.wishlist .social-media {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-direction: row;
}

section.wishlist .social-media h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

section.wishlist .social-media ul li {
    color: #fff;
    width: 30px;
    height: 30px;
    background: #1667b1;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}

section.wishlist .social-media ul li i {
    color: #fff;
}

section.wishlist table.table tbody tr td i.ri-close-line {
    width: 25px;
    height: 25px;
    background: #1667b1;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    color: #fff;
}

section.wishlist table.table tbody tr td a {
    color: #1667b1;
    font-weight: 600;
}

section.wishlist table.table tbody tr td {
    color: #444;
}

section.wishlist table.table tbody tr td img {
    width: 60px;
}

section.wishlist table.table tbody tr td .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: row;
}

section.wishlist table.table tbody tr td .form-group input.btn {
    background: #1667b1;
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 2px;
    color: #fff;
}

section.wishlist table.table tbody tr td .form-group input.quentity {
    padding: 6px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    max-width: 100px;
}

section.wishlist.cart-page table.table tbody tr:last-child td {
    border-bottom: 0px;
}

section.wishlist.cart-page table.table tbody tr:last-child td:first-child {
    margin: 0;
    border-radius: 0 20px 0  !important;
}

section.wishlist.cart-page table.table tbody tr:last-child td:last-child {
    margin: 0;
    border-radius: 0 0 20px 0 !important;
}

section.wishlist.cart-page .cart-calculation {
    background: #fff;
    border-radius: 20px;
}

section.wishlist.cart-page .cart-calculation h4 {
    padding: 20px;
    text-align: center;
    font-family: "Rowdies", sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #444;
}

section.wishlist.cart-page .cart-calculation .cupon {
    padding: 0 20px;
}

section.wishlist.cart-page .cart-calculation .cupon input {
    padding: 10px 15px;
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 5px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    max-width: 200px;
}

section.wishlist.cart-page .cart-calculation ul {
    padding: 0 20px;
}

section.wishlist.cart-page .cart-calculation button.btn {
    padding: 20px;
    display: inline-block;
}

section.wishlist.cart-page .cart-calculation ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin: 15px 0;
}

section.wishlist.cart-page .cart-calculation .cupon button#add-cupon {
    padding: 10px 20px;
    background: #1667b1;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    margin: 0px;
}

section.wishlist.cart-page .cart-calculation button.btn {
    padding: 10px 20px;
    display: inline-block;
    background: #1667b1;
    color: #fff;
    margin: 20px;
}

/* checkout page design */

.checkout-page {
    padding: 100px 0;
    background: #17a6e03b;
}

section.checkout-page .checkout-info h4 {
    text-align: left;
    font-family: "Rowdies", sans-serif;
    font-size: 30px;
    line-height: normal;
    color: #444;
}

section.checkout-page .checkout-info p {
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: normal;
}

section.checkout-page .checkout-info .form-gorup {
    padding: 10px 15px;
}

section.checkout-page .checkout-info .form-gorup label {
    display: block;
    margin-bottom: 5px;
    color: #444;
}

section.checkout-page .checkout-info .form-gorup input {
    padding: 15px;
    color: #919191;
    font-size: 14px;
    line-height: normal;
    border: 0;
    border-radius: 5px;
}

section.checkout-page .checkout-info .form-gorup textarea {
    padding: 15px;
    color: #919191;
    font-size: 14px;
    line-height: normal;
    border: 0;
    border-radius: 5px;
}

section.checkout-page .checkout-info .form-gorup select {
    padding: 15px;
    color: #444;
    font-size: 14px;
    line-height: normal;
    border: 0;
    border-radius: 5px;
}

section.checkout-page .checkout-info fieldset legend {
    padding: 0;
}

section.checkout-page .checkout-info fieldset {
    margin: 30px 0;
    border-left: 1px solid #919191;
    padding-left: 10px;
}

section.checkout-page .checkout-info .place-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
}

section.checkout-page .checkout-info .place-order .btn {
    padding: 10px 20px;
    display: inline-block;
    background: #1667b1;
    color: #fff;
    margin: 20px;
}

section.checkout-page .order-summary ul li .product {
    display: flex;
    align-items: start;
    gap: 10px;
    flex-direction: row;
    justify-content: start;
}

section.checkout-page .order-summary ul li .product .content {
    width: 100%;
}

section.checkout-page .order-summary ul li .product .image {
    width: 120px;
    position: relative;
}

section.checkout-page .order-summary ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
}

section.checkout-page .order-summary h4 {
    text-align: left;
    font-family: "Rowdies", sans-serif;
    font-size: 30px;
    line-height: normal;
    color: #444;
    padding-bottom: 20px;
}

section.checkout-page .order-summary ul li .product .content p {
    margin: 0;
    font-size: 16px;
    line-height: normal;
}

section.checkout-page .order-summary ul li .product .content h5 {
    font-family: "Rowdies", sans-serif;
    font-size: 16px;
    line-height: normal;
    color: #444;
    margin: 5px 0;
}

section.checkout-page .order-summary ul li .product .image .badge {
    border: 1px solid #1667b1;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #444;
    padding: 0;
}

section.checkout-page .checkout-info fieldset:first-child {
    margin-top: 0px;
}

section.checkout-page .order-summary {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

/* forgot password */

section.login-form.forgot-password form {
    max-width: 50%;
    margin: 0 auto;
}

/* invoice page design */
section.invoice {
    padding: 100px 0;
    background: #c9eaf8;
}

section.invoice .card.print-invoice {
    border: 2px solid #1667b1;
    border-style: dashed;
    border-radius: 10px;
    padding: 25px;
}

section.invoice .card.print-invoice .invoice-title {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

section.invoice .card.print-invoice .invoice-title h2 {
    font-weight: 700;
    color: #444;
    font-family: "Rowdies", sans-serif;
    font-size: 40px;
    line-height: normal;
}

section.invoice .card.print-invoice .invoice-title .company-slogan h6 {
    font-weight: 700;
    color: #444;
    font-family: "Rowdies", sans-serif;
    font-size: 20px;
    line-height: normal;
}

section.invoice .card.print-invoice .invoice-title .company-slogan p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #444;
}

section.invoice .card.print-invoice .invoice-title .company-slogan {
    text-align: right;
}

section.invoice .card.print-invoice .invoice-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

section.invoice .card.print-invoice .invoice-details h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #444;
}

section.invoice .card.print-invoice .invoice-details h4 {
    font-weight: 700;
    color: #444;
    font-family: "Rowdies", sans-serif;
    font-size: 22px;
    line-height: normal;
}

section.invoice .card.print-invoice ul li {
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    color: #444;
}

section.invoice .card.print-invoice .product-details {
    margin: 25px 0;
}

section.invoice .card.print-invoice .product-details table tr td {
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    color: #444;
    border: 1px solid #1667b18f;
}

section.invoice .card.print-invoice .product-details table tr th {
    font-weight: 700;
    color: #444;
    font-family: "Rowdies", sans-serif;
    font-size: 16px;
    line-height: normal;
    background: #c9eaf8;
    border: 1px solid #1667b18f;
}

section.invoice .card.print-invoice .product-details table tr th.invoice-subtotal {
    text-align: right;
}

section.invoice .card.print-invoice .product-details table tr th.invoice-subtotal ul {
    padding-bottom: 25px;
}

section.invoice .card.print-invoice .product-details table tr td.text-right {
    text-align: right;
}

section.invoice .card.print-invoice .product-details table tr th.text-right {
    text-align: right;
}

section.invoice .card.print-invoice .massage-for-customer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

section.invoice .card.print-invoice .massage-for-customer .signature {
    text-align: right;
}

section.invoice .card.print-invoice .massage-for-customer h4 {
    font-weight: 700;
    color: #444;
    font-family: "Rowdies", sans-serif;
    font-size: 16px;
    line-height: normal;
    margin: 0;
}

section.invoice .card.print-invoice .massage-for-customer p {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #444;
}

section.invoice .print-button {
    margin-top: 20px;
    text-align: right;
}

section.invoice .print-button button.print-btn.btn {
    background: #1667b1;
    padding: 12px 25px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border-radius: 25px;
    border: 2px solid #1667b1;
}
