:root {
    --darkGrey: #C2BAA6;
    --darkerGrey: #3F4A56;
    --DarkerGrey:#637181;
    --darkBlue: #1E295A;
    --white: #FFFFFF;
    --lightBlue: #769EAF;
    --theme-color-1: #833500;
    --lightGrey: #D0D0D0;
    --Grey:#EEEEEE78;
    --LightGrey:#C1C1C1;
    --paleOrange: #F5ECD7;
    --black:#000;
    --SpanishGrey: #989898;
    --grey:#505050;
    --lightBlack:#403e3a;
    --LighterGrey: #B4B4B4;
    --lighterGrey:#EEEEEE;
    --gray-bg: #FFE1B5;

    /* --theme-color-1: #7444FD; */
    --theme-color-1: #782DD7;
    --theme-color-2: #7E53F9;
    --theme-color-3: #E0D3FF;
    --theme-color-4: #282C32;
    --theme-color-5: #81838B;
    --theme-color-6: #AA8CFF;
    --theme-color-7: #F5F5F5;
    --theme-color-8: #F4F3FD;
    --theme-color-9: #282C3280;
    --theme-color-10: #CB7BFA;
    --theme-color-11: #f2f0f4;
    --theme-color-12: #F4F1FD;
    --theme-color-13: #F4F4F4;
    --theme-color-14: #F6F6F6;
    --theme-color-15: #F2F0F4;
    --theme-color-16: #7444FD33;
    --theme-color-17: #3B434F;
    --theme-color-18: #767676;
    --theme-grad-1: linear-gradient(180deg, #AA8CFF 0%, #7444FD 100%);
    --theme-grad-2: linear-gradient(91.4deg, #7444FD 49.13%, #9DE1FF 97.62%);
    --theme-grad-3: linear-gradient(180deg, #E1D6FE 0%, #E3F1F3 100%);
    --theme-grad-4: linear-gradient(90deg, #DFD3FE 0%, #F5F3FD 49.52%, #E2F0F2 100%);
    --theme-box-shadow-1: 1px 1px 2px 0px #0000001A;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600{
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fs-10{
    font-size:0.625rem;
}

.fs-11{
    font-size: 0.688rem;
}

.fs-12{
    font-size: 0.75rem;
}

.fs-13 {
    font-size: clamp(0.75rem, 1.2vw + 0.3rem, 0.813rem);
}

.fs-14{
    font-size: 0.875rem;
}

.fs-16 {
    font-size: clamp(0.875rem, 1.3vw + 0.5rem, 1rem);
}

.fs-18 {
    font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
}

.fs-20 {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}

.fs-22{
    font-size:clamp(1.2rem,1.9vw + 0.5rem,1.375rem)
}

.fs-24 {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
}

.fs-27{
    font-size: clamp(20px, 4vw, 27px);
}

.fs-32 {
    font-size: clamp(1.2rem, 2vw + 0.25rem, 2rem);
}

.fs-36{
    font-size:clamp(1.2rem, 2vw + 0.5rem, 2.25rem)
}

.fs-40 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

.fs-48 {
    font-size: clamp(1.7rem, 2vw + 1rem, 3rem);
}

.fs-64 {
    font-size: clamp(3rem, 4vw + 1rem, 4rem);
}

.lightBlack{
    color: var(--lightBlack);
}

.black{
    color:var(--black);
}

.SpanishGrey{
    color:var(--SpanishGrey);
}

.grey{
    color: var(--grey);
}

.LighterGrey{
    color:var(--LighterGrey);
}

.LightGrey{
    color:var(--LightGrey);
}

.darkGrey{
    color:var(--darkGrey);
}

.darkerGrey {
    color: var(--darkerGrey);
}

.DarkerGrey{
    color:var(--DarkerGrey);
}

.lightGrey {
    color: var(--lightGrey);
}

.brown {
    color: var(--theme-color-1);
}

.lightBlue{
    color:var(--lightBlue);
}

.darkBlue {
    color: var(--darkBlue);
}

.paleOrange{
    color:var(--paleOrange);
}

.white {
    color: var(--white);
}

.ls{
    letter-spacing: 1px;
}

body {
    background-color: var(--white);
}

/* header */
.navbar {
    /* background-color: var(--darkGrey); */
    padding-block: 0;
    /* min-height: 79.97px;
    max-height: 79.97px; */
}
/* 
.navbar-nav {
    background-color: var(--darkGrey);
} */

/* .nav-link {
    color: var(--darkerGrey);
    font-weight: bold;
    font-size: 1rem;
} */

/* .nav-item:nth-child(6) {
    border-left: 1px solid #e4dfdf;
} */

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-navbar {
    background-color: var(--theme-color-1);
    border-radius: 8px;
    border: none;
    font-weight: 600;
    color: white !important;
    transition: all .3s ease;
    padding: 10px 30px;
}

.btn-navbar:hover {
    transform: scale(1.1);
}

.btn-navbar a {
    color: white !important;
}

.navbar-nav .dropdown:hover .dropdown-menu{
    display: block ;
}
    
@media(hover:none){
    .navbar-nav .dropdown:hover .dropdown-menu{
        display: none;
    }

    .navbar-nav .dropdown:focus-within .dropdown-menu.show{
        display: block;
    }
}

.navbar .dropdown-menu[data-bs-popper].products_section,
.navbar .dropdown-menu[data-bs-popper].feature_section{
    margin-top: unset !important;
}

/*---------------------------Chat Form--------------------------*/
.chat-btn{
    position: fixed;
    bottom: 20px;
    right:20px;
    z-index: 100000;
    cursor: pointer;
    transition: transform .3s ease;
}

.chat-btn:hover{
    transform: scale(1.1);
}

.chat-btn img{
    box-shadow: 0px 4px 4px 0px #00000040;
}

.wrapper-chatForm {
    border-radius: 8px;
    display: none;
    position: fixed;
    right: 30px;
    bottom: 90px;
    top: 90px;
    overflow-y: auto; 
    width: 340px;
    background: white;
    z-index: 1000000;
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px); 
    }
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}

#chatbox-btn:checked ~ .wrapper-chatForm {
    display: block;
    animation: slideUp 0.3s forwards;
}

.chatForm{
    background-color: white;
    border-radius: 8px;
}

.chatForm input,.chatForm textarea{
    background-color: var(--lighterGrey);
    border: none;
    outline: none;
    border-radius: 6px;
}

.chatForm input::placeholder,
.chatForm textarea::placeholder{
    color:var(--LightGrey);
    font-size: 1rem;
}

.chatForm textarea{
    resize:none;
}

.chatForm_div_1{
    background-color: var(--theme-color-1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.chatForm_div_2{
    box-shadow: 0px -3px 7.4px 0px #00000021;
    padding-block: 11px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.chat-btn-2{
    background-color: var(--darkBlue);
    outline:none;
    border:none;
}

.minimize-btn{
    background: none;
    border: 0;
    outline:unset;
}
/*---------------------------Products menu-------------------------------*/
.products_section,.feature_section{
    display: none;
    width: 100vw;
    background-color: var(--white);
    inset:0;
    position: fixed !important;
    top:79.98px !important;
    bottom: unset;
} 

 .navbar-nav .dropdown-menu.products_section,
 .navbar-nav .dropdown-menu.feature_section{
    border-radius: unset;
    border:unset;
}

.products_section .product-img{
    border-radius: 22px;
    /* box-shadow: 0px 4px 4px 0px #00000040; */
}

/* section-1 */
.section-1 {
    background: linear-gradient(151.24deg, #F5ECD7 1.11%, #FFFFFF 72.52%);
    padding-top: 120px;
}

.btn-1-1 {
    border: 4px solid var(--darkBlue);
    padding: 1.20rem 3.5rem;
    background-color: transparent;
    font-size: 1rem;
    box-sizing: border-box;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}

.btn-1-1:hover {
    background-color: var(--darkBlue);
    color: var(--white);
}

.btn-1-2 {
    border: 4px solid var(--darkBlue);
    border-radius: 10px;
    background-color: var(--darkBlue);
    padding: 1.25rem 4.375rem;
    font-size: 1rem;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.btn-1-2:hover {
    background-color: #31428c;
    color: white;
    border-color: #31428c;
}

.content-1-1 {
    /* box-shadow: 0px 4px 8.9px 6px #83350040;
    border-radius: 13px;
    border: 10px solid black; */
    max-width: 862px;
    max-height: 543px;
}

/* section-2 */
.p2 {
    color: #637181;
    font-weight: 600;
}

.card-1 {
    border-radius: 20px;
    box-shadow: 0 0 20px 7px rgba(245, 236, 215, 0.74);
}

.content-2-p2 {
    padding-inline: 11vw;
}

/* section-3 */
.section-3 {
    background: linear-gradient(81.19deg, #F5ECD7 8.88%, #FFFFFF 63.86%);
}

.card-2 {
    flex-direction: row;
    box-shadow: 0px 4px 4px 5px #EADFC48F;
    border-radius: 20px 0px 0px 20px;
    border: none;
}

.gif {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gif-content {
    width: 52px;
    height: 128px;
    border: 4px solid var(--theme-color-1);
    border-radius: 100px;
}

.gif-content img {
    transition: transform 0.5s ease;
}

/* section-4  */
.section-4 {
    background-color: var(--darkBlue);
    /* margin-block: 142px; */
}

.section-4-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-4-1 {
    border: 3px solid var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: white;
    font-size: 1rem;
    padding: 1rem 3.5rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn-4-1:hover {
    background-color: transparent;
    color:white;
}

.btn-4-2 {
    border: 3px solid var(--theme-color-1);
    font-size: 1rem;
    padding: 1rem 4.375rem;
    color: white;
    background: transparent;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn-4-2:hover {
    background-color:  var(--theme-color-1);
    color: white;
}


/* section-5 */
.content-5-col-2 {
    background: var(--theme-grad-4);
    border-radius: 10px;
}

.content-5-3 {
    background-color: var(--theme-color-1);
    padding-inline: 27px;
    padding-block: 12px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.content-5-4 {
    margin-top: -30px;
}

.btn-5 {
    background-color: var(--darkBlue);
    border-radius: 7px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.btn-5:hover {
    background-color: #3f4c80;
    color: var(--white);
}

.fa-check {
    margin-right: 5px;
}

/* section-6 */
.section-6 {
    background: linear-gradient(101.73deg, #F5ECD7 21.74%, #FFFFFF 86.4%);
    padding-bottom: 80px;
    margin-top: 130px;
}

.section-6-1 {
    margin-right: 100px;
}

.section-6 span {
    border-bottom: 1px solid #c8cfd2;
}

.btn-6-1 {
    background-color: #EADFC4;
    font-size: 1rem;
    padding: 0.8rem 3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-6-1:hover {
    background-color: #e9ddbe;
    color:var(--darkBlue);
}

.btn-6-2 {
    border: 4px solid var(--darkBlue);
    background: transparent;
    border-radius: 10px;
    padding: 0.6rem 4rem;
    font-size: 1rem;
    transition: all 0.5s ease;
}

.btn-6-2:hover {
    background-color: var(--darkBlue);
    color:white;
    border: 4px solid var(--darkBlue);
}

/* section-7 */
.img-background {
    width: 100%;
    height: auto;
    animation-name: imageAnimate;
    animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
    transition: transform 0.8s ease;
}

@keyframes imageAnimate {

    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 10;
}


/* section-8 */
.section-8 {
    background: url('../images/Group 101.png');
    background-size: cover;
}

.content-8-main {
    padding-block: 150px;
}

.btn-8-1 {
    background-color: var(--theme-color-1);
    padding: 15px 60px;
    border-radius: 10px;
    border: none;
    transition: all 0.5s ease;
}

.btn-8-1:hover {
    background-color: #682b02;
    color: white;
}

.content-8-main p:first-child {
    color: #000;
}

.content-8-main p:nth-child(2) {
    width: 50%;
    margin: auto;
}

/* footer */
.footer {
    background-color: white;
}

.footer-content-1 img {
    max-width: 200px;
}

.social-media-links-container img {
    max-width: 100%;
}

.footer-content-2 .list-group .list-group-item {
    background-color: transparent;
    border: none;
}

.ul-1 li:not(:nth-child(1)),
.ul-2 li:not(:nth-child(1)),
.ul-3 li:not(:nth-child(1)),
.ul-4 li:not(:nth-child(1)) {
    font-weight: 400;
    color: #000;
    font-size: 1rem;
}

.btn-footer {
    background-color: #EADFC4;
    font-size: 1rem;
    padding: 0.8rem 3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background-color: #EADFC4;
    transform: scale(1.05);
    color: var(--darkBlue);
}

.copyright {
    color: #4f4b4b;
    font-size: 0.875rem;
}

.footer-row {
    border-bottom: 1px solid #B4AD9A;
}

@media only screen and (max-width: 992px) {
    .nav-item:nth-child(7) {
        border: none;
    }

    .card-2 {
        border-radius: 20px;
        max-width: 590px;
    }

    .section-4 {
        /* margin-block: 70px; */
    }

    .btn-8-1 {
        padding: 10px 50px;
    }

    .btn-footer {
        font-size: 1rem;
        padding: 0.8rem 2.1rem;
    }

    .section-1-div {
        padding-inline: 10vw;
    }

    .section-3-p {
        padding-inline: 10vw;
    }

    .ul-1 .list-group-item,
    .ul-2 .list-group-item,
    .ul-3 .list-group-item,
    .ul-4 .list-group-item{
        padding-block: 4px;
    }

    .products_section .product_content_col_2{
        height:auto;
    }

    .section-1{
        padding-top: 80px;
    }

    .navbar-brand{
        width:150px;
    }
}

@media only screen and (min-width: 992px) {

    .content-5-4 p:nth-child(2) {
        font-size: 3rem;
    }

    .sec4-bg {
        background: url('../images/laptop-img.png') no-repeat 20% 0;
        background-size: 40% 100%;
    }

    .products_section .product_content_col_2{
        height: calc(50% + 45px);
    }

    .blog_details .blog_details_section_2{
        position: relative;
    }

    .blog_details .blog_details_section_2 .col-lg-4{
        position: absolute;
        right: 0;
        top:-70px;
    }
}

@media only screen and (max-width: 1200px) {

    .content-2-p2 {
        padding-inline: 10vw;
    }

    .content-2-row {
        margin-inline: 5vw;
    }

    .btn2 {
        font-size: 0.875rem;
        padding: 0.75rem 2rem;
        margin-bottom: 1rem;
    }

    .btn3 {
        font-size: 0.875rem;
        padding: 0.75rem 2.7rem;
        margin-bottom: 1rem;
    }

    .btn2,
    .btn3 {
        border-width: 2px;
    }

    .btn-4-1,
    .btn-1-1 {
        font-size: 0.875rem;
        padding: 0.75rem 2rem;
        margin-bottom: 1rem;
    }

    .btn-4-2,
    .btn-1-2 {
        font-size: 0.875rem;
        padding: 0.75rem 2.7rem;
        margin-bottom: 1rem;
    }

    .btn-1-1,
    .btn-1-2,
    .btn-4-1,
    .btn-4-2 {
        border-width: 2px;
    }

    .section-6 span {
        font-size: 1rem;
    }

    .btn-6-1 {
        font-size: 0.875rem;
        padding: 0.75rem 2rem;
        margin-bottom: 1rem;
    }

    .btn-6-2 {
        font-size: 0.875rem;
        padding: 0.75rem 2.7rem;
        margin-bottom: 1rem;
    }

    .btn-6-1,
    .btn-6-2 {
        border-width: 2px;
    }

    .section-8 {
        background-position-x: center;
    }

    .content-8-main p:nth-child(2) {
        width: 80%;
        margin: auto;
    }

}

@media only screen and (min-width:1200px) {

    .fs-18 {
        font-size: 1.125rem;
    }

    .fs-24 {
        font-size: 1.5rem;
    }

    .fs-13 {
        font-size: 0.813rem;
    }

    .fs-16 {
        font-size: 1rem;
    }

    .fs-20 {
        font-size: 1.25rem;
    }

    .fs-32 {
        font-size: 2rem;
    }
    
    .fs-40 {
        font-size: 2.5rem;
    }

    .fs-48 {
        font-size: 3rem;
    }

    .navbar .nav-container {
        padding-inline: 50px;
    }

    .section-4-1 {
        background-color: transparent;
    }

    .content-5-4 p:nth-child(2) {
        font-size: 4rem;
    }

    .content-6-p1 {
        padding-inline: 100px;
    }

    .blog_details .blog_details_col2_div1,
    .blog_details .blog_details_col2_div2{
        width: 80%;
        margin: auto;
    }
}

@media only screen and (max-width: 480px) {
    .btn2 {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .btn3 {
        font-size: 0.75rem;
        padding: 0.5rem 2.2rem;
    }

    .btn-4-1,
    .btn-1-1 {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .btn-4-2,
    .btn-1-2 {
        font-size: 0.75rem;
        padding: 0.5rem 2.2rem;
    }

    .btn-4-1,
    .btn-4-2 {
        border-radius: 5px;
    }

    .content-2-row {
        margin-inline: 2vw;
    }

    .btn-6-1 {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .btn-6-2 {
        font-size: 0.75rem;
        padding: 0.5rem 2.2rem;
    }

    .btn-8-1 {
        padding: 10px 40px;
    }
}

@media only screen and (min-width:1061px) and (max-width:1414px) {
    .section-2-div {
        height: 71px;
    }

    .section-2-div-2 {
        height: 71px;
    }
}

@media only screen and (max-width: 410px) {
    .gif {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.2rem;
    }
}

@media only screen and (max-width:576px) {

    .ul-1 li:not(:nth-child(1)),
    .ul-2 li:not(:nth-child(1)),
    .ul-3 li:not(:nth-child(1)),
    .ul-4 li:not(:nth-child(1)) {
        font-weight: 400;
        color: #000;
        font-size: 0.875rem;
    }

    .section-1-div {
        padding-inline: 5vw;
    }

    .content-2-p2 {
        padding-inline: 5vw;
    }

    .section-3-p {
        padding-inline: 5vw;
    }

    .section-4 {
        /* margin-block: 50px; */
    }
    
    .btn-footer {
        padding: 0.5rem 2rem;
    }
}

@media only screen and (max-width:768px) {

    .collapsing {
        height: 0%;
    } 

    .navbar .nav-container{
        padding: 0;
    }

    .navbar .navbar-nav{
       background-color: white !important;
    }

    .navbar-collapse:not(.show){
        height:0 !important;
        padding: 0 !important;
    }

    .navbar-collapse{
        height:calc(100vh - 73px) !important;
        overflow: auto !important;
        background-color: white !important;
        transition: all .3s ease;
    }

    .nav-item{
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-6 {
        margin-top: 50px;
        padding-bottom: 40px;
    }

    .content-8-main {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .products_section,.feature_section{
        overflow: scroll;
        position: unset !important;
        inset: 0;
        width:auto;
    }

    .nav-container{
        height:calc(100% - 150px);
        position: unset !important;
    }

    .wrapper-chatForm{
        inset:0;
        height:100%;
        width:100vw;
        border-radius: unset;
        overflow: auto;
    }

    .chatForm_div_1,.chatForm_div_2{
        border-radius: unset;
    }

    .wrapper-chatForm .chatForm .chatForm_div_2{
        position: fixed;
        inset: 0;
        top: unset;
        bottom:0 !important;
        background-color: white;
    }

    .chat-btn img{
        max-width: 70%;
    }
}

@media only screen and (min-width:768px) and (max-width:992px) {
    .content-6-p1 {
        padding-inline: 60px;
    }

    .section-6 {
        margin-top: 70px;
    } 

    .section-6 span {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .card-1 .fs-24 {
        font-size: 18px;
    }

    .card-1 .fs-13 {
        font-size: 11px;
    }

    .section-2-div {
        height: 54px;
    }

    .section-2-div-2 {
        height: 54px;
    }

    .products_section,.feature_section{
        top:73.39px !important;
        height:calc(100% - 73px) !important;
        overflow-y: scroll;
    }
}

@media only screen and (min-width:992px) and (max-width:1200px) {
    .section-4-1 {
        background-position: 0 0;
    }

    .content-6-p1 {
        padding-inline: 60px;
    }
}

/* -----------------------------Login Page--------------------------------- */

.login-section{
    background: var(--theme-grad-4);
}

.login-section form{
    background-color: var(--white);
}

.login-section input{
    background-color: var(--Grey);
    border:none;
    padding-block: 12px;
}

.login-section input:focus{
    box-shadow:none;
    background-color: var(--Grey);
}

.login-section input::placeholder{
    color:var(--LightGrey);
    font-size: clamp(0.875rem, 1.3vw + 0.5rem, 1rem);
    font-weight: 500;
}

.login-section .forgotPasswordLink{
    text-decoration: none;
}

.login-section .forgotPasswordLink:hover{
    text-decoration: underline;
    color:rgb(218, 17, 17);
}

.login-section .signInBtn{
    background-color: var(--theme-color-1);
    transition: all 0.3s ease;
}

.login-section .signInBtn:hover{
    /* background-color: #682b02; */
}

.login-section .createAccountLink:hover{
    color:dodgerblue;
}

.login-section .password_div{
    position: relative;
}

.login-section .preview_password {
    position: absolute;
    right: 15px; 
    transform: translateY(-155%);
    cursor: pointer;
    top: 73px;
}


/* ----------------------------Blog Page--------------------------- */

.blog_menu{
    /* background: linear-gradient(81.19deg, #F5ECD7 8.88%, #FFFFFF 63.86%); */
    background: linear-gradient(106.21deg, #E3F0F3 15.95%, #E2D7FE 89.07%);
}

.blog_menu .card{
    background: transparent !important;
}

.blog_menu_section_2 .blog_menu_btn_1,
.blog_menu_section_3 .blog_menu_btn_2{
    background-color: var(--theme-color-1);
    padding:0.8rem 2.5rem;
    border-radius: 7px;
    box-shadow: 0px 2px 3px 0px #6E6E6E40;
    transition: all 0.3s ease;
}

.blog_menu_section_2 .blog_menu_btn_1:hover,
.blog_menu_section_3 .blog_menu_btn_2:hover{
    /* background-color: var(--theme-color-3); */
}

.blog_menu_section_2 .blog_img,
.blog_menu_section_3 .blog_img,
.blog_menu_section_4 .blog_img,
.blog_details_section_2 .blog_img,
.blog_details_col2_div2 .blog_img{
    box-shadow: 0px 22px 27px -20px #070A1933,0px 3px 12px -1px #070A1933;
}


/* ---------------------------Blog-details---------------------------- */

.blog_details{
    background: var(--theme-grad-4);

}

/* @media only screen and (min-width:768px) and (max-width:806px){
    .blog_details_div_2 .blog_details_p_1{
        min-height: 87.98px;
    }
} */

.blog_details .fa-reply{
    font-size: 8px;
}

.blog_details .blog_details_div_3:last-child{
    border-bottom: none !important;
}

.blog_details .commentForm input,
.blog_details .commentForm textarea,
.blog_details .blog_details_col2_div1 input{
    border: 1px solid #E4E4E4;
}

.blog_details .commentForm input::placeholder,
.blog_details .commentForm textarea::placeholder{
    color: #C0C0C0;
    font-weight: 400;
    font-size: 14px;
}

.blog_details .commentForm input:focus,
.blog_details .commentForm textarea:focus,
.blog_details .blog_details_col2_div1 input:focus,
.contactUs .contactUsForm input:focus,
.contactUs .contactUsForm textarea:focus{
    border: 1px solid #aeaaaa;
    outline: none !important;
}

.blog_details .commentForm textarea,
.contactUs .contactUsForm textarea{
    resize: none;
}

.blog_details .blog_details_btn_1{
    background-color: var(--theme-color-1);
    padding-block: 12px;
}

.blog_details .blog_details_col2_div1{
    background-color: #F6F6F6;
}

.blog_details .blog_details_btn_2{
    /* background-color: black; */
    padding-block: 12px;
}


/* -------------------------Contact Us---------------------------- */
.contactUs{
    background: var(--theme-grad-4) ;
    padding-top: 120px;
}

.contactUs .container{
    box-shadow: 7px 4px 14.9px 5px #83350012;
    background-color: white;
    border-radius: 7px;
}

.contactUs .contactUsForm input,
.contactUs .contactUsForm textarea{
    border-radius: 5px;
}

.contactUs .contactUsForm input::placeholder,
.contactUs .contactUsForm textarea::placeholder{
    color:var(--lighterGrey);
    font-size: 1rem;
    font-weight: 500;
}

.contactUs .contactUsForm input,
.contactUs .contactUsForm textarea{
    border:1px solid var(--lighterGrey)
}

.contactUs .contactUsForm button{
    background-color: var(--darkBlue);
}

.contactUs .contactUs_col2_div{
    background: var(--theme-color-14);

}

/* --------------------------ForgotPassword------------------------------- */
.forgotPassword,.login,.register{
    background: var(--theme-grad-4);
    height: 100vh;
}

.is-invalid {
    border-color: #e74c3c !important;
}

.is-valid {
    border-color: #2ecc71 !important;
}

.error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 5px;
}


.ws-nowrap{
    white-space: nowrap !important;
}

/* New Design css */

.theme-color-1-bg{
    background-color: var(--theme-color-1);
}
.theme-color-2-bg{
    background-color: var(--theme-color-2);
}
.theme-color-3-bg{
    background-color: var(--theme-color-3);
}
.theme-color-4-bg{
    background-color: var(--theme-color-4);
}
.theme-color-5-bg{
    background-color: var(--theme-color-5);
}
.theme-color-6-bg{
    background-color: var(--theme-color-6);
}
.theme-color-7-bg{
    background-color: var(--theme-color-7);
}
.theme-color-8-bg{
    background-color: var(--theme-color-8);
}
.theme-color-10-bg{
    background-color: var(--theme-color-10);
}

.theme-grad-1-bg{
    background: var(--theme-grad-1);
}
.theme-grad-3-bg{
    background: var(--theme-grad-3);
}
.theme-grad-4-bg{
    background: var(--theme-grad-4);
}

.theme-color-1{
    color: var(--theme-color-1);
}
.theme-color-2{
    color: var(--theme-color-2);
}
.theme-color-3{
    color: var(--theme-color-3);
}
.theme-color-4{
    color: var(--theme-color-4);
}
.theme-color-5{
    color: var(--theme-color-5);
}
.theme-color-6{
    color: var(--theme-color-6);
}
.theme-color-7{
    color: var(--theme-color-7);
}
.theme-color-8{
    color: var(--theme-color-8);
}
.theme-color-9{
    color: var(--theme-color-9);
}

.theme-br-30{
    border-radius: 30px !important;
}

button:hover{
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3) !important;
}

.theme-grad-2-text{
    background-image: var(--theme-grad-2);
    color: transparent;
    background-clip: text;
}

.theme-box-shadow-1{
   box-shadow: var(--theme-box-shadow-1);
}

.nav-link.active{
    font-weight: 700;
    color: var(--theme-color-1) !important;
}

table.dataTable > thead > tr > th{
    border-bottom: 1px solid #e9edf4 !important;
}

table.dataTable tbody td {
  vertical-align: middle;
}