@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

:root {

    --skull--white: #FFFFFF;
    --skull--lightWhite: #fffcef;
    --skull--black: #000000;
    --skull--logo: #00aff0;
    --skull--red: #dc2626;
    --skull--green: #22c55e;
    --skull--blue: #3b82f6;
    --skull--yellow: #facc15;
    --skull--orange: #ea580c;
    --skull--amber: #d6c05a;
    --skull--lime: #84cc16;
    --skull--emrald: #10b981;
    --skull--teal: #14b8a6;
    --skull--cyan: #06b6d4;
    --skull--violet: #8b5cf6;
    --skull--purple: #a855f7;
    --skull--phuchasia: #d946ef;
    --skull--pink: #ec4899;
    --skull--banner-textSize: 45px;
    --skull--banner-textSizeMobile: 25px;
    --skull--banner-subText: 25px;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    font-family: "Merriweather", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

p,
span,
a {
    font-family: "Merriweather", serif;
    font-weight: 300;
}

a {
    text-decoration: none;
}

.decoration-none {
    text-decoration: none;
}

.rounded-t-lg {
    border-radius: 10px 10px 0px 0px;
}

.rounded-r-lg {
    border-radius: 0px 10px 10px 0px;
}

.rounded-b-lg {
    border-radius: 0px 0px 10px 10px;
}


.rounded-l-lg {
    border-radius: 10px 0px 0px 10px;
}

.border-b-2 {
    border-bottom: 1px solid black;
}

.border-r-2 {
    border-bottom: 1px solid black;
}

.border-t-2 {
    border-bottom: 1px solid black;
}

.border-l-2 {
    border-bottom: 1px solid black;
}

.rounded-10 {
    border-radius: 10px;
}

.border-t-none {
    border-top: none;
}

.border-l-none {
    border-left: none;
}

.border-semiBold {
    border: 1px solid rgba(0, 0, 0, 0.281);
}

.border-r-none {
    border-right: none;
}


.border-b-none {
    border-bottom: none;
}

.grow-1 {
    flex-grow: 1;
}

.border-dashed {
    border: 1px dashed black;
}

.grow-2 {
    flex-grow: 2;
}

.text-xl {
    font-size: 15px;
}

.w-60 {
    width: 60px;
}

.h-60 {
    height: 60px;
}

.invert-1 {
    filter: invert(1);
}

.border-medium {
    border: 1px solid rgba(0, 0, 0, 0.527);
}


.border-bold {
    border: 1px solid rgba(0, 0, 0, 0.637);
}

.w-20 {
    width: 20px;
}

.list-none {
    list-style-type: none;
}

.cursor-pointer {
    cursor: pointer;
}



.h-20 {
    height: 20px;
}

.shadow-b {
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.1);
}

.text-black {
    color: black;
}

.text-logo {
    color: var(--skull--amber);
}

.slidertext-container {
    position: absolute;
    top: 35%;
    /* width: max(20vw, 55%); */
}

.hover-border-dark {
    transition: 0.5s;
}

.hover-border-dark:hover {
    border-bottom: 1px solid black!important;
}



.nav-link-top {
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-link-top::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #000000;
    width: 0%;
    transition: width 0.3s ease;
}

.nav-link-top:hover::after {
    width: 100%;
    animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}

@keyframes heartbeat116 {

    0%,
    100% {
        width: 100%;
    }

    50% {
        width: 60%;
    }
}





