/*@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");*/

/* Remove Styles */

/*h1,
h2,
h3,
h4,
h4,
h5,
p {
	margin: 0;
}*/


/*ekagga won style sheet*/


/*typography*/


/*font-family poppins*/


/*.ek-h1,.ek-h2,.ek-h3,.ek-h4,.ek-h5 {
 font-family: 'Poppins';
}*/

* {
    font-family: 'Poppins', sans-serif;
}


/*  Heading Tags   */

.ek-h1 {
    font-size: 42px;
}

.ek-h2 {
    font-size: 36px;
}


/* font weight and line-height for ek-h1 and ek-h2*/

.ek-h1,
.ek-h2 {
    line-height: 48px;
}


/*style for Title H3 use Sub Heading*/

.ek-h3 {
    font-size: 28px;
    line-height: 42px;
}


/*style for Title H4 use Content Landing Page*/

.ek-h4 {
    font-size: 24px;
}


/*style for Title H5 use Content Heading*/

.ek-h5 {
    font-size: 20px;
}


/*style for body text*/

.ek-para-body-txt {
    font-size: 15px;
}


/*style for Footer Credit*/

.ek-footer-credit {
    font-size: 12px;
}


/* line height for ek-h4,ek-h5,ek-body-text & ek-footer*/

.ek-h4,
.ek-h5,
.ek-para-body-txt,
.ek-footer-credit {
    line-height: 1.5;
}


/*PARAGRAPH SPACING*/

.ek-tittle-btm-space {
    padding-bottom: 30px;
}

.ek-next-card-space {
    padding-bottom: 60px;
}

.ek-first-card-space {
    margin-top: 30px;
}


/*form design*/


/*input box space*/

.ek-next-label-space {
    padding-top: 16px!important;
}


/*form label and input box space*/

.ek-input {
    margin-top: 4px;
    border-radius: 5px;
    padding: 14px;
}

.ek-input-border {
    border: 1px solid #DBDBDB;
}


/* Focus */

.ek-input:focus,
.ek-select:focus,
.ek-textarea:focus {
    outline: none;
    background-color: #fff;
    color: #000;
    border-color: #001235;
}


/* Disabled */

.ek-input:disabled,
.ek-select:disabled,
.ek-textarea:disabled {
    background-color: #EFEFEF;
    color: #999;
    border-color: #DBDBDB;
    padding-left: 14px !important;
}


/* Error*/

.ek-form-danger,
.ek-form-danger:focus {
    color: #f0506e;
    border-color: #FF4848;
}

.ek-error-text {
    margin-top: 4px;
    color: #FF4848;
    font-size: 12px;
}


.ek-select {
    color: #8a8a8a !important;
    padding-left: 14px !important;
}


/*checkbox*/

.ek-checkbox-btn-grp input {
    display: none;
}

.ek-checkbox-btn-grp input:checked+label,
.ek-checkbox-btn-grp input:checked+label:active {
    background-color: #85b5b521;
    border: 1px solid #19181882;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
    color: #272727;
}

.ek-checkbox-hover:hover {
    background-color: #85b5b521;
    border: 1px solid #19181882!important;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
}

.ek-checkbox-btn-grp .ek-checkbox-btn {
    margin: 0;
    margin-right: 16px;
    margin-bottom: 1px;
    font-size: 0.9rem;
    border: 1px solid #c1c0c082;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
    color: #afadad;
}


/*radio button*/

.ek-radio-btn-grp input[type="radio"] {
    display: none;
}

.ek-radio-btn-grp input[type="radio"]:checked+label,
.ek-radio-btn-grp input[type="radio"]:checked+label:active {
    background-color: #85b5b521;
    border: 1px solid #19181882;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
    color: #272727;
}

.ek-radio-btn-grp .ek-radio-btn {
    margin: 0;
    margin-right: -5px;
    margin-bottom: 1px;
    font-size: 0.9rem;
    border: 1px solid #c1c0c082;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
    color: #afadad;
}


/*for select box*/


/*the container must be positioned relative:*/

.ek-custom-select {
    position: relative;
    width: 325px;
}

.ek-custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

.ek-select-selected {
    background-color: white;
    border: 1px solid #dad8d8;
}


/*style the arrow inside the select element:*/

