@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'IvyMode';
    src: url(../font/IvyMode-Regular.ttf);
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

p {
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    opacity: 60%;
}

h1 {
    font-family: 'IvyMode';
    font-size: 56px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h2 {
    font-family: 'IvyMode';
    font-size: 45px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h3 {
    font-family: 'IvyMode';
    font-size: 21px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

h4 {
    font-family: 'IvyMode';
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h5 {
    font-family: 'IvyMode';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'IvyMode';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/select.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 1.3rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section Start ----------------------------------------------------------- */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.btn-1 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 7px 7px 7px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    gap: 15px;
    background: #6bb1e4;
    border: 1px solid #fff;
}

.btn-1 span {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    transition: .5s all;
    background: #fff;
}

.btn-1:hover span {
    transform: rotate(180deg);
}


/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 10px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    left: 30px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 10px 23px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #6bb1e4;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.container-fluid {
    padding: 0 4%;
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

.hero-social p {
    width: unset !important;
    text-transform: uppercase;
    opacity: 1;
    font-weight: 600;
}

.bnr-hdlimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    border-radius: 24px;
    background: #6bb1e4;
    height: 95px;
}

.baner-headline {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 12px;
    border-radius: 25px;
    width: 86%;
    background-image: url(../images/bnr-clrt.png);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    margin: 0 auto;
}

.baner-headline h3 {
    margin-bottom: 4px;
}

.col-lg-6.bnrthui {
    align-content: end;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 33px;
    justify-content: center;
    margin-top: 160px;
}

.baner-txt {
    background: #fff;
    text-align: center;
    padding: 120px 35px 50px;
    border-radius: 30px;
    margin: 0 4% 0 3%;
}

.baner-txt h1 span {
    display: block;
    color: #9dd6ff;
}

.baner-txt h1 {
    margin-bottom: 10px;
}

.banner-sec {
    position: relative;
    z-index: 0;
    margin-bottom: 100px;
    align-content: center;
    padding: 50px 0;
}

.baner-txt.inr {
    background: unset;
    padding: unset;
    text-align: unset;
}

.banner-sec.iner:before {
    background-image: url(../images/baner-iner.png);
    background-position: right;
}

.banner-sec.iner {
    padding: 140px 0;
}

.baner-txt.inr h1 span {
    display: unset;
}

.banner-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/baner-new.png);
    background-color: #f0eff2;
    background-size: cover;
    background-repeat: no-repeat;
    width: 96%;
    height: 100%;
    right: 0;
    z-index: -1;
    margin: auto;
    border-radius: 30px;
}

.hero-rate ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-rate ul li i {
    font-size: 20px;
    color: #000;
}

.baner-txt p {
    width: 89%;
    margin: 0 auto 15px;
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

.about-sec {
    margin-bottom: 100px;
}

.about-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
}

.about-img {
    margin-right: 15px;
}

.about-text h2 span {
    display: block;
    color: #9dd6ff;
}

.about-text p {
    margin-bottom: 20px;
    width: 95%;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Program Section Start ------------------------------------------------------------- */

.program-sec {
    padding: 80px 0;
    background: #f0eff2;
    margin: 0 30px;
    border-radius: 30px;
}

.program-sec.inr {
    background: unset;
    padding: unset;
    margin-bottom: 100px;
}

.program-sec.inr .program-main {
    margin-bottom: 30px;
}

.program-sec h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.progrm-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s all;
}

.program-main {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
}

.program-sec button.slick-arrow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/btn-arrow.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.4s ease;
}

.program-sec button.slick-arrow:hover:before {
    background-color: rgb(107 177 228);
    border-color: #6bb1e4;
    background-image: url(../images/btn-arrow-w.png);
}

.program-sec button.slick-prev:before {
    transform: rotate(180deg);
}

.progrm-txt {
    padding: 30px 20px 30px;
    position: relative;
    z-index: 0;
}

