/*
Theme Name: Coaching
Description: Coaching related theme
Author: webmobi
Version: 1.0
*/
/*
-----------------------------------------------------
	GENERAL
-----------------------------------------------------
*/
.text-gray {
    color: var(--gray);
}
.text-xs {
    font-size: .75rem;
}
.text-sm {
    font-size: .875rem;
}
.text-base {
    font-size: 1rem;
}
.text-lg {
    font-size: 1.125rem;
}
.text-xl {
    font-size: 1.25rem;
}
.text-2xl {
    font-size: 1.5rem;
}
.text-3xl {
    font-size: 1.875rem;
}
.text-4xl {
    font-size: 2.25rem;
}
.text-5xl {
    font-size: 3rem;
}
.text-6xl {
    font-size: 3.75rem;
}
.font-thin {
    font-weight: 100;
}
.font-extralight {
    font-weight: 200;
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}
.font-black {
    font-weight: 900;
}
.underline {
    text-decoration: underline;
}
.line-through {
    text-decoration: line-through;
}
.no-underline {
    text-decoration: none;
}
.rounded-full {
    border-radius: 9999px;
}
.btn-white {
    color: #0d1720;
    background-color: #fff;
    border-color: #fff;
}
.underline {
    text-decoration: underline;
}
.btn {
    border: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    right: -10px;
    background-color: #000;
    opacity: 0;
    transition: all .5s ease-in-out 0s;
    top: 0;
    z-index: -1;
    transform: skewX(-15deg);
}
.btn:hover:after {
    width: 115%;
    left: -10px;
    right: auto;
    opacity: .35;
}
.btn-white:hover {
    color: var(--dark);
    background-color: #cfe1e7;
    border-color: #cfe1e7;
}
.btn-white:focus, .btn-white.focus {
    color: var(--dark);
    background-color: #cfe1e7;
    border-color: #cfe1e7;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-white.disabled, .btn-white:disabled {
    color: #959ba0;
    background-color: #cbd2d8;
    border-color: #cbd2d8;
}
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .show > .btn-whitet.dropdown-toggle {
    color: #959ba0;
    background-color: #cbd2d8;
    border-color: #cbd2d8;
}
.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus, .show > .btn-whitet.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-white:after {
    background-color: #c1f1ff;
    opacity: 1
}
.card, .rounded {
    border-radius: 1rem !important;
}
.rounded-0 {
    border-radius: 0 !important;
}
/*
-----------------------------------------------------
	HEADER
-----------------------------------------------------
*/
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 100;
    transition: all .25s ease-in-out 0s;
}
.headerFancy {
    background-color: var(--primary);
    padding: 1rem 0 !important;
}
body:not(.home) .header {
    background-color: var(--primary);
    padding: 1rem 0 !important;
}
body.home {
    padding-top: 0 !important;
}
.navbar-brand {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 100;
    padding-left: 0rem;
    padding-right: 1rem;
    max-width: 280px
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navigation-wrapper .navbar-nav .nav-item {
    padding: 0 1rem 1rem;
}
.navigation-wrapper .navbar-nav .nav-link {
    color: var(--white);
    font-size: .95rem;
    padding: .25rem 0rem;
    font-weight: 400;
    position: relative;
}
.navbar-light .navbar-nav > .nav-item > .nav-link:hover, .navbar-light .navbar-nav > .active > .nav-link {
    background-color: transparent;
    color: var(--white);
}
.navigation-wrapper .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    width: 0%;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--white);
    opacity: 0;
    transition: all 0.25s ease-in-out 0s;
}
.navigation-wrapper .navbar-nav .nav-item:hover .nav-link:before {
    right: auto;
    left: 0;
    width: 100%;
    opacity: 1
}
/*
-----------------------------------------------------
	BANNER
-----------------------------------------------------
*/
.banner-wrapper {
    position: relative;
    background: #354cfb url(images/assets/banner-bg.jpg) no-repeat center center/cover;
    background-blend-mode: luminosity;
    clip-path: polygon(0px 0px, 100% 0, 100% 75%, 0% 100%);
    z-index: 2;
}
.banner-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #354cfb;
    opacity: .85;
    z-index: -1;
}
.banner-wrapper .carousel-item img {
    position: relative;
}
.banner-text {
    position: relative;
    z-index: 2;
    color: #fff;
}
.banner-title {
    font-weight: 300;
    font-size: 3vw;
}
.banner-wrapper .carousel-control-prev, .banner-wrapper .carousel-control-next {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: 10%;
    right: 0;
    left: auto;
    top: auto;
    margin: 0 1.5rem;
    z-index: 100;
}
.banner-wrapper .carousel-control-next {
    bottom: 100px;
}
.banner-wrapper .carousel-control-prev-icon, .banner-wrapper .carousel-control-next-icon {
    background: none;
}
/*
-----------------------------------------------------
	COURCES
-----------------------------------------------------
*/
.course-carousel.owl-carousel .owl-stage {
    display: flex;
}
.item, .item .card {
    height: 100%;
}
/*
-----------------------------------------------------
	FEATURES
-----------------------------------------------------
*/
.features-wrapper {
    position: relative;
}
.left-curve, .right-curve {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 50%);
    height: 100px;
    background: #fff;
}
.right-curve {
    clip-path: polygon(0% 0%, 100% 50%, 100% 100%, 0% 100%);
}
/*
-----------------------------------------------------
	TESTIMONIALS
-----------------------------------------------------
*/
.testimonials-media {
    position: absolute;
    bottom: -25px;
}
.testimonials-picture {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonials-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*
-----------------------------------------------------
	CORE VALUES
-----------------------------------------------------
*/
.core-values-wrapper {
    background: #354cfb url(images/assets/wave-bg.png) no-repeat center center/cover;
    clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 90%);
    margin-top: -5.5rem;
}
.ceo-message-module {
    position: relative;
}
.ceo-message {
    height: 380px;
    width: 380px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
}
.ceo-name {
    position: relative;
}
.ceo-name:before {
    content: "";
    height: 1px;
    width: 150px;
    background-color: var(--primary);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
/*
-----------------------------------------------------
 	CONTACT
-----------------------------------------------------
*/
.contact-module {
    border-radius: 1.5rem;
    background: var(--success) url(../images/assets/contact-bg.png) no-repeat center center/cover;
}
/*
-----------------------------------------------------
 	FOOTER
-----------------------------------------------------
*/
.footer {
    background: #fff;
}
.footer-widget-title {
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer p, .footer a {
    font-size: .875rem;
    color: #3d3d3d;
    padding: .5rem 0
}
.footer a:hover {
    color: var(--secondary)
}
.social-networks a {
    background-color: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}
.social-networks a:hover {
    opacity: .5;
    color: var(--white);
}
.copyright p {
    color: #8fa5ab;
}
.pageheaing-wrapper {
    background-color: #e6e7f7;
}
.page-heading .text-primary {
    color: var(--dark) !important;
}
.payment_icon{
    color: var(--white);
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
/*
--------------------------------------
 MEDIA QUERIRES
--------------------------------------
*/
@media (min-width: 768px) {
    .inner-content-module {
        position: relative;
        padding-bottom: 10rem;
    }
    .our-our-content {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}
@media (min-width: 992px) {
    body {
        /*        padding-top: 0 !important;*/
    }
    .navbar-nav .dropdown {
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        perspective: 1000px;
        -webkit-perspective: 1000px;
        z-index: 98;
    }
    .dropdown-menu {
        display: block;
        border-radius: 0;
        background-color: var(--white);
        border: 0;
        margin: 0;
        padding: 0;
        font-size: .9rem;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        min-width: 100%;
        min-width: 200px;
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }
    @-webkit-keyframes slide-bottom {
        0% {
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
        }
        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @keyframes slide-bottom {
        0% {
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
        }
        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    .navigation-wrapper .dropdown-item {
        padding: 0;
    }
    .navigation-wrapper .navbar-nav .dropdown-item .nav-link {
        color: var(--dark);
        padding: 0.8rem 1rem;
        display: block;
        font-weight: 400;
    }
    .navigation-wrapper .navbar-nav .dropdown-item a:hover {
        color: var(--white);
        background-color: var(--primary);
        text-decoration: none
    }
}
@media (min-width:1200px) {}
@media only screen and (min-width: 768px) and (max-width:1024px) {
    .banner-wrapper .carousel-item img {
        position: relative;
        min-height: 350px;
        object-fit: cover;
        object-position: right;
    }
}
@media (min-width: 768px)and (max-width: 991.5px) {
    h1, .h1 {
        font-size: 28px;
    }
    h2, .h2 {
        font-size: 24px;
    }
    h3, .h3 {
        font-size: 20px;
    }
    h4, .h4 {
        font-size: 18px;
    }
    h5, .h5 {
        font-size: 16px;
    }
    h6, .h6 {
        font-size: 14px;
    }
    .lead {
        font-size: 16px;
    }
    .navbar-brand {
        max-width: 140px;
    }
    .navigation-wrapper .navbar-nav .nav-link {
        letter-spacing: .075rem;
        font-size: 1.05rem;
        padding: 1rem .25rem;
    }
    .navbar-light .navbar-nav > .nav-item {
        padding: 0
    }
}
@media only screen and (min-width: 1024px) and (max-width:1200px) {
    .jumbo-text {
        font-family: "Bebas Neue";
        position: absolute;
        bottom: 0;
        right: 98%;
        font-size: 7.65rem;
        color: #dae8ed;
        white-space: nowrap;
    }
}
@media only screen and (min-width: 1200px) and (max-width:1360px) {
    .jumbo-text {
        font-size: 8rem;
    }
}
@media only screen and (min-width:1200px) and (max-width:1280px) {}
@media only screen and (min-width:1300px) and (max-width:1366px) {}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .jumbo-text {
        font-size: 7.35rem;
    }
}
@media (max-width: 991.5px) {
    .banner-title {
        font-size: 2rem;
    }
    .banner-title small {
        font-size: 1.85rem;
    }
    .banner-title span {
        font-size: 1.5rem;
    }
    .header {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 100;
        padding: 1rem 0;
    }
    #mainNavigation.navbar-collapse, #mainNavigation.collapse:not(.show) {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 300;
        height: 100vh;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.95);
        width: 80%;
        /*  max-width: 220px;*/
        padding: 1rem;
        display: block;
        visibility: hidden;
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
        transition: all 0.35s ease-in-out 0s;
        -webkit-transition: all 0.35s ease-in-out 0s;
        -moz-transition: all 0.35s ease-in-out 0s;
        -ms-transition: all 0.35s ease-in-out 0s;
        -o-transition: all 0.35s ease-in-out 0s;
    }
    #mainNavigation.show {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        visibility: visible;
    }
    #mainNavigation .dropdown-menu {
        background-color: rgba(255, 255, 255, .25)
    }
    .navigation-wrapper .navbar-nav .nav-link, .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
        color: var(--white);
    }
}
@media (max-width: 767px) {
    html {
        font-size: 12px;
    }
    h1, .h1 {
        font-size: 24px;
    }
    h2, .h2 {
        font-size: 20px;
    }
    h3, .h3 {
        font-size: 18px;
    }
    h4, .h4 {
        font-size: 16px;
    }
    h5, .h5 {
        font-size: 14px;
    }
    h6, .h6 {
        font-size: 12px;
    }
    .navbar-brand {
        max-width: 150px;
    }
    .banner-wrapper .carousel-item img {
        position: relative;
        min-height: 250px;
        object-fit: cover;
        object-position: right;
    }
    .banner-title {
        font-size: 1.25rem;
        font-weight: 700;
    }
    .banner-title small {
        font-weight: 600;
        font-size: 1.5rem;
    }
    .ceo-message {
        height: 280px;
        width: 280px;
        position: static;
        margin: 0 auto;
    }
}
@media (max-width:375px) {}
@media (min-width:590px) {}