body{
    font-family: "Lexend Deca", sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
* {
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
.ScrollStop{
    overflow: hidden;
}
p{
    color: #404040;
    font-weight: 300;
}
.container{
    width: 100%;
    max-width: 1470px;
    padding: 0 30px;
    margin: 0 auto;
}
/* .header {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 34px;
    background-color: #fff;
    padding: 20px 0;
}
.header .navbar{
    padding: 0 100px;
} */

/* Start Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
}
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    margin: 10px 0;
    border-right: 1px solid #ddd;
    padding-right: 40px;
    margin-right: 40px;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: #33005A;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    font-family: "Lexend Deca";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.main-nav ul li:last-child a {
    padding-right: 0;
}
.main-nav ul li a:hover {
    color: #000;
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}
.user-menu ul {
    padding: 0 !important;
    border: none;
    margin: 0 !important;
}
.main-nav .user-menu ul li {
    margin: 0;
}
.main-nav .user-menu ul li a.active {
    background-color: #0F7774;
    padding: 10px 5px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.main-nav .user-menu ul li a {
    font-family: "Lexend Deca";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    color: #33005A;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon {
    border-radius: 50%;
    cursor: pointer;
    color: #0F7774;
    font-size: 25px;
    display: flex;
    align-items: center;
}
.user-icon::before{
    margin: 0 !important;
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffffe6;
    color: black;
    box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    top: 56px;
}
.dropdown-content.show {
    display: block;
    width: 100%;
    width: 180px;
}
.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 22px;
    height: 3px;
    background-color: #0F7774;
    margin: 2.5px 0;
    transition: 0.4s;
    border-radius: 5px;
}
.user-menu .userProfile {
    margin-right: 20px;
}
.header .logo img {
    display: block;
}
.user-menu .userProfile span.icon-profileicon.user-icon:after {
    content: '\e80f';
    font-family: 'fontello';
    font-size: 35px;
    display: block;
    margin-left: 10px;
}
/* @media (max-width: 768px) {
    
} */
/* End Header */

.main, footer{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
footer{
    background-color: #33005A;
    padding: 30px 100px;
}
footer .footerContent {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
}
footer .footerContent .wrapperLogo p {
    color: #fff;
    font-family: "Lexend Deca";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 0 80px;
}
footer .footerContent .copyRight ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footerContent .copyRight ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Lexend Deca";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-left: 40px;
}
footer .footerContent .copyRight {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-left: 80px;
}
footer .footerContent .copyRight p{
    color: #fff;
}
/* Start Hero Section */
.main .heroSection .row{
    display: flex;
    min-height: 450px;
    position: relative;
}
.main .heroSection .row .col-4{
    width: 35%;
    background-color: #33005A;
    display: flex;
    align-items: center;
    color: #fff;
    padding-left: 160px;
    padding-right: 40px;
}

.main .heroSection .row .col-4 .contentWrapper h1{
    font-family: 'Noto Serif Condensed';
    font-size: 72px;
    font-weight: 400;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main .heroSection .row .col-4 .contentWrapper {
    max-width: 390px;
}
.main .heroSection .row .col-4 .contentWrapper p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main .heroSection .row .col-4:before {
    content: '';
    position: absolute;
    background-image: url(../images/Pattern0.png);
    width: 10%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
}
.main .heroSection .row .col-6{
    width: 65%;
}
.main .heroSection .row .col-6 img{
    width: 100%;
    min-height: 450px;
    display: block;
    object-fit: cover;
}
/* Bradcrumb Css */
.main .breadcrumb {
    list-style: none;
    display: flex;
    padding: 40px 50px;
    background-color: #F1EDE6;
    margin: 0;
    margin-left: calc(75px + 0px);
}

.main .breadcrumb-item {
    position: relative;
}

.main .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin: 0 4px;
    color: #404040;
    font-weight: 300;
}

.main .breadcrumb-item a {
    text-decoration: none;
    color: #404040;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 300;
}

.main .breadcrumb-item a:hover {
    color: #014c8c;
}

.main .breadcrumb-item.active {
    color: #555;
}

.main .breadcrumb-item.active::before {
    color: #555;
}

/* Button hover Effect */
.btnEffect{
    display: inline-block;
    transition-duration: .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #0F7774;
}
.btnEffect:hover{
    color: #0F7774 !important;
}
.btnEffect::before{
    background: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-100%) skew(-45deg);
    transform-origin: 0 0;
    transition: transform 1s cubic-bezier(.07,.51,.12,1);
    width: 150%;
    z-index: -1;
}
.btnEffect:hover:before {
    transform: translateX(0) skew(-45deg);
}
/* End Button hover Effect */


/* End bradcrumb css */

/* Category Box */
.category-container {
    margin-top: 30px;
}

.category-container h3 {
    color: #404040;
    margin: 0;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.main .videoRow .col-3 .searchWrapper .category-item input{
    width: auto;
    padding: inherit;
    cursor: pointer;
}
.category-item:last-child {
    border-bottom: none;
}

.category-item input[type="checkbox"] {
    margin-right: 10px;
}

.category-item label {
    color: #404040;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    cursor: pointer;
}

.category-item input[type="checkbox"]:checked + label {
    font-weight: 500;
    color: #000;
}
/* End Category Box */

@media screen and (min-width: 1601px) and (max-width: 1850px){
    .main .heroSection .row .col-4 h1{
        font-size: 60px;
    }
    .main .heroSection .row, .main .heroSection .row .col-6 img{
        min-height: 360px;
    }
    .main .breadcrumb {
        margin-left: calc(80px + 0px);
    }
    .main-nav ul li {
        margin-left: 10px;
    }
    .header {
        padding: 20px 40px;
    }
    footer {
        padding: 30px 40px;
    }
}
@media screen and (min-width: 1441px) and (max-width: 1600px) {
    .main-nav ul li {
        margin-left: 10px;
    }
    .header {
        padding: 20px 40px !important;
    }
}

@media screen and (max-width: 1440px) {
    .header{
        padding: 0px 30px;
    }
    footer {
        padding: 30px 30px;
    }
    .main .heroSection .row .col-4 .contentWrapper h1{
        font-size: 50px;
        max-width: 300px;
        margin: 0 0 10px;
    }
    .main .heroSection .row .col-4 .contentWrapper p {
        font-size: 14px;
        line-height: 1.5;
    }
    .main .heroSection .row .col-4 .contentWrapper {
        max-width: 390px;
    }
    .main .heroSection .row, .main .heroSection .row .col-6 img{
      min-height: 330px;
    }
    .main .breadcrumb {
        margin-left: calc(57px + 0px);
        padding: 25px 50px;
    }
    .main .heroSection .row .col-4{
        padding-left: 130px;
    }
    .main-nav ul li {
        margin-left: 0px;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1299px) {
    .main-nav ul li {
        margin-left: 0px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px){
    .main .heroSection .row .col-4 {
        padding-left: 80px;
    }
    .main .heroSection .row .col-4 .contentWrapper h1{
        font-size: 35px;
        max-width: 180px;
        line-height: 40px;
    }
    .main .heroSection .row, .main .heroSection .row .col-6 img{
      min-height: 220px;
    }
    .main .breadcrumb {
        margin-left: calc(49px + 0px);
        padding: 20px 50px;
    }
    footer .footerContent .wrapperLogo p {
        margin: 0 0 0 50px;
    }
    .main-nav ul li {
        margin-left: 10px;
    }
    .main-nav ul li a {
        padding: 15px 5px;
        font-size: 14px;
    }
    .main-nav ul {
        padding-left: 0;
        padding-right: 30px;
        margin-right: 30px;
    }
    .dropdown-content{
        top: 50px;
    }
    .header .logo img {
        max-width: 140px;
    }
    .main .headingWrapper {
        padding: 70px 0 0 !important;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    .main .heroSection .row, .main .heroSection .row .col-6 img {
        min-height: 280px;
    }
    footer .footerContent .copyRight {
        padding-left: 30px;
    }
    footer .footerContent .copyRight p {
        font-size: 14px;
    }
    .main .heroSection .row .col-4 .contentWrapper h1{
        font-size: 34px;
        line-height: 40px;
    }
    .main .headingWrapper p {
        margin-bottom: 0;
    }
    .main .heroSection .row .col-4 {
        padding-left: 70px;
        padding-right: 20px;
        width: 40%;
    }
    .main .videoList .videoBox .videoThumb .playBtn img {
        max-width: 40px;
    }
    .main .videoBox .videoList {
        grid-gap: 20px;
    }
    .main .videoList.PdfCard .videoBox {
        padding: 20px;
    }
    .main .videoList.PdfCard .videoBox .videoDescription p {
        line-height: 1.4;
    }
    .main .heroSection .row .col-4 .contentWrapper p {
        font-size: 13px;
    }
    .main .borderLine {
        margin: 60px 0;
    }
    .main .container .aboutRow .col-6 .content h3 {
        font-size: 55px;
    }
    .main .container .aboutRow .col-6 .content p {
        line-height: 1.5;
        margin: 30px 0;
    }
    body .main .videoSection {
        padding: 40px 0 0;
        margin-top: 0px;
        margin-bottom: 70px;
    }
    .videoSection.bg-white {
        background-color: #fff;
        margin-top: 0 !important;
        padding-bottom: 60px !important;
    }
    main .videoBox .videoList.PdfCard {
        grid-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }    
    .videoBox .btnAction a {
        margin-top: 40px;
    }
    footer {
        padding: 30px 30px;
    }
    footer .footerContent .wrapperLogo img {
        width: 100%;
        max-width: 150px;
    }
    footer .footerContent .wrapperLogo p {
        margin: 0 0 0 40px;
    }
    .main .modal .modal-content {
        width: 95%;
        padding: 0;
    }
    body .main .modal .modal-content .modalBOdy .modalRow .modalContent h2 {
        margin-bottom: 0;
        font-size: 30px;
    }
    body .main .modal .modal-content .modalBOdy .modalRow .modalContent p {
        font-size: 14px;
        line-height: 1.4;
    }
    .main .modal .modal-content .modalBOdy .modalRow .modalContent {
        padding: 30px 40px 0px 0px;
    }
    body .main .modal .modal-content .modalBOdy .modalRow .modalVideo,
    body .main .modal .modal-content .modalBOdy .modalRow .modalContent{
        width: 50%;
    }
 
    .main-nav ul li {
        margin-left: 0px;
    }
    .main-nav ul li a {
        padding: 15px 8px;
        font-size: 12px;
    }
    .main-nav ul {
        margin: 15px 0;
        padding-left: 0;
        padding-right: 15px;
        margin-right: 15px;
    }
    .header .logo img {
        max-width: 110px;
    }
    .user-icon {
        font-size: 20px;
    }
    .user-menu .userProfile {
        margin-right: 10px;
    }
    .dropdown-content{
        top: 64px;
    }
    .category-item label{
        font-size: 14px;
    }
}
  
@media screen and (max-width: 767px){

    .main .container {
        padding: 0 25px;
    }
    .main .heroSection .row{
        flex-direction: column-reverse;
    }
    .main .heroSection .row .col-4, .main .heroSection .row .col-6{
        width: 100%;
        padding: 0;
    }
    .main .heroSection .row .col-4 {
        position: relative;
        padding-left: 130px;
        padding: 60px 25px 75px 25px;
    }
    .main .heroSection .row .col-4:before {
        background-image: url('../images/Mobile_Pattern.png');
        z-index: 999;
        left: 0;
        top: 85%;
        bottom: 0;
        height: auto;
        background-size: cover;
    }
    .main .breadcrumb {
        margin-left: calc(0px + 0px);
        padding: 25px 25px;
    }
    .main .heroSection .row .col-4 .contentWrapper {
        max-width: 100%;
    }
    .main .heroSection .row .col-4 .contentWrapper h1 {
        max-width: 100%;
        margin: 0;
    }
    .main .heroSection .row .col-4 .contentWrapper P{
        margin-top: 20px;
    }
    .main .videoBox .videoList {
        grid-template-columns: repeat(1, 1fr);
    }
    .main .videoSection.bg-white .videoList.PdfCard {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .main .videoSection .videoContent h3 {
        font-size: 48px;
        max-width: 360px;
    }
    .main .container .headingWrapper {
        padding: 60px 0 0;
    }
    .main .container .headingWrapper h2 {
        font-size: 36px;
        line-height: normal;
        margin: 0 0 40px;
    }
    .main .borderLine {
        margin: 60px 0;
    }
    .main .container .aboutRow {
        display: block;
    }
    .main .container .aboutRow .col-6, .main .container .aboutRow .col-4{
        width: 100%;
        padding: 0;
    }
    .main .container .aboutRow .col-6 .content h3 {
        font-size: 48px;
        max-width: 350px;
    }
    .main .container .aboutRow .col-6 .content {
        padding: 0 0 60px;
    }
    .main .container .aboutRow .col-6 .content p {
        margin: 30px 0;
    }
    .main .aboutRow .col-6:before{
        display: none;
    }
    body .main .videoSection {
        padding: 60px 0 0;
        margin-top: 60px;
        margin-bottom: 60px;
    }
   .videoBox .btnAction a {
        margin-top: 40px;
    }
    .main .videoSection .container .Pattern3 {
        margin-top: 40px;
    }
    .videoSection.bg-white {
        padding: 0 !important;
    }
    .videoSection.bg-white .videoBox .btnAction a {
        margin: 40px auto 60px;
    }
    body .main .modal .modal-content .modalBOdy .modalRow {
        display: block;
    }
    body .main .modal .modal-content .modalBOdy .modalRow .modalVideo,
    body .main .modal .modal-content .modalBOdy .modalRow .modalContent{
        width: 100%;
    }
    .main .modal .modal-content {
        width: 90%;
        padding: 0;
    }
    .main .modal .modal-content .modalBOdy .modalRow .modalContent {
        width: 100%;
        padding: 25px 25px;
    }
    .main .modal .modal-content .modalBOdy .modalRow .modalVideo iframe {
        height: 250px;
    }
    .main .modalBOdy .close {
        font-size: 50px;
        right: 17px;
        top: -8px;
        color: #0F7774;
    }
    footer .footerContent {
        display: block;
    }
    footer .footerContent .wrapperLogo {
        display: block;
        text-align: center;
    }
    footer .footerContent .wrapperLogo img {
        max-width: 135px;
        display: block;
        margin: 0 auto;
    }
    footer .footerContent .wrapperLogo p {
        margin: 30px 0 20px 0;
    }
    footer {
        padding: 30px 30px;
    }
    footer .footerContent ul {
        justify-content: center;
    }
    footer .footerContent p {
        margin: 0 0 20px;
        text-align: center;
    }
    footer .footerContent ul li a {
        padding: 0 10px;
    }
    .main-nav ul {
        flex-direction: column;
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #333;
    }

    .main-nav ul.active {
        display: flex;
        z-index: 1;
        background-color: #fff;
        border-top: 1px solid #ddd;
        padding: 0;
        height: 100%;
    }

    .main-nav ul li {
        margin: 0;
    }

    .menu-toggle {
        display: flex;
    }
    .main-nav ul li a {
        padding: 20px 15px;
        border-bottom: 1px solid #ddd;
    }
    .header{
        min-height: 90px;
    }
    .user-menu {
        margin-right: 25px;
        border-right: 1px solid #ddd;
        padding-right: 0;
    }
    .dropdown-content{
        top: 70px;
        right: -50px;
    }
    footer .footerContent .copyRight{
        padding: 0;
        flex-direction: column-reverse;
    }
    footer .footerContent .copyRight ul {
        padding: 30px 0 20px;
    }
    footer .footerContent .copyRight p {
        margin: 0;
    }
    footer .footerContent .copyRight ul li a{
        padding: 0px 10px;
    }
    .user-menu .userProfile span.icon-profileicon.user-icon:after {
        display: none;
    }
    .user-icon {
        font-size: 20px;
    }
    .user-menu .userProfile {
        padding: 15px 0;
    }
}
@media screen and (max-width: 374px) {
    .logo a img {
        max-width: 130px;
    }    
}