/*-----------------------------------------------------------------
Template Name  : Pranayama - Yoga Studio and Meditation Template
Author         : HasnaaDesign
Version        : 1.0
Primary Use    : Yoga, Company
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Upperbar
 4. Navbar
 5. Side Menu
 6. Home
 7. Services
 8. About Us
 9. Schedule
 10. Call To Action
 11. Events
 12. Our Team
 13. Pricing
 14. Testimonials
 15. Blog
 16. Contact
 17. Newsletter
 18. Footer
 19. Scroll To Top
 20. Media Queries
-----------------------------------------------------------------*/

/* --------------------------------------
   1. Global Styles
-----------------------------------------*/

** {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #F5F5F5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #1D3557;
}

a,
a:hover,
a:focus,
a:active {
    color: #F5F5F5;
    text-decoration: none;
}

ul {
    margin-bottom: 0;
}

/*=========== Typography ============*/
h1 {
    font-size: 60px;
    font-weight: 800;
}

h2 {
    font-size: 40px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

h6 {
    font-size: 15px;
    font-weight: 400;
}

/*=========== My Classes ============*/

.main-title {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.main-title .separator {
    position: relative;
    width: 160px;
    display: inline-block;
}

.main-title .separator:before,
.main-title .separator:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 50px;
    background: #5FA8D3;
}

.main-title .separator:before {
    left: 3px;
}

.main-title .separator:after {
    right: 3px;
}

.main-title .separator .flaticon-chakra:before {
    font-size: 40px;
    color: #5FA8D3;
    margin-left: 0;
}

.main-title h2 {
    font-size: 28px;
    letter-spacing: .4px;
    line-height: 1.3;
    color: #1D3557;
    font-weight: 700;
    margin: 0;
    margin-top: 5px;
    text-transform: capitalize;
}

.display-table {
    display: table;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    min-height: 100%;
    height: 100vh;
    text-align: center;
}

.main-btn {
    position: relative;
    background: #5FA8D3;
    color: #F5F5F5;
    min-width: 150px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-align: center;
    padding: 15px 20px;
    border: 2px solid #5FA8D3;
    outline: none;
    cursor: pointer;
    margin-right: 14px;
    overflow: hidden;
}

.main-btn span {
    position: relative;
    z-index: 2;
}

.main-btn:before {
    content: '';
    background-color: #1D3557;
    position: absolute;
    top: 0;
    left: -25%;
    height: 104%;
    width: 0;
    -webkit-transform: skew(-22deg);
    -moz-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    -o-transform: skew(-22deg);
    transform: skew(-22deg);
    transition-duration: .6s;
    z-index: 1;
}

.main-btn:hover:before {
    width: 190%;
}

.main-btn:hover,
.custom-btn:hover {
    border: 2px solid #1D3557;
}

.custom-btn {
    background: transparent;
    color: #F5F5F5;
    border: 2px solid #F5F5F5;
    margin-right: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #F5F5F5;
}

.loading .loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loading .loading-content .inner-item {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: #5FA8D3;
    border-radius: 50%;
    -webkit-transform: scale(.1);
    -moz-transform: scale(.1);
    -ms-transform: scale(.1);
    -o-transform: scale(.1);
    transform: scale(.1);
    -webkit-transform-origin: center left;
    -moz-transform-origin: center left;
    -ms-transform-origin: center left;
    -o-transform-origin: center left;
    transform-origin: center left;
    -webkit-animation: loading 4s infinite;
    animation: loading 4s infinite;
}

.loading .loading-content .inner-item:nth-of-type(2) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.loading .loading-content .inner-item:nth-of-type(3) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.loading .loading-content .inner-item:nth-of-type(4) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.loading .loading-content .inner-item:nth-of-type(5) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: scale(.1);
        -moz-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
    }

    45% {
        left: 120px;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    90% {
        left: 294px;
        -webkit-transform: scale(.1);
        -moz-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: scale(.1);
        -moz-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
    }

    45% {
        left: 120px;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    90% {
        left: 294px;
        -webkit-transform: scale(.1);
        -moz-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
    }
}

/* --------------------------------------
   3. Upperbar
-----------------------------------------*/

.upper-bar {
    background-color: #F5F5F5;
}

.upper-bar .inner-bar {
    background-color: rgb(16, 97, 164);
    color: #F5F5F5;
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
}

.upper-bar .inner-bar .contact-bar li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
}

.upper-bar .inner-bar .contact-bar li a {
    color: #F5F5F5;
}

.upper-bar .inner-bar .contact-bar li i {
    margin-right: 5px;
}

.upper-bar .inner-bar .social-media-bar li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
}

.upper-bar .inner-bar .social-media-bar li a {
    color: #F5F5F5;
}

/* --------------------------------------
   4. Navbar
-----------------------------------------*/

.header-inner {
    background: #F5F5F5;
    z-index: 999;
}

.header-inner.active-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.header-inner .my-logo {
    position: relative;
    color: #1D3557;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
}

.header-inner .my-logo .flaticon-chakra:before {
    margin-left: 0;
    font-size: 40px;
    color: #5FA8D3;
    margin-right: 8px;
    position: relative;
    top: 8px;
}

.header-inner .menu-toggle {
    background: #5FA8D3;
    border-radius: 3px;
    float: right;
    padding: 8px;
    margin: 20px 0;
    border: none;
    outline: none;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.header-inner .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #F5F5F5;
}

.header-inner .menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.header-inner.menu-active .menu-toggle .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.header-inner.menu-active .menu-toggle .bar:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.header-inner.menu-active .menu-toggle .bar:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.header-inner .main-menu {
    position: relative;
}

.header-inner .nav-search {
    float: right;
    line-height: 78px;
    margin-left: 10px;
    padding-left: 0;
}

.header-inner .nav-search li {
    display: inline-block;
    margin-right: 10px;
}

.header-inner .nav-search li:last-child {
    margin-right: 0;
}

