:root {
  /* --themeColor: #00bfff; */
  --themeColor: #0f9b0f;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
/* Navbar */
.customNavbar {
  background: linear-gradient(-45deg, #66ff00, #0f9b0f, #159957, #00ffff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #fff;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.customNavbar:hover .wrapper {
  clip-path: polygon(80% 0, 100% 0%, 95% 100%, 100% 100%, 81% 100%);
}
.customNavbar .container {
  max-width: 1300px;
}
.customNavbar .navbar-nav li .nav-link {
  text-transform: uppercase;
  margin-right: 0.5em;
  color: #fff;
  font-weight: 600;
  transition: 200ms all ease-in-out;
  border-radius: 0.3em;
}
.customNavbar .navbar-nav li .nav-link:hover,
.customNavbar .navbar-nav li .nav-link.active {
  text-shadow: 0 6px 1px black;
}
.wrapper {
  width: 195%;
  position: absolute;
  height: 100%;
  background-color: white;
  clip-path: polygon(80% 0, 100% 0%, 97% 100%, 100% 100%, 81% 100%);
  transition: 1s all;
  right: 65%;
}
.customNavbar .nav-item.darkSkinItemMoon {
  display: none;
  font-size: 1.7em;
  margin-top: -0.3em;
  cursor: pointer;
}
.customNavbar .nav-item.darkSkinItemSun {
  display: block;
  margin-top: -0.3em;
  font-size: 1.7em;
  color: #ffd700;
  cursor: pointer;
}
.customNavbar .nav-item.darkSkinItemSun .darkSkinBtn {
  text-shadow: 0 0 20px #ffd700;
}
.customNavbar .nav-item.darkSkinItemSun .nav-link {
  text-shadow: none !important;
}
.customNavbar .nav-link .darkSkinBtn {
  color: gold;
}
.navbar-brand img {
  height: 120px;
}
.all-show {
  z-index: 10;
}
.customNavbar .dropdown {
  position: relative;
  display: inline-block;
}
.customNavbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  margin-top: -0.5em;
  border: none;
  border-radius: 0.4em;
}
.customNavbar .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.customNavbar .dropdown-content a:hover {
  background-color: #ddd;
}
.customNavbar .dropdown:hover .dropdown-content {
  display: block;
}
.customNavbar .dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* Contact Section */
.contactSection {
  background-image: url("../img/contact-bg.jpg");
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  padding: 4em 0;
}
.contactSection .contactHeading {
  font-size: 3.5em;
  font-weight: 700;
  color: white;
  font-family: "Raleway", sans-serif;
}
.contactSection .mainText {
  color: white;
  margin-top: 0.5em;
}
.contactSection .contactForm {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 3em;
  margin-top: 3em;
}
.contactSection .contactInput {
  width: 100%;
  border-bottom: 1px solid var(--themeColor);
  padding: 1em 0.6em;
  border-right: 0;
  border-top: 0;
  border-left: 0;
  margin-bottom: 1em;
  outline: none;
}
.contactSection textarea.contactInput {
  resize: none;
}
.contactSection .sentBtn {
  border: none;
  display: inline-block;
  text-decoration: none;
  background-color: var(--themeColor);
  color: white;
  font-weight: 500;
  padding: 0.6em 1.5em;
  margin-top: 1em;
  transition: 200ms all ease-in-out;
  opacity: 0.7;
}
.contactSection .sentBtn:hover {
  opacity: 1;
}
.contactSection .footerLogo {
  display: inline-block;
  margin-bottom: 2em;
}
.contactSection .footerLogo img {
  height: 90px;
}
.contactSection .row {
  align-items: flex-end;
}
.contactSection .findDiv {
  margin-bottom: 0.8em;
}
.contactSection .findDiv i {
  font-size: 2em;
  color: var(--themeColor);
  margin-right: 0.8em;
}
.contactSection .socialIcon {
  display: inline-block;
  text-decoration: none;
}
.contactSection .socialIcon:hover img {
  transform: scale(1.1);
}
.contactSection .socialIcon img {
  height: 35px;
  transition: 200ms all ease-in-out;
  margin-right: 0.6em;
}
.contactSection .qucikLink {
  font-size: 1.5em;
  font-weight: 600;
  margin: 1em 0 0.4em 0;
}
.contactSection .footerLink {
  display: inline-block;
  text-decoration: none;
  color: var(--themeColor);
  margin-right: 1em;
  transition: 200ms all ease-in-out;
}
.contactSection .footerLink:hover {
  opacity: 0.7;
}
/* Copy Right Text */
.copyRightText {
  background-color: var(--themeColor);
  padding: 2em;
  font-size: 0.8em;
  color: white;
  text-align: center;
}

/* Up Arrow */
.upArrow {
  height: 80px;
  width: 80px;
  font-size: 2.5em;
  text-align: center;
  background-color: var(--themeColor);
  color: white !important;
  border-radius: 50%;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10110;
  border: 3px solid white;
  display: inline-block;
  text-decoration: none;
  line-height: 1.9;
}
.subHeading {
  font-size: 2.5em;
  text-align: center;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  margin-bottom: 1em;
  position: relative;
}
.subHeading span {
  color: var(--themeColor);
  font-weight: 800;
  font-size: 1.5em;
}
.subHeading::before {
  content: " ";
  position: absolute;
  background: var(--themeColor);
  height: 3px;
  width: 2.5em;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}
.subHeading::after {
  content: " ";
  position: absolute;
  display: block;
  flex-wrap: wrap;
  background: var(--themeColor);
  height: 3px;
  width: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
}

/* Our Team New Css */
.ourTeamSection {
  padding: 4em 0;
  background-color: #f1f1f1;
}
.ourTeamSection .mainText {
  text-align: justify;
  font-size: 1.1em;
  color: #333;
  margin-top: 1em;
}
.ourTeamSection .flipImg {
  width: 80%;
  margin: 10px 0;
  border-radius: 0 1.5em 1.5em 0;
  transition: 300ms all ease-in-out;
}
.ourTeamSection label {
  display: block;
  height: 400px;
  perspective: 1000px;
  transform-style: preserve-3d;
  cursor: pointer;
  margin-top: 2em;
}
.ourTeamSection .flip-card .socialIcons {
  position: relative;
  z-index: 10201;
}
.ourTeamSection .flip-card .socialIcons .teamSocialLink:hover {
  opacity: 0.7;
}
.ourTeamSection .flip-card .socialIcons {
  margin-top: 1em;
  text-align: center;
}
.ourTeamSection .flip-card .socialIcons .teamSocialLink {
  font-size: 1.5em;
  text-decoration: none;
  display: inline-block;
  margin: 0 0.3em;
  color: var(--themeColor);
  transition: 200ms all ease-in-out;
}
.ourTeamSection .flip-card {
  width: 100%;
  height: 100%;
  transition: all 500ms ease-in-out;
  transform-style: preserve-3d;
  z-index: 1;
  animation: rotateCard 2000ms;
}
.ourTeamSection .flip-card .front,
.ourTeamSection .flip-card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
  backface-visibility: hidden;
}
.ourTeamSection .flip-card .front {
  border-radius: 0 1.5em 1.5em 0;
  background: white;
  box-shadow: -8px 8px 0px #00000010;
}
.ourTeamSection .flip-card .back {
  border-radius: 0 1.5em 1.5em 0;
  box-shadow: -8px 8px 0px var(--themeColor);
}
.ourTeamSection .flip-card .back {
  transform: rotateX(180deg);
  color: #000;
  background: white;
}
.ourTeamSection label:hover .flip-card .flipImg {
  transform: scale(1.1);
  margin-bottom: 1em;
}
.ourTeamSection label:hover .flip-card {
  /* transform: rotateX(10deg) rotateY(-10deg); */
  box-shadow: -8px 8px 0px var(--themeColor);
  border-radius: 0 1.5em 1.5em 0;
}
.ourTeamSection input {
  display: none;
}
.ourTeamSection :checked + .flip-card {
  transform: rotateX(180deg);
}
.ourTeamSection label:hover :checked + .flip-card {
  transform: rotateX(180deg);
  box-shadow: 0 -20px 50px rgba(255, 255, 255, 0.2);
  border-radius: 0 1.5em 1.5em 0;
}
.ourTeamSection .front h1 {
  font-size: 1.2em;
  color: var(--themeColor);
  font-weight: 600;
  margin: 0.3em;
}
.ourTeamSection .front h2 {
  color: #9b9b9b;
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 0.6em;
}
.ourTeamSection .front p {
  font-weight: bold;
  color: black;
  margin: 10px;
  transition: 200ms all ease-in-out;
}
.ourTeamSection .front p:hover,
.ourTeamSection .back p:hover {
  color: var(--themeColor);
}
.ourTeamSection .back h1 {
  color: var(--themeColor);
  font-size: 1.2em;
  font-weight: 600;
  margin: 35px 0;
}
.ourTeamSection .back p {
  color: black;
  margin: 14px;
  font-size: 0.9em;
  text-align: justify;
  transition: 200ms all ease-in-out;
}
.ourTeamSection .back .click {
  margin: 20px;
  text-align: center;
  font-weight: bold;
  color: black;
}

