@import url(./fonts/stylesheet.css);
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #0676f5;
    --subtitle: #676767;
    --paragraph: #000;
    --white: #fff;
    --black: #010c10;
    --border: #e3e3e3;
    --border2: #c5c5c5;
    --Eina03: "Libre Baskerville", serif;
    --Eina02: "Libre Baskerville", serif;
    --Figtree: "Libre Baskerville", serif;
	    /* --Eina03: "Eina03", sans-serif;
    --Eina02: "Eina02", sans-serif;
    --Figtree: "Figtree", sans-serif; */
	--instrument: "InstrumentSerif", sans-serif;
	--medium-font: "Libre Baskerville", serif;
	--regular-font: "Libre Baskerville", serif;
	--semibold-font: "Libre Baskerville", serif;
	--bold-font: "Libre Baskerville", serif;
	--light-font: "Libre Baskerville", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--Eina03);
    scroll-behavior: smooth;
    font-size: 10px;
    color: black;
}

/* owl */
.owl-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--paragraph);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--subtitle);
}

.owl-nav button {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-radius: 1rem !important;
    padding: 15px !important;
    transition: all 0.3s ease-in-out;
}

.owl-nav button:hover {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

.owl-nav button img {
    width: 2.5rem;
    height: auto;
}

.owl-nav button:hover img {
    filter: invert(1);
}

/* owl */
/* banner section starts */
.banner {
    position: relative;
    background: url(./images/background.webp) no-repeat center cover;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.banner-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.home .banner-video{
	height: 100vh !important;
}

/* .banner-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
.banner-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #81818142;
}

/* banner section ends */
/* about section starts */
.about-pos {
    position: relative;
}

.about-pos::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 100%;
    border: 3px dashed #e3e3e336;
    z-index: -1;
    border-radius: 50%;
}

.about-pos::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 150%;
    border: 3px dashed #e3e3e336;
    border-radius: 50%;
    z-index: -1;
}

.about {
    padding: 10rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-grid-img-80 {
    max-width: 80%;
    height: auto;
    position: relative;
    top: 60px;
}

.about-grid-left {
    display: block;
    margin: 0 0 0 auto;
    position: relative;
    top: -60px;
}

.about-grid-content {
    border-radius: 50%;
    border: 3px dashed var(--border);
    padding: 10px;
}

.about-grid-content-inner {
    padding: 4rem 10rem;
}

/* about section ends */
/* proven section start */
.counter-box {
    border: 1px solid var(--border2);
    border-radius: 1rem;
    padding: 25px 60px;
    transition: all 0.3s ease-in-out;
}

.counter-box:hover {
    border-color: transparent;
    background: #e4f6ff;
    background: linear-gradient(204deg,
            rgba(228, 246, 255, 1) 0%,
            rgba(250, 253, 255, 1) 100%);
}

.plus::after {
    content: "+";
    margin-left: 1rem;
}

.percent::after {
    content: "%";
    margin-left: 1rem;
}

/* proven section start */
/* or featured courses section start */
.featur-slider-item {
    background: #e4f6ff;
    background: linear-gradient(204deg,
            rgba(228, 246, 255, 1) 0%,
            rgba(250, 253, 255, 1) 100%);
    max-width: 1000px;
    gap: 2rem;
    margin: auto;
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 0 10px 10px #f7f7f7;
}

.featur-slider .owl-item {
    padding: 25px 0;
}

/* .featur-slider-item-inner {
  padding: 2rem;
} */
.featur-slider-item-inner {
    padding: 10% 15%;
}

.featur-slider-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featur-slider {
    position: relative;
}

.featur-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 2rem;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
}

/* or featured courses section end */
/* why choose us section start */
.why-choose-item {
    background: var(--white);
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 76 193 / 17%);
    -moz-box-shadow: 0px 0px 10px 0px rgb(0 76 193 / 17%);
    box-shadow: 0px 0px 10px 0px rgb(0 76 193 / 17%);
    border-radius: 1rem;
    padding: 40px 10px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.why-choose-item-img {
    width: 10rem;
    height: auto;
}

.why-choose .container-fluid {
    width: 65%;
    margin: 0 auto;
}

.why-choose .width-75 {
    width: 75%;
    margin: 0 auto;
}

/* why choose us section end */
/* calltoaction */
.calltoaction {
    background: #f1f9ff;
    background: linear-gradient(286deg,
            rgba(241, 249, 255, 1) 0%,
            rgba(243, 248, 255, 1) 40%,
            rgba(229, 243, 255, 1) 100%);
    padding: 3rem 3rem 0;
    margin: auto;
    border-radius: 15px;
}

