/* Imports */
/* Icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
@import url("https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css");
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Teko:wght@400;500;600&display=swap");

/* Root */
:root {
  --color-primary: #ff6600;
  --color-secondary: #0c7741;
  --font-family: "Teko";
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: "Montserrat", sans-serif;
}
html,
body {
  scroll-behavior: smooth;
}
::selection {
  color: #fff;
  background: var(--color-primary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
}
a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}
a:hover {
  color: var(--color-primary);
}
button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
ul,
ol,
dl {
  margin-bottom: 0;
}
i[class^="bx"] {
  vertical-align: middle;
}
.imgFluid {
  max-width: 100%;
  width: 100%;
}
.mar-y {
  margin: 4rem 0;
}
.themeBtn {
  color: #fff;
  background-color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border: none;
  position: relative;
  padding: 1.25rem 3.75rem;
  z-index: 1;
}
.themeBtn::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--color-primary);
  position: absolute;
  right: 0;
  top: 0;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.seczee {
    text-align: left;
}

.sectionHeading.seczee a {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 16px;
}

.sectionHeading.seczee span {
    font-size: 16px;
    line-height: 34px;
    color: #000;
    font-family: "Montserrat", sans-serif;
}
.themeBtn:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.themeBtn:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.subhead h4{
  
    color: #000;
  font-size: 4.25rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;  
  margin-bottom: 50px;
}
.subhead span{
        display: inline-block;
    color: var(--color-secondary);
    font-family: "Teko", sans-serif;
    line-height: 1;
    text-transform: uppercase;
    
}
.sectionHeading h4 {
  color: #000;
  font-size: 4.25rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.sectionHeading h6 {
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.sectionHeading span {
  display: inline-block;
  color: var(--color-secondary);
  font-family: "Teko", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.sectionHeading p {
  font-size: 0.95rem;
  font-weight: 500;
  /*line-height: 2;*/
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}

/* Header */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ffffff20;
  backdrop-filter: blur(2px);
  border-bottom: 1px solid #ffffff20;
  box-shadow: 0px 5px 10px -5px #00000020;
  padding: 1rem 0;
  z-index: 10;
}
.header__main {
  justify-content: space-between !important;
}
.header__logo {
  max-width: 200px;
}
.footer__logo {
  max-width: 200px;
  margin: 0 2rem;
}
.header__logo > img,
.footer__logo > img {
  width: 100%;
  object-fit: contain;
}
.header__nav,
.header__main,
.footer__nav,
.footer__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.header__nav li {
  position: relative;
}
.header__nav li a,
.footer__nav li a {
  color: #fff;
  font-weight: 300;
  text-transform: capitalize;
  position: relative;
  isolation: isolate;
  padding: 0.5rem 0.65rem;
  margin: 0 0.25rem;
}
.header__nav li a::after,
.footer__nav li a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms ease-in-out;
  z-index: -1;
}
.header__nav li:hover > a,
.footer__nav li:hover > a {
  color: var(--color-primary);
}
.header__nav li:hover > a::after,
.footer__nav li:hover > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.header__nav li a i {
  transition: all 300ms ease-in-out;
}
.dropdownMenu {
  width: 100%;
  min-width: 240px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff20;
  backdrop-filter: blur(5px);
  border: 1px solid #ffffff20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 300ms ease-in-out;
}
.dropdownMenu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin: 0;
}
.dropdownMenu li:hover > a {
  color: #fff;
}
.dropdownMenu li:hover > a i {
  transform: rotate(-90deg);
}
.dropdownMenu li a::after {
  height: 100%;
}
.dropdownMenu li:hover > a::after {
  transform: scaleX(1);
}
.dropdownMenu--left {
  top: 0;
  left: 100%;
}
.header__nav li:hover > .dropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Banner */
.banner {
  width: 100%;
  min-height: 65vh;
  height: 100%;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}
