/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
figure{margin: 0;}
a,button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;    
}
.main-wrpper {
    height:auto;
    width: 100%;
}
.container{
    max-width: 1180px;
}
/* ***** End Common Css **** */

/* ***** Hero Banner **** */
.note-wrp{
    background: #3296CA;
    padding: 15px 0;
    box-shadow: 0 0 25px 0 rgba(50,150,202,.79);
}
.note-wrp h2{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.hero-banner{
    padding: 30px 0 50px;
    background: #ffffff;
    position: relative;
    z-index: 100;
}
.hero-head{
    margin: 0 0 60px;
}
.hero-head .row{
    align-items: center;
}
.logo-box img{
    width: 100%;
    padding: 0 25px 0 0;
}
.hero-head h1{
    font-size: 28px;
    font-weight: 800;
    color: #092D40;
    line-height: 36px;
    margin: 0;
}
.hero-head h1 span{
    color: #3296CA;
}
.owner-img img{
    width: 85%;
    margin: 0 auto;
}
.owner-img-block h2{
    background-color: #FFF;
    margin: -60px auto 0;
    width: 85%;
    padding: 15px 15px 15px 15px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 30px 60px 0 rgb(0 0 0 / .2);
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #3296CA;
    text-align: center;
    position: relative;
    z-index: 1;
}
.owner-img-block h2 span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #003253;
}
.covered-data-block{
    padding: 0 0 0 70px;
}
.covered-data-block h2{
    font-size: 28px;
    font-weight: 800;
    color: #003253;
    margin: 0 0 25px;
}
.covered-data-block h2 span{
    color: #3296CA;
}
.covered-data-block ul{
    margin: 0 0 25px;
}
.covered-data-block ul li{
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #ECEAEA;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #003253;
    display: block;
}
.covered-data-block ul li span{
    color: #3296CA;
    font-weight: 700;   
}
.covered-data-block ul li svg{
    margin-right: 5px;
}
.covered-data-block ul li:last-child{
    border: none;
}
.covered-block{
    background-color: #FFF;
    margin: 0 0 20px 0;
    padding: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0 0 40px 0 rgb(0 0 0 / .2);
    display: flex;
    align-items: center;
}
.covered-block .cover-ic{
    min-width: 50px;
    margin-right: 15px;
    max-width: 50px;
}
.covered-block .cover-ic img{
    width: 100%;
}
.cover-data p{
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 24px;
}
.cover-data h3{
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #3296CA;
}
.scenarios-wrp .btn-group,.workshop-wrp .btn-group,.meet-your-coach-wrp .btn-group,
.hero-banner .btn-group{
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin: 45px auto 0;
}
.scenarios-wrp .btn-group .btn-main,.workshop-wrp .btn-group .btn-main,.meet-your-coach-wrp .btn-group .btn-main,
.hero-banner .btn-group .btn-main{
    background-color: #3296CA;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    box-shadow: 0 0 25px 0 rgba(50,150,202,.79);
    border-radius: 100px 100px 100px 100px;
    padding: 27px 40px 27px 40px;
    overflow: hidden;
    color: #fff;
    display: table;
    margin: 0 auto 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
}
.scenarios-wrp .btn-group .btn-main:before,.workshop-wrp .btn-group .btn-main:before,.meet-your-coach-wrp .btn-group .btn-main:before,
.hero-banner .btn-group .btn-main:before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    width: 50px;
    -webkit-transition: all 550ms cubic-bezier(.19,1,.22,1);
    transition: all 550ms cubic-bezier(.19,1,.22,1);
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    z-index: 1;
    animation: hoverbtn infinite 1.5s;
    filter: blur(15px);
    -webkit-filter: blur(15px);
}
@keyframes hoverbtn {
    from {
        left: 120%;
        -webkit-transition: all 0.5s cubic-bezier(.19,1,.22,1);
        transition: all 0.5s cubic-bezier(.19,1,.22,1)
    }

    top {
        left: 0%;
        -webkit-transition: all 0.5s cubic-bezier(.19,1,.22,1);
        transition: all 0.5s cubic-bezier(.19,1,.22,1)
    }
}
.scenarios-wrp .btn-group h6,.workshop-wrp .btn-group h6,.meet-your-coach-wrp .btn-group h6,
.hero-banner .btn-group h6{
    font-size: 20px;
    font-weight: 600;
    color: #003253;
    text-align: center;
    margin: 0 auto;
}
.scenarios-wrp .btn-group h6 span,.workshop-wrp .btn-group h6 span,.meet-your-coach-wrp .btn-group h6 span,
.hero-banner .btn-group h6 span{
    color: #3296CA;
}
/* ***** End Hero Banner **** */

