/*-------------- Theme Colour ---------------*/
:root {
  --clr-foreground: hsl(0 0% 0%);
  --clr-background: hsl(0 0% 100%);
  --clr-grey: #7d7d7d;
  --clr-back: #a9a9a94d;
}

@media (prefers-color-scheme: dark) {
  :root {
    --clr-background: hsl(0 0% 0%);
    --clr-foreground: hsl(0 0% 100%);
    --clr-grey: #7d7d7d;
    --clr-back: #a9a9a94d;
  }
}

.light-theme {
  --clr-foreground: hsl(0 0% 0%);
  --clr-background: hsl(0 0% 100%);
  --clr-grey: #7d7d7d;
  --clr-back: #a9a9a94d;
}

.dark-theme {
  --clr-background: hsl(0 0% 0%);
  --clr-foreground: hsl(0 0% 100%);
  --clr-grey: #7d7d7d;
  --clr-back: #a9a9a94d;
}

/*----------------SPECIAL--------------------*/
@font-face {
  font-family: "kalam-bold";
  src: url("../fonts/kalam/Kalam-Bold.ttf");
}

@font-face {
  font-family: "Tahoma";
  src: url("../fonts/tahoma/Tahoma\ Regular\ font.ttf");
}

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/century-gothic/GOTHICB0.TTF");
}

.sp {
  font-family: "Century Gothic";
}
.splogo {
  font-family: "kalam-bold";
}
.sptext {
  font-family: "Century Gothic";
  text-align: left;
}
.spmes {
  color: var(--clr-foreground);
  opacity: 0.8;
}

.text a i {
  color: var(--clr-foreground);
}
.text {
  color: var(--clr-foreground);
}
::-webkit-calendar-picker-indicator {
  filter: invert(25%) sepia(42%) saturate(4475%) hue-rotate(204deg)
    brightness(93%) contrast(95%);
}

/*-------------- Theme Change ---------------*/

#theme-toggle {
  cursor: pointer;
  position: fixed;
  background: 0;
  border: 0;
  opacity: 0.8;
  padding: 10px;
  border-radius: 50%;
  position: relative;
  isolation: isolate;

  z-index: 9990;

  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  #theme-toggle {
    left: 12vw;
  }
}
@media (min-width: 990px) {
  #theme-toggle {
    left: 5vw;
  }
}

#theme-toggle svg {
  fill: var(--clr-foreground);
}

#theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(0 0% 50% / 0.2);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  z-index: -1;
}

.light-theme #theme-toggle::before {
  -webkit-animation: pulseToLight 650ms ease-out;
  animation: pulseToLight 650ms ease-out;
}

.dark-theme #theme-toggle::before {
  -webkit-animation: pulseToDark 650ms ease-out;
  animation: pulseToDark 650ms ease-out;
}

#theme-toggle::after {
  transition: transform 0ms linear 100ms, opacity 100ms linear;
}

#theme-toggle:hover,
#theme-toggle:focus {
  outline: 0;
  opacity: 1;
  background: hsl(0 0% 50% / 0.15);
}

#theme-toggle:hover::after,
#theme-toggle:focus-visible::after {
  opacity: 0.8;
  transform: scale(1);
  transition: transform 70ms linear, opacity 70ms linear;
}

.toggle-circle {
  transition: transform 500ms ease-out;
}

.light-theme .toggle-circle {
  transform: translateX(-15%);
}

.toggle-sun {
  transform-origin: center center;
  transition: transform 750ms cubic-bezier(0.11, 0.14, 0.29, 1.32);
}

.light-theme .toggle-sun {
  transform: rotate(0.5turn);
}

@-webkit-keyframes pulseToLight {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  10% {
    transform: scale(1);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes pulseToLight {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  10% {
    transform: scale(1);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@-webkit-keyframes pulseToDark {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  10% {
    transform: scale(1);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes pulseToDark {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  10% {
    transform: scale(1);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/*----------- General -----------*/

body {
  font-family: "Tahoma";
  color: var(--clr-foreground);
  background-color: var(--clr-background);
}

a {
  color: var(--clr-grey);
  text-decoration: none;
}

a:hover {
  color: var(--clr-foreground);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
i {
  font-family: "Tahoma";
  color: var(--clr-foreground);
}

/*---------------  Back to top button ----------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--clr-foreground);
  width: 35px;
  height: 35px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 23px;
  color: var(--clr-background);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--clr-background);
}

.back-to-top:hover i {
  color: var(--clr-foreground);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*------------------ Preloader -------------------*/
.loader {
  color: var(--clr-foreground);
  font-family: "kalam-bold";
  font-weight: bold;
  font-size: 20vh;
  background-color: var(--clr-background);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
}

.loader span {
  display: inline-block;
  -webkit-animation: pulse 0.4s alternate infinite ease-in-out;
  animation: pulse 0.4s alternate infinite ease-in-out;
}
.loader span:nth-child(odd) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
@-webkit-keyframes pulse {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
}
@keyframes pulse {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
}

/*------------- Header -----------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--clr-background);
  opacity: 0.95;
}

#header .logo {
  font-size: calc(15px + 1vw);
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo a {
  color: var(--clr-foreground);
}

#header .logo a span {
  color: #0761d1;
}

#header .logo img {
  max-height: 40px;
}

/*---------- Get Startet Button ---------------*/
.get-started-btn {
  color: var(--clr-foreground);
  border-radius: 4px;
  padding: 1vh 1vw 1vh 1vw;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--clr-foreground);
}

.get-started-btn:hover {
  background: var(--clr-foreground);
  color: var(--clr-background);
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 10px;
  }
}
@media (max-width: 281px) {
  .get-started-btn {
    padding: 6px 10px 7px 10px;
    margin-right: 15px;
  }
}

/*---------- Get Startet Button2 ---------------*/
.get-started-btn2 {
  color: var(--clr-background);
  border-radius: 4px;
  padding: 1vh 1vw 1vh 1vw;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background: var(--clr-foreground);
  border: 2px solid var(--clr-background);
}

.get-started-btn2:hover {
  background: var(--clr-background);
  color: var(--clr-foreground);
  border: 2px solid var(--clr-foreground);
}

@media (max-width: 992px) {
  .get-started-btn2 {
    padding: 7px 20px 8px 20px;
    margin-right: 10px;
  }
}
@media (max-width: 281px) {
  .get-started-btn2 {
    padding: 6px 10px 7px 10px;
    margin-right: 15px;
  }
}

/*------  Navigation Menu ------*/
/* Desktop Nav */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-grey);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--clr-foreground);
  font-weight: 500;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;

  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--clr-background);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  font-size: 14px;
  text-transform: none;
  color: var(--clr-foreground);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: var(--clr-grey);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*  Mobile Nav */
.mobile-nav-toggle {
  color: var(--clr-foreground);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--clr-background);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 35px;
  right: 30px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--clr-back);
  opacity: 0.9;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--clr-foreground);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--clr-background);
  background-color: var(--clr-grey);
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--clr-back);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: var(--clr-grey);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------- Hero Section -------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: var(--clr-background);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-weight: 700;
  color: var(--clr-foreground);
  line-height: calc(8vw + 3vh);
  font-size: calc(8vw + 3vh);
}

