|
@@ -0,0 +1,1576 @@
|
|
|
+@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text&display=swap");
|
|
|
+@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
|
|
|
+*, *::before, *::after {
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+* {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+p {
|
|
|
+ max-width: 800px;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+
|
|
|
+img {
|
|
|
+ border-radius: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.grid {
|
|
|
+ gap: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+body {
|
|
|
+ overflow-y: scroll;
|
|
|
+}
|
|
|
+
|
|
|
+section {
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0px !important;
|
|
|
+}
|
|
|
+
|
|
|
+header {
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px !important;
|
|
|
+ height: 100vh;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+main {
|
|
|
+ position: relative;
|
|
|
+ padding: 0px !important;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+h1 {
|
|
|
+ font-size: 40px !important;
|
|
|
+ letter-spacing: 2px !important;
|
|
|
+ line-height: 110%;
|
|
|
+}
|
|
|
+
|
|
|
+button {
|
|
|
+ margin: 20px auto;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ max-width: 300px;
|
|
|
+ font-size: 20px;
|
|
|
+ border-radius: 0px;
|
|
|
+ border: none;
|
|
|
+ background: #0b1419;
|
|
|
+ border-radius: 4px;
|
|
|
+}
|
|
|
+
|
|
|
+button:hover {
|
|
|
+ background: #F68B1F;
|
|
|
+}
|
|
|
+
|
|
|
+.container {
|
|
|
+ max-width: 100%;
|
|
|
+ margin: 0xp auto;
|
|
|
+ padding: 10px 30px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.grid {
|
|
|
+ justify-content: center;
|
|
|
+ padding: 0px 5px;
|
|
|
+}
|
|
|
+
|
|
|
+#search-close {
|
|
|
+ width: 100px;
|
|
|
+ border-radius: 40px;
|
|
|
+ background-color: #F68B1F;
|
|
|
+ margin-top: 30px;
|
|
|
+ margin-right: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.overlay-content {
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.overlay-content label {
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.overlay-content h4 {
|
|
|
+ display: inline-block;
|
|
|
+ margin: 0px 20px;
|
|
|
+}
|
|
|
+.overlay-content div a {
|
|
|
+ display: inline-block;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+.overlay-content div h6 {
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+
|
|
|
+#search-bar {
|
|
|
+ width: 60%;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+
|
|
|
+#search-button {
|
|
|
+ width: 300px;
|
|
|
+ display: inline-block;
|
|
|
+ border-radius: 30px;
|
|
|
+ margin-left: 20px;
|
|
|
+ background: #485680;
|
|
|
+}
|
|
|
+
|
|
|
+#search-modal {
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+#search-button:hover {
|
|
|
+ background-color: #F68B1F;
|
|
|
+}
|
|
|
+
|
|
|
+#first-nav > ul > img {
|
|
|
+ transition-duration: 0.5s;
|
|
|
+}
|
|
|
+
|
|
|
+section#first-nav-section nav {
|
|
|
+ position: fixed;
|
|
|
+ text-align: center;
|
|
|
+ padding: 0px;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ height: 70px;
|
|
|
+ z-index: 10;
|
|
|
+ transition: 0.5s ease-in-out;
|
|
|
+ background-color: #0b1419;
|
|
|
+ border-bottom: 4px solid #F68B1F;
|
|
|
+ box-shadow: 0px 5px 12px -5px #2F4858;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul {
|
|
|
+ align-items: center;
|
|
|
+ z-index: 3;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul img {
|
|
|
+ height: 50px;
|
|
|
+ width: auto;
|
|
|
+ margin-right: 30px;
|
|
|
+ padding-left: 20px;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul > li {
|
|
|
+ margin-right: 50px;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul > li:last-child {
|
|
|
+ margin-right: 0px;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul > li:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul > li > a {
|
|
|
+ color: #fff;
|
|
|
+ transition-duration: 0.3s;
|
|
|
+ font-size: 14px;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ text-transform: uppercase;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul > li:after {
|
|
|
+ content: "";
|
|
|
+ display: block;
|
|
|
+ margin: auto;
|
|
|
+ height: 1px;
|
|
|
+ width: 0px;
|
|
|
+ background: transparent;
|
|
|
+ transition: width 0.3s ease, background-color 0.5s ease;
|
|
|
+}
|
|
|
+section#first-nav-section nav ul > li:hover:after {
|
|
|
+ width: 100%;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+section#first-nav-section .nav-resp {
|
|
|
+ height: 50px;
|
|
|
+ background-color: #0b1419;
|
|
|
+ border-bottom: 4px solid #F68B1F;
|
|
|
+ box-shadow: 0px 5px 12px -5px #2F4858;
|
|
|
+}
|
|
|
+section#first-nav-section .nav-resp ul img {
|
|
|
+ height: 30px !important;
|
|
|
+ padding-left: 20px;
|
|
|
+}
|
|
|
+section#first-nav-section .nav-resp #menu-bars {
|
|
|
+ padding-top: 2px;
|
|
|
+}
|
|
|
+
|
|
|
+section#second-nav-section nav {
|
|
|
+ position: fixed;
|
|
|
+ top: 70px;
|
|
|
+ text-align: center;
|
|
|
+ padding: 0px;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ height: 40px;
|
|
|
+ z-index: 10;
|
|
|
+ transition: 0.5s ease-in-out;
|
|
|
+ background: #0b1419;
|
|
|
+}
|
|
|
+section#second-nav-section nav ul {
|
|
|
+ margin-top: 0px;
|
|
|
+ width: 100vw;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ display: inline-flex;
|
|
|
+}
|
|
|
+section#second-nav-section nav ul li > a {
|
|
|
+ margin: 0px;
|
|
|
+ color: #fff;
|
|
|
+ transition-duration: 0.3s;
|
|
|
+ font-size: 14px;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ text-transform: uppercase;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 12px;
|
|
|
+ border-radius: 0px;
|
|
|
+}
|
|
|
+section#second-nav-section nav ul li > a:hover {
|
|
|
+ border-radius: 0;
|
|
|
+ background: #606060;
|
|
|
+}
|
|
|
+section#second-nav-section .second-nav-active {
|
|
|
+ height: 40px;
|
|
|
+ top: 50px;
|
|
|
+ background-color: #0b1419;
|
|
|
+}
|
|
|
+
|
|
|
+#top-search {
|
|
|
+ width: 140px;
|
|
|
+ border-radius: 0;
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+#banner {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ height: 100vhpx;
|
|
|
+ width: 100%;
|
|
|
+ margin: 0px !important;
|
|
|
+ padding: 0px !important;
|
|
|
+ background-position: center;
|
|
|
+ background-size: cover;
|
|
|
+}
|
|
|
+
|
|
|
+#search {
|
|
|
+ height: 80px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ background: #160c0c;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+#search input {
|
|
|
+ border-radius: 0px;
|
|
|
+ border: none;
|
|
|
+ margin: 10px 0px 10px 30px;
|
|
|
+ max-width: 60%;
|
|
|
+ height: 60px;
|
|
|
+ background-color: #ColorThree;
|
|
|
+}
|
|
|
+
|
|
|
+.white-bg {
|
|
|
+ width: 100%;
|
|
|
+ padding: 60px 0px;
|
|
|
+ background: #fff;
|
|
|
+ text-align: center;
|
|
|
+ color: #160c0c;
|
|
|
+}
|
|
|
+.white-bg h1 {
|
|
|
+ font-size: 100px;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ color: #160c0c;
|
|
|
+}
|
|
|
+.white-bg p {
|
|
|
+ color: #160c0c;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 20px;
|
|
|
+}
|
|
|
+.white-bg #us-hero-text {
|
|
|
+ padding-top: 30px;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.white-bg p {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 16px;
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: center;
|
|
|
+ color: #160c0c;
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 50px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+.white-bg h2, .white-bg h1, .white-bg h3 {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #160c0c;
|
|
|
+}
|
|
|
+.white-bg h2 .degree, .white-bg h1 .degree, .white-bg h3 .degree {
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.white-bg h2 {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-size: 60px;
|
|
|
+ margin: 0px;
|
|
|
+ line-height: 90%;
|
|
|
+}
|
|
|
+.white-bg h3 {
|
|
|
+ font-size: 25px;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+ line-height: 80%;
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+.white-bg h1 {
|
|
|
+ font-size: 25px;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 50px 5px 10px 5px;
|
|
|
+ line-height: 130%;
|
|
|
+ letter-spacing: 5px;
|
|
|
+}
|
|
|
+.white-bg h1 span {
|
|
|
+ color: #F68B1F;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs {
|
|
|
+ width: 100%;
|
|
|
+ min-height: 600px;
|
|
|
+ padding-top: 40px;
|
|
|
+ font: "DM Serif Text", serif;
|
|
|
+ justify-content: space-around;
|
|
|
+ gap: 30px;
|
|
|
+ text-align: center;
|
|
|
+ margin: 0px auto;
|
|
|
+}
|
|
|
+#us-imgs div {
|
|
|
+ margin: 0px auto;
|
|
|
+}
|
|
|
+
|
|
|
+.img-container {
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ box-shadow: 4px 4px 4px #333;
|
|
|
+}
|
|
|
+.img-container .small {
|
|
|
+ width: 300px;
|
|
|
+ height: 300px;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs img {
|
|
|
+ filter: grayscale(20%);
|
|
|
+ height: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ -o-object-position: center;
|
|
|
+ object-position: center;
|
|
|
+ transition-duration: 1s;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs img:hover {
|
|
|
+ scale: 1.2;
|
|
|
+ filter: contrast(120%) grayscale(0%);
|
|
|
+}
|
|
|
+
|
|
|
+.img-container:hover .overlay {
|
|
|
+ height: 200px;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs > div {
|
|
|
+ background: #fff;
|
|
|
+ max-width: 600px;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs > div > div {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 18px;
|
|
|
+ line-height: 100%;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+#us-imgs > div > div p {
|
|
|
+ margin-top: 20px;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 12px;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ line-height: 110%;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs > div > div h2 {
|
|
|
+ margin-top: 10px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ text-transform: uppercase;
|
|
|
+ color: #160c0c;
|
|
|
+ font-size: 20px;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+#us-imgs > div > div p {
|
|
|
+ color: #000;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: normal;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ text-align: left;
|
|
|
+ letter-spacing: normal;
|
|
|
+ margin: 5px !important;
|
|
|
+ padding: 0px !important;
|
|
|
+ line-height: 1.4rem;
|
|
|
+}
|
|
|
+#us-imgs > div > div a {
|
|
|
+ color: #F68B1F;
|
|
|
+ font-weight: normal;
|
|
|
+ text-transform: uppercase;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: left;
|
|
|
+ margin-top: 20px;
|
|
|
+ margin-bottom: 40px;
|
|
|
+ margin-left: 5px;
|
|
|
+}
|
|
|
+#us-imgs > div > div a:hover {
|
|
|
+ color: #F68B1F;
|
|
|
+}
|
|
|
+
|
|
|
+.img-cont {
|
|
|
+ overflow: hidden;
|
|
|
+ text-align: center;
|
|
|
+ height: 300px;
|
|
|
+ border-radius: 10px;
|
|
|
+}
|
|
|
+.img-cont img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ -o-object-position: center;
|
|
|
+ object-position: center;
|
|
|
+}
|
|
|
+
|
|
|
+#research-pointers {
|
|
|
+ margin: 60px 0px;
|
|
|
+ padding: 50px 0px;
|
|
|
+ border-top: 1px solid #000;
|
|
|
+ border-bottom: 1px solid #000;
|
|
|
+}
|
|
|
+#research-pointers p {
|
|
|
+ margin: 20px 0px;
|
|
|
+}
|
|
|
+
|
|
|
+#faculty-midroll {
|
|
|
+ background-image: url("../img/campus_07.jpg");
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+#faculty-midroll h1 {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ letter-spacing: 3px;
|
|
|
+}
|
|
|
+#faculty-midroll p {
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+
|
|
|
+.mid-roll {
|
|
|
+ min-height: 600px;
|
|
|
+ width: 100%;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center;
|
|
|
+ background-attachment: fixed;
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.bg-tint {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ min-height: 600px;
|
|
|
+ background-color: rgba(17, 2, 32, 0.8196078431);
|
|
|
+}
|
|
|
+.bg-tint .container {
|
|
|
+ min-height: 800px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ gap: 30px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 50px 30px 20px 30px;
|
|
|
+}
|
|
|
+.bg-tint .container h2 {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 30px;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ margin-bottom: 50px;
|
|
|
+ line-height: 100%;
|
|
|
+}
|
|
|
+.bg-tint .container p {
|
|
|
+ margin: 0px auto;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: normal;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ margin-bottom: 35px;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.bg-tint .container .img-cont {
|
|
|
+ height: 350px;
|
|
|
+ max-width: 400px;
|
|
|
+ overflow: hidden;
|
|
|
+ border: 2px solid #fff;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+.bg-tint .container .img-cont img {
|
|
|
+ transition-duration: 0.5s;
|
|
|
+}
|
|
|
+.bg-tint .container .img-cont img:hover {
|
|
|
+ scale: 1.1;
|
|
|
+}
|
|
|
+
|
|
|
+.news-big-img-holder {
|
|
|
+ border-radius: 10px;
|
|
|
+ height: 400px;
|
|
|
+ overflow: hidden;
|
|
|
+ width: auto;
|
|
|
+ filter: brightness(40%);
|
|
|
+ transition-duration: 0.6s;
|
|
|
+ box-shadow: 3px 3px 8px rgba(51, 51, 51, 0.2549019608);
|
|
|
+}
|
|
|
+.news-big-img-holder img {
|
|
|
+ height: 400px;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.news-big-img-holder:hover {
|
|
|
+ filter: brightness(70%);
|
|
|
+}
|
|
|
+
|
|
|
+.news-big-img-text {
|
|
|
+ text-align: left;
|
|
|
+ margin-left: 20px;
|
|
|
+ transform: translateY(-100px);
|
|
|
+}
|
|
|
+.news-big-img-text h4 {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 14px;
|
|
|
+ margin: 0px !important;
|
|
|
+ padding: 0px;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.news-big-img-text h4 a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.news-big-img-text h5 {
|
|
|
+ font-size: 12px;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+.news-big-img-text a p {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #fff;
|
|
|
+ text-align: left;
|
|
|
+ margin: 10px 0px;
|
|
|
+ padding: 0px;
|
|
|
+ line-height: 18px;
|
|
|
+}
|
|
|
+
|
|
|
+.news-small-img {
|
|
|
+ border-radius: 10px;
|
|
|
+ padding: 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 3px 3px 5px rgba(51, 51, 51, 0.3882352941);
|
|
|
+ margin-bottom: 20px;
|
|
|
+ max-height: 400px;
|
|
|
+}
|
|
|
+
|
|
|
+.news-sm-img-holder {
|
|
|
+ height: 260px;
|
|
|
+ overflow: hidden;
|
|
|
+ filter: brightness(70%);
|
|
|
+ transition-duration: 0.6s;
|
|
|
+}
|
|
|
+.news-sm-img-holder img {
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+
|
|
|
+.news-sm-img-holder:hover {
|
|
|
+ filter: brightness(90%);
|
|
|
+}
|
|
|
+
|
|
|
+.news-sm-img-text {
|
|
|
+ text-align: left;
|
|
|
+ margin-left: 20px;
|
|
|
+}
|
|
|
+.news-sm-img-text h4 {
|
|
|
+ color: #000;
|
|
|
+ font-size: 14px;
|
|
|
+ margin: 0px !important;
|
|
|
+ padding: 0px;
|
|
|
+ z-index: 10;
|
|
|
+}
|
|
|
+.news-sm-img-text h4 a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #000;
|
|
|
+}
|
|
|
+.news-sm-img-text h5 {
|
|
|
+ color: #000;
|
|
|
+ font-size: 12px;
|
|
|
+ margin: 5px 0px;
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+.news-sm-img-text a p {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #000;
|
|
|
+ text-align: left;
|
|
|
+ margin: 10px 0px;
|
|
|
+ padding: 0px;
|
|
|
+ line-height: 18px;
|
|
|
+}
|
|
|
+
|
|
|
+#success {
|
|
|
+ padding-bottom: 60px;
|
|
|
+}
|
|
|
+
|
|
|
+#success > .grid > div {
|
|
|
+ background: #160c0c;
|
|
|
+ border: 2px solid #2F4858;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+#success > .grid > div img {
|
|
|
+ height: 400px;
|
|
|
+ width: auto;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+#success > .grid > div p {
|
|
|
+ color: #fff;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ text-align: left;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 16px;
|
|
|
+ min-height: 100px;
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+#success > .grid > div h2 {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-size: 40px;
|
|
|
+ color: #fff;
|
|
|
+ padding-top: 30px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+#events {
|
|
|
+ min-height: 800px;
|
|
|
+ text-align: center;
|
|
|
+ background-image: url("../img/campus_01.jpg");
|
|
|
+}
|
|
|
+#events .bg-tint {
|
|
|
+ min-height: 800px;
|
|
|
+ padding: 50px 0px;
|
|
|
+ background: rgba(81, 75, 88, 0.4784313725);
|
|
|
+}
|
|
|
+
|
|
|
+.event-holder {
|
|
|
+ border-radius: 20px;
|
|
|
+ min-height: 500px;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+.event-holder .event-date {
|
|
|
+ position: relative;
|
|
|
+ margin-left: 20px;
|
|
|
+ margin-top: -35px;
|
|
|
+ height: 70px;
|
|
|
+ width: 70px;
|
|
|
+ background-color: #0b1419;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.event-holder .event-date h3 {
|
|
|
+ margin: 0px auto;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 20px;
|
|
|
+ line-height: 22px;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-weight: bolder;
|
|
|
+}
|
|
|
+.event-holder .event-details {
|
|
|
+ text-align: left;
|
|
|
+ margin: 10px;
|
|
|
+}
|
|
|
+.event-holder .event-details h2 {
|
|
|
+ color: #000;
|
|
|
+ font-size: 22px;
|
|
|
+ font-weight: bolder;
|
|
|
+ margin: 0px auto;
|
|
|
+ text-transform: uppercase;
|
|
|
+}
|
|
|
+.event-holder .event-details h3 {
|
|
|
+ color: rgba(0, 0, 0, 0.6039215686);
|
|
|
+ font-size: 16px;
|
|
|
+ margin: 10px 0px;
|
|
|
+}
|
|
|
+
|
|
|
+.event-img-holder {
|
|
|
+ height: 300px;
|
|
|
+ overflow: hidden;
|
|
|
+ background: #333;
|
|
|
+}
|
|
|
+.event-img-holder img {
|
|
|
+ height: 300px;
|
|
|
+ width: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ transition-duration: 0.6s;
|
|
|
+}
|
|
|
+.event-img-holder img:hover {
|
|
|
+ scale: 1.05;
|
|
|
+}
|
|
|
+
|
|
|
+#stats > div > div > div {
|
|
|
+ padding: 20px 0px;
|
|
|
+ text-align: center;
|
|
|
+ margin: 20px auto;
|
|
|
+ padding-right: 20px;
|
|
|
+ color: #fff;
|
|
|
+ border-right: 1px solid #fff;
|
|
|
+}
|
|
|
+#stats > div > div > div h1 {
|
|
|
+ color: #fff;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+#stats > div > div > div:last-child {
|
|
|
+ border-right: none;
|
|
|
+}
|
|
|
+
|
|
|
+#admissions {
|
|
|
+ padding: 50px 0px 0px 0px !important;
|
|
|
+}
|
|
|
+#admissions img {
|
|
|
+ height: 400px;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+#admissions p {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 20px;
|
|
|
+ text-align: center;
|
|
|
+ color: #160c0c;
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 50px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+#testimonial-text {
|
|
|
+ background: #2F4858;
|
|
|
+ height: 150px;
|
|
|
+ max-width: 450px;
|
|
|
+ text-align: center;
|
|
|
+ position: relative;
|
|
|
+ top: -75px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding-top: 10px;
|
|
|
+ box-shadow: 2px 2px 6px #333;
|
|
|
+}
|
|
|
+#testimonial-text blockquote {
|
|
|
+ padding: 5px 0px;
|
|
|
+ margin: 0px 20px;
|
|
|
+ color: white;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+
|
|
|
+#stu_id {
|
|
|
+ padding: 10px 30px;
|
|
|
+}
|
|
|
+#stu_id h2 {
|
|
|
+ padding: 5px;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #fff;
|
|
|
+ margin: 0px 0px;
|
|
|
+ font-weight: normal;
|
|
|
+ text-decoration: none;
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+#stu_id h3 {
|
|
|
+ font-size: 18px;
|
|
|
+ color: white;
|
|
|
+ margin: 0px auto;
|
|
|
+ text-align: center;
|
|
|
+ font-weight: lighter;
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+
|
|
|
+.research-block {
|
|
|
+ padding-block: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+#research > div > div > div > div.research-img {
|
|
|
+ height: 300px;
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ border: 1px solid #F68B1F;
|
|
|
+ border-bottom: 10px solid #F68B1F;
|
|
|
+}
|
|
|
+
|
|
|
+#research > div > div > div > div.research-img > img {
|
|
|
+ transition-duration: 0.5s;
|
|
|
+ height: 300px;
|
|
|
+ width: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ -o-object-position: center;
|
|
|
+ object-position: center;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+#research > div > div > div > div.research-img > img:hover {
|
|
|
+ scale: 1.2;
|
|
|
+}
|
|
|
+
|
|
|
+#research > div > div > div > div.research-text > h2 {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: normal;
|
|
|
+ color: #160c0c;
|
|
|
+ padding: 10px 5px;
|
|
|
+ margin: 10px 0px;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.research-text {
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+.research-text p {
|
|
|
+ text-align: left;
|
|
|
+ font-size: 18px;
|
|
|
+ margin: 5px 0px;
|
|
|
+ padding: 5px 5px;
|
|
|
+}
|
|
|
+.research-text a {
|
|
|
+ color: #333;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+.research-text a:hover {
|
|
|
+ color: #2F4858;
|
|
|
+}
|
|
|
+.research-text h2 {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #fff !important;
|
|
|
+ background: #160c0c;
|
|
|
+}
|
|
|
+
|
|
|
+#testimonial-block > h1 {
|
|
|
+ padding: 0px;
|
|
|
+ margin: 10px 0px;
|
|
|
+ font-size: 35px;
|
|
|
+ letter-spacing: 3px;
|
|
|
+}
|
|
|
+
|
|
|
+#testimonial-block > h1 > a {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ color: #fff;
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+#campus-banner {
|
|
|
+ height: 500px;
|
|
|
+ width: 100%;
|
|
|
+ background: url("../img/campus_02.jpg") no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center;
|
|
|
+}
|
|
|
+
|
|
|
+#campus-life > h3 {
|
|
|
+ color: #160c0c;
|
|
|
+ font-size: 20px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ box-shadow: none;
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ margin: 30px auto;
|
|
|
+}
|
|
|
+
|
|
|
+#campus-life {
|
|
|
+ padding-bottom: 30px !important;
|
|
|
+ min-height: 500px;
|
|
|
+}
|
|
|
+
|
|
|
+#us-imgs > div > div > h2 {
|
|
|
+ text-transform: uppercase;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: 900;
|
|
|
+ padding: 10px 5px;
|
|
|
+ text-align: left;
|
|
|
+ color: #000;
|
|
|
+ text-shadow: none;
|
|
|
+}
|
|
|
+
|
|
|
+#socials h1 {
|
|
|
+ color: #160c0c;
|
|
|
+ margin: 0px auto;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+#socials ul {
|
|
|
+ margin-bottom: 0px;
|
|
|
+}
|
|
|
+#socials ul > li {
|
|
|
+ display: inline;
|
|
|
+}
|
|
|
+#socials ul > li > a > img {
|
|
|
+ width: 60px;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+footer {
|
|
|
+ position: relative;
|
|
|
+ z-index: 30 !important;
|
|
|
+}
|
|
|
+
|
|
|
+#footer1 {
|
|
|
+ z-index: 10;
|
|
|
+ height: 400px;
|
|
|
+ background: url("../img/footer2.png") no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: top;
|
|
|
+}
|
|
|
+
|
|
|
+footer.container-fluid {
|
|
|
+ border-top: 10px solid #C85688;
|
|
|
+ overflow: hidden;
|
|
|
+ text-align: left;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px !important;
|
|
|
+ background: #160c0c;
|
|
|
+ min-height: 350px;
|
|
|
+}
|
|
|
+footer.container-fluid h3 {
|
|
|
+ margin: 10px auto;
|
|
|
+ margin: 30px 0px;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #fff;
|
|
|
+ font-weight: normal;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+footer.container-fluid ul {
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+footer.container-fluid ul > li {
|
|
|
+ list-style: none;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+ line-height: 110%;
|
|
|
+}
|
|
|
+footer.container-fluid ul > li a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: normal;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+}
|
|
|
+footer.container-fluid ul > li a:hover {
|
|
|
+ color: #F68B1F;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+
|
|
|
+#fine-print {
|
|
|
+ text-align: center;
|
|
|
+ margin: 10px auto;
|
|
|
+ height: 50px;
|
|
|
+ border-top: 1px solid #F68B1F;
|
|
|
+}
|
|
|
+#fine-print p {
|
|
|
+ font-size: 12px;
|
|
|
+ display: inline-flex;
|
|
|
+}
|
|
|
+#fine-print ul {
|
|
|
+ display: inline;
|
|
|
+}
|
|
|
+#fine-print ul > li {
|
|
|
+ display: inline;
|
|
|
+ padding: 10px;
|
|
|
+ font-size: 12px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+#menu-bars {
|
|
|
+ display: none;
|
|
|
+ margin: 0px auto;
|
|
|
+ padding-top: 13px;
|
|
|
+ font-size: 45px;
|
|
|
+}
|
|
|
+
|
|
|
+#myNav > div > div > a {
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+
|
|
|
+.accredition {
|
|
|
+ min-height: 100px;
|
|
|
+}
|
|
|
+.accredition #accredition-img {
|
|
|
+ height: 100px;
|
|
|
+ width: auto;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+ margin: 50px 0px;
|
|
|
+}
|
|
|
+
|
|
|
+#accr h2 {
|
|
|
+ padding: 30px 0px 0px 0px;
|
|
|
+ font-size: 40px;
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ #first-nav > ul {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ left: 0px;
|
|
|
+ }
|
|
|
+ #first-nav > ul > img {
|
|
|
+ width: 350px;
|
|
|
+ -o-object-fit: contain;
|
|
|
+ object-fit: contain;
|
|
|
+ margin-right: auto;
|
|
|
+ transition-duration: 0.5s;
|
|
|
+ }
|
|
|
+ #first-nav > ul > li {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ #first-nav > ul > li:last-child {
|
|
|
+ display: inline-block;
|
|
|
+ margin-right: auto;
|
|
|
+ width: 40px;
|
|
|
+ }
|
|
|
+ #top-search {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ #menu-bars {
|
|
|
+ display: inline-block;
|
|
|
+ }
|
|
|
+ .banner-overlay {
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ .banner-overlay h1 {
|
|
|
+ text-align: center;
|
|
|
+ width: 300px !important;
|
|
|
+ font-size: 30px !important;
|
|
|
+ margin: 0px auto;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 576px) {
|
|
|
+ #first-nav > ul > img {
|
|
|
+ width: 170px;
|
|
|
+ }
|
|
|
+ #search > button.filled {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ body > main > section:nth-child(2) > div > h1 {
|
|
|
+ font-size: 60px;
|
|
|
+ }
|
|
|
+ #video-text > h1 {
|
|
|
+ margin-top: 30%;
|
|
|
+ font-size: 50px;
|
|
|
+ }
|
|
|
+ #cta {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+ #cta > button:nth-child(2) {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ #success > h1 {
|
|
|
+ font-size: 40px;
|
|
|
+ }
|
|
|
+ .event-details {
|
|
|
+ margin: 10px !important;
|
|
|
+ padding: 0px !important;
|
|
|
+ }
|
|
|
+ #events > div > div > div.event-content > h2 {
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ #events > div > div > div.event-content > h2 {
|
|
|
+ font-size: 10px;
|
|
|
+ }
|
|
|
+ #events > div > div > div.event-content {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ #events > div > h1 {
|
|
|
+ font-size: 25px;
|
|
|
+ }
|
|
|
+ #campus-life > h1 {
|
|
|
+ font-size: 60px;
|
|
|
+ }
|
|
|
+ .white-bg h1 {
|
|
|
+ font-size: 40px !important;
|
|
|
+ }
|
|
|
+ .white-bg h2 {
|
|
|
+ font-size: 30px;
|
|
|
+ }
|
|
|
+ #second-nav {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .banner-overlay {
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ .banner-overlay h1 {
|
|
|
+ text-align: center;
|
|
|
+ width: 300px !important;
|
|
|
+ font-size: 30px !important;
|
|
|
+ margin: 0px auto;
|
|
|
+ }
|
|
|
+ .carousel-button {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+.slider-single-div {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.carousel {
|
|
|
+ z-index: -6;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.carousel ul {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ list-style: none;
|
|
|
+}
|
|
|
+
|
|
|
+.slide {
|
|
|
+ position: absolute;
|
|
|
+ inset: 0;
|
|
|
+ opacity: 0;
|
|
|
+ transition: 200ms opacity ease-in-out;
|
|
|
+ transition-delay: 600ms;
|
|
|
+}
|
|
|
+.slide img {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ -o-object-position: center;
|
|
|
+ object-position: center;
|
|
|
+}
|
|
|
+
|
|
|
+.slide[data-active] {
|
|
|
+ opacity: 1;
|
|
|
+ z-index: 1;
|
|
|
+ transition-delay: 0ms;
|
|
|
+}
|
|
|
+
|
|
|
+.carousel-button {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 3;
|
|
|
+ background: none;
|
|
|
+ border: none;
|
|
|
+ font-size: 8rem;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ color: rgba(255, 255, 255, 0.7058823529);
|
|
|
+ cursor: pointer;
|
|
|
+ border-radius: 0.25rem;
|
|
|
+ padding: 0 0.5rem;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+.carousel-button:hover,
|
|
|
+.carousel-button:focus {
|
|
|
+ color: white;
|
|
|
+ background-color: transparent;
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+.carousel-button:focus {
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+.carousel-button.prev {
|
|
|
+ left: 1rem;
|
|
|
+}
|
|
|
+
|
|
|
+.carousel-button.next {
|
|
|
+ right: 1rem;
|
|
|
+}
|
|
|
+
|
|
|
+button:focus {
|
|
|
+ border: none !important;
|
|
|
+ outline: none !important;
|
|
|
+ box-shadow: none !important;
|
|
|
+}
|
|
|
+
|
|
|
+.banner-overlay {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ z-index: 5;
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
+ background-color: rgba(0, 0, 0, 0.4156862745);
|
|
|
+}
|
|
|
+.banner-overlay h1 {
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
+ font-size: 50px !important;
|
|
|
+ line-height: 100%;
|
|
|
+ text-align: center;
|
|
|
+ width: 750px;
|
|
|
+ margin: 0px auto;
|
|
|
+ position: relative;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ padding: 30px 0px 30px 0px;
|
|
|
+}
|
|
|
+@media (max-width: 600px) {
|
|
|
+ .banner-overlay h1 {
|
|
|
+ top: 50%;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-overlay h4 {
|
|
|
+ margin: 10px auto;
|
|
|
+ width: 300px;
|
|
|
+ text-align: center;
|
|
|
+ position: relative;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-100%);
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 16px;
|
|
|
+ letter-spacing: 5px;
|
|
|
+ font-weight: lighter;
|
|
|
+ margin-bottom: 30px !important;
|
|
|
+ padding: 30px;
|
|
|
+}
|
|
|
+@media (max-width: 600px) {
|
|
|
+ .banner-overlay h4 {
|
|
|
+ margin-bottom: 0px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-overlay h3 {
|
|
|
+ margin: 10px auto;
|
|
|
+ width: 500px;
|
|
|
+ text-align: center;
|
|
|
+ position: relative;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-40%);
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 20px;
|
|
|
+ letter-spacing: 5px;
|
|
|
+ font-weight: lighter;
|
|
|
+ padding: 30px 0px;
|
|
|
+}
|
|
|
+@media (max-width: 600px) {
|
|
|
+ .banner-overlay h3 {
|
|
|
+ transform: translateY(-50%);
|
|
|
+ max-width: 400px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.banner-overlay h4:nth-child(1) {
|
|
|
+ margin: -80px auto 80px auto;
|
|
|
+}
|
|
|
+@media (max-width: 1100px) {
|
|
|
+ .banner-overlay {
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ .banner-overlay h1 {
|
|
|
+ text-align: center;
|
|
|
+ width: 300px !important;
|
|
|
+ font-size: 30px !important;
|
|
|
+ margin: 0px auto;
|
|
|
+ }
|
|
|
+ .banner-overlay h4 {
|
|
|
+ font-size: 12px;
|
|
|
+ letter-spacing: 5px;
|
|
|
+ }
|
|
|
+ .banner-overlay h4:nth-child(1) {
|
|
|
+ margin: -10px auto 10px auto;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.program {
|
|
|
+ margin: 80px auto;
|
|
|
+}
|
|
|
+.program div {
|
|
|
+ border-radius: 10px;
|
|
|
+ margin: 40px auto;
|
|
|
+}
|
|
|
+.program div h2 {
|
|
|
+ letter-spacing: 3px;
|
|
|
+ font-size: 30px;
|
|
|
+}
|
|
|
+.program div p {
|
|
|
+ color: #464646;
|
|
|
+}
|
|
|
+
|
|
|
+.img-cont-2 {
|
|
|
+ overflow: hidden;
|
|
|
+ text-align: center;
|
|
|
+ height: 400px;
|
|
|
+ margin: 0px 50px;
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+@media (max-width: 990px) {
|
|
|
+ .img-cont-2 {
|
|
|
+ margin: 40px 0px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.img-cont-2 img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+ -o-object-position: center;
|
|
|
+ object-position: center;
|
|
|
+ transition-duration: 0.5s;
|
|
|
+}
|
|
|
+.img-cont-2 img:hover {
|
|
|
+ scale: 1.05;
|
|
|
+}
|
|
|
+
|
|
|
+.program-details p {
|
|
|
+ margin: 20px auto;
|
|
|
+ line-height: 24px;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #000;
|
|
|
+}
|
|
|
+.program-details a {
|
|
|
+ font-size: 14px;
|
|
|
+ text-transform: uppercase;
|
|
|
+ color: #F68B1F;
|
|
|
+}
|
|
|
+
|
|
|
+.notice-main {
|
|
|
+ width: 1000px;
|
|
|
+ margin: 30px auto;
|
|
|
+}
|
|
|
+.notice-main button {
|
|
|
+ background-color: #F68B1F;
|
|
|
+}
|
|
|
+.notice-main button:hover {
|
|
|
+ background: #160c0c;
|
|
|
+}
|
|
|
+.notice-main a:hover {
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+.notice-main a:hover h4 {
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+.notice-main .notice-container {
|
|
|
+ padding: 20px !important;
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.431372549);
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ padding: 5px 20px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ height: 150px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.notice-main .notice-container .event-date {
|
|
|
+ background: #F68B1F;
|
|
|
+ width: 80px;
|
|
|
+ display: inline-block;
|
|
|
+ margin: 0px 20px;
|
|
|
+}
|
|
|
+.notice-main .notice-container .event-date h3 {
|
|
|
+ font-weight: 200;
|
|
|
+ margin: 0px;
|
|
|
+ padding: 0px;
|
|
|
+}
|
|
|
+.notice-main .notice-container h6 {
|
|
|
+ text-align: left;
|
|
|
+ margin: 0px auto;
|
|
|
+}
|
|
|
+.notice-main .notice-container h4 {
|
|
|
+ text-align: left;
|
|
|
+ margin: 0px auto;
|
|
|
+ color: #F68B1F;
|
|
|
+}
|
|
|
+.notice-main .notice-container .subtitle {
|
|
|
+ left: 0px;
|
|
|
+ font-size: 12px;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+.notice-main .notice-container p {
|
|
|
+ font-size: 14px !important;
|
|
|
+ text-align: left;
|
|
|
+ padding: 0px;
|
|
|
+ margin: 0px;
|
|
|
+}
|
|
|
+.notice-main .notice-container:hover {
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+@media (max-width: 600px) {
|
|
|
+ .notice-main {
|
|
|
+ max-width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.profile-carousel {
|
|
|
+ text-align: center;
|
|
|
+ margin: 10px auto;
|
|
|
+ height: 350px;
|
|
|
+ width: 100%;
|
|
|
+ white-space: nowrap;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ transition: 1.5s;
|
|
|
+}
|
|
|
+
|
|
|
+.car-img-holder {
|
|
|
+ margin: 20px auto;
|
|
|
+ width: 250px;
|
|
|
+ height: 250px;
|
|
|
+ overflow: hidden;
|
|
|
+ border-radius: 10px;
|
|
|
+}
|
|
|
+.car-img-holder img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ -o-object-position: center;
|
|
|
+ object-position: center;
|
|
|
+ -o-object-fit: cover;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+
|
|
|
+.car-item {
|
|
|
+ margin: 10px 10px;
|
|
|
+ padding: 10px;
|
|
|
+ width: 320px;
|
|
|
+ display: inline-block;
|
|
|
+ border-radius: 10px;
|
|
|
+ box-shadow: 1px 1px 5px rgba(51, 51, 51, 0.4823529412);
|
|
|
+}
|
|
|
+
|
|
|
+.car-item-holder .faculty-details {
|
|
|
+ min-height: 70px;
|
|
|
+ width: 300px;
|
|
|
+ overflow: hidden;
|
|
|
+ overflow-wrap: break-word;
|
|
|
+}
|
|
|
+.car-item-holder .faculty-details h2 {
|
|
|
+ position: relative;
|
|
|
+ margin: 20px 0px 0px 0px;
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 18px;
|
|
|
+ margin: 10px 0px;
|
|
|
+ min-height: 30px;
|
|
|
+ color: #000;
|
|
|
+ overflow-wrap: break-word;
|
|
|
+}
|
|
|
+.car-item-holder .faculty-details h2 .degree {
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.car-item-holder .faculty-details h4 {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 12px;
|
|
|
+ margin: 5px 0px;
|
|
|
+ color: #000;
|
|
|
+ overflow-wrap: break-word;
|
|
|
+}
|
|
|
+.car-item-holder .faculty-details h3 {
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
+ font-size: 12px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ color: #000;
|
|
|
+ overflow-wrap: break-word;
|
|
|
+ margin-bottom: 10px !important;
|
|
|
+}
|
|
|
+.car-item-holder .faculty-details button {
|
|
|
+ max-width: 250px !important;
|
|
|
+ margin: 10px auto;
|
|
|
+ margin-bottom: 0px;
|
|
|
+}
|
|
|
+
|
|
|
+.car-control {
|
|
|
+ width: 5px;
|
|
|
+ display: inline-block;
|
|
|
+ margin: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+#prev-car {
|
|
|
+ transform: rotate(180deg);
|
|
|
+}
|
|
|
+
|
|
|
+.car {
|
|
|
+ position: relative;
|
|
|
+ min-height: 650px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.car-buttons {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ position: absolute;
|
|
|
+ top: 20%;
|
|
|
+ transform: translateY(50%);
|
|
|
+ z-index: 1000;
|
|
|
+}
|
|
|
+
|
|
|
+.banner-overlay {
|
|
|
+ background-color: rgba(0, 0, 0, 0.2);
|
|
|
+}
|
|
|
+
|
|
|
+.student-stories h2 {
|
|
|
+ font-size: 18px !important;
|
|
|
+ text-transform: capitalize !important;
|
|
|
+ margin-bottom: 0 !important;
|
|
|
+}
|
|
|
+.student-stories h5 {
|
|
|
+ color: brown !important;
|
|
|
+ font-size: 14px !important;
|
|
|
+ padding: 0 5px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+#faculty-carousel .car-item {
|
|
|
+ padding: 0;
|
|
|
+ box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
|
|
|
+}
|
|
|
+#faculty-carousel .car-img-holder {
|
|
|
+ width: auto;
|
|
|
+ height: 300px;
|
|
|
+ margin: 0;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ border-bottom-left-radius: 0;
|
|
|
+ border-bottom-right-radius: 0;
|
|
|
+}
|
|
|
+#faculty-carousel .car-img-holder img {
|
|
|
+ border-radius: 0;
|
|
|
+ -o-object-position: top;
|
|
|
+ object-position: top;
|
|
|
+}
|
|
|
+#faculty-carousel .faculty-details {
|
|
|
+ padding: 0 10px 10px;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+#faculty-carousel .faculty-details h2 {
|
|
|
+ margin-bottom: 5px;
|
|
|
+}
|
|
|
+#faculty-carousel .faculty-details h3 {
|
|
|
+ letter-spacing: 0px;
|
|
|
+ font-weight: 700;
|
|
|
+ color: brown !important;
|
|
|
+ font-size: 14px !important;
|
|
|
+}
|
|
|
+
|
|
|
+#research-pointers {
|
|
|
+ border-bottom: none !important;
|
|
|
+ margin-bottom: -30px !important;
|
|
|
+}
|