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

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

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

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d67900;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            #ffae00,
            transparent,
            transparent)
} */

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


/* font family */

@font-face {
    font-family: CabinCondensed-Regular;
    src: url(../assets/fonts/cabin/CabinCondensed-Regular.ttf);
}

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

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

@font-face {
    font-family: Gabarito-Regular;
    src: url(../assets/fonts/gab/Gabarito-Regular.ttf);
}

@font-face {
    font-family: Gabarito-SemiBold;
    src: url(../assets/fonts/gab/Gabarito-SemiBold.ttf);
}

@font-face {
    font-family: Koulen-Regular;
    src: url(../assets/fonts/koulen/Koulen-Regular.ttf);
}


/* animations */

.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: Inter-Regular;
}

p {
    font-family: Inter-Regular;
    font-size: 15px;
    line-height: 23px;
    font-weight: 100;
}

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

h1 {
    font-family: Koulen-Regular;
    font-size: 54px;
    font-weight: 100;
    line-height: 57px;
}

h2 {
    font-family: Koulen-Regular;
    font-size: 43px;
    font-weight: 100;
    line-height: 48px;
}

h2 span {
    font-size: 75px;
    color: #8E8E8E;
    line-height: 74px;
}

/* header */


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

.fr-und-ln.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    right: 0;
    left: 0;
    border-radius: 10px;
    bottom: -3px;
    margin: 0 auto;
    position: absolute;
    background: #652368;
}








/* Menu Button */
.menu-btn2 {
    /* position: fixed; */
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}
.menu-btn2 span {
    display: block;
    height: 3px;
    background: #ffffff;
    margin: 6px 0;
    transition: 0.3s;
}

/* Overlay */
.menu-overlay2 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1000;
}

/* Menu */
.mobile-menu2 {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1002;
    padding: 30px;
}

/* Active State */
.mobile-menu2.active {
    transform: translateX(0);
}
.menu-overlay2.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Content */
.mobile-menu2 ul {
    list-style: none;
    padding: 0;
}
.mobile-menu2 li {
    margin: 20px 0;
}
.mobile-menu2 a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
}
.mobile-menu2 ul li p{
    font-size: 16px;
}
.mobile-menu2 ul{
    margin-top: 50px;
}
/* Close Button */
.close-btn2 {
    background: none;
    border: none;
    font-size: 28px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}










.header {
    padding: 15px 0 10px 0;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 4;
}

.header.hdr2 {
    padding: 45px 0 18px 0;
    position: absolute;
    background-color: #fff;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.137);
}

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

.header-conts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-logos img {
    height: 50px;
    object-fit: contain;
}

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

.pages a p {
    color: #ffffff;
}

.hdr2 .pages a p {
    color: #ffffff;
}

.ind-cnct-btn p {
    padding: 8px 40px;
    /* background-color: #01A64E; */
    border-radius: 5px;
    border: 2px solid #ffffff;
    color: #ffffff;
    width: fit-content;
}

.hdr2 .ind-cnct-btn p {
    padding: 8px 40px;
    /* background-color: #01A64E; */
    border-radius: 5px;
    border: 1px solid #000000;
    color: #000000;
    width: fit-content;
}