/* **** Trained **** */
.train-wrp{
    position: relative;
    padding: 50px 0 30px;
    background: #f9f9f9;
}
.titlebar{
    margin: 0 auto 35px;
    display: table;
}
.titlebar h2{
    color: #092D40;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    text-align: center;
    margin: 0;
}
.titlebar h2 span{
    color: #3296CA;
}
.team-block {
    margin: 0 0 35px;
}
.team-block img {
    width: 100%;
    border-radius: 5px;
}
.team-nmnbx {
    background: #E5F6FF;
    padding: 20px 15px;
    bottom: -30px;
    position: absolute;
    border-radius: 5px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.team-nmnbx h3 {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    text-transform: capitalize;
    text-align: center;
    margin: 0px auto;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.train-wrp .team-nmnbx {
    position: relative;
    max-width: 80%;
    width: 100%;
    bottom: 0;
    margin: -30px auto 0;
    z-index: 1;
    background: #E5F6FF;
    display: table;
}
.train-wrp .team-nmnbx h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #092D40;
    margin: 0px;
    transition: .4s linear;
    -webkit-transition: .4s linear
}
/* **** End Trained **** */

/* **** Scenarios **** */
.scenarios-wrp{
    padding: 70px 0;
    background: #E5F6FF;
}
.scenarios-box{
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    margin: 0 0 30px;
}
.scenarios-box .styled-checkbox {
    position: absolute;
    opacity: 0;
}
.scenarios-box .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    display: flex;
    line-height: 26px;
}
.scenarios-box .styled-checkbox + label:before {
    content: "";
    margin: 3px 15px 0 0;
    display: inline-block;
    vertical-align: text-top;
    min-width: 25px;
    width: 25px;
    height: 25px;
    background: #E5F6FF;
    border-radius: 3px;
}
.scenarios-box .styled-checkbox:checked + label:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    top: 3px;
    background: #3296CA;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    border-radius: 3px;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
}
.scenarios-wrp .btn-group{
    margin: 15px auto 0;
}
.scenarios-wrp .btn-group h4{
    font-size: 20px;
    font-weight: 600;
    color: #003253;
    text-align: center;
    margin: 0 auto 30px;
}
/* **** End Scenarios **** */

/* **** Workshop **** */
.workshop-wrp{
    padding: 70px 0;
}
.workshop-img{
    max-width: 500px;
    margin: 0 auto 50px;
}
.workshop-img img{
    width: 100%;
}
.workshop-block{
    padding: 30px;
    border-radius: 15px;
    background: #f5f5f5;
    margin: 0 0 30px;
    display: flex;
    flex-flow: column;
    height: calc(100% - 30px);
}
.workshop-block i{
    font-size: 50px;
    margin: 0 0 25px;
    color: #3296CA;
}
.workshop-block h2{
    font-size: 24px;
    font-weight: 700;
    color: #003253;
    margin: 0 0 15px;
}
.workshop-block p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333;
    margin: 0;
}
.workshop-wrp .btn-group h3{
    text-align: center;
    margin: 25px auto 0;
    max-width: 600px;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.3em;
    color: #003253;
}
.workshop-wrp .btn-group h3 span{
    color: #3296CA;
}
/* **** End Workshop **** */

/* **** Workshop Plans **** */
.workshop-plan-wrp{
    padding: 70px 0;
    background: #E5F6FF;
}
.workshop-plan-box{
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    display: flex;
    flex-flow: column;
    height: 100%;
}
.workshop-plan-box h3{
    padding: 15px 20px;
    border-radius: 15px;
    background: #3296CA;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 15px;
}
.workshop-plan-box h4{
    font-size: 28px;
    font-weight: bold;
    color: #092D40;
    line-height: 36px;
    margin: 0 0 15px;
}
.workshop-plan-box ul{
    padding: 25px;
    border-radius: 15px;
    background: #E5F6FF;
}
.workshop-plan-box ul li{
    font-size: 16px;
    font-weight: 500;
    color: #092D40;
    line-height: 26px;
    display: flex;
    margin: 0 0 5px;
}
.workshop-plan-box ul li svg{
    margin: 0 15px 0 0;
    min-width: 21px;
}
.workshop-plan-box ul li:last-child{
    margin: 0;
}