.progrm-txt p {
    margin: 6px 0 10px;
    font-size: 14.75px;
    line-height: 26px;
    opacity: 70%;
}

.progrm-txt:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #6bb1e4;
    z-index: -1;
    transition: 0.7s all;
}

.program-sec .slick-current.slick-active .progrm-txt:before,
.program-main:hover .progrm-txt:before {
    height: 100%;
}

.program-sec .slick-current.slick-active .progrm-txt h4,
.program-main:hover .progrm-txt h4 {
    color: #fff;
}

.program-sec .slick-current.slick-active .progrm-txt p,
.program-main:hover .progrm-txt p {
    color: #fff;
    opacity: 50%;
}

.program-sec .slick-current.slick-active .progrm-img img,
.program-main:hover .progrm-img img {
    transform: scale(1.4);
    filter: brightness(0.5);
}

.progrm-img {
    overflow: hidden;
}

.program-sec button.slick-prev {
    top: -50px;
    left: 92%;
}

.program-sec button.slick-next {
    top: -50px;
    right: 28px;
}

.program-sec .slick-slide {
    margin: 0 10px;
    opacity: 1;
}

/*---------------------------------------------------- Program Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Why Choose Us Section Start ------------------------------------------------------------- */

.whychose-sec {
    padding: 100px 0;
}

.whychose-txt h2 span {
    color: #9dd6ff;
    display: block;
}

p.whychose-lst {
    margin-top: 20px;
}

.whychose-sec.inr {
    background-color: #f0eff2;
    margin: 0 30px 100px;
    border-radius: 20px;
}

.whychose-txt p {
    margin: 5px 0 10px;
}

.whychose-txt ul {
    column-count: 2;
    margin-bottom: 10px;
}

.whychose-txt ul li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-size: 14px;
    color: #000000a6;
    font-weight: 500;
}

.whychose-img img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 30px;
}

/*---------------------------------------------------- Why Choose Us Section End ------------------------------------------------------------- */

/*---------------------------------------------------- WeekDay Section Start ------------------------------------------------------------- */

.weekday-sec {
    padding: 80px 0;
    background: #f0eff2;
    margin: 0 30px;
    border-radius: 30px;
}

.weekday-sec.inr {
    background: unset;
    margin: unset;
    padding: unset;
    margin-bottom: 100px;
}

.weekday-sec.inr .weekday-main {
    margin-bottom: 40px;
}

.weekday-head {
    text-align: center;
    margin-bottom: 15px;
}

.weekday-head p {
    width: 53%;
    margin: 0 auto;
}

.weekday-main {
    background: #ffffff;
    padding: 13px;
    border-radius: 15px;
    box-shadow: 0 0 2px 2px #0000000f;
    transition: 0.7s all;
    position: relative;
    z-index: 0;
}

.weekday-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
}

.weekday-txt {
    padding: 30px 13px 10px;
}

.wekdy-txttp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.weekday-main:hover:before {
    height: 100%;
}

.weekday-main:hover .wekdy-txttp span {
    color: #000;
    background: #fff;
}

.weekday-main:hover * {
    color: #fff;
}

.weekday-main:hover .weekday-txt ul li img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(100%) saturate(0%) hue-rotate(330deg) brightness(102%) contrast(105%);
}

.weekday-main:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #6bb1e4;
    width: 100%;
    height: 0;
    z-index: -1;
    border-radius: 15px;
    transition: 0.7s all;
}

.wekdy-txttp span {
    background: #6bb1e4;
    padding: 12px 35px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.wekday-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.weekday-txt ul {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid #00000030;
    padding-bottom: 16px;
    margin-bottom: 12px;
}

.wekdy-txttp span i {
    color: #ffc107 !important;
}

.weekday-txt p {
    width: 95%;
    margin: 5px 0 10px;
}

.weekday-txt ul li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.wekday-rate span {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat';
}

.morgan {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.morgan img {
    width: 43px;
    height: 43px;
    object-fit: cover;
    border-radius: 50%;
}

.morgan:before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 33px;
    background: #41df10;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.clas-weekschedule-txt ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 10px 0;
    border-bottom: 2px solid #00000061;
    padding: 10px 0 17px;
}

.week-schedule-img img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 16px;
}