.header-inner .nav-search li a {
    color: #1D3557;
    font-size: 15px;
    font-weight: 700;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-inner .nav-search li a.fa-search {
    font-weight: 400;
}

.header-inner .nav-search li a:hover {
    color: #5FA8D3;
}

.header-inner .search-form {
    position: absolute;
    top: 79px;
    right: 0;
    width: 295px;
    padding: 12px;
    background: #F5F5F5;
    border-top: 2px solid #5FA8D3;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.header-inner .search-form.active {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.header-inner .search-form input[type="search"] {
    background: #D6EEF8;
    color: #2F3E46;
    width: 100%;
    height: 50px;
    padding: 0 50px 0 18px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
}

.header-inner .search-form .search-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: #5FA8D3;
    color: #F5F5F5;
    cursor: pointer;
    outline: none;
    border: none;
}

.header-inner .search-form .search-btn:hover {
    background: #1D3557;
}

.header-inner .navbar {
    float: right;
    padding: 0;
}

.header-inner .navbar .nav>li {
    position: relative;
    margin-right: 25px;
}

.header-inner .navbar .nav li:last-child {
    margin-right: 0;
}

.header-inner .navbar .nav li a {
    display: block;
    color: #1D3557;
    padding: 30px 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-inner .navbar .nav li.active a,
.header-inner .navbar .nav li:hover a {
    color: #5FA8D3;
}

.header-inner .navbar .nav li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #5FA8D3;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-inner .navbar .nav li:hover a:before,
.header-inner .navbar .nav li.active a:before {
    width: 100%;
}

.header-inner .navbar .nav li a i {
    margin-left: 5px;
    font-weight: 600;
}

.header-inner .navbar .nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 225px;
    padding: 0;
    background: #F5F5F5;
    border-bottom: 3px solid #5FA8D3;
    list-style: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0;
}

.header-inner .navbar .nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.header-inner .navbar .nav li .dropdown li a {
    background: transparent;
    color: #4A4A4A;
    padding: 12px 15px;
    border-bottom: 1px solid #D6EEF8;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-inner .navbar .nav li .dropdown li a:hover {
    background: rgb(168, 205, 223);
    padding-left: 18px;
}

.header-inner .navbar .nav li .dropdown li a:before {
    display: none;
}

/* --------------------------------------
   5. Side Menu
-----------------------------------------*/

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    padding: 30px 20px;
    background-color: #F5F5F5;
    color: #1D3557;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    z-index: 99999;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.side-menu.open {
    right: 0;
}

.side-menu .side-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    line-height: 31px;
    text-align: center;
    border-radius: 50%;
    font-size: 17px;
    background: transparent;
    color: #5FA8D3;
    border: 1px solid #5FA8D3;
    -webkit-transition: all .01s ease-in-out;
    -moz-transition: all .01s ease-in-out;
    -o-transition: all .01s ease-in-out;
    -ms-transition: all .01s ease-in-out;
    transition: all .01s ease-in-out;
}

.side-menu .side-menu-close:hover {
    background: #5FA8D3;
    color: #F5F5F5;
    border: 1px solid #5FA8D3;
}

.side-menu .my-logo {
    color: #1D3557;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    padding-top: 30px;
}

.side-menu .my-logo .flaticon-chakra:before {
    margin-left: 0;
    font-size: 40px;
    color: #5FA8D3;
    margin-right: 8px;
    position: relative;
    top: 8px;
}

.side-menu .side-nav {
    margin: 30px 0;
}

.side-menu .side-nav li a {
    display: block;
    padding: 8px 0;
    color: #1D3557;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #D6EEF8;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.side-menu .side-nav li a:hover,
.side-menu .side-nav li a.active {
    color: #5FA8D3;
}

.side-menu .side-info h4 {
    font-size: 17px;
    font-weight: 600;
}

.side-menu .side-info p {
    font-size: 14px;
    line-height: 1.8;
    margin: 30px 0;
    color: #2F3E46;
}

.side-menu .social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.side-menu .social-icons li:last-child {
    margin-right: 0;
}

.side-menu .social-icons li a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #5FA8D3;
    border: 1px solid #5FA8D3;
    -webkit-transition: all .01s ease-in-out;
    -moz-transition: all .01s ease-in-out;
    -o-transition: all .01s ease-in-out;
    -ms-transition: all .01s ease-in-out;
    transition: all .01s ease-in-out;
}

.side-menu .social-icons li a:hover {
    background: #5FA8D3;
    color: #F5F5F5;
}

/* --------------------------------------
   6. Home
-----------------------------------------*/