.free-access-wrp{
    padding: 70px 0;
}
.free-access-wrp h6{
    font-size: 22px;
    font-weight: 600;
    color: #3296CA;
    line-height: 32px;
    text-align: center;
    margin: 0 auto 30px;
}
.free-access-wrp h6 strong{
    font-weight: 800;
}
.free-access-wrp .workshop-plan-box{
    background: #f5f5f5;
    padding: 20px 20px 75px;
    position: relative;
}
.free-access-wrp .workshop-plan-box h3{font-size: 32px;}
.free-access-wrp .workshop-plan-box h4{
    text-align: left;
    margin: 0 0 25px;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.work-discount{
    padding: 15px;
    background: #3296CA;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 15px 15px;
}
.work-discount h5{
    text-align: center;
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}
.work-discount h5 span{
    text-decoration: line-through;
}
/* **** End Workshop Plans **** */

/* **** Testimonial **** */
.testimonail-wrp{
    padding: 70px 0 40px;
    background: #E5F6FF;
}
.testimonail-block{
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    height: calc(100% - 30px);
    margin: 0 0 30px;
}
.testimonail-img{
    min-width: 100px;
    margin: 0 25px 0 0;
}
.testimonail-block figure{
    width: 100px;    
}
.testimonail-block figure img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 3px solid #E5F6FF;
    object-fit: cover;
}
.testimonail-data{
    width: 100%;
}
.testimonail-block h3{
    font-size: 22px;
    font-weight: 600;
    color: #3296CA;
    line-height: 30px;
    margin: 0 0 5px;
}
.testimonail-block h3 span{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: block;
}
.testimonail-block p{
    font-size: 14px;
    font-weight: normal;
    color: #333;
    line-height: 22px;
    margin: 0 0 15px;
}
.testimonail-block .rating-bx{
    display: flex;
    align-items: center;
}
.testimonail-block .rating-bx i{
    font-size: 15px;
    color: #ffe10a;
    margin-right: 5px;
}
.testimonail-block .rating-bx i:last-child{
    margin: 0;
}
/* **** End Testimonial **** */

/* **** Coach **** */
.meet-your-coach-wrp{
    padding: 70px 0;
}
.coach-img{
    background: #f5f5f5;
    border-radius: 15px;
}
.coach-img img{
    width: 100%;
    border-radius: 15px;
}
.meet-your-coach-box h3{
    background-color: #FFF;
    margin: -40px auto 0;
    width: 85%;
    padding: 15px 15px 15px 15px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 30px 60px 0 rgb(0 0 0 / .2);
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #3296CA;
    text-align: center;
    position: relative;
    z-index: 1;
}
.meet-your-coach-box h3 span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #003253;
}
.coach-data{
    padding: 15px 0 15px 15px;
}
.coach-data p{
    font-size: 16px;
    font-weight: 500;
    color: #092D40;
    line-height: 24px;
    margin: 0 0 20px;
}
.coach-data p:last-child{
    margin: 0;
}
/* **** End Coach **** */

/* **** FAQs **** */
.faq-wrp{
    padding: 70px 0;
    background: #E5F6FF;
}
.faq-wrp .accordion .accordion-item{
    margin: 0 0 15px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 25px 25px;
}
.faq-wrp .accordion .accordion-item:last-child{
    margin: 0;
}
.faq-wrp .accordion .accordion-item .accordion-button {
    font-size: 20px;
    padding: 0 40px 0 0;
    color:#092D40;
    font-weight: 600;
    background-color: transparent;
    position: relative;
}
.faq-wrp .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.faq-wrp .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.faq-wrp .accordion .accordion-item .accordion-button::after {
    display: none;
}
.faq-wrp .accordion .accordion-item .accordion-button:before {
    position: absolute;
    content: "\f077";
    font-family: "Font Awesome 5 Pro";
    right: 0;
    top: 50%;
    font-size: 15px;
    color: #3296CA;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.faq-wrp .accordion .accordion-item .accordion-button.collapsed:before {
    content: "\f078";
}
.faq-wrp .accordion .accordion-body{
    padding: 15px 0 0;
}
.faq-wrp .accordion .accordion-body p{
    font-size: 16px;
    font-weight: normal;
    color: #333;
    line-height: 26px;
    margin: 0;
}
/* **** End FAQs **** */