.pg-cnt-btn {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* header close */

.fr-up {
    overflow: hidden;
    padding-left: 50px;
    margin-left: -50px;
}

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

.mbr-hdng {
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
}



/* index */

.ind1 {
    height: 80vh;
    width: 100%;
    background-image: url(../assets/imgs/1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* display: flex;
    align-items: end;
    justify-content: center; */
}

.ind1 .container {
    position: relative;
    height: 80vh;
}

.ind1::after {
    content: "";
    position: absolute;
    height: 30%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom, #000000ad, #00000000);
}

.mn-cont {
    /* width: 100%; */
    position: absolute;
    bottom: 20%;
    left: 20px;
    /* transform: translate(-50%, -50%); */
    z-index: 2;
}

.mn-cont h1 {
    color: #000000;
    /* margin: 0 auto; */
    max-width: 640px;
    /* text-align: center; */
}

.mn-cont p {
    font-size: 16px;
    color: #000000;
    line-height: 22px;
    /* text-align: center; */
    max-width: 580px;
    margin-top: 10px;
}

.mn-cont .p {
    font-size: 15px !important;
    padding: 8px 30px;
    background-color: #000000;
    width: fit-content;
    margin-top: 40px;
    border-radius: 4px;
    color: #ffffff;
}

.mn-cont h3 {
    color: #DB8F00;
    margin: 10px 0;
}

.ind2 {
    padding: 120px 0;
    position: relative;
}

.ind2-cont-lft .p {
    padding: 8px 30px;
    background-color: #000000;
    width: fit-content;
    margin-top: 20px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 15px;
}

.ind2-cont-lft h3 {
    margin: 10px 0;
    max-width: 390px;
}

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

.prof-dtls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prof-dtls h3 {
    font-size: 17px;
}

.rtng-str i {
    font-size: 15px;
    color: #ffd900;
}

.rtng-str {
    margin: 13px 0;
}

.testimoni-cont p {
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
}

.testimoni-cont {
    position: relative;
}

.ggl-ic {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: absolute;
    right: 20px;
    top: 10px;
    flex-shrink: 0;
}

.slick-dots button {
    display: none !important;
}

.slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #777676;
    margin: 0 2px;
}

.slick-dots {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;

}

.slick-dots .slick-active {
    width: 12px;
    height: 8px;
    border-radius: 8px;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
}

.ind2-tp-bg {
    height: 30px;
    background-color: #000000;
    width: 700px;
    position: absolute;
    top: -1px;
    right: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.ind3-lft {
    width: 100%;
    height: 500px;
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%, 10px 80px);
}

.ind3-lft-fl {
    position: relative;
}

.ind3-lft-fl::after {
    content: "";
    position: absolute;
    height: 85%;
    width: 70%;
    top: -10px;
    left: -10px;
    background-color: #000000;
    z-index: -1;
}

.ind3-lft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind3-lft-bx {
    width: 400px;
    height: fit-content;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    position: absolute;
    bottom: -41px;
    right: -40px;
    background-color: #fff;
    padding: 20px;
}

.ind3-lft-bx h2 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 5px;
}

.ind3-lft-bx h4 {
    font-size: 14px;
    line-height: 23px;
    margin-top: 10px;
    position: relative;
    width: fit-content;
    color: #000000;
}

.ind3-lft-bx h4::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #000000;
    bottom: -3px;
    left: 0;
    transform: translateY(-50%);
}

.ind3-rgt {
    padding-left: 50px;
}

.ind3-rgt h2 {
    margin: 10px 0;
}
.ind9-lft-flx-inr h4{
    color: #000;
}
.ind9-lft-flx-inr p{
    color: #000;
}

.ind3-rgt-btn1 p {
    padding: 8px 30px;
    background-color: #000000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    border: 1px solid #000000;
}

.ind3-rgt-btn2 p {
    padding: 8px 30px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    border: 1px solid #000000;
}

.ind3-rgt-btn1 p:hover {
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    border: 1px solid #000000;
    color: #000000;
}

.ind3-rgt-btn2 p:hover {
    background-color: #000000;
    transition: all 0.3s ease-in-out;
    border: 1px solid #000000;
    color: #ffffff;
}

.ind3-rgt-btn-flx {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}




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

.goto-inr-flx {
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

}

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

.goto {
    display: flex;
    gap: 20px;
    width: fit-content;
    /* background-color: #ffffff; */
    margin-top: 50px;
    width: 100%;
    padding: 40px 35px;
    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 #0000002a; */
}

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

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

.goto .count {
    font-size: 65px !important;
    font-weight: 100;
    color: #7D7D7D;
    font-family: Koulen-Regular;
}

.wth-pls span p {
    font-size: 37px !important;
    font-weight: 600;
    color: #7D7D7D;
    font-family: Inter-Regular;
}



.count2 p {
    margin-top: 20px !important;
    max-width: 166px;
    font-size: 14px !important;
    line-height: 18px;
    font-weight: 600;
    color: #464646;
    font-family: Inter-Regular;
    margin-bottom: 0 !important;

}

.count2 {
    margin: 5px 0;
    min-width: 150px;
}

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

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

.ind4 {
    margin: 120px 0 80px 0;
    background-color: #FBFBFB;
    box-shadow: 0 2px 7px #0000002a;
}

.ind5 {
    padding-top: 50px;
}

