* {
    box-sizing: border-box;
}
body {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    font-family: 'PT Sans';
    min-height: 100vh;
    background: url(../images/main-bg.png) no-repeat;
    background-size: contain;
}
body.overlay-in {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
body.overflow-out {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-size: cover;
}
body.overlay-in:before {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 101;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Avenir Next LT Pro';
}
.wrapper {
    width: 100%;
    height: auto;
    display: inline-block;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 15px;
}
.relative-container {
    position: relative;
}
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transition: 0.3s linear;
    z-index: 100;
}
header.fixed {
    background: #ffffff;
    box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.60);
    transition: 0.3s linear;
}
.logo-block {
    width: 100%;
    max-width: 180px;
    display: inline-flex;
}
.fixed-in {
    display: none;
}
header.fixed .fixed-in {
    display: block;
    width: auto;
    height: 30px;
    margin-right: 17px;
}
header.fixed .fixed-out {
    display: none;
}
header.fixed .logo-block {
    max-width: none;
    width: auto;
}
.page-logo {
    width: 100%;
}
.top-head-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: justify-content 0.3s linear;
}
header.fixed .top-head-content {
    height: 80px;
    justify-content: center;
    transition: justify-content 0.3s linear;
}
.page-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: width 0.3s linear;
}
.page-nav {
    width: auto;
    transition: width 0.3s linear;
}
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
}
.nav-list li {
    display: inline-block;
    margin: 0px 20px;
}
.button-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    float: left;
}
.button-list li {
    display: inline-block;
    margin: 0px 10px;
}
.nav-list li a {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
header.fixed .nav-list li a {
    color: #C0C0C0;
    transition: 0.3s linear;
}
header.fixed .nav-list li a:hover {
    color: #291750;
    transition: 0.3s linear;
}
.btn.blue-btn {
    padding: 7px 21px;
    border-radius: 10px;
    background-color: #7C79E9;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    min-width: 81px;
}
.nav-list li a:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #ffffff;
    transform: rotateY(90deg);
    transition: 0.3s linear;
}
.nav-list li a:hover:after, .nav-list li a.active:after {
    transform: rotateY(0deg);
    transition: 0.3s linear;
}
.banner-in {
    min-height: 830px;
    width: 100%;
    display: inline-block;
    padding-top: 150px;
    padding-bottom: 325px;
    position: relative;
    z-index: 5;
}
.banner-slide-block {
    display: none;
}
.banner-slide-block.active {
    display: block;
    width: 100%;
}
.banner-slider-parent {
    display: inline-block;
    width: 100%;
}
.banner-caption-block {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: -40px;
    opacity: 0;
    animation: fadeInDown 0.6s linear forwards;
    animation-delay: 0.5s;
}
@-webkit-keyframes fadeInDown {
    from {
        top: -40px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        top: -40px;
        opacity: 0;
    }
    to {
        top: 0px;
        opacity: 1;
    }
}
.banner-caption-block h1 {
    color: #FFFFFF;
    font-family: 'PT Sans';
    font-size: 60px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
    margin-bottom: 21px;
}
.banner-caption-block p {
    color: #FFFFFF;
    font-family: "PT Sans";
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    margin-bottom: 24px;
}
.option-block {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn.white-btn {
    background: #fff;
    color: #000000;
    border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.25);
}
.btn {
    padding: 20px 40px;
    text-decoration: none;
}
.btn.tick-btn {
    padding-left: 75px;
    position: relative;
}
.btn.tick-btn:after {
    content: '';
    width: 16px;
    height: 16px;
    background: url('../images/tick.svg') no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 6px);
    left: 30px;
}
.u-line-anchor {
    margin-left: 40px;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    position: relative;
}
.u-line-anchor:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #979797;
    bottom: -2px;
    left: 0;
}
.banner-slide-image-holder {
    position: absolute;
    width: 100%;
    max-width: 1127px;
    text-align: center;
    bottom: -258px;
    left: calc(50% - 565px);
    z-index: 2;
}
.banner-slide-image-holder img {
    opacity: 0;
    animation: opacityIn 1s linear forwards;
}
.banner-slide-image-holder.image-two img, .banner-slide-image-holder.image-three img {
    width: 100%;
}
.banner-slide-image-holder.image-two {
    max-width: 716px;
    left: calc(50% - 358px);
    bottom: -122px;
}
.banner-slide-image-holder.image-three {
    max-width: 736px;
    left: calc(50% - 368px);
    bottom: -105px;
}
.page-section {
    width: 100%;
    padding: 80px 0px;
    float: left;
}
.banner-after-section {
    padding-top: 190px;
    padding-bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, #FFFFFF 100%);
    opacity: 0.98;
    position: relative;
    z-index: 4;
}
.widthed-block.block-in-left h2 {
    color: #000000;
    font-family: "PT Sans";
    font-size: 42px;
    font-weight: bold;
    line-height: 48px;
    display: inline-block;
    width: 100%;
    margin: 9px 0px;
    max-width: 600px;
}
.widthed-block.block-in-left p {
    color: #595959;
    font-size: 22px;
    line-height: 30px;
    margin: 9px 0px;
    max-width: 685px;
}
.left-out-block {
    padding: 120px 0px 175px 120px;
}
.pintile-holder-in {
    display: inline-block;
}
.pintile-each {
    width: 172px;
    float: left;
    margin: 20px;
    text-align: center;
    cursor: pointer;
}
.pintile-each:last-child {
    margin-right: 0;
}
.pintile-inner {
    width: 100%;
    height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid transparent;
    border-radius: 30px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.15);
    transition: 0.6s linear;
}
.pintile-header {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}
.pintile-each.selected .pintile-inner, .pintile-each .pintile-inner:hover {
    border: 4px solid #5056F0;
    transition: 0.6s linear;
}
.pintile-each .pintile-inner:hover {
    transform: scale(1.08);
}
.pintile-each.selected .pintile-inner {
    transform: scale(1);
}
.avatar-image.avatar-girl {
    width: 213px;
    position: absolute;
    left: 0;
    bottom: -200px;
}
.avatar-gilr-image-in {
    width: 100%;
}
.user-views {
    padding: 190px 0px;
    background-color: #5655e9;
    background-image: url('../images/bg-user-view.png');
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: relative;
    z-index: 3;
}
.user-view-panel {
    width: 100%;
    max-width: 992px;
    margin: 0 auto;
    text-align: center;
}
.user-image-in {
    width: 60px;
    margin: 0 auto;
}
.md-text {
    color: #FFFFFF;
    font-family: "PT Sans";
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    margin: 34px 0px;
}
.user-name-in {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2.55px;
    line-height: 19px;
    text-align: center;
    margin: 0px;
}
.info-text-in {
    color: #FFFFFF;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    margin: 0px;
}
.info-text-in.in-grey {
    color: #595959;
}
.slander-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    /* background: url('../images/slanded-blue.png') no-repeat;
    background-size: cover; */
}
.slander-box.slanded-box--bottom {
    top: unset;
    bottom: -10px;
    z-index: -1;
}
.slander-box img {
    width: 100%;
    height: 100%;
}
.features-section {
    width: 100%;
    display: inline-block;
    background: linear-gradient(180deg, #291750 0%, #8149F9 100%);
    padding: 260px 0px 375px 0px;
    position: relative;
    z-index: 2;
}
.features-box-panel {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}
.feature-title-block {
    width: 100%;
    max-width: 480px;
    position: absolute;
    right: 0;
    top: -115px;
}
.features-title {
    color: #FFFFFF;
    font-size: 62px;
    font-family: 'PT Sans';
    font-weight: bold;
    line-height: 48px;
    text-align: right;
    margin: 0;
}
.feature-title-block p {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 30px;
    text-align: right;
}
.tie-in {
    width: 330px;
    height: 270px;
    position: absolute;
    right: 0;
    bottom: -225px;
    z-index: 9;
}
.tie-in img {
    width: 100%;
    height: 100%;
}
.features-tiles-col.col-3 {
    margin: 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 1320px;
    float: left;
}
.features-tiles-holder {
    display: flex;
    height: 100%;
    width: calc(100% + 54px);
    margin: 0px -27px;
    position: relative;
}
.featurs-tiles-each {
    width: 100%;
    width: 290px;
    height: 290px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.25);
    margin: 20px 0px;
}
.tile-info-title {
    color: #000000;
    font-family: 'PT Sans';
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}
.tile-info-block p.normal-text {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    height: 41px;
    margin: 0;
}
.tile-info-block {
    padding: 14px 27px 14px 30px;
}