/* **** Contact **** */
.contact-wrp{
    padding: 70px 0;
}
.contact-reach{
    padding: 60px 35px ;
    background: #3296CA;
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.contact-reach:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #3296CA;
    left: -100%;
    top: 0;
}
.contact-reach h5{
    font-size:18px;
    font-weight:300;
    color: #fff;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.cnt-bx-cnpg{display: flex;width: 100%;margin: 0 0 15px;}
.cnt-bx-cnpg i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    line-height: 40px;
    font-size:16px;
    color: #3296CA;
    text-align: center;
    display: block;
    margin-right: 10px;
}
.cnt-bx-cnpg p{
    width: 80%;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 24px;
    margin: 0;
}
.cnt-bx-cnpg p a{color: #fff;}
.sincen{align-items: center;}

.cnt-add{
    margin:auto;
    position: relative;
}
.cnt-add img{width:70%;margin: 0 auto;}

.contact-form{
    margin: 0 auto;
    padding: 40px;
    max-width: 100%;
    background: #fff;
    position: relative;
    z-index: 5;
    border-radius: 25px;
    border:4px solid #3296CA;
}
.contact-form .form-group{margin: 0 0 25px;}
.contact-form .form-control{
    padding: 15px 20px;
    border: none;
    box-shadow: none;
    border-radius:15px;
    border:2px solid #E7F7FF;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    color: #777;
    height: auto;
    resize: none;
}
.contact-form .form-control::placeholder,
.contact-form .form-control:focus{    
    color: #777;
}

.contact-right-block{
    height: 100%;    
    display: flex;
    flex-flow: column;
    background: #E5F6FF;
    border-radius: 25px;
    padding: 40px 20px;
}
.contact-right-block h4{
    font-size: 16px;
    font-weight: 500;
    color: #111;
    line-height: 26px;
    margin: 0 0 35px;
}
.cnt-bx-cnpg {
    display: flex;
    width: 100%;
    margin: 0 0 15px;
}
.cnt-bx-cnpg i {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3296CA;
    line-height: 40px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: block;
    margin-right: 10px;
}
.cnt-bx-cnpg p{
    width: 80%;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 22px;
    margin: 0;
}
.cnt-bx-cnpg p a{
    color: #333;
}
.meet-your-coach-wrp{
	background-color:#f9f9f9;
}

/* **** End Contact **** */

/* **** Footer **** */
footer{
    padding: 0 0;
    background: #000;
    margin: 0 0 126px;
}
.disclaimer-box{
    padding: 25px 0 25px;
    border-bottom: 1px solid #fff;
}
.disclaimer-box p{
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    line-height: 24px;
    margin: 0;
}
.disclaimer-box p a{
    color: #fff;
    font-weight: bold;
}
.copyright-wrp{
    padding: 25px 0;
}
.copyright-wrp p{
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight:normal;
    color: #fff;
    line-height: 24px;
}

.sticky-footer{
    padding: 30px 0;
    background: #fff;
    position: fixed;
    bottom:0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 -20px 25px 0 rgba(1.3174896240234375,1.2917126531186314,1.2917126531186314,.13);
    z-index:99;
}
.sticky-footer h3{
    margin: 0 0 5px;
    font-size: 28px;
    font-weight: bold;
    color: #3296CA;
}
.sticky-footer h3 span{
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-decoration: line-through;
}
.sticky-footer p{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #333;
}
.sticky-footer .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.contact-form .btn-main,
.sticky-footer .btn-group .btn-main{
    background-color: #3296CA;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    box-shadow: 0 0 15px 0 rgba(50,150,202,.39);
    border-radius: 100px 100px 100px 100px;
    padding: 20px 40px 20px 40px;
    color: #fff;
    display: table;
    position: relative;
    border: none;
    text-align: center;
}
.contact-form .btn-main:before,
.sticky-footer .btn-group .btn-main:before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    width: 50px;
    -webkit-transition: all 550ms cubic-bezier(.19,1,.22,1);
    transition: all 550ms cubic-bezier(.19,1,.22,1);
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    z-index: 1;
    animation: hoverbtn infinite 1.5s;
    filter: blur(15px);
    -webkit-filter: blur(15px);
}

.modal{
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(20px);
}
.modal-dialog{
    max-width: 760px;
    width: 100%;
    margin: 35px auto;
}
.modal-content{
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    position: relative;
}
.contact-form{
    position: relative;
}
button.btn-close{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    color: #111;
    border: none;
    opacity: 1;
    width: 25px;
    height: 25px;
    padding: 0;
    cursor: pointer;
    border-radius: 100%;
    background: none;
    outline: none !important;
    display: none;
}
.backtop.show{
    display: block;
}

.backtop{
    padding: 0;
    position: fixed;
    bottom: 150px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #3296CA;
    z-index: 50;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 100%;
    line-height: 45px;
}
.backtop:hover{
    background: #000;
    color: #fff;
}
/* **** End Footer **** */