::-moz-selection { /* Code for Firefox */
    color: #2ec6d0;
}
::selection {
    color: #2ec6d0;
}
body{margin: 0;padding:0;font-size: 14px;font-family: 'Poppins', sans-serif;}
body .container{max-width: 1440px;}
.site-header{
    border:none;
    background: transparent;
    width: 100%;
    line-height: 90px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all 0.5s ease;
    min-height: auto;
    margin-bottom: 0;
}
.site-header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    line-height: 66px;
    animation: smoothScroll 2s forwards;
    background: #2ec6d0;
    /*    background: -moz-linear-gradient(left, #0d45a6 0%, #1266b7 36%, #178fcc 67%, #19a0d5 100%);
        background: -webkit-linear-gradient(left, #0d45a6 0%,#1266b7 36%,#178fcc 67%,#19a0d5 100%);
        background: linear-gradient(to right, #0d45a6 0%,#1266b7 36%,#178fcc 67%,#19a0d5 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d45a6', endColorstr='#19a0d5',GradientType=1 );*/
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}
body.overflow { overflow: hidden; }

/*  BURGER
========================================== */

.burger {
    width: 20px;
    height: 20px;
    /*position: fixed;*/
    position: relative;
    display: inline-block;
    border-radius: 4px;
    z-index: 10;
}
.burger.clicked {
    right: -90px;
}
.burger span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.burger span::before, .burger span::after {
    position: absolute;
    content: "";
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.clicked span { background-color: transparent; }
.burger.clicked span::before {
    -webkit-transform: translateY(3px) rotate(45deg);
    -moz-transform: translateY(3px) rotate(45deg);
    -ms-transform: translateY(3px) rotate(45deg);
    -o-transform: translateY(3px) rotate(45deg);
    transform: translateY(3px) rotate(45deg);
}
.burger.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}
.burger.clicked span:before, .burger.clicked span:after { background-color: #ffffff; }
.burger:hover { cursor: pointer; }

/*  NAV
========================================== */

nav {
    background-color: #2ec6d0;
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    height: 100vh;
    max-width: 210px;
    width: 100%;
    padding: 0;
    overflow-y: auto;
    overflow: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
nav.show ul.main li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}
nav.show ul.main li:nth-child(1) { transition-delay: 0.15s; }
nav.show ul.main li:nth-child(2) { transition-delay: 0.3s; }
nav.show ul.main li:nth-child(3) { transition-delay: 0.45s; }
nav.show ul.main li:nth-child(4) { transition-delay: 0.6s; }
nav.show ul.main li:nth-child(5) { transition-delay: 0.75s; }
nav.show ul.main li:nth-child(6) { transition-delay: 0.9s; }
nav.show ul.main li:nth-child(7) { transition-delay: 1.05s; }
nav.show ul.main li:nth-child(8) { transition-delay: 1.2s; }
nav.show ul.main li:nth-child(9) { transition-delay: 1.35s; }
nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}
nav ul.main {list-style-type: none;padding:0;margin:50px 0 0;}
nav ul.main li {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
nav ul.main li:last-of-type { margin-bottom: 0px; }
nav ul.main li a {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    font-weight: 600;
    padding: 8px 15px;
    line-height: initial;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
nav ul.main li a:hover {color: #000;padding-left: 20px;}
nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav ul.sub li { margin-bottom: 10px; }

nav ul.sub li:last-of-type { margin-bottom: 0px; }

nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
nav ul.sub li a:hover { color: #b7ac7f; }

/*  OVERLAY
========================================== */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
}

.overlay.show {
    opacity: 0.8;
    visibility: visible;
}
.home-banner{
    background: url(../images/main-banner.jpg) no-repeat scroll center center / cover;
    object-fit: cover;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}
.banner-content {margin-top: 13%;}
.banner-content h2{
    font-weight: 700;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    color:#fff;
    margin: 0;
    line-height: 45px;
}
.banner-content p{
    font-weight: 300;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 35px 0 60px;
    line-height: 26px;
}
.banner-content a,
a.common-btn{
    font-weight: 500;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    background: #f26b3b;
    text-align: center;
    display: inline-block;
    text-transform: capitalize;
    color: #fff;
    max-width: 360px;
    width:100%;
    height:80px;
    line-height: 80px;
    text-decoration: none !important;
    transition:0.4s ease;
    box-shadow: 13px 22px 30px 0px rgba(0, 0, 0, 0.17);
}
.banner-content a:hover, a.common-btn:hover{color:#fff;box-shadow: none;}
.banner-content a img, a.common-btn img{padding-left: 5px;transition: 0.4s ease;}
.banner-content a:hover img, a.common-btn:hover img{padding-left: 15px;}
.padding-100{padding: 100px 0;}
h2.common-heading{
    font-size: 36px;
    color:#323232;
    text-align: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
h2.common-heading span{color:#2ec6d0;}
.custom-width {
    max-width: 950px;
    margin: 0 auto !important;
    width: 100%;
}
p.common-sub-heading{
    font-size: 20px;
    color:#323232;
    text-align: center;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 50px auto;
    max-width: 700px;
    width:100%;
}
.plan-grid-sec{margin: 48px 0 55px;}
.plan-grid-sec ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.plan-grid-sec ul li {
    max-width: 215px;
    /*max-width: 20%;*/
    width: 100%;
    display: inline-block;
    text-align: center;
    border: 1px solid #dbdbdb;
    padding: 0 18px 10px;
    position: relative;
    border-radius: 10px;
    min-height: 500px;
    margin: 0 8px;
    float:left;
}
.plan-grid-sec ul li:first-child {margin-left: 0;}
.plan-grid-sec ul li:nth-child(5n+5) {margin-right: 0;}
.plan-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0 auto;
    border: 1px solid #dbdbdb;
    background: #fff;
    border-radius: 50%;
    margin-top: -50px;
}
.plan-content h2 {
    font-size: 20px;
    margin: 22px 0 25px;
    font-weight: 600;
    color: #323232;
    font-family: 'Poppins', sans-serif;
}
.plan-content p{
    font-size: 15px;
    margin:0;
    font-weight: 500;
    color: #323232;
    font-family: 'Poppins', sans-serif;
}
.join-section{background: #f3f3f3;}
.join-img-sec{max-width: 640px;width:100%;margin: 50px auto 0px;}
.join-img-sec img{width:100%;object-fit: none;height:360px;margin-bottom: 40px;}
.join-img-sec a{max-width:100%;}
.join-img-sec a img{width:auto;height:auto;margin-bottom: 0px;}
.about-section{background: url(../images/about-bg.jpg) no-repeat scroll center center / cover;min-height: 840px;overflow: hidden;object-fit: cover;}
.about-content{
    background: #2ec6d0;
    padding: 30px 50px;
    border-top:8px solid #29b1ba;
    margin-bottom: 50px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.about-content h2{
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 40px;
    color:#fff;
    font-family: 'Poppins', sans-serif;
}
.about-content p{
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0 0px;
    line-height: 25px;
    color:#fff;
    font-family: 'Poppins', sans-serif;
}
.learn-content-sec {margin-top: 80px;display: -webkit-flex;-webkit-align-items: center;display: flex;align-items: center;}
.learn-content-sec h4{
    font-size: 30px;
    color:#323232;
    font-weight: 700;
    margin: 0 0 15px;
    font-family: 'Poppins', sans-serif;
}
.learn-content-sec .text-left h4 {padding: 0 56px;}
.learn-content-sec .text-right h4 {padding: 0 150px;text-align: left;}
.learn-content-sec .text-left h4.zone-heading {padding: 0;}
.learn-content-sec p{
    font-size: 17px;
    color:#323232;
    font-weight: 500;
    margin: 0 ;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
}
.center-block{
    display: block;
    margin: 0 auto;
}
a.change-life-btn{max-width:440px;margin-top: 60px;}
a.scroll_top{
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    background: #2ec6d0;
    transition: 0.4s ease;
    display: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 999;
    -webkit-animation: bounce 2s infinite 2s;
    animation: bounce 2s infinite 2s;
    -webkit-transition: all 0.2s ease-in;
    text-decoration: none !important;
}
a.scroll_top:hover{background: #f26b3b;color:#fff;}


/****************arghya-css-start****************/
.faq{
    background: url(../images/footer_bg_1.png) no-repeat scroll center center / cover;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    padding: 20px 0px 120px;
}
.common-heading.wht{
    color: #ffffff;
    padding: 60px 0px;
}
.box-qus ul li{
    background-color: rgba(1, 31, 33, 0.21);
    border: none;
    padding: 25px 18px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
}
.box-qus ul li .panel.panel-default{
    border: none;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}
.box-qus ul{
    list-style: none;
}
.box-qus ul li .media .media-left{
    padding-right: 12px;
}
.box-qus ul li .panel.panel-default h1{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
    margin-bottom: 23px;
}
.box-qus ul li .panel.panel-default p{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
}

.testimonial{
    padding-bottom: 100px;
    font-family: 'Poppins', sans-serif;
}
.testimonial h2{
    margin-bottom: 90px;
}

.new-wrp-box{
    position: relative;
    margin-bottom: 80px;
}

.testimonial .prof-img img{
    max-width: 300px;
    object-fit: cover;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
    -moz-box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
    box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
}
.testimonial .prof-img {
    display: inline-block;
    z-index: 99;
    position: absolute;
    left: 15px;
    bottom: 0;
}
.testimonial .mid-box .prof-img {
    display: inline-block;
    z-index: 99;
    position: absolute;
    right:15px;
    left: auto;
    bottom: 0;
}
.testimonial{
    background-color: #fff;
}
.testimonial .text-box {
    background-color: #eaf9fa;
    border: 3px solid #2ec6d0;
    border-radius: 12px;
    padding: 50px 0px 30px;
    padding-left: 265px;
    padding-right: 50px;
    position: relative;
    min-height: 310px;
}
.testimonial .mid-box .text-box {
    background-color: #eaf9fa;
    border: 3px solid #2ec6d0;
    border-radius: 12px;
    padding: 50px 0px 30px;
    padding-right: 265px;
    padding-left: 50px;
    position: relative;
}

.testimonial .text-box img.clone-img {
    position: absolute;
    top: -47px;
}
.testimonial .text-box p {
    font-size: 17px;
    color: #323232;
    font-style: italic;
    margin-bottom: 30px;
}
.testimonial .text-box h1{
    font-size: 23px;
    color: #323232;
    font-weight: 500;
    margin-bottom: 0;
}



.plan-review{
    background-color: #f3f3f3;
    font-family: 'Poppins', sans-serif;
}
.plan-review h2.common-heading{
    padding-bottom: 60px;
}
.plan-review .inner-box-pros {
    text-align: center;
    border-radius: 12px;
    background-color: #fff;
    border-bottom: 10px solid #dbdbdb;
    min-height: 346px;
}
.plan-review .inner-box-pros .top-part{
    background-color: #fb8b8a;
    border-radius: 12px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 23px 0px;
}
.plan-review .inner-box-pros .top-part.bg-2{
    background-color: #5e69c3;
}
.plan-review .inner-box-pros .top-part.bg-3{
    background-color: #2ec6d0;
}
.plan-review .inner-box-pros h1{
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin: 0;
    line-height: 30px;
}
.plan-review .inner-box-pros p{
    font-size: 17px;
    color: #323232;
    font-weight: 500;
    padding: 30px 27px;
}

a.common-btn.mx-width{
    max-width: 560px;
}

@media (min-width: 1200px){
    .container {
        width: 1200px;
    }
}

/***********modal-start**************/
.cust-my-modal .modal-content {
    border-radius: 0px;
}

.cust-my-modal .modal-header {
    background-color: transparent;
    border-bottom: none;
    color: #494949;
    min-height: 16.4286px;
    padding: 15px 40px;
    position: relative;
    border-top: #2ec6d0 3px solid;
    text-transform: uppercase;
}

.cust-my-modal .modal-header .close {
    color: #494949;
    font-size: 50px;
    font-weight: 100;
    line-height: 27px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.cust-my-modal .modal-header .modal-title {
    color: #494949;
    font-weight: 300;
    margin: 0;
    text-align: center;
    font-size: 30px;
}

.cust-my-modal .modal-body {
    padding-bottom: 40px;
    padding-top: 0px;
}

.cust-my-modal .modal-body .input-group-addon {
    border: none;
    font-size: 14px;
    color: #999999;
}

.cust-my-modal .modal-body .form-control {
    border: none;
    background: #F2F2F2;
    border-radius: 0px;
    color: #45555f;
    height: 43px;
    padding-left: 0px;
}

.cust-my-modal .modal-body .form-control::-moz-placeholder {
    color: #45555f;
    opacity: 1;
}

.cust-my-modal .modal-body .form-control:-ms-input-placeholder {
    color: #45555f;
}

.cust-my-modal .modal-body .form-control::-webkit-input-placeholder {
    color: #45555f;
}

.cust-my-modal .modal-body .btn.btn-sign-btn {
    background-color: #2ec6d0;
    color: #fff !important;
    padding: 11px 45px;
    font-size: 16px;
    transition: all .5s ease-in-out;
    outline: none;
    border-radius: 0px;
    text-transform: uppercase;
}

.cust-my-modal .modal-body .cast-sign-link {
    text-decoration: underline;
    color: #272264;
}

.cust-my-modal .modal-body .fotget-pass {
    overflow: hidden;
    margin-top: 20px;
    font-size: 15px;
    color: #494949;
}

/***********modal-end**************/

.headr-prof-pic {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    display: inline-block;
    font-size: 18px;
    color: #333;
}
nav ul.main li.drop-dwn{
    background-color: #24b8c2;
    padding: 10px 0px 10px 15px;
    line-height: normal;
}
nav ul.main li.drop-dwn h1{
    font-size: 14px;
    color: #fff;
    display: inline;
    text-transform: uppercase;
    cursor: pointer;
}
nav ul.main li.drop-dwn .dropdown-menu{
    width: 100%;
    box-shadow: none;
    background-color: #24b8c2;
    border-radius: 0;
    border: none;
}

nav ul.main li.drop-dwn .dropdown-menu li{
    line-height: normal;
}