.tile-icon-holder {
    height: 197px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pintile-each:first-child {
    margin-left: 0;
}
.tile-icon-in.has-margin-r {
    margin-right: 25px;
}
.tile-icon-in.has-margin-t {
    margin-top: 25px;
}
.avatar-features {
    width: 570px;
    height: 475px;
    position: absolute;
    bottom: 120px;
    right: -20px;
}
.avatar-features img {
    width: 100%;
    height: 100%;
}
.features-highlight-panel {
    width: calc(100% + 30px);
    margin: 55px -15px;
    display: inline-block;
    text-align: center;
}
.features-highlight-blocks {
    width: 150px;
    display: inline-block;
    margin: 15px;
    vertical-align: top;
}
.highlights-title {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'PT Sans';
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    margin: 0px;
}
.featurs-tiles-each.opacity-09 {
    opacity: 0.9;
}
.featurs-tiles-each.opacity-05 {
    opacity: 0.5;
}
.featurs-tiles-each.opacity-025 {
    opacity: 0.25;
}
.featurs-tiles-each.opacity-08 {
    opacity: 0.8;
}
.featurs-tiles-each.opacity-07 {
    opacity: 0.7;
}
.girl-avatar-second {
    width: auto;
    max-width: 100%;
    position: absolute;
    left: calc(50% - 165px);
    bottom: -84px;
}
.grey-box {
    padding: 175px 0px 108px 0px;
    width: 100%;
    display: inline-block;
    background: #D0CDE1;
    position: relative;
    z-index: 1;
}
.subheader {
    color: #000000;
    font-family: 'Avenir Next LT Pro';
    font-size: 42px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    margin: 0px;
}
.text-black {
    color: #000000;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    margin: 7px 0px;
    width: 100%;
    display: inline-block;
}
.flex-box {
    width: 100%;
    max-width: 1076px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 55px auto;
    position: relative;
    z-index: 2;
}
.btn.white-btn.btn-lg {
    width: 100%;
    max-width: 304px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #291750;
    font-size: 30px;
    font-weight: bold;
    line-height: 41px;
    text-align: center;
    opacity: 0.8;
    border-radius: 30px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
}
.btn.white-btn.btn-lg:hover {
    animation: pulsing 1s linear infinite;
}
@-webkit-keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px #291750;
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0px 0px 35px -5px #291750;
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px #291750;
    }
}
@keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px #291750;
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0px 0px 35px -5px #291750;
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px #291750;
    }
}
.shadow-image-holder {
    width: auto;
    max-width: 484px;
    position: absolute;
    top: 67px;
    left: calc(50% - 115px);
}
.course-section {
    padding: 80px 0px;
    background: #FDFCFC;
    display: inline-block;
    width: 100%;
    min-height: 845px;
    position: relative;
    overflow-y: hidden;
}
.course-definition {
    width: 100%;
    max-width: 1020px;
    margin: 8px auto;
}
.offered-course-panel {
    width: 100%;
    max-width: 1250px;
    float: left;
    position: relative;
}
.course-image {
    width: 93px;
    height: auto;
    float: left;
}
.course-description {
    width: calc(100% - 93px);
    float: left;
    padding: 0px 24px;
}
.course-description h2 {
    color: #000000;
    font-size: 42px;
    font-family: 'PT Sans';
    font-weight: bold;
    line-height: 48px;
    margin: 0px;
}
.course-definition:after {
    content: '';
    display: table;
    clear: both;
}
.course-description p {
    width: 100%;
    max-width: 620px;
    color: #595959;
    font-size: 18px;
    line-height: 30px;
}
.offer-course-ab-block {
    width: 100%;
    position: absolute;
    left: 0;
    height: 600px;
    bottom: -300px;
    z-index: 2;
}
.offer-course-ab-block .responsive {
    width: 100%;
}
.upper-c-link {
    color: #000000;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
}
.arrow-link {
    position: relative;
    padding-right: 27px;
}
.arrow-link:after {
    content: '';
    width: 7px;
    height: 13px;
    position: absolute;
    top: calc(50% - 6.5px);
    background: url('../images/chevron_right.svg') no-repeat;
    background-size: cover;
    right: 0;
}
.upper-c-link.arrow-link {
    position: absolute;
    right: 45px;
    bottom: 170px;
}
.contact-us-section {
    width: 100%;
    display: inline-block;
    /* background: linear-gradient(-52deg, #291750 0%, #8149F9 100%); */
    background: linear-gradient(0deg, #291750 0%, #8149F9 100%);
    padding: 170px 0px 0px 0px;
    position: relative;
    z-index: 1;
}
.container.container-lg {
    max-width: 1300px;
}
.container.container-md {
    max-width: 1250px;
}
.form-holder {
    width: 100%;
    padding: 0px 43px;
    position: relative;
}
.contact-form.form-in {
    width: 100%;
    max-width: 606px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.sm-header {
    color: #FFFFFF;
    font-family: 'PT Sans';
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.78px;
    line-height: 22px;
    text-align: center;
    width: 100%;
    display: inline-block;
    margin: 11px 0px;
}
.form-head {
    color: #FFFFFF;
    font-family: 'PT Sans';
    font-size: 60px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
    width: 100%;
    display: inline-block;
    margin: 11px 0px 88px 0px;
}
.select-box-list {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0px;
    list-style-type: none;
    background: #ffffff;
    position: absolute;
    top: 60px;
    border-bottom: 1px solid #c2c2c2;
    z-index: 1;
    box-shadow: 0px 10px 10px -15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.form-input-block {
    width: 100%;
    display: inline-block;
    margin: 11px 0px;
}
.selected-text {
    width: 100%;
    display: flex;
    height: 80px;
    align-items: center;
    background: #ffffff;
    color: #000000;
    padding: 10px 55px 10px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.25);
    font-size: 16px;
    line-height: 20px;
    position: relative;
    cursor: pointer;
}
.selected-text:after {
    content: '';
    width: 19px;
    height: 11px;
    background: url('../images/chevron_down.svg') no-repeat;
    background-size: cover;
    position: absolute;
    right: 35px;
    top: calc(50% - 5.5px);
    transition: 0.3s linear;
}
.selected-text.open:after {
    transform: rotate(180deg);
    transition: 0.3s linear;
}
.form-input-in {
    width: 100%;
    height: 80px;
    padding: 10px 55px 10px 50px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.75);
    border: 0;
    font-size: 16px;
    font-family: 'PT Sans';
    transition: 0.3s linear;
}
.form-input-in:focus {
    outline: 0;
    background-color: rgba(255,255,255,1);
}
textarea.form-input-in {
    padding: 30px 50px;
    color: #000000;
    font-size: 16px;
    height: 146px;
    resize: none;
}

.talent-error-border {
    border: 1px solid #ff1c29 !important;
}

.error-contact {
    color: #ffffff;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    border: none;
    border-radius: 15px;
    text-align: center;
}
.ctgreen {
    background: #0b9e38;
}
.ctred {
    background: #f20000;
}


.form-input-in::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}
.form-input-in:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000000;;
}
.form-input-in::-ms-input-placeholder { /* Microsoft Edge */
  color: #000000;;
}
.cs-select-box-toggler {
    position: relative;
}
.select-box-list-items {
    padding: 15px 20px;
    border-top: 1px solid #d3cbe6;
    cursor: pointer;
}
.select-box-list-items:hover {
    background: #d3cbe6;
    transition: 0.3s linear;
}
.bg-block-in {
    width: 100%;
    height: 100%;
    max-height: 935px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.form-submit-in {
    width: 100%;
    max-width: 168px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 430px;
    position: relative;
    display: flex;
    align-items: center;
}
.has-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    border: 0;
    border-radius: 20px;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
}
.form-send-btn {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    padding: 20px 35px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 17px;
    text-transform: uppercase;
    padding-right: 56px;
    cursor: pointer;
    z-index: 2;
}
.form-send-btn:after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    right: 32px;
    top: calc(50% - 12px);
    background: url('../images/send.svg') no-repeat;
    background-size: cover;
}
.form-bg-image-in {
    width: auto;
    max-width: 100%;
}
.d-grey-section {
    width: 100%;
    background: linear-gradient(182.11deg, #2F2F2F 0%, #3D3D3D 100%);
    position: relative;
    padding: 190px 0px 40px 0px;
    float: left;
}
.bottom-white-box-holder {
    width: 100%;
    position: relative;
}
.bottom-white-box {
    width: 100%;
    height: 310px;
    position: absolute;
    z-index: 2;
    background: #ffffff;
    top: -195px;
    padding: 28px 26px;
    border-radius: 30px;
}
.white-box-three-block {
    width: calc((100% / 3) - 125px);
    margin: 0px 50px 0px 75px;
    float: left;
    position: relative;
}
.white-box-header {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    margin: 13px 0px;
    width: 100%;
    display: inline-block;
    padding-right: 65px;
}
.white-box-list {
    margin: 13px 0px;
    float: left;
    padding: 0;
    list-style-type: none;
    margin-right: 30px;
}
.white-box-list-items a {
    color: #000000;
    font-size: 14px;
    line-height: 21px;
    text-decoration: none;
}
.white-box-three-block:after {
    content: '';
    width: 1px;
    height: 157px;
    background: #E0E0E0;
    position: absolute;
    right: -50px;
    top: 50px;
}
.white-box-three-block:last-child:after {
    content: none;
}
.footer-content-block {
    position: relative;
    z-index: 2;
    width: 100%;
    display: inline-block;
    margin-bottom: 72px;
}
.footer-block-in h6 {
    color: #FFFFFF;
    font-family: 'PT Sans';
    font-size: 14px;
    line-height: 19px;
    margin: 0px 0px 27px 0px;
}
.footer-block-in ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footer-block-in ul li a {
    color: #FFFFFF;
    font-family: "PT Sans";
    font-size: 14px;
    line-height: 19px;
    text-decoration: none;
    position: relative;
}
.footer-block-in ul li {
    color: rgba(255,255,255,0.5);
}
.contact-mail-list li a {
    margin-left: 3px;
}
.contact-mail-list li {
    margin: 4px 0px;
    width: 100%;
    display: inline-block;
}
.footer-block-in.footer-block-in-first {
    width: 100%;
    max-width: 400px;
}
.footer-block-in {
    float: left;
}
.contact-mail-list li:first-child {
    margin-top: 0;
}
.contact-link-list li {
    margin: 10px 0px;
    width: 100%;
    display: inline-block;
}
.footer-block-in ul li:first-child {
    margin-top: 0;
}
.footer-block-in ul li a:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -2px;
    left: 0px;
    transform: rotateY(90deg);
    transition: 0.3s linear;
}
.footer-block-in ul li a:hover:after {
    transform: rotateY(0deg);
    transition: 0.3s linear;
}
.footer-block-in-second {
    width: 100%;
    max-width: 400px;
}
.contact-address-box p {
    color: #FFFFFF;
    font-family: "PT Sans";
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
.social-media-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.social-media-list li {
    margin: 0px 18px;
    display: inline-block;
}
.social-media-list li:first-child {
    margin-left: 0px;
}
.social-m-icon {
    display: inline-block;
    background-size: cover;
}
.social-m-icon.social-m-icon--fb {
    width: 13px;
    height: 24px;
    background: url('../images/facebook.svg') no-repeat;
    display: inline-block;
}
.social-m-icon.social-m-icon--gl {
    height: 24px;
    width: 24px;
    background: url('../images/google.svg') no-repeat;
}
.social-m-icon.social-m-icon--tw {
    height: 19px;
    width: 22px;
    background: url('../images/twitter.svg') no-repeat;;
}
.social-m-icon.social-m-icon--ln {
    height: 21px;
    width: 22px;
    background: url('../images/linkedin.svg') no-repeat;;
}
.copyright-block p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 20px;
    margin: 14px 0 0 0;
}
.mob-only {
    display: none;
}