.home {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.home .owl-carousel {
    height: 100vh;
}

.home .bg-cover {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.home .owl-carousel .animated {
    animation-duration: 4s;
    animation-fill-mode: both;
}

.home .owl-carousel .owl-nav .owl-next,
.home .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    color: #F5F5F5;
    width: 45px;
    height: 45px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(2, 10, 20, 0.5);
    border-radius: 3px;
    outline: none;
    z-index: 999;
}

.home .owl-carousel .owl-nav .owl-next {
    right: 10px;
}

.home .owl-carousel .owl-nav .owl-prev {
    left: 10px;
}

.home .owl-carousel .owl-nav .owl-next:hover,
.home .owl-carousel .owl-nav .owl-prev:hover {
    background-color: rgb(25, 59, 79);
}

.home .overlay {
    background-color: rgba(1, 6, 12, 0.5);
    height: 100%;
}

.home .home-content h5 {
    color: rgb(158, 211, 241);
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.home .home-content p {
    color: #F5F5F5;
    line-height: 1.6;
    letter-spacing: .3px;
    margin-bottom: 30px;
}

.home .home-content h1 {
    color: rgb(216, 225, 230);
    font-size: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 25px;
    line-height: 1.2;
}

.home .home-content .custom-btn {
    margin-right: 14px;
}

/*-------- Home Demo2 --------*/

.home.demo2 .home-content h5,
.home.demo2 .home-content p {
    color: #F5F5F5;
    text-align: left;
}

.home.demo2 .home-content h1 {
    color: #F5F5F5;
    text-align: left;
}

.home.demo2 .home-content .my-btn {
    text-align: left;
}

.home.demo2 .home-image {
    margin-top: -85px;
}

/*-------- Home Demo3 --------*/

.home.demo3 {
    background: #F2E9E4;
}

.home.demo3 .home-content h5,
.home.demo3 .home-content .my-btn {
    text-align: left;
}

.home.demo3 .home-content p,
.home.demo3 .home-content h1 {
    color: #1D3557;
    text-align: left;
}

.home.demo3 .home-content .custom-btn {
    background: #F5F5F5;
    color: #5FA8D3;
    border: 2px solid #F5F5F5;
    transition-duration: .1s;
}

.home.demo3 .home-content .custom-btn:hover {
    color: #F5F5F5;
    border: 2px solid #1D3557;
}

.home.demo3 .home-image {
    margin-top: 60px;
}

/* --------------------------------------
   7. Services
-----------------------------------------*/

.services {
    padding-top: 100px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.services .service {
    background-color: #F5F5F5;
    text-align: center;
    padding: 25px 30px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.services .service .service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 53, 87, .9);
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

.services .service:hover .service-bg,
.services .service.two .service-bg {
    opacity: 1;
}

.services .service .service-bg .flaticon-lotus:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 146px;
    color: #F5F5F5;
    opacity: .1;
    margin-left: 0;
}

.services .service .service-item {
    position: relative;
    z-index: 2;
}

.services .service .service-icon i {
    background: #5FA8D3;
    display: inline-block;
    width: 70px;
    height: 70px;
    color: #F5F5F5;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all .2s cubic-bezier(.47, 0, .745, .715);
    transition: all .2s cubic-bezier(.47, 0, .745, .715);
    -webkit-animation: pulse 2s infinite cubic-bezier(.66, 0, 0, 1);
    animation: pulse 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(95, 168, 211, .6);
    box-shadow: 0 0 0 0 rgba(95, 168, 211, .6);
}

@-webkit-keyframes pulse {
    to {
        -webkit-box-shadow: 0 0 0 9px rgba(95, 168, 211, 0);
        box-shadow: 0 0 0 9px rgba(95, 168, 211, 0);
    }
}

@keyframes pulse {
    to {
        -webkit-box-shadow: 0 0 0 9px rgba(95, 168, 211, 0);
        box-shadow: 0 0 0 9px rgba(95, 168, 211, 0);
    }
}

.services .service:hover .service-icon i,
.services .service.two .service-icon i {
    background: transparent;
    -webkit-animation: none;
    animation: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.services .service .service-icon i:before {
    color: #F5F5F5;
    font-size: 45px;
    margin-left: 0;
}

.services .service h4 {
    color: #1D3557;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 15px 0;
    letter-spacing: .2px;
    text-transform: capitalize;
}

.services .service p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2F3E46;
}

.services .service:hover h4,
.services .service.two h4,
.services .service:hover p,
.services .service.two p {
    color: #F5F5F5;
}

/* --------------------------------------
   8. About Us
-----------------------------------------*/

.about-us {
    background-color: #F5F5F5;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.about-us .about-info h3 {
    font-size: 17px;
    letter-spacing: .4px;
    color: #5FA8D3;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-us .about-info h4 {
    font-size: 25px;
    color: #1D3557;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-us .about-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #2F3E46;
    margin-bottom: 25px;
}

.about-us .about-info p:first-of-type {
    margin-bottom: 10px;
}

.about-us .about-info .progress-container {
    position: relative;
    margin-bottom: 30px;
}

.about-us .about-info .progress-container .percent {
    position: absolute;
    top: -12px;
    width: 42px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    background-color: transparent;
    color: #5FA8D3;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #5FA8D3;
    border-radius: 3px;
}

.about-us .about-info .progress-container .percent:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    background-color: #F5F5F5;
    padding: 4px;
    display: block;
    border: 1px solid #5FA8D3;
    border-width: 0 1px 1px 0;
    transform: translateX(-50%) rotate(45deg);
}

.about-us .about-info .progress-container h4 {
    color: #1D3557;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-us .about-info .progress-container .progress {
    height: 1px;
    background: #D6EEF8;
}

.about-us .about-info .progress-container .progress-bar {
    width: 0;
    background: #5FA8D3;
    -webkit-transition: all 1.2s ease-in-out;
    -moz-transition: all 1.2s ease-in-out;
    -o-transition: all 1.2s ease-in-out;
    -ms-transition: all 1.2s ease-in-out;
    transition: all 1.2s ease-in-out;
}

.about-us .about-image {
    position: relative;
}

.about-us .about-image .about-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-us .about-image .about-bg .flaticon-lotus:before {
    margin-left: 0;
    position: absolute;
    top: -42%;
    right: 0;
    font-size: 40em;
    width: 96%;
    height: 50%;
    color: #5FA8D3;
    opacity: .075;
}

.about-us .about-image img {
    position: relative;
    display: block;
    max-width: 100%;
    height: auto;
    z-index: 2;
}

/* --------------------------------------
   9. Schedule
-----------------------------------------*/
.class-schedule {
    padding-top: 100px;
    padding-bottom: 100px;
}

.class-schedule .filter-menu {
    text-align: center;
    margin-bottom: 50px;
}

.class-schedule .filter-menu .list-filter li {
    display: inline-block;
    margin: 0 10px 4px 0;
    padding: 8px 20px;
    background-color: transparent;
    color: #5FA8D3;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    border: 1px solid #5FA8D3;
    border-radius: 4px;
    cursor: pointer;
}

.class-schedule .filter-menu .list-filter li:last-child {
    margin-right: 0;
}

.class-schedule .filter-menu .list-filter li.active {
    background-color: #5FA8D3;
    color: #F5F5F5;
}

.class-schedule .timetable table {
    width: 100%;
}

.class-schedule .timetable tr {
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 2px rgba(0, 0, 0, .05);
}

.class-schedule .timetable tr td {
    border-right: 1px solid #e5e5e5;
    padding: 20px 10px;
    color: #2F3E46;
    font-size: 15px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .05);
}

.class-schedule .timetable tr td.time,
.class-schedule .timetable tr.table-head td {
    font-weight: 500;
}