.calltoaction .grid-column-2 {
    padding: 0 40px 0 60px;
}

.calltoaction-img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 0 0 auto;
}

/* calltoaction */
/* doctor slider */
.doctor-slider-item-front {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.doctor-slider-item-front-one {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 2rem 0;
}

.doctor-slider-item-front-one-content {
    margin: 0 2rem;
    background: #ffffffd5;
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    min-height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-slider-item-img {
    width: 100%;
    height: auto;
}

.doctor-slider-item-front-two-content {
    margin: 0 2rem;
    background: #ffffffd5;
    border-radius: 1rem;
    padding: 1rem;
    display: none;
    transition: all 0.3s ease-in-out;
}

.doctor-slider-item-front:hover .doctor-slider-item-front-two-content {
    /*   display: block; */
}

.doctor-slider-item-front:hover .doctor-slider-item-front-one-content {
    display: none;
}

.doctor-slider {
    position: relative;
}

.doctor-slider .owl-nav {
    position: absolute;
    top: -13rem;
    right: 0;
}

/* doctor slider */
/* success-stories   */
.success-stories {
    background: var(--black);
    padding: 5rem 0;
    width: 98%;
    margin: 0 auto;
    border-radius: 15px;
}

.success-stories-slider-item {
    background: #242424;
    padding: 2rem;
    border-radius: 1rem;
	height:fit-content;
}

.success-stories-slider-item-star-img {
    width: 15rem;
    height: auto;
}

.success-stories-slider-item-person {
    width: 5rem;
    height: auto;
}

.success-stories-slider .owl-nav {
    justify-content: end;
}

.white-line {
    width: 100%;
    height: 1px;
    background: #4a4a4a;
    margin: 2rem 0;
}

/* success-stories   */
/* faq */
.faqs-container {
    margin-top: 4rem;
}

details {
    background: #eef5ff;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    cursor: pointer;
}

summary {
    font-family: var(--Eina02);
    font-size: 20px;
    font-weight: bold;
    position: relative;
}

summary::after {
    content: "";
    background: url(./images/tabler_plus.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

details:open>summary {
    padding: 0px 30px 0px 0px;
}

details:open>summary::after {
    transform: rotate(45deg);
}

summary::marker {
    display: none !important;
    content: none !important;
}

.content {
    font-family: var(--Eina03);
    font-size: 16px;
    line-height: 30px;
    font-weight: normal;
}

details:open>summary {
    padding: 0px 30px 10px 0px;
    /*   margin: 0px 0px 10px; */
}

details:open>.content {
    padding: 0px 0px 0px;
    margin: 0px 0px 0px;
}

/* faq */
/* blog */
.blog {
    position: relative;
}

.blog-slider {
    position: relative;
}

.blog-slider .owl-nav {
    position: absolute;
    top: -13rem;
    right: 0;
}

/* blog */
/* contact */
.form {
    position: relative;
}

.form-position {
    /* position: absolute; */
    top: 4rem;
    right: 3rem;
    max-width: 600px;
    width: 100%;
    background: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 2rem;
    border-radius: 1rem;
    margin: 20px auto;
}

.form-sec {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-sec label {
    font-size: 16px;
    font-family: var(--Eina02);
    font-weight: normal;
    color: var(--subtitle);
    margin-left: 3rem;
    position: relative;
}

.form-sec {
    position: relative;
}

.form-sec img {
    position: absolute;
    left: 15px;
    top: 40%;
    width: 24px;
    height: auto;
}

.form-sec input {
    padding: 15px 50px !important;
}

.form-sec #name::after {
    background: url(./images/icon/profile.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.form-sec #phone::after {
    background: url(./images/icon/phone.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.form-sec #email::after {
    background: url(./images/icon/message.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.form-sec #message::after {
    background: url(./images/icon/message.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.form-sec label::after {
    content: "";
    position: absolute;
    width: 1.8rem;
    height: 1.8rem;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0.5rem;
    left: -3rem;
}

.form-sec input,
.form-sec textarea {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 12px;
    border: 1px solid #cacaca;
    background: transparent;
    font-size: 16px;
    font-family: var(--Eina03);
    /*   font-weight: 600; */
    color: var(--black);
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
.form-sec input[type="number"]::-webkit-outer-spin-button,
.form-sec input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-sec input[type="number"] {
    -moz-appearance: textfield;
}

/* contact */
/* footer */
footer {
    background: var(--black);
    margin: 1rem;
    padding: 5rem 0;
    border-radius: 1rem;
}

/* .footer-logo {
  width: 50rem;
  height: auto;
  display: block;
  margin: 0 auto;
} */
.footer-logo {
    width: 50rem;
    height: auto;
    display: block;
    margin: 0 auto;
    background-color: white;
    padding: 25px;
    border-radius: 20px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
}

.footer-1 {
    width: 10%;
}

.footer-3 {
    width: 20%;
}

/* .footer-2,
.footer-3 {
  width: 30%;
} */
.footer-2 {
    width: 70%;
}

.footer-2 h3 {
    text-align: center;
}

.footer-2 .footer-inside-main {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-2 .footer-inside {
    width: 50%;
}

.footer-link li {
    list-style: none;
}

.social-link {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.social-icon-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.social-icon-btn img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.social-icon-btn:hover img {
    filter: brightness(0);
}

/* footer */
/* banner page */
.inner-banner {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    padding: 0 1%;
}

.inner-banner::before {
    content: "";
    background: #000000;
    background: linear-gradient(175deg, rgb(0 0 0 / 23%) 0%, rgb(0 0 0 / 38%) 100%);
    width: 98%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 1%;
    border-radius: 15px;
    display: none;
    align-content
}

.page-banner-cont {
    position: absolute;
    top: 40%;
    left: 30%;
    /*   transform: translate(-50%, -50%); */
    width: 40%;
}

/* banner page */
.post-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 3rem;
    color: var(--white);
}

.breadcrumbs-list {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 1rem;
}

.breadcrumbs-list a {
    font-family: var(--Eina02);
    font-size: 1.4rem;
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-list .breadcrumb_last {
    color: #999;
    font-family: var(--Eina02);
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 0 10px;
}

.breadcrumbs-list span {
    display: inline;
}

.container.margin-top-3 {
    margin-top: 3rem;
}

.sucess-1 {
    width: calc(100% / 3 - 2rem);
}

.sucess-2 {
    width: calc(100% / 2 - 2rem);
}

.success-stories-slider-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.icon {
    width: auto;
    height: 20px;
    object-fit: contain;
}

.formstyle {
    width: 100%;
    padding: 2rem;
    border: none;
    border-radius: 1rem;
    background: #f8f8f8;
}

.star {
    width: 10rem;
    height: auto;
}

.gray-line {
    width: 100%;
    height: 1px;
    background: rgba(74, 74, 74, 0.377);
    margin: 4rem 0;
}

.flex-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.enroll-box {
    width: 100%;
    height: 100%;
    background: #d8edff;
    background: linear-gradient(0deg, rgba(214, 240, 255, 1) 0%, rgba(232, 243, 255, 1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    /*   box-shadow: 0px 0px 25px 0px rgba(2, 87, 218, 0.1); */
    border: 2px solid #cce4ff;
    margin-top: -70px;
}

.gallery-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.img-50 {
    width: calc(100% / 2 - 2rem);
    object-fit: cover;
    border-radius: 0.5rem;
}

.img-25 {
    width: calc(100% / 4 - 2rem);
    object-fit: cover;
    border-radius: 0.5rem;
}

.course-card {
    width: calc(100% / 3 - 2rem);
    border-radius: 0.5rem;
    overflow: hidden;
    background: #d6f0ff;
    background: linear-gradient(0deg, rgba(214, 240, 255, 1) 0%, rgba(232, 243, 255, 1) 100%);
    transition: all 0.3s ease-in-out;
    padding: 1rem;
    border: 2px solid #cce4ff;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card-img {
    overflow: hidden;
}

.course-card {
    border-radius: 15px;
}

.course-card h3 {
    min-height: 95px;
    font-weight: 700;
    font-size: 22px;line-height:30px;
    color: #0E2A46;
}

.course-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.course-card-details {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

.course-card-details-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.course-card-details-item img {
    width: auto;
    height: 20px;
    object-fit: contain;
}

.enquiry-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.enquiry-cont div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.enquiry-cont img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

/* video */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-popup-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: #000;
    padding: 1rem;
    border-radius: 10px;
}

.video-popup-content video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.close-video {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #000;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.img-button {
    position: relative;
}

.img-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url("images/play-btn.webp") no-repeat;
    background-size: contain;
    width: 5rem;
    height: 5rem;
}

.footerdesk {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* display: none; */
}

.icon-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem !important;
    height: 7rem !important;
    background: var(--white);
    border-radius: 2rem;
    border: 1px solid var(--border);
}

.icon-call img {
    width: 4rem;
    height: auto;
}

.footermob {
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
    padding: 3rem 0;
    background: var(--white);
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.icon-call-foot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-call-foot img {
    width: 3rem;
    height: auto;
}

.register-form-page input,
.register-form-page label,
.register-form-page select {
    width: 100%;
    margin: 5px 0;
    font-size: 16px;
}

.register-form-page .form-control {
    width: 80%;
    border: 1px solid black;
    padding: 10px 5px;
    border-radius: 10px;
    font-size: 16px;
}

.register-form-page .form-check {
    padding-left: 22px;
    font-family: var(--para-font);
}

.register-form-page strong {
    font-family: var(--medium-font);
    font-size: 20px;
    letter-spacing: 1px;
}

.register-form-page label {
    font-family: var(--medium-font);
    font-size: 16px;
    margin: 20px 0 5px;
    width: 100%;
    display: block;
}


.register-form-page .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
    margin-top: 30px;
}

.register-form-page .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 10px 0;
}

.my-3{
	margin:30px 0 !important;
}

.courses-slider {
    margin: 30px 0;
	justify-content: center;
    align-items: center;
    align-content: center;
/*     display: flex !important; */
}

.courses-slider .card-title h2,
.wp-block-heading strong {
    font-size: 30px;
  line-height: 30px;;
}

.courses-slider p,
.courses-slider b {
    font-size: 14px;
}

.courses-slider .button,
.courses-slider span,
.register-form-page .button {
    background: var(--black);
    border: 1px solid var(--black);
    color: white;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 10px;
    width: fit-content;
}

.courses-slider .button {
    margin-top: 15px;
}

.courses-slider .item {
    padding: 15px;
    box-shadow: 0 0 10px 4px #d4d4d4;
    border-radius: 10px;
}

.courses-slider.owl-drag .owl-item {
    padding: 10px;
}

.courses-slider img {
    width: 100%;
    height: auto;
}

.register-form-page form {
    padding: 25px;
    box-shadow: 0 0 10px 4px #d4d4d4;
    border-radius: 10px;
    margin: 20px 0;
}

.featur-slider img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
}

.enroll-box img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px;
    display: none;
}

.btn-primary:hover span {
    color: black !important;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.menu-item-24 {
    position: relative;
}

.sub-menu {
    display: none;
}

.menu li {
    padding: 10px 0;
}

.menu-item-24:hover .sub-menu {
    display: block;
    min-width: 350px;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 4px #d4d4d447;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: white;
    z-index: 9999;
}

.sub-menu li {
    padding: 0;
    margin: 10px 0;
}

.register-form-page option {
    font-size: 16px;
}

strong,
li,
a {
    font-size: 16px;
}

p {
    margin: 5px 0;
}

.border-left-right {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    padding: 0 15px;
}

.border-right {
    border-right: 1px solid grey;
    padding-right: 15px;
}

.footer-flex h3 {
    margin-bottom: 20px;
}

.register-form-page label span {
    color: red;
    font-size: 16px;
}

.module-content {
    margin: 15px 0;
}

.module-content li {
    margin: 10px 0;
}

.mod.ms-0 {
    margin: 15px 0;
}



.confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.confirmation-details {
    width: 500px;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px 4px #d4d4d447;
    margin-top: 25px;
    background: linear-gradient(133deg,
            rgba(216, 237, 255, 0.56) 0%,
            rgba(221, 237, 255, 1) 100%);
}

.course-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: none;
}

.courses-main-img {
    display: none;
}

.confirmation-flex {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #9A9A9A;
    padding-bottom: 25px;
}

.confirmation-flex h3 {
    width: 65%;
    text-align: left;
}

.confirmation-flex .paragraph {
    width: 35%;
    text-align: right;
}

.confirmation-flex .left {
    width: 60%;
}

.confirmation-flex .right {
    width: 40%;
}

.confirmation-details p {
    line-height: 26px;
	    font-family: var(---Eina02);
    font-weight: normal;
    font-style: normal;
}
.confirmation-details h4{
	font-family: var(---Eina03);
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    text-transform: capitalize;
}

.container-content {
    width: 70%;
    margin: 0 auto;
}

.container-content p{
	font-size:18px;
}

.nav-contact {
    position: relative;
    padding: 10px 15px 10px 35px !important;
    border-radius: 10px;
}

.nav-contact::before {
    position: absolute;
    content: '';
    width: 20px;
  line-height: 30px;;
    height: 20px;
  line-height: 30px;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 10px;
    top: 32%;
}

.proven-section-home {
    background-color: white;
}

.about-page h1 {
    font-size: 40px !important;
}

.course-card .review {
    color: #4D5756;
}

.paragraph.bold {
    font-weight: 700;
}

.paragraph.semibold {
    font-weight: 600;
    color: black;
}

.inner-banner img {
    border-radius: 15px;
}


.modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 650px;
    z-index: 1;
}

.close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 36px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.modal iframe {
    width: 100%;
    height: 400px;
}

.video-testimonial-section .item {
    position: relative;
}

.video-testimonials-slider img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.video-testimonial-section .video-testimonials-yt-btn {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 40%;
    left: 44%;
}

.video-testimonials-yt-btn img {
    width: 75px;
    height: auto;
	cursor:pointer;
}

.course-module,
.cta-course {
    display: none;
}

.course-card a {
    text-decoration: none;
}

.img-video-thumb {
    border-radius: 20px;
}

.banner-slider {
    width: 98% !important;
    margin: 0 auto;
}

.banner-slider video {
    width: 100%;
    height: 600px;
    border-radius: 20px;
}

.banner-slider img {
    border-radius: 20px;
    width: 100% !important;
    height: 600px;
    object-fit: cover;
}

.feature-slider-item-inner {
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 10px 4px #8080803b;
    border-radius: 15px;
}

.mt-4 {
    margin-top: 25px;
}

.my-1 {
    margin: 10px 0;
}

.feature-slider-item-img{
	width:50%;
}

.feature-slider-item-img img {
    width: 100% !important;
    height: 300px;
    border-radius: 10px;
	object-fit:cover;
	object-position:center;
}

.feature-slider-item-inner .content {
	width:49%;
    margin-left: 20px;
    padding: 0;
}

.feature-slider-item-inner .heading {
    font-size: 20px;
  line-height: 32px;;
    margin: 0;
    padding: 0;
}

.feature-slider-item-inner p {
    font-size: 15px;
    margin: 10px 0;
    color: #000;
    line-height: 26px;
}

.feature-slider-item-inner .btn-black {
    padding: 10px 20px;
    border-radius: 10px;
}

.counter-main{
	margin:40px 0;
}

.counter-main .container {
    display: grid;
    gap: 40px;
	grid-template-columns:repeat(3, 1fr);
}

.counter-main .counter .counter-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.counter-main .counter {
    font-size: 48px;
    color: var(--primary);
    font-family: var(---Eina03);
    margin: 5px auto;
    text-align: center;
}

.counter-main .label {
    margin: 5px auto;
    font-size: 20px;
  line-height: 30px;;
    color: #4e4e4e;
    font-family: var(--Eina02);
    text-align: center;
    font-weight: 600;
}

.section-2 .grid{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	margin:25px 0;
}

.section-2 .grid .item{
	position:relative;
}

.section-2 .grid img{
	width:100%;
	height:auto;
}

.section-2 .position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #0000006b;
	padding:20px;
}

.section-2 .heading{
	color:white;
    font-family: var(---Eina03);
	font-size:32px;
}

.faq-section {
	width:65%;
	margin:20px auto;
}


.video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-controls {
    margin-top: 12px;
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: white;
    z-index: 1;
    border-radius: 5px;
}

.video-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    transition: transform 0.2s;
}

.video-controls button:hover {
    transform: scale(1.1);
}


.video-controls #muteBtn{
    height: 45px;
    padding-top: 13px;
}

.section-2-bg {
    background-color: #cbe4ff;
    padding: 60px 0;
}

.test-para {
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.test-para.expanded {
    max-height: 500px; /* Arbitrary large height for expansion */
}

.toggle-btn {
    margin-top: 10px;
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-style: italic;
    text-decoration: underline;
    font-size: 16px;
    font-family: var(---Eina02);
}

.home-about .lg-none {
    display: flex;
    align-items: center;
    vertical-align: middle;
    height: 100%;
}
.home-about .lg-none img{
	width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}
.home-certificate img{
	width:60%;
	height: auto;
	margin:15px auto;
}

.home-certificate {
	width:100%;
	height:auto;
	margin: 15px 0;
	display:flex;
	justify-content:center;
}

.formstyle .form-sec input, .formstyle .form-sec textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
	margin-top:0;
	padding-left: 15px !important;
	background-color:white;
}
.formstyle .form-sec label {
    margin-left: 0;
    color: #303030;
}

.home-about .paragraph {
    line-height: 28px;
    font-size: 16px;
  line-height: 30px;;
}

.home-about h2{
	margin-bottom:20px;
}

.success-stories-slider-flex .heading{
	font-size:24px;
	font-weight:normal;
}

.home video {
    height: auto;
    min-width: 100%;
    width: 100%;
    min-height: 100%;
    background-image: url(https://www.gptraining.ca/wp-content/uploads/2025/08/video-bgg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.table-enroll-box{
	background-color: #E8F3FF;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(0deg, rgba(214, 240, 255, 1) 0%, rgba(232, 243, 255, 1) 100%);
    border: 2px solid #cce4ff;
	margin:0px 0px 20px;
}
.table-enroll-box table{
	width: 100%;
}
.table-enroll-box tr{
	
}
.table-enroll-box td{
	font-size: 18px;
	line-height:30px;
    text-align: left;
    padding: 10px 20px;
	font-weight: bold;
}
.course-info{
	display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}
.course-info .item{
	display:flex;
	gap:30px;
	margin:0px 0px 20px;
}

.course-info .item div p{
	font-weight:bold !important;
	margin:0px;
}
.course-info .item div p:first-child{
	color:black !important;
}
.course-info .item div p{
	color:#0676F5 !important;
}
.blk-txt{
	color:#000 !important;
	font-size: 15px;
}

	.confirmation-flex h3{font-size: 30px;line-height: 35px;}
	.confirmation-flex .paragraph {
    text-align: left !important;
    font-size: 30px !important;
    line-height: 50px !important;}
	.confirmation-flex .left, .confirmation-flex .right{width: 100%;}
	.confirmation-flex .heading{font-size: 16px !important;}
	.confirmation-details p, .confirmation-details b, .confirmation-details li{font-size: 16px;line-height: 30px;}
	.confirmation-details p br{display:block !important;}
	.confirmation-details li{margin:5px 0px;}
	.confirmation-details ul{padding:0px 0px 0px 20px;}
	.confirmation-details h3{font-family: var(---Eina03) !important;font-size: 25px !important;text-transform: capitalize;}
	.confirmation-details h4{font-family: var(---Eina03) !important;font-size: 20px !important;text-transform: capitalize;margin:15px 0px;}
.story-grid{display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;}
.story-grid .item{
	        padding: 30px;
    border-radius: 10px;
    box-shadow: 1px 1px 5px 5px #bebebe1f;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    min-height: 375px;
}
.story-grid p{
	font-family: var(---Eina02);
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
}
.story-grid h2{
	margin:0px 0px 15px;
}
.courses-slider .owl-stage{margin:auto;}
.bone-gallery{display: grid;grid-template-columns: repeat(3, 1fr);gap: 20px;margin-bottom:20px;}
.bone-gallery img{border-radius:10px;}
.factulyrow{
	display:flex;gap:50px;margin:0px auto 20px !important;padding:0px !important;
}
.factulyrow img{
	border-radius:15px;
}
.factulyrow h2{
	font-size:25px;margin:0px 0px 10px;
}
.factulyrow ul{
	    gap: 0;
}
.factulyrow ul li{
	padding: 0px 0px 3px;
}
.course-outdated .course-card-img, .course-inactive{
	position:relative;
	
}
.course-outdated .course-card-img:after, .course-inactive:after{
	content:url(https://www.gptraining.ca/wp-content/uploads/2026/02/soldout.webp);
	position: absolute;
    left: 0;
    top: 0;
}
.course-inactive:after{
	left:auto;
	right: 15px;
    top: 325%;
}
.video-col2{
	display:flex;
	grid-template-columns:repeat(2,1fr);
	gap:20px;
}
.video-col2 video{
    height: 740px;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    margin: auto;
}

.soft-tissue-page-img img{
	width:100%;
	height:450px;
	object-fit:cover;
}
.course-year{
    font-size: 16px;
    padding: 0px 0px 0px 40px;
    position: relative;
    margin: 20px 0px 25px;
    color: #0676f5 !important;
    font-weight: bold;
}
.course-year:before{
	    content: "";
    background-image: url(https://www.gptraining.ca/wp-content/uploads/2025/10/date-icon-course.png);
    width: 30px;
    height: 30px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0 0px 0px 0px;
    left: 0px;
    vertical-align: bottom;
    bottom: 0;
    top: -5px;
}