/* INNERPAGE STYLES */

body.innerpage {
    background: url('../images/sb-inner-page-bg.svg') no-repeat;
    background-size: cover;
}
.top-bar-in {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}
.top-bar-left-area {
    padding: 0px 30px 0px 0px;
    width: 263px;
    display: flex;
    float: left;
    align-items: center;
}
.icon-in {
    display: inline-block;
}
.icon-in.icon-arrow-left {
    width: 26px;
    height: 11px;
    background: url('../images/arrow-back-w.svg') no-repeat;
    background-size: cover;
}
.back-to-page-name {
    display: inline-block;
    margin: 0px 9px;
    color: #FFFFFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}
.top-bar-right-area {
    width: calc(100% - 263px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
}
.cs-breadcrumb-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.cs-breadcrumb-list li {
    float: left;
    margin: 0px 10px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
}
.cs-breadcrumb-list li:first-child {
    margin-left: 0;
}
.cs-breadcrumb-list li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    position: relative;
}
.cs-breadcrumb-list li a:after {
    content: '/';
    position: absolute;
    right: -12px;
    top: -1px;
}
.btn.cart-btn {
    position: relative;
    padding: 0;
    width: 31px;
    height: 30px;
    display: flex;
    float: left;
    background: url('../images/cart-icon-w.svg') no-repeat;
    background-size: cover;
    margin: 0px 20px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #8149F9;
    font-weight: bold;
    line-height: 16px;
}
.btn.cart-btn:hover {
    animation: swingIn 0.6s linear forwards;
}
.btn.option-toggler {
    padding: 0;
    width: 31px;
    height: 31px;
    float: left;
    background: url('../images/logo-light.svg') no-repeat;
    background-size: cover;
    margin: 0px 0px 0px 20px;
}
.full-panel-area {
    height: calc(100vh - 80px);
    overflow: auto;
    float: left;
    width: 100%;
}
.innerpage-main-section {
    width: 100%;
    height: 100%;
    float: left;
}
.innerpage .wrapper {
    float: left;
}
.width-panel {
    width: 263px;
    float: left;
    height: 100%;
    overflow: auto;
}
.width-panel-offset-area {
    width: calc(100% - 263px);
    float: left;
    height: 100%;
    overflow: auto;
    padding: 0px 30px;
}
.left-blue-panel {
    padding: 7px 13px;
    border-radius: 0 20px 0 0;
    background-color: #5056F0;
    box-shadow: 0 5px 20px 0 rgba(0,0,0,0.15);
}
.accordion-holder {
    width: 100%;
    display: inline-block;
    background: #ffffff;
    border-radius: 16.39px;
    margin: 5px 0px;
}
.accordion-content {
    display: none;
}
.acc-inside-list {
    margin: 0;
    padding: 0;
    width: 100%;
    padding-bottom: 13px;
    display: inline-block;
    list-style-type: none;
}

.acc-inside-list li a {
    width: 100%;
    float: left;
    color: #000000;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-decoration: none;
    transition: 0.3s linear;
    padding: 10px 10px 10px 50px;
}

.accordion-head {
    width: 100%;
    height: 75px;
    padding: 0px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.icon-accordion {
    width: 35px;
}
.arrow-in-text {
    color: #595959;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    width: calc(100% - 0px);
    padding-left: 13px;
    padding-right: 10px;
    position: relative;
}
.acc-inside-list li {
    border-bottom: 1px solid #F6F6F6;
    float: left;
    width: 100%;
}
.arrow-in-text:after {
    content: '';
    width: 4px;
    height: 8px;
    background: url('../images/chevron_right.svg') no-repeat;
    background-size: cover;
    position: absolute;
    right: 0px;
    top: calc(50% - 4px);
    transform: rotate(0deg);
    transition: 0.3s linear;
}
.accordion-holder.active .arrow-in-text:after {
    transform: rotate(90deg);
    transition: 0.3s linear;
}
.acc-inside-list li:first-child {
    border-top: 1px solid #F6F6F6;
}
.acc-inside-list li a:hover, .acc-inside-list li a.active {
    background: #EFEEFF;
    transition: 0.3s linear;
}
.icon-in.icon-engineering {
    height: 30px;
    background: url('../images/icon-engineering.svg') no-repeat right;
}
.icon-in.icon-medical {
    height: 28px;
    background: url('../images/icon-medical.svg') no-repeat right;
}
.icon-in.icon-subjects {
    height: 20px;
    background: url('../images/icon-subject.svg') no-repeat right;
}
.icon-in.icon-free-trial {
    height: 31px;
    background: url('../images/icon-trial.svg') no-repeat right;
}
.cs-tab-parent {
    width: 100%;
    float: left;
    border-radius: 20px;
    padding: 45px 30px;
    background-color: #FDFDFD;
    position: relative;
    overflow: hidden;
}
.cs-tab-child-w-block {
    width: 340px;
    float: left;
}
.cs-tab-toggling-child {
    display: none;
    opacity: 0;
}
.cs-tab-toggling-child.active-in {
    display: block;
    animation: opacityIn 1s linear forwards;
}
@-webkit-keyframes opacityIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes opacityIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.cs-tab-child-offset-w-block {
    width: calc(100% - 340px);
    float: left;
    padding-bottom: 240px;
}
.filtered-by {
    color: #595959;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;
}
.selected-head {
    color: #000000;
    font-size: 44px;
    font-weight: bold;
    line-height: 48px;
    margin: 0;
}
.normal-text--md {
    color: #595959;
    font-size: 24px;
    line-height: 32px;
    margin: 0px;
    padding-right: 25px;
}
.xs-text {
    display: block;
    color: #595959;
    font-size: 11px;
    line-height: 14px;
    margin: 13px 0px 0px 0px;
}
.sm-text {
    color: #595959;
    font-size: 14px;
    line-height: 19px;
}
.tab-indic-avatar-block {
    position: absolute;
    bottom: -5px;
    left: 0;
}
.buy-course-block {
    border: 1px solid #EBEBEB;
    display: inline-block;
}
.buy-course-block-head {
    width: 100%;
    height: 80px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EBEBEB;
    color: #000000;
    font-size: 18px;
    line-height: 23px;
}
.price-block-radiobox {
    width: 100%;
    height: 80px;
    position: relative;
    border-bottom: 1px solid #EBEBEB;
}
.price-block-check-input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
}
.bg-in {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    transition: 0.3s linear;
}
.price-block-check-input:checked + .price-block-placeholder + .bg-in {
    background: #EFEEFF;
    transition: 0.3s linear;
}

.price-block-placeholder {
    z-index: 2;
    width: 80px;
    height: 100%;
    float: left;
    position: relative;
}
.price-block-placeholder:before {
    content: '';
    width: 22px;
    height: 22px;
    background: #F6F6F6;
    border: 2px solid #EBEBEB;
    position: absolute;
    border-radius: 13px;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
}
.price-block-placeholder:after {
    content: '';
    width: 23px;
    height: 18px;
    background: url('../images/tick-green.svg') no-repeat;
    background-size: cover;
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 7px);
    opacity: 0;
    transform: scale(0.5);
}
.price-block-check-input:checked + .price-block-placeholder:before {
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
}
.price-block-check-input:checked + .price-block-placeholder:after {
    animation: expandIn 1s linear forwards; 
}
@-webkit-keyframes expandIn {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes expandIn {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.price-block {
    width: calc(100% - 80px);
    height: 100%;
    display: flex;
    flex-direction: column;
    float: left;
    justify-content: center;
    position: relative;
    padding-right: 85px;
}
.price-plan {
    color: #595959;
    font-family: "Avenir Next LT Pro";
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.79px;
    line-height: 12px;
}
.price-in {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    position: relative;
}
.best-buy-in {
    width: 85px;
    height: 21px;
    background: url('../images/best-buy.svg') no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: calc(50% - 10.5px);
}
.icon-in.icon-rupees {
    width: 20px;
    height: 21px;
    background: url('../images/rupee-indian.svg') no-repeat;
    background-size: cover;
}
.buy-area-button-in {
    float: left;
    padding: 30px 20px;
}
.blue-gradient-btn {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;
    border-radius: 20px;
    background: linear-gradient(211.36deg, #B77FFD 0%, #8149F9 100%);
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.25);
    text-decoration: none;
}
.icon-in.icon-cart-d {
    width: 15px;
    height: 15px;
    background: url('../images/cart-icon-d.svg') no-repeat;
    background-size: cover;
    margin-right: 17px;
}
.blue-gradient-btn:hover .icon-cart-d {
    animation: swingIn 0.8s linear forwards;
}
@-webkit-keyframes swingIn {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(20deg);
    }
    20% {
        transform: rotate(0deg);
    }
    30% {
        transform: rotate(-20deg);
    }
    40% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
    60% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(-20deg);
    }
    80% {
        transform: rotate(0deg);
    }
    90% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes swingIn {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(20deg);
    }
    20% {
        transform: rotate(0deg);
    }
    30% {
        transform: rotate(-20deg);
    }
    40% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
    60% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(-20deg);
    }
    80% {
        transform: rotate(0deg);
    }
    90% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.info-text {
    color: #595959;
    font-size: 12px;
    line-height: 15px;
    margin: 30px 0px 0px;
}
.full-block-in {
    width: 100%;
    display: inline-block;
    padding: 40px 0px;
}
.half-radius-line-header {
    position: relative;
    display: inline-block;
    padding-top: 10px;
}
.half-radius-in {
    width: calc(100% + 100px);
    height: 40px;
    display: inline-block;
    position: absolute;
    overflow: hidden;
    top: -40px;
    left: -40px;
}
.half-radius-in:after {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.25);
    position: absolute;
    border-top-right-radius: 20px;
    left: -2px;
    top: 27px;
}
.half-radius-in-title {
    margin: 0;
    color: #FFFFFF;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;
}
.tile-holder {
    padding: 45px 0px 0px 0px;
    display: inline-block;
    width: calc(100% + 40px);
    margin: 0px -20px;
}
.ft-tile-each {
    width: 178px;
    float: left;
    margin: 18px;
}
.ft-tile-image-block {
    width: 178px;
    height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 18px;
    background-color: #FFFFFF;
    position: relative;
    top: 0;
    box-shadow: 0 12px 24px 0 rgba(0,0,0,0.25);
    border: 4px solid transparent;
    transition: 0.3s linear;
}
.ft-tile-each:hover .ft-tile-image-block {
    border: 4px solid #5056F0;
    top: -10px;
    transition: 0.3s linear;
}
.ft-tile-description-area {
    padding: 25px 18px 0px;
    height: 75px;
    overflow: hidden;
}
.ft-tile-title {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;
}
.ft-tile-desc {
    color: #FFFFFF;
    font-size: 12px;
    line-height: 15px;
    margin: 0;
}
.slider-holder {
    padding: 80px 0px;
}
.option-toggle-in-area {
    position: fixed;
    width: 100%;
    height: auto;
    max-width: 318px;
    max-height: calc(100vh - 60px);
    overflow: auto;
    background: #FFFFFF;
    z-index: 103;
    right: -100%;
    top: 41px;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
    transition: 0.3s linear;
}
.user-option-head {
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 15px;
    margin: 0;
    padding: 17px 30px;
}
.user-opt-nav-list {
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.user-opt-nav-list li {
    width: 100%;
    float: left;
    border-bottom: 1px solid #F6F6F6;
}
.user-opt-nav-list li a {
    padding: 11px 30px;
    width: 100%;
    float: left;
    color: #000000;
    background: #FFFFFF;
    font-size: 14px;
    line-height: 19px;
    text-decoration: none;
    transition: 0.3s linear;
}
.user-opt-nav-list li a:hover {
    color: #FFFFFF;
    background: #5056F0;
    transition: 0.3s linear;
}
.usr-opt-btn-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 17px 20px;
}
.btn.normal-btn {
    padding: 9px 12px;
    margin-left: 10px;
    border: 1px solid #595959;
    border-radius: 4px;
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.15);
    font-family: "Avenir Next LT Pro";
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s linear;
}
.btn.normal-btn:hover {
    background: #000000;
    color: #FFFFFF;
    transition: 0.3s linear;
}
.option-toggle-in-area.options-fly-in {
    right: 43px;
    transition: 0.3s linear;
}
.slider-parent .slick-arrow {
    display: none;
}
.slick-dots {
    width: 100%;
    text-align: center;
    list-style-type: none;
    padding: 0;
}
.slick-dots li {
    display: inline-block;
    margin: 0px 4px;
}
.slick-dots li button {
    width: 8px;
    height: 8px;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    border: 0;
    font-size: 0;
    background: #FFFFFF;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s linear;
}
.slick-dots li button:focus {
    outline: 0;
}
.slick-dots li.slick-active button {
    width: 17px;
    background: #291750;
    transition: 0.3s linear;
}
.slider-parent .user-view-panel {
    max-width: none;
}
.slider-holder .slider-parent {
    max-width: 990px;
    margin: 0 auto;
}

