* {
  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;
  }
}
.hero-bg {
  position: relative;
  height: 350px;
  background: url("images/20211112_112542.jpg") no-repeat;
  background-size: cover;
  background-position: top center;
}
.hero-bg .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 152, 158, 0.7);
}
.hero-bg .overlay h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 60px;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.profileInfoSection .section-inner {
  padding: 20px;
}
.profileInfoSection .section-inner .profile-summary p {
  line-height: 1.4;
  color: #475066;
}

.EducationSection .edu-tree {
  color: #475066;
  padding: 0 20px;
}
.EducationSection .edu-tree h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 60px;
  font-weight: normal;
  text-align: center;
  color: #ff914d;
  margin: 0;
  margin-bottom: 10px;
}
.EducationSection .edu-tree .edu-branch {
  display: flex;
  justify-content: center;
}
.EducationSection .edu-tree .edu-branch .branch--details {
  position: relative;
  width: 380px;
  padding: 10px;
  padding-left: 20px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  border-left: 2px solid #03989e;
  border-right: 2px solid #03989e;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.EducationSection .edu-tree .edu-branch .branch--details h4 {
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
  font-size: 25px;
  margin: 0;
}
.EducationSection .edu-tree .edu-branch .branch--details h5 {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
  padding: 3px 0;
  color: #7c84a0;
}
.EducationSection .edu-tree .edu-branch .branch--details .duration {
  font-size: 12px;
  margin: 0;
  padding: 3px 0;
  text-transform: uppercase;
  color: #03989e;
}
.EducationSection .edu-tree .edu-branch .branch--details .extra-info {
  display: none;
  font-family: "helveticanowdisplay";
  font-size: 14px;
  margin: 0;
  padding: 3px 0;
}
.EducationSection .edu-tree .edu-branch .left-br {
  right: 220px;
}
.EducationSection .edu-tree .edu-branch .left-br:before {
  position: absolute;
  content: "";
  top: 50px;
  right: -35px;
  background: #03989e;
  width: 35px;
  height: 2px;
}
.EducationSection .edu-tree .edu-branch .right-br {
  left: 220px;
}
.EducationSection .edu-tree .edu-branch .right-br:before {
  position: absolute;
  content: "";
  top: 50px;
  left: -30px;
  background: #03989e;
  width: 30px;
  height: 2px;
}
.EducationSection .edu-tree .edu-branch .right-br:nth-child(1) {
  top: -90px;
}
.EducationSection .edu-tree .edu-branch .fr-branch:after {
  position: absolute;
  content: "";
  top: 20px;
  right: -35px;
  background: #03989e;
  width: 1.5px;
  height: 700px;
}
.EducationSection .edu-tree .edu-branch .fr-branch:before {
  position: absolute;
  content: "";
  top: 50px;
  right: -35px;
  background: #03989e;
  width: 35px;
  height: 2px;
}

.workExperienceSection {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.workExperienceSection .title {
  text-align: center;
}
.workExperienceSection .title h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 60px;
  font-weight: normal;
  color: #ff914d;
}
.workExperienceSection .workContainer {
  display: flex;
  flex-wrap: wrap;
}
.workExperienceSection .workContainer .work-card {
  padding: 20px;
  width: 33.33%;
  position: relative;
}
.workExperienceSection .workContainer .work-card .logo {
  width: 200px;
  height: 200px;
  background: #fff;
  overflow: hidden;
  margin: auto;
  transition: 0.6s ease;
}
.workExperienceSection .workContainer .work-card .logo img {
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
.workExperienceSection .workContainer .work-card .card-content {
  padding-left: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 0px;
}
.workExperienceSection .workContainer .work-card .card-content h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 27px;
  margin: 0;
  padding-bottom: 5px;
  color: #475066;
}
.workExperienceSection .workContainer .work-card .card-content .title-role {
  color: #475066;
}
.workExperienceSection .workContainer .work-card .card-content .title-role h4 {
  position: relative;
  font-weight: normal;
  margin: 0;
  padding: 3px 0;
  padding-left: 20px;
  line-height: 1.4;
}
.workExperienceSection .workContainer .work-card .card-content .title-role h4 span {
  color: #03989e;
  font-size: 0.925rem;
  text-transform: uppercase;
}
.workExperienceSection .workContainer .work-card .card-content .title-role h4:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ff914d;
  border-radius: 50%;
}
.workExperienceSection .workContainer .work-card:hover .logo {
  transform: scale(1.1);
}

