@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body
{
    width:100%!important;
}
/** Paragraph Global **/
p
{
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    text-align: justify;
    color: #242424;
}
ul li
{
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color: #242424;   
}
/** Button Global **/
button.page-btn
{
    border: none;
    border-radius: 50px;
    background: linear-gradient(#1D4CA1 0%, #001945 100%);
    color: white;
    padding: 10px 15px;
    margin-right: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    width: fit-content;
    font-size: 16px;
}
button.page-btn:hover
{
    cursor: pointer;    
}
/** Headings Global **/
h1.page-title
{
    color: #1D4CA1;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    padding:0;
    margin:15px 0;
    text-transform: uppercase;
}
h2.page-title
{
    color: #1D4CA1;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    padding:0;
    margin:15px 0;
    text-transform: uppercase;
}
h3.page-title
{
    color: #1D4CA1;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding:0;
    margin:15px 0;
    text-transform: uppercase;
}
nav#mobile
{
    display:none;
}
nav#main
{
    z-index:1000;
    position:sticky;
    overflow: visible;
    top: 0;
    background-color: #fff;
}
.top-nav
{
    background-color: #FCB040;
}
.top-nav img
{
    margin-top: -5px;
}
.top-nav span.top-nav-text
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    font-style: normal;
    padding-top: 2px;
    color: #20374B;
}
.main-nav
{
    box-shadow: 0 5px 7px rgba(0,0,0,0.25);
    padding: 15px;
}
.main-nav a.main-nav-text
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    padding: 5px 10px;
    color: #20374B;
    margin: 0px 15px;
    font-size: 16px;
    text-transform: uppercase;
}
.main-nav a.main-nav-text:hover
{
    background-color: #FCB040;
}
ul.sub-nav
{
    padding:10px!important;
}
ul.sub-nav-units
{
    padding:0px!important;
}
ul.sub-nav-units li
{
    list-style: none;
}
ul.sub-nav-units li a:active
{
    background-color: transparent;
}
.sub-nav a
{
    color: #20374B;
    font-size: 13px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.sub-nav li
{
    padding: 5px 0;
}
ul.course-list
{
    column-count: 2;
    column-gap: 10px;
}
ul.course-list li
{
    padding:2px 0!important;
}
ul.course-list li a
{
    width:300px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.sub-nav a:hover
{
    color: #000;
}
.fullscreenDiv
{
    width: 100%;
    height:100%;
}

.about-container
{
    width:fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.about-left
{
    width:500px;
    display: inline-block;
    vertical-align:top;
    padding-top: 30px;
}
.about-right
{
    width:700px;
    display: inline-block;
    padding: 20px;
}
.about-left>button.page-btn
{
    margin-top: 10px;
}
.about-left p
{
    width: 450px;
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.about-right iframe
{
    width:80%;
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.courses-container
{
    width:70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.courses-container h2
{
    text-align: center;
}
.courses-container .row
{
    margin-top: 30px;
    display: flex;
}
.courses-container .courses-card
{
    padding: 0 15px;
}
.courses-container .courses-card h3 a
{
    font-size: 22px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color:#1D4CA1;
    text-decoration: none;
}
.courses-container .courses-card h3
{
    text-align: center;
    line-height: 24px;
}
.courses-container .courses-card p.card-text
{
    font-size: 13px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    line-height: 15px;
}
.card-carousel
{
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
} 
.cards-wrapper
{
    display: flex;
    width:100%;
    animation: scroll-left 15s linear infinite;
} 
@keyframes scroll-left
{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-90%);
    }
}

.card-carousel:hover .cards-wrapper
{
    animation-play-state: paused;
}
.why-choose-blc-container
{
    background-image: url('../images/why-choose-us-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 50px;
}
.why-choose-blc-wrapper
{
    width:70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0 0 0;
}
.why-choose-blc-wrapper h2.page-title
{
    color: #fff;
    text-align: center;
}
.why-choose-blc-wrapper img
{
    width:100%;
}
.why-choose-blc-wrapper ul
{
    list-style: none;
    padding: 0;
    margin: 50px 0 0 0;
}
.why-choose-blc-wrapper ul li
{
    position: relative;
    padding-left: 25px;
    color: #fff;
    font-size: 20px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
}
.why-choose-blc-wrapper ul li i
{
    color: #1EC2F3;
}
.partners-container
{
    margin-top: 50px;
}
.partners-container h2.page-title
{
    text-align: center;
}
.partners-img-wrapper
{
    width: fit-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.partners-inner-wrapper img
{
    padding:10px;
    vertical-align: middle;
}
.partners-inner-wrapper
{
    display: inline-block;
}
.testimonials-container
{
    margin-top: 50px;
    width:90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-container h2
{
    text-align: center;
}
.testimonials-container .carousel
{
    margin-top: 30px;
}
.testimonials-container .carousel-control-prev
{
    top:50%;
    left:-50px;
    background-color: #000;
    width: 50px;
    height:50px;
    border: hidden;
    border-radius: 25px;
}
.testimonials-container .carousel-control-next
{
    top:50%;
    right:-50px;
    background-color: #000;
    width: 50px;
    height:50px;
    border: hidden;
    border-radius: 25px;
}
.testimonials-container iframe
{
    width:auto;
    height: 75vh;
}
.stats-container
{
    margin-top: 50px;
    width:60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.stats-container h2.page-title
{
    text-align: center;
    margin-bottom: 30px;
}
.circle 
{
    width: fit-content;
    height:fit-content;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.circle svg
{
    width:150px;
    height: 150px;
    transform: rotate(-90deg);
}
.circle circle
{
    fill: none;
    stroke-width: 15;
    stroke-linecap:square;
}
.circle .bg
{
    stroke: #fff;
}
.circle .progress
{
    stroke: url(#gradient); 
    stroke-dasharray: 408; /* Circumference: 2 * π * r (2 * 3.14 * 75) */
    stroke-dashoffset: 408;
    transition: stroke-dashoffset 1s ease-in-out;
}
.circle span
{
    position: absolute;
    width: 100%;
    top: 80px;
    left: 80px;
    transform: translate(-50%, -50%);
    font-size: 25px;
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.circle[data-percent="95"] .progress { stroke-dashoffset: calc(408 - (408 * 95) / 100); }
.circle[data-percent="94"] .progress { stroke-dashoffset: calc(408 - (408 * 94) / 100); }
.circle[data-percent="94"] .progress { stroke-dashoffset: calc(408 - (408 * 94) / 100); }
.circle[data-percent="100"] .progress { stroke-dashoffset: calc(408 - (408 * 100) / 100); }

.stats-text-wrapper
{
    margin-top:10px;
}
.stats-text-wrapper p
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    text-align: center;
}
.events-container
{
    width:90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.events-container h2.page-title
{
    margin-bottom:0;
}
.events-container a.event-page-link
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    color:#1D4CA1;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid #1D4CA1;
    padding-bottom: 2px;
}
.events-wrapper
{
    margin-top: 15px;
}
.date-wrapper
{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 4px solid #001945;
    padding: 10px 18px;
}
.date-wrapper span.mth
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    color:#1D4CA1;
    font-size: 20px;
    display: block;
    text-align: center;
    margin-bottom:-6px;
}
.date-wrapper span.day
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    color:#1D4CA1;
    font-size: 30px;
    display: block;
    text-align: center;
    margin-top:-6px;
}
.event-content-wrapper h3 a
{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color:#1D4CA1;
    font-size: 25px;
    text-decoration: none;
}
.event-content-wrapper p
{
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.event-content-wrapper p.news-date
{
    margin:0;
    font-size: 12px;
}
.events-wrapper .img-wrapper img
{
    width:100%;
    display: block;
}
.newsletter-container
{
    margin-top:50px;
    padding: 25px 0 40px 0;
    background: linear-gradient(#1D4CA1 0%, #001945 100%);
}
.newsletter-container h2.page-title
{
    text-align: center;
    color: #ffffff;
    font-size: 22px;
}
.newsletter-container form
{
    position: relative;
    width: 100%;
    max-width: 800px;
}
.newsletter-container form input[type="email"]
{
    border-radius: 30px;
    width: 100%;
    padding: 12px 15px 12px 55px;
    border-radius: 30px;
    font-size: 16px;
    box-sizing: border-box;
}
.newsletter-container form input[type="email"]::placeholder
{
    font-size: 16px;
}
.newsletter-signup-wrapper
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsletter-container form i
{
    color: #1D4CA1;
    font-size: 40px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
footer
{
    margin-top: 50px;
    padding-bottom: 30px;
    width:90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
footer a:hover
{
    color:#1D4CA1!important;
}
.footer-col-one-wrapper
{
    padding: 0 30px;
}
.footer-col-one-wrapper table
{
    margin-top: 20px;
    width:100%;
}
.footer-col-one-wrapper td
{
    vertical-align: top;
    padding: 0 0 10px 10px;
    font-size: 17px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.footer-col-one-wrapper td span
{
    display: block;
}
.footer-col-two-wrapper
{
    padding: 0 20px;
}
.footer-col-three-wrapper
{
    padding: 0 20px;
}
.footer-col-two-wrapper ul, .footer-col-three-wrapper ul
{
    margin:0;
    padding:0;
}
.footer-col-two-wrapper li, .footer-col-three-wrapper li
{
    list-style: none;
    margin: 5px 0;
}
.footer-col-two-wrapper i, .footer-col-three-wrapper i
{
    padding-right: 5px;
    transform: rotate(90deg);
    color: #1D4CA1;
    vertical-align: middle;
}
.footer-col-two-wrapper li a, .footer-col-three-wrapper li a
{
    color: #000;
    text-decoration: none;
    font-size: 17px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.footer-col-four-wrapper
{
    width: 100%;
}
.footer-col-two-wrapper h3.footer-title, .footer-col-four-wrapper h3.footer-title, .footer-col-three-wrapper h3.footer-title
{
    font-size: 22px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #1D4CA1;
}
.footer-col-four-wrapper a
{
    color: #000;
    text-decoration: none;
    font-size: 17px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.footer-col-four-wrapper i
{
    font-size: 30px;
    padding: 10px;
    width:fit-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.footer-col-four-wrapper p
{
    text-align: center;
}
.footer-col-four-wrapper h3.footer-title
{
    text-align: center;
}
.mobile-nav
{
    display: none;        
}

:root
{
    --screenWidth: 300px;
    --slideHeight: 600px;
    --slideWidth: 300px;
    --slideBorderRadiusSlide: 0px;
    --slideBorderSize: 0px;
    --slideBorderColor: #275EFE;
    --slideBorderType: solid;
    --slideSolidBackgroundColor: #fff;
    --ImgWidthSlide: 100%;
} 
::-webkit-scrollbar
{
    width: 0;
}
.containerVertical
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top:50px;
}
.slideContainer
{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}
.mainContainerCarouselFinal
{
    --screenWidth: var(--screenWidth);
    max-width: 1600px;
    margin: 5px 0;
    padding-top: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    scroll-snap-align: center;
    scroll-padding-left: 20%;
}
.slideTemplate
{
    display: inline-block;
    width: var(--slideWidth);
    height: var(--slideHeight);
    border-radius: var(--slideBorderRadiusSlide);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
                rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    margin: 10px;
    border: var(--slideBorderSize) var(--slideBorderType) var(--slideBorderColor);
    background-color: var(--slideSolidBackgroundColor);
    overflow-x: hidden;
    transition: 300ms ease-out;
}  
.slideTemplate iframe
{
    width: 100%;
    max-width:300px;
    height:600px;
    display: block;
}
.controlerFinalCarousel
{
    width: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.controlerFinalCarousel div
{
    width:fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 5px;
    border-radius: 50%;
    background-color:#001945;
    box-shadow: rgba(9,30,66,0.25) 0px 1px 1px, rgba(9,30,66,0.13) 0px 0px 1px 1px;
    cursor: pointer;
}
.controlerFinalCarousel .prevBtn, .controlerFinalCarousel .nextBtn  
{
    color: #ffffff;
}
a.course-page-link
{
    text-transform: uppercase;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    text-align: center;
    color:#001945;
    text-decoration: none;
}
.course-header-wrapper
{
    width:100%;
}
.course-header-top-content
{
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 250px;
    padding:20px;
}
.course-header-bottom-content
{
    background: linear-gradient(#001945 0%, #1D4CA1 100%);
    padding:20px;
    color: #ffffff;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
}
.course-header-bottom-text
{
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}
.course-header-top-text
{
    font-size: 18px;
    font-weight: 600;
    text-align: right;
}
.widget-course-link
{
    padding:20px;
    background-color: #f0f0f0;
    width:90%;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
}
.widget-course-link h2.page-title
{
    font-size: 22px;
    text-align: center;
}
.widget-course-link ul
{
    margin:0;
    padding:0;
}
.widget-course-link ul li, .widget-course-link ul li a
{
    list-style: none;
    font-size: 16px;
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 15px;
    text-decoration: none;
    color: #000000;
}
.widget-course-link ul li:hover
{
    cursor: pointer;
}
.widget-link-buttons button
{
    font-size: 16px;
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(#001945 0%, #1D4CA1 100%);
    color: #fff;
    width:auto;
    display:block;
    margin:20px auto;
}
.course-list-wrapper
{
    width:100%;
    max-width:1500px;
}
.course-list-wrapper h1.page-title
{
    margin-top: 50px;
    padding-top:0;
}
.course-list-wrapper .filter-wrapper
{
    margin-top:50px;
    width:fit-content;
    float: right;
}
.course-list-wrapper .filter-wrapper select
{
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    margin: 0 !important;
}
.unit-card img
{
    width:100%;
}
.unit-card
{
    margin-top:30px;
}
.unit-card h4, .unit-card h4 a
{
    text-transform: uppercase;
    color: #000000;
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}
.unit-card h4
{
    width:85%;
    display: block;
    line-height: 15px;
    padding-top: 10px;
    margin:0 auto;
}
.course-header-top-content .row-wrapper
{
    width:fit-content;
    display:block;
    margin-left: auto;
    margin-right: auto;
    margin-top:50px;
}
.course-header-top-content
{
    display: flex;
    justify-content: center;
    align-items: center; 
}
.course-header-top-content .home-text, .course-header-top-content .page-name-text
{
    text-transform: uppercase;
    font-size: 18px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    margin:5px;
}
.course-header-top-content .home-text
{
    color: #ffffff;
}
.course-header-top-content .page-name-text
{
    background: linear-gradient(#001945 0%, #1D4CA1 100%);
    padding: 8px 13px;
    border-radius: 20px;
    color: #ffffff;
}
.course-navigation-wrapper
{
    background-color: #f0f0f0;
    padding:10px;
}
.course-navigation-wrapper ul
{
    width:fit-content;
    margin:0 auto;
}
.course-navigation-wrapper li a
{
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color:#000000;
}
.course-navigation-wrapper li:hover
{
    color: #001945;
}
img.vet-logo
{
    max-width:200px;
    width:100%;
    margin:0 auto;
    display: block;
}
.unit-content
{
    margin-left:20px;
    margin-top:25px;
}
h4.unit-title
{
    text-transform: uppercase;
    font-size: 17px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}
p.unit-content-paragraph
{
    margin: 0;
    padding:0;
    font-size: 14px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 350;
    text-align:justify;
}
.unit-link-buttons button
{
    font-size: 16px;
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(#001945 0%, #1D4CA1 100%);
    color: #fff;
    width:auto;
    margin:25px 10px;
}
table.unit-content-table
{
    width:100%;
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
#overview::before, #requirements::before, #syllabus::before, #outcome::before
{
    content: "";
    display: block;
    height: 120px; /* match your header height */
    margin-top: -120px;
    visibility: hidden;
}
.unit-content>button
{
    width:100%;
    border:none;
    background-color:rgb(207, 226, 255);
    padding:10px 15px 5px 15px;
    text-align: left;
}
.page-wrapper
{
    width:90%;
    display: block;
    margin-left: auto;
    margin-right:auto;
    margin-top: 50px;
}
.page-top-content p, .page-bottom-content p
{
    text-align: justify;
}
.page-top-content p
{
    margin-bottom:25px;
}
.page-bottom-content p
{
    margin-top: 25px;
}
.page-media-content iframe
{
    width:750px;
    height:450px;        
}
.board-content
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.board-content img
{
    width:95%;
    display: block;
    margin:0 auto;
    padding:10px;
}
.board-content p.board-name, .board-content p.board-post
{
    margin:0;
    padding:0;
    font-size: 18px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color:#1D4CA1;
}
.board-content p.board-name
{
    font-size: 25px;
}
p.board-desc, p.history-text
{
    margin-top:25px;
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    text-align: justify;
}
p.history-text
{
    margin-top:0!important;
    margin-left: 10px;
}
table.history-table-main p.year
{
    font-size: 25px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
    margin-top: 20px;
    transform: rotate(-90deg);
    color:#ffffff;
}
table.history-table-main td.year
{
    background: linear-gradient(#1D4CA1 0%, #001945 100%);
    width:10%;
}
table.history-table-main td.history-text
{
    width:65%;
}
table.history-table-main td.history-image
{
    width:35%;
}
table.history-table-main td img
{
    width:100%;
}
table.history-table-mob
{
    display:none;
}
.campus-photos
{
    width:90%;
    display: block;
    margin:0 auto;
    margin-top: 25px;
}
.campus-photos img.faciltiies-image
{
    padding:5px;
    width:100%;
    margin-bottom: 10px;
}
.agents-filter-wrapper select
{
    width:30%;
}
.agents-wrapper
{
    margin-top: 20px;
}
.agents-wrapper img
{
    max-width:200px;
    width:100%;
    margin: 15px 0 10px 0;
}
.agents-wrapper p
{
    margin:2px;
    font-size: 16px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}
.agents-wrapper p.agent-org
{
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color:#1D4CA1;
}
.agents-wrapper p i
{
    color:#1D4CA1
}
.page-wrapper ol.level-one-list
{
    list-style-type: decimal;
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}
.page-wrapper ol.level-two-list
{
    list-style-type: lower-alpha;
}
.page-wrapper p.note-paragraph
{
    font-size: 13px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    margin:0;
}
ul.policies-list a
{
    font-size: 15px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    color:#1D4CA1;
}
p.events-paragraph
{
    height: 30px;
    overflow-x: hidden;
}
iframe.stu-testimonial
{
    width:100%;
    height:70vh;
    margin:10px;
}
img.blog-list-image
{
    width:100%;
}

.sidebar
{
    width: 250px;
    height: 100vh;
    position: fixed;
    background-color: #343a40;
    color: #fff;
}
.sidebar .nav-link
{
    color: #adb5bd;
}
.sidebar .nav-link.active,
.sidebar .nav-link:hover
{
    color: #fff;
    background-color: #495057;
}
.admin-panel-content
{
    margin-left: 250px;
    padding: 20px;
    flex-grow: 1;
}
.admin-panel-content h1
{
    color: #1D4CA1;
    font-size: 35px;;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    padding:0;
    margin:15px 0;
    text-transform: uppercase;
}

.admin-panel-content h2
{
    color: #1D4CA1;
    font-size: 20px;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding:0;
    margin:15px 0;
    text-transform: uppercase;
}
.admin-panel-content table td
{
    font-size: 14px;
}
.admin-panel-content a
{
    font-size: 14px;
}

.main-container {
    font-family: 'Lexend', sans-serif;;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.ck-content {
    font-family: 'Lexend', sans-serif;;
    line-height: 1.6;
    word-break: break-word;
}

.editor-container_classic-editor .editor-container__editor {
    min-width: 795px;
    max-width: 795px;
}
.english-cards
{
    border-left: 2px solid #FCB040!important;
    background-color: rgba(0,0,0,0.05);
    padding:15px 20px;
    margin:15px;
}