/* Remove Scroll Button Arrow in Input Type Number Button*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Custom Scroll Bar */
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #fe6700;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin: 100px !important;
}

::-webkit-scrollbar-track {
  background-color: #ccc;
  padding: 10px !important;
}

/* Text Selection Color */

::-moz-selection {
  /* Code for Firefox */
  color: var(--theme-color);
  background: var(--theme-color);
}

::selection {
  color: var(--theme-white);
  background: var(--theme-color);
}








@font-face {
    font-family: 'Viga';
    src: url('../fonts/Viga-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
.Viga{
    font-family: 'Viga';
}
.Mont{
    font-family: 'Montserrat';
}



.fw-reg{font-weight: normal!important;}
.fw-medi{font-weight: 500!important;}
.fw-semi{font-weight: 600!important;}
.fw-bold{font-weight: bold!important;}


  
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* letter-spacing: 1px; */
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

body {
    font-family: 'Montserrat';
    overflow-y: scroll;
    background: url("../images/Bg-Dashed.png");
    background-size: contain !important;
    background-repeat: repeat-y;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6{
    margin: 0px;
    padding: 0px;
}
ul, ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
a, a:hover {
    color: var(--theme-black);
    text-decoration: none;
}

.f-14{font-size: 14px;}
.f-16{font-size: 16px;}
.f-18{font-size: 18px;}
.f-22{font-size: 22px;}

  



:root{
    --theme-white: #fff;
    --theme-black: #000;
    --theme-ccc: #ccc;
    --theme-aaa: #888;
    --theme-8b: #8b8b8b;
    --theme-51: #515151;
    --theme-color: #fe6700;
}

.cl-theme{color: var(--theme-color);}
.cl-w{color: var(--theme-white);}
.cl-b{color: var(--theme-black);}
.cl-ccc{color: var(--theme-ccc);}
.cl-8b{color: var(--theme-8b);}
.cl-51{color: var(--theme-51);}
.bg-black{background-color: var(--theme-black);}
.bg-white{background-color: var(--theme-white);}
.bg-theme{background-color: var(--theme-color);}




.mrg_tb{margin: 80px 0px;}
.mrg_t{margin-top: 80px;}
.mrg_b{margin-bottom: 80px;}

.whiteSpace{white-space: nowrap;}


.subHeading {
    font-size: 18px;
    color: var(--theme-aaa);
    width: 50%;
    text-align: center !important;
    margin-top: 4px;
}

/* <!-- =====================================================================================================================================================
                                                                Header
=====================================================================================================================================================--> */
.Logo{
    max-width: 150px;
}

.headerLinePad{padding-right: 80px;}
.VericalLine{
    position: relative;
}
.VericalLine::after{
    content: "";
    height: 100%;
    width: 1px;
    background-color: #eee;
    display: block;
    position: absolute;
    right: -40px;
    top: 0px;
}
.HeadContIcon{max-width: 50px;}
.HeadContIconHead{
    font-size: 22px;
    white-space: nowrap;
}
.HeadContIconDes{font-size: 18px;}



.cusNav {
    display: block;
    font-weight: 600;
    padding: 20px 30px;
    position: relative;
}

.cusNav:after {
    content: "";
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 5px;
    background-color: var(--theme-white);
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    /*margin-top: 16px !important;
    */transition: all ease-in-out 0.3s !important;
    -webkit-transition: all ease-in-out 0.3s !important;
    -moz-transition: all ease-in-out 0.3s !important;
    -ms-transition: all ease-in-out 0.3s !important;
    -o-transition: all ease-in-out 0.3s !important;
}
.cusNav:hover:after {
    opacity: 1 !important;
    left: 0%;
    right: 0%;
}


.megaHover {
    position: relative;
    margin-bottom: 0 !important;
}

.MegaMenu {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    background-color: var(--theme-white) !important;
    transition: all ease-in-out .5s !important;
    -webkit-transition: all ease-in-out .5s !important;
    -moz-transition: all ease-in-out .5s !important;
    -ms-transition: all ease-in-out .5s !important;
    -o-transition: all ease-in-out .5s !important;
    z-index: 999;
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
    overflow: hidden;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.megaHover:hover .MegaMenu {
    /* display: block; */
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 0;
}

.MegaMenu > li > a{
    display: block;
    white-space: nowrap;
    font-weight: 500;
    padding: 14px 30px;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.MegaMenu > li:hover a{
    background-color: var(--theme-color);
    color: var(--theme-white) !important;
}

.cusLineH{
    line-height: 34px;
}


.cusBtn{
    padding: 14px 34px;
    font-weight: 500;
    color: var(--theme-white);
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.cusBtn:hover{
    font-weight: 600;
    color: var(--theme-color);
    background-color: var(--theme-white);
    border: 2px solid var(--theme-color);
}

.btnLink{
    text-align: center !important;
    color: var(--theme-51);
    text-decoration: underline;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.btnLink:hover{
    text-align: center !important;
    font-weight: 500;
    color: var(--theme-black);
    text-decoration: underline;
}

.cusScalHvr:hover{
    transform: scale(1.06);
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
}

.menuIcon, .CloseIcon{
    max-width: 26px;
}
.navBoxicon{
    border: 2px solid var(--theme-color);
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 8px 8px 30px -12px rgba(254,121,30,0.9);
    -webkit-box-shadow: 8px 8px 30px -12px rgba(254,121,30,0.9);
    -moz-box-shadow: 8px 8px 30px -12px rgba(254,121,30,0.9);
}
.navBoxicon:hover{
    background-color: var(--theme-color);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.blackBG {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.blackBGActive {
    right: 0;
}

.navbarActive {
    right: 0px !important;
}

/* <!-- =====================================================================================================================================================
                                                                Banner Slider
=====================================================================================================================================================--> */
.blink {
    animation: blinker 1.5s linear infinite;
    color: rgb(255, 255, 255);
    font-family: sans-serif;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* <!-- ================================================   Banner   ================================================ --> */

.bannerImg{
    height: 700px;
    width: 100%;
    object-fit: cover;
    position: relative;
    
    z-index: -1;
}
.overlay {
    position: relative;
}
.overlay:before {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    --background-overlay:' ';
    content: " ";
    z-index: 9;
}
.sliderrr{
    position: relative;
    z-index: 1;
}

/* ======================================================= Silder Start ============================================================  */

.silder-text{
    position: absolute;
    left: 7%;
    top: 50%;
    text-align: left;
    z-index: 99;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.silder .text{
    width: 700px;
    font-size: 60px;
    text-align: left;
    margin-left: 20px;
}
.silder .txt{
   width: 700px;
    font-size: 16px; 	
    margin-left: 20px;
}


.silder .btn{
   font-weight: 600;
   background-color: var(--theme-color);
   color: var(--theme-white);
   border: 2px solid var(--theme-color);
   padding: 12px 30px;
   margin-left: 20px;
   margin-top: 20px;
   border-radius: 0px;
   -webkit-border-radius: 0px;
   -moz-border-radius: 0px;
   -ms-border-radius: 0px;
   -o-border-radius: 0px;
   transition: all ease-in-out 0.3s ;
   -webkit-transition: all ease-in-out 0.3s ;
   -moz-transition: all ease-in-out 0.3s ;
   -ms-transition: all ease-in-out 0.3s ;
   -o-transition: all ease-in-out 0.3s ;
}
.silder .btn:hover{
    font-weight: 600;
    border: 2px solid var(--theme-color);
    background-color: var(--theme-white);
    color: var(--theme-color);
}
#slider .owl-prev{
   position: absolute;
   left: 20px;
   right: auto;
   top: 50%;
   font-size: 40px;
   height: 46px;
   width: 46px;
   color: var(--theme-white);
   background: hsla(0, 0%, 0%, 0.4);
   box-shadow: 0 3px 4px 0 rgb(0 0 0 / 14%);
   line-height: 1;
   transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
}
#slider .owl-prev:hover{
   background: var(--theme-color);
   color: var(--theme-white);
}
#slider .owl-prev span{
   position: relative;
   top: -3px;
}
#slider .owl-next{
   position: absolute;
   right: 20px;
   left: auto;
   top: 50%;
   font-size: 40px;
   height: 46px;
   width: 46px;
   color: var(--theme-white);
   background: hsla(0, 0%, 0%, 0.4);
   box-shadow: 0 3px 4px 0 rgb(0 0 0 / 14%);
   line-height: 1;
   transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
}
#slider .owl-next:hover{
   background: var(--theme-color);
   color: var(--theme-white);
}
#slider .owl-next span{
   position: relative;
   top: -3px;
}
/* #down-to-up-btn{
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 99;
     font-size: 18px;
     border: none;
     outline: none;
     background-color: var(--theme-color);
     border-radius: 10px;
     color: white;
     cursor: pointer;
     padding: 15px;
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#down-to-up-btn:hover{
   background-color: var(--black-color);
} */
.owl-dots{
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translateX(-50%);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: var(--theme-color);
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.owl-theme .owl-dots .owl-dot span{
    background-color: var(--theme-white);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
/* ======================================================= Silder End ============================================================  */





/* <!-- =====================================================================================================================================================
                                                                Why Choose us?
=====================================================================================================================================================--> */
.ChooseCard{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border: 1px solid var(--theme-aaa);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    padding: 30px 20px;
    background-color: var(--theme-white);
    text-align: center;
    height: 100%;
}
.ChooseCard:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    border: 1px solid var(--theme-color);
    box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
    -webkit-box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
    -moz-box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
}
.chooseIcon{
    max-width: 80px;
}

.chooseText {
    font-size: 14px;
    color: var(--theme-aaa);
    text-align: center !important;
}


/* <!-- =====================================================================================================================================================
                                                                Number Counter
=====================================================================================================================================================--> */
.NumFixBG{
    background-image: url(../images/NumFixBG.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0px;
}
.NumSize{
    font-size: 70px;
    line-height: 70px;
}
.NumName{
    font-weight: 600;
    color: var(--theme-color);
}


/* <!-- =====================================================================================================================================================
                                                                White Labelling
=====================================================================================================================================================--> */
.WhiteLabellingBox{
    border: 2px solid var(--theme-ccc);
    text-align: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    overflow: hidden;
    background-color: var(--theme-white);
}
/* <!-- =====================================================================================================================================================
                                                                Contact Us
=====================================================================================================================================================--> */
.contLink{
    font-size: 20px;
    color: var(--theme-aaa);
}

.ContBox{
    border: 2px solid var(--theme-color);
    padding: 4%;
    background-color: var(--theme-white);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


.contBoxLabell{
    font-family: 'Montserrat';
    font-weight: 600;
}
.form-wrap {
    background: #fff;
    width: 100%;
    max-width: 850px;
    padding: 50px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,.15)
}

.form-control, .dropdown-toggle {
    height: 50px;
    border: 1px solid var(--theme-ccc);
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 20px rgba(0,0,0,.1)
}

textarea.form-control {
    height: 160px;
    padding-top: 15px;
    resize: none
}

.form-control::placeholder {
    color: #bbb
}

.cusSubmitBtn{
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    
}

.dropdown-toggle{
    color: #bbb;
    position: relative;
    box-shadow: none !important;
    outline: none !important;
}
.dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 46%;
    bottom: 50%;

    border-bottom: 0;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
    
    transform: translateY(-50%, -50%);
    -webkit-transform: translateY(-50%, -50%);
    -moz-transform: translateY(-50%, -50%);
    -ms-transform: translateY(-50%, -50%);
    -o-transform: translateY(-50%, -50%);
}

.dropdown-menu{
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid var(--theme-color);
    overflow: hidden;
}
.dropdown-menu > li > a{
    font-family: 'Montserrat';
    font-weight: 500;
    padding: 14px 20px;
}
.dropdown-menu > li > a:hover{
    color: var(--theme-white);
    background-color: var(--theme-color);

}



/* <!-- =====================================================================================================================================================
                                                                Footer
=====================================================================================================================================================--> */
.footer {
    background-color: var(--theme-black)!important;
    padding-top: 80px;
}
.footLogo{
    max-width: 75%;
}

.FootNav{
    display: block;
    font-weight: 500;
    padding: 12px 0px;
}
.FootNav:hover{
    color: var(--theme-color) !important;
}

.top-bar-social-link {
    padding: 5px;
    border-radius: 50%;
    background-color: #fff;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.CusHR{
    background-color: var(--theme-51);
}
.copyHvr, .copyHvr:hover{
    color: var(--theme-color);
}


/* <!-- =====================================================================================================================================================
                                                                About Us Page
=====================================================================================================================================================--> */
.bankDetailsBox{
    padding: 40px;
    border: 2px solid var(--theme-aaa);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    height: 100%;
    background-color: var(--theme-white);
}
.bankDetailsBox:hover{
    border: 2px solid var(--theme-color);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
    -webkit-box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
    -moz-box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
}
.AssociatesLogo{
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}
.AssociatesLogo:hover{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}


/* <!-- =====================================================================================================================================================
                                                                Product Details Page
=====================================================================================================================================================--> */
.orgBrd{border: 4px solid var(--theme-color);}
.whiteBrd{border: 8px solid var(--theme-white);}
.grayBrd{border: 8px solid var(--theme-ccc);}


.detail-card-btn1 {
    font-size: 18px;
    font-weight: 600;
    padding: 11px 0;
    text-align: center;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
    cursor: pointer;
    color: var(--theme-white);
    background-image: linear-gradient(90deg, #d44638, #b23121);
}
.detail-card-btn2 {
    font-size: 18px;
    font-weight: 600;
    padding: 11px 0;
    text-align: center;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
    cursor: pointer;
    color: var(--theme-white);
    background-image: linear-gradient(90deg, #44ff48, #21b933);
}


.detail-card-btn1:hover {
    background-image: none;
    color: #b23121;
    background-color: #f3dedb;
}
.detail-card-btn2:hover {
    background-image: none;
    color: #128c7e;
    background-color: #dcf5df !important;
}
.StickyTop{
    position: sticky;
    top: 20px;
}

.orgBD{
    border: 2px solid var(--theme-color);
}
.orgBD > h2{
    padding: 20px 30px;
    background-color: var(--theme-color);
}
.orgBD > div{
    padding: 20px 30px;
}


/* <!-- =====================================================================================================================================================
                                                                Product Card
=====================================================================================================================================================--> */
.proCardBord{
    border: 1px solid var(--theme-aaa);
    padding: 20px;
    background-color: var(--theme-white);
}
.proCardBord:hover{
    border: 1px solid var(--theme-color);
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
    -webkit-box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
    -moz-box-shadow: 10px 10px 34px -14px rgba(254,121,30,0.6);
}
.proCardHead{
    font-size: 26px;
    margin-top: 26px;
}
.proCardDec{
    font-size: 14px;
    color: var(--theme-aaa);
}

.proCardBtn{
    font-weight: 600;
    padding: 11px 0;
    text-align: center;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
    cursor: pointer;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.detail-card-btn11 {
    color: #b23121;
    background-color: #f3dedb;
}
.detail-card-btn22 {
    color: #128c7e;
    background-color: #dcf5df !important;
}


.detail-card-btn11:hover {
    background-image: none;
    color: var(--theme-white);
    background-image: linear-gradient(90deg, #d44638, #b23121);
}
.detail-card-btn22:hover {
    background-image: none;
    color: var(--theme-white);
    background-image: linear-gradient(90deg, #44ff48, #21b933);
}

p {
    text-align: justify !important;
}
.chooseText {
    text-align: justify !important;
}
.cusLineH  {
    text-align: justify !important;
}
.proCardDec  {
    text-align: justify !important;
}