* {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body, html {
  margin: 0;
  font-family: "Relative", sans-serif;
  font-size: 14px;
}

*, :active, :focus, :hover {
  outline: none !important;
}

.navContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 20px;
}
.navContainer .l_nl-wrapper .respo_nav_trigger {
  display: none;
  width: 40px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
}
.navContainer .l_nl-wrapper .respo_nav_trigger .hamburger {
  display: inline-block;
  cursor: pointer;
}
.navContainer .l_nl-wrapper .respo_nav_trigger .hamburger .bar1, .navContainer .l_nl-wrapper .respo_nav_trigger .hamburger .bar2, .navContainer .l_nl-wrapper .respo_nav_trigger .hamburger .bar3 {
  width: 25px;
  height: 2px;
  background: black;
  margin: 5px 0;
  transition: 0.2s;
}
.navContainer .l_nl-wrapper .respo_nav_trigger .x-cross .bar1 {
  transform: rotate(-45deg) translate(-3px, 6px);
  background: #ff914d;
}
.navContainer .l_nl-wrapper .respo_nav_trigger .x-cross .bar2 {
  opacity: 0;
  color: #ff914d;
}
.navContainer .l_nl-wrapper .respo_nav_trigger .x-cross .bar3 {
  transform: rotate(45deg) translate(-4px, -7px);
  background: #ff914d;
}
.navContainer .l_nl-wrapper .logo-box {
  height: 80px;
  position: relative;
  left: -10px;
  width: 120px;
  background: #fff url("images/logo/3.png") no-repeat center;
  background-size: cover;
}
.navContainer .l_nl-wrapper .logo-box a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.navContainer .nav-links {
  height: 100%;
}
.navContainer .nav-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
.navContainer .nav-links ul li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  transition: 0.5s ease;
  position: relative;
}
.navContainer .nav-links ul li a, .navContainer .nav-links ul li span {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.navContainer .nav-links ul li a svg, .navContainer .nav-links ul li span svg {
  margin-left: 5px;
  transition: 0.3s ease;
}
.navContainer .nav-links ul li a:hover, .navContainer .nav-links ul li span:hover {
  background: #F5F5F6;
}
.navContainer .nav-links ul li .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 65px;
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(46, 67, 120, 0.1);
  border: 1px solid #eee;
  border-radius: 8px;
}
.navContainer .nav-links ul li .dropdown-content .drop-links {
  display: block;
  padding: 8px;
  line-height: 1.4;
}
.navContainer .nav-links ul .toggle-list {
  position: relative;
  height: 100%;
}
.navContainer .nav-links ul .toggle-list:hover span svg {
  transform: rotate(-180deg);
}
.navContainer .nav-links ul .toggle-list:hover .dropdown-content {
  display: block;
}
.navContainer .connect {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 50px;
  margin-right: 20px;
}
.navContainer .connect .icon {
  width: 18px;
  height: 16px;
}
.navContainer .connect .icon svg {
  width: 100%;
  height: 100%;
}
.navContainer .connect .icon svg:hover * {
  fill: #ff914d !important;
}