/* course-entrance */

.filtered-by.lg{
    float: left;
    width: 100%;
    font-size: 24px;
    line-height: 34px;
}


.cs-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    padding: 20px;
    display: none;
    opacity: 0;
    z-index: 150;
}
.cs-modal.cs-modal-in {
    display: block;
    animation: opacityIn 0.5s linear forwards;
}
.modal-content {
    width: 100%;
    height: auto;
    max-height: calc(100% - 60px);
    margin-top: 60px;
    border-radius: 20px;
    background-color: #F6F6F6;
    overflow: auto;
    position: relative;
}
.cs-modal.cs-modal-md .modal-content {
    max-width: 1120px;
    margin: 0 auto;
    margin-top: 40px;
}
.modal-head-box h2 {
    margin: 0;
    color: #000000;
    font-size: 44px;
    font-weight: bold;
    line-height: 48px;
}
.modal-head-box {
    padding: 45px 65px;
    width: 100%;
    max-width: 710px;
}
.modal-head-box p {
    color: #595959;
    font-family: "PT Sans";
    font-size: 24px;
    line-height: 32px;
    margin: 15px 0px;
}
.avatar-panel {
    width: 317px;
    height: 100%;
    min-height: 210px;
    float: left;
    /* overflow: hidden; */
}
.modal-form-panel {
    width: calc(100% - 317px);
    float: left;
    padding: 40px;
}
.avatar-panel img {
    width: 100%;
    max-width: 317px;
    left: -10px;
    bottom: -20px;
    height: 100%;
    max-height: 591px;
    position: absolute;
}
.modal-body {
    float: left;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.modal-changing-panel {
    width: 100%;
    float: left;
    display: none;
    opacity: 0;
}
.modal-changing-panel.active {
    display: block;
    animation: opacityIn 0.5s linear forwards;
}
.modal-form {
    width: 100%;
    max-width: 610px;
    float: right;
}
.input-holder {
    width: 100%;
    float: left;
    margin: 5px 0px;
}
.form-cs-input {
    width: 100%;
    height: 80px;
    padding: 20px 50px;
    border: 1px solid transparent;
    transition: 0.3s linear;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: "PT Sans";
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}
.form-cs-input.error {
    border: 1px solid #f20000;
}
.form-cs-input:focus {
    outline: 0;
    border: 1px solid #6c63ff;
    transition: 0.3s linear;
}
.form-cs-input.form-cs-input--half {
    width: calc(50% - 5px);
    float: left;
}
.form-cs-input.form-cs-input--half:nth-child(odd) {
    margin-right: 5px;
}
.form-cs-input.form-cs-input--half:nth-child(even) {
    margin-left: 5px;
}
.modal-close-btn {
    width: 24px;
    height: 24px;
    background: url('../images/modal-close-btn.svg') no-repeat;
    background-size: cover;
    position: absolute;
    top: 35px;
    right: 25px;
    cursor: pointer;
}
.qs-label {
    color: #000000;
    display: inline-block;
}
.radio-all-holder {
    display: inline-block;
    padding: 0px 8px;
}
.cs-binary-radio-box {
    display: inline-block;
    position: relative;
    width: auto;
    margin: 5px;
}
.cs-binary-radio {
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
.cs-binary-radio-placeholder {
    padding: 14px 28px;
    background: #ffffff;
    display: inline-block;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.75);
    color: #000000;
    font-family: "PT Sans";
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    transition: 0.3s linear;
}
.cs-binary-radio:checked + .cs-binary-radio-placeholder {
    background: #8149F9;
    color: #FFFFFF;
    transition: 0.3s linear;
}
.form-btn-holder {
    width: 100%;
    max-width: 195px;
}
.form-btn-holder.in-right {
    float: right;
}
.form-cs-input::placeholder {
  color: #000000;
  font-weight: 400;
  opacity: 1; /* Firefox */
}
.form-cs-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #000000;
 font-weight: 400;
}
.form-cs-input::-ms-input-placeholder { /* Microsoft Edge */
 color: #000000;
 font-weight: 400;
}
.message-in {
    padding: 11px;
    width: 100%;
    text-align: center;
    display: inline-block;
}
.message-in.message-error {
    background: rgba(255,0,109,0.1);
    color: #FF006D;
    margin: 20px 0px;
}
.form-message-block {
    float: left;
    width: 100%;
    display: none;
}
.cs-modal.cs-modal-sm.cs-modal-in {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-modal.cs-modal-sm .modal-content {
    max-width: 560px;
}
.cs-modal.cs-modal-sm .modal-form-panel {
    width: 100%;
    padding: 0;
}
.modal-form.login-form {
    max-width: 300px;
    margin: 0 auto;
    float: none;
}
.modal-form.login-form:after {
    content: '';
    display: table;
    clear: both;
}
.modal-form.login-form {
    padding-top: 165px;
}
.form-bg-holder {
    width: 100%;
    display: inline-block;
    background: url('../images/login-modal-girl-avatar.svg') no-repeat;
    background-size: 100% 100%;
}
.form-cs-input.semi-transparent {
    background: rgba(255,255,255,0.75);
    transition: 0.3s linear;
}
.form-cs-input.semi-transparent:focus {
    background: #FFFFFF;
    transition: 0.3s linear;
}
.center-anchor {
    width: 100%;
    text-align: center;
    display: inline-block;
}
.link-d {
    color: #000000;
    text-decoration: none;
    line-height: 20px;
}
.form-btn-holder.in-center {
    margin: 0 auto;
}
.m-md {
    margin: 20px 0px;
}
.cs-modal.cs-modal-sm .modal-body {
    padding-bottom: 50px;
}
.tick-checkbox {
    width: auto;
    display: flex;
    position: relative;
    float: left;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.tick-checkbox-in {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 5;
    cursor: pointer;
}
.tick-placeholder {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: #ffffff;
    border: 2px solid #EBEBEB;
    border-radius: 12px;
    position: relative;
}
.inline-text {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
}

.tick-placeholder:after {
    content: '';
    width: 23px;
    height: 18px;
    background: url('../images/tick-green.svg') no-repeat;
    background-size: cover;
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 7px);
    opacity: 0;
    transform: scale(0.5);
}
.tick-checkbox-in:checked + .tick-placeholder:after {
    animation: expandIn 1s linear forwards; 
}
.modal-head-box p.sub-header {
    font-size: 22px;
    line-height: 28px;
}
.in-block-text {
    width: 100%;
    display: inline-block;
}
.modal-head-box.text-center {
    text-align: center;
    margin: 0 auto;
}
.modal-icon-tile-panel {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}
.icon-tile-each {
    width: 100%;
    max-width: 420px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    float: left;
}
.modal-icon-tile-panel:after {
    content: '';
    display: table;
    clear: both;
}
.icon-tile-description-each {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    padding-left: 15px;
}
.desc-bild-in {
    font-weight: bold;
    margin-right: 8px;
}
.modal-head-box.p-b-md {
    padding-bottom: 20px;
}
.card-in {
    width: 100%;
    max-width: 560px;
    margin: 35px auto;
    padding: 30px 45px;
    border-radius: 24px;
    background-color: #FDFDFD;
    display: flex;
    align-items: center;
}
.card-in-icon {
    width: 100px;
    float: left;
}
.card-in-icon img {
    width: 100%;
}
.card-in-content {
    width: calc(100% - 100px);
    float: left;
    padding: 0px 30px 0px 50px;
}
.card-in:after {
    content: '';
    display: table;
    clear: both;
}
.card-subtitle {
    color: #291750;
    font-size: 22.4px;
    font-weight: bold;
    line-height: 24px;
    margin: 0;
}
.card-content-text {
    color: #595959;
    font-size: 22px;
    line-height: 29px;
    margin: 5px 0px;
}
.in-dark {
    color: #000000;
}
.normal-anchor {
    text-decoration: none;
}
.in-grey {
    color: #595959;
}
.modal-form .selected-text {
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0);
}
.modal-form .selected-text.open {
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.25);
}
.flex-end {
    justify-content: flex-end;
}
.page-head {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    font-size: 60px;
    font-weight: bold;
    line-height: 60px;
    margin: 20px 0px 36px 0px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.page-subhead-text {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 36px;
    font-weight: 100;
    font-family: 'PT Sans';
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
    margin: 18px 0px;
}
.c-tile-panel-holder-outer {
    width: 100%;
    max-width: 1300px;
    padding: 0px 15px;
    margin: 0 auto;
}
.c-tile-panel-holder-inner {
    width: calc(100% + 30px);
    margin: 0px -15px;
}
.c-tile-each {
    width: calc((100% / 3) - 30px);
    margin: 15px;
    float: left;
    background: #FFFFFF;
    border: 1px solid #979797;
    border-radius: 30px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.25);
    padding: 40px;
    min-width: 400px;
}
.c-tile-panel-holder-outer:after {
    content: '';
    display: table;
    clear: both;
}
.c-tile-indicator {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin: 0;
}
.c-tile-icon-block {
    text-align: center;
    width: 162px;
    height: 164px;
    margin: 35px auto;
}
.c-tile-icon-block img {
    width: 100%;
    height: 100%;
}
.c-tile-title {
    margin: 5px 0px;
    color: #291750;
    font-size: 28px;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
}
.c-tile-description-text {
    margin: 5px 0px;
    color: #595959;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    display: inline-block;
}
.c-tile-content-area {
    height: 160px;
}
.c-tile-footer-area {
    text-align: center;
}
.sign-up-btn {
    padding: 16px 30px;
    margin-top: 20px;
    display: inline-block;
    color: #595959;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 19px;
    text-decoration: none;
    border: 2px solid #000000;
    transition: 0.3s linear;
}
.sign-up-btn:hover {
    background: #595959;
    color: #FFFFFF;
    border: 2px solid #595959;
}
.normal-text.in-white {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin-top: 40px;
}
.card-in.card-in-md {
    max-width: 700px;
}
.card-in.card-in-md .card-in-icon {
    width: 125px;
}
.card-in.card-in-md .card-in-content {
    width: calc(100% - 125px);
}
.card-in.card-in-md .card-subtitle {
    font-size: 28px;
    line-height: 30px;
}
.card-in.card-in-md .card-content-text {
    color: #595959;
    font-family: "PT Sans";
    font-size: 18px;
    line-height: 23px;
}
.table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.checkout-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #EBEBEB;
}
.checkout-table tr th, .checkout-table tr td {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
}
.alternate-table tr:nth-child(odd) td {
    background: #FFFFFF;
}
.alternate-table tr:nth-child(even) td {
    background: #FDFDFD;
}
.cs-modal.checkout-modal .modal-content {
    width: calc(100% - 270px);
    float: right;
}
.cs-modal.checkout-modal {
    padding-right: 30px;
}
.checkout-table tr th.text-in-left {
    text-align: left;
    width: 240px;
}
.widthed-table-cell {
    width: 220px;
}
.icon-in.icon-back-arrow-d {
    width: 31px;
    height: 14px;
    background: url('../images/arrow-back-b.svg') no-repeat;
    background-size: cover;
    float: left;
}
.text-in-left .in-block.in-dark {
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    float: left;
}
.text-in-left .icon-in {
    margin-right: 15px;
}
.checkout-table tr th {
    font-family: "Avenir Next LT Pro";
    color: #595959;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
}
.icon-in.icon-delete {
    width: 24px;
    height: 24px;
    background: url(../images/delete-icon-rounded.svg) no-repeat;
    background-size: cover;
}
.table-btn-holder {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
}
.checkout-item-block {
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    float: left;
    padding-left: 50px;
}
.check-out-item-icon {
    width: 72px;
    height: 72px;
    position: relative;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    background-color: #F5F5F5;
}
.checkout-item-short-text {
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    margin-top: 13px;
}
.check-out-item-icon img {
    position: absolute;
    width: 100%;
    max-width: 45px;
    height: 100%;
    max-height: 38px;
    left: 0;
    bottom: 0;
}
.checkout-item-content {
    width: calc(100% - 72px);
    padding-left: 25px;
    text-align: left;
}
.m-out {
    margin: 0;
}
.checkout-item-text {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
}
.checkout-item-title {
    color: #000000;
    font-family: "PT Sans";
    font-size: 22px;
    line-height: 26px;
}
.checkout-lt-price {
    color: #000000;
    font-family: "PT Sans";
    font-size: 22px;
    line-height: 29px;
    text-align: center;
    font-weight: 400;
}
.checkout-lt-price .icon-in.icon-rupees {
    width: 16px;
    height: 17px;
}
.checkout-total-in {
    text-align: right;
    padding-right: 40px;
}
.in-block.md-text {
    color: #000000;
    font-size: 18px;
    line-height: 23px;
    text-align: right;
    padding-right: 60px;
    position: relative;
    top: -2px;
}
.item-all-box {
    width: 100%;
    display: inline-block;
    margin: 10px 0px;
}
.flex-box.checkout-btn-box {
    max-width: none;
    padding: 0px 30px;
    margin-top: 135px;
    margin-bottom: 30px;
}
.checkout-btn-holder .blue-gradient-btn {
    padding: 0px 40px;
}
.icon-in.icon-payment {
    width: 19px;
    height: 15px;
    background: url('../images/payment-icon.svg') no-repeat;
    background-size: cover;
}
.checkout-btn-holder .blue-gradient-btn .icon-in {
    margin-right: 15px;
}
.checkout-btn-box .info-text-in {
    text-align: left;
}
.table-btn-holder .icon-in {
    cursor: pointer;
}
.inner-parent .accordion-head {
    height: 40px;
}
.inner-parent .accordion-head .arrow-in-text {
    font-size: 12px;
}
.no-bg {
    background: transparent;
}
.first-section-in {
    margin-top: 90px;
}
.subhead-title {
    width: 100%;
    display: inline-block;
    margin: 10px 0px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.78px;
    line-height: 22px;
    text-align: center;
}
.mainhead-title {
    margin: 10px 0px;
    width: 100%;
    display: inline-block;
    color: #FFFFFF;
    font-size: 60px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.half-block {
    width: calc(50% - 20px);
    margin: 10px;
    float: left;
}
.section-type-head {
    width: 100%;
    display: inline-block;
    color: #FFFFFF;
    margin: 17px 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}
.div-wrapper {
    width: 100%;
    display: inline-block;
    margin: 7px 0px;
}
.faq-accordion-wrapper .accordion-head {
    height: 60px;
}
.faq-accordion-wrapper .accordion-holder {
    margin: 10px 0px;
    background: rgba(255,255,255,0.75);
}
.faq-accordion-wrapper .accordion-holder.active {
    background: #FFFFFF;
}
.faq-accordion-wrapper .accordion-nm-text {
    padding: 0px 27px;
}
.faq-accordion-wrapper:nth-child(odd) {
    float: left;
}
.faq-accordion-wrapper:nth-child(even) {
    float: right;
}

/* INNERPAGE STYLES END */

/* MEDIA QUERIES */

@media(max-width: 1300px) {
    .bottom-white-box {
        height: auto;
        position: static;
        display: inline-block;
    }
    .form-submit-in {
        margin-bottom: 30px;
    }
    .white-box-three-block {
        width: calc((100% /2 - 125px));
        min-height: 260px;
    }
    .avatar-features {
        right: 0;
    }
    .white-box-header {
        padding-right: 10px;
    }
    .white-box-three-block:after {
        top: calc(50% - 78px);
    }
    .c-tile-each {
        display: inline-block;
        float: none;
        width: 100%;
        max-width: 400px;
    }
    .page-inner-block {
        padding: 0px 20px;
    }
    .c-tile-panel-holder-inner {
        display: inline-block;
        text-align: center;
    }
    .cs-modal.checkout-modal .modal-content {
        width: 100%;
    }
    .padding-out {
        padding: 0;
    }
    .slander-out {
        padding-top: 54px;
    }
}

@media(max-width: 1150px) {
    .cs-tab-child-offset-w-block {
        width: 100%;
        padding-bottom: 40px;
    }
    .cs-tab-child-w-block {
        width: 100%;
        padding-bottom: 240px;
        max-width: 550px;
        margin: 0 auto;
        float: none;
    }
}

@media(max-width: 1127px) {
    .banner-slide-image-holder {
        left: 0;
    }
    body {
        background-size: cover;
    }
}

@media(max-width: 1040px) {
    .featurs-tiles-each {
        width: 100%;
    }
    .features-tiles-holder {
        width: 100%;
        margin: 0px;
    }
    .bg-block-in {
        height: auto;
    }
    .upper-c-link.arrow-link {
        position: relative;
        right: 0;
        bottom: 0;
        float: right;
        margin-right: 15px;
    }
    .offer-course-ab-block {
        width: 100%;
        position: static;
        left: 0;
        height: auto;
        bottom: 0;
        z-index: 2;
    }
}

@media(max-width: 991px) {
    .avatar-features {
        bottom: 20px;
        right: 15px;
    }
    .features-tiles-holder {
        width: calc(100% + 30px);
        margin: 0px -15px;
    }
    .features-tiles-col.col-3 {
        margin: 15px;
        width: calc(100% / 3);
    }
    .tile-info-block {
        padding: 6px 27px 14px 30px;
    }
    .grey-box {
        overflow-x: hidden;
    }
    .modal-changing-panel.active {
        display: flex !important;
        flex-direction: column;
    }
    .avatar-panel img {
        position: relative;
        bottom: -5px;
        max-width: 200px;
    }
    .avatar-panel {
        order: 2;
    }
    .modal-form-panel {
        width: 100%;
    }
    .modal-form {
        max-width: none;
    }
    .checkout-table {
        width: 1024px;
    }
}

@media (min-width: 771px) and (max-width: 991px) {
    .nav-list li a {
        font-size: 12px;
    }
    .nav-list li {
        margin: 0px 5px;
    }
    .page-nav {
        width: 100%;
        justify-content: space-around;
    }
}

@media(max-width: 770px) {
    body {
        background: #535252;
    }
    .mob-only {
        display: block;
    }
    .nav-list {
        display: none;
    }
    .button-list .btn.blue-btn {
        display: inline-block;
    }
    .nav-toggler {
        width: 30px;
        height: 20px;
        float: left;
        border-top: 3px solid #7c79e9;
        border-bottom: 3px solid #7c79e9;
        position: relative;
        top: 5px;
    }
    .nav-toggler:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #7c79e9;
        position: absolute;
        left: 0;
        top: 6px;
    }
    .button-list li {
        float: left;
    }
    .button-list li:last-child {
        margin-right: 0;
    }
    .mob-header .fixed-out {
        display: none;
    }
    .mob-header .fixed-in {
        display: block;
        width: auto;
        max-width: 30px;
    }
    .mob-header {
        background: #ffffff;
    }
    .logo-block {
        max-width: 30px;
    }
    .mob-nav {
        width: 100%;
        max-width: 400px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        background: linear-gradient(180deg, #685FDE 0%, #242323 65%);
        box-shadow: inset -10px 0 10px 0 rgba(0,0,0,0.15);
        z-index: 102;
        transition: 0.6s linear;
        padding: 50px 0px;
    }
    .mob-nav.fly-in {
        left: 0;
        transition: 0.6s linear;
    }
    .mob-nav-list {
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 10px 20px;
        margin: 0;
        position: relative;
        list-style-type: none;
    }
    .nav-out {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 15px;
        top: 15px;
    }
    .nav-out:before, .nav-out:after {
        content: '';
        width: 100%;
        height: 2px;
        background: #FFFFFF;
        position: absolute;
        top: 11px;
        left: 0;
        border-radius: 2px;
    }
    .nav-out:before {
        transform: rotate(45deg);
    }
    .nav-out:after {
        transform: rotate(-45deg);
    }
    .mob-page-logo {
        width: 100%;
        max-width: 200px;
        margin-bottom: 20px;
    }
    .mob-nav-list li {
        display: inline-block;
        width: 100%;
        margin: 10px 0px;
    }
    .mob-nav-list li a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
    }
    .modal-head-box h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .modal-head-box p {
        font-size: 16px;
        line-height: 24px;
        margin: 5px 0px;
    }
    .modal-head-box {
        padding-bottom: 0px;
    }
    .form-cs-input {
        height: 50px;
        border-radius: 25px;
        font-size: 14px;
    }
    .qs-label {
        font-size: 14px;
    }
    .cs-binary-radio-placeholder {
        font-size: 14px;
        padding: 10px 25px;
    }
    .form-btn-holder .blue-gradient-btn {
        height: 50px;
    }
    .option-toggle-in-area.options-fly-in {
        width: calc(100% - 10px);
        right: 5px;
    }
    .modal-form.login-form {
        padding-left: 20px;
        padding-right: 20px;
    }
    .inline-text {
        text-shadow: 0px 0px 5px #000000;
    }
    .inline-text.in-grey {
        text-shadow: none;
    }
    .flex-box.checkout-btn-box {
        margin-top: 30px;
    }
    .half-block {
        width: 100%;
        margin: 10px 0px;
    }
}

