.ScrollStop{
    overflow: hidden;
}

/* Videos and search */
.main .videoRow {
    display: flex;
    padding: 80px 0;
}
.main .videoRow .col-7 {
    width: 74%;
}
.main .videoRow .col-3{
    width: 26%;
    padding-right: 50px;
}
.main .videoRow .col-3 .searchWrapper h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
}
.main .modal .modal-content .modalBOdy .modalRow .modalContent .searchWrapper .modalFilter input {
    padding: 21px 20px;
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}
.main .videoRow .col-3 .searchWrapper input {
    border: none;
    padding: 22px 20px;
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}
.main .videoList {
    display: grid !important;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.main .videoList .videoBox {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
}
.main .videoList .videoBox .videoDescription {
    min-height: auto;
    border: none;
    padding: 20px 0 0;
}
.main .videoList .videoBox .videoDescription p{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding: 0 !important;
}
.main .videoList .videoBox .videoThumb span {
    color: #0F7774;
    font-size: 30px;
}
/* End Videos end Search */

/* Pagination */
.main .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.main .pagination a {
    text-decoration: none;
    color: #33005A;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .pagination a.prev:hover, .main .pagination a.next:hover {
    background-color: #e3e1e1;
}
.main .pagination a:hover {
    background-color: #33005A;
    color: #fff;
}

.main .pagination a.active {
    background-color: #33005A;
    color: #fff;
    border-color: #007bff;
}

.main .pagination a.prev, .pagination a.next {
    font-weight: bold;
    padding: 0;
    border: none;
    display: inline-flex;
}
.main .pagination a.prev img, .main .pagination a.next img
.pagination a.disabled {
    width: 100%;
}
/* End Pagination Start */

/* Start Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.main .modal-content {
    padding: 50px 25px;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 100%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: slideFromTop 0.5s ease forwards;
}
.main .videoRow .col-3 button {
    font-family: "Lexend Deca";
    text-align: center;
    border: 2px solid #0F7774;
    width: 100%;
    background-color: transparent;
    padding: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #0F7774;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.main .videoRow .col-3 button span {
    font-size: 24px;
    margin-right: 20px;
}
/* The Close Button */
.main .close {
    color: #0F7774;
    float: right;
    font-size: 38px;
    font-weight: 200;
    position: absolute;
    right: 20px;
    top: 2px;
}

.main .close:hover,
.main .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.main .modal .modal-content .modalBOdy .modalRow .modalContent h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    color: #33005A;
    font-family: auto;
    margin-top: 0;
}
.main .modal .modal-content .modalBOdy .modalRow .modalContent .modalFilter h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #404040;
    margin: 0 0 20px;
}
.main .modal .modal-content .modalBOdy .modalRow .modalContent .category-container h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #404040;
    margin: 0 0 20px;
}

@keyframes slideFromTop {
    from {
        top: -100%;
    }
    to {
        top: 50%;
    }
}
/* End Modal */

@media screen and (min-width: 992px) and (max-width: 1199px){
    .main .heroSection .row .col-4 h1{
        font-size: 30px;
    }
    .main .heroSection .row, .main .heroSection .row .col-6 img{
      min-height: 220px;
    }
    .main .breadcrumb {
        margin-left: calc(41px + 0px);
        padding: 20px 50px;
    }
    .main .videoList{
        grid-gap: 20px;
    }
    .main .videoList .videoBox .videoDescription p {
        padding: 20px 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }
    .main .videoList .videoBox .videoThumb .playBtn img {
        max-width: 50px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    .main .heroSection .row .col-4 h1{
        font-size: 30px;
    }
    .main .heroSection .row, .main .heroSection .row .col-6 img{
      min-height: 170px;
    }
    .main .breadcrumb {
        margin-left: calc(29px + 0px);
        padding: 20px 40px;
    }
    .main .videoList{
        grid-gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .main .videoList .videoBox .videoDescription p {
        padding: 20px 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }
    .main .videoList .videoBox .videoThumb .playBtn img {
        max-width: 50px;
    }
    .main .videoRow .col-3{
        width: 35%;
    }
    .main .videoRow .col-7{
        width: 65%;
    }
    .main .videoRow .col-3 .searchWrapper input{
        padding: 15px 20px;
    }
    .main .videoRow .col-3 .searchWrapper h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }    
}


@media screen and (max-width: 767px){
.main .videoRow {
    display: block;
}
.main .videoRow .col-3 .searchWrapper {
    margin-bottom: 40px;
    display: none;
}
.main .videoRow .col-3, .main .videoRow .col-7 {
    width: 100%;
    padding: 0;
}
.main .videoList {
    grid-template-columns: repeat(1, 1fr);
}
.main .videoRow .col-3 button{
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
}

/* Loader */
.main .videoRow .col-7{
    position: relative;
}
.Pageloader {
    width: 60px;
    height: 60px;
    border: 4px solid #0F7774;
    border-radius: 50%;
    border-top: 4px solid #fff;
    animation: spin 1s linear infinite;
    margin-top: 40px;
    margin: 0 auto;
    margin-top: 30px;
}
.loadingWrapper {
    position: absolute;
    z-index: 99;
    height: 60px;
    background-color: #ffffffe0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}