section.class-schedule-sec {
    margin-bottom: 100px;
}

section.class-schedule-sec p {
    margin-bottom: 15px;
}

.clas-weekschedule-txt .wekday-rate {
    justify-content: flex-start;
    gap: 50px;
}

.clas-weekschedule-txt ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}





/*---------------------------------------------------- WeekDay Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Graduate Section Start ------------------------------------------------------------- */

.graduate-sec {
    background-image: url(../images/graduate.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    background-color: #f0eff2;
    margin: 0 30px 100px;
    padding: 100px 0;
}

.graduate-main {
    background: #fff;
    padding: 50px 35px 70px;
    border-radius: 24px;
    text-align: center;
}

.graduate-main p {
    margin: 8px auto 14px;
}

.graduate-main h2 span {
    color: #6bb1e4;
}

.graduate-main h2 {
    font-size: 55px;
}

/*---------------------------------------------------- Graduate Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Testimonials Section Start ------------------------------------------------------------- */

.testi-coma img {
    width: auto;
}

.testi-coma {
    background: #6bb1e4;
    width: 55px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

.testi-main {
    border: 0.07px solid #00000024;
    border-radius: 11px;
    padding: 30px 25px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.testi-user img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.usr-tsti-txt {
    display: grid;
}

.usr-tsti-txt span {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    line-height: 1.5;
}

.testi-main p {
    font-weight: 600;
    margin-top: 14px;
}

.testi-head {
    margin-bottom: 17px;
}

.testimonial-sec .slick-slide {
    opacity: 1;
}

.testimonial-sec {
    margin-bottom: 100px;
}

.testimonial-sec .slick-current .testi-main {
    background: #6bb1e4;
    border-color: #6bb1e4;
}

.testimonial-sec .slick-current .testi-main .testi-coma {
    background: #fff;
}

.testimonial-sec .slick-current .testi-main .testi-coma img {
    filter: brightness(0);
}

.testimonial-sec .slick-current .testi-main p {
    color: #fff;
}

.testimonial-sec .slick-current .testi-main .testi-user span {
    color: #fff;
}

.testimonial-sec button.slick-arrow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/btn-arrow.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 40px;
    height: 40px;
    border: 1px solid #bdc0c6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.4s ease;
    filter: brightness(0) saturate(100%) invert(94%) sepia(7%) saturate(185%) hue-rotate(181deg) brightness(81%) contrast(91%);
}

.testimonial-sec button.slick-arrow:hover:before {
    background-color: rgb(107 177 228);
    border-color: #6bb1e4;
    background-image: url(../images/btn-arrow-w.png);
    filter: unset;
}

.testimonial-sec button.slick-prev:before {
    transform: rotate(180deg);
}

.testimonial-sec button.slick-prev {
    top: -50px;
    left: 92%;
}

.testimonial-sec button.slick-next {
    top: -50px;
    right: 28px;
}

/*---------------------------------------------------- Testimonials Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Payment Section Start ------------------------------------------------------------- */

.payment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.payment-head p {
    width: 40%;
}

.payment-sec {
    padding: 100px 0;
}

.payment-main {
    box-shadow: 0 0 7px 7px #0000000a;
    padding: 40px 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.7s all;
    background: #fff;
}

.payment-main ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-size: 14px;
    color: #464141;
    font-weight: 600;
}

.payment-main ul {
    margin: 13px 0 18px;
    margin-left: 42px;
}


.tution-paymtn-txt p {
    margin-bottom: 10px;
    font-weight: 600;
}

.tution-paymtn-txt h2 {
    margin-bottom: 5px;
}

.tution-paymtn-txt h2 span {
    color: #6bb1e4;
}

.tution-img img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 20px;
}

