@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



* {
    box-sizing: border-box;
    word-wrap: break-word;
}

@font-face {
    font-family: "canela-font-bold";
    src: url(../fonts/Canela-Bold-Trial.otf);
}

@font-face {
    font-family: "canela-font-medium";
    src: url(../fonts/Canela-Medium-Trial.otf);
}

@font-face {
    font-family: "canela-font";
    src: url(../fonts/Canela-Medium-Trial.otf);
}

@font-face {
    font-family: "canela-font-light";
    src: url(../fonts/Canela-Light-Trial.otf);
}


.canela-font-bold {
    font-family: 'canela-font-bold';
}


.canela-font-medium {
    font-family: 'canela-font-medium';
}


.canela-font {
    font-family: 'canela-font';
}



:root {
    --col-primary: #1F3976 !important;
    --col-secondary: #991C18 !important;
    --col-pink: #FAF4F4 !important;
}

.bg-primary {
    background-color: var(--col-primary) !important;
}

.text-primary {
    color: var(--col-primary) !important;
}

.bg-secondary {
    background-color: var(--col-secondary) !important;
}




body {
    font-family: "Roboto", sans-serif !important;
    color: #737477 !important;
    font-size: 16px !important;
    font-style: normal;
    line-height: 24px !important;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none !important;
}


.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.container {
    max-width: 1300px !important;
}

.list-style-none {
    list-style: none;
}

.text-black {
    color: #252525 !important;
}

.section-heading {
    font-size: 36px;
    color: #252525;
    margin-bottom: 27px;
    font-family: 'canela-font-medium';
    line-height: 46px;

}

.header-section .dropdown:hover>.dropdown-menu {
    display: block;
}


.header-section .dropdown-submenu {
    position: relative;
}

.header-section .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 0%;
    margin-top: -1px;
    display: none;
    transform: translate(-100%, 0%);
    background-color: #991C18;
    color: #fff;
    border-radius: 0;
    padding: 0;
}

.header-section .dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.header-section .dropdown-submenu .dropdown-menu.sm{
    display: none;
}

.header-section .dropdown-submenu.drop:hover .dropdown-menu.sm {
    display: block;
}

section {
    overflow-x: hidden;

}

.cursor-pointer {
    cursor: pointer;
}



.main-btn {
    border: 1.7px solid #1F3976;
    border-radius: 2px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px 12px 24px;
    text-align: center;
    color: #1F3976;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-btn:hover {
    color: #fff;
    background-color: #1F3976;
}

.main-btn:hover img {
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(104deg) brightness(105%) contrast(101%);
}

.minor-heading {
    margin-bottom: 20px;
    font-family: 'canela-font-light';
    font-size: 25px;
    color: #252525;
}



.header {
    width: 100%;
    z-index: 23;
    display: table;
    position: relative;
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 30;
    box-shadow: 1px 1px 10px #cdcdcd;
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    background: #fafafa;
}



.lh-normal {
    line-height: normal !important;
}

.web-btn {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 12px 25px 12px 25px;
    border: 1px solid #FFFFFF;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
}

.web-btn:hover {
    border: 1px solid #FFFFFF;
    color: #fff;
    background-color: #1F3976;
}

footer .footer-links li a:hover {
    opacity: 1;
}

footer .our-campus-container .box:hover h5,
footer .our-campus-container .box:hover p {
    opacity: 1;
}





.bg-pink {
    background-color: var(--col-pink) !important;
}



.subject-section {
    position: relative;
}

.subject-sub {
    position: relative;
}

.subject-sub .table thead th {
    background-color: #991C18;
    color: #FFFFFF;
    padding: 15px 25px;
    width: 39%;
}

.subject-sub .table.scrolled {
    overflow-x: auto;
    display: block;
}

.subject-sub .table td {
    padding: 15px 25px;
}


.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    padding: 13px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    z-index: 9998;
    background: #000000;
}

.bar,
.bar:after,
.bar:before {
    width: 27px;
    height: 2px;
}

.bar {
    position: relative;
    background: rgb(255, 255, 255);
    transition: all 0ms 300ms;
}

.bar.animate {
    background: rgba(255, 255, 255, 0);
}

.bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: rgb(255, 255, 255);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: rgb(255, 255, 255);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/*---------------------
  Mobiles Menu 
  ----------------------*/
/*---------------------
  Mobiles Menu - Design 
  ----------------------*/
.mobile-menu ul {
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    font-size: 16px;
    line-height: 25px;
    margin: 0;
    overflow: hidden;
    padding: 13px 5px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    padding-left: 15px;
}

.mobile-menu  .has-children li{
    font-size: 15px !important;
    padding: 8px 5px;
    line-height: 18px;
}

.mobile-menu  .has-children .children{
   padding-top: 10px;
}

.mobile-menu li:first-child {
    margin-top: 70px;
}

.mobile-menu li:hover {
    background: #CCCCCC;
}

.mobile-menu li a {
    text-decoration: none;
    color: black;
}

/*---------------------
  Mobiles Menu - Slide IN 
  ----------------------*/
.mobile-menu {
    top: 0;
    max-width: 250px;
    left: -100%;
    width: 100%;
    background: #EBEBEB;
    color: black;
    height: 100%;
    position: fixed;
    z-index: 9997;
    overflow-y: auto;
    -webkit-transform: translate3d(0, 0, 205px);
    -moz-transform: translate3d(0, 0, 205px);
    transform: translate3d(0, 0, 205px);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.mobile-menu.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

/*---------------------
  Mobiles Menu - Dropdown Submenu
  ----------------------*/
.has-children:hover {
    cursor: hand;
}

.children {
    display: none;
}

.mobile-menu .children li:first-child {
    margin-top: 0px;
}

.icon-arrow {
    position: absolute;
    display: block;
    font-size: 0.7em;
    color: black;
    top: 15px;
    right: 10px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
}

.icon-arrow:after {
    content: "▼";
}

.icon-arrow.open {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
}