.mobile-nav__modal {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  height: calc(100vh - 80px);
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  overflow: auto;
}
.mobile-nav__modal .modal__content {
  background: rgba(255, 145, 77, 0.9);
  position: relative;
  left: -100%;
  top: 0;
  height: 100%;
  max-width: 350px;
  padding-top: 20px;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .link {
  display: block;
  padding: 10px 0;
  padding-left: 10px;
  text-decoration: none;
  color: #fff;
  font-family: "Relative", sans-serif;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .accordion {
  position: relative;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .accordion:after {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  content: "";
  transition: top 0.4s, transform 0.4s;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .acc_open::after {
  top: 16px;
  transform: rotate(-135deg);
  border-color: #fff;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .dropdown-content {
  padding-left: 20px;
  display: none;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  border-left: 1px solid #fff;
  position: relative;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .dropdown-content a:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -3.5px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .dropdown-content a .icon {
  width: 18px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
}
.mobile-nav__modal .modal__content .nav-container .nav__link .dropdown-content a .icon svg {
  width: 100%;
  height: 100%;
}
.mobile-nav__modal .modal__content .cv {
  padding: 10px;
  margin: 20px 0;
}
.mobile-nav__modal .modal__content .cv a {
  text-decoration: none;
  color: #fff;
  background: transparent;
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
}
.mobile-nav__modal .modal__content .connect {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80px;
  margin-top: 18px;
}
.mobile-nav__modal .modal__content .connect .icon {
  width: 18px;
  height: 16px;
}
.mobile-nav__modal .modal__content .connect .icon svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 952px) {
  .navContainer .l_nl-wrapper .logo-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .navContainer .l_nl-wrapper .respo_nav_trigger {
    display: inline-flex;
  }
  .navContainer .nav-links {
    display: none;
  }
  .navContainer .cv {
    display: none;
  }
  .navContainer .connect {
    margin-right: 0;
  }
}
.committeeWorks .hero {
  height: calc(100vh - 80px);
  display: flex;
}
.committeeWorks .hero .hero-bg {
  width: 100%;
  background: url("images/ATU PICSATU-6.jpg") no-repeat;
  background-size: cover;
  height: 100%;
  animation: h-slide 0.8s forwards;
  animation-delay: 1s;
  position: relative;
}
.committeeWorks .hero .hero-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.committeeWorks .hero .text--container {
  width: 0;
  background: transparent;
  animation: t-slide 0.8s forwards;
  animation-delay: 1s;
  position: relative;
  overflow: hidden;
}
.committeeWorks .works--container .title {
  text-align: center;
  color: #475066;
  padding: 0 20px;
}
.committeeWorks .works--container .title p {
  margin: 30px auto;
  max-width: 800px;
  line-height: 1.4;
}
.committeeWorks .works--container .year-container {
  padding: 20px;
}
.committeeWorks .works--container .year-container .year-section .header {
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-weight: normal;
  color: #ff914d;
  text-align: center;
}
.committeeWorks .works--container .year-container .year-section .container {
  padding-top: 45px;
  position: relative;
}
.committeeWorks .works--container .year-container .year-section .container:after {
  position: absolute;
  content: "";
  top: 50px;
  width: calc(100% - 80px);
  height: 1px;
  background: #ff914d;
  left: 50%;
  transform: translateX(-50%);
}
.committeeWorks .works--container .year-container .year-section .container .works-collection {
  display: flex;
  position: relative;
  padding: 0 20px;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card {
  width: 25%;
  padding: 10px;
  position: relative;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card:after {
  position: absolute;
  content: "";
  top: -9px;
  left: 27px;
  background: #03989e;
  width: 2px;
  height: 18px;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content {
  border-radius: 8px;
  transition: 0.25s;
  padding: 20px 10px;
  padding-top: 0;
  position: relative;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content h5 {
  font-size: 0.925rem;
  color: #03989e;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
  position: absolute;
  top: -35px;
  left: 12.5px;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content h5 i {
  color: #03989e;
  margin-right: 5px;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content h5 span {
  display: block;
  padding-left: 16px;
  margin-top: 1px;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
  font-size: 23px;
  margin: 5px 0;
  color: #475066;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content h4 {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: normal;
  color: #7c84a0;
  margin: 5px 0;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content .work-done {
  margin-top: 5px;
  color: #475066;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content .work-done span {
  color: #03989e;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content .work-done p {
  margin: 0;
  line-height: 1.4;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content .work-done ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content .work-done ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
  line-height: 1.4;
}
.committeeWorks .works--container .year-container .year-section .container .works-collection .work-card .content .work-done ul li:after {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  background: #f5f7f5 url("images/logo/check.png") no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
}
.committeeWorks .works--container .year-container .year-section .container .prev-btn {
  width: 28px;
  height: 28px;
  background: #fff;
  position: absolute;
  top: 30px;
  cursor: pointer;
  z-index: 1;
  left: 4px;
  box-shadow: 0 0 8px rgba(46, 67, 120, 0.2);
  border-radius: 50%;
}
.committeeWorks .works--container .year-container .year-section .container .prev-btn::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #03989e;
  border-left: 2px solid #03989e;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(-45deg);
}
.committeeWorks .works--container .year-container .year-section .container .next-btn {
  width: 28px;
  height: 28px;
  background: #fff;
  position: absolute;
  top: 30px;
  cursor: pointer;
  z-index: 1;
  right: 4px;
  box-shadow: 0 0 8px rgba(46, 67, 120, 0.2);
  border-radius: 50%;
}
.committeeWorks .works--container .year-container .year-section .container .next-btn::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #03989e;
  border-left: 2px solid #03989e;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(135deg);
}
.committeeWorks .works--container .year-container .work-img {
  height: 400px;
  background: url("images/ATU PICSATU-15.jpg") left top no-repeat, url("images/ATU PICSATU-4.jpg") right top no-repeat;
  background-size: 49%;
  margin-bottom: 20px;
}

@keyframes h-slide {
  0% {
    width: 100%;
  }
  100% {
    width: calc(100% - 400px);
  }
}
@keyframes t-slide {
  0% {
    width: 0;
  }
  100% {
    width: 400px;
  }
}
.box {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box .logo {
  width: 150px;
  height: 150px;
  background: transparent url("images/logo/Accra Technical University-logo.png") no-repeat;
  background-size: cover;
  margin-bottom: 5px;
}
.box .title {
  width: 350px;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
}
.box .title .block {
  width: 0%;
  height: inherit;
  background: #ff914d;
  position: absolute;
  animation: mainBlock 1s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 2s;
  display: flex;
}
.box .title h1 {
  font-family: "Plus Jakarta Sans";
  color: #ff914d;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: normal;
  animation: mainFadeIn 2s forwards;
  animation-delay: 2.5s;
  opacity: 0;
  display: flex;
  align-items: baseline;
  position: relative;
  padding-left: 25px;
}
.box .title h1 span {
  display: none;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: #ff914d;
  animation: popIn 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 2s;
  margin-left: 5px;
  margin-top: -10px;
  position: absolute;
  bottom: 13px;
  right: -12px;
}
.box .role {
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
  margin-top: 5px;
}
.box .role p {
  animation: secFadeIn 2s forwards;
  animation-delay: 3s;
  opacity: 0;
  color: #475066;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
}

@keyframes mainBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes secBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes mainFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    width: 0px;
    height: 0px;
    background: #03989e;
    border: 0px solid #ddd;
    opacity: 0;
  }
  50% {
    width: 10px;
    height: 10px;
    background: #03989e;
    opacity: 1;
    bottom: 45px;
  }
  65% {
    width: 7px;
    height: 7px;
    bottom: 0px;
    width: 15px;
  }
  80% {
    width: 10px;
    height: 10px;
    bottom: 20px;
  }
  100% {
    width: 7px;
    height: 7px;
    background: #03989e;
    border: 0px solid #222;
    bottom: 13px;
  }
}
@keyframes secFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes top {
  0% {
    opacity: 0;
    bottom: -80px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes icon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(-2deg);
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
.footer {
  background: url("images/Advanced-Electrical-Systems-&-Power-Systems-1600x600.jpg") no-repeat;
  background-size: cover;
}
.footer .overlay--content {
  background: rgba(34, 37, 41, 0.8);
  height: 100%;
  padding: 20px 10px;
}
.footer .overlay--content .fr-rowContainer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer .overlay--content .fr-rowContainer .flex-col {
  color: #fff;
  padding: 10px;
  max-width: 320px;
}
.footer .overlay--content .fr-rowContainer .flex-col .logo-img {
  left: -10px;
  position: relative;
  width: 200px;
  height: 50px;
  background: url("images/logo/footer-logo2.png") no-repeat center;
  background-size: cover;
}
.footer .overlay--content .fr-rowContainer .flex-col .logo-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer .overlay--content .fr-rowContainer .flex-col h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}
.footer .overlay--content .fr-rowContainer .flex-col .content {
  margin-top: 8px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content p {
  margin: 0;
  padding: 0;
  color: #ccc;
  line-height: 1.4;
  padding: 2px 0;
}
.footer .overlay--content .fr-rowContainer .flex-col .content p i {
  margin-right: 5px;
  font-size: 11px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content p a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer .overlay--content .fr-rowContainer .flex-col .content p a:hover {
  color: #fff;
}
.footer .overlay--content .fr-rowContainer .flex-col .content p span {
  padding-left: 25px;
  font-size: 13px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .flex-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .flex-container .icon {
  width: 18px;
  height: 16px;
  margin-left: 50px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .flex-container .icon svg {
  width: 100%;
  height: 100%;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .flex-container .details {
  width: 100%;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .advn-btn {
  margin-top: 10px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .advn-btn a {
  font-size: 14px;
  text-decoration: none;
  color: #03989e;
  transition: 0.3s ease;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .advn-btn a:hover {
  color: #ff914d;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .connect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80px;
  margin-top: 18px;
  margin-left: 20px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .connect .icon {
  width: 18px;
  height: 16px;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .connect .icon svg {
  width: 100%;
  height: 100%;
}
.footer .overlay--content .fr-rowContainer .flex-col .content .connect .icon svg:hover * {
  fill: #ff914d !important;
}
.footer .overlay--content .under-text {
  color: #cccccc;
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  vertical-align: baseline;
}
.footer .overlay--content .under-text ul {
  text-transform: uppercase;
  letter-spacing: 5px;
}
.footer .overlay--content .under-text ul li {
  display: inline-block;
}
.footer .overlay--content .under-text ul li:hover {
  color: #fff;
}
.footer .overlay--content .under-text span {
  font-size: 1rem;
}

@media screen and (max-width: 920px) {
  .footer .overlay--content .fr-rowContainer .flex-col {
    width: 48%;
    padding: 10px;
  }
}
@media screen and (max-width: 580px) {
  .footer .overlay--content .fr-rowContainer {
    justify-content: flex-start;
  }
  .footer .overlay--content .fr-rowContainer .flex-col {
    width: 100%;
  }
  .footer .overlay--content .under-text {
    text-align: left;
  }
  .footer .overlay--content .under-text ul {
    margin: 0;
    padding-left: 10px;
  }
}
@media screen and (max-width: 870px) {
  .committeeWorks .works--container .year-container .work-img {
    height: 100vw;
    background: url("images/ATU PICSATU-15.jpg") left top no-repeat, url("images/ATU PICSATU-4.jpg") left bottom no-repeat;
    background-size: 100% 49%;
  }
}
@media screen and (max-width: 830px) {
  .committeeWorks .hero {
    height: 300px;
  }
}
@media screen and (max-width: 744px) {
  @keyframes h-slide {
    0% {
      width: 100%;
    }
    100% {
      width: 0;
    }
  }
  @keyframes t-slide {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
}
@media screen and (max-width: 320px) {
  .committeeWorks .hero {
    height: 300px;
  }
}