.d-none { 
    display: none; 
}
/* common font css */
/* ======  BASE (Desktop 1920px)  ================= */
.font12 { font-size: 0.75rem; }
.font14 { font-size: 0.875rem; }
.font16 { font-size: 1rem; }
.font18 { font-size: 1.125rem; }
.font20 { font-size: 1.25rem; }
.font22 { font-size: 1.375rem; }
.font24 { font-size: 1.5rem; }
.font26 { font-size: 1.625rem; }
.font28 { font-size: 1.75rem; }
.font30 { font-size: 1.875rem; }
.font32 { font-size: 2rem; }
.font34 { font-size: 2.125rem; }
.font36 { font-size: 2.25rem; }
.font38 { font-size: 2.375rem; }
.font48 { font-size: 3rem; }
.font80 { font-size: 5rem; }

.fontweight300{ font-weight: 300; }
.fontweight400{ font-weight: 400; }
.fontweight600{ font-weight: 600; }

.padding0menu {	padding:0rem; }
.eq-main-container {
    margin-left: 15rem;
    margin-right: 15rem;
    margin-top: 4.938rem;
    margin-bottom: 7.5rem;
}
.eq-gradient-border{
	border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(160deg, #327cfc 0%, #327cfc 30%, #10133f 100%) border-box;
    border-radius: var(--panel-radius-top-left, 8px) var(--panel-radius-top-right, 8px) 8px 8px;
}
.marginleftright240{
	margin-left: 15rem;
	margin-right: 15rem;
}
.margintopbottom120{
	margin-top: 7.5rem;
	margin-bottom: 7.5rem;
}
.paddingtopbtm120{
    padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
.paddingLeftright240 {
	Padding-left: 15rem;
	Padding-right: 15rem;	
}
.paddingtop24 {
    padding-top: 1.5rem;
}

.colorBlack{ color: #000; }
.colorWhite{ color: #fff; }

.padding2rem { padding: 2rem !important; }

.padding0 { padding: 0 !important; }

.marginbottom20px { margin-bottom: 1.25rem !important; }

.marginbottom24px{ margin-bottom:1.5rem; }




/* START-CSS Apply to .eq-clickable-btn AND Liferay login portlet button */
.eq-clickable-btn,
.button-holder button {
    position: relative;
    font-weight: 600;
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(to right, #327cfc 0%, #2e3192 100%);
    text-align: center;
    text-decoration: none;
   display: inline-flex;
    border-radius: 6px;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
}

.eq-clickable-btn:hover,
.button-holder button:hover {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.eq-clickable-btn::before,
.button-holder button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 6px;
    background: linear-gradient(to right, #327cfc, #2e3192);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

.eq-clickable-btn:active,
.button-holder button:active {
    background: transparent;
    color: #327cfc;
}
.eq-clickable-btn.eq-outlined-btn{
     background: transparent !important;
    color: #327cfc !important;
    }

.eq-clickable-btn.eq-outlined-btn:hover{
    color: #327cfc !important;
}
.eq-clickable-btn.eq-outlined-btn:active{
   	background: linear-gradient(to right, #327cfc 0%, #2e3192 100%) !important;
    color: #fff !important;
}
/* END-CSS Apply to .eq-clickable-btn AND Liferay login portlet button */

/* START-CSS FOR CROSS BUTTON USED TO CLOSE */
.eq-cross-btn {
    background-color: #707070; 
    transition: all 0.25s ease-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; 
    font-size: 14px; 
    border-radius: 50%;
    border: none;
    width: 24px; 
    height: 24px;
    position: absolute; 
    z-index: 10;
}
.eq-cross-btn:hover {
    background-color: #2e3192 ; 
    color: #fff; 
}
.eq-cross-btn::before,
.eq-cross-btn::after {
    content: "";
    position: absolute;
    width: 14px; 
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
   transition: all 0.25s ease-out;
	 transform-origin: center center;

}
.eq-cross-btn::before {
    transform: rotate(45deg);
}
.eq-cross-btn::after {
    transform: rotate(-45deg);
}
.eq-cross-btn:hover {
    transform: rotate(90deg);
}
/*END-CSS FOR CROSS BUTTON*/

/*START-CSS ARROW BUTTON*/
.eq-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #d9d9d9;
   display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.eq-arrow-btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    position: absolute;
}
.eq-arrow-btn.left::before {
    transform: rotate(135deg);
    margin-right: -4px;
}
.eq-arrow-btn.right::before {
    transform: rotate(-45deg);
    margin-left: -4px;
}
.eq-arrow-btn.top::before {
    transform: rotate(-135deg); 
    margin-bottom: -4px;
}
.eq-arrow-btn.bottom::before {
    transform: rotate(45deg); 
    margin-top: -4px;
}
.eq-arrow-btn:hover {
    background: #2e3192;
}
.eq-arrow-btn:hover::before {
    border-color: #fff;
}
.eq-arrow-btn.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}
/*END-CSS ARROW BUTTON*/

a.no-decoration-all,
a.no-decoration-all:hover,
a.no-decoration-all:focus,
a.no-decoration-all:active {
    text-decoration: none !important;
}
.letterspace5{
	letter-spacing: 5px;
}

.margin0menu{
   margin:0;
}




/* ===========================
   Tablet (1024px – 1919px)
   Scale to ~85%
=========================== */
@media (max-width: 1900px) and (min-width: 1025px) {
  .font12 { font-size: calc(0.75rem * 0.85); }
  .font16 { font-size: calc(1rem * 0.85); }
  .font18 { font-size: calc(1.125rem * 0.85); }
  .font20 { font-size: calc(1.25rem * 0.85); }
  .font22 { font-size: calc(1.375rem * 0.85); }
  .font24 { font-size: calc(1.5rem * 0.85); }
  .font26 { font-size: calc(1.625rem * 0.85); }
  .font28 { font-size: calc(1.75rem * 0.85); }
  .font30 { font-size: calc(1.875rem * 0.85); }
  .font32 { font-size: calc(2rem * 0.85); }
  .font34 { font-size: calc(2.125rem * 0.85); }
  .font36 { font-size: calc(2.25rem * 0.85); }
  .font38 { font-size: calc(2.375rem * 0.85); }
  .font46 { font-size: 2rem;}
  .font48 { font-size: calc(3rem * 0.85); }

    .paddingLeftright240 {
      	Padding-left: calc(23.15vw - 13rem) !important;
	Padding-right: calc(23.15vw - 13rem) !important;
	
    }
	.marginleftright240 {
      	margin-left: calc(23.15vw - 13rem) !important;
		margin-right: calc(23.15vw - 13rem) !important;
    }

}

/* ===========================
   Mobile (768px – 1023px)
   Scale to ~75%
=========================== */
@media (max-width: 1024.99px) and (min-width: 768px) {
  .font14 { font-size: 1rem; } /* 16px requirement */
  .font16 { font-size: 1rem; } /* 16px (requirement) */
  .font18 { font-size: 1rem; } /*16px */
  .font20 { font-size: 1rem; } /* 16px (requirement) */
  .font22 { font-size: 1.125rem; } /* 18px - requirement */
  .font24 { font-size: 1.25rem; }/* 20px - */
  .font26 { font-size: 1.375rem } /*22px */
  .font28 { font-size: 1.5rem; } /* 24px */
  .font30 { font-size: 1.625rem; } /*26 */
  .font32 { font-size: 1.75rem; } /*28 */
  .font34 { font-size: 1.875rem; } /*30 */
  .font36 { font-size: 2rem; }/*32 */
  .font38 { font-size: 2.125rem; }/*34 */
  .font46 { font-size: 2.25rem;} /*32px (requirement) */
  .font48 { font-size:2.375rem; } /*38 requirement */

  .eq-clickable-btn,
    .button-holder button {
        padding: 8px 14px;
    }
 .eq-cross-btn {
	height: 20px;
		width: 20px;
	}
 .eq-cross-btn::before,
	.eq-cross-btn::after {
	width: 10px;
	}
   .eq-arrow-btn{
   width: 32px;
		height: 32px;
	}
  .paddingLeftright240{
    Padding-left: 2rem;
	Padding-right: 2rem;
}
.paddingtopbtm120 {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;	
}
.marginleftright240 {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

/* ===========================
   Small Mobile (<768px)
   Scale to ~65%
=========================== */
@media (max-width: 767px) {
 .font14 { font-size: 0.875rem; }    /* 14px */
  .font16 { font-size: 0.875rem; }    /* 14px */
  .font18 { font-size: 1rem; } /* 16-requirement */
  .font20 { font-size: 1.125rem; }  /* 18px */
  .font22 { font-size: 1.25rem; } /* 20px */
  .font24 { font-size: 1.25rem; }   /* 20px (requirement) */
  .font26 { font-size: 1.5rem; } /* 24px */
  .font28 { font-size: 1.625rem; }     /* 26px (requirement) */
  .font30 { font-size: 1.75rem; } /* 28px */
  .font32 { font-size: 1.875rem; }     /* 30px */
  .font34 { font-size: 1.875rem; } /* 30px */
  .font36 { font-size: 1.875rem; }  /* 30px */
  .font38 { font-size: 1.875rem; } /* 30px */
  .font46 { font-size: 2rem;} /*32px (requirement) */
  .font48 { font-size: 2rem; }    /* 32px - requirement */
  .font80 { font-size: 2.5rem; } /*40 px*/

  .eq-clickable-btn,
    .button-holder button{
        padding: 8px 14px;
        font-size: 16px !important;
  }
.eq-cross-btn {
	height: 20px;
		width: 20px;
	}
.eq-cross-btn::before,
	.eq-cross-btn::after {
	width: 10px;
	}
  .eq-arrow-btn{
   width: 36px;
		height: 36px;
	}
  .paddingtopbtm120{
    padding-top: 3.5rem;
	padding-bottom: 3.5rem;	
}
.paddingLeftright240 {
	Padding-left: 1.5rem;
	Padding-right: 1.5rem;
}
.marginleftright240 {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
   }
}


