/*
@File: Ketan Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Default btn CSS
** - Section Title CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Main Banner Area CSS
** - Who We Are Area CSS
** - Class Area CSS
** - Value Area CSS
** - Teacher Area CSS
** - Testimonials Area CSS
** - Blog Area CSS
** - Activities Area CSS
** - Facilities Area CSS
** - Partner Area CSS
** - Fun Facts Area CSS
** - Choose Area CSS
** - Gallery Area CSS
** - Quote Area CSS
** - Tour Area CSS
** - Newsletter Area CSS
** - Support Area CSS
** - Overview Area CSS
** - Page Banner CSS
** - Pricing Area CSS
** - Apply Area CSS
** - Enrollment Area CSS
** - Timetable Area CSS
** - FAQ Area CSS
** - Login Area CSS
** - Register Area CSS
** - 404 Error Area CSS
** - Terms of service Area CSS
** - Privacy policy Area CSS
** - Coming Soon Area CSS
** - Contact Area CSS
** - Teacher Details  Area CSS
** - Event Details  Area CSS
** - Class Details  Area CSS
** - Pagination Area CSS
** - Blog Details Area CSS
** - Widget Sidebar CSS
** - Footer Area CSS
** - Copy Right Area CSS
** - Go Top CSS

*/

/*================================================
Default CSS
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

$main-font-family: 'Catamaran', sans-serif;
$optional-font-family: 'Sacramento', cursive;
$other-font-family: 'Roboto', sans-serif;
$main-color: #ea512e;
$optional-color: #f5890d;
$white-color: #ffffff;
$black-color: #1b0238;
$paragraph-color: #6b6b84;
$font-size: 16px;
$transition: .5s;

body {
    padding: 0;
    margin: 0;
    font-family: $main-font-family;
    font-size: $font-size;
}
a {
    text-decoration: none;
    transition: $transition;
    color: $black-color;

    &:hover, &:focus {
        color: $main-color;
        text-decoration: none;
    }
}
button {
    outline: 0 !important;
}
p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: $paragraph-color;
    font-weight: 400;
    font-family: $other-font-family;
    font-size: $font-size;

    &:last-child {
        margin-bottom: 0;
    }
}
i {
    line-height: normal;
}
.d-table {
    width: 100%;
    height: 100%;

    &-cell {
        vertical-align: middle;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: $black-color;
    font-family: $main-font-family;
    font-weight: bold;

    &:last-child {
        margin-bottom: 0;
    }
}

/*================================================
Default btn CSS
=================================================*/
.default-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: $main-color;
    color: $white-color !important;
    border-radius: 10px;
    font-size: $font-size;
    font-weight: 500;
    transition: $transition;
    position: relative;
    z-index: 1;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 0%;
        background-color: $optional-color;
        z-index: -1;
        transition: $transition;
        border-radius: 10px;
    }

    &:hover {
        &::before {
            height: 100%;
        }
        color: $white-color;
    }
}
.optional-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: $optional-color;
    color: $white-color !important;
    border-radius: 10px;
    font-size: $font-size;
    font-weight: 500;
    transition: $transition;
    position: relative;
    z-index: 1;
    margin-left: 15px;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0%;
        background-color: $main-color;
        z-index: -1;
        transition: $transition;
        border-radius: 10px;
    }

    &:hover {
        &::before {
            height: 100%;
        }
        color: $white-color;
    }
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
    text-align: center;
    margin-bottom: 45px;
    span {
        font-size: 20px;
        color: $main-color;
        font-weight: 600;
        font-family: $optional-font-family;
    }
    h2 {
        font-size: 45px;
        margin-top: 15px;
        margin-bottom: 0;
    }
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: $main-color;
    z-index: 999999;
    height: 100%;
    overflow: hidden;

    .loader {
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        top: 45%;
        transform: translateY(-45%);
        height: 50px;
        width: 180px;
        margin-left: auto;
        margin-right: auto;

        .wrapper {
            height: 50px;
            width: 180px;
        }
        .circle {
            border-radius: 50%;
            border: 3px solid $white-color;
            float: left;
            height: 50px;
            margin: 0 5px;
            width: 50px;
        }
        .circle-1 {
            animation: move 1s ease-in-out infinite;
        }
        .circle-1a {
            animation: fade 1s ease-in-out infinite;
        }
        .circle-2 {
            animation: move 1s ease-in-out infinite;
        }
        .circle-1a {
            margin-left: -55px;
            opacity: 0;
        }
        .circle-3 {
            animation: circle-3 1s ease-in-out infinite;
            opacity: 1;
        }
    }
}
.preloader-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    text-align: center;
    transition: .9s;

    .loader {
        position: absolute;
        top: 43%;
        left: 0;
        right: 0;
        transform: translateY(-43%);
        text-align: center;
        margin: 0 auto;
        width: 50px;
        height: 50px;
        transition: $transition;
    }
    .box {
        width: 100%;
        height: 100%;
        background: $white-color;
        animation: animate .5s linear infinite;
        position: absolute;
        top: 0;
        left: 0;
    }
    .shadow { 
        width: 100%;
        height: 5px;
        background: #000000;
        opacity: 0.1;
        position: absolute;
        top: 59px;
        left: 0;
        border-radius: 50%;
        animation: shadow .5s linear infinite;
    }
    &::before, &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 60%;
        height: 100%;
        z-index: -1;
        background: $main-color;
        transition: .9s;
    }
    &::after {
        left: auto;
        right: 0;
    }
    &.preloader-deactivate {
        visibility: hidden;

        &::after, &::before {
            width: 0;
        }
        .loader {
            opacity: 0;
            visibility: hidden;
        }
    }
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(60px);
    }
}
@keyframes circle-3 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes loader {
    0% {
        left: -100px
    }
    100% {
        left: 110%;
    }
}
@keyframes animate {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        transform: translateY(18px) scale(1,.9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}
@keyframes shadow {
    50% {
        transform: scale(1.2,1);
    }
}

/*================================================
Navbar Area CSS
=================================================*/
.main-responsive-nav {
    display: none;
}
.main-navbar {
    padding-top: 0;
    .navbar {
        transition: $transition;
        padding: 0;

        ul {
            padding-left: 0;
            list-style-type: none;
            margin-bottom: 0;
        }
        .navbar-nav {
            margin: auto;

            .nav-item {
                position: relative;
                margin-left: 15px;
                margin-right: 15px;

                a {
                    color: $black-color;
                    font-size: $font-size;
                    font-weight: 600;
                    padding-left: 0;
                    padding-right: 0;
                    padding-top: 25px;
                    padding-bottom: 25px;
                    font-family: $other-font-family;

                    i {
                        font-size: 20px;
                        position: relative;
                        top: 4px;
                        display: inline-block;
                        margin-left: -5px;
                        margin-right: -2px;
                    }
                    &:hover, &:focus, &.active {
                        color: $main-color;
                    }
                }
                &:last-child {
                    margin-right: 0;
                }
                &:first-child {
                    margin-left: 0;
                }
                &:hover, &.active {
                    a {
                        color: $main-color;
                    }
                }
                .dropdown-menu {
                    border: none;
                    top: 70px;
                    left: 0;
                    z-index: 99;
                    opacity: 0;
                    width: 280px;
                    display: block;
                    border-radius: 0;
                    padding: 10px 0;
                    margin-top: 15px;
                    position: absolute;
                    visibility: hidden;
                    background: $white-color;
                    transition: all 0.4s ease-in-out;
                    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);

                    li {
                        margin: 0;
                        
                        a {
                            padding: 10px 20px;
                            position: relative;
                            display: block;
                            color: $black-color;
                            font-size: $font-size;
                            font-weight: 600;
                            i {
                                margin: 0;
                                position: absolute;
                                top: 50%;
                                font-size: 20px;
                                transform: translateY(-50%);
                                right: 15px;
                            }
                            &:hover, &:focus, &.active {
                                color: $main-color;
                            }
                        }
                        .dropdown-menu {
                            top: 0;
                            opacity: 0;
                            right: -280px;
                            left: auto;
                            margin-top: 15px;
                            visibility: hidden;
                            
                            li {
                                a {
                                    color: $black-color;
                                    
                                    &:hover, &:focus, &.active {
                                        color: $main-color;
                                    }
                                }
                                .dropdown-menu {
                                    top: 0;
                                    opacity: 0;
                                    left: 280px;
                                    visibility: hidden;
        
                                    li {
                                        a {
                                            color: $black-color;
        
                                            &:hover, &:focus, &.active {
                                                color: $main-color;
                                            }
                                        }
                                        .dropdown-menu {
                                            top: 0;
                                            opacity: 0;
                                            left: -280px;
                                            visibility: hidden;
                
                                            li {
                                                a {
                                                    color: $black-color;
                
                                                    &:hover, &:focus, &.active {
                                                        color: $main-color;
                                                    }
                                                }
                                                .dropdown-menu {
                                                    top: 0;
                                                    opacity: 0;
                                                    left: 280px;
                                                    visibility: hidden;
                        
                                                    li {
                                                        a {
                                                            color: $black-color;
                
                                                            &:hover, &:focus, &.active {
                                                                color: $main-color;
                                                            }
                                                        }
                                                        .dropdown-menu {
                                                            top: 0;
                                                            opacity: 0;
                                                            left: -280px;
                                                            visibility: hidden;
                                
                                                            li {
                                                                a {
                                                                    color: $black-color;
                
                                                                    &:hover, &:focus, &.active {
                                                                        color: $main-color;
                                                                    }
                                                                }
                                                                .dropdown-menu {
                                                                    top: 0;
                                                                    opacity: 0;
                                                                    left: 280px;
                                                                    visibility: hidden;
                                        
                                                                    li {
                                                                        a {
                                                                            color: $black-color;
                
                                                                            &:hover, &:focus, &.active {
                                                                                color: $main-color;
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                                &.active {
                                                                    a {
                                                                        color: $main-color;
                                                                    }
                                                                }
                                                                &:hover {
                                                                    .dropdown-menu {
                                                                        opacity: 1;
                                                                        visibility: visible;
                                                                    }
                                                                }
                                                            }
                                                        }
                                                        &.active {
                                                            a {
                                                                color: $main-color;
                                                            }
                                                        }
                                                        &:hover {
                                                            .dropdown-menu {
                                                                opacity: 1;
                                                                visibility: visible;
                                                            }
                                                        }
                                                    }
                                                }
                                                &.active {
                                                    a {
                                                        color: $main-color;
                                                    }
                                                }
                                                &:hover {
                                                    .dropdown-menu {
                                                        opacity: 1;
                                                        visibility: visible;
                                                    }
                                                }
                                            }
                                        }
                                        &.active {
                                            a {
                                                color: $main-color;
                                            }
                                        }
                                        &:hover {
                                            .dropdown-menu {
                                                opacity: 1;
                                                visibility: visible;
                                            }
                                        }
                                    }
                                }
                                &.active {
                                    a {
                                        color: $main-color;
                                    }
                                }
                                &:hover {
                                    .dropdown-menu {
                                        opacity: 1;
                                        visibility: visible;
                                    }
                                }
                            }
                        }
                        &.active {
                            a {
                                color: $main-color;
                            }
                        }
                        &:hover {
                            .dropdown-menu {
                                opacity: 1;
                                visibility: visible;
                                margin-top: 0;
                            }
                        }
                    }
                }
                &:hover {
                    .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        margin-top: 0;
                    }
                }
            }
        }
        .others-options {
            .option-item {
                margin-right: 15px;

                &:last-child {
                    margin-right: 0;
                }
                .language-switcher {
                    position: relative;
            
                    .dropdown-toggle {
                        padding: 0;
                        border: none;
                        background-color: transparent;
                        color: $black-color;
                        cursor: pointer;
            
                        &::after {
                            display: none;
                        }
                        img {
                            width: 30px;
                            height: 30px;
                            border-radius: 50px;
                        }
                        span {
                            display: inline-block;
                            font-size: $font-size;
                            font-weight: 600;
                            font-family: $other-font-family;
            
                            i {
                                position: relative;
                                font-size: 20px;
                                top: 4px;
                            }
                        }
                    }
                    .dropdown-menu {
                        padding: 15px;
                        float: unset;
                        border: none;
                        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
                        border-radius: 0;
                        display: block;
                        margin-top: 12px;
                        opacity: 0;
                        visibility: visible;
                        transition: $transition;
                        transform: scaleX(0);
                        left: 0 !important;
                        right: auto !important;
            
                        .dropdown-item {
                            padding: 0;
                            color: $black-color;
                            margin-bottom: 10px;
                            font-weight: 600;
            
                            &::before {
                                display: none;
                            }
                            &:last-child {
                                margin-bottom: 0;
                            }
                            img {
                                width: 30px;
                                height: 30px;
                                border-radius: 50px;
                            }
                            span {
                                display: inline-block;
                                margin-left: 8px;
                                font-size: 15px;
                                font-weight: 500;
                                margin-top: 4px;
                            }
                            &:hover, &:focus {
                                background-color: transparent !important;
                            }
                            &:active, &.active {
                                color: $black-color;
                                background-color: transparent;
                            }
                        }
                        &.show {
                            opacity: 1;
                            visibility: visible;
                            transform: scaleX(1);
                        }
                    }
                }
                .default-btn {
                    display: block;
                }
            }
        }
    }
}
.navbar-area {
    &.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
        background-color: $white-color !important;
        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    }
}
.others-option-for-responsive {
    display: none;
    .dot-menu {
        padding: 0 10px;
        height: 30px;
        cursor: pointer;
        z-index: 9991;
        position: absolute;
        right: 60px;
        top: -28px;

        .inner {
            display: flex;
            align-items: center;
            height: 30px;

            .circle {
                height: 5px;
                width: 5px;
                border-radius: 100%;
                margin: 0 2px;
                transition: $transition;
                background-color: $black-color;
            }
        }
        &:hover {
            .inner {
                .circle {
                    background-color: $main-color;
                }
            }
        }
    }
    .container {
        position: relative;
        .container {
            position: absolute;
            right: 0;
            top: 10px;
            max-width: 260px;
            background-color: $white-color;
            box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
            margin-left: auto;
            opacity: 0;
            visibility: hidden;
            transition: $transition;
            transform: scaleX(0);
            z-index: 2;
            padding-left: 15px;
            padding-right: 15px;
            
            &.active {
                opacity: 1;
                visibility: visible;
                transform: scaleX(1);
            }
        }
    }
    .option-inner {
        .others-options {
            .option-item {
                margin-right: 15px;

                &:last-child {
                    margin-right: 0;
                }
                .language-switcher {
                    position: relative;
            
                    .dropdown-toggle {
                        padding: 0;
                        border: none;
                        background-color: transparent;
                        color: $black-color;
                        cursor: pointer;
            
                        &::after {
                            display: none;
                        }
                        img {
                            width: 30px;
                            height: 30px;
                            border-radius: 50px;
                        }
                        span {
                            display: inline-block;
                            font-size: $font-size;
                            font-weight: 600;
                            font-family: $other-font-family;
            
                            i {
                                position: relative;
                                font-size: 20px;
                                top: 4px;
                            }
                        }
                    }
                    .dropdown-menu {
                        padding: 15px;
                        float: unset;
                        border: none;
                        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
                        border-radius: 0;
                        display: block;
                        margin-top: 12px;
                        opacity: 0;
                        visibility: visible;
                        transition: $transition;
                        transform: scaleX(0);
                        left: 0 !important;
                        right: auto !important;
            
                        .dropdown-item {
                            padding: 0;
                            color: $black-color;
                            margin-bottom: 10px;
                            font-weight: 600;
            
                            &::before {
                                display: none;
                            }
                            &:last-child {
                                margin-bottom: 0;
                            }
                            img {
                                width: 30px;
                                height: 30px;
                                border-radius: 50px;
                            }
                            span {
                                display: inline-block;
                                margin-left: 8px;
                                font-size: 15px;
                                font-weight: 500;
                                margin-top: 4px;
                            }
                            &:hover, &:focus {
                                background-color: transparent !important;
                            }
                            &:active, &.active {
                                color: $black-color;
                                background-color: transparent;
                            }
                        }
                        &.show {
                            opacity: 1;
                            visibility: visible;
                            transform: scaleX(1);
                        }
                    }
                }
                .default-btn {
                    display: block;
                }
            }
        }
    }
}
// Mobile and iPad Navbar
@media only screen and (max-width: 1199px) {
    .main-responsive-nav {
        display: block; 
        .main-responsive-menu {
            position: relative;

            &.mean-container {
                .mean-nav {
                    ul {
                        font-size: 15px;

                        li {
                            a {
                                &.active {
                                    color: $optional-color;
                                }
                                i {
                                    display: none;
                                }
                            }
                            li {
                                a {
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                }
                .others-options {
                    display: none !important;
                }
                .navbar-nav {
                    overflow-y: scroll;
                    height: 300px;
                    background-color: $white-color;
                    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
                }
            }
        }
        .mean-container {
            a {
                &.meanmenu-reveal {
                    color: $black-color;

                    span {
                        background: $black-color;
                        position: relative;
                    }
                }
            }
        }
        .logo {
            position: relative;
            img {
                max-width: 100px !important;
            }
        }
    }
    .navbar-area {
        background-color: $white-color;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .main-navbar {
        display: none;
    }
    .others-option-for-responsive {
        display: block;
    }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.main-banner-item {
    background-image: url(../../assets/img/main-banner/main-banner-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 700px;

    .container-fluid {
        padding-right: 0;
    }
    &.banner-item-two {
        background-image: unset;
        background-color: #f5edec;
    }
    &.banner-item-three {
        background-image: url(../../assets/img/main-banner/main-banner-bg-2.jpg);
        background-attachment: fixed;

        .main-banner-content {
            max-width: 630px;
            margin: auto;
            text-align: center;
        
            span {
                color: $white-color;
            }
            h1 {
                color: $white-color;
            }
            p {
                color: $white-color;
            }
        }
    }
    &.banner-item-four {
        background-image: unset;
        background-color: #73548f;

        .main-banner-content {
            h1 {
                margin-top: 0;
                color: $white-color;
            }
            p {
                color: $white-color;
            }
        }
    }
}
.main-banner-content {
    max-width: 630px;
    margin-left: auto;

    span {
        font-size: $font-size;
        color: $main-color;
        font-weight: 600;
        font-family: $other-font-family;
    }
    h1 {
        font-size: 60px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    p {
        margin-bottom: 0;
    }
    .banner-btn {
        margin-top: 25px;
    }
}
.main-banner-image {
    img {
        width: auto !important;
        margin: auto;
    }
}
.main-banner-image-wrap {
    position: relative;
    text-align: center;
    z-index: 1;

    .banner-image-wrap-shape {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
        left: 0;
        right: 0;
    }
    img {
        width: auto !important;
        margin: auto;
    }
}
.main-banner-shape {
    .banner-bg-shape {
        position: absolute;
        bottom: -75px;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .banner-bg-shape-2 {
        position: absolute;
        top: -75px;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .shape-1 {
        position: absolute;
        top: 25px;
        transform: translateY(-25px);
        left: 25px;
        transform: translateX(-25px);
        z-index: 1;
        max-width: 100px;
        animation: moveLeftBounce 3s linear infinite;
    }
    .shape-2 {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        max-width: 100px;
        animation: moveLeftBounce 3s linear infinite;
    }
    .shape-3 {
        position: absolute;
        bottom: 100px;
        left: 30px;
        z-index: 1;
        max-width: 100px;
        animation: moveLeftBounce 3s linear infinite;
    }
    .shape-4 {
        position: absolute;
        bottom: 30px;
        transform: translateY(-30px);
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        max-width: 100px;
        animation: moveBounce 5s linear infinite;
    }
    .shape-5 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        max-width: 210px;
    }
    .shape-6 {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        max-width: 230px;
    }
}
.banner-child {
    .child-1 {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        animation: moveBounce 5s linear infinite;
    }
    .child-2 {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
        animation: moveBounce 5s linear infinite;
    }
}
@keyframes rotateMe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}
@keyframes moveScale {
    0% {
        transform: scale(0.6);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(0.6);
    }
}
@keyframes moveLeftBounce {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes moveBounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes border-transform-default {
    0%, to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

// NEW HOME SLIDES JS
.home-slides {
    &.owl-theme {
        .owl-nav {
            margin-top: 0;
            transition: $transition;
            opacity: 0;
            visibility: hidden;
            line-height: .01;

            [class*=owl-] {
                margin: 0;
                position: absolute;
                left: 20px;
                top: 40%;
                transform: translateY(-40%);
                padding: 0;
                background: $main-color;
                color: $white-color;
                border-radius: 50px;
                transition: $transition;
                width: 50px;
                height: 50px;
                line-height: 65px;
                text-align: center;
                font-size: 45px;

                &.owl-next {
                    left: auto;
                    right: 20px;
                }
                &:hover {
                    color: $white-color;
                    background-color: $optional-color;
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

/*-- Video Banner --*/
.main-banner-with-video {
    overflow: hidden;
    position: relative;

    .background-video {
        position: absolute;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        overflow: hidden;
        z-index: -1;
    }
}
.video-banner-item {
    position: relative;
    z-index: 1;
    height: 100vh;
    overflow: hidden;

    &:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: $black-color;
        z-index: -1;
        opacity: 0.8;
    }
    .main-banner-content {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;

        h1 {
            color: $white-color;
        }
        p {
            color: $white-color;
        }
    }
}


/*================================================
Who We Are Area CSS
=================================================*/
.who-we-are {
    position: relative;
    z-index: 1;
}
.who-we-are-image {
    text-align: center;
    position: relative;
    z-index: 1;

    img {
        border-radius: 50%;
        padding: 20px;
    }
    &::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: $main-color;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        border-radius: 50%;
        transition: $transition;
        animation: border-transform-default 10s linear infinite alternate forwards;
    }
    &::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: $optional-color;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        border-radius: 50%;
        transition: $transition;
        animation: border-transform-default 50s linear infinite alternate forwards;
    }
}
.who-we-are-content {
    span {
        font-size: 20px;
        color: $main-color;
        font-weight: 600;
        font-family: $optional-font-family;
    }
    h3 {
        font-size: 45px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    p {
        margin-bottom: 0;
    }
    .who-we-are-list {
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;

        li {
            list-style-type: none;
            position: relative;
            font-size: $font-size;
            font-weight: 600;
            color: $black-color;
            flex: 0 0 50%;
            max-width: 50%;
            margin-top: 20px;
            padding-left: 40px;
            padding-top: 5px;

            span {
                font-family: $other-font-family;
                display: inline-block;
                height: 30px;
                width: 30px;
                line-height: 30px;
                font-size: $font-size;
                color: $white-color;
                background-color: $main-color;
                border-radius: 50px;
                text-align: center;
                position: absolute;
                left: 0;
                top: 0;
                transition: $transition;
            }
            &:hover {
                span {
                    background-color: $optional-color;
                }
            }
        }
    }
    .who-we-are-btn {
        margin-top: 30px;
    }
}
.who-we-are-shape {
    position: absolute;
    right: 5%;
    transform: translateX(-5%);
    top: 35px;
    max-width: 120px;
    animation: moveLeftBounce 3s linear infinite;
}

/*================================================
Class Area CSS
=================================================*/
.class-area {
    position: relative;
    z-index: 1;

    &.bg-fdf6ed {
        background-color: #fdf6ed;
    }
}
.single-class {
    margin-bottom: 30px;

    .class-image {
        overflow: hidden;
        img {
            transition: $transition;
            border-radius: 5px 5px 0 0;
        }
    }
    .class-content {
        background-color: $white-color;
        padding: 45px 30px 30px;
        position: relative;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);

        .price {
            position: absolute;
            display: inline-block;
            padding: 10px;
            background-color: $main-color;
            right: 0;
            top: 0;
            font-size: 20px;
            font-weight: bold;
            color: $white-color;
            line-height: 1;
            border-radius: 0 0 0 10px;
            transition: $transition;
        }
        h3 {
            font-size: 25px;
            margin-bottom: 15px;

            a {
                color: $black-color;
            }
        }
        p {
            margin-bottom: 0;
        }
        .class-list {
            padding-left: 0;
            margin-bottom: 0;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed $main-color;

            li {
                list-style-type: none;
                display: inline-block;
                font-size: 15px;
                font-weight: 500;
                font-family: $other-font-family;
                margin-right: 15px;

                &:last-child {
                    margin-right: 0;
                }
                span {
                    color: $main-color;
                    font-size: 15px;
                    font-weight: 500;
                }
            }
        }
        .class-btn {
            margin-top: 25px;

            .default-btn {
                padding: 10px 30px;
            }
        }
    }
    &:hover {
        .class-image {
            img {
                transform: rotate(2deg) scale(1.2);
            }
        }
        .class-content {
            .price {
                background-color: $optional-color;
            }
            h3 {
                a {
                    color: $main-color;
                }
            }
        }
    }
}
.class-shape {
    .shape-1 {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
    }
    .shape-2 {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
}

/*================================================
Value Area CSS
=================================================*/
.value-area {
    position: relative;
    z-index: 1;
}
.value-item {
    .value-content {
        span {
            font-size: 20px;
            font-weight: 600;
            font-family: $optional-font-family;
            color: $main-color;
        }
        h3 {
            font-size: 45px;
            margin-top: 15px;
            margin-bottom: 0;
        }
    }
    .value-inner-content {
        position: relative;
        padding-left: 88px;
        margin-top: 30px;

        .number {
            span {
                display: inline-block;
                height: 60px;
                width: 60px;
                line-height: 60px;
                background-color: #d3f5fe;
                text-align: center;
                font-size: 25px;
                color: $black-color;
                border-radius: 50px;
                position: absolute;
                left: 0;
                top: 0;
                transition: $transition;

                &::before {
                    position: absolute;
                    content: "";
                    height: 70px;
                    width: 70px;
                    line-height: 70px;
                    border: 1px solid #d3f5fe;
                    border-radius: 50px;
                    top: -5px;
                    left: -5px;
                    right: 0;
                    transition: $transition;
                }
            }
            .bg-2 {
                background-color: #fce0ad;

                &::before {
                    border: 2px solid #fce0ad;
                }
            }
            .bg-3 {
                background-color: #fbc9d5;
                
                &::before {
                    border: 2px solid #fbc9d5;
                }
            }
        }
        h4 {
            font-size: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 0;
        }
        &:hover {
            .number {
                span {
                    background-color: $main-color;
                    color: $white-color;

                    &::before {
                        border: 1px solid $main-color;
                    }
                }
            }
        }
    }
}
.value-shape {
    .shape-1 {
        position: absolute;
        top: 30px;
        left: 20px;
        z-index: -1;
    }
    .shape-2 {
        position: absolute;
        left: 20px;
        z-index: -1;
        bottom: 30px;
    }
    .shape-3 {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }
}
/*================================================
Teacher Area CSS
=================================================*/
.teacher-area {
    &.bg-ffffff {
        background-image: url(../../assets/img/teacher-bg.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .container-fluid {
        max-width: 1920px;
    }
}
.single-teacher {
    margin-bottom: 30px;
    text-align: center;

    .image {
        position: relative;
        transition: $transition;
        z-index: 1;
        padding: 5px;

        img {
            border-radius: 50%;
        }
        &::before {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            background-color: $main-color;
            left: 0;
            right: 0;
            top: 0;
            z-index: -1;
            border-radius: 50%;
            transition: $transition;
            animation: border-transform-default 30s linear infinite alternate forwards;
        }
        .social {
            padding-left: 0;
            list-style-type: none;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 15px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0;

            li {
                display: inline-block;
                transform: translateY(30px);
                transition: all 0.3s ease-in-out 0s;
                opacity: 0;
                visibility: hidden;
                margin: 0 2px;
                a {
                    display: block;
                    width: 33px;
                    height: 33px;
                    background-color: $main-color;
                    text-align: center;
                    position: relative;
                    font-size: 20px;
                    color: $white-color;
                    border-radius: 50px;
                    transition: $transition;
                    i {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        margin: auto;
                    }
                    &:hover {
                        color: $white-color;
                        background-color: $optional-color;
                    }
                }
            }
        }
    }
    .content {
        margin-top: 25px;

        h3 {
            margin-bottom: 0;
            font-size: 30px;
        }
        span {
            display: block;
            color: $main-color;
            font-size: $font-size;
            margin-top: 10px;
            font-weight: 600;
        }
    }
    &:hover {
        .image {
            .social {
                li {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}
.single-teacher-box {
    margin-bottom: 30px;
    text-align: center;

    .image {
        position: relative;

        .social {
            padding-left: 0;
            list-style-type: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0;

            li {
                display: inline-block;
                transform: translateY(30px);
                transition: all 0.3s ease-in-out 0s;
                opacity: 0;
                visibility: hidden;
                margin: 0 2px;

                a {
                    display: block;
                    width: 33px;
                    height: 33px;
                    background-color: $main-color;
                    text-align: center;
                    position: relative;
                    font-size: 20px;
                    color: $white-color;
                    border-radius: 50px;
                    transition: $transition;
                    i {
                        position: absolute;
                        left: 0;
                        right: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        margin: auto;
                    }
                    &:hover {
                        color: $white-color;
                        background-color: $optional-color;
                    }
                }
            }
        }
    }
    .content {
        margin-top: 25px;

        h3 {
            margin-bottom: 0;
            font-size: 25px;
        }
        span {
            display: block;
            color: $main-color;
            font-size: $font-size;
            margin-top: 10px;
            font-weight: 600;
        }
    }
    &:hover {
        .image {
            .social {
                li {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}
.single-teacher-content {
    span {
        font-size: $font-size;
        color: $main-color;
        font-weight: 600;
    }
    h3 {
        font-size: 35px;
        margin-top: 15px;
        margin-bottom: 15px;

        a {
            color: $black-color;
        }
    }
    p {
        margin-bottom: 0;
    }
    .teacher-btn {
        margin-top: 25px;
    }
}
.single-teacher-item {
    margin-bottom: 30px;
    text-align: center;

    .image {
        position: relative;

        &::before {
            width: 100%;
            content: '';
            position: absolute;
            height: 100%;
            background-color: #000000;
            left: 0;
            top: 0;
            transition: $transition;
            opacity: 0;
            visibility: hidden;
            border-radius: 15px;
        }
        img {
            border-radius: 15px;
        }
        .content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            right: 0;
            visibility: hidden;
            opacity: 0;
            margin-top: 10px;
            transition: $transition;
    
            h3 {
                margin-bottom: 0;
                font-size: 25px;
                color: $white-color;
            }
            span {
                display: block;
                color: $white-color;
                font-size: $font-size;
                margin-top: 10px;
                font-weight: 600;
            }
            .social {
                padding-left: 0;
                margin-bottom: 0;
                text-align: center;
                margin-top: 15px;

                li {
                    display: inline-block;
                    list-style: none;
                    margin: 0 5px;
                    a {
                        display: block;
                        width: 40px;
                        height: 40px;
                        background-color: $white-color;
                        text-align: center;
                        position: relative;
                        font-size: 20px;
                        color: $main-color;
                        border-radius: 50px;
                        transition: $transition;
                        
                        i {
                            position: absolute;
                            left: 0;
                            right: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            margin: auto;
                        }
                        &:hover {
                            color: $white-color;
                            background-color: $optional-color;
                        }
                    }
                }
            }
        }
    }
    &:hover {
        .image {
            &::before {
                opacity: .70;
                visibility: visible;
            }
        }
        .content {
            visibility: visible;
            opacity: 1;
            margin-top: 0;
        }
    }
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-item {
    .testimonials-item-box {
        text-align: center;
        background-color: #fee9ca;
        padding: 30px;
        border-radius: 50%;

        .icon {
            margin-bottom: 20px;

            i {
                display: inline-block;
                height: 65px;
                width: 65px;
                line-height: 65px;
                background-color: $white-color;
                color: $main-color;
                font-size: 30px;
                border-radius: 50px;
                transition: $transition;
            }
        }
        p {
            margin-bottom: 0;
            font-size: 15px;
            font-style: italic;
        }
        .info-box {
            margin-top: 20px;

            h3 {
                margin-bottom: 0;
                font-size: 25px;
            }
            span {
                display: block;
                color: $main-color;
                font-size: 15px;
                margin-top: 5px;
                font-weight: 600;
            }
        }
        &:hover {
            .icon {
                i {
                    background-color: $main-color;
                    color: $white-color;
                }
            }
        }
    }
    .testimonials-image {
        margin-top: 20px;

        img {
            width: auto;
            margin: auto;
        }
    }
}
.testimonials-slides {
    &.owl-theme {
        .owl-nav {
            margin-top: 0;
            transition: $transition;
            opacity: 0;
            visibility: hidden;
            line-height: .01;

            [class*=owl-] {
                margin: 0;
                position: absolute;
                left: -60px;
                top: 40%;
                transform: translateY(-40%);
                padding: 0;
                background: $main-color;
                color: $white-color;
                border-radius: 50px;
                transition: $transition;
                width: 50px;
                height: 50px;
                line-height: 65px;
                text-align: center;
                font-size: 45px;

                &.owl-next {
                    left: auto;
                    right: -60px;
                }
                &:hover {
                    color: $white-color;
                    background-color: $optional-color;
                }
            }
        }
        &:hover {
            .owl-nav {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}
.testimonials-area {
    &.bg-color {
        background-color: #fef3e6;
    }
}
.feedback-slides {
    .feedback-item {
        .feedback-image {
            position: relative;
            padding: 5px;
            
            img {
                border-radius: 50%;
            }
            &::before {
                position: absolute;
                content: "";
                height: 100%;
                width: 100%;
                background-color: $main-color;
                left: 0;
                right: 0;
                top: 0;
                z-index: -1;
                border-radius: 50%;
                transition: $transition;
                animation: border-transform-default 30s linear infinite alternate forwards;
            }
        }
        .feedback-content {
            p {
                font-size: 24px;
                margin-bottom: 0;
                font-style: italic;
            }
            .feedback-info {
                margin-top: 25px;

                h4 {
                    font-size: 25px;
                    margin-bottom: 12px;
                }
                span {
                    font-size: $font-size;
                    color: $main-color;
                    font-weight: 600;
                }
            }
        }
    }
    &.owl-theme {
        .owl-nav {
            margin-top: 0;
            transition: $transition;
            line-height: .01;
            position: absolute;
            right: 0;
            bottom: 0;

            [class*=owl-] {
                margin: 0;
                padding: 0;
                background: $main-color;
                color: $white-color;
                border-radius: 50px;
                transition: $transition;
                width: 50px;
                height: 50px;
                line-height: 65px;
                text-align: center;
                font-size: 45px;

                &.owl-next {
                    position: relative;
                    left: 15px;
                }
                &:hover {
                    color: $white-color;
                    background-color: $optional-color;
                }
            }
        }
    }
}

/*================================================
Event Area CSS
=================================================*/
.event-area {
    &.bg-ffffff {
        background-image: url(../../assets/img/event/event-bg.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        position: relative;
        z-index: 1;

        &::before {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            background-color: #000000;
            left: 0;
            right: 0;
            top: 0;
            opacity: .30;
            z-index: -1;
        }
    }
    .section-title {
        span {
            color: $white-color;
        }
        h2 {
            color: $white-color;
        }
    }
    &.bg-color {
        .container-fluid {
            max-width: 1450px;
        }
        .event-box-item {
            padding: 35px 15px;
        }
    }
    &.event-item-two {
        .container-fluid {
            max-width: 1450px;
        }
        .section-title {
            span {
                color: $main-color;
            }
            h2 {
                color: $black-color;
            }
        }
        .event-box-item {
            padding: 35px 15px;
            background-color: #fdeee9;
            box-shadow: unset;

            .event-content {
                h3 {
                    font-size: 18px;
                    margin-bottom: 12px;

                    a {
                        display: inline-block;
                        padding: 10px 35px;
                        border-radius: 5px;
                        background-color: #fcded3;
                        color: $main-color;
                    }
                }
                p {
                    margin-bottom: 10px;
                }
                span{
                    color: $main-color;
                    font-size: $font-size;
                    font-weight: 600;
                }
            }
        }
    }
}
.event-box-item {
    background-color: $white-color;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;

    .event-content {
        h3 {
            font-size: 25px;
            margin-bottom: 0;

            a {
                color: $black-color;
            }
        }
        .event-list {
            padding-left: 0;
            margin-bottom: 0;
            margin-top: 20px;

            li {
                list-style-type: none;
                font-size: 18px;
                font-weight: 500;
                position: relative;
                margin-bottom: 12px;
                padding-left: 25px;

                &:last-child {
                    margin-bottom: 0;
                }
                i {
                    position: absolute;
                    left: 0;
                    top: 2px;
                    font-size: 20px;
                    color: $main-color;
                }
            }
        }
    }
    .event-date {
        text-align: center;

        h4 {
            font-size: 80px;
            color: $main-color;
            margin-bottom: 0;
        }
        span {
            font-size: 20px;
            color: $main-color;
            margin-top: 10px;
            font-weight: 500;
        }
    }
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-item {
    margin-bottom: 30px;

    .blog-image {
        overflow: hidden;
        height: 250px;
        max-height: 250px;
        img {
            transition: $transition;
            border-radius: 10px 10px 0 0;
        }
    }
    .blog-content {
        background-color: #fdeee9;
        padding: 30px;
        border-radius: 0 0 10px 10px;

        .post-meta {
            padding-left: 0;
            margin-bottom: 0;

            li {
                list-style-type: none;
                display: inline-block;
                font-size: $font-size;
                font-weight: 500;
                color: #283d5e;
                margin-right: 15px;

                &:last-child {
                    margin-right: 0;
                }
                span {
                    color: $main-color;
                }
                a {
                    color: #283d5e;
                    transition: $transition;
                }
            }
        }
        h3 {
            font-size: 22px;
            margin-top: 15px;
            margin-bottom: 15px;

            a {
                color: $black-color;
            }
        }
        p {
            margin-bottom: 0;
        }
        .blog-btn {
            margin-top: 20px;
        }
    }
    &:hover {
        .blog-image {
            img {
                transform: rotate(2deg) scale(1.2);
            }
        }
        .blog-content {
            h3 {
                a {
                    color: $main-color;
                }
            }
        }
    }
}

/*================================================
Activities Area CSS
=================================================*/
.activities-area {
    background-image: url(../../assets/img/activities-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.single-activities {
    position: relative;
    margin-bottom: 30px;

    .number {
        span {
            display: inline-block;
            height: 60px;
            width: 60px;
            line-height: 60px;
            font-size: 30px;
            color: $black-color;
            background-color: $main-color;
            border-radius: 50px;
            text-align: center;
            position: absolute;
            left: 0;
            top: 0;
            transition: $transition;
            font-weight: bold;

            &::before {
                position: absolute;
                content: "";
                height: 70px;
                width: 70px;
                line-height: 70px;
                border: 1px solid $main-color;
                border-radius: 50px;
                top: -5px;
                left: -5px;
                right: 0;
                transition: $transition;
            }
        }
        .bg-2 {
            background-color: #fdbea8;

            &::before {
                border: 1px solid #fdbea8;
            }
        }
        .bg-3 {
            background-color: #b6fdd6;

            &::before {
                border: 1px solid #b6fdd6;
            }
        }
        .bg-4 {
            background-color: #fd91a8;

            &::before {
                border: 1px solid #fd91a8;
            }
        }
        .bg-5 {
            background-color: #fce0ad;

            &::before {
                border: 1px solid #fce0ad;
            }
        }
        .bg-6 {
            background-color: #cca0fe;

            &::before {
                border: 1px solid #cca0fe;
            }
        }
    }
    .activities-content {
        padding-left: 90px;

        h3 {
            font-size: 25px;
            margin-bottom: 12px;

            a {
                color: $black-color;
            }
        }
        p {
            margin-bottom: 12px;
        }
        .activities-btn {
            font-size: $font-size;
            color: $main-color;
            font-weight: 600;
            transition: $transition;
        }
    }
    &:hover {
        .number {
            span {
                background-color: $optional-color;
                color: $white-color;

                &::before {
                    border: 1px solid $optional-color;
                }
            }
        }
        .activities-content {
            h3 {
                a {
                    color: $main-color;
                }
            }
            .activities-btn {
                letter-spacing: 1px;
            }
        }
    }
}

/*================================================
Facilities Area CSS
=================================================*/
.facilities-area {
    position: relative;
    z-index: 1;
}
.single-facilities {
    position: relative;
    margin-bottom: 30px;

    .number {
        span {
            display: inline-block;
            height: 60px;
            width: 60px;
            line-height: 60px;
            font-size: 30px;
            color: $black-color;
            background-color: $main-color;
            border-radius: 50px;
            text-align: center;
            position: absolute;
            left: 0;
            top: 0;
            transition: $transition;
            font-weight: bold;

            &::before {
                position: absolute;
                content: "";
                height: 70px;
                width: 70px;
                line-height: 70px;
                border: 1px solid $main-color;
                border-radius: 50px;
                top: -5px;
                left: -5px;
                right: 0;
                transition: $transition;
            }
        }
        .bg-2 {
            background-color: #fdbea8;

            &::before {
                border: 1px solid #fdbea8;
            }
        }
        .bg-3 {
            background-color: #b6fdd6;

            &::before {
                border: 1px solid #b6fdd6;
            }
        }
        .bg-4 {
            background-color: #fd91a8;

            &::before {
                border: 1px solid #fd91a8;
            }
        }
        .bg-5 {
            background-color: #fce0ad;

            &::before {
                border: 1px solid #fce0ad;
            }
        }
        .bg-6 {
            background-color: #cca0fe;

            &::before {
                border: 1px solid #cca0fe;
            }
        }
    }
    .facilities-content {
        padding-left: 88px;

        h3 {
            font-size: 25px;
            margin-bottom: 12px;

            a {
                color: $black-color;
            }
        }
        p {
            margin-bottom: 0;
        }
    }
    &:hover {
        .number {
            span {
                background-color: $optional-color;
                color: $white-color;
            }
        }
        .facilities-content {
            h3 {
                a {
                    color: $main-color;
                }
            }
        }
    }
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
    background-color: #fdf9f4;
}
.partner-item {
    img {
        width: auto !important;
        margin: auto;
        max-width: 170px;
        background-color: whitesmoke;
    }
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
    background-image: url(../../assets/img/clubtech/gallery/stats.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;

    &::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: #000000;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        opacity: .50;
    }
}
.single-fun-fact {
    margin-bottom: 30px;
    text-align: center;
    background-color: #5da7bd;
    padding: 75px 45px;
    opacity: .90;
    border-radius: 15px;

    h3 {
        margin-bottom: 0;
        line-height: 1;
        font-size: 60px;
        transition: $transition;
        color: $white-color;
    }
    p {
        font-size: 16px;
        font-weight: 500;
        color: $white-color;
    }
    &.bg-1 {
        background-color: #e9aa52;
    }
    &.bg-2 {
        background-color: #6a4d8d;
    }
    &.bg-3 {
        background-color: #de5e32;
    }
}

/*================================================
Choose Area CSS
=================================================*/
.single-choose {
    text-align: center;
    margin-bottom: 30px;

    .icon {
        margin-bottom: 20px;

        i {
            display: inline-block;
            height: 60px;
            width: 60px;
            line-height: 60px;
            background-color: $main-color;
            color: $white-color;
            font-size: 35px;
            border-radius: 50px;
            transition: $transition;
        }
    }
    .content {
        h3 {
            font-size: 25px;
            margin-bottom: 12px;
        }
        p {
            margin-bottom: 0;
        }
    }
    &:hover {
        .icon {
            i {
                background-color: $optional-color;
            }
        }
    }
}
.choose-image {
    position: relative;

    .choose-image-shape {
        .shape-1 {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            animation: moveLeftBounce 3s linear infinite;
        }
        .shape-2 {
            position: absolute;
            right: -10%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            animation: moveLeftBounce 3s linear infinite;
            z-index: -1;
        }
        .shape-3 {
            position: absolute;
            bottom: 10%;
            left: 12%;
            z-index: -1;
            animation: moveLeftBounce 3s linear infinite;
        }
    }
}
.single-choose-item {
    span {
        font-size: 20px;
        color: $main-color;
        font-weight: 600;
        font-family: $optional-font-family;
    }
    h3 {
        font-size: 45px;
        margin-top: 12px;
        margin-bottom: 15px;
    }
    .choose-btn {
        margin-top: 30px;
    }
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-box {
    text-align: center;
    position: relative;
    margin-bottom: 30px;

    &::before {
        width: 100%;
        content: '';
        position: absolute;
        height: 100%;
        background-color: #000000;
        left: 0;
        top: 0;
        transition: $transition;
        opacity: 0;
        visibility: hidden;
        border-radius: 15px;
    }
    img {
        border-radius: 15px;
    }
    .gallery-btn {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        font-size: 35px;
        color: $white-color;
        margin-top: 20px;
        opacity: 0;
        visibility: hidden;
    }
    &:hover {
        &::before {
            opacity: .30;
            visibility: visible;
        }
        .gallery-btn {
            opacity: 1;
            visibility: visible;
            margin-top: 0;
        }
    }
}
.view-btn {
    text-align: center;
    margin-top: 15px;

    .default-btn {
        color: $white-color;
    }
}

/*================================================
Quote Area CSS
=================================================*/
.quote-area {
    &.bg-item {
        background-image: url(../../assets/img/clubtech/gallery/registration.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
}
.quote-image {
    background-image: url(../../assets/img/quote.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.quote-item {
    background-color: $white-color;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    padding: 50px;

    .content {
        margin-bottom: 30px;

        span {
            font-size: 20px;
            color: $main-color;
            font-weight: 600;
            font-family: $optional-font-family;
        }
        h3 {
            font-size: 45px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
    }
    form {
        .form-group {
            margin-bottom: 15px;
            
            .form-control {
                height: 70px;
                color: $black-color;
                box-shadow: unset !important;
                border: 1px solid #eeeeee;
                background-color: transparent;
                transition: $transition;
                border-radius: 10px;
                padding: 0 0 0 15px;
                font-weight: 500;
                
                &::placeholder {
                    color: #7e7e7e;
                    transition: $transition;
                }
                &:focus {
                    border-color: $main-color;
                    background-color: transparent;
            
                    &::placeholder {
                        color: transparent;
                    }
                }
            }
        }
        .default-btn {
            border: none;
            width: 100%;
            cursor: pointer;
            margin-top: 10px;
            padding: 15px 30px;
        }
    }
    &.item-two {
        max-width: 750px;
        margin-left: auto;
    }
}

/*================================================
Tour Area CSS
=================================================*/
.single-tour {
    background-color: #fdeee9;
    padding: 45px 30px 30px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;

    h3 {
        display: inline-block;
        margin-bottom: 0;
        background-color: #fccfbf;
        color: $main-color;
        font-size: 20px;
        border-radius: 5px;
        padding: 10px 35px;
        width: 100%;
        transition: $transition;

        &:hover {
            background-color: $main-color;
            color: $white-color;
        }
    }
    .image {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    span {
        color: $main-color;
        font-weight: 500;
    }
    p {
        font-size: 14px;
        margin-top: 12px;
        margin-bottom: 0;
    }
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area {
    background-color: #fdeee9;
    position: relative;
    z-index: 1;
}
.newsletter-content {
    h2 {
        font-size: 35px;
        margin-bottom: 0;
    }
}
.newsletter-form {
    position: relative;

    .input-newsletter {
        display: block;
        width: 100%;
        background-color: $white-color;
        border: 1px solid $white-color;
        height: 60px;
        padding-left: 25px;
        border-radius: 5px;
        outline: 0;
        color: $black-color;

        &::placeholder {
            color: $paragraph-color;
        }
    }
    button {
        position: absolute;
        right: 4px;
        top: 4px;
        background-color: $main-color;
        color: $white-color;
        border: none;
        height: 52px;
        padding: 0 30px;
        border-radius: 5px;
        transition: $transition;
        line-height: 50px;
        text-transform: capitalize;
        cursor: pointer;
        font-size: $font-size;
        font-weight: 500;
        
        &:hover {
            background-color: $black-color;
            color: $white-color;
        }
    }
    #validator-newsletter {
        color: red;
        position: relative;
        top: 8px;
        font-size: 16px;
        font-weight: 500;
    }
} 
.newsletter-shape {
    .shape-1 {
        position: absolute;
        left: 0;
        top: 60%;
        transform: translateY(-60%);
        max-width: 250px;
        z-index: -1;
    }
    .shape-2 {
        position: absolute;
        right: 0;
        top: 60%;
        transform: translateY(-60%);
        max-width: 250px;
        z-index: -1;
    }
}

/*================================================
Support Area CSS
=================================================*/
.support-list-item {
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;

    li {
        display: inline-block;
        list-style-type: none;
        margin-right: 60px;
        margin-bottom: 30px;

        &:last-child {
            margin-right: 0;
        }
        img {
            margin-bottom: 25px;
        }
        span {
            display: block;
            font-size: 25px;
            color: $black-color;
            font-weight: 600;
        }
    }
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
    background-image: url(../../assets/img/clubtech/gallery/joinus.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.overview-content {
    background-color: $white-color;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    padding: 50px;
    max-width: 750px;
    margin-left: auto;
    border-radius: 15px;

    h3 {
        font-size: 45px;
        margin-bottom: 15px;
    }
    p {
        margin-bottom: 0;
    }
    .overview-btn {
        margin-top: 30px;
    }
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
    position: relative;
    z-index: 1;
    background-image: url(../../assets/img/page-banner/page-banner-1.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 200px;
    background-attachment: fixed;

    &::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: #000000;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        opacity: .60;
    }
    &.item-bg1 {
        background-image: url(../../assets/img/page-banner/page-banner-2.jpg);
    }
    &.item-bg2 {
        background-image: url(../../assets/img/page-banner/page-banner-3.jpg);
    }
    &.item-bg3 {
        background-image: url(../../assets/img/page-banner/page-banner-4.jpg);
    }
    &.item-bg4 {
        background-image: url(../../assets/img/page-banner/page-banner-5.jpg);
    }
}
.page-banner-content {
    text-align: center;
    h2 {
        color: $white-color;
        margin-bottom: 20px;
        font-size: 45px;
        line-height: 1;
    }
    ul {
        text-align: center;
        padding-left: 0;
        margin-bottom: 0;

        li {
            display: inline-block;
            list-style-type: none;
            margin-left: 15px;
            font-weight: 600;
            color: $main-color;
            position: relative;

            &::before {
                content: '';
                position: absolute;
                left: -10px;
                top: 6px;
                height: 12px;
                width: 1px;
                background: $main-color;
            }
            &:first-child {
                margin-left: 0;

                &::before {
                    display: none;
                }
            }
            a {
                display: block;
                color: $white-color;
            }
        }
    }
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-table {
    .table {
        --bs-table-bg: transparent;
    }
    .table {
        margin-bottom: 0;
        thead {
            th {
                border: 1px solid #f0f0f0;
                color: $black-color;
                font-family: $other-font-family;
                font-weight: bold;
                font-size: 20px;
                padding: 30px 25px;
                border-bottom: none;
            }    
        }
        tbody {
            tr {
                th {
                    border: 1px solid #f0f0f0;
                    font-weight: 400;
                    color: $paragraph-color;
                    overflow-x: auto;
                    font-family: $other-font-family;
                    padding: 30px 25px;
                    font-size: $font-size;
                }
                td {
                    border: 1px solid #f0f0f0;
                    font-weight: 400;
                    color: $paragraph-color;
                    overflow-x: auto;
                    font-family: $other-font-family;
                    padding: 30px 25px;
                    font-size: $font-size;
                }
            }
        }
    }
    .table-responsive {
        overflow-x: unset;
    }
    .table-title {
        text-align: center;
        margin-top: 20px;
    
        p {
            margin-bottom: 0;
        }
    }
}

/*================================================
Apply Area CSS
=================================================*/
.apply-form {
    background-color: $white-color;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    padding: 50px;

    .content {
        margin-bottom: 30px;

        h3 {
            font-size: 35px;
            margin-bottom: 0;
        }
    }
    form {
        .form-group {
            margin-bottom: 15px;

            .form-control {
                height: 60px;
                color: $black-color;
                box-shadow: unset !important;
                border: 1px solid #eeeeee;
                background-color: transparent;
                transition: $transition;
                border-radius: 10px;
                padding: 0 0 0 15px;
                font-weight: 500;
                
                &::placeholder {
                    color: #7e7e7e;
                    transition: $transition;
                }
                &:focus {
                    border-color: $main-color;
                    background-color: transparent;
            
                    &::placeholder {
                        color: transparent;
                    }
                }
            }
            textarea {
                height: 100px !important;
                padding-top: 15px !important;
            }
        }
        .default-btn {
            border: none;
            width: 100%;
            cursor: pointer;
            margin-top: 10px;
            padding: 15px 30px;
        }
    }
}

/*================================================
Enrollment Area CSS
=================================================*/
.enrollment-accordion {
    background-color: $white-color;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    padding: 30px;

    .content {
        margin-bottom: 25px;

        h3 {
            font-size: 25px;
            margin-bottom: 0;
        }
    }
    .accordion {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;

        .accordion-item {
            display: block;
            border: 1px solid #f3f3f3;
            margin-bottom: 10px;
            background-color: transparent;

            &:last-child {
                margin-bottom: 0;
            }
        }
        .accordion-title {
            padding: 25px 40px 20px 20px;
            color: $black-color;
            position: relative;
            display: block;
            font-size: 20px;
            font-weight: 500;

            i {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: $black-color;
                font-size: 20px;
                transition: $transition;
            }
            &.active {
                i {
                    &::before {
                        content: "\eb8b";
                        color: $optional-color;
                    }
                }
            }
        }
        .accordion-content {
            display: none;
            position: relative;
            padding: 18px 20px;
            border-top: 1px solid $optional-color;
            color: $paragraph-color;
            font-size: 15px;

            &.show {
                display: block;
            }
        }
    }
}
.enrollment-image {
    background-image: url(../../assets/img/enrollment.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

/*================================================
Timetable Area CSS
=================================================*/
.timetable {
    .table {
        --bs-table-bg: transparent;
    }
    .table {
        margin-bottom: 0;
        text-align: center;

        thead {
            th {
                border: 1px solid #f0f0f0;
                color: $black-color;
                font-family: $other-font-family;
                font-weight: bold;
                font-size: 20px;
                padding: 30px 25px;
            }    
        }
        tbody {
            tr {
                th {
                    border: 1px solid #f0f0f0;
                    font-weight: 600;
                    color: $main-color;
                    overflow-x: auto;
                    font-family: $other-font-family;
                    padding: 30px 25px;
                    font-size: 18px;

                    span {
                        display: block;
                        font-size: 14px;
                        margin-top: 12px;
                        font-weight: 400;
                        color: $paragraph-color;
                    }
                }
                td {
                    border: 1px solid #f0f0f0;
                    font-weight: 600;
                    color: $main-color;
                    overflow-x: auto;
                    font-family: $other-font-family;
                    padding: 30px 25px;
                    font-size: 18px;

                    span {
                        display: block;
                        font-size: 14px;
                        margin-top: 12px;
                        font-weight: 400;
                        color: $paragraph-color;
                    }
                }
            }
        }
    }
    .table-responsive {
        overflow-x: unset;
    }
    .table-title {
        text-align: center;
        margin-top: 20px;
    
        p {
            margin-bottom: 0;
        }
    }
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
    background-color: $white-color;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    padding: 30px;

    .content {
        margin-bottom: 25px;

        h3 {
            font-size: 25px;
            margin-bottom: 0;
        }
    }
    .accordion {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;

        .accordion-item {
            display: block;
            border: 1px solid #f3f3f3;
            margin-bottom: 10px;
            background-color: transparent;

            &:last-child {
                margin-bottom: 0;
            }
        }
        .accordion-title {
            padding: 25px 40px 20px 20px;
            color: $black-color;
            position: relative;
            display: block;
            font-size: 20px;
            font-weight: 500;

            i {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: $black-color;
                font-size: 20px;
                transition: $transition;
            }
            &.active {
                i {
                    &::before {
                        content: "\eb8b";
                        color: $optional-color;
                    }
                }
            }
        }
        .accordion-content {
            display: none;
            position: relative;
            padding: 18px 20px;
            border-top: 1px solid $optional-color;
            color: $paragraph-color;
            font-size: 15px;

            &.show {
                display: block;
            }
        }
    }
}
.faq-image {
    background-image: url(../../assets/img/faq.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.faq-contact-form {
    max-width: 850px;
    margin: auto;

    #contactForm {
        .form-group {
            margin-bottom: 15px;
            
            .form-control {
                height: 60px;
                padding: 0 0 0 15px;
                line-height: initial;
                color: $black-color;
                background-color: transparent;
                border: 1px solid #f1f1f1;
                border-radius: 5px;
                box-shadow: unset !important;
                transition: $transition;
                font: {
                    size: $font-size;
                    weight: 400;
                };
                &:focus {
                    border-color: $main-color;

                    &::placeholder {
                        color: transparent;
                    }
                }
                &::placeholder {
                    color: $paragraph-color;
                    transition: $transition;
                }
            }
            textarea.form-control {
                height: auto;
                padding: 15px 0 0 15px;
            }
            .help-block {
                &.with-errors {
                    ul {
                        color: red;
                        margin-bottom: 0;
                        margin-top: 10px;
                    }
                }
            }
        }
        #msgSubmit {
            margin: 0;
            font-size: 1.3rem;
    
            &.text-danger, &.text-success {
                margin-top: 15px;
            }
        }
        .send-btn {
            margin-top: 15px;

            .default-btn {
                border: none;
                position: relative;
                z-index: 1;
            }
        }
    }
}

/*================================================
Login Area CSS
=================================================*/
.login-form {
    padding: 40px 45px;
    border-radius: 5px;
    background-color: $white-color;
    box-shadow: 0 0 10px rgba(51,51,51,.1);
    max-width: 650px;
    margin: auto;

    h2 {
        margin-bottom: 30px;
        font-size: 36px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
    }
    form {
        .form-group {
            margin-bottom: 25px;
            label {
                display: block;
                margin-bottom: 10px;
                color: $paragraph-color;
                font-weight: 400;
                font-size: $font-size;
            }
            .form-control {
                height: 60px;
                padding: 0 0 0 15px;
                line-height: initial;
                color: $black-color;
                background-color: transparent !important;
                border: 1px solid #f1f1f1;
                border-radius: 5px;
                box-shadow: unset !important;
                transition: $transition;
                font-size: 15px;
                font-weight: 500;

                &:focus {
                    border: 1px solid $main-color;

                    &::placeholder {
                        color: transparent;
                        transition: $transition;
                    }
                }
            }
        }
        .lost-your-password {
            text-align: right;
            a {
                display: inline-block;
                position: relative;
                font-weight: 500;
                font-size: 15px;
                color: $paragraph-color;

                &::before {
                    width: 100%;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    content: '';
                    transition: $transition;
                    background-color: #eeeeee;
                }
                &::after {
                    width: 0;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    transition: $transition;
                    bottom: 0;
                    content: '';
                    background-color: $optional-color;
                }
                &:hover {
                    &::before {
                        width: 0;
                    }
                    &::after {
                        width: 100%;
                    }
                }
            }
        }
        .form-check {
            font-weight: 500;
            font-size: 15px;
            color: $paragraph-color;
        }
        .form-check-input {
            margin-top: 2px;
        }
        button {
            border: none;
            margin-top: 25px;
            padding: 15px 30px;
            width: 100%;
            border-radius: 5px;
            cursor: pointer;
            background-color: $main-color;
            color: $white-color;
            transition: $transition;

            &:hover {
                background-color: $optional-color;
            }
        }
    }
    .important-text {
        margin-top: 15px;

        p {
            font-size: 15px;
            color: #656565;

            a {
                color: #656565;
                font-weight: 600;

                &:hover {
                    color: $main-color;
                }
            }
        }
    }
}

/*================================================
Register Area CSS
=================================================*/
.register-form {
    padding: 40px 45px;
    border-radius: 5px;
    background-color: $white-color;
    box-shadow: 0 0 10px rgba(51,51,51,.1);
    max-width: 650px;
    margin: auto;

    h2 {
        margin-bottom: 30px;
        font-size: 36px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
    }
    form {
        .form-group {
            margin-bottom: 25px;
            label {
                display: block;
                margin-bottom: 10px;
                color: $paragraph-color;
                font-weight: 400;
                font-size: $font-size;
            }
            .form-control {
                height: 60px;
                padding: 0 0 0 15px;
                line-height: initial;
                color: $black-color;
                background-color: transparent !important;
                border: 1px solid #f1f1f1;
                border-radius: 5px;
                box-shadow: unset !important;
                transition: $transition;
                font-size: 15px;
                font-weight: 500;

                &:focus {
                    border: 1px solid $main-color;

                    &::placeholder {
                        color: transparent;
                        transition: $transition;
                    }
                }
            }
        }
        .form-check {
            font-weight: 500;
            font-size: 15px;
            color: $paragraph-color;
        }
        .form-check-input {
            margin-top: 2px;
        }
        button {
            border: none;
            margin-top: 25px;
            padding: 15px 30px;
            width: 100%;
            border-radius: 5px;
            cursor: pointer;
            background-color: $main-color;
            color: $white-color;
            transition: $transition;

            &:hover {
                background-color: $optional-color;
            }
        }
    }
    .important-text {
        margin-top: 15px;

        p {
            font-size: 15px;
            color: #656565;

            a {
                color: #656565;
                font-weight: 600;

                &:hover {
                    color: $main-color;
                }
            }
        }
    }
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
    text-align: center;
    margin: 0 auto;
    max-width: 750px;
    h3 {
        font-size: 38px;
        margin-top: 45px;
        margin-bottom: 20px;
    }
    p {
        max-width: 520px;
        margin: 0 auto 25px;
        font-size: 15px;
    } 
    .default-btn {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 30px;
        background-color: $main-color;
        color: $white-color;
        transition: $transition;

        &:hover {
            background-color: $optional-color;
        }
    }
}

/*================================================
Terms of service Area CSS
=================================================*/
.terms-of-service-accordion {
    max-width: 950px;
    margin: auto;

    .accordion {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;

        .accordion-item {
            display: block;
            border: 2px solid #f3f3f3;
            margin-bottom: 10px;
            background-color: transparent;

            &:last-child {
                margin-bottom: 0;
            }
        }
        .accordion-title {
            padding: 25px 40px 20px 20px;
            color: $black-color;
            position: relative;
            display: block;
            font-size: 20px;
            font-weight: 500;

            i {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: $black-color;
                font-size: 20px;
                transition: $transition;
            }
            &.active {
                i {
                    &::before {
                        content: "\eb8b";
                        color: $optional-color;
                    }
                }
            }
        }
        .accordion-content {
            display: none;
            position: relative;
            padding: 18px 20px;
            border-top: 1px solid $optional-color;
            color: $paragraph-color;
            font-size: 15px;

            &.show {
                display: block;
            }
        }
    }
}

/*================================================
Privacy policy Area CSS
=================================================*/
.privacy-policy-accordion {
    max-width: 950px;
    margin: auto;

    .accordion {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;

        .accordion-item {
            display: block;
            border: 2px solid #f3f3f3;
            margin-bottom: 10px;
            background-color: transparent;

            &:last-child {
                margin-bottom: 0;
            }
        }
        .accordion-title {
            padding: 25px 40px 20px 20px;
            color: $black-color;
            position: relative;
            display: block;
            font-size: 20px;
            font-weight: 500;

            i {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: $black-color;
                font-size: 20px;
                transition: $transition;
            }
            &.active {
                i {
                    &::before {
                        content: "\eb8b";
                        color: $optional-color;
                    }
                }
            }
        }
        .accordion-content {
            display: none;
            position: relative;
            padding: 18px 20px;
            border-top: 1px solid $optional-color;
            color: $paragraph-color;
            font-size: 15px;

            &.show {
                display: block;
            }
        }
    }
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
    height: 100vh;
}
.coming-soon-content {
    max-width: 1050px;
    background: $white-color;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    padding: 50px 60px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    margin: auto;
    
    h2 {
        font-size: 45px;
        margin-bottom: 0;
    }
    #timer {
        margin-top: 40px;

        div {
            background-color: $black-color;
            color: $white-color;
            width: 190px;
            height: 185px;
            border-radius: 5px;
            font-size: 45px;
            font-weight: bold;
            margin-left: 10px;
            margin-right: 10px;
            font-family: $other-font-family;

            span {
                display: block;
                margin-top: -2px;
                font-size: $font-size;
                font-weight: 500;
            }
        }
    }
    .newsletter-form {
        position: relative;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;

        .form-group {
            margin-bottom: 25px;
            position: relative;

            .form-control {
                border-radius: 0;
                border: none;
                border-bottom: 2px solid #eeeeee;
                color: $black-color;
                height: 45px;
                padding-bottom: 20px;
                display: block;
                width: 100%;
                transition: $transition;
                font-size: $font-size;
                font-weight: 400;

                &::placeholder {
                    color: #A1A1A1;
                    transition: $transition;
                }
                &:focus {         
                    box-shadow: none;  
                    border-bottom: 2px solid $main-color;
                }
            }
        }
        .default-btn {
            display: inline-block;
            padding: 15px 45px;
            background-color: $main-color;
            color: $white-color;
            border: none;
            border-radius: 50px;
            transition: $transition;
            position: relative;
            right: 0;
            left: 0;
            top: 0;
            line-height: unset;
            height: unset;

            &:hover {
                background-color: $optional-color;
            }
        }
        .validation-danger {
            margin-top: 15px;
            color: red;
        }
        .validation-success {
            margin-top: 10px;
        }
        p {
            margin-bottom: 0;
            margin-top: 20px;
            font-size: 15px;
        }
    }
}

/*================================================
Contact Area CSS
=================================================*/
.contact-information {
    h3 {
        margin-bottom: 25px;
        font-size: 25px;
    }
    .contact-list {
        padding-left: 0;
        margin-bottom: 25px;
        list-style-type: none;

        li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;

            i {
                position: absolute;
                left: 0;
                top: 2px;
                color: $main-color;
                font-size: 20px;
            }
            span {
                font-weight: 600;
                color: $black-color;
            }
            a {
                display: inline-block;
                font-weight: 600;
                position: relative;
                
                &:hover {
                    &::before {
                        width: 100%;
                    }
                }
                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 0;
                    height: 1px;
                    transition: $transition;
                    background-color: $main-color;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .opening-hours {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            margin-bottom: 10px;
            
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}
.contact-form {
    h3 {
        margin-bottom: 25px;
        font-size: 25px;
    }
    #contactForm {
        .form-group {
            margin-bottom: 15px;

            .form-control {
                height: 60px;
                padding: 0 0 0 15px;
                line-height: initial;
                color: $black-color;
                background-color: transparent;
                border: 1px solid #f1f1f1;
                border-radius: 5px;
                box-shadow: unset !important;
                transition: $transition;
                font: {
                    size: $font-size;
                    weight: 400;
                };
                &:focus {
                    border-color: $main-color;

                    &::placeholder {
                        color: transparent;
                    }
                }
                &::placeholder {
                    color: $paragraph-color;
                    transition: $transition;
                }
            }
            textarea.form-control {
                height: auto;
                padding: 15px 0 0 15px;
            }
            .help-block {
                &.with-errors {
                    ul {
                        color: red;
                        margin-bottom: 0;
                        margin-top: 10px;
                    }
                }
            }
        }
        #msgSubmit {
            margin: 0;
            font-size: 1.3rem;
    
            &.text-danger, &.text-success {
                margin-top: 15px;
            }
        }
        .default-btn {
            border: none;
            position: relative;
            z-index: 1;
            border: none;
        }
    }
}
#map {
    iframe {
        border: none;
        width: 100%;
        height: 450px;
        margin-bottom: -8px;
    }
}

/*================================================
Teacher Details  Area CSS
=================================================*/
.teacher-details-desc {
    .teacher-desc-content {
        h3 {
            font-size: 30px;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p {
            font-size: 15px;
            margin-bottom: 0;
        }
        .skill-bar {
            margin-top: 30px;

            .progress-title-holder {
                position: relative;
                margin-bottom: 10px;
            }
            .progress-title {
                font-size: 16px;
                font-weight: 500;
                color: $black-color;
            }
            .progress-number-wrapper {
                width: 100%;
                z-index: 10;
                font-size: 11px;
                line-height: 24px;
                height: 24px;
                letter-spacing: 0px;
                font-weight: 600;
                font-style: normal;
                text-transform: none;
                color: #ffffff;
            }
            .progress-number-mark {
                position: absolute;
                bottom: 0;
                transform: translateX(-50%);
                font-size: 16px;
                color: $black-color;
                font-weight: 500;
            } 
            .down-arrow {
                display: none;
            }
            .progress-content-outter {
                height: 6px;
                background-color: #e4e4e4;
                border-radius: 4px;
            }
            .progress-content {
                height: 6px;
                background-color: #fdbb22;
                border-radius: 4px;
                width: 0%;

                &.two {
                    background-color: #ec471a;
                }
                &.three {
                    background-color: #024982;
                }
                &.four {
                    background-color: #5dba3b;
                }
                &.five {
                    background-color: #ff0057;
                }
            }
        }
        .skill-bar-wrapper {
            margin-left: 30px;
            max-width: 510px;

            .section-title-left {
                margin-bottom: 50px;
            }
        }
    }
}
.teacher-details-information {
    background-color: $white-color;
    box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border-top: 3px solid $main-color;
    padding: 40px 30px;
    position: sticky;
    top: 110px;

    h3 {
        font-size: 25px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 150px;
            height: 1px;
            background-color: $main-color;
        }
    }
    ul {
        padding-left: 0;
        margin-bottom: 0;

        li {
            list-style-type: none;
            color: $paragraph-color;
            font-weight: 400;
            font-size: $font-size;
            margin-bottom: 15px;
            font-family: $other-font-family;

            &:last-child {
                margin-bottom: 0;
            }
            span {
                color: $black-color;
                font-size: $font-size;
                font-weight: 600;
            }
            a {
                font-size: $font-size;
                font-weight: 400;
                color: $paragraph-color;

                &:hover {
                    color: $main-color;
                }
                i {
                    position: relative;
                    top: 1.5px;
                }
            }
        }
    }
}

/*================================================
Event Details  Area CSS
=================================================*/
.event-details-desc {
    .event-desc-content {
        h3 {
            font-size: 30px;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p {
            font-size: 15px;
            margin-bottom: 0;
        }
        #map {
            margin-top: 30px;
            iframe {
                border: none;
                width: 100%;
                height: 450px;
                margin-bottom: -8px;
            }
        }        
    }
}
.event-details-information {
    background-color: $white-color;
    box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border-top: 3px solid $main-color;
    padding: 40px 30px;
    position: sticky;
    top: 110px;

    h3 {
        font-size: 25px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 150px;
            height: 1px;
            background-color: $main-color;
        }
    }
    ul {
        padding-left: 0;
        margin-bottom: 0;

        li {
            list-style-type: none;
            color: $paragraph-color;
            font-weight: 400;
            font-size: $font-size;
            margin-bottom: 15px;
            font-family: $other-font-family;

            &:last-child {
                margin-bottom: 0;
            }
            span {
                color: $black-color;
                font-size: $font-size;
                font-weight: 600;
            }
            a {
                font-size: $font-size;
                font-weight: 400;
                color: $paragraph-color;

                &:hover {
                    color: $main-color;
                }
            }
        }
    }
}

/*================================================
Class Details  Area CSS
=================================================*/
.class-details-desc {
    .class-details-tab {
        margin-top: 30px;

        .tabs {
            list-style-type: none;
            margin-bottom: -1px;
            padding-left: 0;

            li {
                display: inline-block;
                line-height: initial;
                margin-right: 5px;

                a {
                    display: inline-block;
                    position: relative;
                    color: $black-color;
                    text-decoration: none;
                    background-color: #fcefea;
                    font-size: $font-size;
                    font-weight: bold;
                    padding: 15px 35px;
                    width: 100%;

                    &:hover, &:focus {
                        color: $white-color;
                        background-color: $main-color;
                    }
                }
                &.current {
                    a {
                        color: $white-color;
                        background-color: $main-color;
                        border-color: $main-color;
                    }
                }
                &:last-child {
                    margin-right: 0;
                }
            }
        }
        .tab_content {
            .tabs_item {
                display: none;

                &:first-child {
                    display: block;
                }
                .class-desc-content {
                    h3 {
                        font-size: 25px;
                        margin-top: 30px;
                        margin-bottom: 15px;
                    }
                    p {
                        font-size: 15px;
                        margin-bottom: 0;
                    }    
                    .requirements-list {
                        padding-left: 0;
                        margin-bottom: 0;
                        margin-top: 30px;
            
                        li {
                            list-style: none;
                            margin-bottom: 15px;
                            font-size: $font-size;
                            font-weight: 500;
                            color: $paragraph-color;
            
                            &:last-child {
                                margin-bottom: 0;
                            }
                            i {
                                color: $main-color;
                            }
                        }
                    }   
                }
            }
        }
    }
}
.class-details-sidebar {
    position: sticky;
    top: 110px;
}
.class-details-information {
    background-color: $white-color;
    box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border-top: 3px solid $main-color;
    padding: 40px 30px;

    h3 {
        font-size: 25px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 150px;
            height: 1px;
            background-color: $main-color;
        }
    }
    ul {
        padding-left: 0;
        margin-bottom: 0;

        li {
            list-style-type: none;
            color: $paragraph-color;
            font-weight: 400;
            font-size: $font-size;
            margin-bottom: 15px;
            font-family: $other-font-family;

            &:last-child {
                margin-bottom: 0;
            }
            span {
                color: $black-color;
                font-size: $font-size;
                font-weight: 600;
            }
            a {
                font-size: $font-size;
                font-weight: 400;
                color: $paragraph-color;

                &:hover {
                    color: $main-color;
                }
            }
        }
    }
}
.class-newsletter {
    background-color: #fcefea;
    padding: 25px;
    margin-top: 30px;

    .newsletter-content {
        text-align: center;
        margin-bottom: 25px;

        h3 {
            font-size:  25px;
            margin-bottom: 10px;
        }
        p {
            font-size: 14px;
        }
    }
    .newsletter-form {
        .input-newsletter {
            display: block;
            width: 100%;
            background-color: #ffffff;
            border: none;
            height: 55px;
            padding-left: 15px;
            border-radius: 0;
            outline: 0;
            color: $black-color;

            &:focus {
                &::placeholder {
                    color: transparent;
                    transition: $transition;
                }
            }
        }
        button {
            background: $main-color;
            color: $white-color;
            border: none;
            height: 55px;
            padding: 0 60px;
            transition: $transition;
            line-height: 55px;
            font-weight: 500;
            border-radius: 0;
            transition: $transition;
            position: relative;
            left: 0;
            right: 0;
            width: 100%;
            margin-top: 10px;
    
            &:hover {
                background-color: $optional-color;
            }
        }
        #validator-newsletter {
            color: red;
            margin-top: 15px;
            font-weight: 400;
            text-align: center;
            font-weight: 400;
        }
    }
}
.related-class {
    margin-top: 30px;
    
    h3 {
        font-size: 25px;
        margin-bottom: 25px;
    }
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
    text-align: center;
    margin-top: 20px;

    .page-numbers {
        width: 35px;
        height: 35px;
        margin: 0 3px;
        display: inline-block;
        background-color: $white-color;
        line-height: 35px;
        color: $black-color;
        box-shadow: 0 2px 10px 0 #d8dde6;
        font-size: 18px;
        font-weight: bold;
        border-radius: 50px;

        &.current, &:hover, &:focus {
            background: $optional-color;
            color: $white-color;
            box-shadow: 0 2px 10px 0 #d8dde6;
        }
        i {
            position: relative;
            top: 4px;
        }
    }
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc {
    .article-content {
        margin-top: 30px;
        .entry-meta {
            margin-bottom: -8px;
            ul {
                padding-left: 0;
                margin-bottom: 0;
                list-style-type: none;
                li {
                    position: relative;
                    display: inline-block;
                    color: $black-color;
                    margin-right: 20px;
                    
                    span {
                        display: inline-block;
                        color: $black-color;
                        font-weight: 500;
                    }
                    a {
                        display: inline-block;
                        color: $paragraph-color;
    
                        &:hover {
                            color: $main-color;
                        }
                    }
                    i {
                        color: $main-color;
                        margin-right: 2px;
                    }
                    &::before {
                        content: '';
                        position: absolute;
                        top: 12px;
                        right: -15px;
                        width: 6px;
                        height: 1px;
                        background: $main-color;
                    }
                    &:last-child {
                        margin-right: 0;

                        &::before {
                            display: none;
                        }
                    }
                }
            }
        }
        h3 {
            margin: {
                bottom: 15px;
                top: 25px;
            }
            font-size: 25px;
        }
        .wp-block-gallery {
            &.columns-3 {
                padding-left: 0;
                list-style-type: none;
                display: flex;
                flex-wrap: wrap;
                margin: {
                    right: -10px;
                    left: -10px;
                    bottom: 30px;
                    top: 30px;
                }
                li {
                    flex: 0 0 33.3333%;
                    max-width: 33.3333%;
                    padding: {
                        right: 10px;
                        left: 10px;
                    }
                    figure {
                        margin-bottom: 0;
                    }
                }
            }
        }
        .features-list {
            padding-left: 0;
            list-style-type: none;
            margin: {
                top: 25px;
                bottom: 30px;
            }
            li {
                margin-bottom: 16px;
                position: relative;
                padding-left: 34px;
                color: $paragraph-color;
                i {
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    text-align: center;
                    border-radius: 40px;
                    background-color: #faf5f5;
                    color: $optional-color;
                    transition: $transition;
                    display: inline-block;
                    font-size: 11px;
                    position: absolute;
                    left: 0;
                    top: -2px;
                }
                &:hover {
                    i {
                        background-color: $optional-color;
                        color: $white-color;
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .article-footer {
        display: flex;
        flex-wrap: wrap;
        margin: {
            top: 30px;
        };
        .article-tags {
            flex: 0 0 50%;
            max-width: 50%;
            color: $paragraph-color;
            span {
                display: inline-block;
                color: $black-color;
                font-size: 20px;
                margin-right: 5px;
                position: relative;
                top: 2px;
            }
            a {
                display: inline-block;
                margin-right: 2px;
                font-weight: 500;
                color: $paragraph-color;

                &:hover {
                    color: $optional-color;
                }
            }
        }
        .article-share {
            flex: 0 0 50%;
            max-width: 50%;
            
            .social {
                padding-left: 0;
                list-style-type: none;
                text-align: right;
                margin: {
                    bottom: 0;
                };
                li {
                    display: inline-block;
                    span {
                        display: inline-block;
                        margin-right: 2px;
                        font-weight: 500;
                        color: $paragraph-color;
                    }
                    a {
                        display: block;
                        color: $optional-color;
                        width: 30px;
                        height: 30px;
                        line-height: 34px;
                        border-radius: 50%;
                        background-color: #eeeef0;
                        text-align: center;
        
                        &:hover {
                            color: $white-color;
                            background-color: $optional-color;
                            transform: translateY(-2px);
                        }
                    }
                }
            }
        }
    }
}
blockquote, .blockquote {
    background-color: #fafafa;
    padding: 30px !important;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left: 3px solid $optional-color;
    border-right: 3px solid $optional-color;
    border-radius: 5px;
    p {
        color: $black-color;
        margin-bottom: 0;
        font-size: 18px !important;
        font-weight: 500;
        font-style: italic;
    }
}
.post-navigation {
    margin-top: 30px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    padding: {
        top: 20px;
        bottom: 20px;
    }
    .navigation-links {
        display: flex;
        flex-wrap: wrap;
        .nav-previous {
            flex: 0 0 50%;
            max-width: 50%;
            a {
                i {
                    margin-right: 2px;
                    transition: $transition;
                    font-size: 18px;
                    position: relative;
                    top: 2px;
                }
                &:hover {
                    i {
                        margin-right: 0;
                    }
                }
            }
        }
        .nav-next {
            flex: 0 0 50%;
            max-width: 50%;
            text-align: right;
            a {
                i {
                    margin-left: 2px;
                    transition: $transition;
                    font-size: 18px;
                    position: relative;
                    top: 2px;
                }
                &:hover {
                    i {
                        margin-left: 0;
                    }
                }
            }
        }
        div {
            a {
                display: inline-block;
                font-weight: 600;
            }
        }
    }
}
.comments-area {
    margin-top: 30px;
    .comments-title {
        margin-bottom: 30px;
        font-size: 24px;
    }
    ol, ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .comment-list {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .children {
        margin-left: 20px;
    }
    .comment-body {
        border-bottom: 1px dashed #eeeeee;
        padding-left: 70px;
        color: $black-color;
        margin-bottom: 20px;
        padding-bottom: 20px;

        .reply {
            margin-top: 15px;
            a {
                border: 1px dashed #ded9d9;
                color: $black-color;
                display: inline-block;
                padding: 5px 25px 5px;
                border-radius: 30px;
                text-transform: capitalize;
                font-size: 14px;
                font-weight: 500;
                &:hover {
                    color: $white-color;
                    background-color: $optional-color;
                    border-color: $optional-color;
                }
            }
        }
    }
    .comment-author {
        font-size: $font-size;
        margin-bottom: 8px;
        position: relative;
        z-index: 2;

        .avatar {
            height: 50px;
            left: -65px;
            position: absolute;
            width: 50px;
        }
        .fn {
            font-weight: 600;
        }
    }
    .comment-metadata {
        color: $paragraph-color;
        margin-bottom: 10px;
        font-size: 14px;
        
        a {
            display: inline-block;
            color: $paragraph-color;

            &:hover {
                color: $optional-color;
            }
        }
    }
    .comment-respond {
        margin-top: 30px;

        .comment-reply-title {
            margin-bottom: 0;
            font-size: 24px;
            #cancel-comment-reply-link {
                display: inline-block;
            }
        }
        .comment-form {
            overflow: hidden;
        }
        .comment-notes {
            margin-top: 10px;
            margin-bottom: 20px;
            .required {
                color: red;
            }
        }
        .comment-form-comment {
            float: left;
            width: 100%;
        }
        label {
            display: none;
        }
        input[type="date"], input[type="time"], input[type="datetime-local"], input[type="week"], input[type="month"], input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea {
            display: block;
            width: 100%;
            background-color: #f4f4f4;
            border: none;
            padding: 1px 0 0 15px;
            height: 60px;
            outline: 0;
            border-radius: 2px;
            color: $black-color;
            &::placeholder {
                color: $paragraph-color;
            }
        }
        textarea {
            height: auto !important;
            padding-top: 15px;
        }
        .comment-form-author {
            float: left;
            width: 50%;
            padding-right: 10px;
            margin-bottom: 20px;
        }
        .comment-form-email {
            float: left;
            width: 50%;
            padding-left: 12px;
            margin-bottom: 20px;
        }
        .comment-form-url {
            float: left;
            width: 100%;
            margin-bottom: 20px;
        }
        .comment-form-cookies-consent {
            width: 100%;
            float: left;
            position: relative;
            padding-left: 20px;
            margin-top: 15px;
            margin-bottom: 20px;
            input {
                position: absolute;
                left: 0;
                top: 7.5px;
            }
            label {
                display: inline-block;
                margin: 0;
                color: $paragraph-color;
            }
        }
        .form-submit {
            float: left;
            width: 100%;

            input {
                background: $main-color;
                border: none;
                color: $white-color;
                padding: 10px 30px 10px;
                display: inline-block;
                cursor: pointer;
                text-transform: capitalize;
                transition: $transition;
                border-radius: 0;
                font-weight: 600;
                border-radius: 5px;
            }
        }
    }
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area {
    position: sticky;
    top: 110px;

    .widget {
        margin-bottom: 30px;

        &:last-child {
            margin-bottom: 0;
        }
        .widget-title {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            border-bottom: 1px solid #eeeeee;
            font-size: 20px;
            &::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 1px;
                bottom: -1px;
                background: $main-color;
            }
        }
    }
    .widget_search {
        background-color: $white-color;
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        border-radius: 5px;
        padding: 25px;

        form {
            position: relative;
            label {
                display: block;
                margin-bottom: 0;
            }
            .screen-reader-text {
                display: none;
            }
            .search-field {
                background-color: transparent;
                height: 50px;
                padding: 8px 15px;
                border: 1px solid #eeeeee;
                width: 100%;
                display: block;
                outline: 0;
                transition: $transition;
                border-radius: 5px;
                &:focus {
                    border-color: $optional-color;
                }
            }
            button {
                border: none;
                background-color: #eeeeee;
                color: $optional-color;
                height: 40px;
                width: 40px;
                position: absolute;
                right: 5px;
                padding: 0;
                transition: $transition;
                top: 5px;
                font-size: 20px;
                border-radius: 5px;
                cursor: pointer;

                i {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 52%;
                    transform: translateY(-52%);
                }
                &:hover, &:focus {
                    background-color: $optional-color;
                    color: $white-color;
                }
            }
        }
    }
    .widget_ketan_posts_thumb {
        position: relative;
        overflow: hidden;
        background-color: $white-color;
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        border-radius: 5px;
        padding: 25px;

        .item {
            overflow: hidden;
            margin-bottom: 15px;

            &:last-child {
                margin-bottom: 0;
            }
            .thumb {
                float: left;
                height: 80px;
                overflow: hidden;
                display: block;
                position: relative;
                width: 80px;
                margin-right: 15px;
                z-index: 1;

                .fullimage {
                    width: 80px;
                    height: 80px;
                    display: inline-block;
                    border-radius: 5px;
                    background: {
                        size: cover !important;
                        repeat: no-repeat;
                        position: center center !important;
                    };
                    &.bg1 {
                        background-image: url(../../assets/img/blog/blog-1.jpg);
                    }
                    &.bg2 {
                        background-image: url(../../assets/img/blog/blog-2.jpg);
                    }
                    &.bg3 {
                        background-image: url(../../assets/img/blog/blog-3.jpg);
                    }
                    &.bg4 {
                        background-image: url(../../assets/img/blog/blog-4.jpg);
                    }
                    &.bg5 {
                        background-image: url(../../assets/img/blog/blog-5.jpg);
                    }
                    &.bg6 {
                        background-image: url(../../assets/img/blog/blog-6.jpg);
                    }
                }
            }
            .info {
                overflow: hidden;
                margin-top: 5px;

                span {
                    display: block;
                    color: $optional-color;
                    margin-top: -2px;
                    margin-bottom: 5px;
                    font-size: 14px;
                }
                .title {
                    margin-bottom: 0;
                    line-height: 1.4;
                    font-size: 17px;
                    font-weight: bold;
                    a {
                        display: inline-block;
                        transition: $transition;
                        &:hover {
                            color: $optional-color;
                        }
                    }
                }
            }
        }
    }
    .widget_categories {
        background-color: $white-color;
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        border-radius: 5px;
        padding: 25px;

        ul {
            padding-left: 0;
            margin-bottom: 0;
            list-style-type: none;

            li {
                position: relative;
                margin-bottom: 12px;
                overflow: hidden;
                color: $black-color;
                padding-left: 18px;
                font-size: 15px;
                font-weight: 500;
                &:last-child {
                    margin-bottom: 0;
                }
                &::before {
                    background: $main-color;
                    height: 8px;
                    width: 8px;
                    content: '';
                    border-radius: 50%;
                    left: 0;
                    top: 7px;
                    position: absolute;
                }
                a {
                    color: $black-color;
                    display: inline-block;

                    &:hover {
                        color: $optional-color;
                    }
                }
            }
        }
    }
    .widget_tag_cloud {
        background-color: $white-color;
        box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
        border-radius: 5px;
        padding: 25px;

        .widget-title {
            margin-bottom: 18px;
        }
    }
    .tagcloud {
        a {
            background: #f5f5f5;
            display: inline-block;
            color: $black-color;
            padding: 7px 15px;
            border: none;
            border-radius: 3px;
            font-weight: 500;
            font-size: 15px !important;
            margin-top: 8px;
            margin-right: 5px;

            &:hover, &:focus {
                color: $white-color;
                background-color: $optional-color;
            }
        }
    }
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
    background-image: url(../../assets/img/clubtech/gallery/footerbg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;

    &::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        background-color: #000000;
        left: 0;
        right: 0;
        top: 0;
        z-index: -1;
        opacity: 0.9;
    }
}
.single-footer-widget {
    margin-bottom: 30px;
    .logo {
        margin-bottom: 25px;
        h2 {
            font-size: 50px;

            a {
                color: $white-color;
            }
        }
    }
    p {
        margin-bottom: 0;
        color: $white-color;
    }
    .social {
        padding-left: 0;
        list-style-type: none;
        margin-top: 25px;
        margin-bottom: 0;

        li {
            display: inline-block;
            margin-right: 10px;

            &:last-child {
                margin-right: 0;
            }
            a {
                display: block;
                width: 35px;
                height: 35px;
                line-height: 40px;
                border-radius: 50%;
                background-color: $main-color;
                color: $white-color;
                text-align: center;
                font-size: 18px;

                &:hover, &:focus {
                    background-color: $optional-color;
                    transform: translateY(-5px);
                }
            }
        }
    }
    h3 {
        font-size: 25px;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 25px;
        color: $white-color;
        
        &::before {
            position: absolute;
            content: '';
            bottom: 0;
            left: 0;
            height: 2px;
            width: 50px;
            background-color: $main-color;
        }
    }
    .footer-contact-info {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            margin-bottom: 20px;
            color: $white-color;
            position: relative;
            padding-left: 35px;
            font-family: $other-font-family;
            font-size: 14px;

            i {
                position: absolute;
                left: 0;
                top: 5px;
                font-size: 25px;
                color: $main-color;
            }
            span {
                display: block;
                font-weight: 500;
                margin-bottom: 5px;
                color: $white-color;
                font-size: 20px;
            }
            a {
                display: inline-block;
                color: $white-color;
                font-weight: 400;
                position: relative;
                font-size: 14px;

                &:hover {
                    color: $main-color;

                    &::before {
                        width: 100%;
                    }
                }
                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 0;
                    height: 1px;
                    transition: $transition;
                    background-color: $main-color;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .quick-links {
        padding-left: 0;
        margin-bottom: 0;
        list-style-type: none;

        li {
            margin-bottom: 18px;
            color: $white-color;
            font-size: $font-size;

            a {
                display: inline-block;
                color: $white-color;
                font-weight: 500;
                position: relative;
                &:hover {
                    color: $main-color;
                    &::before {
                        width: 100%;
                    }
                }
                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 0;
                    height: 1px;
                    transition: $transition;
                    background-color: $main-color;
                }
            }
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .photo-gallery-list {
        padding-left: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        margin-left: -2px;
        margin-right: -2px;
        margin-top: -5px;

        li {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
            text-align: center;
            padding-left: 2px;
            padding-right: 2px;
            padding-top: 5px;
            .box {
                position: relative;
                z-index: 1;
                overflow: hidden;

                .link-btn {
                    display: block;
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    z-index: 3;
                }
                img {
                    transition: $transition;
                }
                &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    z-index: 1;
                    background-color: $main-color;
                    transition: $transition;
                    opacity: 0;
                    visibility: hidden;
                }
                &:hover {
                    &::before {
                        opacity: 0.5;
                        visibility: visible;
                    }
                    img {
                        transform: scale(1.1);
                    }
                    i {
                        opacity: 1;
                        visibility: visible;
                    }
                }
            }
        }
    }
}

/*================================================
Copy Right Area CSS
=================================================*/
.copyright-area {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #091629;

    .copyright-area-content {
        text-align: center;

        p {
            color: $white-color;

            a {
                display: inline-block;
                font-weight: 600;
                color: $main-color;

                &:hover {
                    color: $white-color;
                }
            }
        }
    }
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: -100px;
    right: 20px;
    color: $white-color;
    background-color: $black-color;
    z-index: 4;
    width: 35px;
    text-align: center;
    height: 35px;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    font-size: 18px;
    transition: .9s;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);

    i {
        position: absolute;
        right: 0;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        font-size: 30px;
        margin: {
            left: auto;
            right: auto;
        };
    }
    &.active {
        opacity: 1;
        visibility: visible;
        bottom: 20px;
    }
    &:hover {
        background-color: $main-color;
        color: $white-color;
        transition: $transition;
        box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
        transform: translateY(-5px);
    }
}

/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
    img {
        display: none;
    }
    right: 20px;
    z-index: 99;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    border-radius: 30px;
    display: inline-block;
    color: $white-color !important;
    background-color: #82b440;
    padding: 3.5px 12px;
    font-size: 12px;
    font-weight: 600;
    animation: {
        name: tada;
        duration: 5s;
        fill-mode: both;
        iteration-count: infinite;
    };
    &:hover {
        background-color: $main-color;
        color: $white-color !important;
    }
}
@keyframes tada {
    0% {
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}