@media(max-width: 767px) {
    .flex-box {
        flex-direction: column;
    }
    .btn.white-btn.btn-lg {
        margin: 15px 0px;
    }
    .grey-box {
        overflow-x: hidden;
        padding-bottom: 0;
    }
    .features-tiles-holder {
        width: 100%;
        margin: 0;
        display: inline-block;
        margin-top: 95px;
    }
    .features-tiles-col.col-3 {
        width: calc(100% + 30px);
        min-height: auto;
        display: inline-block;
        margin: 0px -15px;
        text-align: center;
    }
    .featurs-tiles-each {
        width: 100%;
        max-width: 290px;
        margin: 15px;
        display: inline-block;
        vertical-align: top;
    }
    .tile-info-block {
        text-align: left;
    }
    .avatar-features {
        bottom: 0;
    }
    .left-out-block {
        padding-left: 0;
        padding-bottom: 250px;
        padding-top: 20px;
    }
    .pintile-each:first-child {
        margin-left: 15px;
    }
    .pintile-each {
        margin: 15px;
        float: none;
        display: inline-block;
        vertical-align: top;
    }
    .pintile-holder-in {
        width: calc(100% + 30px);
        margin: 0px -15px;
        text-align: center;
    }
    .pintile-each:last-child {
        margin-right: 15px;
    }
    .banner-in {
        padding-top: 120px;
        padding-bottom: 225px;
        min-height: auto;
    }
    .banner-slide-image-holder {
        max-width: 450px !important;
        left: calc(50% - 225px) !important;
        bottom: -105px !important;
    }
    .banner-caption-block h1 {
        margin-top: 20px;
        font-size: 36px;
        line-height: 42px;
    }
    .banner-caption-block {
        max-width: 435px;
    }
    .banner-after-section {
        padding-top: 125px;
    }
    .white-box-three-block {
        width: 100%;
        margin: 0;
    }
    .white-box-list {
        width: 50%;
        margin-right: 0;
    }
    .white-box-three-block:after {
        content: none;
    }
    .top-bar-left-area {
        width: auto;
    }
    .back-to-page-name {
        font-size: 12px;
    }
    .top-bar-right-area {
        width: auto;
    }
    .cs-breadcrumb-list {
        display: none;
    }
    .width-panel {
        width: 100%;
        height: auto;
        overflow: initial;
        border-radius: 0;
    }
    .accordion-holder {
        width: 100%;
        float: left;
        margin: 5px;
    }
    .width-panel-offset-area {
        width: 100%;
        padding: 30px 15px;
        overflow: initial;
    }
    .tile-holder {
        width: calc(100% + 30px);
        margin: 0 -15px;
        text-align: center;
    }
    .ft-tile-each {
        margin: 15px;
    }
    .normal-text--md {
        font-size: 16px;
        margin: 10px 0px;
        line-height: 24px;
    }
    .filtered-by {
        font-size: 12px;
    }
    .selected-head {
        font-size: 28px;
        line-height: 36px;
    }
    .price-plan {
        font-size: 9px;
    }
    .price-in {
        font-size: 24px;
    }
    .icon-in.icon-rupees {
        width: 15px;
        height: 17px;
    }
    .price-block-placeholder {
        width: 40px;
    }
    .price-block {
        width: calc(100% - 40px);
    }
    .tab-indic-avatar-block img {
        width: 100%;
    }
    .card-in.card-in-md .card-in-content {
        width: 100%;
    }
    .checkout-btn-box .info-in-box {
        margin-bottom: 30px;
    }
    .checkout-btn-box .info-text-in {
        text-align: center;
    }
    .cs-modal.checkout-modal {
        padding-right: 20px;
    }
}