.banner-bg-media {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 75% 100%, 25% 100%, 0 90%);
}
.banner-bg-media::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: var(--color-primary);
  clip-path: polygon(0% 0%, 0% 25%, 75% 100%, 75% 100%, 20% 100%, 0 100%);
}
.banner-bg-media > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__content > h1 {
  font-size: 6rem;
  line-height: 0.75;
}
.banner__content > h6 {
  font-size: 4rem;
  margin-bottom: 0;
}
.banner__content span {
  color: var(--color-primary);
  font-family: "Teko", sans-serif;
}
.toTop {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 0);
  transition: all 300ms ease-in-out;
}
.toTop:hover {
  filter: brightness(0.4) sepia(1) saturate(1000%) hue-rotate(120deg);
  transform: translate(-50%, 5px);
}
.toTop > img {
  width: 65%;
}

/* About Us */
.aboutUs {
  margin: 6rem 0;
}
.aboutUs__img {
  position: relative;
  isolation: isolate;
}
.aboutUs__img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  clip-path: polygon(5% 0, 93% 5%, 100% 100%, 0 95%);
  transform: rotate(2deg) scale(1.04);
  z-index: -1;
}
.card,
.card-header {
  border: none;
  background-color: transparent;
  padding: 0;
}
.card-header h5 button {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  padding: 0.5rem 0;
}
.card-header h5 button i {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  margin-right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card-header h5 button:hover {
  color: var(--color-primary);
}
.card-header h5 button.collapsed i.fa-minus:before {
  content: "\f067";
}
.card-body {
  padding: 0;
}
.card-body p {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Location */
.location {
  width: 100%;
  min-height: 80vh;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-bg {
  width: 100%;
  object-fit: contain;
}
.location__content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.location--resp{
    display: none;
}
.location--resp .location{
    min-height: 100%;
}
.location--resp .location__content {
    position: relative;
    padding: 4rem 2rem;
}
.location--resp .location__contentRespImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index:-1;
}
.location__img{width:100%;height:100%;}
.location__img img{width:100%;height:100%;object-fit:cover;}



/* Partners */
.partners {
  margin: 3rem 0 5rem;
}
.partners__content {
  margin-top: 3rem;
}
.partners__img {
  width: 250px;
  height: 110px;
  border: 1px solid #00000020;
  border-radius: 0.25rem;
  margin: 1rem auto;
  padding: 1rem;
  transition: all 300ms ease-in-out;
}
.partners__img:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
}
.partners__img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logos-partner .partners__img {
  margin-left: 20px;
}

/* Latest News */
.latestNews {
  margin: 4rem 0;
}
.latestNews__card {
  position: relative;
  margin: 1rem 0;
  transition: all 300ms ease-in-out;
}
.latestNews__card:hover {
  transform: translateY(-10px);
}
.latestNews__img {
  position: relative;
}
.latestNews__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    30deg,
    var(--color-primary) 15%,
    rgb(0 0 0 / 0%) 45%
  );
  position: absolute;
  left: 0;
  top: 0;
}
.latestNews__card:hover .latestNews__img::after {
  background: linear-gradient(
    30deg,
    var(--color-secondary) 15%,
    rgb(0 0 0 / 0%) 45%
  );
}
.latestNews__info {
  color: #fff;
  position: absolute;
  bottom: 5%;
  left: 5%;
  right: 5%;
}
.latestNews__info h5 {
  font-size: 2.25rem;
  font-weight: 500;
}
.latestNews__info a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline !important;
}
.latestNews__info a:hover {
  color: var(--color-primary);
}

