/* Custom class */
.gap-30 {
    gap: 30px;
}

.gap-50 {
    gap: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.bg-light-green {
    background-color: #E6F2EE;
}

.bg-chat-green {
    color: var(--black);
    background-color: #E6F2EE;
}

.bg-chat-black {
    color: var(--white);
    background-color: var(--black);
}

.btn-disabled {
    pointer-events: none;
    opacity: .65;
}

.btn-active {
    cursor: pointer;
    opacity: 100;
}

/* Root Class */
:root {
    --light-green: #4CD080;
    --white: #ffffff;
    --black: #000;
    --light-gray: #636363;
    --dark-black: #141414;
    --theme-color2: #e89a3d;
}

.form-control {
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.secound-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn:focus {
    box-shadow: none;
}

.btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.6s ease-in-out;
}

.btn-cash-primary {
    padding: 8px 20px;
    color: var(--light-green);
    background-color: var(--white);
    border: 1px solid var(--light-green);
}

.btn-cash-primary:hover {
    color: #2c724f;
    background-color: var(--light-green);
    border: 1px solid var(--light-green);
}

.btn-cash-secound {
    padding: 8px 30px; color: var(--white);     
    background-color: #2c724f;
    /* background-color: var(--light-green); */
}

.btn-cash-secound:hover {
    color: #FFFFFF;
     background-color: #2c724f;
    border: 1px solid var(--light-green);
}

.chat-btn{
	padding: 14px 30px !important;
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: var(--dark-black);
}

.main-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--light-gray);
}

/* icon-box */
.round {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--light-green);
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.round-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--dark-black);
    text-align: center;
}

.round img {
    width: 78px;
}

/* Nav-link */
.custom-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.custom-link {
    text-decoration: none;
    position: relative;
}

.custom-link::before {
    content: "";
    background-color: var(--light-gray);
    transition: 0.4s ease-out;
    width: 0%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.custom-link:hover::before {
    width: 100%;
}

.chat-popup {
    /* display: none; */
    position: fixed;
       bottom: 15%;
    right: 3%;
    z-index: 999;
}

/* ############################ Text Animation */

.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}

.active.fade-bottom {
    animation: fade-bottom 1s ease-in;
}

.active.fade-left {
    animation: fade-left 1s ease-in;
}

.active.fade-right {
    animation: fade-right 1s ease-in;
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

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

@keyframes fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

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


.float {
      background-color: #fff;    border-radius: 50px;    bottom: 40px;    box-shadow: 2px 2px 3px #999;    color: #000;    height: 60px;    position: fixed;    right: 40px;    text-align: center;    width: 60px;    cursor: pointer;    display: flex;    align-items: center;    justify-content: center;
}


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


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #888;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