@media(max-width: 600px) {
    .shadow-image-holder {
        left: 45px;
    }
    .girl-avatar-second {
        left: 0;
        overflow: hidden;
    }
    .form-cs-input.form-cs-input--half {
        width: 100%;
    }
    .form-cs-input.form-cs-input--half:nth-child(odd) {
        margin-left: 0;
        margin-bottom: 5px;
    }
    .form-cs-input.form-cs-input--half:nth-child(even) {
        margin-left: 0;
        margin-top: 5px;
    }
    .modal-head-box {
        padding: 45px 25px 0px;
    }
    .modal-form-panel {
        padding: 25px;
        order: 1;
    }
    .form-btn-holder {
        max-width: none;
    }
    .radio-all-holder {
        width: 100%;
        margin: 5px 0px;
        padding: 0;
    }
    .cs-binary-radio-box:first-child {
        margin-left: 0;
    }
    .cs-binary-radio-placeholder {
        padding: 10px 43px;
    }
    .modal-close-btn {
        top: 15px;
        right: 20px;
    }
    .banner-caption-block h1 {
        padding: 0px 15px;
    }
    .banner-caption-block p {
        padding: 0px 15px;
    }
    .modal-head-box p.sub-header {
        font-size: 16px;
        line-height: 24px;
        margin: 5px 0px;
    }
    .icon-tile-each {
        flex-direction: column;
        float: none;
        margin: 40px auto;
    }
    .icon-tile-description-each {
        text-align: center;
    }
    .card-in {
        width: calc(100% - 30px);
        margin: 35px auto;
        flex-direction: column;
        text-align: center;
    }
    .card-in-content {
        width: 100%;
        padding: 0px;
    }
    .c-tile-each {
        min-width: auto;
        margin: 15px 0px;
    }
    .c-tile-panel-holder-inner {
        width: 100%;
        margin: 0px;
    }
    .c-tile-content-area {
        height: auto;
    }
    .page-head {
        font-size: 32px;
        margin-bottom: 0px;
    }
    .page-subhead-text {
        font-size: 24px;
    }
    .c-tile-each {
        padding: 40px 20px;
    }
    .c-tile-panel-holder-outer {
        padding: 0;
    }
    .checkout-btn-holder .blue-gradient-btn {
        font-size: 12px;
        line-height: 16px;
    }
    .checkout-table tr th, .checkout-table tr td {
        padding: 20px 10px;
    }
    .table-btn-holder {
        width: 24px;
        height: 24px;
    }
    .checkout-item-block {
        width: auto;
        padding-left: 10px;
    }
    .checkout-item-content {
        display: none;
    }
    .text-in-left .in-block.in-dark {
        display: none;
    }
    .item-all-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .checkout-lt-price {
        font-size: 15px;
    }
    .checkout-table {
        width: auto;
    }
    .checkout-lt-price .icon-in.icon-rupees {
        width: 8px;
        height: 11px;
    }
}

