theme-styles.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199
  1. @import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text&display=swap");
  2. @import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
  3. @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css");
  4. *, *::before, *::after {
  5. box-sizing: border-box;
  6. }
  7. * {
  8. font-family: "Open Sans", sans-serif;
  9. margin: 0px;
  10. padding: 0px;
  11. }
  12. p {
  13. max-width: 800px;
  14. font-size: 16px;
  15. }
  16. .grid {
  17. gap: 30px;
  18. }
  19. body {
  20. overflow-y: scroll;
  21. }
  22. section {
  23. margin: 0 auto;
  24. padding: 0px !important;
  25. }
  26. main {
  27. padding-top: 111px;
  28. background-color: #fff;
  29. }
  30. h1 {
  31. font-size: 40px !important;
  32. letter-spacing: 2px !important;
  33. line-height: 110%;
  34. }
  35. button {
  36. margin: 20px auto;
  37. margin-bottom: 10px;
  38. max-width: 300px;
  39. font-size: 20px;
  40. border-radius: 0px;
  41. border: none;
  42. background: #0b1419;
  43. border-radius: 4px;
  44. }
  45. button:hover {
  46. background: #F68B1F;
  47. }
  48. .container {
  49. margin: 0xp auto;
  50. padding: 10px 30px;
  51. overflow: hidden;
  52. }
  53. .grid {
  54. justify-content: center;
  55. padding: 0px 5px;
  56. }
  57. #search-close {
  58. width: 100px;
  59. border-radius: 40px;
  60. background-color: #F68B1F;
  61. margin-top: 30px;
  62. margin-right: 30px;
  63. }
  64. .overlay-content {
  65. overflow: hidden;
  66. }
  67. .overlay-content label {
  68. display: inline-block;
  69. }
  70. .overlay-content h4 {
  71. display: inline-block;
  72. margin: 0px 20px;
  73. }
  74. .overlay-content div a {
  75. display: inline-block;
  76. text-decoration: underline;
  77. }
  78. .overlay-content div h6 {
  79. display: inline-block;
  80. }
  81. #search-bar {
  82. width: 60%;
  83. display: inline-block;
  84. }
  85. #search-button {
  86. width: 300px;
  87. display: inline-block;
  88. border-radius: 30px;
  89. margin-left: 20px;
  90. background: #485680;
  91. }
  92. #search-modal {
  93. overflow: hidden;
  94. }
  95. #search-button:hover {
  96. background-color: #F68B1F;
  97. }
  98. #first-nav > ul > img {
  99. transition-duration: 0.5s;
  100. }
  101. section#first-nav-section nav {
  102. position: fixed;
  103. text-align: center;
  104. padding: 0px;
  105. justify-content: space-evenly;
  106. height: 70px;
  107. z-index: 10;
  108. transition: 0.5s ease-in-out;
  109. background-color: #0b1419;
  110. border-bottom: 4px solid #F68B1F;
  111. box-shadow: 0px 5px 12px -5px #2F4858;
  112. }
  113. section#first-nav-section nav ul {
  114. align-items: center;
  115. z-index: 3;
  116. margin-top: 0!important;
  117. margin-bottom: 0!important;
  118. }
  119. section#first-nav-section nav ul img {
  120. height: 50px;
  121. width: auto;
  122. margin-right: 30px;
  123. padding-left: 20px;
  124. }
  125. section#first-nav-section nav ul > li {
  126. margin-right: 50px;
  127. }
  128. section#first-nav-section nav ul > li:last-child {
  129. margin-right: 0px;
  130. }
  131. section#first-nav-section nav ul > li:last-child {
  132. margin-right: 0;
  133. }
  134. section#first-nav-section nav ul > li > a {
  135. color: #fff;
  136. transition-duration: 0.3s;
  137. font-size: 14px;
  138. letter-spacing: 2px;
  139. text-transform: uppercase;
  140. font-weight: bold;
  141. font-size: 12px;
  142. }
  143. section#first-nav-section nav ul > li:after {
  144. content: "";
  145. display: block;
  146. margin: auto;
  147. height: 1px;
  148. width: 0px;
  149. background: transparent;
  150. transition: width 0.3s ease, background-color 0.5s ease;
  151. }
  152. section#first-nav-section nav ul > li:hover:after {
  153. width: 100%;
  154. background: #fff;
  155. }
  156. section#first-nav-section .nav-resp {
  157. height: 50px;
  158. background-color: #0b1419;
  159. border-bottom: 4px solid #F68B1F;
  160. box-shadow: 0px 5px 12px -5px #2F4858;
  161. }
  162. section#first-nav-section .nav-resp ul img {
  163. height: 30px !important;
  164. padding-left: 20px;
  165. }
  166. section#first-nav-section .nav-resp #menu-bars {
  167. padding-top: 2px;
  168. }
  169. section#second-nav-section nav {
  170. position: fixed;
  171. top: 70px;
  172. text-align: center;
  173. padding: 0px;
  174. justify-content: space-evenly;
  175. height: 40px;
  176. z-index: 10;
  177. transition: 0.5s ease-in-out;
  178. background: #0b1419;
  179. }
  180. section#second-nav-section nav ul {
  181. margin-top: 0px;
  182. width: 100vw;
  183. justify-content: space-evenly;
  184. display: inline-flex;
  185. }
  186. section#second-nav-section nav ul li > a {
  187. margin: 0px;
  188. color: #fff;
  189. transition-duration: 0.3s;
  190. font-size: 14px;
  191. letter-spacing: 2px;
  192. text-transform: uppercase;
  193. font-weight: normal;
  194. font-size: 12px;
  195. border-radius: 0px;
  196. }
  197. section#second-nav-section nav ul li > a:hover {
  198. border-radius: 0;
  199. background: #606060;
  200. }
  201. section#second-nav-section .second-nav-active {
  202. height: 40px;
  203. top: 50px;
  204. background-color: #0b1419;
  205. }
  206. #top-search {
  207. width: 140px;
  208. border-radius: 0;
  209. height: 30px;
  210. }
  211. #banner {
  212. position: fixed;
  213. top: 0;
  214. height: 100vhpx;
  215. width: 100%;
  216. margin: 0px !important;
  217. padding: 0px !important;
  218. background-position: center;
  219. background-size: cover;
  220. }
  221. #search {
  222. height: 80px;
  223. display: flex;
  224. flex-direction: row;
  225. background: #160c0c;
  226. margin: 0 auto;
  227. }
  228. #search input {
  229. border-radius: 0px;
  230. border: none;
  231. margin: 10px 0px 10px 30px;
  232. max-width: 60%;
  233. height: 60px;
  234. background-color: #ColorThree;
  235. }
  236. .white-bg {
  237. width: 100%;
  238. padding: 60px 0px;
  239. background: #fff;
  240. text-align: center;
  241. color: #160c0c;
  242. }
  243. .white-bg h1 {
  244. font-size: 100px;
  245. font-family: "DM Serif Text", serif;
  246. color: #160c0c;
  247. }
  248. .white-bg p {
  249. color: #160c0c;
  250. font-family: "Open Sans", sans-serif;
  251. font-size: 20px;
  252. }
  253. .white-bg #us-hero-text {
  254. padding-top: 30px;
  255. text-align: center;
  256. }
  257. .white-bg p {
  258. font-family: "Open Sans", sans-serif;
  259. font-size: 16px;
  260. line-height: 30px;
  261. text-align: center;
  262. color: #160c0c;
  263. width: 90%;
  264. margin: 0 auto;
  265. margin-top: 50px;
  266. margin-bottom: 30px;
  267. }
  268. .white-bg h2, .white-bg h1, .white-bg h3 {
  269. font-family: "DM Serif Text", serif;
  270. font-weight: bold;
  271. color: #160c0c;
  272. }
  273. .white-bg h2 .degree, .white-bg h1 .degree, .white-bg h3 .degree {
  274. font-weight: normal;
  275. font-size: 12px;
  276. }
  277. .white-bg h2 {
  278. font-family: "DM Serif Text", serif;
  279. font-size: 60px;
  280. margin: 0px;
  281. line-height: 90%;
  282. }
  283. .white-bg h3 {
  284. font-size: 25px;
  285. margin: 0px;
  286. padding: 0px;
  287. line-height: 80%;
  288. letter-spacing: 1px;
  289. }
  290. .white-bg h1 {
  291. font-size: 25px;
  292. margin: 0px;
  293. padding: 50px 5px 10px 5px;
  294. line-height: 130%;
  295. letter-spacing: 5px;
  296. }
  297. .white-bg h1 span {
  298. color: #F68B1F;
  299. font-family: "DM Serif Text", serif;
  300. font-weight: bold;
  301. }
  302. #us-imgs {
  303. width: 100%;
  304. min-height: 600px;
  305. padding-top: 40px;
  306. font: "DM Serif Text", serif;
  307. justify-content: space-around;
  308. gap: 30px;
  309. text-align: center;
  310. margin: 0px auto;
  311. }
  312. #us-imgs div {
  313. margin: 0px auto;
  314. }
  315. .img-container {
  316. position: relative;
  317. overflow: hidden;
  318. width: 100%;
  319. height: 100%;
  320. box-shadow: 4px 4px 4px #333;
  321. }
  322. .img-container .small {
  323. width: 300px;
  324. height: 300px;
  325. }
  326. #us-imgs img {
  327. filter: grayscale(20%);
  328. height: 100%;
  329. -o-object-fit: cover;
  330. object-fit: cover;
  331. -o-object-position: center;
  332. object-position: center;
  333. transition-duration: 1s;
  334. }
  335. #us-imgs img:hover {
  336. scale: 1.2;
  337. filter: contrast(120%) grayscale(0%);
  338. }
  339. .img-container:hover .overlay {
  340. height: 200px;
  341. }
  342. #us-imgs > div {
  343. background: #fff;
  344. max-width: 600px;
  345. }
  346. #us-imgs > div > div {
  347. font-family: "Open Sans", sans-serif;
  348. font-size: 18px;
  349. line-height: 100%;
  350. text-align: left;
  351. }
  352. #us-imgs > div > div p {
  353. margin-top: 20px;
  354. font-family: "DM Serif Text", serif;
  355. font-weight: normal;
  356. font-size: 12px;
  357. letter-spacing: 2px;
  358. line-height: 110%;
  359. color: #fff;
  360. }
  361. #us-imgs > div > div h2 {
  362. margin-top: 10px;
  363. margin-bottom: 10px;
  364. font-family: "DM Serif Text", serif;
  365. text-transform: uppercase;
  366. color: #160c0c;
  367. font-size: 20px;
  368. text-align: left;
  369. }
  370. #us-imgs > div > div p {
  371. color: #000;
  372. font-size: 16px;
  373. font-weight: normal;
  374. font-family: "Open Sans", sans-serif;
  375. text-align: left;
  376. letter-spacing: normal;
  377. margin: 5px !important;
  378. padding: 0px !important;
  379. line-height: 1.4rem;
  380. }
  381. #us-imgs > div > div a {
  382. color: #F68B1F;
  383. font-weight: normal;
  384. text-transform: uppercase;
  385. font-size: 14px;
  386. text-align: left;
  387. margin-top: 20px;
  388. margin-bottom: 40px;
  389. margin-left: 5px;
  390. }
  391. #us-imgs > div > div a:hover {
  392. color: #F68B1F;
  393. }
  394. .img-cont {
  395. overflow: hidden;
  396. text-align: center;
  397. height: 300px;
  398. border-radius: 10px;
  399. }
  400. .img-cont img {
  401. width: 100%;
  402. height: 100%;
  403. -o-object-fit: cover;
  404. object-fit: cover;
  405. -o-object-position: center;
  406. object-position: center;
  407. }
  408. #research-pointers {
  409. margin: 60px 0px;
  410. padding: 50px 0px;
  411. border-top: 1px solid #000;
  412. border-bottom: 1px solid #000;
  413. }
  414. #research-pointers p {
  415. margin: 20px 0px;
  416. }
  417. #dept-notices {
  418. background-image: url("../img/campus_07.jpg");
  419. text-align: center;
  420. }
  421. #dept-notices h1 {
  422. font-family: "DM Serif Text", serif;
  423. letter-spacing: 3px;
  424. }
  425. #dept-notices p {
  426. font-size: 16px;
  427. }
  428. .mid-roll {
  429. min-height: 600px;
  430. width: 100%;
  431. background-size: cover;
  432. background-position: center;
  433. background-attachment: fixed;
  434. padding: 0;
  435. }
  436. .bg-tint {
  437. width: 100%;
  438. height: 100%;
  439. min-height: 600px;
  440. background-color: rgba(17, 2, 32, 0.8196078431);
  441. }
  442. .bg-tint .container {
  443. min-height: 800px;
  444. display: flex;
  445. flex-direction: column;
  446. justify-content: center;
  447. gap: 30px;
  448. margin: 0 auto;
  449. padding: 50px 30px 20px 30px;
  450. }
  451. .bg-tint .container h2 {
  452. font-family: "Open Sans", sans-serif;
  453. font-weight: normal;
  454. font-size: 30px;
  455. letter-spacing: 2px;
  456. margin-bottom: 50px;
  457. line-height: 100%;
  458. }
  459. .bg-tint .container p {
  460. margin: 0px auto;
  461. font-family: "Open Sans", sans-serif;
  462. font-size: 14px;
  463. font-weight: normal;
  464. letter-spacing: 2px;
  465. margin-bottom: 35px;
  466. color: #fff;
  467. }
  468. .bg-tint .container .img-cont {
  469. height: 350px;
  470. max-width: 400px;
  471. overflow: hidden;
  472. border: 2px solid #fff;
  473. margin-bottom: 30px;
  474. }
  475. .bg-tint .container .img-cont img {
  476. transition-duration: 0.5s;
  477. }
  478. .bg-tint .container .img-cont img:hover {
  479. scale: 1.1;
  480. }
  481. .news-big-img-holder {
  482. border-radius: 10px;
  483. height: 400px;
  484. overflow: hidden;
  485. width: auto;
  486. filter: brightness(40%);
  487. transition-duration: 0.6s;
  488. box-shadow: 3px 3px 15px rgba(51, 51, 51, 0.2549019608);
  489. }
  490. .news-big-img-holder img {
  491. height: 400px;
  492. width: 100%;
  493. }
  494. .news-big-img-holder:hover {
  495. filter: brightness(70%);
  496. }
  497. .news-big-img-text {
  498. text-align: left;
  499. left: 20px;
  500. position: absolute;
  501. bottom: 0;
  502. }
  503. .news-big-img-text h4 {
  504. color: #fff;
  505. font-size: 14px;
  506. margin: 0px !important;
  507. padding: 0px;
  508. z-index: 2;
  509. }
  510. .news-big-img-text h4 a {
  511. text-decoration: none;
  512. color: #fff;
  513. }
  514. .news-big-img-text h5 {
  515. font-size: 12px;
  516. margin: 0px;
  517. padding: 0px;
  518. }
  519. .news-big-img-text a p {
  520. font-size: 16px;
  521. color: #fff;
  522. text-align: left;
  523. margin: 10px 0px;
  524. padding: 0px;
  525. line-height: 18px;
  526. }
  527. .news-small-img {
  528. border-radius: 10px;
  529. padding: 10px;
  530. background-color: #fff;
  531. box-shadow: 3px 3px 15px rgba(51, 51, 51, 0.3882352941);
  532. margin-bottom: 20px;
  533. max-height: 400px;
  534. }
  535. .news-sm-img-holder {
  536. height: 260px;
  537. overflow: hidden;
  538. filter: brightness(70%);
  539. transition-duration: 0.6s;
  540. }
  541. .news-sm-img-holder img {
  542. height: 100%;
  543. width: 100%;
  544. -o-object-fit: cover;
  545. object-fit: cover;
  546. }
  547. .news-sm-img-holder:hover {
  548. filter: brightness(90%);
  549. }
  550. .news-sm-img-text {
  551. text-align: left;
  552. margin-left: 20px;
  553. }
  554. .news-sm-img-text h4 {
  555. color: #000;
  556. font-size: 14px;
  557. margin: 0px !important;
  558. padding: 0px;
  559. z-index: 10;
  560. }
  561. .news-sm-img-text h4 a {
  562. text-decoration: none;
  563. color: #000;
  564. }
  565. .news-sm-img-text h5 {
  566. color: #000;
  567. font-size: 12px;
  568. margin: 5px 0px;
  569. padding: 0px;
  570. }
  571. .news-sm-img-text a p {
  572. font-size: 16px;
  573. color: #000;
  574. text-align: left;
  575. margin: 10px 0px;
  576. padding: 0px;
  577. line-height: 18px;
  578. }
  579. #success {
  580. padding-bottom: 60px;
  581. }
  582. #success > .grid > div {
  583. background: #160c0c;
  584. border: 2px solid #2F4858;
  585. text-align: center;
  586. }
  587. #success > .grid > div img {
  588. height: 400px;
  589. width: auto;
  590. -o-object-fit: cover;
  591. object-fit: cover;
  592. }
  593. #success > .grid > div p {
  594. color: #fff;
  595. letter-spacing: 1px;
  596. text-align: left;
  597. font-weight: normal;
  598. font-size: 16px;
  599. min-height: 100px;
  600. margin-top: 10px;
  601. }
  602. #success > .grid > div h2 {
  603. font-family: "DM Serif Text", serif;
  604. font-size: 40px;
  605. color: #fff;
  606. padding-top: 30px;
  607. padding-bottom: 10px;
  608. margin-bottom: 10px;
  609. }
  610. #events {
  611. min-height: 800px;
  612. text-align: center;
  613. background-image: url("../img/campus_01.jpg");
  614. }
  615. #events .bg-tint {
  616. min-height: 800px;
  617. padding: 50px 0px;
  618. background: rgba(81, 75, 88, 0.4784313725);
  619. }
  620. .event-holder {
  621. border-radius: 20px;
  622. min-height: 500px;
  623. background: #fff;
  624. }
  625. .event-holder .event-date {
  626. position: relative;
  627. margin-left: 20px;
  628. margin-top: -35px;
  629. height: 70px;
  630. width: 70px;
  631. background-color: #0b1419;
  632. display: flex;
  633. flex-direction: column;
  634. justify-content: center;
  635. }
  636. .event-holder .event-date h3 {
  637. margin: 0px auto;
  638. text-align: center;
  639. color: #fff;
  640. font-size: 20px;
  641. line-height: 22px;
  642. font-family: "DM Serif Text", serif;
  643. font-weight: bolder;
  644. }
  645. .event-holder .event-details {
  646. text-align: left;
  647. margin: 10px;
  648. }
  649. .event-holder .event-details h2 {
  650. color: #000;
  651. font-size: 22px;
  652. font-weight: bolder;
  653. margin: 0px auto;
  654. text-transform: uppercase;
  655. }
  656. .event-holder .event-details h3 {
  657. color: rgba(0, 0, 0, 0.6039215686);
  658. font-size: 16px;
  659. margin: 10px 0px;
  660. }
  661. .event-img-holder {
  662. height: 300px;
  663. overflow: hidden;
  664. background: #333;
  665. }
  666. .event-img-holder img {
  667. height: 300px;
  668. width: 100%;
  669. -o-object-fit: cover;
  670. object-fit: cover;
  671. transition-duration: 0.6s;
  672. }
  673. .event-img-holder img:hover {
  674. scale: 1.05;
  675. }
  676. #stats > div > div > div {
  677. padding: 20px 0px;
  678. text-align: center;
  679. margin: 20px auto;
  680. padding-right: 20px;
  681. color: #fff;
  682. border-right: 1px solid #fff;
  683. }
  684. #stats > div > div > div h1 {
  685. color: #fff;
  686. margin-bottom: 20px;
  687. }
  688. #stats > div > div > div:last-child {
  689. border-right: none;
  690. }
  691. #admissions {
  692. padding: 50px 0px 0px 0px !important;
  693. }
  694. #admissions img {
  695. height: 400px;
  696. -o-object-fit: cover;
  697. object-fit: cover;
  698. }
  699. #admissions p {
  700. font-family: "Open Sans", sans-serif;
  701. font-size: 20px;
  702. text-align: center;
  703. color: #160c0c;
  704. width: 90%;
  705. margin: 0 auto;
  706. margin-top: 50px;
  707. margin-bottom: 30px;
  708. }
  709. #testimonial-text {
  710. background: #2F4858;
  711. height: 150px;
  712. max-width: 450px;
  713. text-align: center;
  714. position: relative;
  715. top: -75px;
  716. margin: 0 auto;
  717. padding-top: 10px;
  718. box-shadow: 2px 2px 6px #333;
  719. }
  720. #testimonial-text blockquote {
  721. padding: 5px 0px;
  722. margin: 0px 20px;
  723. color: white;
  724. font-family: "Open Sans", sans-serif;
  725. font-weight: normal;
  726. font-size: 14px;
  727. }
  728. #stu_id {
  729. padding: 10px 30px;
  730. }
  731. #stu_id h2 {
  732. padding: 5px;
  733. font-size: 20px;
  734. color: #fff;
  735. margin: 0px 0px;
  736. font-weight: normal;
  737. text-decoration: none;
  738. text-align: right;
  739. }
  740. #stu_id h3 {
  741. font-size: 18px;
  742. color: white;
  743. margin: 0px auto;
  744. text-align: center;
  745. font-weight: lighter;
  746. text-align: right;
  747. }
  748. .research-block {
  749. padding-block: 20px;
  750. }
  751. #research > div > div > div > div.research-img {
  752. height: 300px;
  753. width: 100%;
  754. overflow: hidden;
  755. border: 1px solid #F68B1F;
  756. border-bottom: 10px solid #F68B1F;
  757. }
  758. #research > div > div > div > div.research-img > img {
  759. transition-duration: 0.5s;
  760. height: 300px;
  761. width: 100%;
  762. -o-object-fit: cover;
  763. object-fit: cover;
  764. -o-object-position: center;
  765. object-position: center;
  766. margin: 0px;
  767. padding: 0px;
  768. }
  769. #research > div > div > div > div.research-img > img:hover {
  770. scale: 1.2;
  771. }
  772. #research > div > div > div > div.research-text > h2 {
  773. font-family: "DM Serif Text", serif;
  774. font-size: 20px;
  775. font-weight: normal;
  776. color: #160c0c;
  777. padding: 10px 5px;
  778. margin: 10px 0px;
  779. text-align: center;
  780. }
  781. .research-text {
  782. text-align: left;
  783. }
  784. .research-text p {
  785. text-align: left;
  786. font-size: 18px;
  787. margin: 5px 0px;
  788. padding: 5px 5px;
  789. }
  790. .research-text a {
  791. color: #333;
  792. text-decoration: underline;
  793. }
  794. .research-text a:hover {
  795. color: #2F4858;
  796. }
  797. .research-text h2 {
  798. font-family: "Open Sans", sans-serif;
  799. font-size: 18px;
  800. color: #fff !important;
  801. background: #160c0c;
  802. }
  803. #testimonial-block > h1 {
  804. padding: 0px;
  805. margin: 10px 0px;
  806. font-size: 35px;
  807. letter-spacing: 3px;
  808. }
  809. #testimonial-block > h1 > a {
  810. font-family: "DM Serif Text", serif;
  811. color: #fff;
  812. padding: 0px;
  813. }
  814. #campus-banner {
  815. height: 500px;
  816. width: 100%;
  817. background: url("../img/campus_02.jpg") no-repeat;
  818. background-size: cover;
  819. background-position: center;
  820. }
  821. #campus-life > h3 {
  822. color: #160c0c;
  823. font-size: 20px;
  824. letter-spacing: 1px;
  825. box-shadow: none;
  826. font-family: "DM Serif Text", serif;
  827. margin: 30px auto;
  828. }
  829. #campus-life {
  830. padding-bottom: 30px !important;
  831. min-height: 500px;
  832. }
  833. #us-imgs > div > div > h2 {
  834. text-transform: uppercase;
  835. font-family: "Open Sans", sans-serif;
  836. font-size: 24px;
  837. font-weight: 900;
  838. padding: 10px 5px;
  839. text-align: left;
  840. color: #000;
  841. text-shadow: none;
  842. }
  843. #socials h1 {
  844. color: #160c0c;
  845. margin: 0px auto;
  846. text-align: center;
  847. }
  848. #socials ul {
  849. margin-bottom: 0px;
  850. }
  851. #socials ul > li {
  852. display: inline;
  853. }
  854. #socials ul > li > a > img {
  855. width: 60px;
  856. margin-right: 10px;
  857. }
  858. footer {
  859. position: relative;
  860. z-index: 30 !important;
  861. }
  862. #footer1 {
  863. z-index: 10;
  864. height: 400px;
  865. background: url("../img/footer2.png") no-repeat;
  866. background-size: cover;
  867. background-position: top;
  868. }
  869. footer.container-fluid {
  870. border-top: 10px solid #C85688;
  871. overflow: hidden;
  872. text-align: left;
  873. margin: 0px;
  874. padding: 0px !important;
  875. background: #160c0c;
  876. min-height: 350px;
  877. }
  878. footer.container-fluid h3 {
  879. margin: 10px auto;
  880. margin: 30px 0px;
  881. font-family: "Open Sans", sans-serif;
  882. font-size: 20px;
  883. color: #fff;
  884. font-weight: normal;
  885. text-decoration: underline;
  886. }
  887. footer.container-fluid ul {
  888. padding: 0px;
  889. }
  890. footer.container-fluid ul > li {
  891. list-style: none;
  892. margin: 0px;
  893. padding: 0px;
  894. line-height: 110%;
  895. }
  896. footer.container-fluid ul > li a {
  897. text-decoration: none;
  898. color: #fff;
  899. font-size: 14px;
  900. font-weight: normal;
  901. font-family: "Open Sans", sans-serif;
  902. }
  903. footer.container-fluid ul > li a:hover {
  904. color: #F68B1F;
  905. text-decoration: underline;
  906. }
  907. #fine-print {
  908. text-align: center;
  909. margin: 10px auto;
  910. height: 50px;
  911. border-top: 1px solid #F68B1F;
  912. }
  913. #fine-print p {
  914. font-size: 12px;
  915. display: inline-flex;
  916. }
  917. #fine-print ul {
  918. display: inline;
  919. }
  920. #fine-print ul > li {
  921. display: inline;
  922. padding: 10px;
  923. font-size: 12px;
  924. letter-spacing: 1px;
  925. }
  926. #menu-bars {
  927. display: none;
  928. margin: 0px auto;
  929. padding-top: 13px;
  930. font-size: 45px;
  931. }
  932. #myNav > div > div > a {
  933. margin: 0 auto;
  934. }
  935. .accredition {
  936. min-height: 100px;
  937. }
  938. .accredition #accredition-img {
  939. height: 100px;
  940. width: auto;
  941. -o-object-fit: contain;
  942. object-fit: contain;
  943. margin: 50px 0px;
  944. }
  945. #accr h2 {
  946. padding: 30px 0px 0px 0px;
  947. font-size: 40px;
  948. }
  949. @media (max-width: 1100px) {
  950. #first-nav > ul {
  951. position: relative;
  952. width: 100%;
  953. left: 0px;
  954. }
  955. #first-nav > ul > img {
  956. width: 350px;
  957. -o-object-fit: contain;
  958. object-fit: contain;
  959. margin-right: auto;
  960. transition-duration: 0.5s;
  961. }
  962. #first-nav > ul > li {
  963. display: none;
  964. }
  965. #first-nav > ul > li:last-child {
  966. display: inline-block;
  967. margin-right: auto;
  968. width: 40px;
  969. }
  970. #top-search {
  971. display: none;
  972. }
  973. #menu-bars {
  974. display: inline-block;
  975. }
  976. .banner-overlay {
  977. margin: 0 auto;
  978. }
  979. .banner-overlay h1 {
  980. text-align: center;
  981. width: 300px !important;
  982. font-size: 30px !important;
  983. margin: 0px auto;
  984. }
  985. }
  986. @media (max-width: 576px) {
  987. #first-nav > ul > img {
  988. width: 170px;
  989. }
  990. #search > button.filled {
  991. display: none;
  992. }
  993. body > main > section:nth-child(2) > div > h1 {
  994. font-size: 60px;
  995. }
  996. #video-text > h1 {
  997. margin-top: 30%;
  998. font-size: 50px;
  999. }
  1000. #cta {
  1001. display: flex;
  1002. flex-direction: column;
  1003. }
  1004. #cta > button:nth-child(2) {
  1005. display: none;
  1006. }
  1007. #success > h1 {
  1008. font-size: 40px;
  1009. }
  1010. .event-details {
  1011. margin: 10px !important;
  1012. padding: 0px !important;
  1013. }
  1014. #events > div > div > div.event-content > h2 {
  1015. font-size: 12px;
  1016. }
  1017. #events > div > div > div.event-content > h2 {
  1018. font-size: 10px;
  1019. }
  1020. #events > div > div > div.event-content {
  1021. width: 100%;
  1022. }
  1023. #events > div > h1 {
  1024. font-size: 25px;
  1025. }
  1026. #campus-life > h1 {
  1027. font-size: 60px;
  1028. }
  1029. .white-bg h1 {
  1030. font-size: 40px !important;
  1031. }
  1032. .white-bg h2 {
  1033. font-size: 30px;
  1034. }
  1035. #second-nav {
  1036. display: none;
  1037. }
  1038. .banner-overlay {
  1039. margin: 0 auto;
  1040. }
  1041. .banner-overlay h1 {
  1042. text-align: center;
  1043. width: 300px !important;
  1044. font-size: 30px !important;
  1045. margin: 0px auto;
  1046. }
  1047. .banner-slider-button {
  1048. display: none;
  1049. }
  1050. }
  1051. .slider-single-div {
  1052. width: 100%;
  1053. height: 100%;
  1054. }
  1055. .banner-slider {
  1056. z-index: -6;
  1057. width: 100vw;
  1058. height: 100vh;
  1059. position: relative;
  1060. }
  1061. .banner-slider ul {
  1062. margin: 0;
  1063. padding: 0;
  1064. list-style: none;
  1065. }
  1066. .slide {
  1067. position: absolute;
  1068. inset: 0;
  1069. opacity: 0;
  1070. transition: 200ms opacity ease-in-out;
  1071. transition-delay: 600ms;
  1072. }
  1073. .slide img {
  1074. display: block;
  1075. width: 100%;
  1076. height: 100%;
  1077. -o-object-fit: cover;
  1078. object-fit: cover;
  1079. -o-object-position: center;
  1080. object-position: center;
  1081. }
  1082. .slide[data-active] {
  1083. opacity: 1;
  1084. z-index: 1;
  1085. transition-delay: 0ms;
  1086. }
  1087. .banner-slider-button {
  1088. position: absolute;
  1089. z-index: 3;
  1090. background: none;
  1091. border: none;
  1092. font-size: 8rem;
  1093. top: 50%;
  1094. transform: translateY(-50%);
  1095. color: rgba(255, 255, 255, 0.7058823529);
  1096. cursor: pointer;
  1097. border-radius: 0.25rem;
  1098. padding: 0 0.5rem;
  1099. outline: none;
  1100. }
  1101. .banner-slider-button:hover,
  1102. .banner-slider-button:focus {
  1103. color: white;
  1104. background-color: transparent;
  1105. border: none;
  1106. outline: none;
  1107. }
  1108. .banner-slider-button:focus {
  1109. border: none;
  1110. outline: none;
  1111. }
  1112. .banner-slider-button.prev {
  1113. left: 1rem;
  1114. }
  1115. .banner-slider-button.next {
  1116. right: 1rem;
  1117. }
  1118. button:focus {
  1119. border: none !important;
  1120. outline: none !important;
  1121. box-shadow: none !important;
  1122. }
  1123. .banner-overlay {
  1124. position: absolute;
  1125. top: 0;
  1126. z-index: 5;
  1127. height: 100vh;
  1128. width: 100vw;
  1129. background-color: rgba(0, 0, 0, 0.5607843137) !important;
  1130. display: flex;
  1131. flex-direction: column;
  1132. justify-content: center;
  1133. align-items: center;
  1134. }
  1135. .banner-overlay h1, .banner-overlay h2, .banner-overlay h3, .banner-overlay h4 {
  1136. text-align: center;
  1137. font-family: "Open Sans", sans-serif;
  1138. font-weight: 400 !important;
  1139. }
  1140. .banner-overlay h1 {
  1141. font-size: 50px !important;
  1142. margin-bottom: 100px !important;
  1143. }
  1144. @media screen and (max-width: 1100px) {
  1145. .banner-overlay h1 {
  1146. font-size: 40px !important;
  1147. }
  1148. }
  1149. .banner-overlay h3 {
  1150. font-size: 20px !important;
  1151. }
  1152. .banner-overlay h4 {
  1153. margin-top: 100px;
  1154. margin-bottom: 100px !important;
  1155. }
  1156. .program {
  1157. margin: 80px auto;
  1158. }
  1159. .program div {
  1160. border-radius: 10px;
  1161. margin: 40px auto;
  1162. }
  1163. .program div h2 {
  1164. letter-spacing: 3px;
  1165. font-size: 30px;
  1166. }
  1167. .program div p {
  1168. color: #464646;
  1169. }
  1170. .img-cont-2 {
  1171. overflow: hidden;
  1172. text-align: center;
  1173. height: 400px;
  1174. margin: 0px 50px;
  1175. border: none;
  1176. }
  1177. @media (max-width: 990px) {
  1178. .img-cont-2 {
  1179. margin: 40px 0px;
  1180. }
  1181. }
  1182. .img-cont-2 img {
  1183. width: 100%;
  1184. height: 100%;
  1185. -o-object-fit: cover;
  1186. object-fit: cover;
  1187. -o-object-position: center;
  1188. object-position: center;
  1189. transition-duration: 0.5s;
  1190. }
  1191. .img-cont-2 img:hover {
  1192. scale: 1.05;
  1193. }
  1194. .program-details p {
  1195. margin: 20px auto;
  1196. line-height: 24px;
  1197. font-size: 16px;
  1198. color: #000;
  1199. }
  1200. .program-details a {
  1201. font-size: 14px;
  1202. text-transform: uppercase;
  1203. color: #F68B1F;
  1204. }
  1205. .notice-main {
  1206. max-width: 1000px;
  1207. margin: 30px auto;
  1208. }
  1209. .notice-main button {
  1210. background-color: #F68B1F;
  1211. }
  1212. .notice-main button:hover {
  1213. background: #160c0c;
  1214. }
  1215. .notice-main a:hover {
  1216. text-decoration: none;
  1217. }
  1218. .notice-main a:hover h4 {
  1219. text-decoration: underline;
  1220. }
  1221. .notice-main .notice-container {
  1222. padding: 20px !important;
  1223. border: 1px solid rgba(255, 255, 255, 0.431372549);
  1224. position: relative;
  1225. width: 100%;
  1226. padding: 5px 20px;
  1227. display: flex;
  1228. flex-direction: row;
  1229. height: 150px;
  1230. overflow: hidden;
  1231. }
  1232. .notice-main .notice-container .event-date {
  1233. background: #F68B1F;
  1234. width: 80px;
  1235. display: inline-block;
  1236. margin: 0px 20px;
  1237. }
  1238. .notice-main .notice-container .event-date h3 {
  1239. font-weight: 200;
  1240. margin: 0px;
  1241. padding: 0px;
  1242. }
  1243. .notice-main .notice-container h6 {
  1244. text-align: left;
  1245. margin: 0px auto;
  1246. }
  1247. .notice-main .notice-container h4 {
  1248. text-align: left;
  1249. margin: 0px auto;
  1250. color: #F68B1F;
  1251. }
  1252. .notice-main .notice-container .subtitle {
  1253. left: 0px;
  1254. font-size: 12px;
  1255. text-align: left;
  1256. }
  1257. .notice-main .notice-container p {
  1258. font-size: 14px !important;
  1259. text-align: left;
  1260. padding: 0px;
  1261. margin: 0px;
  1262. }
  1263. .notice-main .notice-container:hover {
  1264. text-decoration: none;
  1265. }
  1266. @media (max-width: 600px) {
  1267. .notice-main {
  1268. max-width: 100%;
  1269. }
  1270. }
  1271. .profile-carousel {
  1272. text-align: center;
  1273. margin: 10px auto;
  1274. height: 350px;
  1275. width: 100%;
  1276. white-space: nowrap;
  1277. position: absolute;
  1278. left: 0;
  1279. transition: 1.5s;
  1280. }
  1281. .car-img-holder {
  1282. margin: 20px auto;
  1283. width: 250px;
  1284. height: 250px;
  1285. overflow: hidden;
  1286. border-radius: 10px;
  1287. }
  1288. .car-img-holder img {
  1289. width: 100%;
  1290. height: 100%;
  1291. -o-object-position: center;
  1292. object-position: center;
  1293. -o-object-fit: cover;
  1294. object-fit: cover;
  1295. }
  1296. .car-item {
  1297. margin: 10px 10px;
  1298. padding: 10px;
  1299. width: 320px;
  1300. display: inline-block;
  1301. border-radius: 10px;
  1302. box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.4823529412);
  1303. }
  1304. .car-item-holder .faculty-details {
  1305. min-height: 70px;
  1306. width: 300px;
  1307. overflow: hidden;
  1308. overflow-wrap: break-word;
  1309. }
  1310. .car-item-holder .faculty-details h2 {
  1311. position: relative;
  1312. margin: 20px 0px 0px 0px;
  1313. font-family: "Open Sans", sans-serif;
  1314. font-size: 18px;
  1315. margin: 10px 0px;
  1316. min-height: 30px;
  1317. color: #000;
  1318. overflow-wrap: break-word;
  1319. }
  1320. .car-item-holder .faculty-details h2 .degree {
  1321. font-weight: normal;
  1322. font-size: 12px;
  1323. }
  1324. .car-item-holder .faculty-details h4 {
  1325. font-family: "Open Sans", sans-serif;
  1326. font-size: 12px;
  1327. margin: 5px 0px;
  1328. color: #000;
  1329. overflow-wrap: break-word;
  1330. }
  1331. .car-item-holder .faculty-details h3 {
  1332. font-family: "Open Sans", sans-serif;
  1333. font-size: 12px;
  1334. letter-spacing: 1px;
  1335. color: #000;
  1336. overflow-wrap: break-word;
  1337. margin-bottom: 10px !important;
  1338. }
  1339. .car-item-holder .faculty-details button {
  1340. max-width: 250px !important;
  1341. margin: 10px auto;
  1342. margin-bottom: 0px;
  1343. }
  1344. .car-control {
  1345. width: 5px;
  1346. display: inline-block;
  1347. margin: 10px;
  1348. }
  1349. #prev-car {
  1350. transform: rotate(180deg);
  1351. }
  1352. .car {
  1353. position: relative;
  1354. min-height: 650px;
  1355. overflow: hidden;
  1356. }
  1357. .car-buttons {
  1358. width: 100%;
  1359. display: flex;
  1360. flex-direction: row;
  1361. justify-content: space-between;
  1362. position: absolute;
  1363. top: 20%;
  1364. transform: translateY(50%);
  1365. z-index: 1000;
  1366. }
  1367. .banner-overlay {
  1368. background-color: rgba(0, 0, 0, 0.2);
  1369. }
  1370. .student-stories h2 {
  1371. font-size: 18px !important;
  1372. text-transform: capitalize !important;
  1373. margin-bottom: 0 !important;
  1374. }
  1375. .student-stories h5 {
  1376. color: #f68b1f !important;
  1377. font-size: 14px !important;
  1378. padding: 0 5px;
  1379. margin-bottom: 20px;
  1380. }
  1381. #faculty-carousel .car-item {
  1382. padding: 0;
  1383. box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  1384. }
  1385. #faculty-carousel .car-img-holder {
  1386. width: auto;
  1387. height: 300px;
  1388. margin: 0;
  1389. margin-bottom: 20px;
  1390. border-bottom-left-radius: 0;
  1391. border-bottom-right-radius: 0;
  1392. }
  1393. #faculty-carousel .car-img-holder img {
  1394. border-radius: 0;
  1395. -o-object-position: top;
  1396. object-position: top;
  1397. }
  1398. #faculty-carousel .faculty-details {
  1399. padding: 0 10px 10px;
  1400. width: 100%;
  1401. }
  1402. #faculty-carousel .faculty-details h2 {
  1403. margin-bottom: 5px;
  1404. }
  1405. #faculty-carousel .faculty-details h3 {
  1406. letter-spacing: 0px;
  1407. font-weight: 700;
  1408. color: brown !important;
  1409. font-size: 14px !important;
  1410. }
  1411. #research-pointers {
  1412. border-bottom: none !important;
  1413. margin-bottom: -30px !important;
  1414. }/*# sourceMappingURL=style-cse.css.map */
  1415. /* The Overlay (background) */
  1416. .overlay {
  1417. /* Height & width depends on how you want to reveal the overlay (see JS below) */
  1418. height: 0%;
  1419. width: 100%;
  1420. position: fixed; /* Stay in place */
  1421. z-index: 1100; /* Sit on top */
  1422. left: 0;
  1423. top: 0;
  1424. background-color: rgb(0,0,0); /* Black fallback color */
  1425. background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  1426. overflow-x: hidden; /* Disable horizontal scroll */
  1427. transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  1428. }
  1429. /* Position the content inside the overlay */
  1430. .overlay-content {
  1431. position: relative;
  1432. height: 100%;
  1433. top: 25%; /* 25% from the top */
  1434. width: 100%; /* 100% width */
  1435. text-align: center; /* Centered text/links */
  1436. margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  1437. }
  1438. /* The navigation links inside the overlay */
  1439. .overlay a {
  1440. padding: 8px;
  1441. text-decoration: none;
  1442. font-size: 18px;
  1443. color: white;
  1444. display: block; /* Display block instead of inline */
  1445. transition: 0.3s; /* Transition effects on hover (color) */
  1446. }
  1447. .overlay h1 {
  1448. color: white;
  1449. font-size: 20px;
  1450. font-weight: lighter;
  1451. margin-bottom: 10px;
  1452. text-decoration: underline;
  1453. }
  1454. /* When you mouse over the navigation links, change their color */
  1455. .overlay a:hover, .overlay a:focus {
  1456. color: #f1f1f1;
  1457. }
  1458. /* Position the close button (top right corner) */
  1459. .overlay .closebtn {
  1460. position: absolute;
  1461. top: 20px;
  1462. right: 45px;
  1463. font-size: 60px;
  1464. }
  1465. /* custom by rousnay */
  1466. .banner-overlay h1,
  1467. .banner-overlay h3,
  1468. .banner-overlay h4 {
  1469. color: #edf0f3;
  1470. }
  1471. .container.full-width {
  1472. padding: 0!important;
  1473. }
  1474. header.entry-header {
  1475. display: none!important;
  1476. }
  1477. .static-banner .static-banner-overlay {
  1478. top: 0;
  1479. }
  1480. .desc-block p {
  1481. margin-left: 0!important;
  1482. }
  1483. .article-cover-image {
  1484. margin-bottom: 45px;
  1485. }
  1486. .article-cover-image img{
  1487. width: 100%;
  1488. }
  1489. .article {
  1490. margin-bottom: 45px;
  1491. }
  1492. hr {
  1493. height: 0;
  1494. border: 0;
  1495. border-top: 1px solid #1f2d38;
  1496. color: inherit;
  1497. }
  1498. body.archive aside#secondary{
  1499. display: none;
  1500. }
  1501. .no-post-found {
  1502. margin: auto;
  1503. }
  1504. .portfolio-item {
  1505. border-bottom: 1px solid #999;
  1506. }
  1507. .portfolio-title {
  1508. clear: none;
  1509. }
  1510. .portfolio-logo {
  1511. outline: 2px solid #ebebeb;
  1512. }
  1513. .profile-header-text h2 {
  1514. margin: 5px 0px 10px!important;
  1515. }
  1516. .profile-header-text .contact-dets {
  1517. margin-top: 0px !important;
  1518. margin-right: 10px !important;
  1519. }
  1520. .paper-details .paper-tags .tag {
  1521. margin: 2px;
  1522. display: inline-block;
  1523. }
  1524. .parent-grid {
  1525. display: flex;
  1526. gap: 30px;
  1527. flex-wrap: wrap;
  1528. margin-bottom: 60px;
  1529. }
  1530. .grid-sub-item {
  1531. width: 30% !important;
  1532. margin: 30px 0 0 10px !important;
  1533. }
  1534. #all-faculties .faculty-stub {
  1535. display: flex;
  1536. padding: 0 !important;
  1537. }
  1538. .archive #all-faculties .stub-img-holder{
  1539. border-radius: 0!important;
  1540. }
  1541. #all-faculties .faculty-link {
  1542. width: 65%;
  1543. padding: 0px 10px;
  1544. }
  1545. #all-faculties .faculty-link:hover {
  1546. background-color: rgba(241, 136, 0, 0.15);
  1547. text-decoration: none;
  1548. }
  1549. #all-faculties .archive-faculty-details {
  1550. height: unset!important;
  1551. padding: 0!important;
  1552. }
  1553. #all-events h3 {
  1554. height: unset !important;
  1555. }
  1556. @media screen and (max-width: 991px){
  1557. .parent-grid {
  1558. justify-content: space-around;
  1559. }
  1560. .grid-sub-item {
  1561. width: 40% !important;
  1562. }
  1563. }
  1564. @media screen and (max-width: 575px){
  1565. .grid-sub-item {
  1566. width: 90% !important;
  1567. margin-left: auto!important;
  1568. margin-right: auto!important;
  1569. }
  1570. }
  1571. /* Pickers Styling--------------------------------- */
  1572. .pickers{
  1573. position: fixed;
  1574. right: 0px;
  1575. z-index: 1000;
  1576. top: 300px;
  1577. width: 50px;
  1578. display: flex;
  1579. flex-direction: column;
  1580. justify-content: center;
  1581. }
  1582. /* home page */
  1583. #faculty-carousel .car-img-holder {
  1584. margin-bottom: 0!important;
  1585. }
  1586. #faculty-carousel .faculty-details {
  1587. padding-top: 20px!important;
  1588. }
  1589. #faculty-carousel .faculty-details:hover {
  1590. background-color: rgba(241, 136, 0, 0.15);
  1591. border-bottom-left-radius: 10px;
  1592. border-bottom-right-radius: 10px;
  1593. }
  1594. #faculty-carousel .faculty-details h3 {
  1595. white-space: pre-wrap!important;
  1596. }
  1597. #faculty-carousel a.faculty-name {
  1598. text-decoration: none;
  1599. }
  1600. .event-holder .event-date {
  1601. position: relative;
  1602. margin-left: 0px!important;
  1603. margin-top: -25px;
  1604. height: 50px;
  1605. width: fit-content;
  1606. padding: 0 20px;
  1607. /* border-top-right-radius: 5px;
  1608. border-bottom-right-radius: 5px; */
  1609. }
  1610. .news-row {
  1611. display: flex;
  1612. flex-wrap: wrap;
  1613. gap: 25px;
  1614. justify-content: space-between;
  1615. }
  1616. .news-big-img {
  1617. width: calc(50% - 25px);
  1618. position: relative;
  1619. }
  1620. .news-small-img {
  1621. margin-bottom: 0!important;
  1622. max-height:unset!important;
  1623. width: calc(25% - 25px);
  1624. }
  1625. span.degree {
  1626. font-weight: normal;
  1627. font-size: 0.75em;
  1628. font-style: italic;
  1629. font-family: inherit;
  1630. }
  1631. /* nav */
  1632. #navbar {
  1633. position: fixed;
  1634. padding: 0;
  1635. margin: 0 !important;
  1636. }
  1637. #navbar #upper-nav nav {
  1638. text-align: center;
  1639. padding: 2px 0 !important;
  1640. margin: 0 !important;
  1641. justify-content: center;
  1642. align-items: center;
  1643. height: 70px;
  1644. z-index: 10;
  1645. transition: 0.5s ease-in-out;
  1646. background-color: #160c0c;
  1647. border-bottom: 4px solid #F68B1F;
  1648. box-shadow: 0px 5px 12px -5px #2F4858;
  1649. }
  1650. #navbar #upper-nav nav .logo-close-menu {
  1651. display: flex;
  1652. justify-content: space-between;
  1653. align-items: center;
  1654. }
  1655. #navbar #upper-nav nav .logo-close-menu .logo {
  1656. width: auto;
  1657. margin-right: 30px;
  1658. padding-left: 20px;
  1659. transition-duration: 0.5s;
  1660. }
  1661. #navbar #upper-nav nav .logo-close-menu .logo img {
  1662. height: 50px !important;
  1663. transition-duration: 0.5s;
  1664. }
  1665. #navbar #upper-nav nav .logo-close-menu #menu-bars {
  1666. display: none;
  1667. transition-duration: 0.4s;
  1668. cursor: pointer;
  1669. }
  1670. @media (max-width: 1100px) {
  1671. #navbar #upper-nav nav .logo-close-menu #menu-bars {
  1672. display: block !important;
  1673. margin: 0px auto;
  1674. margin-right: 10px !important;
  1675. font-size: 45px;
  1676. color: #fff;
  1677. }
  1678. }
  1679. #navbar #upper-nav nav .upper-menu-link {
  1680. display: flex;
  1681. align-items: center;
  1682. z-index: 10;
  1683. }
  1684. #navbar #upper-nav nav .upper-menu-link > li {
  1685. margin-right: 50px;
  1686. }
  1687. #navbar #upper-nav nav .upper-menu-link > li:last-child {
  1688. margin-right: 0px;
  1689. }
  1690. #navbar #upper-nav nav .upper-menu-link > li:last-child {
  1691. margin-right: 0;
  1692. }
  1693. #navbar #upper-nav nav .upper-menu-link > li > a {
  1694. color: #fff;
  1695. transition-duration: 0.3s;
  1696. font-size: 14px;
  1697. letter-spacing: 2px;
  1698. text-transform: uppercase;
  1699. font-weight: bold;
  1700. font-size: 12px;
  1701. cursor: pointer !important;
  1702. }
  1703. #navbar #upper-nav nav .upper-menu-link > li:after {
  1704. content: "";
  1705. display: block;
  1706. margin: auto;
  1707. height: 1px;
  1708. width: 0px;
  1709. background: transparent;
  1710. transition: width 0.3s ease, background-color 0.5s ease;
  1711. }
  1712. #navbar #upper-nav nav .upper-menu-link > li:hover:after {
  1713. width: 100%;
  1714. background: #fff;
  1715. }
  1716. #navbar #upper-nav nav .upper-menu-link > li.active:after {
  1717. width: 100%;
  1718. background: #fff;
  1719. }
  1720. #navbar #upper-nav nav .upper-menu-link > li .menu-content {
  1721. width: 100%;
  1722. background: #FFFBF6 !important;
  1723. color: #160c0c;
  1724. position: fixed;
  1725. top: 70px;
  1726. left: 0;
  1727. right: 0;
  1728. z-index: 500 !important;
  1729. display: none;
  1730. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.15);
  1731. }
  1732. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link {
  1733. display: flex;
  1734. align-items: start;
  1735. padding: 1rem;
  1736. padding-top: 1.5rem !important;
  1737. padding-bottom: 2rem;
  1738. }
  1739. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link .extra-item {
  1740. width: 100%;
  1741. flex: 3;
  1742. text-align: left;
  1743. }
  1744. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link .extra-item img {
  1745. width: 100%;
  1746. max-width: 350px;
  1747. }
  1748. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link .extra-item .heading-text {
  1749. font-size: 1.2rem;
  1750. font-weight: 600;
  1751. color: #994D33;
  1752. margin-top: 1rem;
  1753. }
  1754. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link .extra-item .text {
  1755. font-size: 0.8rem;
  1756. max-width: 400px;
  1757. margin-top: 0.25rem;
  1758. color: #994D33;
  1759. }
  1760. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link .link-container {
  1761. flex: 4;
  1762. display: flex;
  1763. justify-content: space-around;
  1764. }
  1765. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link ul {
  1766. display: flex;
  1767. flex-direction: column !important;
  1768. align-items: flex-start;
  1769. margin-top: 0 !important;
  1770. }
  1771. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link ul li {
  1772. padding: 0.25rem !important;
  1773. }
  1774. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link ul li:first-child {
  1775. padding-top: 0 !important;
  1776. }
  1777. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link ul li a {
  1778. font-size: 14px;
  1779. text-align: left !important;
  1780. color: #000;
  1781. letter-spacing: 1px !important;
  1782. font-weight: 500 !important;
  1783. text-transform: capitalize;
  1784. transition: all 0.35s;
  1785. }
  1786. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link ul li a:first-child {
  1787. padding-top: 0 !important;
  1788. }
  1789. #navbar #upper-nav nav .upper-menu-link > li .menu-content .all-link ul li a:hover {
  1790. opacity: 1 !important;
  1791. color: #994D33 !important;
  1792. text-decoration: underline;
  1793. }
  1794. #navbar #upper-nav nav .upper-menu-link > li .menu-content.show-mega-menu {
  1795. display: block !important;
  1796. }
  1797. @media screen and (max-width: 1000px) {
  1798. section#lower-nav nav {
  1799. display: none !important;
  1800. }
  1801. }
  1802. section#lower-nav nav {
  1803. position: static;
  1804. top: 70px;
  1805. text-align: center;
  1806. padding: 0px;
  1807. justify-content: space-evenly;
  1808. z-index: 10 !important;
  1809. transition: 0.5s ease-in-out;
  1810. background: #2c5d73;
  1811. }
  1812. section#lower-nav nav .lower-menu-link {
  1813. width: 100vw;
  1814. justify-content: space-evenly;
  1815. display: inline-flex;
  1816. }
  1817. section#lower-nav nav .lower-menu-link li {
  1818. padding: 0 !important;
  1819. }
  1820. section#lower-nav nav .lower-menu-link li > a {
  1821. margin: 0px;
  1822. color: #fff;
  1823. padding: 0.5rem !important;
  1824. transition-duration: 0.3s;
  1825. font-size: 14px;
  1826. letter-spacing: 2px;
  1827. text-transform: uppercase;
  1828. font-weight: normal;
  1829. border-radius: 0px;
  1830. cursor: pointer !important;
  1831. }
  1832. section#lower-nav nav .lower-menu-link li > a:hover {
  1833. border-radius: 0;
  1834. color: #eeffb0;
  1835. text-decoration: none !important;
  1836. }
  1837. section#lower-nav nav .lower-menu-link li.active > a {
  1838. border-radius: 0;
  1839. color: #eeffb0 !important;
  1840. text-decoration: none !important;
  1841. }
  1842. section#lower-nav nav .lower-menu-link li:first-of-type > a:hover {
  1843. background: none;
  1844. }
  1845. section#lower-nav nav .lower-menu-link li > a > img {
  1846. height: 40px !important;
  1847. }
  1848. section#lower-nav nav .lower-menu-link li > a > img:hover {
  1849. background-color: rgba(255, 255, 255, 0);
  1850. }
  1851. section#lower-nav nav .lower-menu-link .menu-content {
  1852. width: 100%;
  1853. background: #F1FBFF !important;
  1854. color: #160c0c;
  1855. position: fixed;
  1856. top: 111px;
  1857. left: 0;
  1858. right: 0;
  1859. transition-duration: 0.4s;
  1860. z-index: 500 !important;
  1861. display: none;
  1862. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.15);
  1863. }
  1864. section#lower-nav nav .lower-menu-link .menu-content .all-link {
  1865. display: flex;
  1866. align-items: start;
  1867. padding: 1rem;
  1868. padding-top: 1.5rem !important;
  1869. padding-bottom: 2rem;
  1870. }
  1871. section#lower-nav nav .lower-menu-link .menu-content .all-link .extra-item {
  1872. width: 100%;
  1873. flex: 3;
  1874. text-align: left;
  1875. }
  1876. section#lower-nav nav .lower-menu-link .menu-content .all-link .extra-item img {
  1877. width: 100%;
  1878. max-width: 350px;
  1879. }
  1880. section#lower-nav nav .lower-menu-link .menu-content .all-link .extra-item .heading-text {
  1881. font-size: 1.2rem;
  1882. font-weight: 600;
  1883. color: #2c5d73;
  1884. margin-top: 1rem;
  1885. }
  1886. section#lower-nav nav .lower-menu-link .menu-content .all-link .extra-item .text {
  1887. font-size: 0.8rem;
  1888. max-width: 400px;
  1889. margin-top: 0.25rem;
  1890. color: #2c5d73;
  1891. }
  1892. section#lower-nav nav .lower-menu-link .menu-content .all-link .link-container {
  1893. flex: 4;
  1894. display: flex;
  1895. justify-content: space-around;
  1896. }
  1897. section#lower-nav nav .lower-menu-link .menu-content .all-link ul {
  1898. display: flex;
  1899. flex-direction: column !important;
  1900. align-items: flex-start;
  1901. margin-top: 0 !important;
  1902. }
  1903. section#lower-nav nav .lower-menu-link .menu-content .all-link ul li {
  1904. padding: 0.25rem;
  1905. }
  1906. section#lower-nav nav .lower-menu-link .menu-content .all-link ul li:first-child {
  1907. padding-top: 0 !important;
  1908. }
  1909. section#lower-nav nav .lower-menu-link .menu-content .all-link ul li a {
  1910. font-size: 14px;
  1911. text-align: left !important;
  1912. letter-spacing: 1px !important;
  1913. color: #000;
  1914. font-weight: 500 !important;
  1915. text-transform: capitalize;
  1916. transition: all 0.35s;
  1917. }
  1918. section#lower-nav nav .lower-menu-link .menu-content .all-link ul li a:first-child {
  1919. padding-top: 0 !important;
  1920. }
  1921. section#lower-nav nav .lower-menu-link .menu-content .all-link ul li a:hover {
  1922. opacity: 1 !important;
  1923. color: #2c5d73 !important;
  1924. text-decoration: underline !important;
  1925. }
  1926. section#lower-nav nav .lower-menu-link > li .menu-content.show-mega-menu {
  1927. display: block !important;
  1928. }
  1929. section#lower-nav nav ul > li > a > img {
  1930. height: 30px !important;
  1931. }
  1932. #navbar.nav-resp #upper-nav nav {
  1933. height: 55px !important;
  1934. }
  1935. #navbar.nav-resp #upper-nav nav .logo-close-menu .logo img {
  1936. height: 35px !important;
  1937. }
  1938. #navbar.nav-resp #upper-nav nav .logo-close-menu #menu-bars {
  1939. font-size: 30px;
  1940. }
  1941. #navbar.nav-resp #upper-nav nav .upper-menu-link > li .menu-content {
  1942. top: 55px !important;
  1943. }
  1944. @media screen and (max-width: 1000px) {
  1945. #navbar.nav-resp #lower-nav nav {
  1946. display: none !important;
  1947. }
  1948. }
  1949. #navbar.nav-resp #lower-nav nav .lower-menu-link {
  1950. margin-top: 0px;
  1951. width: 100vw;
  1952. justify-content: space-evenly;
  1953. display: inline-flex;
  1954. }
  1955. #navbar.nav-resp #lower-nav nav .lower-menu-link .menu-item {
  1956. padding: 0 !important;
  1957. }
  1958. #navbar.nav-resp #lower-nav nav .lower-menu-link .menu-content {
  1959. top: 96px !important;
  1960. }
  1961. #search-close {
  1962. width: 100px;
  1963. border-radius: 40px;
  1964. background-color: #F68B1F;
  1965. margin-top: 30px;
  1966. margin-right: 30px;
  1967. }
  1968. .overlay-content {
  1969. overflow: hidden;
  1970. }
  1971. .overlay-content label {
  1972. display: inline-block;
  1973. }
  1974. .overlay-content h4 {
  1975. display: inline-block;
  1976. margin: 0px 20px;
  1977. }
  1978. .overlay-content div a {
  1979. display: inline-block;
  1980. text-decoration: underline;
  1981. }
  1982. .overlay-content div h6 {
  1983. display: inline-block;
  1984. }
  1985. #search-bar {
  1986. width: 60%;
  1987. display: inline-block;
  1988. }
  1989. #search-button {
  1990. width: 300px;
  1991. display: inline-block;
  1992. border-radius: 30px;
  1993. margin-left: 20px;
  1994. background: #485680;
  1995. }
  1996. #search-modal {
  1997. overflow: hidden;
  1998. }
  1999. #search-button:hover {
  2000. background-color: #F68B1F;
  2001. }/*# sourceMappingURL=navbar.css.map */
  2002. /* Archive Hero section */
  2003. #archive-hero {
  2004. padding: 2rem 0 4rem;
  2005. background: #f3f0ec;
  2006. }
  2007. #archive-hero .content {
  2008. display: flex;
  2009. align-items: start;
  2010. }
  2011. #archive-hero .content .left-content {
  2012. padding: 1rem;
  2013. padding-left: 0 !important;
  2014. flex: 1;
  2015. }
  2016. #archive-hero .content .left-content .main-title {
  2017. font-size: 2.2rem;
  2018. font-weight: 500;
  2019. color: #000000;
  2020. }
  2021. #archive-hero .content .left-content .short-details {
  2022. margin-top: 1.5rem;
  2023. font-size: 1.1rem;
  2024. font-weight: 400;
  2025. }
  2026. #archive-hero .content .left-content .links {
  2027. margin-top: 2rem;
  2028. display: flex;
  2029. gap: 1.8rem;
  2030. }
  2031. #archive-hero .content .left-content .links a {
  2032. height: 1.3rem;
  2033. }
  2034. #archive-hero .content .left-content .links a:hover {
  2035. transform: scale(1.1);
  2036. opacity: 1 !important;
  2037. }
  2038. #archive-hero .content .left-content .links a img {
  2039. height: 100%;
  2040. }
  2041. #archive-hero .content .right-content {
  2042. padding: 0 0 1rem 2rem !important;
  2043. flex: 1;
  2044. align-self: end;
  2045. }
  2046. #archive-hero .content .right-content img {
  2047. width: 100%;
  2048. }