/* Footer */
.footer {
  width: 100%;
  height: 100%;
  background: url("../images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 5rem 0 1rem;
}
.footer__logo {
  text-align: center;
}
.footer__nav li a {
  color: #000;
  font-weight: 500;
}
.footer__socailLinks {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__socailLinks a {
  width: 27px;
  height: 27px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0.5rem;
}
.footer__socailLinks a:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}
.footer__socailLinks a i {
  font-size: 20px;
}
.footer__copyright {
  text-align: center;
}
.footer__copyright p {
  font-size: 0.85rem;
  font-weight: 500;
}
ul.myulzee {
    margin: auto;
    padding: revert;
}
.project-content:nth-child(even) {
    background: #efefef;
}
/* Pagetitle */
.pagetitle {
  position: relative;
}
.pagetitle__img,
.pagetitle__img > img {
  width: 100%;
}
.pagetitle__content {
  width: 100%;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 2rem 0 0;
}
.pagetitle__content > h6 {
  font-size: 2rem;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
}
.pagetitle__content > h6 span {
  color: #f60;
  font-weight: 600;
}
.pagetitle__content > h1 {
  font-size: 6rem;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
}
.pagetitle__content > h1 > span {
  color: var(--color-primary);
  font-family: "Teko", sans-serif;
}

/* Contact Us */
.contactUs {
  padding: 8rem 0;
}
.contactUs__content {
  box-shadow: 0 0 10px 1px #00000020;
  padding: 2rem 2rem 4rem;
}
.contactUs__contentForm :is(input, textarea) {
  width: 98%;
  background-color: #f8f8f8;
  border: 1px solid #00000020;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  resize: none;
  transition: all 300ms ease-in-out;
}
.contactUs__contentForm :is(input, textarea):focus {
  outline: none;
}
.contactUs__contentForm :is(input, textarea):hover {
  border-color: var(--color-secondary);
}
.contactUs__contentForm textarea {
  width: 99%;
}
.contactUs__contentForm button {
  text-transform: capitalize;
  padding: 0.65rem 2.45rem;
}
.contactUs__details > iframe {
  border: 1px solid #00000020;
  padding: 0.85rem;
}
.contactUs__detailsLinks a {
  width: 100%;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  margin: 0.65rem 0;
}
.contactUs__detailsLinks a > span {
  display: block;
}
.contactUs__detailsLinks a:hover {
  color: var(--color-primary);
  transform: translateX(10px);
}
.contactUs__detailsLinks a i {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-right: 1rem;
}

/* About Us */
.readMore {
  background: url("../images/read-more-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}

/* Excutive */
.excutive {
  padding: 2rem 0;
}
.excutive__content h6 {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: 0.5rem 0 1rem;
}
.excutive__content > span {
  font-size: 1.75rem;
  font-weight: 300;
  font-family: "brittany";
}
.excutive__img {
  position: relative;
}
.excutive__imgDetails {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.excutive__imgDetails a {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0.75rem;
}
.excutive__imgDetails a:hover {
  color: var(--color-secondary);
  transform: translateY(-5px);
}
.excutive__imgDetails p {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

/* Team */
.team {
  padding: 2rem 0;
}
.team .sectionHeading {
  padding: 1rem 0;
}
.team-card {
  border: 1px solid #00000020;
  border-radius: 0.25rem;
  margin: 0.5rem 0.35rem;
  transition: all 300ms ease-in-out;
}
.team-card:hover {
  box-shadow: 0px 0px 10px 1px #00000020;
  transform: translateY(-5px);
}
.team-card__img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.team-card__img > a {
  width: 100%;
}
.team-card__img a img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    max-height: 350px;
}
.team-card__contentLinks a {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin: 0 0.5rem;
  
}
.team-card__contentLinks {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  background: linear-gradient(to top, var(--color-primary) 10%, transparent);
  padding: 1rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}
.team-card:hover .team-card__contentLinks {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.team-card__content {
  width: 100%;
  padding: 1rem;
  text-align: center;
  transition: all 300ms ease-in-out;
  height: 100px;
}
.team-card__content > a {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}
.team-card__content > a:hover {
  color: var(--color-secondary);
}
.team-card__content > h6 {
  color: var(--color-secondary);
  font-size: 1.25rem;
  line-height: 1;
}
.team-card__content p {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Research */
.research-card {
  position: relative;
  isolation: isolate;
  transition: all 300ms ease-in-out;
  margin: 2rem 1rem;
}
.research-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  clip-path: polygon(5% 2%, 94% 6%, 100% 97%, 2% 95%);
  transform: rotate(1deg) scale(1.1);
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.research-card__img {
  width: 100%;
}
.research-card__img img {
  width: 100%;
}
.research-card__title {
  position: relative;
  color: #fff;
  font-family: var(--font-family, "sans-serif");
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
}
.research-card__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  transition: all 300ms ease;
}
.research-card__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: inline-block;
  border: solid var(--color-primary);
  border-width: 0px 1px 1px 0;
  padding: 5px;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  transition: all 300ms ease;
}
.research-card:hover {
  filter: drop-shadow(1px 1px 5px #00000020);
}
.research-card:hover::before {
  transform: rotate(2deg) scale(1.12);
}
.research-card:hover .research-card__title::before {
  width: 2.25rem;
  background: #fff;
}
.research-card:hover .research-card__title::after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
  border-color: #fff;
}

/* Project Tabs */
.project-tabs {
  counter-reset: project-tabs;
}
.project-tabs--sticky {
  position: sticky;
  top: 1rem;
}
.project-tab {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.project-tab::before {
  counter-increment: project-tabs;
  content: counter(project-tabs, decimal-leading-zero);
  min-width: 6rem;
  height: inherit;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family, "sans-serif");
  font-size: 3rem;
  font-weight: 500;
  background: var(--color-secondary);
  transition: all 300ms ease-in-out;
}
.project-tab__title {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
  color: #fff;
  font-family: var(--font-family, "sans-serif");
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  padding: 1.5rem;
}
.project-tab__content {
  background: var(--color-secondary);
  position: relative;
  top: -1rem;
  padding: 1rem 6rem;
}
.project-tab__content ul li a {
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: var(--font-family, "sans-serif");
  position: relative;
  letter-spacing: 1px;
  padding: 0.25rem 0;
  transition: all 300ms ease-in-out;
}
.project-tab__content ul li a::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: -20px;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-in-out;
}
.project-tab__subContent {
  margin-left: 1rem;
}
.project-tab__subContent li {
  line-height: 1;
}
.project-tab__subContent li a {
  color: #fff;
  font-size: 1.65rem;
  font-family: var(--font-family, "sans-serif");
  letter-spacing: 1px;
  position: relative;
  padding: 0 0.25rem;
}
.project-tab__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.project-tab__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-secondary);
  opacity: 0.8;
  transition: all 300ms ease-in-out;
}
.project-tab__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-tab:is(:hover, .active) {
  box-shadow: 0px 0px 10px 0px #00000020;
  transform: scale(1.01);
}
.project-tab:is(:hover, .active)::before {
  background: var(--color-primary);
}
.project-tab:is(:hover, .active) .project-tab__bg::after {
  background: var(--color-primary);
}
.project-tab__content ul li a:hover {
  color: var(--color-primary);
}
.project-tab__content ul li a:hover::after {
  background-color: var(--color-primary);
}
.project-tab__content ul li a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

/* Project */
.project-content:nth-child(even) {
    background: #Fddd7;
   
}
.project-content {
  padding: 30px;
}
.project-content:nth-child(odd) {
    margin: 100px 0;
    background:#f0efec;
}
.project p b.title {
  color: var(--color-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
}
.project-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 0.5rem solid var(--color-primary);
  box-shadow: 0px 0px 10px 1px #00000020;
  margin: 1rem 0 2rem;
}
.project-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-around;
}