@media(max-width: 450px) {
    .banner-slide-image-holder {
        max-width: 320px !important;
        left: calc(50% - 160px) !important;
        bottom: -76px !important;
    }
    .banner-in {
        padding-bottom: 150px;
    }
    .banner-after-section {
        padding-top: 75px;
    }


    .widthed-block.block-in-left h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .widthed-block.block-in-left p {
        font-size: 16px;
        line-height: 24px;
    }
    .md-text {
        font-size: 24px;
        line-height: 28px;
    }
    .tie-in {
        width: 160px;
    }
    .features-title {
        font-size: 42px;
    }
    .feature-title-block p {
        font-size: 18px;
        line-height: 24px;
    }
    .course-image {
        width: 30px;
    }
    .course-description {
        width: calc(100% - 30px);
    }
    .course-description h2 {
        font-size: 36px;
    }
    .course-description p {
        font-size: 16px;
    }
    .course-section {
        padding: 40px 0px;
        min-height: auto;
    }
    .upper-c-link.arrow-link {
        font-size: 14px;
    }
    .contact-us-section {
        padding-top: 40px;
    }
    .form-head {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 30px;
    }
    .form-holder {
        padding: 0px;
    }
    .avatar-holder.avatar-features {
        width: 100%;
        height: auto;
        bottom: -250px;
    }
    .features-tiles-holder {
        margin-bottom: 240px;
    }
    .footer-block-in {
        margin-bottom: 50px;
    }
    .footer-block-in:last-child {
        margin-bottom: 0;
    }
    .contact-link-list li {
        margin: 5px 0px;
    }
    .back-to-page-name {
        display: none;
    }
    .ft-tile-each {
        float: none;
        margin: 18px auto;
    }
}

/* MEDIA QUERIES END */  