/* ---------------------------------------
                [Variables]
----------------------------------------- */
:root {
  --bg-primary: #333c45;
  --bg-secondary: #f8f9fa;
  --color-primary: #212931;
  --color-dark: #212628;
  --color-secondary: #ffffff;
  --text-primary: #fed136;
}

@font-face {
  font-family: "MontserratRegular";
  src: url("..fonts/MontserratRegular.eot");
  src: local("MontserratRegular"),
    url("..fonts/MontserratRegular.woff") format("woff"),
    url("../fonts/MontserratRegular.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  src: local("Source Sans Pro Black"), local("SourceSansPro-Black"),
    url("../fonts/open-sans-pro.woff2") format("woff2");
}

/*------------------------------------------------------------------
[Reset
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  background-color: var(--bg-secondary);
  color: var(--color-primary);
  height: 100%;
  font-family: "MontserratRegular", sans-serif, Arial, Helvetica;
}

main {
  padding: initial;
}

p {
  font-family: "Work Sans", sans-serif;
}

a {
  text-decoration: none;
  color: #212628;
}

a:hover {
  color: var(--text-primary);
}

.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  zoom: 1; /* ie 6/7 */
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.row {
  width: 100%;
}

.btn {
  color: #fff;
  background: var(--text-primary);
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  padding: 20px 40px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  font-weight: 700;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: #fec810;
  border-color: #fec810;
  color: #fff;
}

.center {
  text-align: center;
  font-family: Montserrat, Helvetica, sans-serif;
}

.circle-list {
  margin-bottom: 2em;
}

.circle-list li {
  padding: 1em;
  border-bottom: 1px dashed rgba(204, 204, 204, 0.2);
  font-family: Montserrat, Helvetica, sans-serif;
}

.circle-list li {
  position: relative;
  margin: 0;
}

.circle-list p {
  margin: 0;
}

.circle-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  z-index: -1;
  left: -1.3em;
  top: -0.8em;
  background: #f5f5f5;
  height: 1.5em;
  width: 1.5em;
  border: 0.1em solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font: italic bold 1em/1.5em Georgia, Serif;
  color: #ccc;
  border-radius: 1.5em;
  transition: all 0.2s ease-out;
}

/* .circle-list li:hover {
    background-color: rgba(255, 201, 23, 0.4);
    border-color: rgba(0,0,0,.08);
    border-width: .1em;
    color: #444;
} */

.pad {
  padding: 4em 0;
}

.block {
  position: relative;
}

.fill {
  background-color: #212529;
  height: 200px;
  width: 100%;
  position: absolute;
  top: -150px;
}

/* ---------------------------------------
                [Containers]
----------------------------------------- */
#container {
  position: relative;
}

.wrapper {
  width: 95%;
  margin: 0 auto;
  position: relative;
}

/* ---------------------------------------
                [Header]
----------------------------------------- */
#header {
  background-color: #033860;
}

.logo {
  display: inline-block;
  padding: 0.5em;
}

.logo a > h1 {
  font-size: 1.5em;
}

.logo a {
  color: #fff;
}

.logo h1 small {
  font-style: italic;
  color: var(--color-secondary);
  font-size: 0.8em;
}

#navbar {
  display: none;
}

#nav li {
  line-height: 56px;
  margin-right: 1em;
}

#nav li:last-child {
  margin-right: 0;
}

#nav ul li a {
  color: var(--color-secondary);
  display: block;
}

#nav ul li a:hover {
  color: #c5b358;
}

/* ---------------------------------------
                [Icons]
----------------------------------------- */
#menu-button {
  display: block;
  cursor: pointer;
  /* background-color: #fed136; */
  border-radius: 4px;
  color: #fff;
  position: relative;
  padding: 7px 7px;
  float: right;
  margin-top: 5px;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}

#menu-button .bars {
  display: inline-block;
  margin-left: 5px;
}

#menu-button .bar {
  display: block;
  width: 20px;
  margin-bottom: 3px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

#menu-button .bar:nth-child(2) {
  width: 14px;
}

#menu-button .bar:last-child {
  margin-bottom: 0;
}

#menu-button:hover {
  background-color: #e4e4e42d;
  border-radius: 4px;
}

/* Hide checkbox */
#navbar-primary input[type="checkbox"] {
  display: none;
  -webkit-appearance: none;
}

/* Show menu when invisible checkbox is checked */
#navbar-primary input[type="checkbox"]:checked ~ #navbar {
  display: block;
  height: auto;
}

/* ---------------------------------------
                [Welcome]
----------------------------------------- */
#welcome {
  position: relative;
  min-height: 380px;
  background-repeat: no-repeat;
  /* background-size: 960px 298px; */
  background-size: cover;
  background-image: url(../images/circle_of_knowledge.jpg);
  height: 100%;
  width: 100%;
  background-attachment: fixed;
  background-position: 30% 0, center;
}

#welcome::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/dot-pattern.png);
  background-repeat: repeat;
}

#welcome h2,
h3 {
  position: relative;
  /* font-family: MontserratRegular, 'Work Sans', sans-serif; */
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  /* letter-spacing: 0.075em; */
  text-align: center;
  color: var(--color-secondary);
}