.class-schedule .timetable tr td h4 {
    color: #5FA8D3;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.class-schedule .timetable tr td span {
    font-size: 14px;
    letter-spacing: .5px;
}

.class-schedule .timetable tr td h5 {
    font-size: 14px;
    letter-spacing: .5px;
    margin-top: 8px;
    text-transform: capitalize;
}

.class-schedule .timetable-small .group-list {
    margin-bottom: 35px;
}

.class-schedule .timetable-small h3 {
    color: #1D3557;
    font-size: 17px;
    letter-spacing: .4px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.class-schedule .timetable-small ul li {
    display: block;
    background: #5FA8D3;
    color: #F5F5F5;
    padding: 10px 15px;
    position: relative;
    margin-bottom: 10px;
}

.class-schedule .timetable-small ul li h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .4px;
    text-align: left;
    text-transform: capitalize;
}

.class-schedule .timetable-small ul li span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    font-size: 14px;
    letter-spacing: .4px;
}

/* --------------------------------------
   10. Call To Action
-----------------------------------------*/

.call-to-action {
    background: #5FA8D3;
    color: #F5F5F5;
    padding: 65px 0;
    position: relative;
}

.call-to-action .flaticon-lotus:before {
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .06;
    font-size: 15em;
    z-index: 1;
}

.call-to-action .content {
    position: relative;
    z-index: 2;
}

.call-to-action h3 {
    font-size: 35px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.call-to-action p {
    color: #F5F5F5;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.call-to-action .main-btn {
    margin-top: 25px;
}

/* --------------------------------------
   11. Events
-----------------------------------------*/

.events {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F5F5F5;
}

.events .event {
    background-color: #F5F5F5;
    border: 1px solid #D6EEF8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.events .event .event-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.events .event .event-content {
    position: relative;
    padding: 20px 10px 20px 80px;
}

.events .event .event-content .event-title h4 {
    color: #1D3557;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.events .event .event-content .event-title h4:hover {
    color: #5FA8D3;
}

.events .event .event-content .event-info li {
    display: inline-block;
    font-size: 14px;
    color: #2F3E46;
    letter-spacing: .4px;
    margin-bottom: 10px;
}

.events .event .event-content .event-info li.time {
    margin-right: 15px;
}

.events .event .event-content .event-info li i {
    display: inline-block;
    margin-right: 5px;
}

.events .event .event-content .event-info li i:before {
    color: #5FA8D3;
    font-size: 15px;
    margin-left: 0;
}

.events .event .event-content .event-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #2F3E46;
    margin-bottom: 10px;
}

.events .event .event-content .event-more {
    display: inline-block;
    color: #5FA8D3;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .1px;
    text-transform: capitalize;
}

.events .event .event-content .event-date {
    position: absolute;
    top: 22px;
    left: 0;
    background-color: #5FA8D3;
    color: #F5F5F5;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 15px;
    line-height: 1;
    text-align: center;
}