.payment-sec.iner {
    padding: 80px 0;
    background: #f0eff2;
    margin: 100px 30px;
    border-radius: 30px;
}

.payment-main h4 {
    font-size: 24px;
}

.payment-main p {
    opacity: 70%;
}

.pymnt-value span {
    font-size: 40px;
}

.pymnt-value {
    font-family: 'Montserrat';
    color: #6bb1e4;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    width: max-content;
    margin: 20px auto 10px;
}

.pymnt-value:before {
    content: '$';
    position: absolute;
    top: -12px;
    left: -17px;
    font-size: 23px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.payment-main:hover {
    background: #6bb1e4;
    transform: scale(1.05);
}

.payment-main:hover * {
    color: #fff;
}

.payment-main:hover ul li img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(0%) hue-rotate(219deg) brightness(104%) contrast(101%);
}

/*---------------------------------------------------- Payment Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

.footerSec {
    background: #6bb1e4;
    padding: 0px 0 10px;
    margin: 0 30px 25px;
    border-radius: 20px;
    position: relative;
}

ul.list-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 27px;
}

ul.list-inline li {
    border: 1px solid #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.9s;
}

ul.list-inline li:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.ftr-btm-line {
    padding: 10px 0 4px;
    text-align: center;
    margin-top: 40px;
}

.ftr-btm-line:before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 0;
    background: #ffffff52;
    width: 100%;
    height: 1px;
}

.footerSec * {
    color: #fff;
    opacity: 1;
}

.ftr-cntc {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    padding: 60px 0 42px;
    border-right: 1px solid #ffffff52;
}

.footerSec:before {
    content: '';
    position: absolute;
    top: 140px;
    left: 0;
    background: #ffffff52;
    width: 100%;
    height: 1px;
}

.ftr-links-pgs ul {
    column-count: 2;
    width: 80%;
}

.ftr-links-pgs ul li a {
    font-size: 15px;
    font-weight: 500;
}

.ftr-links-pgs ul li {
    margin-bottom: 11px;
}

.footerSec h5 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footerForm {
    position: relative;
    margin-right: 20px;
    margin: 10px 0 10px;
}

.footerForm button {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    width: 70px;
    height: 50px;
    border: unset;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerForm input {
    width: 100%;
}

.ftr-info img {
    margin-bottom: 15px;
}

.footerForm input {
    width: 100%;
    height: 50px;
    border: 1px solid #fff;
    padding: 15px 20px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
}

.ftr-link-serv ul li a {
    font-size: 15px;
    font-weight: 500;
}

.ftr-link-serv ul li {
    margin-bottom: 10px;
}

.footerForm button i {
    color: #000;
}

.footerForm input::placeholder {
    color: #fff;
}

.ftr-links-pgs {
    margin-left: 30px;
}

ul.list-inline li:hover i {
    color: #000;
}

.fntr-clstxt {
    display: grid;
    line-height: 1.4;
}

.fntr-clstxt span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat';
}

.fntr-clstxt a {
    font-weight: 500;
    font-size: 14px;
}

.fntr-clstxt p {
    width: 60%;
    line-height: 1.4;
}

.ftr-cntc.cal {
    border: unset;
    border-left: 1px solid #ffffff52;
}

.ftr-cntc.mail {
    border: unset;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Video Section Start ------------------------------------------------------------- */

.video-sec {
    padding: 60px 0 80px;
    background: #f0eff2;
    margin: 0 30px;
    border-radius: 30px;
    margin-bottom: 100px;
}

.videos {
    display: flex;
    align-items: center;
    gap: 2%;
}

.videos {
    display: flex;
    align-items: center;
    gap: 2%;
}

.video-header p {
    width: 50%;
    margin: auto;
    margin-top: 5px;
}

.video-header {
    text-align: center;
    padding: 0 0 3% 0;
}