#welcome h2 {
  font-size: 1.6em;
  line-height: 1.1;
  padding: 1.5em 0 0.3em 0;
  text-transform: uppercase;
}

#welcome h3 {
  font-size: 1em;
  font-weight: 900;
  padding: 0 0 3em 0;
}

#welcome .box {
  padding: 2em 0;
}

#welcome .box1 {
  background-color: #033860; /*#f44336*/
  display: inline-block;
  padding: 0.5em 1em;
}

#welcome .box2 {
  background-color: rgba(255, 193, 7, 0.86);
  padding: 0.5em 1em;
  margin-left: 8em;
  top: -0.6em;
  position: relative;
  width: 190px;
}

#introduction {
  height: 350px;
}

#introduction .card {
  top: -180px;
  background-color: initial;
  border: 10px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 6px 0 hsla(0, 0%, 0%, 0.1);
  position: relative;
}

#introduction .card .inside {
  background-color: #ffffff;
  padding: 2em 2em;
  margin-bottom: 2em;
}

#introduction .card .inside a {
  text-align: center;
}

#introduction .card .inside h3 {
  color: var(--color-primary);
  font-size: 2em;
  margin-bottom: 1.5em;
}

#introduction .card .inside h3::after {
  content: "";
  position: absolute;
  height: 60px;
  width: 150px;
  background: rgb(3, 56, 96, 0.15);
  right: -10px;
  top: -10px;
}

#introduction .card .inside p {
  font-family: Montserrat, Helvetica, sans-serif;
  line-height: 2em;
  margin-bottom: 3em;
}

/* ---------------------------------------
                [Degrees]
----------------------------------------- */
#degrees {
  margin: 2em 0;
  font-family: "Source Sans Pro", Montserrat, Helvetica, sans-serif;
  position: relative;
}

#degrees nav {
  display: none;
}

#degrees .carousel > h3 {
  color: var(--color-primary);
  font-size: 2em;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.degree .featured {
  display: none;
}

.degree:first-child .degree .featured {
  display: block;
}

#degrees p {
  line-height: 2em;
}

#degrees .content h3 {
  border-bottom: 2px solid #fff;
  display: inline-block;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5em;
  margin-bottom: 1.3em;
  letter-spacing: 0.075em;
  padding-bottom: 1em;
  position: relative;
}

/* #degrees .content h3::after {
    content: "";
    position: absolute;
    border-bottom: 2px solid #212529;
    width: 500px;
    top: 1.5em;
    left: 0;
} */

.degree .featured,
.degree .featured-video {
  position: relative;
}

.degree .featured img,
.degree .featured-video video {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

#degrees .gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

#degrees .gallery img {
  width: 100%;
  height: 100%;
}

#degrees .gallery .cell:hover img {
  transition: all 0.3s ease-in-out;
  transform: scale(1.2);
}

#degrees .gallery .cell {
  overflow: hidden;
  height: 140px;
  width: 50%;
}

#degrees .content {
  margin-top: 5em;
}

#degrees .content div {
  margin: 2em;
}

.info ul li {
  list-style-type: circle;
  margin-bottom: 1em;
}

#degrees footer {
  text-align: center;
  position: relative;
  padding: 0.3em;
}

/* #degrees footer::before {
    content: "\f104";
    color: red;
    display: block;
    font-size: 5em;
    height: 2em;
    left: 50%;
    line-height: 2em;
    margin: -1em 0 0 -1em;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 2em;
} */

.carousel {
  height: auto;
  min-height: 2050px;
  position: relative;
}

.carousel.carousel-slider .carousel-fixed-item {
  bottom: 45px !important;
}

.carousel.carousel-slider .carousel-item {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: absolute;
  top: 100px;
  left: 0;
}

#degrees nav a {
  color: var(--bg-primary);
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
  height: 100%;
  opacity: 0.325;
  position: absolute;
  top: 100px;
  width: 3.5em;
  /* z-index: 1; */
}

#degrees nav a::before {
  display: block;
  font-size: 5em;
  font-family: FontAwesome, "Font Awesome 5 Brands", "Font Awesome 5 Free";
  height: 2em;
  line-height: 2em;
  margin: -1em 0 0 -1em;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 2em;
  font-style: normal;
  font-weight: 600; /* If unicode not working set weight at least 600 */
  transition: all 0.2s ease-in-out;
}

#degrees nav a.previous {
  left: 0;
}

#degrees nav a.next {
  right: -60px;
}

#degrees nav a.previous::before {
  content: "\f104";
  left: 40%;
}

#degrees nav a.next::before {
  content: "\f105";
  right: 0;
}

#degrees nav a:hover {
  color: var(--color-dark);
  background-color: rgba(201, 221, 221, 0.2);
  opacity: 1;
}

#degrees nav a:hover.previous::before {
  left: 30%;
}

#degrees nav a:hover.next::before {
  right: -10%;
}

div.ppt {
  display: none !important;
}

.team {
  margin: 0 1em;
  position: relative;
}

.team .profile img {
  border-radius: 30% 0;
  width: 100%;
  height: auto;
}

