* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* background-color: #f6fcff; */
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #707070;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000000;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            #004fb6 50%,
            transparent,
            transparent);
}

/*

#scrollableDiv {
    scroll-behavior: smooth;
} */

@font-face {
    font-family: Inter-Regular;
    src: url(../build/assets/fonts/inter/Inter-Regular.ttf);
}

@font-face {
    font-family: BeVietnamPro-Bold;
    src: url(../build/assets/fonts/BeVietnamPro-Bold.ttf);
}

::-moz-selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

::selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

h2,
h3,
h4,
h5 {
    font-family: Inter-Regular;
}

h1 {
    font-size: 50px;
    line-height: 57px;
    font-family: BeVietnamPro-Bold;
}

h2 {
    font-size: 35px;
    line-height: 41px;
    font-family: BeVietnamPro-Bold;
    color: #26567d;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

p,
a {
    font-family: Inter-Regular;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0;
}

.fr-up {
    overflow: hidden;
    position: relative;
}

.fr-up2 {
    overflow: hidden;
    padding-left: 25px !important;
    padding: 15px;
    padding-right: 25px;
    margin-left: -25px;
}

.msk {
    position: relative;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
}

/* modal  */

#modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 5;
}

#modal-container.six {
    transform: scale(1);
}

#modal-container.six .modal-background {
    background: rgba(0, 0, 0, 0);
    animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modal {
    background-color: transparent;
    animation: modalFadeIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modal .modal-cont,
#modal-container.six .modal-background .modal p {
    opacity: 0;
    position: relative;
    animation: modalContentFadeIn 0.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six .modal-background .modal .modal-svg rect {
    animation: sketchIn 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out {
    animation: quickScaleDown 0s 0.5s linear forwards;
}

#modal-container.six.out .modal-background {
    animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modal {
    animation: modalFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modal .modal-cont,
#modal-container.six.out .modal-background .modal p {
    animation: modalContentFadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.six.out .modal-background .modal .modal-svg rect {
    animation: sketchOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container .modal-background {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    height: 100vh;
    z-index: 11;
    display: grid;
    place-items: center;
    overflow-y: scroll;
}

#modal-container .modal-background .modal {
    background: white;
    padding: 30px 17px 17px 17px;
    display: grid;
    border-radius: 10px;
    font-weight: 300;
    position: relative;
    height: fit-content;
}
/* #modal-container .modal-background .modal::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background-color: #ffd000;
} */
.reg-mdl-close {
    background-color: transparent;
    border: none;
    font-size: 22px;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 999;
    cursor: pointer;
    color: #000000;
}

#modal-container .modal-background .modal .modal-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

#modal-container .modal-background .modal .modal-svg rect {
    stroke: #fff;
    stroke-width: 2px;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes fadeIn {
    0% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: rgba(0, 0, 0, 0.7);
    }
}

@keyframes fadeOut {
    0% {
        background: rgba(0, 0, 0, 0.7);
    }

    100% {
        background: rgba(0, 0, 0, 0);
    }
}

@keyframes sketchIn {
    0% {
        stroke-dashoffset: 2000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes sketchOut {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 2000;
    }
}

@keyframes modalFadeIn {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: white;
    }
}

@keyframes modalFadeOut {
    0% {
        background-color: white;
    }

    100% {
        background-color: transparent;
    }
}

@keyframes modalContentFadeIn {
    0% {
        opacity: 0;
        top: -20px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes modalContentFadeOut {
    0% {
        opacity: 1;
        top: 0px;
    }

    100% {
        opacity: 0;
        top: -20px;
    }
}

.modal-cont input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0 10px;
    /* margin-bottom: 10px; */
    font-family: Inter-Regular;
}
.modal-cont #phone {
    padding: 0 10px 0 55px;
}

.iti {
    width: 100%;
}
.iti__country-list li span{
    color: #000;
}

.iti__flag-container {
    border-radius: 10px 0 0 10px;
}
.modal-cont select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0 10px;
    /* margin-bottom: 10px; */
    font-family: Inter-Regular;
}

.modal-cont textarea {
    height: 60px;
    min-height: 60px;
    max-height: 100px;
    min-width: 100%;
    max-width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: Inter-Regular;
}
.modal-cont textarea:focus {
    outline: none;
}

.modal-cont input:focus {
    outline: none;
}

.modal-cont {
    width: 400px;
    z-index: 6;
}

.sub-btn {
    background-color: #1d364b;
    color: #ffffff;
    cursor: pointer;
    height: 40px !important;
    font-size: 15px;
    border: none ! important;
    border-radius: 5px ! important;
}
.sub-btn span{
    color: #ffffff ! important;
    font-weight: 600;
}
.sub-btn i{
    font-size: 14px;
}

.modal-cont .mdl-hdng h2 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 5px;
    line-height: 27px;
}

