@font-face {
    font-family: 'aptos';
    src: url('../fonts/Aptos.ttf');
    font-weight: normal;
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'aptos';
    src: url('../fonts/Aptos-Bold.ttf');
    font-weight:bold;
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'aptos';
    src: url('../fonts/Aptos-Black.ttf');
    font-weight:bolder;
    font-weight:700;
    font-style: normal;
}
@font-face {
    font-family: 'aptos';
    src: url('../fonts/Aptos-Italic.ttf');
    font-weight:normal;
    font-weight:100;
    font-style: italic;
}
@font-face {
    font-family: 'aptos';
    src: url('../fonts/Aptos-Bold-Italic.ttf');
    font-weight:bold;
    font-weight:600;
    font-style: italic;
}
@font-face {
    font-family: 'inter';
    src: url('../fonts/inter/Inter_18pt-Regular.ttf');
    font-weight: normal;
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'inter';
    src: url('../fonts/inter/Inter_28pt-Medium.ttf');
    font-weight:normal;
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'inter';
    src: url('../fonts/inter/Inter_18pt-Bold.ttf');
    font-weight:bold;
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'inter';
    src: url('../fonts/inter/Inter_18pt-Black.ttf');
    font-weight:bolder;
    font-weight: 800;
    font-style: normal;
}

:root{
    --Primary-Color : #1E3184;
    --Secondary-Color : #7924C9;
    --Primary-Hover-Color : #273c9b;
    --Secondary-Hover-Color : #8d31e2;
}