.ind5-lft {
    padding-right: 80px;
}

.ind5-lft .h2 {
    font-size: 75px;
    margin: 10px 0;
}

.ind5-lft p {
    margin: 10px 0;
}

.ind5-lft h4 {
    font-size: 14px;
    font-weight: 100;
    padding: 10px 30px;
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    margin-top: 30px;
    border-radius: 5px;
}

.ind5-rgt-flx {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ind5-rgt-flx-bx {
    height: 100%;
    width: 100%;
    box-shadow: 0 2px 7px #0000002a;
    border-radius: 7px;
    background-color: #ffffff;
    padding-bottom: 10px;
    margin: 20px 0;
}

.ind5-rgt-flx-bx img {
    height: 200px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 7px 7px 0 0;
    object-fit: cover;
}

.ind5-rgt-flx-bx h3 {
    font-size: 15px;
    margin: 0 10px;
}

.ind5-rgt-flx-rgt {
    position: relative;
    top: 50px;
}
    .abt4-cont h2 {
        font-size: 27px;
    }

.ind6 {
    padding: 80px 0;
    position: relative;
    height: 500px;
}

.ind6lft-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    object-fit: contain;
}

.ind6mn-bg {
    position: absolute;
    top: 20%;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.ind6-cont {
    position: relative;
    margin-top: 70px;
}

.ind6-cont-lftimg1 {
    width: 330px;
    height: 350px;
    box-shadow: 0 2px 7px #0000002a;
    border-radius: 10px;
    border: 3px solid #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

.ind6-cont-lftimg1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind6-cont-lftimg2 {
    width: 320px;
    height: 300px;
    box-shadow: 0 2px 7px #0000002a;
    border-radius: 10px;
    border: 3px solid #ffffff;
    position: absolute;
    top: 150px;
    right: 0;
}

.ind6-cont-lftimg2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind6-cont-lft {
    height: 450px;
}

.ind6-cont-lft .grad1 {
    position: absolute;
    top: -45px;
    left: -40px;
    width: 250px;
    object-fit: contain;
}

.ind6-cont-lft .grad2 {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    object-fit: contain;
}

.ind6-cont-rgt {
    height: fit-content;
    display: flex;
    align-items: end;
    padding-left: 50px;
    margin-top: 50px;
}

.ind6-cont-rgt h2 {
    font-size: 22px;
    line-height: 30px;
}

.ind6-cont-inr {
    margin-top: 20px;
}

.ind6-cont-rgt-tp-cont h2 {
    margin: 10px 0;
    max-width: 619px;
    font-size: 32px;
    line-height: 35px;
}

.ind6-cont-rgt-tp-cont {
    margin-left: -150px;
}

.ind6-bg-bx {
    width: 40%;
    height: 60px;
    background-color: #000000;
    position: absolute;
    bottom: -86px;
    left: 0;
    z-index: -1;
}

/* .img-rnd {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    object-fit: contain;
} */

.ind7 {
    position: relative;
    padding: 80px 0;
    background-image: url(../assets/icons/9.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    margin-top: 250px;
}

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

.ind7-lft h2 span {
    font-size: 90px;
}

.ofr-slider {
    border-radius: 200px 50px 20px 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    max-width: 680px;
    margin-left: auto;

}

.ofr-slider .item img {
    width: 100%;
    height: 540px;
    object-fit: cover;

}

.ofr-slider .item {
    position: relative;
}

.ofr-slider .item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #000000dc, #00000000);
    z-index: 1;
}

.ind7-rgt {
    position: relative;
    width: fit-content;
    height: 100%;
    margin-left: auto;
}

.ind7-rgt-cont-bx {
    height: fit-content;
    padding: 20px;
    width: 315px;
    box-shadow: 0 2px 7px #0000002a;
    border-radius: 10px;
    background-color: #ffffff;
    position: absolute;
    bottom: -40px;
    left: -60px;
    z-index: 2;
}

.ofr-slider .slick-dots {
    justify-content: end;
    position: relative;
    margin-top: -15px;
    top: -20px;
    right: 30px;
}

.ofr-slider .slick-dots li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #777676;
    margin: 0 2px;
    border: 2px solid #ffffff;

}

.ofr-slider .slick-dots li.slick-active {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #f00000;
    margin: 0 2px;
    border: 2px solid #ffffff;

}

.ind7-lft {
    padding-top: 100px;
}

.ofr-cont {
    position: absolute;
    bottom: 111px;
    left: 50px;
    width: fit-content;
    height: fit-content;
    z-index: 2;
}

.ofr-cont p {
    max-width: 400px;
    color: #ffffff;
}

.ofr-cont h3 {
    max-width: 400px;
    color: #ffffff;
    font-size: 24px;
    margin: 5px 0;
}

.ind-cont-hdng h2 {
    text-align: center;
    margin: 10px 0;
}

.ind-cont-hdng h3 {
    text-align: center;
}

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

.ind8-cont img {
    width: 100%;
    object-fit: contain;
    margin-top: 80px;

}

.ind9 {
    padding: 80px 0;
}

.ind9-lft-flx {
    display: flex;
    align-items: start;
    gap: 15px;
}

.ind9-lft-flx-inr {
    width: 25%;
    height: 100%;
}

.ind9-lft-flx-inr img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.ind9-lft-flx {
    margin-top: 30px;
}

.ind9-lft-flx-inr h4 {
    margin: 5px 0 2px 0;
}







.calendar-wrapper {
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.calendar-header {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
    margin-bottom: 20px;
}

.calendar-header select {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.calendar-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-row {
    display: flex;
    gap: 8px;
    width: 480px;
    padding: 20px 0;
    overflow: hidden;
    justify-content: center;
}
.calendar-row {
    cursor: grab;
    user-select: none;
}

.calendar-row:active {
    cursor: grabbing;
}
.day-box.active {
    border: 1px solid #ff0000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.day-box {
    width: 85px;
    background: #fff;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 0px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
    flex-shrink: 0;
}

.day-box h2 {
    margin: 12px 0 6px;
    font-size: 28px;
    font-weight: bold;
}

.day-box span {
    display: block;
    background: #444;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

.day-box.active span {
    background: #ff0000;
}

.nav-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.schedule-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 0;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
}











.clndr-bx {
    height: fit-content;
    width: 100%;
    box-shadow: 0px 0px 2dvh rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    background-color: #fff;
    padding: 35px;
}

.clndr-bx h2 {
    font-size: 30px;
    line-height: 35px;
}

.clndr-bx img {
    width: 100%;
    object-fit: contain;
    margin: 20px 0;
}

.clndr-btn {
    width: 100%;
    padding: 10px 30px;
    background-color: #000000;
    border-radius: 5px;
    /* margin-top: 30px; */
    color: #ffffff;
    text-align: center;
}



.wtsap-bx {
    padding: 10px 20px;
    width: fit-content;
    background-color: #000000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;

}

.wtsap-bx img {
    width: 30px;
    object-fit: contain;
    margin: 0;
}

.wtsap-bx p {
    color: #ffffff;
}

.ind10 {
    padding: 80px 0;
    background-color: #242424;
}

.ind10-rgt img {
    width: 100%;
    object-fit: contain;
}

.ind10-lft {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: baseline;
}

.ind10-lft img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.ind10-lft h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.ind10-lft p {
    color: #ffffff;
}

.ind10-lft h2 span {
    color: #ffffff;
}

.ind11-hdng {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ind11-hdng img {
    width: 42px;
    object-fit: contain;
}

.ind11-hdng h2 {
    font-size: 30px;
    line-height: 35px;
}

.ind11 {
    padding: 100px 0;
}

.ind11-cont-bx {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ind11-cont-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind11-cont {
    margin-top: 30px;
}

.ind11-cont-bx h3 {
    color: #ffffff;
    font-size: 22px;
    text-align: center;
}

.ind11-cont-bx .ind11-cont-bx-cont {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
    width: 100%;
}

.ind11-cont-bx::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to top, #000000, #00000002);
}

.ind11-cont-bx-cont-icon img {
    width: 45px;
    object-fit: contain;

}

.ind11-cont-bx-cont-icon {
    width: fit-content;
    margin: 0 auto;

}

.ind12 {
    padding: 80px 0;
    background-color: #161616;
}

.ind12-tp-cont h2 {
    font-size: 40px;
    color: #ffffff;
    margin: 10px 0;
}

.ind12-tp-cont {
    color: #ffffff;
}

.ind12-tp-cont-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0 20px 0;
    justify-content: center;
    flex-wrap: wrap;

}

.ind12-img {
    width: fit-content;
    height: fit-content;
}

.ind12-tp-cont-logos img {
    height: 110px;
    object-fit: contain;
}

.ind12-cnt {
    margin-bottom: 50px;
}

.undr-ln {
    height: 1px;
    background-color: #ffffff;
    margin: 5px auto;
}

.wdth1 {
    width: 80%;
}

.wdth2 {
    width: 50%;
}

.wdth3 {
    width: 30%;
}

.ind12-undr-lns {
    margin: 100px 0;
}

/* index close */

/* about  */

.page-header {
    height: 300px;
    width: 100%;
    background-image: url(../assets/imgs/14.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000060;
}

.page-hdr-cont h2 {
    text-align: center;
}

.page-hdr-cont {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.brd-crmbs {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 10px auto;

}

.brd-crmbs p {
    color: #ffffff;
}

.brd-crmbs i {
    color: #ffffff;
}

.page-hdr-cont h2 {
    color: #ffffff;
}

.abt1 {
    padding: 80px 0;
}

.abt1-cont-lft h2 {
    margin: 10px 0;
}

.abt1-cont-lft .p {
    padding: 8px 30px;
    border: 1px solid #000000;
    border-radius: 5px;
    color: #000;
    margin-top: 20px;
    width: fit-content;
    gap: 10px;

}

.abt1-cont-rgt p {
    text-align: end;
}


.bat1-mn-img {
    max-width: 1200px;
    height: 600px;
    margin: 80px auto 0 auto;
    position: relative;
}

.bat1-mn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bat1-cont-bx {
    height: fit-content;
    width: fit-content;
    max-width: 500px;
    box-shadow: 0px 0px 10px 0px #00000040;
    border-radius: 10px;
    position: absolute;
    background-color: #ffffff;
    bottom: -6%;
    right: -4%;
    z-index: 2;
    padding: 20px 40px;
}

.bat1-cont-bx h2 {
    font-size: 25px;
    margin-bottom: 5px;
    line-height: 30px;
}

.abt2 .goto {
    padding: 0px 35px;
    margin-bottom: 20px;
}

.abt2 .count2 p {
    max-width: 200px;
}

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

.abt2 .goto .count {
    font-size: 55px !important;
}

.abt2 {
    padding: 10px 20px;
    box-shadow: 0px 0px 10px 0px #00000040;
    margin: 50px 0;
}

.abt3 {
    padding: 80px 0;
    background-color: #000000;
}

.abt3-hdng {
    text-align: center;
    margin-bottom: 50px;
}

.abt3-hdng h2 {
    color: #ffffff;
}

.abt3-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.abt3-hdng h3 {
    color: #ffffff;
    margin-bottom: 10px;
}






.ind6-cont-hdng {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.ind6-cont-tms-tp {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.ind6-cont-tms-btm {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ind6-cont-tms-tp-bx {
    width: 250px;
    /* width: 200px; */
    height: 100%;
    color: #ffffff;
}

.ind6-cont-tms-btm-bx {
    width: 150px;
    height: 100%;
    text-align: center;
    color: #ffffff;
}

.ind6-cont-tms-tp-bx img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
}

.ind6-cont-tms-btm-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind6-cont-tms-tp-bx {
    text-align: center;
}

.mmbr-btn {
    padding: 3px 20px;
    border: 1px solid #000000;
    border-radius: 5px;
    width: fit-content;
    color: #000000;
    font-size: 13px;
    margin: 5px auto 0 auto;
    cursor: pointer;
}

.ind6-cont-tms-tp-bx h3 {
    margin-top: 10px;
    font-size: 18px;
}

.ind6-cont-tms-btm-bx h3 {
    margin-top: 10px;
    font-size: 15px;
}

.abt4 {
    padding: 80px 0;
}

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

.abt4-cont {
    margin-top: 50px;
}

.abt4-cont-img {
    height: 300px;
    width: 100%;
    margin: 20px 0;
}

.abt4-cont-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.abt4-lft {
    padding-right: 60px;
    border-right: 1px solid #c2c1c1;
}

.abt4-rgt {
    padding-left: 30px;
}

.abt4-cont h2 {
    font-size: 35px;
    margin-bottom: 5px;
}

/* about close  */
.testi-1 {
    padding: 80px 0;
}

.testi-1 .testimoni-cont {
    padding: 0 30px;
    margin: 30px 0;
}

/* what we offre  */

.cont-rgt p {
    text-align: end;
}

.cont-lft h2 {
    font-size: 75px;
    margin: 10px 0;
}

.ofr-img {
    height: 250px;
    width: 100%;
}

.ofr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.ofr-fl {
    height: fit-content;
    box-shadow: 0px 0px 10px 0px #00000040;
    border-radius: 10px;
    padding: 1px;
    margin-bottom: 30px;

}

.ofr-img-cont {
    padding: 15px 10px;
}

.abt1-cont-btm {
    padding-top: 80px;
}

.ofr-img-cont h3 {
    font-size: 16px;
    color: #000000;
}

.bsns-cnt-btm-cont-btn-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 20px;
}

.bsns-cnt-btm-cont-btn-flx p {
    padding: 8px 30px;
    background-image: linear-gradient(to bottom, #646464, #000000);
    border-radius: 5px;
    width: fit-content;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
}

/* what we offre close */

/* packeges  */

.pkg-bx {
    padding: 30px 40px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #00000040;
    margin-bottom: 30px;
}

.pkg-bx-tp-flx {
    display: flex;
    align-items: start;
    justify-content: space-between;

}

.pkg-logo {
    width: 150px;
    height: fit-content;
}

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

.pkg-logo h2 {
    font-size: 30px;
}

.prc-flx {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;

}

.prc-flx h4 {
    position: relative;
    width: fit-content;
    color: #797979;
}

.prc-flx h4::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    height: 1px;
    width: 120%;
    background-color: #636363;
}

.pkg1 {
    padding: 80px 0;
}

.pkg-bx-top {
    padding-bottom: 20px;
    border-bottom: 1px solid #c2c1c1;
}

.pkg-pnt {
    height: 8px;
    width: 8px;
    background-color: #000000;
    border-radius: 50%;
    margin-top: 7px;
}

.pkg-btm {
    margin-top: 20px;
}

.pkg-pnt-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
}

/* Hide extra points initially */
.pkg-pnt-flx.extra {
    display: none;
}


.pkg-btn {
    padding: 8px 30px;
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
    cursor: pointer;
}

.pkg-stch-btn-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =============on off button================= */
.pkg-stch-btn .switch {
    position: relative;
    width: 35px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
}

.pkg-stch-btn .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pkg-stch-btn .switch span {
    position: absolute;
    inset: 0;
    background: #666;
    border-radius: 30px;
    transition: 0.3s;
}

.pkg-stch-btn .switch span::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 1px 3px 6px #666;
    transition: 0.3s;
}

.pkg-stch-btn .switch input:checked+span {
    background: #090;
}

.pkg-stch-btn .switch input:checked+span::after {
    transform: translateX(15px);
}

/* =========================================== */

/* packeges close */

/* ofc space  */

.ofc1 {
    padding: 80px 0;
}

.ofc1-cont .cont-lft p {
    max-width: 700px;
}

.ofc-btn-flx {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ofc-btn-flx p {
    padding: 10px 30px;
    box-shadow: 0px 0px 8px 0px #00000036;
    background-color: #ffffff;
    color: #000000;
    width: fit-content;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 14px;
    cursor: pointer;
}

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

.ofc2-cont-hdng {
    text-align: center;
}

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

.ofc2-cont-hdng p {
    max-width: 800px;
    margin: 0 auto;
}

.ofc-mn-img {
    height: 550px;
    width: 85%;
    margin: 50px auto 0 auto;
}

.ofc-mn-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ofc-cont-btn {
    padding: 10px 30px;
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    border-radius: 5px;
    margin: 30px auto 0 auto;
    font-size: 14px;
    cursor: pointer;
}

.undr-lns-fl {
    margin-top: 30px;
}

.undr-lns-fl .undr-lns {
    height: 1px;
    background-color: #bdbdbd;
    margin: 5px auto;
}

.undr-lns.ln1 {
    width: 80%;
}

.undr-lns.ln2 {
    width: 60%;
}

.undr-lns.ln3 {
    width: 40%;
}

.abt1-cont .cont-rgt {
    max-width: 600px;
    margin-left: auto;
}

.abt1-cont .cont-lft h2 {
    line-height: 74px;
}

.bsns-cntr-cont {
    margin-top: 80px;
}

.btm-cnt-mn-img {
    height: 550px;
    width: 85%;
    margin: 50px auto 0 auto;
}

.btm-cnt-mn-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bsns-cnt-btm-hdg h2 {
    font-size: 30px;
}

.bsns-cnt-btm-hdg p {
    max-width: 800px;
}

.bsns-cnt-btm {
    margin-top: 80px;
}

.bsns-cnt-btm-cont {
    margin-top: 10px;
    background-color: #f5f5f5;
    height: 100%;
    width: 90%;
    padding: 60px 50px;
    border-radius: 10px;
}

.bsns-cnt-btm-cont-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
}

.bsns-cnt-btm-cont-pnt {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #000000;
    margin-top: 7px;
    flex-shrink: 0;
}

.bsns-cnt-btm-cont-flx p {
    max-width: 900px;
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-btn.active {
    background-image: linear-gradient(to bottom, #ff9800, #e65100);
}

/* ofc space close */

/* what we do  */
.what-do-cont {
    padding-top: 80px;
}

.what-do-cont-lft-img {
    width: 100%;
    height: 500px;
}

.what-do-cont-lft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 200px 50px 20px 0; */
    border-radius: 50px 200px 20px 20px;
}

.what-do-cont-rgt-img {
    width: 100%;
    height: 500px;
}

.what-do-cont-rgt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 50px 20px 0;
    /* border-radius: 50px 200px 20px 20px; */
}

.what-do-cont-rgt h2 {
    margin: 10px 0;
}

.what-do-cont-rgt {
    padding-top: 80px;
}

.wht-rgt-btn {
    padding: 10px 30px;
    background-color: #000000;
    color: #ffffff;
    width: fit-content;
    border-radius: 5px;
    margin: 50px 0;
    font-size: 14px;
    cursor: pointer;
}

.what-do-cont .row {
    margin-bottom: 100px;
}

.inr-cnt-sec {
    background-image: url(../assets/icons/15.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    height: 100%;
    width: 100%;
}

.inr-cnt-sec-cont h2 {
    font-size: 35px;
    text-align: center;
    max-width: 600px;
    line-height: 40px;
    margin: 0 auto;
}

.inr-cnt-sec-cont p {
    text-align: center;
    max-width: 800px;
    margin: 10px auto 0 auto;
}

.inr-cnt-sec-cont-btn {
    padding: 8px 30px;
    color: #000000;
    border: 1px solid #000000;
    width: fit-content;
    border-radius: 5px;
    margin: 20px auto 0 auto !important;
    font-size: 14px;
    cursor: pointer;
}

/* what we do close  */

/* contact  */

.cnct1 {
    padding: 80px 0;
}

.cnct-lft h2 {
    margin: 10px 0;
}

.cnct-lft .foot-lst {
    margin-top: 50px;
}

.cnt-frm-bx {
    width: 75%;
    /* height: 100%; */
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.103);
    padding: 30px;
    margin: 0 auto;
    border-radius: 10px;
}

.inpts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.inpts input {
    width: 100%;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0 10px;

}

.inpts label {
    font-family: Inter-Regular;
    font-size: 14px;
    color: #919191;
}

.inpts textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0 10px;
    font-family: Inter-Regular;
    font-size: 14px;
    color: #919191;
}

.cnt-frm-bx button {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
    padding: 10px;
    width: 100%;
    background-color: #000000;
    border-radius: 5px;
}

.cnct-lft h2 span {
    font-size: 47px;
}

.cnct-lft h2 {
    line-height: 28px;
}

.map {
    width: 100%;
    height: 500px;
    margin: 30px 0;
}

/* contact close */

/* team  */

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

.team-hdng h2 {
    margin: 10px 0;
}

.team-card-img {
    width: 100%;
    height: 450px;

}

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

.team-card {
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #ffffff5b;
    border-radius: 10px;
}

.team-all {
    padding: 8px 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
    width: fit-content;
    border-radius: 5px;
    margin: 20px auto 0 auto !important;
    cursor: pointer;

}

.team-slct-btn {
    margin-top: 10px;
}

.team-slct-btn a {
    padding: 5px 20px;
    border: 1px solid #ffffff;
    width: fit-content;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
}

.team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #000000, #00000000);
}

.team-cont {
    padding: 50px 0;
}

.team-card-txt {
    position: absolute;
    bottom: -70px;
    left: 20px;
    right: 20px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    padding: 20px;

}

.team-card-txt h3 {
    color: #ffffff;
}

.team-card-txt p {
    color: #ffffff;
}

.team-card-txt-flx {
    display: flex;
    gap: 10px;
    align-items: start;
    margin: 5px 0;

}

.fr-anm-txt {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 30px;
}


.team-card:hover .fr-anm-txt {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    top: 0px;
}

.team-card:hover .team-card-txt {
    bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.team-card:hover .team-card-txt {
    bottom: 30px;
    transition: all 0.3s ease-in-out;
    background-color: #00000083;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid #ffffff75;
}

.team-cont .row {
    justify-content: start;
}

.team-select {
    padding: 80px 0;
}

.team-slct-lft-img {
    width: 100%;
    height: 400px;
}

.team-slct-lft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.team-slct-rgt {
    padding: 30px 50px;
    box-shadow: 0px 0px 10px #0000002e;
    border-radius: 10px;
    height: 100%;
}
.team-slct-lft .team-slct-lft-txt-fl {
    bottom: 30px;
    transition: all 0.3s ease-in-out;
    background-color: #00000083;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid #ffffff75;
    padding: 20px;
    color: #ffffff;
}
.team-slct-lft{
    position: relative;
}
.team-slct-lft-txt-fl{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}
.input-div input{
    width: 100%;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #cecece;
    color: #000000;
    height: 40px;
    outline: none;

}
.team-slct-rgt h2{
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
}
.team-slct-rgt-hdng{
    margin-bottom: 15px;
}
.input-div{
    margin-bottom: 15px;
}
.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}


.phone-input select {
    border: none;
    padding: 10px;
    background: #f5f5f5;
    outline: none;
    cursor: pointer;
}
.iti {
    width: 100%;
}
 .phone-wrapper {
    position: relative;
}

.phone-wrapper .iti__country-list {
    position: absolute !important;
    top: 100% !important;   /* dropdown below input */
    left: 0 !important;
    z-index: 9999;
    width: 100%;
    max-height: 250px;
}

/* .iti {
    width: 100%;
}


.iti__country-list {
    max-height: 400px !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    top: 100% !important;
    bottom: auto !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 6px;
}


.iti__country-list {
    z-index: 9999;
} */




.team-slct-rgt button{
    border: none;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}


.circle-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    object-fit: contain;
}

.img-rnd {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 67%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* SVG text */
.circle-text {
    width: 100%;
    height: 100%;
    animation: rotateCircle 10s linear infinite;
}

.circle-text text {
    fill: #000000;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Rotation animation */
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* team close */







/* footer  */

footer {
    background-image: url(../assets/icons/14.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 40px 0;
    height: 100%;
    width: 100%;

}

.foot-fl {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.foot-lft {
    width: 40%;
}

.foot-rgt {
    width: 44%;
}

.foot-logo img {
    width: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}

.foot-logo p {
    max-width: 300px;
}

.foot-lft {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.foot-rgt {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.foot-fl h3 {
    margin-bottom: 10px;
}

.foot-fl p {
    margin-top: 10px;
}

.foot-lst ul li {
    margin-top: 15px;
}

.foot-lst ul li p {
    color: #000000;
}

.cnt-cont-flx p {
    color: #000000;
}

.foot-lst p {
    max-width: 250px;
}

.scl-bx i {
    color: #000000;
}

.scl-flx {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.scl-flx i {
    font-size: 25px;
}

.cnt-cont-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.cnt-rnd-bx {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #CDCDCD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fr-fd {
    color: #969696 !important;
    font-weight: 600;
    margin-bottom: 7px;
}

.cnt-rnd-bx i {
    font-size: 20px;
}




.copy-rt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}

.copy-rt img {
    height: 16px;
    object-fit: contain;
    margin-top: 2px;
    position: relative;
    top: 3px;
}

.copy-rt p {
    font-size: 13px;
    text-align: center;
}

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

}

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

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

}

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

/* footer close  */