.project-contact__details {
    padding-left: 20px;
}
.project-contact__details a i {
    padding-right: 1px;
}


.project-contact__img {
  width: 95px;
  height: 95px;
}
.project-contact__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.project-contact__details p {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.project-contact__details a {
  display: block;
  color: var(--color-primary);
  padding: 0.25rem;
  font-size: 14px;
}
/* Profile */
.profile {
  margin: 4rem 0;
}
.profile__img {
  width: 100%;
  height: 100%;
}
.profile__img > img {
  width: 97%;
  height: 97%;
  object-fit: cover;
}
.profile__content :is(h5, h3) {
  line-height: 1;
  text-transform: uppercase;
}
.profile__content > h5 {
  color: var(--color-primary);
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 0;
}
.profile__content > h3 {
  font-size: 3rem;
  font-weight: 500;
}
.profile__content > p {
  font-size: 0.95rem;
  font-weight: 500;
}
.socialLinks a {
  display: block;
  width: 40px;
  height: 40px;
  color: #000;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 102 0 / 50%);
  position: relative;
  margin: 0 0.25rem;
  overflow: hidden;
  z-index: 1;
}
.socialLinks a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    var(--color-primary) 25%,
    rgb(255 102 0 / 20%) 100%
  );
  background-color: rgb(255 102 0 / 50%);
  transition: 0.5s;
  z-index: 2;
}
.socialLinks a:hover::before {
  top: 0;
}
.socialLinks a i {
  font-size: 1.2rem;
  position: relative;
  transition: all 500ms ease-in-out;
  z-index: 3;
}
.socialLinks a:hover i {
  color: #fff;
  transform: rotateY(360deg);
}

