* {
    -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;
}

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,
            #e7a001 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: Inter-Medium;
    src: url('/build/assets/fonts/inter/Inter-Medium.ttf');
}

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

@font-face {
    font-family: Roboto_Condensed-Light;
    src: url('/build/assets/fonts/roboto/Roboto_Condensed-Light.ttf');
}

@font-face {
    font-family: Roboto-ExtraLight;
    src: url('/build/assets/fonts/roboto/Roboto-ExtraLight.ttf');
}


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

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


h2 {
    font-family: Roboto-Bold;
    font-weight: 100;
    font-size: 35px;
    line-height: 40px;
}

h3 {
    font-family: Inter-Medium;
    font-weight: 100;
}

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

h1 {
    font-size: 47px;
    font-family: Roboto_Condensed-Light;
    font-weight: 100;
    line-height: 52px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

p,
a {
    font-family: Inter-Regular;
    font-size: 15px;
    line-height: 22px;
}

.fr-up {
    overflow: hidden;
    position: relative;
    padding-top: 4px;
}

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

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


/* header  */




.fl {
    height: 100%;
    width: 100%;
}

.fl ul li {
    list-style: none;
    margin: 40px 0;
}

.fl span {
    display: inline-block;
}

.mb-menu a {
    text-decoration: none;
    color: #fff !important;
    transition: all .3s;
}

.mb-menu li a {
    font-size: 20px;
    /* font-weight: bold; */
    /* padding: 10px 0; */
}

.nv-container,
.nv-menu-wrapper {
    height: 100%;
}

.hamburger-init {
    /* width: 35px; */
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    display: none;
}

.bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    transition: all .3s;
}



.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: fit-content;
}

.hamburger .line {
    fill: none;
    stroke: #000000;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}


.hamburger .line1 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger .line2 {
    stroke-dasharray: 55 60;
    stroke-width: 4;
}

.hamburger .line3 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger.open .line1 {
    stroke-dasharray: 60 160;
    stroke-dashoffset: -140;
    stroke-width: 4;
    stroke: #000000;
}

.hamburger.open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 4;
}

.hamburger.open .line3 {
    stroke-dasharray: 60 207;
    stroke-dashoffset: -142;
    stroke-width: 4;
    stroke: #000000;
}