.ek-select-selected:after {
    position: absolute;
    content: "";
    top: 25px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
}


/*point the arrow upwards when the select box is open (active):*/

.ek-select-selected.ek-select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 20px;
}


/*style the items (options), including the selected item:*/

.ek-select-items div,
.ek-select-selected {
    color: #000;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
    margin-top: 4px;
}


/*style items (options):*/

.ek-select-items {
    position: absolute;
    background-color: white;
    /* top: 100%; */
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 8px;
    box-shadow: 1px 3px 3px #efefef;
    border: 1px solid #efefef;
}


/*hide the items when the select box is closed:*/

.ek-select-hide {
    display: none;
}

.ek-select-items div:hover,
.ek-same-as-selected {
    background-color: rgb(239, 245, 245);
}


/*dropdown with checkbox*/

.ek-check-dropdown {
    position: relative;
    margin-bottom: 20px;
    margin-top: 4px;
}

.ek-check-dropdown .ek-check-dropdown-list {
    padding: 25px 20px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid #efefef;
    box-shadow: 1px 3px 3px #efefef;
    max-height: 223px;
    overflow-y: auto;
    background: #fff;
    display: none;
    z-index: 10;
    margin-top: 8px;
}

.ek-check-dropdown .ek-dropdown-checkbox {
    opacity: 0;
    transition: opacity .2s;
}

.ek-check-dropdown .ek-check-dropdown-label {
    display: block;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 14px;
    cursor: pointer;
    position: relative;
}

.ek-check-dropdown .ek-check-dropdown-label:before {
    content: "\f0d7";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .25s;
    transform-origin: center center;
}

.ek-check-dropdown.ek-dropdown-open .ek-check-dropdown-list {
    display: block;
}

.ek-check-dropdown.ek-dropdown-open .ek-dropdown-checkbox {
    transition: 2s opacity 2s;
    opacity: 1;
}

.ek-check-dropdown.ek-dropdown-open .ek-check-dropdown-label:before {
    transform: translateY(-50%) rotate(-180deg);
}

.ek-dropdown-checkbox {
    margin-bottom: 20px;
}

.ek-dropdown-checkbox:last-child {
    margin-bottom: 0;
}

.ek-dropdown-checkbox .ek-dropdown-checkbox-custom {
    display: none;
}

.ek-dropdown-checkbox .ek-dropdown-checkbox-custom-label {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.ek-dropdown-checkbox .ek-dropdown-checkbox-custom+.ek-dropdown-checkbox-custom-label:before {
    content: '';
    background: transparent;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    text-align: center;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    margin-top: -2px;
}

.ek-dropdown-checkbox .ek-dropdown-checkbox-custom:checked+.ek-dropdown-checkbox-custom-label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4px;
    height: 4px;
    padding: 2px;
    transform: rotate(45deg);
    text-align: center;
    border: solid #000;
    border-width: 0 2px 2px 0;
}

.ek-dropdown-checkbox .ek-dropdown-checkbox-custom-label {
    line-height: 16px;
    font-size: 16px;
    margin-right: 0;
    margin-left: 0;
    color: black;
}


/*button*/


/*large/medium/small style*/

.ek-lg-def-btn,
.ek-md-def-btn,
.ek-sm-def-btn,
.ek-lg-icon-def-btn {
    border: 1px solid #001235;
    background-color: #001235;
}

.ek-lg-def-btn,
.ek-lg-active-btn,
.ek-lg-load-btn,
.ek-lg-disable-btn,
.ek-md-def-btn,
.ek-md-active-btn,
.ek-md-load-btn,
.ek-md-disable-btn,
.ek-sm-def-btn,
.ek-sm-active-btn,
.ek-sm-load-btn,
.ek-sm-disable-btn,
.ek-lg-icon-def-btn,
.ek-lg-icon-active-btn,
.ek-lg-icon-load-btn,
.ek-lg-icon-disable-btn,
.ek-secon-def-btn,
.ek-secon-active-btn,
.ek-secon-disable-btn,
.ek-secon-icon-def-btn,
.ek-secon-icon-active-btn,
.ek-secon-icon-disable-btn,
.ek-emphasis-def-btn,
.ek-emphasis-active-btn,
.ek-cancle-btn,
.ek-dropdown-btn,
.ek-dropdown-icon-btn:focus {
    outline: none;
}
.ek-cursor {
    cursor: pointer;
}

