body {
    margin: 0;
    padding: 0;
    font-family: "Hilti Roman", Arial, Verdana, sans-serif;
    overflow-x: hidden;
}

@font-face {
    font-family: "Hilti Roman";
    src: url(../fonts/HiltiRoman.ttf) format('truetype');
}

@font-face {
    font-family: "Hilti Bold";
    src: url(../fonts/HiltiBold.ttf) format('truetype');
}


/* Common css start here */
.forMobileLogin{height:560px !important; overflow: overlay;}

.bg-gray {
    background: #F4F5F6;
}

.padding-50 {
    padding-bottom: 50px;
}

.custom-text-color {
    color: #D10024;
}

.btn-danger {
    background: #D10024;
    padding: 9px;
    border-radius: 5px;
}

.pl10{padding-left: 10px;}

.text-black {
    color: #000;
}

.hiltiBold {
    font-family: "Hilti Bold" !important;
}


/* .hiltiRoman {
    font-family: "Hilti";
} */

.custom-text-mute {
    color: #6E6E6E;
}

.btn-danger.disabled,
.btn-danger:disabled {
    background-color: #F9B0BC;
    border-color: #F9B0BC;
    color: #D10024;
}

.btn-dark {
    background-color: #000;
    border-color: #000;
    padding: 9px;
    border-radius: 5px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ACACAC !important;
}

 ::-moz-placeholder {
    /* Firefox 19+ */
    color: #ACACAC !important;
}

 :-ms-input-placeholder {
    /* IE 10+ */
    color: #ACACAC !important;
}

 :-moz-placeholder {
    /* Firefox 18- */
    color: #ACACAC !important;
}

.form-select {
    color: #ACACAC !important;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus,
.form-select:focus {
    border-color: #5a8dee;
    outline: 0;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.section-title {
    padding-bottom: 55px;
}

.btn-danger:hover span {
    width: 225%;
    height: 562.5px;
}

.btn-danger:hover span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #000;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.btn-close {
    color: #4C5564;
}

.modal-header {
    border-bottom: 1px solid #E1E4E8;
}

.modal-title {
    display: flex;
    align-items: center;
}

.modal-footer {
    border-top: 1px solid #E1E4E8;
}

.modal-footer>* {
    margin: 0;
}

.modal-footer a:hover {
    color: #D10024;
    text-decoration: underline;
    cursor: pointer;
}

.modal-content {
    border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
}

.modal-body,
.modal-header,
.modal-footer {
    padding: 20px;
}

.form-control {
    border: 1px #D4D7DE solid;
    color: #ACACAC;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 43px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.customCheckbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #D4D7DE;
    border-radius: 2px;
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    margin-top: -4px;
}

.customCheckbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid #469858;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type='checkbox'] {
    display: none;
}

.modal-backdrop {
    z-index: 99999;
}

.modal-backdrop.show {
    opacity: .8;
}

.close-msg-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #000;
    color: #fff;
    padding: 5px;
    border-radius: 15px;
    font-size: 10px;
}

.text-green {
    color: #2EB150;
}

.animation-ctn {
    margin-bottom: 15px;
}

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }
    100% {
        stroke-dashoffset: 200px
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }
    100% {
        stroke-dashoffset: 200px
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }
    100% {
        stroke-dashoffset: 0px
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
    }
    100% {
        stroke-dashoffset: 960px;
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }
    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
    }
    100% {
        stroke-dashoffset: 960px
    }
}

@keyframes colored-circle {
    0% {
        opacity: 0
    }
    100% {
        opacity: 100
    }
}

.inlinesvg .svg svg {
    display: inline
}

.icon--order-success svg polyline {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}

.icon--order-success svg circle#colored {
    -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
    animation: colored-circle 0.6s ease-in-out 0.7s backwards;
}


/* ===== Scrollbar CSS ===== */


/* Firefox */


/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

*::-webkit-scrollbar-track {
    background: #000;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: #D10024;
    border-radius: 10px;
}

.modal {
    z-index: 1010101;
}


/*keyframes*/

@keyframes run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.75);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

@keyframes movebounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes moveleftbounce {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes movescale {
    0% {
        transform: scale(.9);
    }
    50% {
        transform: scale(.8);
    }
    100% {
        transform: scale(.9);
    }
}


/* Preloader css here */

.cssloader {
    padding-top: calc(45vh - 25px);
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: #D10024;
    z-index: 101010;
}


/** loader **/

.sh1 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: #000 transparent transparent transparent;
    margin: 0 auto;
    animation: shk1 1s ease-in-out infinite normal;
}

.sh2 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent #fff transparent;
    margin: -50px auto 0;
    animation: shk2 1s ease-in-out infinite alternate;
}


/** animation starts here **/

@keyframes shk1 {
    0% {
        transform: rotate(-360deg);
    }
    100% {}
}

@keyframes shk2 {
    0% {
        transform: rotate(360deg);
    }
    100% {}
}

.lt {
    color: #fff;
    font-family: "Roboto", sans-serif;
    margin: 30px auto;
    text-align: center;
    font-weight: 100;
    letter-spacing: 10px;
}


/* Common css end here */


/* Header css start here */

/* 
/* Banner css end here */


/* Whats New css start here */

.whatsnew-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
}

.whatsnew-cardbox {
    box-shadow: 0px 0px 40px #00000029;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 20px;
    min-height: 406px;
}

.whatsnew-Image {
    position: relative;
    height: 220px;
    border-radius: 10px 10px 0px 10px;
    margin-left: 15px;
    top: -15px;
    margin-right: 13px;
    overflow: hidden;
}

.whatsnew-Image img {
    border-radius: 10px 10px 0px 10px;
    object-fit: cover;
    height: 100%;
    width: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.whatsnew-Image:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.whatsnew-Content p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    height: 48px;
}

.yellow-icon {
    color: #FFA200;
}