.nv-menu-wrapper {
    background: rgb(0, 0, 0);
    transition: all .3s;
    transform: scale(0);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nv-menu-wrapper.visible {
    transform: scale(1);
    border-radius: 0;
}

.mb-menu {
    position: absolute;
    max-width: 400px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nv-menu-wrapper li {
    opacity: 0;
    cursor: pointer;
    transition: all .3s;
}

.mb-menu.menu-active li:nth-child(1) {
    animation: moveItems 0.5s linear 0s forwards;
}

.mb-menu.menu-active li:nth-child(2) {
    animation: moveItems 0.5s linear 0.2s forwards;
}

.mb-menu.menu-active li:nth-child(3) {
    animation: moveItems 0.5s linear 0.5s forwards;
}

.mb-menu.menu-active li:nth-child(4) {
    animation: moveItems 0.5s linear 0.8s forwards;
}

.mb-menu.menu-active li:nth-child(5) {
    animation: moveItems 0.5s linear 0.9s forwards;
}

.menu-item-has-children {
    position: relative;
}

/* Animations */

@keyframes rotateHamburger {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes moveItems {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    30% {
        transform: translateY(-15px);
        opacity: .2;
    }

    50% {
        transform: translateY(-10px);
        opacity: .3;
    }

    80% {
        transform: translateY(-5px);
        opacity: .4;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes showClickGuide {
    0% {
        opacity: 0;
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}




.header {
    position: relative;
    z-index: 4;
}

.hdr-btm-cont-lft-rt p {
    font-size: 15px;
}

.fr-und-ln.active {
    color: #e7a001 !important;
    font-family: inter-medium;
    position: relative;
}

.fr-und-ln-active {
    color: #e7a001 !important;
    font-family: inter-medium;
    position: relative;
}

.fr-und-ln.cnct.active p {
    color: #ffffff !important;
    font-family: inter-medium;
    position: relative;
    border: 2px solid #e7a001 !important;
    background-color: #e7a001 !important;
}


.fr-und-ln {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    padding-top: 10px;
}

.fr-und-ln.cnct p:hover {
    color: #ffffff !important;
    font-family: inter-medium;
    position: relative;
    border: 2px solid #e7a001 !important;
    background-color: #e7a001 !important;
}

.fr-und-ln p:hover {
    color: #e7a001 ! important;
}

.fr-und-ln.active p {
    color: #e7a001 ! important;
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.hdr-tp {
    height: 50px;
    width: 100%;
    background-color: #203546;
    display: flex;
    align-items: center;
    color: #fff;
}

.hdr-tp p {
    font-size: 12px;
}

.hdr-tp i {
    font-size: 14px;
}

.container2 {
    padding: 0 50px;
    width: 100%;
}

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

.hdr-tp-lft-flx i {
    color: #fff;
}

.hdr-tp-lft-flx p {
    color: #fff;
}

.i-cvr {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e7a001;
    display: flex;
    align-items: center;
    justify-content: center
}

.hdr-tp-lft {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-rgt i {
    font-size: 20px;
    color: #ffffff;
}

.hdr-tp-rgt {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hdr-logo {
    height: 50px;
    width: fit-content;
}

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

.hdr-btm {
    padding: 15px 0;
}

.hdr-btm-flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-cnt {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page {
    display: flex;
    align-items: center;
    gap: 30px;
}

.page p {
    color: #000000;
    font-family: Inter-Medium;
    font-size: 15px;
}

.hdr-cnt-btn p {
    padding: 8px 30px;
    border: 2px solid #3F6380;
    border-radius: 50px;
    color: #203546;
    font-family: Inter-Medium;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hdr-cnt-btn p:hover {
    background-color: #e7a001;
    color: #fff;
    border: 2px solid #e7a001;
    transition: all 0.2s ease-in-out;
}

.header {
    position: sticky;
    top: 0;
    z-index: 4;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.171);
    background-color: #fff;
}


/* header close  */






/* VISITORS REG */

.vis-pg {

    background-color: #FFFAF6;
}


.visit-reg-contain {

    padding-top: 10em;
    margin-bottom: 12px;
}

.vist-form-contain,
.visit-cont-blk {

    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.visit-cont-blk {

    height: 100%;
}

.vist-form-contain h2 {
    margin-bottom: 20px;
}

.vist-form-contain h2 span {

    font-weight: 700;
}

.vist-input span {

    display: block;
    padding: 12px 0;
    margin: 10px 0;
    padding-left: 10px;
    border: 1px solid #ffd883;
    border-radius: 4px;
    font-weight: 500;
}


.vist-input textarea {

    width: 100%;
    display: block;
    padding: 14px;
    min-height: 100px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    resize: none;
    transition: all 0.3s;
    font-size: 15px;
    margin: 10px 0;

}


.vist-input input[type="checkbox"] {

    width: auto;
    display: inline-block;
}

.chck-lab {

    font-size: 14px;
}


.vist-input button {

    background-color: #243546;;
    border: none;
    color: #fff;
    padding: 20px;
    border-radius: 30px;
    width: 100%;
    display: block;
    margin: 18px 0;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #243546;;
}

.vist-input button:disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
}

.vist-input button:hover:disabled {
    background-color: #9e9e9e;
    color: #fff;
}

.vist-input button:hover {
    background-color: #fff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.visit-cont-blk {
    text-align: center;
}

.vist-dt-blk {

    display: flex;
    align-items: center;
    justify-content: center;
}

.vist-dt-blk .mnth {

    background-color: #243546;
    color: #fff;
    padding: 12px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.vist-dt-blk .vis-dt {

    background-color: #243546;
    color: #fff;
    padding: 12px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 20px;
    font-weight: 500;
}


.vist-dt-blk .vis-dt ul {

    display: flex;
    gap: 18px;
    align-items: center;
}

.vist-dt-blk {

    margin: 30px 0;
}


.vist-cont p {

    width: 500px;
    margin: auto;
    max-width: 100%;
    font-size: 15px;
    font-weight: 500;
}

.ex-reg-sec input,
.ex-reg-sec select {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s;
    font-size: 14px;
}
.vist-input input,
.vist-input select {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s;
    font-size: 14px;
}
.vist-form-contain h2{
    font-size: 27px;
}


/* .visit-cont-blk


/* BADGE */

.bdg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000041;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.bdg-overlay.show {
    opacity: 1;
    visibility: visible;
}

.bdg-modal {

    background-color: #fff;
    padding: 20px;
    width: 500px;
    max-width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    margin: auto;
    position: fixed;
    z-index: 22;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.bdg-modal.show {

    opacity: 1;
    visibility: visible;
}

.bdg-hd .logo img {

    width: 150px;
}


.bdg-hd .logo-sub img {

    width: 100px;
}


.generate-bdg a {

    display: block;
    width: 100%;
    max-width: 100%;
    margin: auto;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 6px;
    background-color: #ED7D2B;
    padding: 14px;
    color: #fff;
    border: 1px solid #ED7D2B;
    text-align: center;
    transition: all 0.3s;
}


.generate-bdg a:hover {

    background-color: #fff;
    border: 1px solid #ED7D2B;
    color: #ED7D2B;
    cursor: pointer;
}

.bdg-hd {

    display: flex;
    align-items: center;
}

.bdg-hd .logo-sub {

    margin-left: auto;
}


.bdge-cont p {

    text-align: center;
    margin-top: 30px;
}


.bdg-contain .vist-dt-blk .mnth {

    font-size: 16px;
}

.bdg-contain .vist-dt-blk .vis-dt {

    font-size: 16px;
}


.close {

    position: absolute;
    top: -45px;
    right: 0;
    background-color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.vist-dt-blk {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vist-dt-blk .mnth {
    background-color: #e0b85d;
    color: #fff;
    padding: 12px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

/* index  */
.mn-bg {
    height: 66vh;
    width: 100%;
    background-image: url('/build/assets/img/mn-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: end;
}

.mn-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    background-image: linear-gradient(to right, #203546, #203546d7, #20354600);
}

.mn-bg-icon img {
    width: 250px;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: contain;
    z-index: 1;
}

.mn-bg-cnt {
    width: fit-content;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.mn-bg-cnt h1 {
    max-width: 480px;
}

.mn-bg-cnt h1 span {
    font-size: 70px;
    font-weight: 600;
    color: #e7a001;
    margin-right: 5px;
}

.mn-bg-cnt h3 {
    margin-top: 10px;
}

.mn-bg-cnt .p {
    font-size: 17px;
    max-width: 500px;
    margin-top: 20px;
    line-height: 24px;
}

.mn-bg-cnt .p span {
    color: #e7a001;
    font-weight: 600;
    font-size: 22px;
}

.mn-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.mn-btn1 p {
    padding: 10px 30px;
    background-color: #e7a001;
    color: #fff;
    width: fit-content;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e7a001;
}

.mn-btn3 p {
    padding: 10px 30px;
    background-color: #104458;
    color: #fff;
    width: fit-content;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ffffff;
}

.mn-btn1 p:hover {
    background-color: #ffffff00;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ffffff;
}

.mn-btn2 p:hover {
    background-color: #e7a001;
    color: #fff;
    border: 1px solid #e7a001;
    transition: all 0.2s ease-in-out;
}

.mn-btn2 p {
    padding: 10px 30px;
    border: 1px solid #ffffff;
    color: #fff;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.reg-img img{
    width: 100%;
    max-height: 600px;
    object-fit: contain;
}

.ind1-lft-cnt h2 {
    font-family: Roboto_Condensed-Light;
    font-weight: 100;
    max-width: 450px;
    margin-bottom: 15px;
    font-size: 42px;
}

.ind1-lft-cnt h2 span {
    font-family: Inter-Medium;
    font-size: 60px;
    margin-right: 5px;
    color: #e7a001;
}

.ind1 {
    padding: 80px 0 0px 0;
    position: relative;
}

.ind1-loc-bx {
    display: flex;
    gap: 10px;
    align-items: center;
    background-image: linear-gradient(#4F82AC, #203546);
    padding: 15px 20px;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
    cursor: pointer;
    margin-bottom: 40px;
}

.ind1-loc-bx h5 {
    font-weight: 100;
    font-size: 16px;
}

.ind1-tp-flx {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.ind1-lft {
    max-width: 600px;
}

.ind1-rgt {
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
    top: -93px;
}

.ind1-rgt .p {
    max-width: 600px;
    text-align: end;
    margin-left: auto;
}

.ind1-trngl {
    width: 680px;
    height: 50px;
    clip-path: polygon(0 0, 0px 100%, 100% 0%, 0 0);
    background-image: linear-gradient(#4F82AC, #203546);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.ind1-bg {
    width: 500px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.spnsr-sec {
    height: 270px;
    width: 100%;
    background-color: #fcfdff;
    margin-top: -70px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 100px;
}

.goto-flx {
    display: flex;
    gap: 25px;
}

.gap-ln {
    width: 2px;
    height: 100%;
    background-color: #fff;
}

.wth-pls {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;

}

.count2 span {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.goto {
    display: flex;
    gap: 20px;
    width: fit-content;
    background-image: linear-gradient(to bottom, #e7a001, #b27b00);
    margin-top: 50px;
    min-width: 500px;
    padding: 9px 35px;
    margin-left: auto;
    justify-content: center;
    z-index: 2;
    position: relative;
    border-radius: 7px;
    border: 1px solid #fff;
    margin-bottom: 50px;
    margin-top: 20px;
    box-shadow: 0 2px 7px #00000063;
}

.abt1-cont .goto {
    margin-left: 0 !important;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
    box-shadow: 0 2px 7px #ffffff63;
    padding: 9px 0px;
    margin-bottom: 10px;

}

.wth-pls span .sqm {
    font-size: 16px !important;
}

.wth-pls .sqm-flx {
    display: flex;
    gap: 5px;
}

.goto .count {
    font-size: 26px !important;
    font-weight: 600;
    color: #fff;
}

.goto .counts {
    font-size: 40px !important;
    font-weight: 900;
    color: #e7a001 !important;
}

.count2 p {
    margin-bottom: 0 !important;
}

.wth-pls span p {
    font-size: 26px !important;
    font-weight: 600;
    color: #fff;
}

.abt1-cont .wth-pls span p {
    font-size: 34px !important;
    font-weight: 600;
    color: #e7a001 !important;
}

.count2 p {
    margin-top: 8px !important;
    max-width: 166px;
    font-size: 13px !important;
    line-height: 18px;
    color: #fff;
}

.abt1-cont .count2 p {
    color: #000000;
    margin-top: 22px !important;
}

.count2 {
    margin: 5px 0;
}

.count2 h2 {
    font-size: 45px;
}

.wth-pls span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ind1-bg-bx {
    width: 230px;
    height: 260px;
    background-color: #F7F7F7;
    position: absolute;
    top: 0;
    margin-left: -40px;
    z-index: -2;
}

.ind2 {
    position: relative;
    padding-bottom: 75px;
}

.ind2-lft {
    position: relative;
    width: fit-content;
}

.ind2-lft::after {
    content: '';
    width: 75%;
    height: 2px;
    background-color: #e0e0e0;
    position: absolute;
    bottom: -148px;
    right: 0%;
}

.ind2-lft::before {
    content: '';
    width: 2px;
    height: 104%;
    background-color: #e0e0e0;
    position: absolute;
    bottom: -33%;
    right: -13%;
}

.ind2-lft-cnt-img {
    width: 450px;
    height: 593px;
    position: relative;
}

.ind2-lft-cnt-img2 {
    width: 390px;
    height: 213px;
    position: absolute;
    bottom: -110px;
    left: -66px;
    border-top: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
}

.ind2-lft-cnt-img2 img {
    clip-path: polygon(0% 65%, 0% 100%, 0% 0%, 100% 0%, 100% 100%, 15% 100%);
}

.ind2-lft-cnt-img::before {
    content: '';
    width: 40%;
    height: 47%;
    background-color: #e7a001;
    position: absolute;
    top: 90px;
    left: -20px;
    z-index: -1;
    clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
}

.ind2-lft-cnt-img::after {
    content: '';
    width: 80%;
    height: 80%;
    background-color: #203546;
    position: absolute;
    bottom: -30px;
    right: -14px;
    z-index: -1;
    clip-path: polygon(100% 0%, 100% 100%, 15% 100%);
}

.ind2-lft-cnt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind2-lft-cnt {
    width: fit-content;
    position: relative;
}

.ind2-lft-cnt:after {
    content: '';
    width: 20%;
    height: 66%;
    border: 1px solid #AD9543;
    position: absolute;
    top: 50px;
    left: -35px;
    z-index: -1;

}

.sml-bx1 {
    width: 60px;
    height: 60px;
    background-color: #e7a001;
}

.sml-bx2 {
    width: 40px;
    height: 40px;
    background-color: #203546;
    position: relative;
    margin-top: -30px;
    margin-left: 34px;
}

.sml-btm-bxs {
    position: absolute;
    bottom: -116px;
    right: 20px;
    z-index: 1;
}

.wth-ln-txt {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.wth-ln-ln1 {
    width: 35px;
    height: 3px;
    background-color: #e7a001;
    margin-bottom: 4px;
}

.wth-ln-ln2 {
    width: 26px;
    height: 3px;
    background-color: #e7a001;
    margin-bottom: 4px;
}

.wth-ln-ln3 {
    width: 18px;
    height: 3px;
    background-color: #e7a001;
    margin-bottom: 4px;
}

.ind2-rgt h4 {
    font-size: 25px;
    margin-bottom: 20px;
}

.ind2-rgt h4 span {
    font-family: Roboto-Bold;
}

.ind2-rgt-cont h3 {
    font-size: 22px;
    font-weight: 600;
}

.exhibdts {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    width: fit-content;
    padding-bottom: 10px;
}

.dt-bx {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    background-color: #e7a001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
    color: #fff;

}

.dt-tmr-flx {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 30px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}

#timeControl li {
    display: inline-block;
    font-size: 14px;
    font-family: Inter-Regular;
    list-style-type: none;
    padding: 12px 13px;
    margin: 0 5px;
    color: #fff;
}

#timeControl li span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

#timeControl2 li {
    display: inline-block;
    font-size: 14px;
    font-family: Inter-Regular;
    list-style-type: none;
    padding: 12px 13px;
    margin: 0 5px;
    color: #fff;
}

#timeControl2 li span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.count-bx ul {
    background-image: linear-gradient(#4E8DC0, #203546);
    padding: 0px 10px;
    border-radius: 7px;
    margin-top: 13px;
    width: fit-content;
    border: 1px solid #ffffff;
    min-height: 69px;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
}

.count-bx {
    width: fit-content;
}

.ind2-rgt-cont2 {
    margin-top: 40px;
}

.ind2-rgt-cont2 h2 {
    max-width: 590px;
    margin-bottom: 20px;
}

.ind2-rgt-cont2-btns-flx {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.ind2-rgt-cont2-btn1 {
    padding: 10px 30px;
    background-color: #e7a001;
    color: #fff;
    border: 1px solid #e7a001;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.ind2-rgt-cont2-btn2 {
    padding: 10px 30px;
    background-color: #152533;
    color: #fff;
    border: 1px solid #152533;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind2-rgt-cont2-btn1 p {
    font-family: Inter-Medium;
}

.ind2-rgt-cont2-btn1:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #e7a001;
    transition: all 0.2s ease-in-out;
}

.ind2-rgt-cont2-btn2:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #152533;
    transition: all 0.2s ease-in-out;
}

.ind2-rgt-cont2-btn2 p {
    font-family: Inter-Medium;
}

.ind2-rgt-flx {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.ind2-rgt-flx-lft-flx-tck-bx {
    width: 18px;
    height: 18px;
    background-color: #203546;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind2-rgt-flx-lft-flx-tck-bx i {
    font-size: 12px;
    color: #ffffff;
}

.ind2-rgt-flx-lft {
    max-width: 100%;
}

.ind2-rgt-flx-lft-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
}

.ind2-rgt-flx-rgt {
    width: 50%;
    height: 200px;
    position: relative;

}

.ind2-rgt-flx-rgt img {
    clip-path: polygon(0% 65%, 0% 100%, 0% 0%, 100% 0%, 100% 100%, 15% 100%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind2-rgt-flx-rgt::after {
    content: '';
    width: 90%;
    height: 90%;
    position: absolute;
    background-color: #e7a001;
    top: -11px;
    right: -11px;
    clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
    z-index: -1;
}

.ind3-tp-flx {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.ind3-tp-lft h2 {
    max-width: 500px;
    font-size: 47px;
    line-height: 57px;
}

.ind3 {
    position: relative;
    padding: 80px 0;
}

.ind3-bg {
    width: 200px;
    object-fit: contain;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: -1;
}

.ind3-tp-rgt p {
    max-width: 578px;
    text-align: end;
}

.ind3-mn-img {
    width: 1100px;
    height: 600px;
    margin-left: auto;
    margin-top: 100px;
    position: relative;
}

.ind3-mn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind3-mn-img::after {
    content: '';
    width: 80%;
    height: 55%;
    position: absolute;
    border: 1px solid #000000;
    top: -20px;
    left: -20px;
    z-index: -1;
}

.ind3-mn-img::before {
    content: '';
    width: 80%;
    height: 55%;
    position: absolute;
    border: 1px solid #000000;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.ind3-mn-brdr-bx1 {
    width: 30%;
    height: 63%;
    position: absolute;
    border: 1px solid #000000;
    bottom: -40px;
    left: -38px;
    z-index: -1;
}

.ind3-mn-brdr-bx3 {
    width: 205px;
    height: 400px;
    position: absolute;
    background-color: #203546;
    bottom: -22px;
    left: -12px;
    z-index: -1;
}

.ind3-mn-brdr-bx2 {
    width: 30%;
    height: 63%;
    position: absolute;
    border: 1px solid #000000;
    top: -40px;
    right: -40px;
    z-index: -1;
}

.ind4-hdng {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 140px !important;
}

.ind4-hdng h2 {
    font-size: 54px;
}

.ind4 {
    padding: 80px 0;
}

.ind4-cont {
    margin-top: 100px;
    position: relative;
}

.ind4-cont-trngl {
    width: 781px;
    height: 540px;
    background-color: #203546;
    clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
    right: 42%;
    transform: translateX(50%);
    margin-top: -17px;
    position: absolute;
}

.ind4-cont-bx {
    width: 969px;
    height: 280px;
    background-color: rgb(255, 255, 255);
    clip-path: polygon(0% 0%, 81% 0%, 100% 100%, 0% 100%);
    padding-right: 190px;
    position: relative;
}

.ind4-cont-bx1 {
    width: 977px;
    height: 318px;
    background-color: #ffffff;
    clip-path: polygon(21% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-left: auto;
    margin-top: 17px;
    padding-top: 20px;
    padding-left: 190px;
    position: relative;
}

.ind4-cont-wth-img {
    display: flex;
    align-items: center;
}

.ind4-cont-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.ind4-cont-img.img1 {
    margin-left: -140px;
    margin-top: -30px;
}

.ind4-cont-img.img2 {
    left: 210px;
}

.ind4-cont-img.img2::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #a17d04;
    bottom: -15px;
    left: -5px;
    z-index: -1;
    border-radius: 50%;
}

.ind4-cont-img.img1::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #a17d04;
    bottom: -15px;
    right: -5px;
    z-index: -1;
    border-radius: 50%;
}

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

.ind4-cont-bx h3 {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 15px;
}

.ind4-cont-bx h3 span {
    font-size: 16px;
    font-weight: 100;
}

.ind4-cont-bx-inrbx {
    height: 100px;
    width: 384px;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
}

.ind4-cont-bx-inrbx1 {
    height: 100px;
    width: 384px;
    background-color: #f4f4f4;
    position: absolute;
    top: 28px;
    right: 0;
}

.ind4-cont-bx-txt {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    padding-left: 50px;
}

.ind4-cont-bx-icon {
    width: 25px;
    object-fit: contain;
    position: absolute;
    top: 27px;
    left: 10px;
    z-index: 3;
}

.ind4-cont-bx-icon1 {
    width: 25px;
    object-fit: contain;
    position: absolute;
    top: 60px;
    right: 10px;
    z-index: 3;
}

.ind4-cont-bx1 .ind4-cont-bx-txt p {
    text-align: right;
}

.ind4-cont-bx1 h3 {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 15px;
    text-align: end;
}

.ind4-cont-bx1 h3 span {
    font-size: 16px;
    font-weight: 100;
}

.ind4-cont-bx1 .ind4-cont-bx-txt {
    padding-left: 0;
    padding-right: 50px;
}

.ind5 {
    width: 100%;
    height: 100%;
    background-color: #FAFCFF;
    padding: 100px 0 120px 0;
}

.ind5-flx {
    display: flex;
    gap: 150px;
}

.ind5-flx-lft {
    position: relative;
}

.ind5-flx-lft-inr-flx {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

.ind5-flx-lft-inr-flx2 {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-left: 50px;
}

.ind5-flx-lft-cont {
    position: relative;
    z-index: 2;
}

.ind5-flx-lft-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind5-flx-lft-inr-flx-img1 {
    width: 300px;
    height: 320px;
}

.ind5-flx-lft-inr-flx-img2 {
    width: 250px;
    height: 220px;
    position: relative;
    top: 50px;
}

.ind5-flx-lft-inr-flx-img3 {
    width: 150px;
    height: 160px;
    position: relative;
    top: -40px;
    margin-right: 50px;
}

.ind5-flx-lft-inr-flx-img4 {
    width: 250px;
    height: 220px;
    position: relative;
    top: 50px;
}

.ind5-flx-lft-bg1 {
    height: 106%;
    object-fit: contain;
    position: absolute;
    bottom: -65px;
    left: 0;
}

.ind5-flx-lft-bg2 {
    width: 280px;
    object-fit: contain;
    position: absolute;
    top: -18px;
    right: 60px;
}

.ind5-flx-rgt-bg {
    width: 50%;
    height: 690px;
    background-color: #203546;
    position: absolute;
    right: 0;
    top: -50px;
    z-index: 1;
}

.ind5 {
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.171);
}

.ind5-flx-rgt-bg img {
    width: 300px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
}

.ind5-flx-rgt {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.ind5-flx-rgt-bg {
    color: #fff;
    padding: 50px 50px 0 70px;
}

.ind5-flx-rgt-tck-flx {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ind5-flx-rgt-tck {
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind5-flx-rgt-cont-fl {
    margin-top: 40px;
}

.ind5-flx-rgt-tck i {
    font-size: 12px;
}

.crcle-cont {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-top: 50px;
}

.crcle-cont-crcl1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.crcle-cont-crcl2 img {
    width: 136px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.crcle-cont-crcl2 h2 {
    font-size: 30px;
}

.crcle-cont h3 {
    margin-top: 10px;
    margin-left: 10px;
}

.ind6 {
    padding: 80px 0;
}

.ind6-hdng {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 40px
}

.ind6-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ind6-cont-bx {
    width: 250px;
    min-height: 140px;
    height: 100%;
    border-radius: 28px;
    padding: 20px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* color: #fff; */
    /* font-weight: 600; */
}

.ind6-cont-bx p {
    color: #000000;
}

.ind6-cont-bx.clr1 {
    background-color: #F4DCCB;
}

.ind6-cont-bx.clr2 {
    background-color: #EDB3EA;
}

.ind6-cont-bx.clr3 {
    background-color: #BEF3D7;
}

.ind6-cont-bx.clr4 {
    background-color: #DEC4FC;
}

.ind6-cont-bx.clr5 {
    background-color: #F3CAC7;
}

.ind6-cont-bx.clr6 {
    background-color: #C0E2F9;
}

/* .ind6-cont-bx p {
    text-align: center;
} */

.ind6-cont-bx-img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    /* margin: 0 auto; */
    padding: 7px;
    background-color: #203546;
    margin-bottom: 10px;
}

.ind6-cont-bx-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ind7 {
    padding: 100px 0 60px 0;
    color: #fff;
    background-image: linear-gradient(#244968, #162b3b);
    position: relative;
    margin-bottom: 50px;
}

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

.ind7-bg {
    width: 300px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
}

.ind7-bg1 {
    width: 300px;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 0;
}

.Programs-hdng {
    margin-top: 70px;
    margin-bottom: 30px;
}

.vstr-prfl-cont-flx {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #104458;
    border-radius: 50px;
}

.vstr-prfl-cont-flx p {
    color: #ffffff;
    font-weight: 100;
}

.vstr-prfl-cont {
    display: flex;
    gap: 50px;
}

.vstr-prfl-cont-flx .ind5-flx-rgt-tck {
    width: 18px;
    height: 18px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}



.cont-pnt {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-top: 5px;
}

.ind7-cont {
    margin-top: 40px;
}

.ind7-cont-flx {
    display: flex;
    gap: 10px;
    align-items: start;
    margin-bottom: 40px;
}

.ind7-cont-flx h3 {
    font-size: 17px;
    margin-bottom: 7px;
    font-weight: 600;
}

.ind8 {
    padding: 80px 0;
}

.ind8 h2 {
    width: fit-content;
    margin: 0 auto;
    font-size: 51px;

}

.sldimg {
    margin-top: 80px;
}

.sldimg .item {
    width: 100%;
    height: 270px;
    margin: 0 5px;
}

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

.chart-box {
    width: 220px;
    height: 183px;

}

.chart {
    width: 100%;
    height: 100%;
}

.vstr-prfl {
    padding: 40px 0 80px 0;

}

.vstr-prfl-hdng {
    width: fit-content;
    margin-bottom: 40px;
}

.progress {
    background-color: #eee;
    height: 8px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
}

.progress-bar {
    background-color: #e7a001;
    height: 100%;
    width: 0;
    /* start at 0 so animation works */
    transition: width 1s ease;
    border-radius: 20px;
}

.wch-nm {
    max-width: 80%;
}

/* .vister-secion{
    margin-top: 150px;
} */
.vstr-prfl-inr-flx {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.vstr-prfl-fl {
    max-width: 800px;
}

/* index close  */

/* about  */

.page-hdr {
    width: 100%;
    height: 300px;
    position: relative;
    background-image: url('../assets/img/3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* justify-content: center; */

}

.page-hdr::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #152533, #1f3547e7, #20354633);
}

.page-hdr h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    margin-top: 50px;
    font-size: 60px;
}

.page-hdr-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    margin-top: 20px;
}

.page-hdr-nav p {
    color: #fff;
}

.page-hdr-nav i {
    color: #fff;
}

.page-hdr-nav .active {
    color: #e7a001;
}

.abt1 {
    padding: 80px 0 30px 0;
}

.abt1-cont h2 {
    max-width: 500px;
    margin-bottom: 15px;
}

.abt1-cont p {
    margin-bottom: 10px;
    max-width: 700px;
}

.abt1-cont-lft {
    border-bottom: 2px solid #dfdfdf;
}

.abt1-btns {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.abt1-btn1 {
    padding: 9px 30px;
    background-color: #e7a001;
    color: #fff;
    border: 1px solid #e7a001;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt1-btn2 {
    padding: 9px 30px;
    background-color: #152533;
    color: #fff;
    border: 1px solid #152533;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt1-btn1:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #e7a001;
    transition: all 0.2s ease-in-out;
}

.abt1-btn2:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #152533;
    transition: all 0.2s ease-in-out;
}

.abt1-btns p {
    margin-bottom: 0;
}

.abt1-cont-rgt {
    width: 75%;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

.abt1-cont-rgt::after {
    content: '';
    width: 20%;
    height: 100%;
    position: absolute;
    bottom: -25px;
    left: -25px;
    border: 1px solid #353535;
    z-index: -1;
}

.abt1-cont-rgt::before {
    content: '';
    width: 20%;
    height: 100%;
    position: absolute;
    top: -25px;
    right: -25px;
    border: 1px solid #353535;
    z-index: -1;
}

.abt1-cont-rgt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt1-cont-rgt-brdr-bx1 {
    position: absolute;
    right: -13px;
    bottom: -13px;
    height: 93px;
    width: 94%;
    border: 1px solid #353535;
    z-index: -1;
}

.abt1-cont-rgt-brdr-bx2 {
    position: absolute;
    left: -13px;
    top: -13px;
    height: 93px;
    width: 94%;
    border: 1px solid #353535;
    z-index: -1;
}

.abt2-bg {
    width: 58%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: -47px;
    transform: translate(-50%, 0%);
    z-index: -1;
}

.abt2 {
    margin: 80px 0 50px 0;
    height: 100%;
    position: relative;
}

.abt2-cont {
    display: flex;
    gap: 100px;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

.abt2-cont-bx {
    width: 300px;
    height: 100%;
}

.abt2-cont-bx-img-bx {
    width: 130px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.abt2-cont-bx-img-bx img {
    width: 100%;
    object-fit: contain;
}

.abt2-cont-bx h3 {
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.abt2-cont-bx p {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.abt3-hdng h2 {
    width: fit-content;
    margin: 0 auto;
}

.abt3 {
    padding: 50px 0 100px 0;
    position: relative;
}

.abt3-cont-flx-tp-lft h2 {
    margin-left: auto;
    width: fit-content;
    font-size: 26px;
    margin-bottom: 15px;
}

.abt3-cont-flx-tp-lft {
    width: 49%;
    margin-top: -50px;
    /* max-width: 600px; */
    margin-left: auto;
}

.abt3-cont-flx-tp {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.abt3-cont-flx-tp-lft p {
    text-align: end;
    margin-left: auto;
}

.abt3-cont-flx-tp-rt {
    width: 49%;
    height: 380px;
    position: relative;
}

.abt3-cont-flx-tp-rt::before {
    content: '';
    width: 80px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
}

.abt3-cont-flx-tp-rt::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e7a001;
}

.abt3-cont-flx-tp-rt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt3-cont-flx-btm-lft h2 {
    width: fit-content;
    font-size: 26px;
    margin-bottom: 15px;
}

.abt3-cont-flx-btm-lft {
    width: 50%;
    margin-top: -50px;
    color: #fff;
    max-width: 550px;
}

.abt3-cont-flx-btm {
    display: flex;
    align-items: center;
    gap: 70px;
}

.abt3-cont-flx-btm-rt {
    width: 50%;
    height: 380px;
    position: relative;
}

.abt3-cont-flx-btm-rt::before {
    content: '';
    width: 80px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
}

.abt3-cont-flx-btm-rt::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e7a001;
}

.abt3-cont-flx-btm-rt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt3-cont {
    margin-top: 80px;
}

.abt3-bg {
    width: 55%;
    height: 515px;
    background-image: linear-gradient(135deg, #4a7ba3, #203546);
    position: absolute;
    right: 0;
    bottom: 56px;
    z-index: -1;
}

.abt3-bg img {
    width: 300px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
}

/* about close  */



/* gallery */

.gal1 {
    padding: 80px 0;
}

.galllery-photo-sec h2 {
    margin-bottom: 30px;
}

.gal-img {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.gal-photo span {
    padding: 10px 14px;
    border-radius: 50%;
    background-color: #203546;
    position: absolute;
    z-index: 1;
    color: #fff;
    cursor: pointer;
}

.galllery-photo-sec {
    margin-bottom: 50px;
}

.galllery-video-sec {
    margin-bottom: 50px;
}

.gal-photo .prv {
    top: 50%;
    left: -20px;
}

.gal-photo .nxt {
    top: 50%;
    right: -20px;
}

.gal-photo {
    margin-bottom: 20px;
}

.gall-see-more {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    padding: 8px 25px;
    background-color: #203546;
    border-radius: 5px;
    cursor: pointer;
}

.gal-img:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    rotate: 5deg;
}

.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.gal-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal-photo .item {
    width: 100%;
    /* height: 290px; */
    padding: 0 7px;
}

.gal1 .row {
    justify-content: start;
}

.gal1 .col-md-3 {
    padding: 7px;
}

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

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

img.mfp-img {
    max-height: 600px !important;
    cursor: auto !important;
}










#toolbar {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

#toolbar button.active {
    background: #4caf50;
    color: #fff;
}

canvas {
    border: 1px solid #aaaaaa;
    display: block;
    cursor: crosshair;
    width: 100%;
    height: 100%;
    background-color: #222222;
    font-family: monospace;
    color: #fff;
}

#toolbar button {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #203546;
    color: #fff;
    cursor: pointer;
}



















.mfp-counter {
    display: none;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder {

    cursor: auto !important;
}

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

/* gallry close  */



/* story  */

.stry1 {
    padding: 90px 0 0px 0;
    position: relative;
    height: 100%;
}

.stry-lft {
    width: 100%;

}

.stry-lft h2 {
    text-align: end;

}

.stry-lft h2 {
    font-size: 65px;
    line-height: 60px;
    letter-spacing: 8px;
}

.stry-lft h2 span {
    font-size: 55px;
    letter-spacing: 11px;
}

.stry1-bg {
    width: 60%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.stry-lft-img-fl {
    width: 100%;
    position: relative;
}

.stry-lft-img-flx {
    display: flex;

}

.stry-lft-img-flx-lft {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.stry-lft-img-flx-rgt {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

.stry-lft-img1 {
    position: relative;
    width: 201px;
    height: 280px;
    object-fit: cover;
    left: 75px;
}

.stry-lft-img2 {
    position: relative;
    width: 277px;
    height: 170px;
    object-fit: cover;
}

.stry-lft-img3 {
    position: relative;
    width: 330px;
    height: 180px;
    object-fit: cover;
    left: 90px;
}

.stry-lft-img5 {
    position: relative;
    width: 200px;
    top: 159px;
    height: 291px;
    object-fit: cover;
    left: -53px;
    z-index: 1;
}

.stry-lft-img6 {
    position: relative;
    width: 320px;
    top: 70px;
    height: 486px;
    object-fit: cover;
    left: -111px;
}

.stry-rgt {
    padding-top: 150px;
}

.stry-rgt-cnt h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stry-rgt-cnt p {
    margin-top: 20px;
}


.str3-btm h2 {
    margin-bottom: 30px;
}

.str3-flx {
    display: flex;
    gap: 50px;
}

.str3-btm p {
    margin-top: 10px;
}

.str3-btm p span {
    font-weight: 600;
}

.latst-vdo {
    width: fit-content;
}

.str3 {
    padding: 80px 0;
    background-color: #FAFCFF;
    margin-top: 50px;
    margin-bottom: 30px;
}

.str4 {
    padding-bottom: 80px;
}




.stry-video {
    width: 600px;
    height: 350px;
    /* margin-top: 50px; */
    position: relative;

}

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

.stry-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.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;
    z-index: 1;
}

.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;
}

.lats-cts {
    margin-top: 80px;
}

.lats-cts .sldimg {
    margin-top: 30px;
}

/* story close  */

/* blog  */

.blog1 {
    padding: 80px 0 50px 0;
}

.blog1 .row {
    justify-content: left;
}

.blog-fl {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 0px #00000028;
    padding: 10px;

}

.blg-img {
    height: 200px;
    width: 100%;
    margin-bottom: 20px;
}

.blg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blg-cont h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.blg-date {
    font-size: 12px;
    margin: 10px 0;
}

.see-more {
    margin: 10px 0;
    font-size: 12px;
    color: #e7a001;
}

.blog-sec {
    padding: 80px 0;
}

.blog-sec h2 {
    margin-bottom: 10px;
}

.blog-sec-cont {
    max-width: 1100px;
}

.blog-sec-cont h3 {
    margin: 25px 0 10px 0;
    font-size: 18px;
}

.blog-sec-cont p {
    margin: 10px 0;
}

/* blog close  */

/* contact  */
.contact-sec {
    padding: 80px 0;
}

.contact-lft input {
    width: 100%;
    height: 45px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;

}

.contact-lft textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
    max-height: 180px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    font-family: Inter-Regular;
}

.contact-sec-cont {
    margin-top: 50px;
}

.contact-sec-cont .row {
    justify-content: left;
}

.contact-lft input:focus {
    outline: none;
}

.contact-lft textarea:focus {
    outline: none;
}

.contact-sec-cont button {
    width: 100%;
    height: 45px;
    background-color: #203546;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-family: Inter-Regular;
}

.contact-rgt {
    width: 100%;
    margin-left: 50px;
    background-color: #203546;
    height: 100%;
    padding: 50px;
    position: relative;
}

.contact-rgt::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -11px;
    width: 93%;
    height: 100%;
    border: 1px solid #b49405;
    z-index: -1;
}

.contact-rgt::before {
    content: "";
    position: absolute;
    top: -11px;
    right: -20px;
    width: 97%;
    height: 95%;
    border: 1px solid #b49405;
    z-index: -1;
}

.contact-rgt-flx {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-rgt-flx p {
    max-width: 300px;
    color: #fff;
}

.contact-rgt-flx-icon-bx {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-rgt-flx-icon-bx i {
    font-size: 20px;
    color: #e7a001;
}

.cnt-scls {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.cnt-scls i {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.contact-rgt h3 {
    color: #fff;

}

.contact-map {
    width: 100%;
    height: 400px;
}

/* contact close  */



/* footer  */

.foot-bg {
    height: 100%;
    width: 100%;
    padding: 115px 0 40px 0;
    position: relative;
    background-color: #203647;
}

.foot-img-bg {
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.wtsapp {
    width: 50px;
    object-fit: contain;
    position: fixed;
    right: 30px;
    bottom: 170px;
    z-index: 22222;
}

.bk-tp-btn button {
    background-image: linear-gradient(#4a7ba3, #305069);
    padding: 8px 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 7px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;

}

.ftr-lft-flx-rgt p:hover {
    color: #e7a001;

}

.ftr-rgt-flx-lft p:hover {
    color: #e7a001;

}

.ftr-wht-bx {
    width: 80px;
    height: 80px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.ftr-wht-bx2 {
    width: 40px;
    height: 40px;
    background-color: #e7a001;
    position: absolute;
    left: 80px;
    top: 80px;
}


.bk-tp-btn {
    position: fixed;
    right: 60px;
    bottom: 8%;
    z-index: 22222;

}

.copyright {
    color: #fff;
    margin: 0 auto;
    text-align: center;
    max-width: fit-content;
    margin-top: 40px;
    font-weight: 100;
    font-size: 13px;
}

.copyright img {
    position: relative;
    top: 3px;
}

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

@keyframes float2 {
    0% {

        transform: translatey(0px);
    }

    50% {

        transform: translatey(-15px);
    }

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

.ftr-flx {
    display: flex;
    justify-content: space-between;
}

.ftr-rgt-flx {
    width: 40%;
    display: flex;
    gap: 50px;
}

.ftr-lft-flx {
    width: 53%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.ftr-rgt-flx {
    width: 40%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.ftr-logo img {
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.ftr-fl {
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.ftr-lft-flx-lft {
    width: 50%;
}

.ftr-lft-flx-rgt {
    width: 30%;
}

.ftr-lft-flx-rgt h3 {
    margin-bottom: 20px;
}

.ftr-lft-flx-rgt p {
    margin-top: 10px;
    color: #fff;
    width: fit-content;
}

.ftr-rgt-flx h3 {
    margin-bottom: 20px;
}

.ftr-rgt-flx p {
    margin-top: 10px;
    color: #fff;
}


.ftr-socl h3 {
    margin-bottom: 20px;
}

.ftr-socl i {
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.ftr-socl i:hover {
    color: #e7a001;
}

.ftr-rgt-flx-rgt-flx {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ftr-rgt-flx-rgt-flx p {
    margin-top: 0;
    max-width: 250px;
}

.ftr-rgt-flx-rgt-flx i {
    margin-top: 3px;
    color: #fff;

}


/* footer close  */