.play-btn1 {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-1 {
    position: relative;
}

.play-btn1 i {
    color: #c79a37;
}

.play-btn {
    height: 90px;
    width: 90px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn i {
    font-size: 24px;
    color: #c79a37;
}

.video-line {
    height: 4px;
    width: 280px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-point {
    width: 20px;
    height: 20px;
    background-color: #c79a37;
    border-radius: 100%;
    border: 2px solid #fff;
    position: absolute;
    left: 20%;
    top: -8px;
}

.st-line {
    position: absolute;
    bottom: 8%;
    left: 4%;
}

.videos img {
    border: 8px solid #fff;
    width: 600px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
}

.video-1:first-child img,
.video-1:last-child img {
    width: 330px;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.video-1:nth-child(2n) img {
    width: 620px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.video-line1 {
    width: 560px;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
}

/*---------------------------------------------------- Video Section End ------------------------------------------------------------- */

/*---------------------------------------------------- FAQ Section Start ------------------------------------------------------------- */

.faqs-main {
    position: relative;
    padding: 80px 0;
    background: #f0eff2;
    margin: 0 30px;
    border-radius: 30px;
    margin-bottom: 100px;
}

.program-detail-sec {
    margin-bottom: 100px;
}

.faqs-main.testimonial-sec:after {
    background-color: rgb(71 69 70 / 73%);
}

.gorilla-content .accordion-button.collapsed {
    padding: 20px 50px;
    background: #67abdc;
    color: #fff;
    font-size: 35px;
    line-height: 45.11px;
    font-weight: 300;
    font-family: 'IvyMode';
    border-radius: 45px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 5px;
}

.gorilla-content .accordion-button {
    color: #000000;
    font-size: 24px;
    padding: 20px 20px;
    line-height: 30px;
    background-color: transparent;
    text-transform: capitalize;
}

.gorilla-content .gorrila-page-txt .color-red {
    color: #A60000;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
}

.accordion-body.gorrila-page-txt p {
    font-weight: 600;
    line-height: 27px;
    font-size: 15px;
}

.gorrila-page-txt ul {
    list-style: auto;
}

.gorrila-page-txt ul li {
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    margin-left: 15px;
}

.gorrila-page-txt ul li::marker {
    color: #A60000;
}

.accordion-body.gorrila-page-txt {
    padding: 11px 50px 40px;
    background: #ffffff;
    border-top: none;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.gorilla-content .accordion-item {
    margin-bottom: 30px;
    border: unset;
    background-color: transparent;
}

.service-detail.all- .dot img:nth-child(1) {
    left: 0;
}

.gorilla-content .accordion-button:not(.collapsed) {
    border-bottom: 0;
    font-size: 35px;
    font-family: 'IvyMode';
    background: #fff;
    text-transform: uppercase;
    padding: 35px 50px 0px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: unset;
}

.accordion-collapse.collapse {
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.gorilla-content button:focus:not(:focus-visible) {
    box-shadow: none;
}

.gorilla-content .accordion-button::after {
    content: '\f107';
    font-weight: 400;
    font-family: 'FontAwesome';
    background-image: none;
    bottom: 1%;
    position: absolute;
    right: 0%;
    height: 79px;
    width: 79px;
    display: flex;
    justify-content: center;
    border-radius: 100%;
    align-items: center;
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    content: '\f107';
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    color: #fff;
}

.gorilla-content.privacy-content {
    position: relative;
}

.gorilla-content .accordion-header {
    margin-bottom: 0;
    background: transparent;
    border-radius: 10px;
    color: #000
}

.faqs-main .testi-main {
    width: 60%;
    margin: 0 auto 50px;
    border: unset;
    padding: unset;
}

/*---------------------------------------------------- FAQ Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact1 h2,
.contact2 h2 {
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #6bb1e4;
}

.contact1 p,
.contact2>p {
    line-height: 27px;
    margin-top: 0;
    margin-bottom: 4%;
    font-size: 15px;
}

.contact1 input,
.contact1 textarea {
    width: 100%;
    margin-bottom: 20px;
    height: 63px;
    padding: 20px;
    background: transparent;
    border: 1px solid #414141;
    border-radius: 37px;
}

.contact1 .theme_btn {
    width: 100%;
    border: 0;
    background: #f01414;
    color: #fff;
    padding: 10px;
    font-size: 23.64px;
    font-weight: 500;
    border-radius: 0;
    height: 60px;
}

.contact1 textarea {
    height: 200px;
}

.contact2 ul li {
    display: flex;
    margin-bottom: 55px;
    align-items: center;
}

.contact2 ul li h4 {
    margin-bottom: 4px;
}

.contact2 ul li p a {
    color: #000;
    line-height: 25px;
    font-size: 15px;
    font-weight: 600;
    width: 50%;
    display: block;
}

.contact2 .icon {
    height: 85px;
    width: 17%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 19px;
    background: #6bb1e4;
}

.contact-page.all-section {
    margin-bottom: 100px;
}

.contact1 h2 span, .contact2 h2 span {
    color: #000;
}

.contact2 .icon_info p {
    opacity: 1;
}


.contact2 .icon i {
    font-size: 30px;
    color: #fff;
}

.map {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

h1.cnt:after {
    width: 25px;
    height: 25px;
    right: 5.1%;
    bottom: 21%;
}

.contact1 textarea {
    resize: none;
    border-radius: 13px !important;
    align-content: end;
}

.contact1 input::placeholder,
.contact1 textarea::placeholder {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact2 .icon_info {
    width: 83%;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Program Detail Section Start ------------------------------------------------------------- */

.program-detail-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
}

.program-detail-text h2 {
    margin-bottom: 4px;
}

.program-detail-text p {
    margin-bottom: 20px;
    line-height: 24px;
    width: 95%;
}

.program-detail-text h2 span {
    color: #6bb1e4;
}

.lst-prdt-last {
    margin-bottom: 20px;
}

.prgrm-detail-lst-ims img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/*---------------------------------------------------- Program Detail Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Enroll Section Start ------------------------------------------------------------- */

.enrol-sec {
    padding: 0 0 100px;
}

.field-enrol input, .field-enrol select, .field-enrol input, .field-enrol textarea {
    width: 100%;
    height: 62px;
    border: 1px solid #000;
    padding: 10px 27px;
    border-radius: 30px;
}

.field-enrol {
    position: relative;
    margin-bottom: 20px;
}

.field-enrol i {
    position: absolute;
    top: 22px;
    right: 25px;
    font-size: 20px;
    color: #000;
}

.field-enrol textarea {
    height: 180px;
    border-radius: 22px !important;
    align-content: end;
}

.field-enrol textarea::placeholder, .field-enrol input::placeholder {
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.field-enrol select {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}

.field-checklst-lin {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.field-checklst-lin input {
    width: 30px;
    height: 25px;
}

.field-checklst-lin p {
    opacity: 1;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-enrol {
    text-align: center;
}

/*---------------------------------------------------- Enroll Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Job Placement Section Start ------------------------------------------------------------- */

.jb-main {
    border: 1px solid #000;
    padding: 0px 35px 10px;
    border-radius: 40px;
    margin-bottom: 50px;
}

.jb-head {
    background: #6bb1e4;
    padding: 20px 40px;
    border-radius: 50px;
    margin: -20px -40px 38px;
}

.jb-main input, .jb-main select {
    width: 100%;
    height: 60px;
    padding: 10px 26px;
    border: 1px solid #000;
    border-radius: 40px;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.jb-head h2 {
    color: #fff;
    font-size: 35px;
}

.jb-main label {
    color: #000;
    font-family: 'Montserrat';
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.job-placement-sec {
    margin-bottom: 100px;
}

.resume-jb-main h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.resume-jb-main input {
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-family: 'Montserrat';
}

.resume-jb-main {
    margin-bottom: 22px;
}

/*---------------------------------------------------- Job Placement Section End ------------------------------------------------------------- */