theme-styles.css 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606
  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. *, *::before, *::after {
  4. box-sizing: border-box;
  5. }
  6. * {
  7. font-family: "Open Sans", sans-serif;
  8. margin: 0px;
  9. padding: 0px;
  10. }
  11. p {
  12. max-width: 800px;
  13. font-size: 16px;
  14. }
  15. img {
  16. border-radius: 10px;
  17. }
  18. .grid {
  19. gap: 30px;
  20. }
  21. body {
  22. overflow-y: scroll;
  23. }
  24. section {
  25. margin: 0 auto;
  26. padding: 0px !important;
  27. }
  28. header {
  29. margin: 0px;
  30. padding: 0px !important;
  31. height: 100vh;
  32. overflow: hidden;
  33. }
  34. main {
  35. position: relative;
  36. padding: 0px !important;
  37. background-color: #fff;
  38. }
  39. h1 {
  40. font-size: 40px !important;
  41. letter-spacing: 2px !important;
  42. line-height: 110%;
  43. }
  44. button {
  45. margin: 20px auto;
  46. margin-bottom: 10px;
  47. max-width: 300px;
  48. font-size: 20px;
  49. border-radius: 0px;
  50. border: none;
  51. background: #0b1419;
  52. border-radius: 4px;
  53. }
  54. button:hover {
  55. background: #F68B1F;
  56. }
  57. .container {
  58. margin: 0xp auto;
  59. padding: 10px 30px;
  60. overflow: hidden;
  61. }
  62. .grid {
  63. justify-content: center;
  64. padding: 0px 5px;
  65. }
  66. #search-close {
  67. width: 100px;
  68. border-radius: 40px;
  69. background-color: #F68B1F;
  70. margin-top: 30px;
  71. margin-right: 30px;
  72. }
  73. .overlay-content {
  74. overflow: hidden;
  75. }
  76. .overlay-content label {
  77. display: inline-block;
  78. }
  79. .overlay-content h4 {
  80. display: inline-block;
  81. margin: 0px 20px;
  82. }
  83. .overlay-content div a {
  84. display: inline-block;
  85. text-decoration: underline;
  86. }
  87. .overlay-content div h6 {
  88. display: inline-block;
  89. }
  90. #search-bar {
  91. width: 60%;
  92. display: inline-block;
  93. }
  94. #search-button {
  95. width: 300px;
  96. display: inline-block;
  97. border-radius: 30px;
  98. margin-left: 20px;
  99. background: #485680;
  100. }
  101. #search-modal {
  102. overflow: hidden;
  103. }
  104. #search-button:hover {
  105. background-color: #F68B1F;
  106. }
  107. #first-nav > ul > img {
  108. transition-duration: 0.5s;
  109. }
  110. section#first-nav-section nav {
  111. position: fixed;
  112. text-align: center;
  113. padding: 0px;
  114. justify-content: space-evenly;
  115. height: 70px;
  116. z-index: 10;
  117. transition: 0.5s ease-in-out;
  118. background-color: #0b1419;
  119. border-bottom: 4px solid #F68B1F;
  120. box-shadow: 0px 5px 12px -5px #2F4858;
  121. }
  122. section#first-nav-section nav ul {
  123. align-items: center;
  124. z-index: 3;
  125. }
  126. section#first-nav-section nav ul img {
  127. height: 50px;
  128. width: auto;
  129. margin-right: 30px;
  130. padding-left: 20px;
  131. }
  132. section#first-nav-section nav ul > li {
  133. margin-right: 50px;
  134. }
  135. section#first-nav-section nav ul > li:last-child {
  136. margin-right: 0px;
  137. }
  138. section#first-nav-section nav ul > li:last-child {
  139. margin-right: 0;
  140. }
  141. section#first-nav-section nav ul > li > a {
  142. color: #fff;
  143. transition-duration: 0.3s;
  144. font-size: 14px;
  145. letter-spacing: 2px;
  146. text-transform: uppercase;
  147. font-weight: bold;
  148. font-size: 12px;
  149. }
  150. section#first-nav-section nav ul > li:after {
  151. content: "";
  152. display: block;
  153. margin: auto;
  154. height: 1px;
  155. width: 0px;
  156. background: transparent;
  157. transition: width 0.3s ease, background-color 0.5s ease;
  158. }
  159. section#first-nav-section nav ul > li:hover:after {
  160. width: 100%;
  161. background: #fff;
  162. }
  163. section#first-nav-section .nav-resp {
  164. height: 50px;
  165. background-color: #0b1419;
  166. border-bottom: 4px solid #F68B1F;
  167. box-shadow: 0px 5px 12px -5px #2F4858;
  168. }
  169. section#first-nav-section .nav-resp ul img {
  170. height: 30px !important;
  171. padding-left: 20px;
  172. }
  173. section#first-nav-section .nav-resp #menu-bars {
  174. padding-top: 2px;
  175. }
  176. section#second-nav-section nav {
  177. position: fixed;
  178. top: 70px;
  179. text-align: center;
  180. padding: 0px;
  181. justify-content: space-evenly;
  182. height: 40px;
  183. z-index: 10;
  184. transition: 0.5s ease-in-out;
  185. background: #0b1419;
  186. }
  187. section#second-nav-section nav ul {
  188. margin-top: 0px;
  189. width: 100vw;
  190. justify-content: space-evenly;
  191. display: inline-flex;
  192. }
  193. section#second-nav-section nav ul li > a {
  194. margin: 0px;
  195. color: #fff;
  196. transition-duration: 0.3s;
  197. font-size: 14px;
  198. letter-spacing: 2px;
  199. text-transform: uppercase;
  200. font-weight: normal;
  201. font-size: 12px;
  202. border-radius: 0px;
  203. }
  204. section#second-nav-section nav ul li > a:hover {
  205. border-radius: 0;
  206. background: #606060;
  207. }
  208. section#second-nav-section .second-nav-active {
  209. height: 40px;
  210. top: 50px;
  211. background-color: #0b1419;
  212. }
  213. #top-search {
  214. width: 140px;
  215. border-radius: 0;
  216. height: 30px;
  217. }
  218. #banner {
  219. position: fixed;
  220. top: 0;
  221. height: 100vhpx;
  222. width: 100%;
  223. margin: 0px !important;
  224. padding: 0px !important;
  225. background-position: center;
  226. background-size: cover;
  227. }
  228. #search {
  229. height: 80px;
  230. display: flex;
  231. flex-direction: row;
  232. background: #160c0c;
  233. margin: 0 auto;
  234. }
  235. #search input {
  236. border-radius: 0px;
  237. border: none;
  238. margin: 10px 0px 10px 30px;
  239. max-width: 60%;
  240. height: 60px;
  241. background-color: #ColorThree;
  242. }
  243. .white-bg {
  244. width: 100%;
  245. padding: 60px 0px;
  246. background: #fff;
  247. text-align: center;
  248. color: #160c0c;
  249. }
  250. .white-bg h1 {
  251. font-size: 100px;
  252. font-family: "DM Serif Text", serif;
  253. color: #160c0c;
  254. }
  255. .white-bg p {
  256. color: #160c0c;
  257. font-family: "Open Sans", sans-serif;
  258. font-size: 20px;
  259. }
  260. .white-bg #us-hero-text {
  261. padding-top: 30px;
  262. text-align: center;
  263. }
  264. .white-bg p {
  265. font-family: "Open Sans", sans-serif;
  266. font-size: 16px;
  267. line-height: 30px;
  268. text-align: center;
  269. color: #160c0c;
  270. width: 90%;
  271. margin: 0 auto;
  272. margin-top: 50px;
  273. margin-bottom: 30px;
  274. }
  275. .white-bg h2, .white-bg h1, .white-bg h3 {
  276. font-family: "DM Serif Text", serif;
  277. font-weight: bold;
  278. color: #160c0c;
  279. }
  280. .white-bg h2 .degree, .white-bg h1 .degree, .white-bg h3 .degree {
  281. font-weight: normal;
  282. font-size: 12px;
  283. }
  284. .white-bg h2 {
  285. font-family: "DM Serif Text", serif;
  286. font-size: 60px;
  287. margin: 0px;
  288. line-height: 90%;
  289. }
  290. .white-bg h3 {
  291. font-size: 25px;
  292. margin: 0px;
  293. padding: 0px;
  294. line-height: 80%;
  295. letter-spacing: 1px;
  296. }
  297. .white-bg h1 {
  298. font-size: 25px;
  299. margin: 0px;
  300. padding: 50px 5px 10px 5px;
  301. line-height: 130%;
  302. letter-spacing: 5px;
  303. }
  304. .white-bg h1 span {
  305. color: #F68B1F;
  306. font-family: "DM Serif Text", serif;
  307. font-weight: bold;
  308. }
  309. #us-imgs {
  310. width: 100%;
  311. min-height: 600px;
  312. padding-top: 40px;
  313. font: "DM Serif Text", serif;
  314. justify-content: space-around;
  315. gap: 30px;
  316. text-align: center;
  317. margin: 0px auto;
  318. }
  319. #us-imgs div {
  320. margin: 0px auto;
  321. }
  322. .img-container {
  323. position: relative;
  324. overflow: hidden;
  325. width: 100%;
  326. height: 100%;
  327. box-shadow: 4px 4px 4px #333;
  328. }
  329. .img-container .small {
  330. width: 300px;
  331. height: 300px;
  332. }
  333. #us-imgs img {
  334. filter: grayscale(20%);
  335. height: 100%;
  336. -o-object-fit: cover;
  337. object-fit: cover;
  338. -o-object-position: center;
  339. object-position: center;
  340. transition-duration: 1s;
  341. }
  342. #us-imgs img:hover {
  343. scale: 1.2;
  344. filter: contrast(120%) grayscale(0%);
  345. }
  346. .img-container:hover .overlay {
  347. height: 200px;
  348. }
  349. #us-imgs > div {
  350. background: #fff;
  351. max-width: 600px;
  352. }
  353. #us-imgs > div > div {
  354. font-family: "Open Sans", sans-serif;
  355. font-size: 18px;
  356. line-height: 100%;
  357. text-align: left;
  358. }
  359. #us-imgs > div > div p {
  360. margin-top: 20px;
  361. font-family: "DM Serif Text", serif;
  362. font-weight: normal;
  363. font-size: 12px;
  364. letter-spacing: 2px;
  365. line-height: 110%;
  366. color: #fff;
  367. }
  368. #us-imgs > div > div h2 {
  369. margin-top: 10px;
  370. margin-bottom: 10px;
  371. font-family: "DM Serif Text", serif;
  372. text-transform: uppercase;
  373. color: #160c0c;
  374. font-size: 20px;
  375. text-align: left;
  376. }
  377. #us-imgs > div > div p {
  378. color: #000;
  379. font-size: 16px;
  380. font-weight: normal;
  381. font-family: "Open Sans", sans-serif;
  382. text-align: left;
  383. letter-spacing: normal;
  384. margin: 5px !important;
  385. padding: 0px !important;
  386. line-height: 1.4rem;
  387. }
  388. #us-imgs > div > div a {
  389. color: #F68B1F;
  390. font-weight: normal;
  391. text-transform: uppercase;
  392. font-size: 14px;
  393. text-align: left;
  394. margin-top: 20px;
  395. margin-bottom: 40px;
  396. margin-left: 5px;
  397. }
  398. #us-imgs > div > div a:hover {
  399. color: #F68B1F;
  400. }
  401. .img-cont {
  402. overflow: hidden;
  403. text-align: center;
  404. height: 300px;
  405. border-radius: 10px;
  406. }
  407. .img-cont img {
  408. width: 100%;
  409. height: 100%;
  410. -o-object-fit: cover;
  411. object-fit: cover;
  412. -o-object-position: center;
  413. object-position: center;
  414. }
  415. #research-pointers {
  416. margin: 60px 0px;
  417. padding: 50px 0px;
  418. border-top: 1px solid #000;
  419. border-bottom: 1px solid #000;
  420. }
  421. #research-pointers p {
  422. margin: 20px 0px;
  423. }
  424. #dept-notices {
  425. background-image: url("../img/campus_07.jpg");
  426. text-align: center;
  427. }
  428. #dept-notices h1 {
  429. font-family: "DM Serif Text", serif;
  430. letter-spacing: 3px;
  431. }
  432. #dept-notices p {
  433. font-size: 16px;
  434. }
  435. .mid-roll {
  436. min-height: 600px;
  437. width: 100%;
  438. background-size: cover;
  439. background-position: center;
  440. background-attachment: fixed;
  441. padding: 0;
  442. }
  443. .bg-tint {
  444. width: 100%;
  445. height: 100%;
  446. min-height: 600px;
  447. background-color: rgba(17, 2, 32, 0.8196078431);
  448. }
  449. .bg-tint .container {
  450. min-height: 800px;
  451. display: flex;
  452. flex-direction: column;
  453. justify-content: center;
  454. gap: 30px;
  455. margin: 0 auto;
  456. padding: 50px 30px 20px 30px;
  457. }
  458. .bg-tint .container h2 {
  459. font-family: "Open Sans", sans-serif;
  460. font-weight: normal;
  461. font-size: 30px;
  462. letter-spacing: 2px;
  463. margin-bottom: 50px;
  464. line-height: 100%;
  465. }
  466. .bg-tint .container p {
  467. margin: 0px auto;
  468. font-family: "Open Sans", sans-serif;
  469. font-size: 14px;
  470. font-weight: normal;
  471. letter-spacing: 2px;
  472. margin-bottom: 35px;
  473. color: #fff;
  474. }
  475. .bg-tint .container .img-cont {
  476. height: 350px;
  477. max-width: 400px;
  478. overflow: hidden;
  479. border: 2px solid #fff;
  480. margin-bottom: 30px;
  481. }
  482. .bg-tint .container .img-cont img {
  483. transition-duration: 0.5s;
  484. }
  485. .bg-tint .container .img-cont img:hover {
  486. scale: 1.1;
  487. }
  488. .news-big-img-holder {
  489. border-radius: 10px;
  490. height: 400px;
  491. overflow: hidden;
  492. width: auto;
  493. filter: brightness(40%);
  494. transition-duration: 0.6s;
  495. box-shadow: 3px 3px 15px rgba(51, 51, 51, 0.2549019608);
  496. }
  497. .news-big-img-holder img {
  498. height: 400px;
  499. width: 100%;
  500. }
  501. .news-big-img-holder:hover {
  502. filter: brightness(70%);
  503. }
  504. .news-big-img-text {
  505. text-align: left;
  506. margin-left: 20px;
  507. transform: translateY(-100px);
  508. }
  509. .news-big-img-text h4 {
  510. color: #fff;
  511. font-size: 14px;
  512. margin: 0px !important;
  513. padding: 0px;
  514. z-index: 2;
  515. }
  516. .news-big-img-text h4 a {
  517. text-decoration: none;
  518. color: #fff;
  519. }
  520. .news-big-img-text h5 {
  521. font-size: 12px;
  522. margin: 0px;
  523. padding: 0px;
  524. }
  525. .news-big-img-text a p {
  526. font-size: 16px;
  527. color: #fff;
  528. text-align: left;
  529. margin: 10px 0px;
  530. padding: 0px;
  531. line-height: 18px;
  532. }
  533. .news-small-img {
  534. border-radius: 10px;
  535. padding: 10px;
  536. background-color: #fff;
  537. box-shadow: 3px 3px 15px rgba(51, 51, 51, 0.3882352941);
  538. margin-bottom: 20px;
  539. max-height: 400px;
  540. }
  541. .news-sm-img-holder {
  542. height: 260px;
  543. overflow: hidden;
  544. filter: brightness(70%);
  545. transition-duration: 0.6s;
  546. }
  547. .news-sm-img-holder img {
  548. height: 100%;
  549. width: 100%;
  550. -o-object-fit: cover;
  551. object-fit: cover;
  552. }
  553. .news-sm-img-holder:hover {
  554. filter: brightness(90%);
  555. }
  556. .news-sm-img-text {
  557. text-align: left;
  558. margin-left: 20px;
  559. }
  560. .news-sm-img-text h4 {
  561. color: #000;
  562. font-size: 14px;
  563. margin: 0px !important;
  564. padding: 0px;
  565. z-index: 10;
  566. }
  567. .news-sm-img-text h4 a {
  568. text-decoration: none;
  569. color: #000;
  570. }
  571. .news-sm-img-text h5 {
  572. color: #000;
  573. font-size: 12px;
  574. margin: 5px 0px;
  575. padding: 0px;
  576. }
  577. .news-sm-img-text a p {
  578. font-size: 16px;
  579. color: #000;
  580. text-align: left;
  581. margin: 10px 0px;
  582. padding: 0px;
  583. line-height: 18px;
  584. }
  585. #success {
  586. padding-bottom: 60px;
  587. }
  588. #success > .grid > div {
  589. background: #160c0c;
  590. border: 2px solid #2F4858;
  591. text-align: center;
  592. }
  593. #success > .grid > div img {
  594. height: 400px;
  595. width: auto;
  596. -o-object-fit: cover;
  597. object-fit: cover;
  598. }
  599. #success > .grid > div p {
  600. color: #fff;
  601. letter-spacing: 1px;
  602. text-align: left;
  603. font-weight: normal;
  604. font-size: 16px;
  605. min-height: 100px;
  606. margin-top: 10px;
  607. }
  608. #success > .grid > div h2 {
  609. font-family: "DM Serif Text", serif;
  610. font-size: 40px;
  611. color: #fff;
  612. padding-top: 30px;
  613. padding-bottom: 10px;
  614. margin-bottom: 10px;
  615. }
  616. #events {
  617. min-height: 800px;
  618. text-align: center;
  619. background-image: url("../img/campus_01.jpg");
  620. }
  621. #events .bg-tint {
  622. min-height: 800px;
  623. padding: 50px 0px;
  624. background: rgba(81, 75, 88, 0.4784313725);
  625. }
  626. .event-holder {
  627. border-radius: 20px;
  628. min-height: 500px;
  629. background: #fff;
  630. }
  631. .event-holder .event-date {
  632. position: relative;
  633. margin-left: 20px;
  634. margin-top: -35px;
  635. height: 70px;
  636. width: 70px;
  637. background-color: #0b1419;
  638. display: flex;
  639. flex-direction: column;
  640. justify-content: center;
  641. }
  642. .event-holder .event-date h3 {
  643. margin: 0px auto;
  644. text-align: center;
  645. color: #fff;
  646. font-size: 20px;
  647. line-height: 22px;
  648. font-family: "DM Serif Text", serif;
  649. font-weight: bolder;
  650. }
  651. .event-holder .event-details {
  652. text-align: left;
  653. margin: 10px;
  654. }
  655. .event-holder .event-details h2 {
  656. color: #000;
  657. font-size: 22px;
  658. font-weight: bolder;
  659. margin: 0px auto;
  660. text-transform: uppercase;
  661. }
  662. .event-holder .event-details h3 {
  663. color: rgba(0, 0, 0, 0.6039215686);
  664. font-size: 16px;
  665. margin: 10px 0px;
  666. }
  667. .event-img-holder {
  668. height: 300px;
  669. overflow: hidden;
  670. background: #333;
  671. }
  672. .event-img-holder img {
  673. height: 300px;
  674. width: 100%;
  675. -o-object-fit: cover;
  676. object-fit: cover;
  677. transition-duration: 0.6s;
  678. }
  679. .event-img-holder img:hover {
  680. scale: 1.05;
  681. }
  682. #stats > div > div > div {
  683. padding: 20px 0px;
  684. text-align: center;
  685. margin: 20px auto;
  686. padding-right: 20px;
  687. color: #fff;
  688. border-right: 1px solid #fff;
  689. }
  690. #stats > div > div > div h1 {
  691. color: #fff;
  692. margin-bottom: 20px;
  693. }
  694. #stats > div > div > div:last-child {
  695. border-right: none;
  696. }
  697. #admissions {
  698. padding: 50px 0px 0px 0px !important;
  699. }
  700. #admissions img {
  701. height: 400px;
  702. -o-object-fit: cover;
  703. object-fit: cover;
  704. }
  705. #admissions p {
  706. font-family: "Open Sans", sans-serif;
  707. font-size: 20px;
  708. text-align: center;
  709. color: #160c0c;
  710. width: 90%;
  711. margin: 0 auto;
  712. margin-top: 50px;
  713. margin-bottom: 30px;
  714. }
  715. #testimonial-text {
  716. background: #2F4858;
  717. height: 150px;
  718. max-width: 450px;
  719. text-align: center;
  720. position: relative;
  721. top: -75px;
  722. margin: 0 auto;
  723. padding-top: 10px;
  724. box-shadow: 2px 2px 6px #333;
  725. }
  726. #testimonial-text blockquote {
  727. padding: 5px 0px;
  728. margin: 0px 20px;
  729. color: white;
  730. font-family: "Open Sans", sans-serif;
  731. font-weight: normal;
  732. font-size: 14px;
  733. }
  734. #stu_id {
  735. padding: 10px 30px;
  736. }
  737. #stu_id h2 {
  738. padding: 5px;
  739. font-size: 20px;
  740. color: #fff;
  741. margin: 0px 0px;
  742. font-weight: normal;
  743. text-decoration: none;
  744. text-align: right;
  745. }
  746. #stu_id h3 {
  747. font-size: 18px;
  748. color: white;
  749. margin: 0px auto;
  750. text-align: center;
  751. font-weight: lighter;
  752. text-align: right;
  753. }
  754. .research-block {
  755. padding-block: 20px;
  756. }
  757. #research > div > div > div > div.research-img {
  758. height: 300px;
  759. width: 100%;
  760. overflow: hidden;
  761. border: 1px solid #F68B1F;
  762. border-bottom: 10px solid #F68B1F;
  763. }
  764. #research > div > div > div > div.research-img > img {
  765. transition-duration: 0.5s;
  766. height: 300px;
  767. width: 100%;
  768. -o-object-fit: cover;
  769. object-fit: cover;
  770. -o-object-position: center;
  771. object-position: center;
  772. margin: 0px;
  773. padding: 0px;
  774. }
  775. #research > div > div > div > div.research-img > img:hover {
  776. scale: 1.2;
  777. }
  778. #research > div > div > div > div.research-text > h2 {
  779. font-family: "DM Serif Text", serif;
  780. font-size: 20px;
  781. font-weight: normal;
  782. color: #160c0c;
  783. padding: 10px 5px;
  784. margin: 10px 0px;
  785. text-align: center;
  786. }
  787. .research-text {
  788. text-align: left;
  789. }
  790. .research-text p {
  791. text-align: left;
  792. font-size: 18px;
  793. margin: 5px 0px;
  794. padding: 5px 5px;
  795. }
  796. .research-text a {
  797. color: #333;
  798. text-decoration: underline;
  799. }
  800. .research-text a:hover {
  801. color: #2F4858;
  802. }
  803. .research-text h2 {
  804. font-family: "Open Sans", sans-serif;
  805. font-size: 18px;
  806. color: #fff !important;
  807. background: #160c0c;
  808. }
  809. #testimonial-block > h1 {
  810. padding: 0px;
  811. margin: 10px 0px;
  812. font-size: 35px;
  813. letter-spacing: 3px;
  814. }
  815. #testimonial-block > h1 > a {
  816. font-family: "DM Serif Text", serif;
  817. color: #fff;
  818. padding: 0px;
  819. }
  820. #campus-banner {
  821. height: 500px;
  822. width: 100%;
  823. background: url("../img/campus_02.jpg") no-repeat;
  824. background-size: cover;
  825. background-position: center;
  826. }
  827. #campus-life > h3 {
  828. color: #160c0c;
  829. font-size: 20px;
  830. letter-spacing: 1px;
  831. box-shadow: none;
  832. font-family: "DM Serif Text", serif;
  833. margin: 30px auto;
  834. }
  835. #campus-life {
  836. padding-bottom: 30px !important;
  837. min-height: 500px;
  838. }
  839. #us-imgs > div > div > h2 {
  840. text-transform: uppercase;
  841. font-family: "Open Sans", sans-serif;
  842. font-size: 24px;
  843. font-weight: 900;
  844. padding: 10px 5px;
  845. text-align: left;
  846. color: #000;
  847. text-shadow: none;
  848. }
  849. #socials h1 {
  850. color: #160c0c;
  851. margin: 0px auto;
  852. text-align: center;
  853. }
  854. #socials ul {
  855. margin-bottom: 0px;
  856. }
  857. #socials ul > li {
  858. display: inline;
  859. }
  860. #socials ul > li > a > img {
  861. width: 60px;
  862. margin-right: 10px;
  863. }
  864. footer {
  865. position: relative;
  866. z-index: 30 !important;
  867. }
  868. #footer1 {
  869. z-index: 10;
  870. height: 400px;
  871. background: url("../img/footer2.png") no-repeat;
  872. background-size: cover;
  873. background-position: top;
  874. }
  875. footer.container-fluid {
  876. border-top: 10px solid #C85688;
  877. overflow: hidden;
  878. text-align: left;
  879. margin: 0px;
  880. padding: 0px !important;
  881. background: #160c0c;
  882. min-height: 350px;
  883. }
  884. footer.container-fluid h3 {
  885. margin: 10px auto;
  886. margin: 30px 0px;
  887. font-family: "Open Sans", sans-serif;
  888. font-size: 20px;
  889. color: #fff;
  890. font-weight: normal;
  891. text-decoration: underline;
  892. }
  893. footer.container-fluid ul {
  894. padding: 0px;
  895. }
  896. footer.container-fluid ul > li {
  897. list-style: none;
  898. margin: 0px;
  899. padding: 0px;
  900. line-height: 110%;
  901. }
  902. footer.container-fluid ul > li a {
  903. text-decoration: none;
  904. color: #fff;
  905. font-size: 14px;
  906. font-weight: normal;
  907. font-family: "Open Sans", sans-serif;
  908. }
  909. footer.container-fluid ul > li a:hover {
  910. color: #F68B1F;
  911. text-decoration: underline;
  912. }
  913. #fine-print {
  914. text-align: center;
  915. margin: 10px auto;
  916. height: 50px;
  917. border-top: 1px solid #F68B1F;
  918. }
  919. #fine-print p {
  920. font-size: 12px;
  921. display: inline-flex;
  922. }
  923. #fine-print ul {
  924. display: inline;
  925. }
  926. #fine-print ul > li {
  927. display: inline;
  928. padding: 10px;
  929. font-size: 12px;
  930. letter-spacing: 1px;
  931. }
  932. #menu-bars {
  933. display: none;
  934. margin: 0px auto;
  935. padding-top: 13px;
  936. font-size: 45px;
  937. }
  938. #myNav > div > div > a {
  939. margin: 0 auto;
  940. }
  941. .accredition {
  942. min-height: 100px;
  943. }
  944. .accredition #accredition-img {
  945. height: 100px;
  946. width: auto;
  947. -o-object-fit: contain;
  948. object-fit: contain;
  949. margin: 50px 0px;
  950. }
  951. #accr h2 {
  952. padding: 30px 0px 0px 0px;
  953. font-size: 40px;
  954. }
  955. @media (max-width: 1100px) {
  956. #first-nav > ul {
  957. position: relative;
  958. width: 100%;
  959. left: 0px;
  960. }
  961. #first-nav > ul > img {
  962. width: 350px;
  963. -o-object-fit: contain;
  964. object-fit: contain;
  965. margin-right: auto;
  966. transition-duration: 0.5s;
  967. }
  968. #first-nav > ul > li {
  969. display: none;
  970. }
  971. #first-nav > ul > li:last-child {
  972. display: inline-block;
  973. margin-right: auto;
  974. width: 40px;
  975. }
  976. #top-search {
  977. display: none;
  978. }
  979. #menu-bars {
  980. display: inline-block;
  981. }
  982. .banner-overlay {
  983. margin: 0 auto;
  984. }
  985. .banner-overlay h1 {
  986. text-align: center;
  987. width: 300px !important;
  988. font-size: 30px !important;
  989. margin: 0px auto;
  990. }
  991. }
  992. @media (max-width: 576px) {
  993. #first-nav > ul > img {
  994. width: 170px;
  995. }
  996. #search > button.filled {
  997. display: none;
  998. }
  999. body > main > section:nth-child(2) > div > h1 {
  1000. font-size: 60px;
  1001. }
  1002. #video-text > h1 {
  1003. margin-top: 30%;
  1004. font-size: 50px;
  1005. }
  1006. #cta {
  1007. display: flex;
  1008. flex-direction: column;
  1009. }
  1010. #cta > button:nth-child(2) {
  1011. display: none;
  1012. }
  1013. #success > h1 {
  1014. font-size: 40px;
  1015. }
  1016. .event-details {
  1017. margin: 10px !important;
  1018. padding: 0px !important;
  1019. }
  1020. #events > div > div > div.event-content > h2 {
  1021. font-size: 12px;
  1022. }
  1023. #events > div > div > div.event-content > h2 {
  1024. font-size: 10px;
  1025. }
  1026. #events > div > div > div.event-content {
  1027. width: 100%;
  1028. }
  1029. #events > div > h1 {
  1030. font-size: 25px;
  1031. }
  1032. #campus-life > h1 {
  1033. font-size: 60px;
  1034. }
  1035. .white-bg h1 {
  1036. font-size: 40px !important;
  1037. }
  1038. .white-bg h2 {
  1039. font-size: 30px;
  1040. }
  1041. #second-nav {
  1042. display: none;
  1043. }
  1044. .banner-overlay {
  1045. margin: 0 auto;
  1046. }
  1047. .banner-overlay h1 {
  1048. text-align: center;
  1049. width: 300px !important;
  1050. font-size: 30px !important;
  1051. margin: 0px auto;
  1052. }
  1053. .banner-slider-button {
  1054. display: none;
  1055. }
  1056. }
  1057. .slider-single-div {
  1058. width: 100%;
  1059. height: 100%;
  1060. }
  1061. .banner-slider {
  1062. z-index: -6;
  1063. width: 100vw;
  1064. height: 100vh;
  1065. position: relative;
  1066. }
  1067. .banner-slider ul {
  1068. margin: 0;
  1069. padding: 0;
  1070. list-style: none;
  1071. }
  1072. .slide {
  1073. position: absolute;
  1074. inset: 0;
  1075. opacity: 0;
  1076. transition: 200ms opacity ease-in-out;
  1077. transition-delay: 600ms;
  1078. }
  1079. .slide img {
  1080. display: block;
  1081. width: 100%;
  1082. height: 100%;
  1083. -o-object-fit: cover;
  1084. object-fit: cover;
  1085. -o-object-position: center;
  1086. object-position: center;
  1087. }
  1088. .slide[data-active] {
  1089. opacity: 1;
  1090. z-index: 1;
  1091. transition-delay: 0ms;
  1092. }
  1093. .banner-slider-button {
  1094. position: absolute;
  1095. z-index: 3;
  1096. background: none;
  1097. border: none;
  1098. font-size: 8rem;
  1099. top: 50%;
  1100. transform: translateY(-50%);
  1101. color: rgba(255, 255, 255, 0.7058823529);
  1102. cursor: pointer;
  1103. border-radius: 0.25rem;
  1104. padding: 0 0.5rem;
  1105. outline: none;
  1106. }
  1107. .banner-slider-button:hover,
  1108. .banner-slider-button:focus {
  1109. color: white;
  1110. background-color: transparent;
  1111. border: none;
  1112. outline: none;
  1113. }
  1114. .banner-slider-button:focus {
  1115. border: none;
  1116. outline: none;
  1117. }
  1118. .banner-slider-button.prev {
  1119. left: 1rem;
  1120. }
  1121. .banner-slider-button.next {
  1122. right: 1rem;
  1123. }
  1124. button:focus {
  1125. border: none !important;
  1126. outline: none !important;
  1127. box-shadow: none !important;
  1128. }
  1129. .banner-overlay {
  1130. position: absolute;
  1131. top: 0;
  1132. z-index: 5;
  1133. height: 100vh;
  1134. width: 100vw;
  1135. background-color: rgba(0, 0, 0, 0.5607843137) !important;
  1136. display: flex;
  1137. flex-direction: column;
  1138. justify-content: center;
  1139. align-items: center;
  1140. }
  1141. .banner-overlay h1, .banner-overlay h2, .banner-overlay h3, .banner-overlay h4 {
  1142. text-align: center;
  1143. font-family: "Open Sans", sans-serif;
  1144. font-weight: 400 !important;
  1145. }
  1146. .banner-overlay h1 {
  1147. font-size: 50px !important;
  1148. margin-bottom: 100px !important;
  1149. }
  1150. @media screen and (max-width: 1100px) {
  1151. .banner-overlay h1 {
  1152. font-size: 40px !important;
  1153. }
  1154. }
  1155. .banner-overlay h3 {
  1156. font-size: 20px !important;
  1157. }
  1158. .banner-overlay h4 {
  1159. margin-top: 100px;
  1160. margin-bottom: 100px !important;
  1161. }
  1162. .program {
  1163. margin: 80px auto;
  1164. }
  1165. .program div {
  1166. border-radius: 10px;
  1167. margin: 40px auto;
  1168. }
  1169. .program div h2 {
  1170. letter-spacing: 3px;
  1171. font-size: 30px;
  1172. }
  1173. .program div p {
  1174. color: #464646;
  1175. }
  1176. .img-cont-2 {
  1177. overflow: hidden;
  1178. text-align: center;
  1179. height: 400px;
  1180. margin: 0px 50px;
  1181. border: none;
  1182. }
  1183. @media (max-width: 990px) {
  1184. .img-cont-2 {
  1185. margin: 40px 0px;
  1186. }
  1187. }
  1188. .img-cont-2 img {
  1189. width: 100%;
  1190. height: 100%;
  1191. -o-object-fit: cover;
  1192. object-fit: cover;
  1193. -o-object-position: center;
  1194. object-position: center;
  1195. transition-duration: 0.5s;
  1196. }
  1197. .img-cont-2 img:hover {
  1198. scale: 1.05;
  1199. }
  1200. .program-details p {
  1201. margin: 20px auto;
  1202. line-height: 24px;
  1203. font-size: 16px;
  1204. color: #000;
  1205. }
  1206. .program-details a {
  1207. font-size: 14px;
  1208. text-transform: uppercase;
  1209. color: #F68B1F;
  1210. }
  1211. .notice-main {
  1212. max-width: 1000px;
  1213. margin: 30px auto;
  1214. }
  1215. .notice-main button {
  1216. background-color: #F68B1F;
  1217. }
  1218. .notice-main button:hover {
  1219. background: #160c0c;
  1220. }
  1221. .notice-main a:hover {
  1222. text-decoration: none;
  1223. }
  1224. .notice-main a:hover h4 {
  1225. text-decoration: underline;
  1226. }
  1227. .notice-main .notice-container {
  1228. padding: 20px !important;
  1229. border: 1px solid rgba(255, 255, 255, 0.431372549);
  1230. position: relative;
  1231. width: 100%;
  1232. padding: 5px 20px;
  1233. display: flex;
  1234. flex-direction: row;
  1235. height: 150px;
  1236. overflow: hidden;
  1237. }
  1238. .notice-main .notice-container .event-date {
  1239. background: #F68B1F;
  1240. width: 80px;
  1241. display: inline-block;
  1242. margin: 0px 20px;
  1243. }
  1244. .notice-main .notice-container .event-date h3 {
  1245. font-weight: 200;
  1246. margin: 0px;
  1247. padding: 0px;
  1248. }
  1249. .notice-main .notice-container h6 {
  1250. text-align: left;
  1251. margin: 0px auto;
  1252. }
  1253. .notice-main .notice-container h4 {
  1254. text-align: left;
  1255. margin: 0px auto;
  1256. color: #F68B1F;
  1257. }
  1258. .notice-main .notice-container .subtitle {
  1259. left: 0px;
  1260. font-size: 12px;
  1261. text-align: left;
  1262. }
  1263. .notice-main .notice-container p {
  1264. font-size: 14px !important;
  1265. text-align: left;
  1266. padding: 0px;
  1267. margin: 0px;
  1268. }
  1269. .notice-main .notice-container:hover {
  1270. text-decoration: none;
  1271. }
  1272. @media (max-width: 600px) {
  1273. .notice-main {
  1274. max-width: 100%;
  1275. }
  1276. }
  1277. .profile-carousel {
  1278. text-align: center;
  1279. margin: 10px auto;
  1280. height: 350px;
  1281. width: 100%;
  1282. white-space: nowrap;
  1283. position: absolute;
  1284. left: 0;
  1285. transition: 1.5s;
  1286. }
  1287. .car-img-holder {
  1288. margin: 20px auto;
  1289. width: 250px;
  1290. height: 250px;
  1291. overflow: hidden;
  1292. border-radius: 10px;
  1293. }
  1294. .car-img-holder img {
  1295. width: 100%;
  1296. height: 100%;
  1297. -o-object-position: center;
  1298. object-position: center;
  1299. -o-object-fit: cover;
  1300. object-fit: cover;
  1301. }
  1302. .car-item {
  1303. margin: 10px 10px;
  1304. padding: 10px;
  1305. width: 320px;
  1306. display: inline-block;
  1307. border-radius: 10px;
  1308. box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.4823529412);
  1309. }
  1310. .car-item-holder .faculty-details {
  1311. min-height: 70px;
  1312. width: 300px;
  1313. overflow: hidden;
  1314. overflow-wrap: break-word;
  1315. }
  1316. .car-item-holder .faculty-details h2 {
  1317. position: relative;
  1318. margin: 20px 0px 0px 0px;
  1319. font-family: "Open Sans", sans-serif;
  1320. font-size: 18px;
  1321. margin: 10px 0px;
  1322. min-height: 30px;
  1323. color: #000;
  1324. overflow-wrap: break-word;
  1325. }
  1326. .car-item-holder .faculty-details h2 .degree {
  1327. font-weight: normal;
  1328. font-size: 12px;
  1329. }
  1330. .car-item-holder .faculty-details h4 {
  1331. font-family: "Open Sans", sans-serif;
  1332. font-size: 12px;
  1333. margin: 5px 0px;
  1334. color: #000;
  1335. overflow-wrap: break-word;
  1336. }
  1337. .car-item-holder .faculty-details h3 {
  1338. font-family: "Open Sans", sans-serif;
  1339. font-size: 12px;
  1340. letter-spacing: 1px;
  1341. color: #000;
  1342. overflow-wrap: break-word;
  1343. margin-bottom: 10px !important;
  1344. }
  1345. .car-item-holder .faculty-details button {
  1346. max-width: 250px !important;
  1347. margin: 10px auto;
  1348. margin-bottom: 0px;
  1349. }
  1350. .car-control {
  1351. width: 5px;
  1352. display: inline-block;
  1353. margin: 10px;
  1354. }
  1355. #prev-car {
  1356. transform: rotate(180deg);
  1357. }
  1358. .car {
  1359. position: relative;
  1360. min-height: 650px;
  1361. overflow: hidden;
  1362. }
  1363. .car-buttons {
  1364. width: 100%;
  1365. display: flex;
  1366. flex-direction: row;
  1367. justify-content: space-between;
  1368. position: absolute;
  1369. top: 20%;
  1370. transform: translateY(50%);
  1371. z-index: 1000;
  1372. }
  1373. .banner-overlay {
  1374. background-color: rgba(0, 0, 0, 0.2);
  1375. }
  1376. .student-stories h2 {
  1377. font-size: 18px !important;
  1378. text-transform: capitalize !important;
  1379. margin-bottom: 0 !important;
  1380. }
  1381. .student-stories h5 {
  1382. color: brown !important;
  1383. font-size: 14px !important;
  1384. padding: 0 5px;
  1385. margin-bottom: 20px;
  1386. }
  1387. #faculty-carousel .car-item {
  1388. padding: 0;
  1389. box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  1390. }
  1391. #faculty-carousel .car-img-holder {
  1392. width: auto;
  1393. height: 300px;
  1394. margin: 0;
  1395. margin-bottom: 20px;
  1396. border-bottom-left-radius: 0;
  1397. border-bottom-right-radius: 0;
  1398. }
  1399. #faculty-carousel .car-img-holder img {
  1400. border-radius: 0;
  1401. -o-object-position: top;
  1402. object-position: top;
  1403. }
  1404. #faculty-carousel .faculty-details {
  1405. padding: 0 10px 10px;
  1406. width: 100%;
  1407. }
  1408. #faculty-carousel .faculty-details h2 {
  1409. margin-bottom: 5px;
  1410. }
  1411. #faculty-carousel .faculty-details h3 {
  1412. letter-spacing: 0px;
  1413. font-weight: 700;
  1414. color: brown !important;
  1415. font-size: 14px !important;
  1416. }
  1417. #research-pointers {
  1418. border-bottom: none !important;
  1419. margin-bottom: -30px !important;
  1420. }/*# sourceMappingURL=style-cse.css.map */
  1421. /* The Overlay (background) */
  1422. .overlay {
  1423. /* Height & width depends on how you want to reveal the overlay (see JS below) */
  1424. height: 0%;
  1425. width: 100%;
  1426. position: fixed; /* Stay in place */
  1427. z-index: 1100; /* Sit on top */
  1428. left: 0;
  1429. top: 0;
  1430. background-color: rgb(0,0,0); /* Black fallback color */
  1431. background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  1432. overflow-x: hidden; /* Disable horizontal scroll */
  1433. transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  1434. }
  1435. /* Position the content inside the overlay */
  1436. .overlay-content {
  1437. position: relative;
  1438. height: 100%;
  1439. top: 25%; /* 25% from the top */
  1440. width: 100%; /* 100% width */
  1441. text-align: center; /* Centered text/links */
  1442. margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  1443. }
  1444. /* The navigation links inside the overlay */
  1445. .overlay a {
  1446. padding: 8px;
  1447. text-decoration: none;
  1448. font-size: 18px;
  1449. color: white;
  1450. display: block; /* Display block instead of inline */
  1451. transition: 0.3s; /* Transition effects on hover (color) */
  1452. }
  1453. .overlay h1 {
  1454. color: white;
  1455. font-size: 20px;
  1456. font-weight: lighter;
  1457. margin-bottom: 10px;
  1458. text-decoration: underline;
  1459. }
  1460. /* When you mouse over the navigation links, change their color */
  1461. .overlay a:hover, .overlay a:focus {
  1462. color: #f1f1f1;
  1463. }
  1464. /* Position the close button (top right corner) */
  1465. .overlay .closebtn {
  1466. position: absolute;
  1467. top: 20px;
  1468. right: 45px;
  1469. font-size: 60px;
  1470. }
  1471. /* custom by rousnay */
  1472. .banner-overlay h1,
  1473. .banner-overlay h3,
  1474. .banner-overlay h4 {
  1475. color: #edf0f3;
  1476. }
  1477. .container.full-width {
  1478. padding: 0!important;
  1479. }
  1480. header.entry-header {
  1481. display: none!important;
  1482. }
  1483. .static-banner .static-banner-overlay {
  1484. top: 0;
  1485. }
  1486. .desc-block p {
  1487. margin-left: 0!important;
  1488. }