.MOPBB {
  background: rgba(255, 145, 77, 0.97);
  padding: 20px;
}
.MOPBB h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.MOPBB .section--container {
  display: flex;
}
.MOPBB .section--container .img-box {
  width: 300px;
}
.MOPBB .section--container .img-box .img {
  width: 100%;
  height: 245px;
  border-radius: 3px;
  background: url("images/amevi.jpg") no-repeat;
  background-size: contain;
}
.MOPBB .section--container .section--content {
  width: calc(100% - 300px);
  overflow: hidden;
  padding-left: 20px;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 0;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card {
  flex: 0 0 300px;
  padding: 10px;
  transition: 0.25s ease;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card .flex-card--inner {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card .flex-card--inner:hover {
  background-color: #fafbfc;
  box-shadow: 0 0 10px rgba(46, 67, 120, 0.2);
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card .flex-card--inner h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 23px;
  margin: 0;
  margin-bottom: 5px;
  color: #475066;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card .flex-card--inner .title-role {
  color: #475066;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card .flex-card--inner .title-role h4 {
  font-weight: normal;
  margin: 0;
  padding: 3px 0;
  line-height: 1.4;
}
.MOPBB .section--container .section--content .wrapper .horizontal-scrolling__wrapper .horizontal-scrolling__card .flex-card--inner .title-role h4 span {
  color: #03989e;
  font-size: 0.925rem;
  text-transform: uppercase;
}

.AwardsSection {
  padding: 20px 0;
}
.AwardsSection .img-container {
  display: flex;
  justify-content: center;
}
.AwardsSection .img-container .award-img {
  width: 300px;
  height: 300px;
  background: url("images/IMG-20210830-WA0000.jpg") no-repeat;
  background-size: contain;
  background-position: center;
}
.AwardsSection .img-container .text-box {
  width: calc(100% - 650px);
  padding-left: 40px;
}
.AwardsSection .img-container .text-box h1 {
  font-family: "Plus Jakarta Sans";
  color: #ff914d;
  font-weight: 700;
  font-size: 35px;
  margin: 0;
}
.AwardsSection .img-container .text-box p {
  color: #7c84a0;
  line-height: 1.4;
}
.AwardsSection .dotted-divider {
  width: 80vw;
  height: 30px;
  background: url("images/dot-pattern-single.png") repeat;
  margin: 10px auto;
  background-position: center;
}
.AwardsSection .awards {
  margin-top: 20px;
}
.AwardsSection .awards .awards--container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.AwardsSection .awards .awards--container .award-card {
  max-width: 250px;
}
.AwardsSection .awards .awards--container .award-card .award-img {
  width: 160px;
  height: 120px;
  margin: auto;
}
.AwardsSection .awards .awards--container .award-card .award-img img {
  width: 100%;
  height: 100%;
}
.AwardsSection .awards .awards--container .award-card h4 {
  font-weight: normal;
  margin: 0;
  padding: 3px 0;
  color: #7c84a0;
  text-align: center;
  line-height: 1.4;
  text-wrap: balance;
}
.AwardsSection .awards .awards--container .award-card p {
  margin: 0;
  padding: 3px 0;
  color: #03989e;
  font-size: 0.925rem;
  text-transform: uppercase;
  text-align: center;
}

.Grantsmanship {
  background: #ff914d;
  padding-top: 20px;
}
.Grantsmanship .title {
  text-align: center;
  color: #fff;
}
.Grantsmanship .title h1 {
  font-family: "Plus Jakarta Sans";
  font-size: 35px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  margin: 0;
}
.Grantsmanship .title p {
  margin: auto;
  max-width: 800px;
  padding: 5px;
}
.Grantsmanship .grants-container {
  padding: 10px 20px;
}
.Grantsmanship .grants-container .row {
  display: flex;
}
.Grantsmanship .grants-container .row .grant--card {
  max-width: 300px;
  padding: 10px;
}
.Grantsmanship .grants-container .row .grant--card .grant--details {
  padding: 20px;
  color: #475066;
  background: #fff;
  border-radius: 5px;
}
.Grantsmanship .grants-container .row .grant--card .grant--details h3 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 23px;
  margin: 0;
  margin-bottom: 5px;
  color: #475066;
}
.Grantsmanship .grants-container .row .grant--card .grant--details h4 {
  font-weight: normal;
  line-height: 1.4;
  color: #7c84a0;
}
.Grantsmanship .grants-container .row .grant--card .grant--details h4 .rm-container .rm-text {
  display: none;
}
.Grantsmanship .grants-container .row .grant--card .grant--details h4 .rm-container #rmBtn {
  display: block;
  background: none;
  padding: 0;
  margin-top: 3px;
  cursor: pointer;
  border: none;
  color: #03989e;
  font-size: inherit;
  font-family: inherit;
  transition: 0.3s ease;
}
.Grantsmanship .grants-container .row .grant--card .grant--details h4 .rm-container #rmBtn:hover {
  color: #ff914d;
}
.Grantsmanship .grants-container .row .grant--card .grant--details p {
  margin: 0;
  padding: 3px 0;
}
.Grantsmanship .grants-container .row .grant--card .grant--details p span {
  color: #03989e;
  text-transform: uppercase;
  font-size: 0.925rem;
}
.Grantsmanship .grants-container .row .grant--card .grant--details:hover {
  background-color: #fafbfc;
  box-shadow: 0 0 10px rgba(46, 67, 120, 0.2);
}
.Grantsmanship .grants-container .prev-btn {
  width: 35px;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 200px;
  cursor: pointer;
  z-index: 1;
  left: 0;
}
.Grantsmanship .grants-container .prev-btn::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(-45deg);
}
.Grantsmanship .grants-container .next-btn {
  width: 35px;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 200px;
  cursor: pointer;
  z-index: 1;
  right: 0;
}
.Grantsmanship .grants-container .next-btn::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -50%) rotate(135deg);
}
.Grantsmanship .grants-container .prev-btn:hover, .Grantsmanship .grants-container .next-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.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: 1040px) {
  .workExperienceSection .workContainer {
    justify-content: center;
  }
  .workExperienceSection .workContainer .work-card {
    width: 50%;
  }
}
@media screen and (max-width: 1102px) {
  .AwardsSection .img-container .text-box {
    width: calc(100% - 350px);
  }
}
@media screen and (max-width: 866px) {
  .EducationSection .edu-tree .edu-branch {
    margin-bottom: 30px;
  }
  .EducationSection .edu-tree .edu-branch .branch--details {
    left: 16px;
  }
  .EducationSection .edu-tree .edu-branch .left-br {
    right: 0;
  }
  .EducationSection .edu-tree .edu-branch .left-br:before {
    left: -30px;
    width: 30px;
  }
  .EducationSection .edu-tree .edu-branch .right-br:nth-child(1) {
    top: 0px;
  }
  .EducationSection .edu-tree .edu-branch .fr-branch:after {
    left: -30px;
    width: 2px;
    height: 920px;
  }
}
@media screen and (max-width: 950px) {
  .MOPBB .section--container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .MOPBB .section--container .section--content {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 796px) {
  .AwardsSection .img-container .award-img {
    display: none;
  }
  .AwardsSection .img-container .text-box {
    width: 100vw;
    padding-left: 0;
    padding: 0 20px;
  }
  .AwardsSection .img-container .text-box h1 {
    font-size: 11vw;
  }
}
@media screen and (max-width: 796px) {
  .AwardsSection .awards {
    margin-top: 0;
  }
  .AwardsSection .awards .awards--container .award-card {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 741px) {
  .workExperienceSection {
    gap: 0;
  }
  .workExperienceSection .workContainer .work-card {
    min-width: 100vw;
  }
  .workExperienceSection .workContainer .work-card .card-content {
    padding-left: 0;
  }
  .workExperienceSection .workContainer .atu-card {
    margin-top: 50px;
  }
}
@media screen and (max-width: 420px) {
  .EducationSection .edu-tree .edu-branch {
    margin-bottom: 20px;
  }
  .EducationSection .edu-tree .edu-branch .branch--details {
    left: 0;
  }
  .EducationSection .edu-tree .edu-branch .branch--details:before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 35px;
  }
  .EducationSection .edu-tree .edu-branch .fr-branch:after {
    display: none;
  }
  .EducationSection .edu-tree .edu-branch .l-branch:before {
    display: none;
  }
}