/* Slick Styling */
.slick-slide {
  margin-right: 0;
}
.slick-prev,
.slick-next {
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
}
.slick-prev:hover,
.slick-next:hover {
  background: var(--color-secondary);
}
.slick-prev::before,
.slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.slick-prev {
  right: auto;
  left: -3%;
}
.slick-next {
  right: -3%;
}
.slick-dots {
  bottom: -35px;
}
.slick-dots li button:before {
  color: var(--color-primary);
  font-size: 38px;
}
.slick-dots li.slick-active button:before {
  color: var(--color-secondary);
}
.header__logo img {
    width: 100%;
    height: 70px;
}
.myulzee li {
  list-style-type: disc !important;
}
.footer__nav {
    flex: 1;
}
.footer>.container {
    max-width: 1140px;
}
/* Side Bar */
.sideBar {
  position: fixed;
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  background-color: #ffffff75;
  overflow-x: hidden;
  transition: all 300ms ease-in-out;
  z-index: 100;
  padding: 4rem 0;
  backdrop-filter: blur(20px);
}  
sideBar::-webkit-scrollbar {
  width: 50px;
}
sideBar::-webkit-scrollbar-track {
  background: #ccc; 
}
sideBar::-webkit-scrollbar-thumb {
  background: var(--color-primary); 
}
sideBar::-webkit-scrollbar-thumb:hover {
  background: red; 
}
.sideBar .header__nav  a {
 color: #000;
font-weight: 500;
font-size: 0.9rem;
}
.sideBar .header__logo {
  width: fit-content;
  font-size: 2.75rem;
  display: block;
  margin: 0 auto 2rem;
}
.sideBar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/*Responsive styling*/
.header__nav--sidebar{
    flex-direction: column;    
    align-items: flex-start;    
    gap: 0.75rem;
}
.header__logo--lg img{
    height: 95px;
}
.header__nav--sidebar {
  margin: 3rem 1rem;
}
.header__menu {
  position: absolute;
  right: 4rem;
  top: 2rem;
  z-index: 10;
}
.header__menu{
    display:none;
    margin-right: 1rem;
}
.header__menu > div {
  cursor: pointer;
}
.header__menu > div > i {
  color: #fff;
  font-size: 2.5rem;
  transition: all 300ms ease-in-out;
}
.header__menu i:hover {
  color:var(--color-primary);
}