.events .event .event-content .event-date span {
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.events .my-btn {
    margin-top: 20px;
}

/* Make all event cards the same height in each row */
.events .row>[class*="col-"] {
    display: flex;
}

.events .event {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Fix the image area height and crop the image */
.events .event .event-img {
    height: 260px;
    /* pick any height you like */
    overflow: hidden;
}

/* Make every image fill that box and crop nicely */
.events .event .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* <— key line */
    display: block;
}

/* --------------------------------------
   12. Our Team
-----------------------------------------*/

.team {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    background-color: #F5F5F5;
}

.team .member .member-img {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
}

.team .member .member-img img {
    /* display: block;
    max-width: 100%;
    height: auto; */

    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.team .member .member-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team .member .member-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(29, 53, 87, .5);
    transform: scaleX(0);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team .member .member-img:hover .overlay {
    transform: scaleX(1);
}

.team .member .member-img .overlay .social-media {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.team .member .member-img .social-media i {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    background: #5FA8D3;
    color: #F5F5F5;
    margin-right: 6px;
    transform: translateY(40px);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.team .member .member-img .social-media i:hover {
    background: #1D3557;
}

.team .member .member-img:hover .social-media i {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.team .member .member-img:hover .social-media .fa-facebook {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.team .member .member-img:hover .social-media .fa-twitter {
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    -moz-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
}

.team .member .member-img:hover .social-media .fa-google-plus {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.team .member .member-img:hover .social-media .fa-instagram {
    -webkit-transition-delay: .45s;
    -o-transition-delay: .45s;
    -moz-transition-delay: .45s;
    -o-transition-delay: .45s;
    transition-delay: .45s;
}

.team .member .member-info .member-name {
    color: #1D3557;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .3px;
    margin-top: 20px;
    margin-bottom: 6px;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
}

.team .member .member-info span {
    display: block;
    color: #5FA8D3;
    font-weight: 400;
    text-align: center;
}

/* --------------------------------------
   13. Pricing
-----------------------------------------*/

.pricing {
    background: #F5F5F5;
    padding-top: 100px;
    padding-bottom: 70px;
    overflow: hidden;
}

.pricing .pricing-plans .pricing-plan {
    background-color: #F5F5F5;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #D6EEF8;
    border-radius: 4px;
    margin-bottom: 30px;
}

.pricing .pricing-plans .pricing-plan:hover {
    -webkit-transform: translateY(-7px);
    -moz-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
}

.pricing .pricing-plans .pricing-plan .pricing-head {
    position: relative;
    background: #F5F5F5;
    padding-top: 40px;
    padding-bottom: 40px;
    border: 1px solid #D6EEF8;
    border-radius: 4px;
}

.pricing .pricing-plans .pricing-plan.two .pricing-head {
    background: #5FA8D3;
}

.pricing .pricing-plans .pricing-plan .pricing-head .flaticon-lotus:before {
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F5F5F5;
    opacity: .08;
    font-size: 10em;
    z-index: 0;
}

.pricing .pricing-plans .pricing-plan .pricing-title {
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.pricing .pricing-plans .pricing-plan .pricing-title h2 {
    color: #1D3557;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pricing .pricing-plans .pricing-plan.two .pricing-title h2 {
    color: #F5F5F5;
}

.pricing .pricing-plans .pricing-plan .pricing-price {
    position: relative;
    z-index: 1;
}

.pricing .pricing-plans .pricing-plan .pricing-price p {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    margin: 0;
}

.pricing .pricing-plans .pricing-plan .pricing-price p {
    color: #5FA8D3;
}

.pricing .pricing-plans .pricing-plan.two .pricing-price p {
    color: #F5F5F5;
}

.pricing .pricing-plans .pricing-price p .up {
    font-size: 19px;
    vertical-align: top;
}

.pricing .pricing-plans .pricing-price p .price {
    vertical-align: middle;
}

.pricing .pricing-plans .pricing-price p .down {
    font-size: 14px;
    vertical-align: bottom;
}

.pricing .pricing-plans .pricing-plan .pricing-features {
    margin: 0;
    padding: 30px 0;
}

.pricing .pricing-plans .pricing-features li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #2F3E46;
}

.pricing .pricing-plans .pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing .pricing-plans .pricing-plan .main-btn {
    min-width: 155px;
    background: transparent;
    color: #5FA8D3;
    border: 2px solid #5FA8D3;
    transition: color .1s;
}

.pricing .pricing-plans .pricing-plan .main-btn:hover {
    color: #F5F5F5 !important;
}

.pricing .pricing-plans .pricing-plan.two .main-btn {
    background: #5FA8D3;
    color: #F5F5F5;
}

/* --------------------------------------
   14. Testimonials
-----------------------------------------*/

.testimonials {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.testimonials .flaticon-lotus:before {
    margin-left: 0;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #5FA8D3;
    opacity: .037;
    font-size: 30em;
    z-index: 0;
    height: 368px;
}

.owl-theme .owl-nav {
    margin-top: 20px;
}

.testimonials .owl-carousel .owl-nav .owl-next,
.testimonials .owl-carousel .owl-nav .owl-prev {
    font-size: 24px;
    color: #1D3557;
    width: 45px;
    height: 45px;
    line-height: 36px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #D6EEF8;
    border-radius: 3px;
    outline: none;
    z-index: 999;
    margin: 0 7px;
}

.testimonials .owl-carousel .owl-nav .owl-next:hover,
.testimonials .owl-carousel .owl-nav .owl-prev:hover {
    background-color: #5FA8D3;
}

.testimonials .testimonial-box {
    background: transparent;
    padding: 50px 40px;
    text-align: center;
    border-radius: 10px;
    width: 75%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #D6EEF8;
}

.testimonials .testimonial-box .client-info {
    background: transparent;
}

.testimonials .testimonial-box .client-pic {
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    border-radius: 10px 0 0 10px;
}

.testimonials .testimonial-box .client-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: inline-block;
    border: 3px solid #D6EEF8;
}

.testimonials .client-details h6 {
    color: #1D3557;
    font-size: 18px;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.testimonials .client-details span {
    color: #2F3E46;
    position: relative;
    z-index: 1;
}

.testimonials .testimonial-box .description .star {
    float: right;
    margin-right: 6px;
}

.testimonials .testimonial-box .description .star i {
    font-size: 16px;
    color: #5FA8D3;
}

.testimonials .testimonial-box .description p {
    color: #2F3E46;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 20px;
}

/* --------------------------------------
   15. Blog
-----------------------------------------*/

.blog {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #F5F5F5;
}

.blog .post {
    background-color: #F5F5F5;
    border: 1px solid #D6EEF8;
    border-radius: 4px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
    margin-bottom: 30px;
}

.blog .post-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.blog .post .post-content {
    padding: 20px 0;
    position: relative;
}

.blog .post .post-content .post-title h4 {
    color: #1D3557;
    letter-spacing: .5px;
    margin-bottom: 15px;
    font-weight: 600;
    padding: 0 20px;
}

.blog .post .post-content:hover .post-title h4 {
    color: #5FA8D3;
}

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 0;
    color: #2F3E46;
    font-size: 15px;
}

.blog .post .post-content .post-info {
    margin-bottom: 0;
    padding: 15px 20px 0;
    overflow: hidden;
}

.blog .post .post-content .post-info li {
    display: inline-block;
    color: #2F3E46;
    letter-spacing: .3px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
}

.blog .post .post-content .post-info li .post-more {
    color: #5FA8D3;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.blog .post .post-content .post-info li .post-more i {
    margin-left: 4px;
}

.blog .post .post-content .post-date {
    position: absolute;
    top: -60px;
    right: 0px;
    width: 50px;
    height: 60px;
    background: #5FA8D3;
    border: 1px solid #5FA8D3;
    color: #F5F5F5;
    border-radius: 4px 0 0 4px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .3px;
}

.blog .post .post-content .post-date span {
    display: block;
    line-height: 1;
    margin-top: 12px;
}

.blog .my-btn {
    text-align: center;
    margin-top: 20px;
}

/* --------------------------------------
   16. Contact
-----------------------------------------*/

.contact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #f8f9fa 100%);
    overflow: hidden;
    min-height: 100vh;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%235FA8D3" opacity="0.1"/></svg>') repeat;
    z-index: 0;
}

.contact .flaticon-lotus:before {
    content: "🪷";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    opacity: 0.03;
    z-index: 1;
    color: #5FA8D3;
}

.container {
    position: relative;
    z-index: 2;
}

.contact-boxes {
    margin-bottom: 60px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(95, 168, 211, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 168, 211, 0.1), transparent);
    transition: left 0.6s;
}

.contact-box:hover::before {
    left: 100%;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(95, 168, 211, 0.15);
    border-color: rgba(95, 168, 211, 0.3);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5FA8D3, #4a90b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-box:hover .icon-box::before {
    opacity: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.icon-box i {
    font-size: 32px;
    color: white;
    z-index: 1;
    position: relative;
}

.content-box h5 {
    color: #2F3E46;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.content-box p {
    color: #2F3E46;
    font-size: 15px;
    margin-bottom: 8px;
    opacity: 0.8;
    font-weight: 500;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    position: relative;
    border: 4px solid #5FA8D3;
    background: linear-gradient(45deg, #5FA8D3, #4a90b8);
    padding: 4px;
}

.map-container::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: linear-gradient(45deg, #5FA8D3, #4a90b8, #5FA8D3, #4a90b8);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.map-inner {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: white;
}

.map-container iframe {
    border-radius: 20px;
    filter: contrast(1.1) saturate(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: contrast(1.2) saturate(1.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(95, 168, 211, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #5FA8D3, transparent, #5FA8D3);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-form:hover::before {
    opacity: 0.1;
}

.form-group {
    position: relative;
    margin-bottom: 40px;
}

.form-control {
    background-color: transparent;
    color: #2F3E46;
    border: 0;
    border-bottom: 2px solid rgba(47, 62, 70, 0.2);
    outline: none;
    box-shadow: none;
    border-radius: 0;
    height: 50px;
    padding: 12px 0;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-bottom-color: #5FA8D3;
    box-shadow: 0 2px 0 0 rgba(95, 168, 211, 0.2);
}

textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 18px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    font-weight: 500;
    cursor: text;
    color: rgba(47, 62, 70, 0.7);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.form-control:focus~label,
.form-control:not([value=""])~label,
textarea:not([data-value=""])~label {
    top: -20px;
    font-size: 14px;
    color: #5FA8D3;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #5FA8D3, #4a90b8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.form-control:focus~.input-border {
    transform: scaleX(1);
}

.contact-btn {
    background: linear-gradient(135deg, #5FA8D3, #4a90b8);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    float: right;
    box-shadow: 0 10px 30px rgba(95, 168, 211, 0.3);
}

.contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 168, 211, 0.4);
}

.contact-btn:active {
    transform: translateY(-1px);
}

.contact-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    border-radius: 15px;
    font-size: 15px;
    padding: 15px 25px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #37983b, #2d7a30);
    color: white;
    border-color: #37983b;
    box-shadow: 0 10px 30px rgba(55, 152, 59, 0.3);
}

.alert-danger {
    background: linear-gradient(135deg, #f54033, #d63031);
    color: white;
    border-color: #f54033;
    box-shadow: 0 10px 30px rgba(245, 64, 51, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .contact-box {
        margin-bottom: 30px;
        height: auto;
        padding: 30px 20px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .icon-box i {
        font-size: 24px;
    }

    .content-box h5 {
        font-size: 18px;
    }

    .content-box p {
        font-size: 14px;
    }

    .contact-btn {
        width: 100%;
        float: none;
        margin-top: 20px;
    }
}

/* Accessibility improvements */
.contact-box:focus-within {
    outline: 2px solid #5FA8D3;
    outline-offset: 2px;
}

.form-control:focus {
    outline: 2px solid transparent;
}

.contact-btn:focus {
    outline: 2px solid #2F3E46;
    outline-offset: 2px;
}

/* --------------------------------------
   17. Newsletter
-----------------------------------------*/

.newsletter {
    background: #F5F5F5;
}

.newsletter .newsletter-inner {
    background: #5FA8D3;
    padding: 60px 40px;
    border-radius: 7px;
    position: relative;
    z-index: 3;
    margin-bottom: -100px;
}

.newsletter .newsletter-inner h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .2px;
    color: #F5F5F5;
    margin-bottom: 8px;
}

.newsletter .newsletter-inner p {
    font-size: 15px;
    color: #F5F5F5;
    margin: 0;
}

.newsletter .newsletter-inner .form-group {
    margin: 0;
    margin-top: 4px;
    overflow: hidden;
}

.newsletter .newsletter-inner .form-control {
    float: left;
    width: 70%;
    margin-right: 3%;
    color: #2F3E46;
    outline: none;
    border: none;
    border-radius: 4px;
    height: 50px;
    padding: 12px 30px;
    background: #F5F5F5;
}

.newsletter .newsletter-inner .main-btn {
    float: left;
    width: 27%;
    min-width: 155px;
    margin: 0;
    border-color: #F5F5F5;
    padding: 13px 20px;
    height: 50px;
}

.newsletter .newsletter-inner .main-btn:hover {
    border-color: #1D3557;
}

/* --------------------------------------
   18. Footer
-----------------------------------------*/

.footer {
    background-color: rgb(7, 81, 108);
}

.footer .footer-top {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    border-bottom: 1px solid #30496E;
}

.footer .flaticon-lotus:before {
    margin-left: 0;
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #30496E;
    opacity: .05;
    font-size: 23em;
    z-index: 0;
    height: 300px;
}

.footer .footer-top .footer-menu {
    position: relative;
    z-index: 1;
}

.footer .footer-top .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-top .footer-logo .my-logo {
    position: relative;
    color: #F5F5F5;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
    top: -6px;
}

.footer .footer-top .footer-logo .my-logo .flaticon-chakra:before {
    margin-left: 0;
    font-size: 28px;
    color: #5FA8D3;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.footer .footer-top ul li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #F5F5F5;
}

.footer .footer-top ul li:last-of-type {
    margin-bottom: 10px;
}

.footer .footer-top .social-media {
    margin-right: 0;
}

.footer .footer-top .social-media li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
}

.footer .footer-top .social-media li i {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 36px;
    text-align: center;
    font-size: 17px;
    background: transparent;
    color: #5FA8D3;
    border: 1px solid #5FA8D3;
    border-radius: 50%;
}

.footer .footer-top .social-media li i:hover {
    background: #5FA8D3;
    border: 1px solid #5FA8D3;
    color: #F5F5F5;
}

.footer .footer-top .footer-item h4 {
    color: #F5F5F5;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .7px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer .footer-top .footer-item ul li a {
    color: #F5F5F5;
    padding-left: 10px;
}

.footer .footer-top .footer-item ul li a:hover {
    color: #5FA8D3;
    padding-left: 14px;
}

.footer .footer-top .footer-item ul li a:before {
    content: '\f105';
    font-family: 'FontAwesome';
    position: relative;
    left: -10px;
}

.footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer .footer-bottom .copyright p {
    color: #F5F5F5;
    font-size: 16px;
    letter-spacing: .3px;
    margin: 0;
}

.footer .footer-bottom .copyright p span {
    font-family: 'Poppins', sans-serif;
    color: #5FA8D3;
    font-weight: 600;
    letter-spacing: .5px;
}

/* --------------------------------------
   19. Scroll To Top
-----------------------------------------*/

.scroll-top {
    position: fixed;
    bottom: 107%;
    right: 25px;
    width: 52px;
    height: 52px;
    line-height: 48px;
    font-size: 17px;
    text-align: center;
    color: #F5F5F5;
    background: #5FA8D3;
    border: 2px solid #5FA8D3;
    border-radius: 4px;
    z-index: 999;
    -webkit-transition: all .7s linear;
    -moz-transition: all .7s linear;
    -o-transition: all .7s linear;
    -ms-transition: all .7s linear;
    transition: all .7s linear;
    overflow: hidden;
}

.scroll-top.active {
    bottom: 25px;
}

.scroll-top:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    border: 2px solid #1D3557;
}

.scroll-top span {
    position: relative;
    z-index: 2;
}

.scroll-top:before {
    content: '';
    background-color: #1D3557;
    position: absolute;
    top: 0;
    left: -25%;
    height: 104%;
    width: 0;
    -webkit-transform: skew(-22deg);
    -moz-transform: skew(-22deg);
    -ms-transform: skew(-22deg);
    -o-transform: skew(-22deg);
    transform: skew(-22deg);
    transition-duration: .6s;
    z-index: 1;
}

.scroll-top:hover:before {
    width: 190%;
}

/* Media queries remain the same structure but with updated colors */

/* --------------------------------------
   20. Media Queries
-----------------------------------------*/

/* Extra Large Devices */
@media (min-width: 1200px) {}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    /*=========== Navbar ============*/
    .header-inner .my-logo {
        font-size: 19px;
    }

    .header-inner .my-logo .flaticon-chakra:before {
        font-size: 39px;
        margin-right: 5px;
    }

    .header-inner .navbar .nav>li {
        margin-right: 10px;
    }

    /*=========== Home ============*/
    .home.demo2 .home-image {
        margin-left: -52px;
    }

    .home.demo3 .home-image {
        margin-top: 100px;
    }

    /*=========== About Us ============*/
    .about-us .about-image .about-bg .flaticon-lotus:before {
        top: -50%;
        font-size: 35em;
        width: 99%;
    }

    /*=========== Newsletter ============*/
    .newsletter .newsletter-inner .form-group {
        position: relative;
        margin-top: 0;
    }

    .newsletter .newsletter-inner .form-control {
        float: none;
        width: 100%;
        margin-right: 0;
        border-radius: 4px;
        height: 60px;
    }

    .newsletter .newsletter-inner .main-btn {
        float: none;
        width: auto;
        position: absolute;
        top: 50%;
        right: 2.5px;
        transform: translateY(-50%);
        margin: 0;
        border-color: #5FA8D3;
        height: 55px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    /*=========== Upper bar ============*/
    .upper-bar .social-media-bar {
        margin-top: 5px;
    }

    /*=========== Navbar ============*/
    .header-inner .nav-search {
        line-height: 68px;
    }

    .header-inner .search-form {
        top: 69px;
    }

    .header-inner .navbar {
        float: left;
    }

    .header-inner .navbar-nav {
        flex-direction: row;
    }

    .header-inner .navbar .nav>li {
        margin-right: 18px;
    }

    .header-inner .navbar .nav li a {
        padding: 25px 0;
        font-weight: 600;
    }

    /*=========== Home ============*/
    .home.demo2 .home-image {
        margin-left: -20px;
    }

    .home.demo3 .home-image {
        margin-top: 100px;
    }

    /*=========== Services ============*/
    .services .service.three .service-bg,
    .services .service.six .service-bg {
        opacity: 1;
    }

    .services .service.three .service-icon i,
    .services .service.six .service-icon i {
        background: transparent;
        -webkit-animation: none;
        animation: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .services .service.three h4,
    .services .service.six h4,
    .services .service.three p,
    .services .service.six p {
        color: #fff;
    }

    /*=========== About Us ============*/
    .about-us .info {
        order: 1;
    }

    .about-us .image {
        order: 0;
    }

    .about-us .about-image {
        margin-bottom: 45px;
    }

    .about-us .about-image .about-bg .flaticon-lotus:before {
        top: -31%;
        font-size: 44em;
        width: 96%;
        height: 65%;
    }

    /*=========== Schedule ============*/
    .class-schedule {
        padding-bottom: 65px;
    }

    /*=========== Our Team ============*/
    .team {
        padding-bottom: 70px;
    }

    .team .member {
        margin-bottom: 30px;
    }

    /*=========== Pricing ============*/
    .pricing {
        padding-bottom: 70px;
    }

    .pricing .pricing-plan {
        margin-bottom: 30px;
    }

    /*=========== Testimonials ============*/
    .testimonials .testimonial-box {
        width: 100%;
    }

    /*=========== Newsletter ==========*/
    .newsletter .newsletter-inner .form-group {
        margin-top: 20px;
    }

    /*=========== Footer ==========*/
    .footer .footer-top {
        padding-bottom: 40px;
    }

    .footer .footer-top .footer-menu {
        margin-bottom: 30px;
    }

    .footer .footer-top .social-media li i {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 16px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {

    .main-title {
        margin-bottom: 55px;
    }

    /*=========== Upper bar ============*/
    .upper-bar .social-media-bar {
        display: none;
    }

    /*=========== Navbar ============*/
    .header-inner .menu-toggle {
        display: block;
    }

    .header-inner .nav-search {
        display: none;
    }

    .header-inner .navbar {
        float: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        transform-origin: 0 0;
    }

    .header-inner.menu-active .navbar {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
        max-height: 543px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .header-inner .navbar .nav>li {
        margin-right: 0;
    }

    .header-inner .navbar .nav li a {
        padding: 12px 8px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

    .header-inner .navbar .nav li a:before {
        content: none;
    }

    .header-inner .navbar .nav li a i {
        position: absolute;
        right: 11px;
        top: 0;
        font-size: 15px;
        line-height: 44px;
    }

    .header-inner .navbar .nav .dropdown {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
        display: none;
        transition: none;
    }

    .header-inner .navbar .nav li .dropdown li a {
        padding-left: 25px;
    }

    .header-inner .navbar .nav li .dropdown li a:hover {
        padding-left: 28px;
    }

    .header-inner .navbar .nav .dropdown.open {
        display: block;
        /* your mobile CSS sets display:none by default */
    }

    /*=========== Home ============*/
    .home .home-content h5 {
        font-size: 21px;
    }

    .home .home-content h1 {
        font-size: 58px;
    }

    /*=========== Services ============*/
    .services {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .services .service.four .service-bg,
    .services .service.six .service-bg {
        opacity: 1;
    }

    .services .service.four .service-icon i,
    .services .service.six .service-icon i {
        background: transparent;
        -webkit-animation: none;
        animation: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .services .service.four h4,
    .services .service.six h4,
    .services .service.four p,
    .services .service.six p {
        color: #fff;
    }

    /*=========== About Us ============*/
    .about-us {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about-us .info {
        order: 1;
    }

    .about-us .image {
        order: 0;
    }

    .about-us .about-image {
        margin-bottom: 45px;
    }

    .about-us .about-image .about-bg .flaticon-lotus:before {
        top: -220px;
        font-size: 39em;
        width: 101%;
        height: 4%;
    }

    /*=========== Schedule ============*/
    .class-schedule {
        padding-top: 80px;
        padding-bottom: 45px;
    }

    /*=========== Events ============*/
    .events {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*=========== Our Team ============*/
    .team {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .team .member {
        margin-left: 80px;
        margin-right: 80px;
        margin-bottom: 30px;
    }

    /*=========== Pricing ============*/
    .pricing {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    /*=========== Testimonials ============*/
    .testimonials {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .testimonials .testimonial-box {
        width: 100%;
    }

    /*=========== Blog ============*/
    .blog {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*=========== Contact ============*/
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*=========== Newsletter ============*/
    .newsletter .newsletter-inner {
        margin-bottom: -80px;
    }

    .newsletter .newsletter-inner .form-group {
        position: relative;
        margin-top: 20px;
    }

    .newsletter .newsletter-inner .form-control {
        float: none;
        width: 100%;
        margin-right: 0;
        border-radius: 4px;
        height: 60px;
    }

    .newsletter .newsletter-inner .main-btn {
        float: none;
        width: auto;
        position: absolute;
        top: 50%;
        right: 2.5px;
        transform: translateY(-50%);
        margin: 0;
        border-color: #5FA8D3;
        height: 55px;
    }

    /*=========== Footer ============*/
    .footer .footer-top {
        padding-top: 160px;
        padding-bottom: 40px;
    }

    .footer .footer-top .footer-menu {
        margin-bottom: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    /*=========== Upper bar ============*/
    .upper-bar .container {
        padding: 0;
    }

    .upper-bar .inner-bar {
        border-radius: 0;
    }

    /*=========== Navbar ============*/
    .header-inner .container {
        padding: 0;
    }

    .header-inner .my-logo {
        padding-left: 15px;
    }

    .header-inner .menu-toggle {
        margin-right: 15px;
    }

    /*=========== Home ============*/
    .home .home-content h5 {
        font-size: 18px;
    }

    .home .home-content h1 {
        font-size: 45px;
    }

    .home .home-content p {
        font-size: 15px;
    }

    .home .home-content .custom-btn {
        margin-top: 12px;
    }

    /*=========== About Us ============*/
    .about-us .about-info h3 {
        font-size: 16px;
    }

    .about-us .about-info h4 {
        font-size: 21px;
    }

    .about-us .about-image .about-bg .flaticon-lotus:before {
        top: -207px;
        font-size: 36em;
        width: 103%;
        height: 0%;
    }

    .about-us .about-info .progress-container .percent {
        font-size: 13px;
    }

    .about-us .about-info .progress-container h4 {
        font-size: 14px;
    }

    /*=========== Schedule ============*/
    .class-schedule .filter-menu .list-filter li {
        display: block;
        margin: 0;
        margin-bottom: 8px;
    }

    /*=========== Call To Action ============*/
    .call-to-action h3 {
        font-size: 30px;
    }

    /*=========== Events ============*/
    .events .event .event-content .event-title h4 {
        font-size: 17px;
        letter-spacing: 0;
    }

    .events .event .event-content .event-info li {
        font-size: 13px;
    }

    .events .event .event-content .event-more {
        font-size: 14px;
    }

    .events .event .event-content .event-date {
        font-size: 15px;
        padding: 12px;
    }

    /*=========== Our Team ============*/
    .team .member {
        margin-left: 0;
        margin-right: 0;
    }

    .team .member .member-img img {
        width: 100%;
    }

    /*=========== Testimonials ============*/
    .testimonials .client-details h6 {
        font-size: 17px;
    }

    .testimonials .testimonial-box .description p {
        font-size: 14px;
    }

    /*=========== Blog ============*/
    .blog .post .post-content .post-title h4 {
        font-size: 17px;
    }

    /*=========== Newsletter ============*/
    .newsletter .newsletter-inner {
        padding: 40px 25px;
    }

    .newsletter .newsletter-inner h2 {
        font-size: 20px;
    }

    .newsletter .newsletter-inner p {
        font-size: 14px;
    }

    .newsletter .newsletter-inner .form-control {
        height: 50px;
    }

    .newsletter .newsletter-inner .main-btn {
        position: static;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        min-width: 140px;
        margin-top: 20px;
        border-color: #fff;
        height: 50px;
    }

    /*=========== Footer ============*/
    .footer .flaticon-lotus:before {
        top: 38%;
        font-size: 28em;
    }

    .footer .footer-bottom .copyright p {
        font-size: 15px;
    }
}

.no-scroll {
    overflow: hidden;
}