.primary{
    color: var(--Primary-Color);
}
.secondary{
    color: var(--Secondary-Color);
}
.bg-primary{
    background-color: var(--Primary-Color);
}
.bg-secondary{
    background-color: var(--Secondary-Color);
}
body *{
    box-sizing: border-box;
}
body{
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    padding: 0;
    overflow-x: hidden;
    margin: 0;
}
div,p,span,ul,li,a:link,a:visited,a:active
{
    font-family: 'aptos';
    font-weight: normal;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'inter';
}
h1{
    font-size: 1.5rem;
}
h2{
    font-size: 1.2rem;
}
h3{
    font-size:1rem ;
}
p,div,ul,li,span{
    font-size: 1rem;
}
nav.primary{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}
nav.primary ul{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0px;
    padding: 0px;
}
nav.primary ul li.parent{
    position: relative;
}
nav.primary ul li.parent .submenu{
    position: absolute;
    top: 100%;
    padding: 15px;
    border-radius: 15px;
    background-color: #fff;
    display: none;
    z-index: 999;
}
nav.primary ul li.parent .submenu ul{
    display: flex;
    flex-direction: column;
    min-width: 300px;
    gap: 0px;
}
nav.primary ul li.parent .submenu ul li{
    padding: 12px;
}
nav.primary ul li.parent .submenu ul li:hover{
    background-color: #ececec;
}
nav.primary ul li.parent:hover .submenu{
    display: block;
}
nav.primary ul li a:link,nav.primary ul li a:visited,nav.primary ul li a:active{
    text-decoration: none;
    color: #000;
}
nav.primary ul li a:link.btn,nav.primary ul li a:visited.btn,nav.primary ul li a:active.btn{
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(90deg,var(--Secondary-Color) 0%,rgb(68, 21, 112) 120%);
    background-color: var(--Secondary-Color);
    color: #fff;
    text-decoration: none;
}
nav.primary ul li a:hover.btn{
    border-radius: 50px;
    background-color: var(--Secondary-Color);
    color: #fff;
}
.banner{
    position: relative;
}
.banner::before{
    content: ' ';
    position: absolute;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0,0,0,1) 0%,rgba(0, 0, 0,0.2) 180%);
    opacity: 0.5;
    z-index: 0;
}
.banner .content{
    padding: 100px;
    color:#fff;
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner .content .heading{
    font-size: 2.0rem;
    font-weight: 800;
    font-family: 'inter';
    max-width: 50%;
}
.banner .content p{
    font-size: 1.3rem;
    font-weight: 600;
    max-width: 50%;
}
.banner .content .call-to-action{
    font-size: 1.3rem;
    font-weight: 600;
    border: 1px solid #fff;
    background-color: #0000004d;
    transition: background-color 0.2s ease;
}
.banner .content a:link.call-to-action,.banner .content a:visited.call-to-action,.banner .content a:active.call-to-action{
    color: #fff;
    padding: 12px 18px;
    text-decoration: none;
    
}
.banner .content a:hover.call-to-action{
    background-color: #00000075;

}
h1.brand{
    font-size: 2.6rem;
    margin: 0;
    color: var(--Primary-Color);
}
h2.display{
    font-size: 2.2rem;
    margin: 0;
}
section#course-search form input[type=text]{
    padding: 12px 8px;
    font-size: 1rem;
    width: 100%;
}
section#course-search form{
    width: 100%;
}
.btn{
    padding: 14px 24px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn.btn-w-100{
    width: 100%;
}
.btn-primary{
    background-color: var(--Primary-Color);
    color: #fff;
}
.btn-primary:hover{
    background-color: var(--Primary-Hover-Color );
    color: #fff;
}

.btn.btn-white{
    background-color: #fff;
    color: var(--Primary-Color);
}
.btn.btn-display{
    padding: 15px 34px;
}

.text-center{
    text-align: center;
}
.breadcrumbs{
    padding: 18px 25px;
    background-color: #141414;
    text-transform: capitalize;
}
.breadcrumbs a:link,.breadcrumbs a:visited,.breadcrumbs{
    color:#fff;
}

.contact-panel{
    position: fixed;
    right: 0;
    top: 120px;
    left: unset;
    width: 44px;
    margin: 0;
    display: flex;
    flex-direction: column;
    z-index: 200;
}

.contact-panel li{
    list-style: none;
    background-color: #000;
    display: flex;
    margin-bottom: 5px;
    justify-content: center;
}
.contact-panel li a {
    text-orientation: mixed;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    max-height: 139px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    font-size: 14px;
    display: block;
    height: 100%;
    width: 100%;
    padding: 15px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-panel li a,.contact-panel li a:link,.contact-panel li a:visited {
    color: #fff;
    text-decoration: none;
}
.contact-panel li.whatsapp {
    background-color:#13a047;
    
}
.contact-panel li.whatsapp a,.contact-panel li.whatsapp a:link,.contact-panel li.whatsapp a:visited{
    color:#fff;
    max-height: 94px;
}

footer{
    
}
footer .socials{
    list-style: none;
    display: flex;
    margin: auto;
    padding: 0;
    gap: 10px;
    
}
footer .socials i{
    color: #343434;
    transition: color 0.2s ease;
}
footer .socials i:hover{
    color: #181818;
}
footer p{
    font-size: 1rem;
    margin-top: 0px;
}
footer ul{
    list-style: none;
    font-size: 0.8rem !important;
    padding: 0px;
    margin: 0px;
}
footer ul li a,footer ul li a:link,footer ul li a:visited{
    font-size: 0.8rem !important;
}

footer ul li a,footer ul li a:link,footer ul li a:visited{
    color:#000;
    font-weight: 600;
}
.bottom-links{
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 12px;
}

.bottom-link-container{
    background-color: #000; 
    color:#888888;
}
.bottom-link-container p{
    font-size: 1rem;
}
.bottom-link-container ul li a,.bottom-link-container ul li a:link,.bottom-link-container ul li a:visited{
    color:#888888;
}




.cards {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    max-width: 12000px;
    gap: 25px;
    flex-wrap: wrap;
}

.card--1 .card__img, .card--1 .card__img--hover {
    background-image: url('https://images.pexels.com/photos/1438081/pexels-photo-1438081.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
}

.card--2 .card__img, .card--2 .card__img--hover {
    background-image: url('https://images.pexels.com/photos/323503/pexels-photo-323503.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
}

.card__like {
    width: 18px;
}

.card__clock {
    width: 15px;
  vertical-align: middle;
    fill: #AD7D52;
}
.card__time {
    font-size: 12px;
    color: #AD7D52;
    vertical-align: middle;
    margin-left: 5px;
}

.card__clock-info {
    float: right;
}

.card__img {
  visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
  border-top-left-radius: 12px;
border-top-right-radius: 12px;
  
}

.card__info-hover {
    position: absolute;
    padding: 16px;
  width: 100%;
  opacity: 0;
  top: 0;
}

.card__img--hover {
  transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  position: absolute;
    height: 235px;
  border-top-left-radius: 12px;
border-top-right-radius: 12px;
top: 0;
  
}
.card {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  width: 30%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
}
.card:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    transform: scale(1.10, 1.10);
}

.card__info {
z-index: 2;
  background-color: #fff;
  border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
   padding: 16px 24px 24px 24px;
}

.card__category {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
  color: #868686;
}

.card__title {
    margin-top: 5px;
    margin-bottom: 10px;
}

.card__by {
    font-size: 12px;
    font-weight: 500;
}

.card__author {
    font-weight: 600;
    text-decoration: none;
    color: #AD7D52;
}

.card:hover .card__img--hover {
    height: 100%;
    opacity: 0.3;
}

.card:hover .card__info {
    background-color: transparent;
    position: relative;
}

.card:hover .card__info-hover {
    opacity: 1;
}

.tbl_careers,.tbl_policies{
    width: 100%;
    border-collapse: collapse;
}
.tbl_careers tbody tr td,.tbl_policies tbody tr td{
    padding: 20px;
    border-bottom: solid 1px #e8e8e8;
}
.tbl_careers tbody tr,.tbl_policies tbody tr{
    transition: background-color 0.3s ease;
}
.tbl_careers tbody tr td:last-child,.tbl_policies tbody tr td:last-child{
    text-align: end;
}
.tbl_careers tbody tr:hover,.tbl_policies tbody tr:hover{
    background-color: #dadada;
}
.tbl_careers tbody tr td a,.tbl_careers tbody tr td a:link,.tbl_careers tbody tr td a:visited,
.tbl_policies tbody tr td a,.tbl_policies tbody tr td a:link,.tbl_policies tbody tr td a:visited{
    text-decoration: none;
    color: #fff;
    background-color: var(--Primary-Color);
    padding: 8px;
    transition: background-color 0.3s ease;
}
.tbl_careers tbody tr td a:hover,.tbl_policies tbody tr td a:hover{
    background-color: var(--Primary-Hover-Color);
}

table{
    width: 100%;
    border: solid 1px #e8e8e8;
    border-collapse: collapse;
    font-size: 0.9rem;
}
table tr td{
    border: solid 1px #d1d1d1;
}

table#table_of_contents{
    width :50%;

}
table#table_of_contents tr td{
    padding:8px;
}
table#table_of_contents tr th{
   background-color: #d8d8d8;
}

form input[type=text],form input[type=number],select{
    font-size: 0.9rem;
    padding: 8px 15px;
}

.btn{
    padding: 8px 14px;
}
.btn.primary{
    background-color: var(--Primary-Color);
}
.btn.primary:hover{
    background-color: var(--Primary-Hover-Color);
}
table{
    margin-top: 20px;
}
table th{
    background-color: #292929;
    color: #fff;
}

table td,table th{
    padding :6px 12px;
}

.tbl-toc{
    width:fit-content;
}
*{
    scroll-behavior: smooth;
}


.alert{
    padding: 20px 28px;
    border-radius: 8px;
    margin: 20px 0px;
}
.alert.alert-success{
    background-color: #d4edda;
    color: #155724;
}
.alert.alert-danger{
    background-color: #f8d7da;
    color: #721c24;
}