/* Media Queries*/
@media only screen and (max-width:575.98px){
    
/*Location*/
.location--normal {display: none;}
.location--resp {display: block;}

/*Section Heading*/
.sectionHeading h4 {font-size: 3rem;}
.sectionHeading :is(p, ul>li) {font-size: 0.85rem;}
.sectionHeading ul>li {margin: 0.5rem 0;}
.sectionHeading.sectionHeading--resp h6 {font-size: 2rem;}
.sectionHeading h6 {font-size: 2.25rem;}
.subhead h4 {font-size: 2.75rem;margin-bottom: 20px;}
.sectionHeading.seczee span {font-size: 12px;line-height: 1.75;padding: 0.5rem ;}

/* ThemeBtn*/
.themeBtn {padding: 1rem 2rem;font-size: 0.85rem;}

/*Contact*/
.contactUs {padding: 5rem 0;}
.contactUs__details {margin: 1rem 0;}

/*Header*/
.header__main{display:none;}
.header__menu {display:flex; justify-content:flex-end;position: static;}

/*Banner*/
.banner {min-height: 55vh;padding-top: 2rem;}
.banner__content > h6 {font-size: 3rem;}
.banner__content > h1 {font-size: 4rem;}

/*About Us*/
.aboutUs {margin: 4rem 0 3rem;}
.aboutUs__content {padding: 2rem 0;}
.card-header h5 button i {width: 23px;font-size: 0.7rem;height: 23px;}
.card-header h5 button {padding: 0.25rem 0;}
.card-body p span {font-size: 0.75rem !important;}

/*Partners*/
.partners__img {width: 200px;height: 110px;}
.logos-partner .partners__img {margin-left: 15px;}

/*Footer*/
.footer {background-size: cover;}
.footer__logo {max-width: 180px;margin: 0.25rem auto 0.5rem;}
.footer__main {flex-direction: column;}
.footer__nav li a {font-size: 0.9rem;padding: 0.25rem;width: max-content;}

/*Page Title*/
.pagetitle__img {height: 250px;}
.pagetitle__img  > img{height: 100%;}
.pagetitle__content {margin: 1rem 0 0;}
.pagetitle__content > h6 {font-size: 1.25rem;}
.pagetitle__content > h1 {font-size: 4rem;}
.pagetitle__content > h6 span {font-weight: 600;font-size: 1rem;margin: 0.35rem 0;display: inline-block;line-height: 1.75;}

/*Research*/
.research-card{display: grid;}

/*Project*/
.project-tab__title {font-size: 1.75rem;padding: 1rem;}
.project-tab::before {font-size: 2.5rem;}
.project-tab__content ul li a {font-size: 1.25rem;}
.project p b.title {font-size: 1.15rem;}
.project-contact {flex-direction: column;}
.project-contact__details {display: flex;flex-direction: column;align-items:center;}
.project-tab__content {padding: 1rem 2rem 1rem 3rem;}
.project-content {padding: 25px 15px;}
.project-contact__details {padding-left: 0; }
.profile__content > h5 {font-size: 2.9rem;}
.profile__content > h3 {font-size: 2.25rem;}
.profile__content {padding: 2rem 1rem;}
.project-contact__details a {font-size: 12px;}

}
@media only screen and (max-width:991.98px){
    /*Section Heading*/
.sectionHeading h4 {font-size: 3rem;}
.sectionHeading :is(p, ul>li) {font-size: 0.85rem;}
.sectionHeading ul>li {margin: 0.5rem 0;}
.sectionHeading.sectionHeading--resp h6 {font-size: 2rem;}
.sectionHeading h6 {font-size: 2.25rem;}
.subhead h4 {font-size: 2.75rem;margin-bottom: 20px;}
.sectionHeading.seczee span {font-size: 12px;line-height: 1.75;padding: 0.5rem ;}

/* ThemeBtn*/
.themeBtn {padding: 1rem 2rem;font-size: 0.85rem;}


/*Contact*/
.contactUs {padding: 5rem 0;}
.contactUs__details {margin: 1rem 0;}

/*Header*/
.header__main{display:none;}
.header__menu {display:flex; justify-content:flex-end;position: static;}

/*Banner*/
.banner {min-height: 55vh;padding-top: 2rem;}
.banner__content > h6 {font-size: 3rem;}
.banner__content > h1 {font-size: 4rem;}

/*About Us*/
.aboutUs {margin: 4rem 0 3rem;}
.aboutUs__content {padding: 2rem 0;}
.card-header h5 button i {width: 23px;font-size: 0.7rem;height: 23px;}
.card-header h5 button {padding: 0.25rem 0;}
.card-body p span {font-size: 0.75rem !important;}

/*Partners*/
.partners__img {width: 200px;height: 110px;}
.logos-partner .partners__img {margin-left: 15px;}

/*Footer*/
.footer {background-size: cover;}
.footer__logo {max-width: 180px;margin: 0.25rem auto 0.5rem;}
.footer__main {flex-direction: column;}
.footer__nav li a {font-size: 0.9rem;padding: 0.25rem;width: max-content;}

/*Page Title*/
.pagetitle__img {height: 250px;}
.pagetitle__img  > img{height: 100%;}
.pagetitle__content {margin: 1rem 0 0;}
.pagetitle__content > h6 {font-size: 1.25rem;}
.pagetitle__content > h1 {font-size: 4rem;}
.pagetitle__content > h6 span {font-weight: 600;font-size: 1rem;margin: 0.35rem 0;display: inline-block;line-height: 1.75;}

/*Research*/
.research-card{display: grid;}

/*Project*/
.project-tab__title {font-size: 1.75rem;padding: 1rem;}
.project-tab::before {font-size: 2.5rem;}
.project-tab__content ul li a {font-size: 1.25rem;}
.project p b.title {font-size: 1.15rem;}
.project-contact {flex-direction: column;}
.project-contact__details {display: flex;flex-direction: column;align-items:center;}
.project-tab__content {padding: 1rem 2rem 1rem 3rem;}
.project-content {padding: 25px 15px;}
.project-contact__details {padding-left: 0; }
.profile__content > h5 {font-size: 2.9rem;}
.profile__content > h3 {font-size: 2.25rem;}
.profile__content {padding: 2rem 1rem;}
.project-contact__details a {font-size: 12px;}


/*Location*/
.location--normal {display: none;}
.location--resp {display: block;}

}