.ek-lg-def-btn:hover,
.ek-md-def-btn:hover,
.ek-sm-def-btn:hover,
.ek-lg-icon-def-btn:hover {
    border: 1px solid #001B50;
    background-color: #001B50;
    /*box-shadow: 0 7px 14px 0 rgba(0,0,0,0.2), 0 -5px 9px 0 rgba(0,0,0,0.19);*/
    box-shadow: 0px 0px 5px #001235;
}

.ek-lg-active-btn,
.ek-lg-load-btn,
.ek-md-active-btn,
.ek-md-load-btn,
.ek-sm-active-btn,
.ek-sm-load-btn,
.ek-lg-icon-active-btn,
.ek-lg-icon-load-btn {
    border: 1px solid #00359C;
    background-color: #00359C;
}

.ek-lg-disable-btn,
.ek-md-disable-btn,
.ek-sm-disable-btn,
.ek-lg-icon-disable-btn,
.ek-secon-disable-btn,
.ek-secon-icon-disable-btn {
    border: 1px solid #CFCFCF;
    background-color: #CFCFCF;
}

.ek-lg-def-btn,
.ek-lg-active-btn,
.ek-lg-load-btn,
.ek-lg-disable-btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 150px;
}


/*medium button style*/

.ek-md-def-btn,
.ek-md-active-btn,
.ek-md-load-btn,
.ek-md-disable-btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    width: 100px;
}


/* small button style*/

.ek-sm-def-btn,
.ek-sm-active-btn,
.ek-sm-load-btn,
.ek-sm-disable-btn {
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    width: 80px;
}


/* large plus icon button style*/

.ek-lg-icon-def-btn,
.ek-lg-icon-active-btn,
.ek-lg-icon-load-btn,
.ek-lg-icon-disable-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    width: 160px;
}

.ek-lg-btn-icon {
    padding: 0px 10px 0px 0px;
}

/*secondary button*/

.ek-secon-def-btn,
.ek-secon-icon-def-btn {
    border: 1px solid #001235;
    background-color: transparent;
}

.ek-secon-def-btn,
.ek-secon-active-btn,
.ek-secon-disable-btn,
.ek-secon-icon-def-btn,
.ek-secon-icon-active-btn,
.ek-secon-icon-disable-btn {
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #001235;
    width: 150px;
}

.ek-secon-icon-def-btn:hover,
.ek-secon-def-btn:hover {
    background-color: #001B5003;
}

.ek-secon-icon-def-btn:focus,
.ek-secon-def-btn:focus {
    border: 1px solid #001235;
    background-color: #00123510;
}

.ek-secon-active-btn,
.ek-secon-icon-active-btn {
    border: 1px solid #001235;
    background-color: #00123510;
}

.ek-secon-disable-btn,
.ek-secon-icon-disable-btn {
    color: #00123582;
}


/*secondary button with icon*/

.ek-secon-icon-def-btn,
.ek-secon-icon-active-btn,
.ek-secon-icon-disable-btn {
    width: 178px;
}


/*low emphasis button*/

.ek-emphasis-def-btn,
.ek-emphasis-active-btn,
.ek-cancle-btn {
    color: #001235;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
}

.ek-emphasis-def-btn:hover {
    color: #001B50;
}

.ek-emphasis-active-btn {
    color: #00359C;
}


/*cancle button*/

.ek-cancle-btn {
    color: #7D7D7D;
}


/*dropdown button*/

.ek-dropdown-btn {
    padding: 7px;
    font-size: 14px;
    width: 130px;
}

.ek-dropdown-icon-btn {
    margin: 6px;
    padding: 7px 13px 7px 13px;
}

.ek-dropdown-icon-btn,
.ek-dropdown-btn {
    border: 1px solid #a2f5f5;
    border-radius: 4px;
    background-color: #a2f5f5;
    font-weight: 600;
    color: #001235;
}

.ek-dropdown-icon-btn:focus {
    border: 1px solid #001235;
}

.ek-dropdown-btn:focus {
    border: 1px solid #001235;
}

.ek-dropdown {
    position: relative;
    display: inline-block;
}


/*icon button*/

.ek-icon ul li {
    display: inline;
    list-style: none;
    margin: 20px;
}