.modal-cont .mdl-hdng {
    margin-bottom: 10px;
}

/* modal close  */

/* header  */
.hdr-logo img {
    height: 80px;
}

header {
    padding: 25px 0 3px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
    background-color: #ffffff;
}

.hdr-rt-tp--inr-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-rt-tp-flx {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
    position: relative;
    top: 10px;
}

.hdr-cont {
    display: flex;
    justify-content: space-between;
}

.scss-modal {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 10%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.scss-modal:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.scss-modal .scss-modal-content {
    max-height: fit-content;
    padding: 20px;
    background: white;
    border-radius: 5px;
    position: relative;
    padding-bottom: 20px;
}

.scss-modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}

.suces-mdl {
    position: relative;
    z-index: 5;
}

.scss-modal-content img {
    width: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.scss-modal-content h2 {
    color: #000000;
    text-align: center;
    margin: 10px 0;
}

.scss-modal-content p {
    color: #000000;
    text-align: center;
}

.scss-icoc {
    width: fit-content;
    margin: 20px auto;
}

.scss-modal-close i {
    font-size: 25px;
}

.scss-cntnu p {
    padding: 7px 20px;
    background-color: #011e36;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    margin: 10px auto;
    margin-top: 20px;
    cursor: pointer;
}

.hdr-rt-btm-trngl {
    width: 100%;
    height: 51px;
    background: #ffcd05;
    position: relative;
    clip-path: polygon(70px 0, 100% 0, 100% 100%, 0% 100%);
    margin-top: -43px;
    z-index: 2;
}

.hdr-rt-btm {
    width: 67%;
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: -14px;
}

.hdr-rt-btm-menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.hdr-rt-btm-menu ul li a {
    color: #000000;
    font-size: 14px;
}

.hdr-fl {
    position: relative;
    z-index: 3;
}

.hdr-rt-btm-menu {
    margin-top: 30px;
    position: relative;
    top: 9px;
}

.hdr-reg-btn {
    padding: 5px 20px;
    background-color: #1d364b;
    color: #ffffff;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: #1d364b;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 20px 8px 10px 32px;
    text-decoration: none;
    font-size: 17px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.nav-optbtn {
    display: none;
    position: relative;
    z-index: 5;
}

.bar1,
.bar2,
.bar3 {
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 7px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

/* header close  */

/* index  */
/* .mn-bg {
    height: 63vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: -50px;
    display: flex;
    align-items: end;
} */
.mn-bg {
    height: 63vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* top: -50px; */
    display: flex;
    align-items: end;
    margin-top: 118px;
}

.mn-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #1d364b, #1d364be1, #1d364b00);
    z-index: 1;
}

.mn-cont {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.mn-cont h1 {
    color: #ffffff;
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 10px;
}

.mn-cont h1 span {
    color: #ffcd05;
}

.mn-cont p {
    margin-bottom: 5px;
    color: #ffffff;
    max-width: 600px;
}

.mn-scl-ic {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
}

.mn-scl-ic i {
    font-size: 25px;
    color: #ffffff;
}

.mn-scl-ic img {
    height: 30px;
}

.mn-reg-btn {
    padding: 5px 25px;
    background-image: linear-gradient(#b85316, #79350b);
    width: fit-content;
    font-size: 13px;
    border-radius: 5px;
    margin-top: 30px;
    border: 1px solid #cacaca;
    cursor: pointer;
}

.ind1 {
    margin-top: 60px;
}

.ind1 h3 {
    color: #b85316;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    width: fit-content;
}

.ind1 h3::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 105%;
    width: 70px;
    height: 2px;
    background-color: #b85316;
}

.ind1 h2 {
    margin-bottom: 10px;
}

.ind1 p {
    max-width: 1000px;
    margin-bottom: 10px;
}

.ind1-img {
    width: 100%;
    height: 310px;
    background: black;
    clip-path: polygon(0 0, 95px 0, 0 100px, 0% 100%, 100% 100%, 100% 0);
    border-radius: 10px;
    position: relative;
}

.ind1-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind1-lft {
    position: relative;
}

.ind1-img-trngl {
    width: 400px;
    height: 300px;
    background: #011e36;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
    position: absolute;
    border-radius: 5px;
    right: -18px;
    bottom: -18px;
    z-index: -1;
}

.ind1 .row {
    margin-top: 50px;
}

.ind1-ylw-bx {
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    background-color: #ffcd05;
    border-radius: 8px;
    position: absolute;
    bottom: 18px;
    right: -63px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind1-ylw-bx span {
    font-family: BeVietnamPro-Bold;
    font-size: 30px;
    margin-bottom: 0;
}

.ind1-ylw-bx p {
    font-weight: 600;
    margin-bottom: 0;
}

.ind1-rt-bx {
    width: 450px;
    min-height: 250px;
    height: 100%;
    background-image: linear-gradient(45deg, #1f3149 0%, #467eb2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    position: relative;
}

.ind1-rt {
    padding-left: 80px;
}

.ind1-rt {
    position: relative;
}

.ind1-rt-bx img {
    width: 50px;
    position: absolute;
    bottom: -30px;
    left: 0;
}

.ind1-rt-bx .ind1-img-trngl {
    width: 315px;
    height: 232px;
    background: #011e36;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
    position: absolute;
    border-radius: 5px;
    right: -16px;
    bottom: -18px;
    z-index: -1;
}

.ind2 {
    position: relative;
    margin: 120px 0 20px 0;
    box-shadow: 0px 0px 12px #00000028;
    background-color: #fff;
}

.ind2-bg {
    width: 100%;
    height: 268px;
    background: #f8f8f887;
    clip-path: polygon(153px 0px,
            0px 0px,
            0px 158px,
            25% 100%,
            100% 4px,
            102% 0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.ind2-cont {
    padding: 80px 0 80px 0;
}

.ind2-cont h2 span {
    font-size: 25px;
    color: #000000;
}

.ind2-cont h2 {
    font-size: 50px;
    line-height: 50px;
    color: #19476d;
    margin-bottom: 10px;
}

.ind2-lft {
    display: flex;
    gap: 20px;
}

.ind2-lft .ind2-lft-lft {
    width: 50%;
}

.ind2-lft .ind2-lft-rt {
    width: 50%;
}

.ind2-lft li {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.ind2-lft li img {
    width: 13px;
    height: 13px;
    margin-top: 6px;
}

.ind2-cont .row {
    margin-top: 30px;
}

.ind2-lft-rt {
    border-left: 2px solid #dddddd;
    padding-left: 30px;
}

.ind2-rt img {
    width: 100%;
    object-fit: contain;
}

.ind2-rt {
    position: relative;
    margin-top: -80px;
    z-index: 1;
}

.ind2-rt::before {
    content: "";
    position: absolute;
    top: -24px;
    right: -26px;
    width: 93%;
    height: 94%;
    border: 10px solid #1f3149;
    z-index: -1;
}

.ind2-cont2 {
    padding: 50px 0 80px 0;
}

.ind2-cont2 h2 {
    margin-bottom: 10px;
}

.ind2-cont2 li {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.ind2-cont2 li img {
    width: 13px;
    height: 13px;
    margin-top: 6px;
}

.ind2-cont2 ul {
    margin-top: 30px;
}

.ind2-cont2 .ind2-cont2-lft {
    padding-right: 30px;
    border-right: 2px solid #dddddd;
}

.ind2-cont2-rt {
    padding-left: 50px;
}

.ind2-cont2-rt-clr-bx-fl {
    margin-top: 30px;
    max-width: 500px;
}

.ind2-cont2-rt-clr-bx {
    width: 100%;
    height: 100%;
    padding: 10px;
    background-image: linear-gradient(to right, #1d364b, #467eb2);
    display: flex;
    gap: 20px;
    border-radius: 7px;
    align-items: center;
    margin-bottom: 10px;
    max-width: 600px;
}

.ind2-cont2-rt-clr-bx img {
    width: 22px;
    object-fit: contain;
}

.ind2-cont2-rt-clr-bx p {
    color: #fff;
}

.ind2-cont2-rt-clr-bx .img-bx {
    border-right: 1px solid #fff;
    padding-right: 20px;
}

/* .trng-mdul{
    margin: 60px 0px;
} */

.ind3 {
    position: relative;
    padding-top: 130px;
}

.ind3-conts-fl h3 {
    font-size: 25px;
}

.ind3-conts {
    margin-top: 30px;
}

.trng-mdul {
    padding: 70px 0 20px 0;
    background-color: #f8faff;
    margin-bottom: 50px;
}

.trng-mdul h2 {
    font-size: 28px;
    /* text-align: center; */
    line-height: 60px;
    color: #000;
}

.trng-mdul h2 span {
    font-size: 50px;
    color: #19476d;
}

.trng-mdul-cont {

    margin-top: 50px !important;
    margin-bottom: 70px;
    justify-content: center ! important;
}

.trng-itm {
    padding: 0 10px;
}

.trng-mdul-cont .col-md-4 {
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 30px;
}

.trng-mdul-cont-bx {
    display: flex;
    align-items: center;
    gap: 5px;
    /* min-width: 250px; */
    width: 100%;
    min-height: 63px;
    padding: 7px 30px;
    background-image: linear-gradient(to right, #1d364b, #467eb2);
    display: flex;
    border-radius: 50px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #fff;
    box-shadow: 0px 3px 7px 1px #666666;
}

.trng-mdul-cont-bx h3 {
    color: #fff;
    font-size: 25px;
}

.trng-mdul-cont-bx-hdng {
    text-align: center;
    width: 100%;
}

.trng-mdul-cont-bx-hdng h4 {
    font-weight: 100;
    font-size: 19px;
    color: #fff;
}

.trng-mdul-cont-bx img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.reg-end {
    margin-top: 20px;
    color: #ffffff;
    padding: 5px 20px;
    background-image: linear-gradient(#de0000, #860000);
    width: fit-content;
    border-radius: 5px;
}

.trng-mdul-cont-bx p {
    font-size: 20px;
    font-weight: 500;
}

.ind3-conts-btm {
    margin-top: 30px;
}

.ind3-conts-btm p {
    margin-bottom: 10px;
    max-width: 1000px;
}

.ind3bg {
    position: absolute;
    width: 270px;
    left: 0;
    top: 0;
    z-index: -1;
}

.trnr-img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: relative;
}

.trnr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.trnr-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 102%;
    height: 102%;
    border: 8px solid #1d364b;
    border-radius: 50%;
    z-index: -1;
}

.prof-bg-bx {
    width: 250px;
    height: 160%;
    background-color: #e6e6e6;
    position: absolute;
    z-index: -1;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -30%);
}

.ind3 .col-md-5 {
    display: flex;
    justify-content: center;
    position: relative;
}

.ind4 {
    padding: 80px 0;
    box-shadow: 0px 0px 10px 0px #e0e0e0;
    position: relative;
    margin-top: 150px;
    padding: 180px 0 110px 0;
}

.ind4-lft {
    width: 624px;
    height: 470px;
    background: black;
    clip-path: polygon(0 0, 95px 0, 0 100px, 0% 100%, 100% 100%, 100% 0);
    position: relative;
}

.ind4-rt {
    width: 60%;
    height: fit-content;
    min-height: 540px;
    background-image: linear-gradient(45deg,
            #17283f 0%,
            #152a44 0%,
            #467eb2 100%);
    clip-path: polygon(0 0, 95px 0, 0 82px, 0% 100%, 100% 100%, 100% 0);
    position: absolute;
    right: 0;
    top: 80px;
    padding: 70px 0 60px 180px;
    /* z-index: -1; */
}

.ind4-lft img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.ind4-conts {
    display: flex;
}

.ind4-rt-cont {
    padding-left: 50px;
    color: #fff;
}

.ind4-rt-cont h2 {
    color: #fff;
    margin-bottom: 5px;
}

.ind4-rt-cont-btm {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ind4-rt-cont-btm img {
    width: 30px;
    object-fit: contain;
}

.ind4-rt-cont-btm p span {
    font-size: 18px;
    font-weight: 600;
}

.ind4-rt-cont-btm-fl {
    margin-top: 30px;
}

.enroll {
    margin-left: 50px;
    margin-top: 30px;
    color: #ffcd05;
}

.date {
    color: #ffcd05;
}

.enrl-btn {
    padding: 5px 25px;
    background-image: linear-gradient(#b85316, #6e3009);
    width: fit-content;
    margin-top: 30px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    cursor: pointer;
}

.ind4-rt-tp {
    width: 700px;
    height: 30px;
    /* Adjust height as needed */
    background-color: #b54b12;
    /* Approximate color */
    clip-path: polygon(5% 0, 94% 0, 100% 100%, 0% 100%);
    position: absolute;
    top: 63px;
    left: 46%;
    z-index: -1;
}

.ind4-rt-btm {
    width: 599px;
    height: 30px;
    background-color: #b54b12;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
    position: absolute;
    right: 0;
    bottom: 120px;
    z-index: -1;
}

.ind5 {
    padding: 80px 0;
}

.ind5-cont h2 {
    margin-bottom: 10px;
}

.ind5-cont-qstns {
    margin-top: 30px;
}

.qstn-mn {
    margin-top: 45px;
    border-bottom: 1px solid #cfcfcf;
    max-width: 800px;
}

.qstn-flx {
    margin: 15px 0;
    display: flex;
    gap: 20px;
}

.qstn-hdng {
    width: 50px;
}

.ind6 {
    margin-top: 50px;
}

.ind6-cont h2 {
    text-align: center;
    margin-bottom: 30px;
}

.member-slide {
    max-width: 1000px;
    margin: 0 auto;
}

.member-slide .item {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #d6d6d6;
    background-color: #fff;
    padding: 10px;
    margin: 20px 0px;
}

.member-slide .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-cntain {
    padding: 0 10px;
}

.ind7 {
    padding: 80px 0;
}

.testi-vidoes {
    max-width: 1000px;
    margin: 0 auto;
}

.testi-vidoes .item {
    padding: 0 10px;
    border-radius: 10px;
}

.testi-vidoes .testi-video {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #d6d6d6;
    background-color: #fff;
    position: relative;
}

.ind7 h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testi-vidoes .testi-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind8 {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    background-image: url("/build/assets/img/icons/8.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind8 h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial .item {
    width: 100%;
    min-height: 220px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #d6d6d6;
    background-color: #fff;
    padding: 10px 20px;
    margin: 10px;
    position: relative;
}

.testi-prof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.testi-prof-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.testi-prof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.prof-nm h3 {
    font-size: 18px;
}

.prof-nm p {
    font-size: 13px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.stars img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.wtrmrk {
    width: 40px;
    object-fit: contain;
    position: absolute;
    top: 24px;
    right: 20px;
}

.testi-cmnt {
    margin-top: 15px;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper .play-gif {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper .play-gif svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #000000;
    opacity: 1 !important;
}

.mfp-title {
    display: none !important;
}

img.mfp-img {
    max-height: 90vh !important;
    cursor: auto !important;
    max-width: 1000px !important;
}

/* .mfp-iframe-holder .mfp-content {
    line-height: 0;

    max-height: 90vh !important;
    max-width: auto !important;
} */

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder {
    cursor: auto !important;
}

.mfp-close {
    cursor: pointer !important;
}

.mfp-counter {
    display: none !important;
}

/* index close */

/* footer  */

footer {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0 30px 0;
    height: 100%;
    box-shadow: 0px 0px 10px 0px #e0e0e0;
    margin-top: 60px;
}

.ftr-links {
    display: flex;
    width: fit-content;
    gap: 30px;
    margin: 0 auto;
    align-items: center;
}
.ftr-links a{
    color: #000;
}

.prvcy-cont {
    padding-top: 190px;
}

.prvcy-cont h2 {
    font-size: 26px;
    position: relative;
    width: fit-content;
    margin-bottom: 20px;
}

.prvcy-cont h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}
.mdl-hdng h3{
    font-size: 16px;
    margin-bottom: 10px;
}
.mdl-hdng img{
    width: 90px;
    object-fit: contain;
    margin-bottom: 10px;
}

.mdl-hdng-img{
    width: fit-content;
    /* margin: 0 auto; */
}
.nm-flx{
    display: flex;
    align-items: center;
    gap: 10px;
}
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.inpt-flx{
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
    width: 100%;
}
.inpt-flx span{
    color: #e20000;
}
.inpt-flx label{
    font-family: Inter-Regular;
    font-size: 13px;
    margin-left: 10px;
}
.inpt-lft{
    width: 35px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid #ccc;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.inpt-lft i{
    font-size: 15px;
    color: #838383;
}
.prvcy-cont h3 {
    font-size: 16px;
    margin: 10px 0;
}
.mdl-hdng p {
    line-height: 17px;
    font-size: 13px;
    /* margin-bottom: 30px; */
    margin: 10px 0px 10px 0px;
}


.prvcy-cont ul li {
    margin: 10px 0;
    font-size: 15px;
    font-family: Inter-Regular;
}

.prvcy-cont p {
    margin: 10px 0;
    font-size: 15px;
}

.ftr-logo-bx {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.cnct-cont {
    padding-top: 190px;
    max-width: 900px;
}

.info-box {
    margin-top: 10px;
    margin-bottom: 20px;
}

.section-title {
    margin-top: 10px;
}

.info-box a {
    color: #000;
}

.ftr-logo-bx img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.actv-crs-bx {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px #e0e0e0;
    padding: 30px 50px;
    border-radius: 5px;

}
.actv-crs-fl .col-md-6{
    margin-bottom: 30px;
}
.actv-hdng{
    margin-bottom: 20px;
}

.actv-crs-fl {
    margin-top: 190px
}

.fr-shdw {
    box-shadow: 0px 0px 10px 0px #e0e0e0;
}

.fr-shdw .hdr-rt-tp-flx {
    top: 35px;
}

.fr-shdw {
    padding: 25px 0 20px 0;
}

.course-name h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.dtls h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.dtls h3 span {
    font-size: 17px;
    font-weight: 100;
}

.foter-cont-flx-inr {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    align-items: center;
}


.foter-cont-flx {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.foter-cont-scl .mn-scl-ic i {
    color: #000000;
}

.foter-cont-scl .mn-scl-ic img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.foter-cont-scl .mn-scl-ic {
    width: fit-content;
    margin: 20px auto;
}

.ftr-cpy {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
}

.srv-img-an2 {
    transform: translatey(0px);
    -webkit-animation: float2 3s ease-in-out infinite;
    animation: float2 3s ease-in-out infinite;
}

.wtsap {
    width: 50px;
    object-fit: contain;
    position: fixed;
    bottom: 15%;
    right: 60px;
}

@keyframes float2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-15px);
    }

    100% {
        transform: translatey(0px);
    }
}

.ind3-conts-btm li {
    list-style: disc;
    margin: 5px 0;
}

/* footer close  */