/*
.team .first {
    position: relative;
    z-index: 1;
    bottom: -1em;
}

.team .last {
    font-size: 2.5em;
    position: relative;
} */

/* ---------------------------------------
                [Google Map]
----------------------------------------- */
.google-map {
  height: 350px;
}

#location {
  color: #fff;
  text-align: center;
  padding-top: 1em;
}

/* ---------------------------------------
            [Contact]
----------------------------------------- */

section#contact {
  background-color: #212529;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

section#contact .heading,
section#contact .subheading {
  color: #fff;
  margin-bottom: 4em;
  text-align: center;
}

section#contact .form-group {
  margin-bottom: 25px;
}

section#contact .form-group textarea.form-control {
  height: 248px;
}

section#contact .wrapper {
  padding: 4em 0;
}

section#contact .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 20px;
}

/* ---------------------------------------
                [Sitemap]
----------------------------------------- */
.sitemap {
  text-align: center;
}

.sitemap h4 {
  margin-bottom: 1.5em;
}

.sitemap ul.child li {
  display: inline-block;
}

.sitemap ul li a {
  display: block;
  padding: 1em 0.5em;
}

.sitemap ul li a:hover {
  background: #033860;
}

/* ---------------------------------------
                [Footer]
----------------------------------------- */
#footer {
  color: #fff;
  /* padding: 4em 0;  */
  background-color: #212529;
}

#footer .widget h4 {
  margin-bottom: 1.3em;
}

#footer .widget a {
  color: #fff;
  display: block;
  position: relative;
}

#footer .widget > a {
  text-align: center;
}

#footer .widget a img {
  display: block;
  margin: 0 auto;
}

#footer .widget a:hover {
  color: var(--text-primary);
}

#footer .widget a div {
  font-size: 0.8em;
}

.widget {
  margin-bottom: 5em;
  position: relative;
}

.widget:last-child {
  border-right: none;
}

.widget p {
  margin-bottom: 1em;
}

.widget > img {
  width: 80px;
  height: auto;
  border-radius: 50%;
}

.dev p {
  padding: 0.5em 0;
  text-align: center;
}

.dev p a {
  color: #fff;
}

.dev p a:hover {
  color: var(--text-primary);
}

/*------------------------------------------------------------------
[Mobile First Media Queries]
*/

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  #welcome h2 {
    font-size: 2em;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /* ---------------------------------------
                    [Containers]
    ----------------------------------------- */
  .wrapper {
    width: 80%;
  }

  #degrees {
    margin: 2em;
  }

  .degree {
    padding: 1em 0;
  }

  .carousel {
    min-height: 2000px;
  }

  /* ---------------------------------------
                    [Navigations]
    ----------------------------------------- */
  #navbar-primary {
    float: right;
  }

  #menu-button {
    display: none;
  }

  #navbar {
    display: block;
  }

  #nav li {
    display: inline-block;
  }

  /* ---------------------------------------
                    [Degrees]
    ----------------------------------------- */
  #degrees .gallery .cell {
    width: 50%;
  }

  /* .card {
        border: 40px solid rgba(255, 255, 255, 0.5);
    } */

  #degrees nav {
    display: block;
  }

  #degrees .gallery img {
    width: 100%;
    height: 100%;
  }

  .degree .featured {
    display: block;
  }

  #degrees nav a {
    width: 12em;
  }

  #degrees nav a.next {
    right: 0;
  }

  #degrees .content div {
    margin: 3em;
  }

  #degrees .content h3 {
    font-size: 2em;
  }

  /* ---------------------------------------
                    [Welcome]
    ----------------------------------------- */
  #welcome {
    background-size: cover;
  }

  #welcome .box {
    float: right;
  }

  #welcome .box2 {
    padding: 0.5em 1em;
    margin-left: 8em;
    top: -0.6em;
    position: relative;
    width: 500px;
  }

  #welcome h2 {
    font-size: 2.6em;
    padding: 1em 0 0.5em 0;
  }

  #welcome h3 {
    font-size: 1.3em;
    padding: 0 0 3em 0;
  }

  #introduction .card {
    border: 40px solid rgba(255, 255, 255, 0.3);
  }

  #introduction .card .inside {
    padding: 4em 4em;
  }

  #introduction .card .inside h3:after {
    width: 300px;
    right: 180px;
  }

  .team {
    float: left;
    width: 250px;
  }

  .team .profile img {
    width: 250px;
    height: 250px;
  }

  .team:last-child {
    margin-right: 0;
  }

  /* ---------------------------------------
                    [Footer]
    ----------------------------------------- */
  .widget {
    width: 30%;
    float: left;
    border-right: 1px solid #c5b358;
    margin-right: 15px;
  }

  /* #footer .widget a {
        text-align: left;
    } */
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .carousel {
    min-height: 1450px;
  }

  #degrees .gallery .cell {
    height: 145px;
  }

  #welcome {
    background-position: 30% 0, center;
  }

  .column {
    float: left;
    width: 50%;
    padding: 0 15px;
    min-height: 1px;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  .carousel {
    min-height: 1400px;
  }
}