@media screen and (min-width: 768px)and (max-width: 991px) {
     /*style for Title H1 use Landing Page*/
    .ek-h1 {
        font-size: 30px;
    }
    /*style for Title H2 use Page Heading*/
    .ek-h2 {
        font-size: 24px;
    }
    /* font weight and line-height for ek-h1 and ek-h2*/
    .ek-h1,
    .ek-h2 {
        line-height: 1.5;
    }
    /*style for Title H3 use Sub Heading*/
    .ek-h3 {
        font-size: 20px;
        line-height: 1.5;
    }
    /*style for Title H4 use Content Landing Page*/
    .ek-h4 {
        font-size: 20px;
    }
    /*style for Title H5 use Content Heading*/
    .ek-h5 {
        font-size: 18px;
    }
    /*PARAGRAPH SPACING*/
    .ek-tittle-btm-space {
        padding-bottom: 30px;
    }
    .ek-next-card-space {
        padding-bottom: 60px;
    }
    .ek-first-card-space {
        margin-top: 30px;
    }

}

@media screen and (max-width: 720px) {
     /*style for Title H1 use Landing Page*/
    .ek-h1 {
        font-size: 30px;
    }
    /*style for Title H2 use Page Heading*/
    .ek-h2 {
        font-size: 24px;
    }
    /* font weight and line-height for ek-h1 and ek-h2*/
    .ek-h1,
    .ek-h2 {
        line-height: 1.5;
    }
    /*style for Title H3 use Sub Heading*/
    .ek-h3 {
        font-size: 20px;
        line-height: 1.5;
    }
    /*style for Title H4 use Content Landing Page*/
    .ek-h4 {
        font-size: 20px;
    }
    /*style for Title H5 use Content Heading*/
    .ek-h5 {
        font-size: 18px;
    }
    /*PARAGRAPH SPACING*/
    .ek-tittle-btm-space {
        padding-bottom: 30px;
    }
    .ek-next-card-space {
        padding-bottom: 60px;
    }
    .ek-first-card-space {
        margin-top: 30px;
    }
        .ek-para-body-txt {
    font-size: 16px;
}
}

@media screen and (max-width: 480px) {
     /*style for Title H1 use Landing Page*/
    .ek-h1 {
        font-size: 30px;
    }
    /*style for Title H2 use Page Heading*/
    .ek-h2 {
        font-size: 24px;
    }
    /* font weight and line-height for ek-h1 and ek-h2*/
    .ek-h1,
    .ek-h2 {
        line-height: 1.5;
    }
    /*style for Title H3 use Sub Heading*/
    .ek-h3 {
        font-size: 20px;
        line-height: 1.5;
    }
    /*style for Title H4 use Content Landing Page*/
    .ek-h4 {
        font-size: 20px;
    }
    /*style for Title H5 use Content Heading*/
    .ek-h5 {
        font-size: 18px;
    }
    /*PARAGRAPH SPACING*/
    .ek-tittle-btm-space {
        padding-bottom: 30px;
    }
    .ek-next-card-space {
        padding-bottom: 60px;
    }
    .ek-first-card-space {
        margin-top: 30px;
    }
    .ek-para-body-txt {
    font-size: 16px;
}

}

@media screen and (min-width: 320px) and (max-width: 375px) {
    /*style for Title H1 use Landing Page*/
    .ek-h1 {
        font-size: 30px;
    }
    /*style for Title H2 use Page Heading*/
    .ek-h2 {
        font-size: 24px;
    }
    /* font weight and line-height for ek-h1 and ek-h2*/
    .ek-h1,
    .ek-h2 {
        line-height: 1.5;
    }
    /*style for Title H3 use Sub Heading*/
    .ek-h3 {
        font-size: 20px;
        line-height: 1.5;
    }
    /*style for Title H4 use Content Landing Page*/
    .ek-h4 {
        font-size: 20px;
    }
    /*style for Title H5 use Content Heading*/
    .ek-h5 {
        font-size: 18px;
    }
    /*PARAGRAPH SPACING*/
    .ek-tittle-btm-space {
        padding-bottom: 30px;
    }
    .ek-next-card-space {
        padding-bottom: 60px;
    }
    .ek-first-card-space {
        margin-top: 30px;
    }
}