.whatsnew-Content a h3 {
    color: #000;
    margin-bottom: 3px;
    line-height: 1.5;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.whatsnew-Content a h3:hover {
    color: #D10024;
}

.whatsnew-Content-inner {
    padding: 0 15px;
    height: 115px;
}

.whatsnew-Image .category-text {
    color: #ffffff;
    background-color: #D10024;
    padding: 6px 10px;
}

.whatsnew-Image a {
    bottom: 20px;
    left: 15px;
}

.avatar {
    height: 40px;
    width: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.avtarWrap .avtarName h5 {
    color: #000;
    font-size: 14px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-flex;
    overflow: hidden;
    text-overflow: ellipsis;
    align-items: center;
}

.avtarWrap .avtarName {
    padding-left: 10px;
    width: 90% !important;
    flex: 0 0 auto;
}

.avtarName span.font-small {
    font-size: 12px;
}

.avtarWrap .avtarImage {
    /* width: 18%; */
    flex: 0 0 auto;
}

.media {
    padding: 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.webinarsListingDetails_desc h1,
.webinarsListingDetails_desc h2,
.webinarsListingDetails_desc h3,
.webinarsListingDetails_desc h4,
.webinarsListingDetails_desc h5,
.webinarsListingDetails_desc h6 {
    font-size: 23px;
    font-family: "Hilti Bold";
}

.hr-line hr {
    background-color: #ECF0F3;
    height: 2px;
    margin-bottom: 12px;
}

.whattopBG {
    position: absolute;
    height: 204px;
    left: 0;
    top: -125px;
    overflow: visible;
    z-index: -1;
}

.whatbottomBG {
    position: absolute;
    height: 204px;
    right: 0;
    top: -157px;
    z-index: -1;
}

.dotBG {
    position: absolute;
    height: 137px;
    left: 29%;
    bottom: 0;
    overflow: visible;
    animation: moveleftbounce 4s linear infinite;
    z-index: -1;
}

.sectionTitlewrap {
    display: flex;
    align-items: center;
    position: relative;
}

.elaringRatings {
    display: flex;
    font-size: 14px;
    color: #000;
    justify-content: center;
}

.elaringRatings .rating+.lrns {
    margin-left: 15px;
    padding-left: 15px;
}

.elaringRatings .lrns {
    position: relative;
}

.elaringRatings .rating+.lrns::before {
    display: inline-block;
}

.elaringRatings .lrns::before {
    content: "";
    width: 1px;
    height: 45px;
    background: #d2d6de;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.workshopcalender {
    color: #6E6E6E;
    font-size: 14px;
    padding: 10px 15px;
}


/* Whats New css end here */


/* Knowledge Initiatives css start here */

.knowledgeInitiatives {
    min-height: 500px;
    z-index: 99;
    position: relative;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 12%, #ffffff 12%, #ffffff 12%, #EEF2F6 12%, #EEF2F6 12%, #EEF2F6 70%, #ffffff 70%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 12%, #ffffff 12%, #ffffff 12%, #EEF2F6 12%, #EEF2F6 12%, #EEF2F6 70%, #ffffff 70%, #ffffff 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 12%, #ffffff 12%, #ffffff 12%, #EEF2F6 12%, #EEF2F6 12%, #EEF2F6 70%, #ffffff 70%, #ffffff 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
    padding: 150px 0 0 0;
}

.knowledgeInitiatives:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -105px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1367' height='170' viewBox='0 0 1367 170'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_974' data-name='Rectangle 974' width='1367' height='170' transform='translate(1779 5406)' fill='%23eef2f6'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-2'%3E%3Cpath id='Path_3013' data-name='Path 3013' d='M1363,2428.285l-838.16,72.557L-4,2350v590H1363Z' transform='translate(1783 3056)' fill='%23eef2f6'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Mask_Group_46' data-name='Mask Group 46' transform='translate(-1779 -5406)' clip-path='url(%23clip-path)'%3E%3Cg id='Mask_Group_45' data-name='Mask Group 45' clip-path='url(%23clip-path-2)'%3E%3Crect id='Rectangle_973' data-name='Rectangle 973' width='1366' height='203' transform='translate(1779 5406)' fill='%23eef2f6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: top center;
    background-size: contain;
}

.knowledgeBoxList,
.knowledgeBoxListother {
    background: #fff;
    box-shadow: 0px 0px 10px #84848429;
    border-radius: 10px;
    padding: 14px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.knowledgeBoxList::before {
    content: "";
    width: 3px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 0;
    background-color: #D10024;
}

.knowledgeInitiatives .knowledgeBoxList .knowledgeBox-Image {
    width: 38%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 190px;
}

.speakersList-slide .speakersList-title {
    font-size: 23px;
}

.knowledgeInitiatives .knowledgeBoxList .knowledgeBox-Image img {
    border-radius: 6px;
    object-fit: cover;
    height: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    width: 100%;
}

.knowledgeBox-Image:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.knowledgeBoxListother::before {
    content: "";
    width: 3px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 0;
    background-color: #D10024;
}

.knowledgeBoxList-wrap {
    position: relative;
    margin-bottom: 50px;
}

.knowledgeBoxBottom {
    background-color: #fff;
    margin: 0 20px 0 20px;
    text-align: center;
    padding: 7.5px 0;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: -1;
    transition: all ease .4s;
    box-shadow: 0px 0px 10px #84848429;
}

.knowledgeBoxList:hover {
    -webkit-box-shadow: 0 4px 9px rgb(34 34 34 / 10%);
    box-shadow: 0 4px 9px rgb(34 34 34 / 10%);
}

.knowledgeInitiatives .knowledgeBoxList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.knowledgeBox-Image .category-text,
.knowledgeBox-Imageother .category-text {
    color: #ffffff;
    background-color: #D10024;
    padding: 6px 10px;
}

.knowledgeInitiatives .knowledgeBoxList .knowledgeBox-Content {
    padding-left: 20px;
    width: 62%;
}

.knowledgeInitiatives .knowledgeBoxList .knowledgeBox-Content a h3,
.knowledgeInitiatives .knowledgeBoxListother .knowledgeBox-Contentother a h3 {
    color: #000;
    margin-bottom: 3px;
    line-height: 1.5;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.knowledgeInitiatives .knowledgeBoxList .knowledgeBox-Content a h3:hover,
.knowledgeInitiatives .knowledgeBoxListother .knowledgeBox-Contentother a h3:hover {
    color: #D10024;
}

.knowledgeBox-Imageother {
    position: relative;
    height: 220px;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.knowledgeBox-Image a,
.knowledgeBox-Imageother a {
    bottom: 20px;
    left: 15px;
}

.knowledgeBox-Imageother img {
    border-radius: 6px;
    object-fit: cover;
    height: 100%;
    margin-bottom: 12px;
    width: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.knowledgeBox-Imageother:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.knowledgeBox-Content p,
.knowledgeBox-Contentother p {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    height: 96px;
}

.knowledgeMiddleBox {
    text-align: center;
    position: relative;
}

.knowledgeBox-label {
    margin-top: 7px;
}

.link-with-text span {
    vertical-align: middle;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.link-with-text span i {
    font-size: 12px;
    padding-left: 3px;
}

.link-with-text:hover {
    color: #D10024;
    cursor: pointer;
}

.link-with-text:hover span {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    margin-left: 8px;
}

#Ellipse_4 {
    opacity: 0.18;
    fill: rgba(255, 255, 255, 1);
    stroke: rgba(0, 0, 0, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-dasharray: 11;
    stroke-dashoffset: 0;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_4 {
    position: absolute;
    overflow: visible;
    width: 380px;
    height: 380px;
    left: 0px;
    top: 0px;
}

#Ellipse_3 {
    opacity: 0.18;
    fill: rgba(255, 255, 255, 1);
    stroke: rgba(0, 0, 0, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_3 {
    position: absolute;
    overflow: visible;
    width: 304px;
    height: 304px;
    left: 38px;
    top: 38px;
}

#Ellipse_2 {
    opacity: 0.18;
    fill: rgba(255, 255, 255, 1);
    stroke: rgba(0, 0, 0, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-dasharray: 11;
    stroke-dashoffset: 0;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_2 {
    position: absolute;
    overflow: visible;
    width: 230px;
    height: 230px;
    left: 75px;
    top: 75px;
}

#Ellipse_1 {
    opacity: 0.18;
    fill: rgba(255, 255, 255, 1);
    stroke: rgba(0, 0, 0, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_1 {
    position: absolute;
    overflow: visible;
    width: 148px;
    height: 148px;
    left: 116px;
    top: 116px;
}

#user3 {
    opacity: 0.18;
    fill: rgba(241, 239, 239, 1);
    stroke: rgba(0, 0, 0, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.user3 {
    position: absolute;
    overflow: visible;
    width: 82px;
    height: 82px;
    left: 149px;
    top: 149px;
}

#Ellipse_5 {
    fill: rgba(0, 0, 0, 1);
    stroke: rgba(112, 112, 112, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_5 {
    position: absolute;
    overflow: visible;
    width: 10px;
    height: 10px;
    left: 126px;
    top: 139px;
}

#Ellipse_8 {
    fill: rgba(0, 0, 0, 1);
    stroke: rgba(112, 112, 112, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_8 {
    position: absolute;
    overflow: visible;
    width: 13px;
    height: 12px;
    left: 107px;
    top: 268px;
}

#Ellipse_16 {
    fill: rgba(0, 0, 0, 1);
    stroke: rgba(112, 112, 112, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_16 {
    position: absolute;
    overflow: visible;
    width: 13px;
    height: 12px;
    left: 264px;
    top: 56px;
}

#Ellipse_10 {
    fill: rgba(0, 0, 0, 1);
    stroke: rgba(112, 112, 112, 1);
    stroke-width: 1px;
    stroke-linejoin: miter;
    stroke-linecap: butt;
    stroke-miterlimit: 4;
    shape-rendering: auto;
}

.Ellipse_10 {
    position: absolute;
    overflow: visible;
    width: 14px;
    height: 14px;
    left: 28px;
    top: 74px;
}

#Ellipse_6 {
    opacity: 0.04;
    fill: rgba(0, 0, 0, 1);
}

.Ellipse_6 {
    position: absolute;
    overflow: visible;
    width: 19px;
    height: 19px;
    left: 123px;
    top: 135px;
}

#Ellipse_7 {
    opacity: 0.04;
    fill: rgba(0, 0, 0, 1);
}

.Ellipse_7 {
    position: absolute;
    overflow: visible;
    width: 26px;
    height: 26px;
    left: 100px;
    top: 261px;
}

#Ellipse_15 {
    opacity: 0.04;
    fill: rgba(0, 0, 0, 1);
}

.Ellipse_15 {
    position: absolute;
    overflow: visible;
    width: 26px;
    height: 26px;
    left: 257px;
    top: 49px;
}

#Ellipse_9 {
    opacity: 0.04;
    fill: rgba(0, 0, 0, 1);
}

.Ellipse_9 {
    position: absolute;
    overflow: visible;
    width: 28px;
    height: 30px;
    left: 21px;
    top: 67px;
}

#redBG-path {
    fill: rgba(209, 0, 36, 1);
}

.redBG-path {
    filter: drop-shadow(0px 0px 10px rgba(149, 149, 149, 0.161));
    overflow: visible;
    position: absolute;
    width: 370px;
    height: 382px;
    right: 2px;
    top: 58px;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

#redpathImg {
    filter: drop-shadow(0px 0px 10px rgba(149, 149, 149, 0.161));
    position: absolute;
    width: 370px;
    height: 355px;
    right: 20px;
    top: 49px;
    overflow: visible;
    clip-path: polygon(0 56%, 100% 0, 100% 87%, 0% 100%);
}


/* Knowledge Initiatives css end here */


/* Our partners css start here */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    height: 58px;
    object-fit: contain;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.our-partners {
    padding: 70px 0;
    position: relative;
}

.our-partners .subTitle {
    max-width: 50%;
    margin: 0 auto;
}

.partnerLeftBG {
    content: "";
    position: absolute;
    left: 0;
    background: url(../images/partnerleftBG.svg);
    width: 200px;
    height: 100%;
    top: 0;
    background-size: 100% 100%;
}

.partnerRightBG {
    content: "";
    position: absolute;
    right: 0;
    background: url(../images/partnerrightBG.svg);
    width: 200px;
    height: 100%;
    top: 0;
    background-size: 100% 100%;
}


/* Our partners css end here */


/* Footer css start here */

footer.footer {
    background: #0E0D0D;
    padding: 50px 8px 50px;
    text-align: center;
}

.footerLeft_logo {
    position: absolute;
}

.footer_menu ul li {
    list-style: none;
    margin: 0 20px;
}

.footer_menu ul li a {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Hilti Bold';
}

.footer_inner p {
    color: #5b5858;
    font-size: 14px;
    line-height: 21px;
    margin: 30px auto;
    max-width: 45%;
}

.footer_social ul li {
    margin: 0 12px !important;
}

.footer_social ul li a {
    cursor: pointer;
    display: inline-block;
}

.footer_social ul li a i {
    font-size: 20px;
    color: #fff;
}


/* Footer css end here */


/* Modal popup css start here */

.video-closebtn {
    border: none;
    position: absolute;
    right: -6px;
    top: -6px;
    color: #fff;
    background: #D10024;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 12px;
    line-height: 25px;
}


/* Login Form popup css start here */

.loginform .form-label {
    margin-bottom: 5px;
}

.loginform i,
.signupFormwrap i {
    position: absolute;
    right: 13px;
    top: 30%;
    color: #676767;
}

#loginModal .modal-footer {
    justify-content: flex-start !important;
}

.loginform .modal-footer>* {
    margin: 0;
}

.loginform .modal-footer .text-sm {
    color: #5B5E63;
}


/* Modal popup css end here */


/* Signup Page Css start here */

.becomeMember {
    background: #F4F5F6;
    padding: 50px 0;
}

.signupWrap,
.signupFormwrap {
    background: #fff;
    box-shadow: 0px 0px 6px #E2E2E229;
    border-radius: 11px;
    padding: 20px;
}

.signupHeading {
    font-family: 'Hilti Bold';
    font-size: 25px;
    line-height: 29px;
}

.signupWrap .grid-template-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signupWrap .grid-gap {
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}

.signupInnercontent {
    margin-top: 2rem;
}

.signupInnercontent h3 {
    margin-bottom: 4px;
    font-family: 'Hilti Bold';
    font-size: 17px;
    line-height: 29px;
}

.signupInnercontent p {
    color: #6E6E6E;
    font-size: 14px;
    line-height: 20px;
}

.signupInnercontent img {
    width: 60px;
    height: 60px;
}

.signupbottom {
    color: #5B5E63;
    font-size: 14px;
    border-top: 1px #E1E4E8 solid;
    padding-top: 15px;
}

.flex-1 {
    flex: 1 1 0%;
}

.gap-2 {
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

.signupTitle {
    color: #6E6E6E;
    font-size: 14px;
    line-height: 22px;
}

.small-text {
    font-size: 13px;
    line-height: 16px;
}

.msmall {
    font-size: 13.5px;
}

.msmall a {
    color: #0A66C2;
}

.signupWrap {
    position: sticky;
    top: 0;
}

.signupBottomcontent {
    border-top: 1px #E1E4E8 solid;
    padding-top: 30px;
    margin-top: 30px;
}

.intl-tel-input,
.iti {
    width: 100%;
}


/* Advisory member Page Css start here  */

.advisoryMember-bannerarea {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.advisoryMember-bannerarea img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.advisoryBanner-heading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='743' height='200' viewBox='0 0 743 200'%3E%3Cpath id='thisisengineering-raeng-0LnH9j9Wirw-unsplash' d='M0,116.667,743,182.6,663,316.667H0Z' transform='translate(0 -116.667)' fill='%23d3041e'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    z-index: 9999;
    width: 668px;
    height: 180px;
}

.advisoryBanner-headingWrap {
    padding: 0 30px;
    margin-top: 27px;
    margin-right: 70px;
    color: #fff;
    padding-right: 40px;
    padding-top: 20px;
}

.advisoryBanner-headingWrap h3 {
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Hilti Bold';
    font-size: 34px;
    line-height: 60px;
}

.advisoryBanner-headingWrap p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 27px;
}

.advisoryMember {
    padding: 50px 0;
}

.member-details h3 {
    white-space: normal;
    font-family: Hilti bold;
    font-style: normal;
    font-size: 25px;
    color: rgba(209, 0, 36, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-details h6 {
    white-space: normal;
    font-family: Hilti bold;
    font-style: normal;
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
}

.member-details p {
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    color: rgba(110, 110, 110, 1);
}

.member-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.member-photo img {
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.carousel-caption p {
    color: #fff !important;
}

.member-box {
    margin: 25px 0 60px;
}

.memberDetailsModal .modal-title {
    font-family: Hilti bold;
    font-style: normal;
    font-size: 20px;
    color: #000000;
}

#memberSingle-Bg {
    fill: rgba(209, 0, 36, 1);
}

.memberSingle-Bg {
    width: 265px;
    height: 265px;
}

.memberDetailsBody {
    margin-top: 20px;
}

.memberSingle-avtar img {
    position: absolute;
    width: 265px;
    height: 254px;
    left: 12px;
    top: 0px;
    object-fit: cover;
}

.memberSingle-avtar::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='265' height='266' viewBox='0 0 265 266'%3E%3Cpath id='philipp-wuthrich-5n3JP9WAJTs-unsplash' d='M0,0,91.878,165.768,265,266H0Z' fill='%23d10024'/%3E%3C/svg%3E%0A");
    display: block;
    width: 265px;
    height: 266px;
}

.memberSingle-avtar {
    width: 265px;
    margin: 0 auto 30px;
    position: relative;
}

.memberSingleContent {
    border-bottom: 1px #E1E4E8 solid;
    padding-bottom: 20px;
    position: relative;
}

.memberSingle-name h3 {
    white-space: normal;
    font-family: Hilti bold;
    font-style: normal;
    font-size: 25px;
    color: #d10024;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.memberSingle-name h6 {
    white-space: normal;
    font-family: Hilti bold;
    font-size: 15px;
    color: #000000;
}

.memberWorkexperience h3,
.memberHighlightsWork h3 {
    white-space: normal;
    font-family: Hilti bold;
    font-size: 18px;
    color: #000000;
}

.memberWorkexperience {
    padding: 30px 0;
}

.memberWorkexperience-item {
    display: flex;
    position: relative;
}

.memberWorkexperience-dot {
    width: 3px;
    height: 3px;
    background-color: #fff;
    border: 7px solid #d10024;
    border-radius: 50%;
    box-sizing: content-box;
    flex-shrink: 0;
    margin-top: 11px;
}

.memberWorkexperience-dot::after {
    content: "";
    width: 1px;
    bottom: 0;
    position: absolute;
    top: 30px;
    left: 8px;
    border-right: 1px dashed #d10024;
}

.memberWorkexperience-dot::before {
    content: "";
    width: 1px;
    position: absolute;
    top: 1px;
    height: 7px;
    left: 8px;
    border-right: 1px dashed #d10024;
}

.memberWorkexperience-item:first-child .memberWorkexperience-dot:before {
    content: none;
}

.memberWorkexperience-item:last-child .memberWorkexperience-dot:after {
    content: none;
}

.memberWorkexperience-name {
    font-size: 16px;
    font-weight: 600;
}

.memberWorkexperience-company {
    font-family: Hilti bold;
    font-size: 15px;
    color: rgba(86, 86, 86, 1);
}

.memberWorkexperience-about {
    line-height: 20px;
    margin-top: 12px;
    font-family: Hilti bold;
    font-size: 14px;
    color: rgba(136, 136, 136, 1);
}

.memberWorkexperience-aboutContent h3 {
    white-space: normal;
    font-family: Hilti bold;
    font-size: 25px;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.memberWorkexperience-aboutContent p {
    text-align: left;
    font-size: 14px;
    color: #6e6e6e;
    line-height: 20px;
}

.memberWorkexperience-aboutContent p+p {
    margin-bottom: 20px;
}

.memberAboutWrap {
    padding-left: 25px;
    border-left: 1px #B8B8B8 dashed;
    height: 100%;
}

.memberHighlightsWork {
    margin-top: 30px;
}

ul.highlightWork {
    margin: 2em 0;
}

ul.highlightWork li {
    margin: 1em;
    margin-left: 3em;
    line-height: 20px;
    font-size: 14px;
    color: #000;
}

ul.highlightWork li:before {
    content: '\e903';
    font-family: 'icomoon';
    float: left;
    margin-left: -1.5em;
    color: #D10024;
    font-size: 20px;
    margin-top: 4px;
}

.highlightWork span {
    color: rgba(67, 67, 67, 1);
    font-weight: normal;
}

section.hero img {
    min-height: 200px;
    max-height: 500px;
    object-fit: cover;
}

.custom_img{
    height:300px;
    width: 100%;
    object-fit: fill;
    @media(max-width: 991px) {
      height: 200px !important;
    }
  }
/* Webinars Listing Page Css start here  */

.webinarsListing {
    padding: 40px 0;
}

.webinarsListing-cardbox {
    box-shadow: 0px 0px 40px #00000029;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 35px;
    min-height: 268px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px transparent solid;
}

.webinarsListing-cardbox:hover {
    background: #f8fafb;
    box-shadow: none;
    border: 1px #ECF0F3 solid;
}

.webinarsListingWrap {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 20px;
    padding-bottom: 5px;
}

.webinarsListing-Image {
    width: 38%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 175px;
}

.webinarsListing-Content {
    padding-left: 20px;
    width: 62%;
}

.webinarsListing-Content-inner h3 {
    color: #000;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Hilti Bold';
    font-size: 17px;
    line-height: 29px;
    text-transform: capitalize;
}

.webinarsListingDetails_thumbcustom {
    height: 600px;
}

.webinarsSpeakersName .media {
    padding: 0 20px 20px;
}

.webinarsListing-Content-inner p {
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.webinarsListing-Image {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.webinarsListing-Image:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.webinarsListing-Image img {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.webinarsListing-cardbox:hover .hr-line hr {
    background-color: #d2d7db;
    height: 1px;
}


/* Webinars Listing Details Page Css start here  */

.webinarsListingDetails_title {
    font-weight: 500;
    font-size: 28px;
    line-height: 46px;
    transition: 0.3s;
    font-family: Hilti bold;
}

.webinarsListingDetails_desc {
    margin-bottom: 30px;
}

.webinarsListingDetails_desc p img {
    width: 100%;
}

.webinarsListingDetails_thumb {
    height: 450px;
    overflow: hidden;
}

.webinarsListingDetails_thumb img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.webinarsListingDetails_thumb {
    margin-bottom: 25px;
}

.webinarsListingDetails_meta {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    margin-top: 20px;
    display: flex;
}

.webinarsListingDetails_meta li {
    position: relative;
}

.webinarsListingDetails_meta li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #595954;
    transition: 0.3s;
}

.webinarsListingDetails_meta li:not(:first-child)::before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 1px;
    height: 100%;
    background-color: #E0E0E0;
}

.webinarsListingDetails_meta li:not(:first-child) {
    margin-left: 20px;
}

.speakersList h2,
.comments-area h2,
.comment-form h2 {
    font-weight: 500;
    font-size: 25px;
    line-height: 46px;
    transition: 0.3s;
    font-family: Hilti bold;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.speakersList-slide {
    background: #fff;
    margin: 20px 15px 30px;
    border-radius: 15px;
    /* padding-top: 1px;
     box-shadow: 0px 14px 22px -9px #00000029; */
    text-align: center;
}

.speakersList-slide .speakersList-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 160px;
    width: 160px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.speakersList-slide .speakersList-img img {
    width: 100%;
    height: 100%;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
    object-fit: cover;
}

.speakersList-slide .speakersList-content {
    background: #fff;
    padding: 2px 20px 10px;
    border-radius: 15px;
}

.speakersList-content span {
    display: block;
    color: #D10024;
    font-size: 14px;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-family: Hilti bold;
}

.speakers .slick-slide {
    margin: 0px 0px;
}

.speakersList-description {
    color: #878787;
}

.comments-area {
    position: relative;
    margin-bottom: 50px;
}

.comments-area .comment-box {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dddddd;
}

.comments-area .comment {
    position: relative;
    min-height: 120px;
    padding-left: 120px;
}

.comments-area .comment-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100px;
    width: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.comments-area .comment-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comments-area .comment-box .text {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 10px;
}

.comments-area .comment-box .reply-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    color: #D10024;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.comments-area .comment-box .name {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
    margin-right: 10px;
}

.comments-area .comment-box .date {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    /* color: #9b9b9b; */
    color: #D10024;
    font-weight: 700;
}

.comments-area .comment-box .reply-btn i {
    margin-left: 10px;
}

.comments-area .comment-box.reply-comment {
    margin-left: 100px;
}

.comment-form {
    position: relative;
}

.comment-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group textarea,
.comment-form .form-group select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    font-size: 14px;
    color: #878787;
    line-height: 28px;
    font-weight: 400;
    padding: 10px 20px;
    /* background-color: #f5f5f5; */
    background: #e9ecef;
    border: 1px solid #f5f5f5;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 5px;
}

.comment-form .form-group textarea {
    height: 190px;
    resize: none;
}

.comment-form .form-group input[type="submit"],
.comment-form .form-group button {
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 30px;
    font-weight: 500;
    cursor: pointer;
}

.comments-area a.arrowDiv {
    background: #fff;
    position: absolute;
    right: 5px;
    text-align: center;
    transition: background 0.5s ease 0s;
    width: 32px;
    height: 32px;
    line-height: 32px;
    color: #000;
    font-size: 30px;
    top: 7px;
    border: 1px #000 solid;
    border-radius: 3px;
}

.comments-area .comment-box:last-child {
    border-bottom: none;
}

.speakers {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 30px;
}

.comments-area h2 {
    background: #000;
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 20px;
}


/* Breadcrumb password Page Css start here  */

.breadcrumb {
    padding: 0.75rem 1rem;
    margin-bottom: 10px;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.breadcrumb-item.active {
    color: #D10024;
}

.breadcrumb-item a:hover {
    color: #D10024;
}


/* Reset password Page Css start here  */

.resetpasswordWrap {
    padding: 30px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
}

.resetbottom {
    color: #5B5E63;
    font-size: 14px;
    border-top: 1px #E1E4E8 solid;
    padding-top: 15px;
}

.resetbottom i {
    position: relative;
    font-size: 20px;
    right: 0;
    top: 3px;
    color: #000;
}

.resetbottom a:hover i {
    color: #0a58ca;
}

.resetHeader {
    text-align: center;
    padding-bottom: 30px;
}


/* Pagination css start here */

.pagination {
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    margin-top: 20px;
}

.pagination__number {
    line-height: 40px;
    text-decoration: none;
    display: inline-block;
    color: #000000;
    background: #EFEEEE;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
}

.pagination .pagination__item:first-child .pagination__number,
.pagination .pagination__item:last-child .pagination__number {
    width: 90px;
    border-radius: 24px;
    text-transform: capitalize;
}

.pagination__number:hover {
    color: #D10024;
}

.pagination__control_prev {
    margin-left: 4px;
}

.pagination .pagination__number_active {
    background-color: #000;
    color: #fff;
}

.pagination__number_active {
    font-weight: 700;
}

.pagination__control_next {
    margin-right: 4px;
}

.pagination__item {
    margin-right: 7px;
}


/* Research Paper Listing Page Css start here  */

.writerName {
    padding-left: 0;
    width: auto !important;
}

.avtarWrap .writerName h5 {
    overflow: visible;
}

.d-inherit {
    display: inherit !important;
}

.avtarWrap {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
}

.writerName i {
    background: #FFF1F3;
    color: #D10024;
    padding: 10px 10px;
    border-radius: 25px;
    margin-right: 10px;
}

.pdfOption {
    border-top: 1px solid #eeeeee;
    margin-bottom: 30px;
    padding-top: 20px;
}

.pdfOption a i.icon-eye {
    font-size: 12px;
}

.pdfpagenumber {
    padding-bottom: 10px;
    display: block;
}

.JoinOption a {
    margin-right: 5px;
}

.JoinOption {
    margin-bottom: 45px;
}

.relatedVideo {
    margin-bottom: 30px;
}

.eventGallery {
    margin-bottom: 30px;
}

.eventGallery .gallery-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.eventGallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fancybox-container {
    z-index: 99999 !important;
}

.eventGallery .prev-arrow {
    top: 36%;
    left: -1px;
}

.eventGallery .next-arrow {
    top: 36%;
    right: 0%;
}

.eventGallery button {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    background-color: #fff;
    font-size: 30px;
    box-shadow: 0px 0px 10px #84848429;
    line-height: 40px;
    padding: 0 2px;
}

#the-canvas {
    box-shadow: 0px 0px 20px #84848429;
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
}

.media .post-group {
    width: 75%;
    flex: 0 0 auto;
}

.pdfVisibleSection {
    position: relative;
    text-align: center;
}

.pdfVisibleSection button {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    background-color: #D10024;
    font-size: 30px;
    box-shadow: 0px 0px 10px #84848429;
    line-height: 40px;
    padding: 0 2px;
    color: #fff;
}

.pdfVisibleSection .pdfarrow-left {
    top: 36%;
    left: -18px;
}

.pdfVisibleSection .pdfarrow-right {
    top: 36%;
    right: -18px;
}


/* About us css start here */

.aboutUs {
    padding: 50px 0;
    padding-bottom: 70px;
}

.aboutUs .subHeading {
    line-height: 45px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.aboutUs .about-image-gallery {
    position: relative;
    padding: 0px 0 65px 30px;
}

.aboutUs .about-image-gallery img {
    border-radius: 10px;
}

.aboutUs .about-image-gallery .main-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.aboutUs_ourmission {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.aboutUs_ourvision {
    padding: 70px 0;
}

.aboutUs_ourvision .subHeading,
.aboutUs_ourmission .subHeading {
    /* font-size: 22px;*/
    line-height: 45px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.innerAbout {
    margin-top: 30px;
}

.aboutUs .main-img-1 {
    width: 390px;
    height: 390px;
    overflow: hidden;
}

.aboutUs .main-img-2 {
    width: 230px;
    height: 230px;
    overflow: hidden;
}

.about-image-gallery img {
    object-fit: cover;
    width: 100%;
}

.aboutUs_ourmission .mobile-mb-30 {
    margin-bottom: 30px;
}

.aboutUs_ourmission .section-title {
    padding-bottom: 0;
}

.aboutUs_ourvision .about-image-gallery {
    height: 370px;
    overflow: hidden;
}

.aboutUs_ourvision .about-image-gallery img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.aboutUs_ourmission .mission-img {
    height: 370px;
    overflow: hidden;
}

.aboutUs_ourmission .mission-img img {
    height: 100%;
    width: 100%;
}

.whatsnew-section .dotBG {}

.shape_img img {
    width: inherit !important;
    object-fit: inherit !important;
}


/* Contact us css start here */

.contactEmailWrap {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contactEmailWrap i {
    color: #D10024;
    font-size: 45px;
}

.contactEmailWrap .margin-25px-bottom {
    margin-bottom: 25px;
}


/* CMS Pages css start here */

.cmsPage {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.cmsPage .subHeading {
    font-family: 'Hilti Bold';
    font-size: 30px;
    line-height: 60px;
}

.cmspagesWrap p {
    color: #6E6E6E;
}

.head-Order .head-list {
    font-size: 20px;
    font-weight: 600;
}

.head-Order .head-list .sub-list {
    font-size: 17px;
    font-weight: 100;
    padding: 0px;
    padding-top: 1%;
}

.head-Order .head-list .sub-list li {
    font-weight: 600;
    text-decoration: underline;
    position: relative;
}

.head-Order .head-list .sub-list li::before {
    content: "\F0766";
    font-family: "Material Design Icons";
    font-size: 10px;
    position: absolute;
    left: -20px;
    top: 5px;
}


/* Search page css start here */

.filterSection {}

.searchFilterbar {}

ul.filterList {
    display: flex;
}

ul.filterList li {
    list-style: none;
    margin-right: 0.8rem;
}

ul.filterList li button.filter-btn {
    white-space: normal;
    border-radius: 20px;
    font-family: 'Hilti Bold';
    font-size: 16px;
    line-height: 24px;
    padding: 0.4rem 1.2rem;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 30%);
    display: inline-flex;
    justify-content: center;
    position: relative;
    color: #6E6E6E;
    border: none;
    background: transparent;
}

ul.filterList li button.filter-btn.active {
    background: #D10024;
    box-shadow: none;
    color: #fff;
}

ul.filterList li button.filter-btn.active:hover {
    color: #6E6E6E;
}

ul.filterList li button.filter-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.searchfilterSection {
    padding: 12px 0;
    border-top: 1px rgba(0, 0, 0, 0.08) solid;
}

.searchfilterResults {
    padding: 25px 0 50px 0;
    background-color: #f9f9f9;
}

.searchResultsInner {
    border: 1px #ECF0F3 solid;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.searchfilterResults h6 {
    margin-bottom: 20px;
}

.moreResults {
    text-align: center;
    margin-top: 20px;
}

.moreResults a {
    color: #000;
    font-family: 'Hilti Bold';
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    border: 1px #000 solid;
    border-radius: 5px;
    padding: 10px 30px;
}

.moreResults a:hover {
    background: #000;
    color: #fff;
}

.search_titleBar {}

.search_titleBar h6 {
    font-family: 'Hilti Bold';
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0px;
    color: #000;
}

.resultItem {
    display: flex;
    font-family: Hilti bold;
}

.resultItem-img {
    width: 15%;
    height: 90px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    margin: 15px 15px 15px 0;
}

.resultItem-img img {
    object-fit: cover;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.resultTitle {
    color: #000;
    font-weight: bold;
}

.resultDate {
    color: #000;
}

.resultSecondary {
    color: #6E6E6E;
}

.resultLink {
    color: #6E6E6E;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

.resultattendees {
    color: #6E6E6E;
    font-size: 13px;
}

.resultSecondary i,
.resultattendees i {
    font-size: 17px;
    color: #D10024;
}

.resultItem-details {
    border-bottom: 1px #ECF0F3 solid;
    padding-bottom: 12px;
    padding-top: 12px;
    width: 85%;
}

.resultTitle:hover {
    color: #D10024;
}


/* E-learning page css start here */

.elearninglistrating {}

.elearninglistrating .lrns::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #d2d6de;
    position: absolute;
    left: 0;
    top: 0;
}

.elearninglistrating .lrns {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

.elearninglistrating .media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.elearninglist h3 {
    font-size: 20px;
}


/* Course Details page css start here */

ul.course_lists {
    padding: 0;
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
}

.course_lists li {
    padding: 12px 15px;
    background: #f9f9f9;
    /* border-bottom: 1px solid #ebe8e8; */
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
    border-radius: 4px;
}

ul.course_lists li:before {
    content: "\F06D0";
    width: 30px;
    height: 30px;
    font-family: "Material Design Icons";
    background: rgba(76, 175, 80, 0.12);
    right: 15px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
}

.course_lists_title {
    margin-right: 32px;
    font-size: 14px;
    color: #000;
}

.custom-text-success {
    color: #4caf50;
}

.course_lists .customCheckbox {
    position: relative;
}

.course_lists .customCheckbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.course_lists .customCheckbox input:checked+label:before {
    background: #4caf50;
    border: none;
}

.courseheading-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.courseheading-title button {
    padding: 6px 9px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(0.75) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.course-curriculam .course-lesson ul li {
    line-height: 26px;
    padding: 14px 22px;
    border-bottom: 1px solid #E1E4E8;
}

.course-curriculam .accordion-body {
    padding: 0;
}

.course-curriculam .course-lesson ul li:first-child {
    border-top: 1px solid #E1E4E8;
}

.course-curriculam .accordion-item .accordion-button {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    background-color: #f9f9f9;
    border: none;
    padding: 20px 30px;
    box-shadow: none;
}

.course-curriculam .accordion-item {
    margin-bottom: 25px;
    border: 1px solid #E1E4E8;
}

.course-curriculam .accordion-body .course-lesson ul li:last-child {
    border-bottom: none;
}

.course-curriculam .course-lesson ul li:hover {
    color: #D10024;
}


/* Today CSS */

.courseCurriculumList .webinarsListingWrap {
    padding-bottom: 20px;
}

.courseCurriculumList {
    min-height: 100px;
}

.elearningDetailsaccordian {}

.elearningDetailsaccordian .course_lists .accordion-button {
    padding: 12px 15px;
    background-color: #f9f9f9 !important;
    border: none;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: none;
}

.elearningDetailsaccordian .course_lists .accordion-button:before {
    content: "\F06D0";
    width: 30px;
    height: 30px;
    font-family: "Material Design Icons";
    background: rgba(76, 175, 80, 0.12);
    right: 15px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
    line-height: normal;
}

.elearningDetailsaccordian .course_lists .accordion-button::after {
    content: none;
}

.elearningDetailsaccordian .course_lists .accordion-button:focus {
    box-shadow: none;
}

.elearningDetailsaccordian .accordion-item {
    margin-bottom: 8px;
}

.elearningDetailsaccordian .course_lists .accordion-button.unview:before {
    content: "\F0341";
    width: 30px;
    height: 30px;
    font-family: "Material Design Icons";
    background: #e3e3e3;
    right: 15px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #959090;
}

.elearningDetailsaccordian .accordion-item {
    border: none;
}

.elearningDetailsaccordian .customCheckbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #e3e3e3;
    border: 1px solid #e3e3e3;
}

.speakerbadge {
    background: #f9d5db;
    color: #d10024;
    padding: 0px 5px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 3px;
    height: 15px;
    display: inline-block;
}

ul.speakersListItem {}

ul.speakersListItem li {
    padding: 10px 15px;
    border-bottom: 1px solid #ECF0F3;
    display: flex;
    align-items: center;
}

ul.speakersListItem li:last-child {
    border-bottom: none;
}

ul.speakersListItem li img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

ul.speakersListItem li h1 {
    margin-left: 10px;
    font-weight: 550;
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
}

ul.speakersListItem li p {
    margin-left: 70px;
    margin-top: 0px;
}

.avtarName .speakerbadgeWrap:hover~.speakersListItemWrap {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.avtarName .speakersListItemWrap {
    visibility: hidden;
    position: absolute;
    background: #fff;
    min-width: 250px;
    box-shadow: 0px 0px 40px #00000029;
    border-radius: 10px;
    top: 50%;
    left: 28%;
    opacity: 0;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

.speakerbadge:hover {
    cursor: pointer;
}

.homeSpeaker .speakersListItemWrap {
    min-width: 215px;
    top: 0%;
    left: 23%;
    margin-top: 45px;
}

.homeSpeaker {
    position: relative;
}

.page_404 {
    padding: 100px 0;
    background: #F4F5F6;
}

.page_404 img {
    width: 100%;
}

.four_zero_four_bg h1 {
    font-size: 190px;
    font-weight: 800;
    color: #000;
}

.four_zero_four_bg h3 {
    font-size: 80px;
}

.link_404 {
    color: #fff;
    padding: 10px 20px;
    background: #D10024;
    margin: 20px 0;
    display: inline-block;
    border-radius: 7px;
}

.link_404:hover {
    color: #fff !important;
}

.pageWrap {
    background: #fff;
    box-shadow: 0px 0px 6px #e2e2e229;
    border-radius: 11px;
    padding: 20px;
}


/* My Dashboard Css Start Here */

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 25px auto;
    margin-bottom: 15px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 15px;
    z-index: 1;
    bottom: 10px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f030";
    font-family: "FontAwesome";
    color: #D10024;
    position: absolute;
    top: 7px;
    left: 2px;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 14px;
}

.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    margin: 0 auto;
    /* border: 6px solid #f8f8f8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1); */
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.userprofileName h4 {
    margin: 10px 0 3px 0;
    font-size: 17px;
    font-family: 'Hilti Bold';
    text-align: center;
}

.userprofileName span {
    text-align: center;
    display: block;
    color: #6E6E6E;
}

.d-navigation ul {
    padding: 0;
    margin: 0;
}

.d-navigation ul li {
    list-style: none;
    padding: 0;
}

.d-navigation ul li.active>a,
.d-navigation ul li a:hover,
.d-navigation ul li a:focus {
    color: #D10024 !important;
    background: #fff1f3;
}

.d-navigation ul li a {
    width: 100%;
}

.d-navigation ul li a {
    padding: 3px 0;
    color: #000;
    font-size: 14px;
    border-radius: 0.3rem;
    padding: 10px 15px;
    display: inline-block;
    font-weight: 600;
}

.d-navigation ul li a i {
    margin-right: 10px;
}

.userprofileName {
    margin-bottom: 20px;
}

.contentboxHead h5 {
    line-height: 22px;
    font-size: 20px;
    font-family: 'Hilti Bold';
}

.content-cardbox {
    box-shadow: 0px 0px 6px #e2e2e229;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 20px;
    min-height: 150px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.content-cardboxWrap {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 15px;
    padding-bottom: 5px;
}

.content-Image {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.content-Image {
    width: 18%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 70px;
}

.content-Image img {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.content-ContentBox {
    padding-left: 15px;
    width: 82%;
}

.content-ContentBoxinner p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    font-size: 13px;
}

.content-ContentBoxinner h3 {
    color: #000;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Hilti Bold';
    font-size: 17px;
    line-height: 29px;
    text-transform: capitalize;
}

.contentmedia {
    padding: 0px 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contentmedia .post-group {
    width: 100%;
    flex: 0 0 auto;
}

.contentmedia .writerName i {
    display: inline-block;
    margin-right: 4px;
}

.contentCourse {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #212529;
}

.contentCourse .lrns {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}

.contentCourse .lrns::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #d2d6de;
    position: absolute;
    left: 0;
    top: 0;
}

.userProfile {
    background: #F4F5F6;
    padding: 50px 0;
}

.venueAddress {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.knWebinars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 14px;
    min-height: inherit;
    margin-bottom: 0;
    position: relative;
    box-shadow: 0px 0px 10px #84848429;
}

.knWebinars .whatsnew-Image {
    width: 38%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 190px;
    margin-left: 0;
    top: 0;
    margin-right: 0;
}

.knWebinars .whatsnew-Content {
    padding-left: 20px;
    width: 62%;
}

.knWebinars .whatsnew-Content-inner {
    padding: 0;
}

.knWebinars::before {
    content: "";
    width: 3px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 0;
    background-color: #D10024;
}

.knWebinars .media {
    padding: 0;
}




  .loginBtn .btn-danger:hover{height: 44px;}

 