@font-face {
    font-family: "Barlow";
    src: url('../fonts/Barlow-Thin.otf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowLight";
    src: url('../fonts/Barlow-Light.otf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowRegular";
    src: url('../fonts/Barlow-Regular.otf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowBold";
    src: url('../fonts/Barlow-Bold.ttf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowSemiBold";
    src: url('../fonts/Barlow-SemiBold.ttf');
    font-display: swap;
}

@font-face {
    font-family: "BarlowMedium";
    src: url('../fonts/Barlow-Medium.ttf');
    font-display: swap;
}

:root {
    --theme: #00a2e2;
    --white: #fff;
    --black: #000;
    --black-v1: #333;
    --grey-dark: #1d1d1d;
    --dark-black2: #2C2E30;
    --grey: #CBCDCE;
    --grey2: #E8E8E8;
    --grey3: #c9c9c9;
    --grey4: #808080;
    --grey5: #5F6167;
    --grey6: #656565;
    --grey7: #F7F7F7;
    --grey8: #F3F3F3;
    --bs-gutter-x: 1rem;
}

.errors {
    color: red;
}

.errorClass {
    border: 1px solid red !important;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: "BarlowRegular", sans-serif;
    font-size: 16px;
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
}

body.is-preload .main-inner {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

body.is-preload .main-inner .home-banner {
    opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "BarlowBold", sans-serif;
}

h1,
.h1 {
    font-size: 50px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

dl,
ol,
ul {
    margin: 0;
}

a {
    color: currentColor;
}

p {
    font-family: "BarlowRegular", sans-serif;
}

.space-top {
    padding-top: 2.5rem;
}

.space-bottom {
    padding-bottom: 2.5rem;
}

.radius-50 {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.fw-normal {
    font-family: "BarlowRegular", sans-serif;
}

.btn-close {
    background: rgba(0, 0, 0, 0) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M8 1.2A6.74 6.74 0 0 0 1.2 8 6.74 6.74 0 0 0 8 14.8 6.74 6.74 0 0 0 14.8 8 6.74 6.74 0 0 0 8 1.2zM0 8c0-4.4 3.6-8 8-8s8 3.6 8 8-3.6 8-8 8-8-3.6-8-8zm10.6-2.6a.61.61 0 0 1 0 .8L8.8 8l1.9 1.9a.61.61 0 0 1 0 .8.61.61 0 0 1-.8 0L8 8.8l-1.9 1.9a.61.61 0 0 1-.8 0 .61.61 0 0 1 0-.8L7.2 8 5.4 6.1a.61.61 0 0 1 0-.8.61.61 0 0 1 .8 0l1.9 1.9L10 5.3c.1-.1.4-.1.6.1z' fill-rule='evenodd' fill='%23000'/%3e%3c/svg%3e") center/1.75em auto no-repeat !important;
    border-radius: 1rem;
    opacity: .55;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    margin-left: auto;
    width: 1.75rem;
    height: 1.75rem;
}

.btn-global {
    text-transform: uppercase;
    background: #000;
    color: #fff !important;
    border-color: var(--white);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-shadow: none !important;
    font-family: "BarlowMedium", sans-serif;

}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-small {
    font-size: 12px;
    height: 30px;
}

.btn.outline {
    border-color: var(--white);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.btn-blue {
    background: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.btn-blue:hover,
.btn-blue:focus {
    background: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.bgblack {
    background: var(--black);
}

.bg-dark {
    background: var(--grey-dark);
}

.value-input.errors {
    color: var(--black);
}

.logo img {
    width: 100px;
}

.logo {
    display: inline-block;
}

.footer-theme p {
    color: var(--white);
    margin: 0;
    text-align: center;
}

.footer-theme {
    padding: 15px 0;
}

/******************************epm update************/
.hfi-logo {
    position: absolute;
    right: 50px;
    top: 20px;
}
.mobile
{
	display:none;
}
/******************************epm update ends************/

.value-input {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    color: var(--black);
    outline: none;
    border: 1px solid #ccc;
    margin: 0 0 0px 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    text-overflow: ellipsis;
}

.value-input:focus {
    box-shadow: none;
    border-color: #86b7fe;
}

select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.form-control::-webkit-input-placeholder {
    /* Edge */
    color: var(--black);
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--black);
}

.form-control::placeholder {
    color: var(--black);
}

.value-grid {
    margin-bottom: 30px;
}

.smalltext {
    font-size: 14px !important;
    font-family: 'BarlowLight';
}

.fw-semibold {
    font-family: 'BarlowSemiBold';
}

.fw-bold {
    font-family: 'BarlowBold';
}

.round-border {
    border: 2px solid var(--grey2);
    padding: 5px;
    width: 150px;
    height: 150px;
}

.form-wrap-d {
    background: var(--dark-black2);
}

.opacity-text75 {
    opacity: .75;
}

.header {
    padding: 25px 0;
}

.homebannerimg {
    margin: 0 -1rem;
    position: relative;
}

.home-bannertext {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 45%;
    color: #000;
}

.home-bannertext h1 {
    line-height: 1;
}

.home-bannertext>*:not(:last-child) {
    margin-bottom: 30px;
}

.home-bannertext h5 {
    font-family: 'BarlowLight';
    font-weight: 400;
	    max-width: 80%;
		margin:0 auto;
}

.paragrey {
    color: var(--grey6);
}

.gerbox-ft {
    background: var(--grey8);
    padding: 2rem;
}

.download-section {
    background: var(--grey8);
    padding: 2rem;
}

.gerbox-ft p {
    margin-bottom: 0;
}


.educate-inner-box {
    background: var(--grey8);
    padding: 2rem;
}

.listofhfi li:not(:last-child) {
    margin-bottom: 5px;
}
.listofhfi ul{
    padding-left: 19px;
}





@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1366px;
    }
}

/***********************************Responsive**********************/
@media(min-width:1200px) and (max-width:1400px) {}

@media(min-width:992px) and (max-width:1199px) {}

@media(max-width:1199px) {
    h2,.h2 {
        font-size: 28px;
    }
    h3,.h3 {
        font-size: 26px;
    }

    h4,.h4 {
        font-size: 22px;
    }

    h5,.h5 {
        font-size: 16px;
    }
    h1, .h1{
        font-size: 35px;
    }
   
}

@media(max-width:992px) {
    .home-bannertext{
        background: var(--black);
        width: 100%;
        transform: inherit;
        position: static;
        padding: 1rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .home-bannertext h1{
        line-height: 1.2;
    }
    .home-bannertext>*:not(:last-child) {
        margin-bottom: 25px;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .order {
        order: 2;
    }
}

@media (min-width: 768px) {
    .position-md-absolute {
        position: absolute !important;
    }

    .wmd-50 {
        width: 70%;
    }

    .wmd-70 {
        width: 90%;
    }
}

@media (min-width: 992px) {
    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .wmd-50 {
        width: 50%;
    }

    .wmd-70 {
        width: 75%;
    }

}

@media(max-width:767px) {
.desktop{
	display:none;
}
.mobile
{
	display:block;
}
.sedncontent-wd .mb-5 {
    margin-bottom: 0 !important;
}
.home-bannertext {
    color: #fff !important;
}
    body,
    .black-fridaybox,
    .btn-primary,
    .authors p:last-child {
        font-size: 14px;
    }

    .order {
        order: 2;
    }

    .smalltext {
        font-size: 11px !important;
    }
    h1, .h1{
        font-size: 30px;
    }
    .home-bannertext h1{
        font-size: 28px;
    }
   
    .btn-global{
        padding: 0.85rem;
        line-height: 1;
        padding-left: 1.5rem;
        font-size: 14px;
        padding-right: 1.5rem;
    }
    .value-grid {
        margin-bottom: 20px;
    }
    .value-input{
        height: 50px;
    }
    .logo img {
        width: 80px;
        height: 45px;
    }
}

/*cutom*/
@media(min-width:991px) {
    .mx-lg-50 {
        width: 50%;
    }

    .mx-lg-75 {
        width: 85%;
    }

    .mx-lg-60 {
        width: 60%;
    }
    .benefits-lg {
        padding: 0 3rem;
    }
    .download-section{
        padding: 50px 100px;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/***************updates on march 20 2023****/
.updatenew .home-bannertext {
    position: static;
    transform: inherit;
    width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0 100px 0;
}
.updatenew .educate-section {
    background: linear-gradient(to left, #D3D3D3 41%, #f3f3f3 85%);
}
.updatenew .home-banner {
    background: #D3D3D3;
}
.sedncontent-wd p span {
    display: block;
    padding: 20px 0 0;
    color: #000;
    font-weight: bold;
}
.updatenew .eleigibotom {
    background: #333333;
    margin: 0;
    padding: 20px 0;
}
.updatenew .eleigibotom p {
    color: #D9D9D9;
}
.clrwhite{
	color:#fff !important;
}
.elepara {
    margin: 0 auto;
    padding: 40px 0;
}
.updatenew .educate-inner-box{
	padding:0;
	background:transparent;
}
.aboutbg-right {
    background: #D3D3D3;
    padding: 90px 50px 90px 50px;
}
.aboutleft{
	    display: flex;
    justify-content: flex-end;
    text-align: center;
    padding: 0 5% 0 0;
}
/*.aboutbg-right:after {
    content: '';
    background: #D3D3D3;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -90%;
}*/
.educate-section {
    position: relative;
}
/****responsive********/
@media(max-width:992px){
.updatenew .home-bannertext {
    background: transparent;
    color: #000 !important;
    width: 100%;
    text-align: center;
    padding: 100px 0 50px 0;
}
.home-bannertext h5 {
    max-width: 100%;
}
.aboutleft {
    justify-content: center;
    padding: 30px 0;
}
.updatenew .educate-section {
    background: linear-gradient(to top, #D3D3D3 41%, #f3f3f3 85%);
}
}