/* Media Query */
@media (max-width: 992px) {
  .customCard .description .line {
    height: 4em;
  }
  .newsCard {
    height: 270px;
  }
  .newsSection .newsCard .title {
    font-size: 1.1em;
  }
  .contactSection .contactHeading {
    font-size: 2em;
  }
  .navbar-brand img {
    height: 80px;
  }
  .wrapper {
    width: 270%;
    right: 50%;
  }
  .customNavbar .navbar-nav li .nav-link {
    color: var(--themeColor);
    font-size: 0.9em;
  }
  .customNavbar .navbar-nav li .nav-link:hover,
  .customNavbar .navbar-nav li .nav-link.active {
    text-shadow: none;
    opacity: 0.8;
  }
  .customNavbar {
    position: relative;
    z-index: 1010;
  }
  .contactSection .contactForm {
    padding: 2em 1em;
  }
  .eventsSection .carousel-control-next,
  .eventsSection .carousel-control-prev {
    bottom: -100px;
  }
  .clipped {
    min-height: 65vh;
  }
  .departmentSection .subHeading {
    padding-top: 2em;
  }
  .customNavbar .nav-item.darkSkinItemMoon {
    margin-top: unset;
  }
  .upArrow {
    height: 60px;
    width: 60px;
    right: 20px;
    bottom: 50px;
    line-height: 2.3;
    font-size: 1.5em;
    border-width: 1px;
  }

  /* New */
  .ourTeamSection .subHeading {
    font-size: 1.4em;
  }
  .ourTeamSection .mainText {
    font-size: 1em;
  }
  .ourTeamSection label:hover .flip-card {
    transform: unset;
  }
  .ourTeamSection label {
    height: 450px;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