@media only screen and (max-width:300px){
/*Banner*/
.banner__content > h6 {font-size: 2rem;}
.banner__content > h1 {font-size: 3rem;line-height: 1.1;}

/*About Us*/
.card-header h5 button {font-size: 0.9rem;}

/*Partners*/
.partners__img {width: 150px;height: 100px;}

/*Contact*/
.contactUs {padding: 5rem 0;}
.contactUs__details {margin: 1rem 0;}

/*Latest News*/
.latestNews {margin: 0;}

/*Section Heading*/
.sectionHeading h4 {font-size: 2.5rem;}
.sectionHeading :is(p, ul>li) {font-size: 0.85rem;}
.sectionHeading ul>li {margin: 0.5rem 0;}
.sectionHeading.sectionHeading--resp h6 {font-size: 2rem;}
.sectionHeading h6 {font-size: 2.25rem;}
.subhead h4 {font-size: 2.75rem;margin-bottom: 20px;}
.sectionHeading.seczee span {font-size: 12px;line-height: 1.75;padding: 0.5rem ;}

/* ThemeBtn*/
.themeBtn {padding: 1rem 2rem;font-size: 0.85rem;}

/*Header*/
.header__main{display:none;}
.header__menu {display:flex; justify-content:flex-end;position: static;}

/*Banner*/
.banner {min-height: 55vh;padding-top: 2rem;}
.banner__content > h6 {font-size: 3rem;}
.banner__content > h1 {font-size: 4rem;}

/*About Us*/
.aboutUs {margin: 4rem 0 3rem;}
.aboutUs__content {padding: 2rem 0;}
.card-header h5 button i {width: 23px;font-size: 0.7rem;height: 23px;}
.card-header h5 button {padding: 0.25rem 0;}
.card-body p span {font-size: 0.75rem !important;}

/*Partners*/
.partners__img {width: 200px;height: 110px;}
.logos-partner .partners__img {margin-left: 15px;}

/*Footer*/
.footer {background-size: cover;}
.footer__logo {max-width: 180px;margin: 0.25rem auto 0.5rem;}
.footer__main {flex-direction: column;}
.footer__nav li a {font-size: 0.9rem;padding: 0.25rem;width: max-content;}

/*Page Title*/
.pagetitle__img {height: 250px;}
.pagetitle__img  > img{height: 100%;}
.pagetitle__content {margin: 1rem 0 0;}
.pagetitle__content > h6 {font-size: 1.25rem;}
.pagetitle__content > h1 {font-size: 4rem;}
.pagetitle__content > h6 span {font-weight: 600;font-size: 1rem;margin: 0.35rem 0;display: inline-block;line-height: 1.75;}

/*Research*/
.research-card{display: grid;}

/*Project*/
.project-tab__title {font-size: 1.75rem;padding: 1rem;}
.project-tab::before {font-size: 2.5rem;}
.project-tab__content ul li a {font-size: 1.25rem;}
.project p b.title {font-size: 1.15rem;}
.project-contact {flex-direction: column;}
.project-contact__details {display: flex;flex-direction: column;align-items:center;}
.project-tab__content {padding: 1rem 2rem 1rem 3rem;}
.project-content {padding: 25px 15px;}
.project-contact__details {padding-left: 0; }
.profile__content > h5 {font-size: 2.9rem;}
.profile__content > h3 {font-size: 2.25rem;}
.profile__content {padding: 2rem 1rem;}
.project-contact__details a {font-size: 12px;}

/*Location*/
.location--normal {display: none;}
.location--resp {display: block;}


}