.go-back-btn {
    position: relative;
    width: 12rem;
    height: 3rem;
    background-color: white;
    color: black;
    font-size: 1.25rem;
    border: 1px solid black;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.go-back-icon {
    position: absolute;
    left: 0px;
    width: 10%;
    height: 3rem;
    background-color: #05891d;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: width 0.5s ease;
}

.go-back-btn:hover .go-back-icon {
    width: 100%;
    color: white;
}

.go-back-btn:hover {
    color: white;
}

.go-back-text {
    position: relative;
    left: 0.5rem;
    z-index: 20;
    margin-bottom: 0px;
}










.slider-txt {
    font-size: clamp(1rem, 10vw, 3.5rem);
    /* (minimum,Will scale with the screen up to 10vw,maximum) */
    color: white;

}

.slider-image-parent::before {
    background: linear-gradient(to bottom, #0000006b, #0000006b);
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    top: 0%;
}





/* Header sticky part start */
.header-sticky {
    position: sticky !important;
    top: 0 !important;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Header sticky part end */





.slider-image-parent>img {
    height: 650px;
    max-height: 750px;
    object-fit: cover;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    z-index: 9999;
}





.subtitle-part {
    border: 1px solid #09881e;
    padding: 6px 10px;
    border-radius: 50px;
    display: inline;
    font-size: 14px;
}

.btn-bg {
    background-color: var(--skull--amber);
    padding: 10px 15px;
    color: black;
}

.overlay-btn-effect {
    z-index: 1;
    /* position: relative; */
}

.overlay-btn-effect::before {
    content: "";
    position: absolute;
    background-color: black;
    bottom: 0%;
    left: 0%;
    right: 0%;
    height: 0%;
    width: 100%;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    transition: 0.5s;
    z-index: -1;
    transition: 0.5s;
    color: white;
}

/* .overlay-btn-effect:hover::before {
    height: 100%;
    color: white;
} */

.w-170 {
    width: 170px;
}

.overlay-bg::before {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, #00000000, #000000bf);
    bottom: 0%;
    left: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h-set {
    height: 450px;
}

.hover-scale-transition {
    transition: 0.5s;
}

.scalling-img {
    transition: transform 0.5s ease-in-out;
}



.hover-scale-transition:hover .scalling-img {
    transform: scale(1.1);
}


.odometer {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.odometer-digit {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}


.counter-text {
    font-size: 4rem;
    font-weight: bold;
}

.text-nowrap {
    white-space: nowrap !important;
}

#counter {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

#progress-line-container {
    width: 80%;
    height: 4px;
    background: #333;
    margin-top: 20px;
    overflow: hidden;
    position: absolute;
    bottom: 10%;
    border-radius: 50px;
}

#progress-line {
    width: 0%;
    height: 100%;
    background: #00ffcc;
}

.logo-nav-bar {
    width: 118px;
}

.bg-black {
    background-color: black;
}

.text-justify {
    text-align: justify;
}

.banner-text-area {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-text-area>h2 {
    font-size: var(--skull--banner-textSize);
}


.imgHeight {
    height: 500px !important;
    width: 100% !important;
    object-fit: cover !important;
}



#bgColor {
    background-color: #40e0d01a;
}

.contact-left-div {
    border: 1px solid #0000004a;
    display: flex;
    border-radius: 0px 10px 10px 10px;

}

.message-form-box {
    border: 1px solid #0000008f;
    padding: 30px 30px 30px 16px;
    border-radius: 10px 0px 10px 10px;
}

.formhandler:focus {
    outline: none;
}

.slider-text-area {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.formhandler-register:focus {
    outline: none;
}


.formhandler-register {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: 1px solid white;
    border-radius: 50px !important;
    transition: 0.5s;
}

.select-register {
    height: 42px;
    width: 100%;
    border-radius: 50px;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px;
}

.select-register:focus {
    outline: 0;
}

.select-register>option {
    background-color: black;
}

.register-btn {
    background-color: var(--skull--orange);
    padding: 10px;
    border: 0px;
    outline: none;
    border-radius: 50px;
}

.formhandler-register::placeholder {
    color: rgb(0, 0, 0);
}

.contact_from_box2 {
    background: rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0px 10px 10px 0px;
    padding: 25px 30px;
    border: 1px solid rgb(177 177 177 / 72%);
}

.captcha-focus:focus {
    border: 1px solid rgba(0, 217, 255, 0.24) !important;
    outline: none !important;
}



/* #gradient-login {
    background: linear-gradient(to left, #000000a3, #000000b0), url("../assets/images/login-bg.jpg");
    background-size: cover;
} */

#gradient-register {
    background: linear-gradient(to left, #000000a3, #000000b0), url("../assets/images/register-bg.jpg");
    background-size: cover;
}

.form-control:focus {
    outline: none !important;
    border: 0px;
    box-shadow: none !important;
}

.contact-left-div>div>i {
    font-size: 22px;
    color: white;
}

.font-outer-box {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--skull--blue);
}

.widthset {
    width: 350px;
}

.uploadIimg {
    width: 220px;
}

.bg-lightWhite {
    background-color: var(--skull--lightWhite);

}

.uploadIimgHome {
    width: 350px;
}


#bullet-why-home {
    background-color: #7fffd447;
    padding: 8px 15px;
    border-radius: 50px;
}

.btn-aboutt-homee {
    background: rgb(0, 162, 255);
    padding: 8px 35px;
    border-radius: 25px;
    border: none;
    transition: all 0.5s;
}

#nav-service-hover {
    transition: all 0.5s;
}

.navmenu-button {
    transition: all 0.5s;
}

.btn-aboutt-homee,
.navmenu-button:hover {
    transform: scale(1.1);
}

/* social links start */
.social-common {}

/* social links end */
.navbar-right-btn {
    padding: 8px 55px;
    background-color: var(--skull--logo);
    border-radius: 10px 0px 10px 0px;
    color: white;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.navbar-right-btn::before {
    content: "";
    background-color: var(--skull--black);
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 0%;
    border-radius: 10px 0px 10px 0px;
    z-index: -1;
    transition: 0.6s;
}

.operation-none {
    display: none;
}

.navbar-right-btn:hover::before {
    height: 100%;
    width: 100%;
    transition: 0.5s;
}

.subtitle-text-part {
    position: relative
}

.subtitle-text-part {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px
}

/* faq start */
.faq-question {
    border: 1px solid rgba(0, 0, 0, 0.527);
    padding: 10px;
    cursor: pointer;
}

.faq-answer {
    padding: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.527);
    border-right: 1px solid rgba(0, 0, 0, 0.527);
    border-bottom: 1px solid rgba(0, 0, 0, 0.527);
    border-radius: 0px 0px 10px 10px;
}

/* faq end */


.scroll-top-part {
    position: fixed;
    bottom: 15%;
    right: 10%;
}

.scroll-top-part>div {
    height: 50px;
    width: 50px;
    background-color: red;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
}