#hero h1 span {
  color: #0761d1;
}

#hero h2 {
  color: var(--clr-foreground);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #0761d1;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: var(--clr-foreground);
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #0761d1;
}

#hero .icon-box:hover {
  border-color: #0761d1;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 580px) {
  #hero h1 {
    margin-left: 15vw;
  }
}

/*-------------- Sections General ------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-background);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--clr-background);
  padding: 0 0 10px 0;
  color: var(--clr-foreground);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--clr-background);
  border-top: 1px solid var(--clr-grey);
  padding: 60px 0 30px 0;
}

.footer-info a:hover {
  color: var(--clr-foreground);
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info h3 span {
  color: #0761d1;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: var(--clr-grey);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  margin-right: 4px;
  text-align: center;
}

#footer .footer-top .social-links a:hover {
  color: var(--clr-foreground);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-foreground);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--clr-grey);
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--clr-grey);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--clr-foreground);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--clr-foreground);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: var(--clr-grey);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--clr-foreground);
}
#footer p {
  color: var(--clr-grey);
}

/*--------------Credit---------------*/
.cred {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: calc(2vh + 1.5vw);
  color: var(--clr-background);
  background-color: var(--clr-foreground);
  font-family: "Century Gothic";
}
.cred span {
  color: #0761d1;
}

/*-------------------Disable Select------------------*/
.disable-select {
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

/*--------------About----------------------*/
.about h1,
.about a,
.about {
  color: var(--clr-foreground);
  font-size: calc(4vw + 10px);
  line-height: calc(4vw + 10px);
  text-align: center;
  padding: 0px;
}

.about h2 {
  color: var(--clr-foreground);
  font-size: calc(2vw + 10px);
  line-height: calc(2vw + 10px);
  text-align: center;
  padding: 0px;
}

.about p {
  font-size: 1rem;
  line-height: 1rem;
  color: var(--clr-foreground);
}
#about {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  position: relative;
}

#about:before {
  content: "";
  background: var(--clr-background);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#about .container {
  position: relative;
  text-align: center;
}
/*-------------------Team-----------*/
.team-list img {
  width: 50%;
}

.team-list .content {
  width: 50%;
}

.team-list .content .follow {
  position: absolute;
  bottom: 24px;
}

.team,
.team-list {
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.team .content .title,
.team-list .content .title {
  font-size: 18px;
  color: var(--clr-foreground);
}

.team .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.team .member-position,
.team .team-social {
  position: absolute;
  bottom: -35px;
  right: 0;
  left: 0;
  margin: auto 10%;
  z-index: 99;
}

.team .team-social {
  bottom: 40px;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.team:hover .team-social {
  opacity: 1;
}

@media (max-width: 768px) {
  .team-list img,
  .team-list .content {
    width: 100%;
    float: none !important;
  }
  .team-list img .follow,
  .team-list .content .follow {
    position: relative;
    bottom: 0;
  }
}

.rounded {
  border-radius: 5px !important;
}

.para-desc {
  max-width: 600px;
}
.text-muted {
  color: var(--clr-grey) !important;
}

.section-title .title {
  letter-spacing: 0.5px;
  font-size: 30px;
}
.img-fluid {
  width: 160px;
  height: auto;
}

/*---------tab--------*/
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--clr-foreground);
  background-color: var(--clr-background);
  border-color: var(--clr-foreground);
  border-bottom: none !important;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--clr-foreground);
}
.nav-tabs {
  border-bottom: 1px solid var(--clr-foreground);
  color: var(--clr-foreground);
}
.nav-tabs:hover,
.nav-link:hover,
.nav-tabs:focus,
.nav-link:focus {
  color: var(--clr-foreground);
}

.longtext p {
  color: var(--clr-foreground);
  font-size: 15px;
}
.longtext h1 {
  font-size: 2rem;
}
.longtext h2 {
  font-size: 1.5rem;
}
.longtext h3 {
  font-size: 1rem;
}

.longtext ul li {
  list-style-type: square;
  color: var(--clr-foreground);
}
