@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --clr-white: #fff;
  --clr-light: #f2f2f2;
  --clr-dark: #101010;
  --clr-paragraph: #444;
  --clr-primary: #0098f5;
  --clr-yellow: #ff9b00;
  --clr-border: #ddd;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-dark);
}

p {
  color: var(--clr-paragraph);
  font-size: 16px;
  margin: 0 0 15px;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transform: translateY(0);
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
  background: var(--clr-white);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  padding: 0;
}

header .navbar {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}

.sticky-header .navbar {
  padding: 5px 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 120px;
  min-width: 120px;
}

.navigation-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link {
  padding: 10px 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
  position: relative;
}

/* dropdown css */

.dropdownItem {
  position: relative;
}

.navbar-nav .dropdownItem .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdownItem .nav-link::after {
  content: '\e5cf';
  font-family: 'Material Icons';
  font-size: 24px;
  line-height: normal;
  color: var(--clr-white);
  transition: all 0.2s ease-in-out;
}

.dropdownMenu {
  background: var(--clr-white);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  transform: translateY(-15px);
  opacity: 0;
  pointer-events: none;
  max-height: 300px;
  overflow: auto;
  box-shadow: 0 5px 20px -3px rgb(0 0 0 / 20%);
}

.dropdownMenu a {
  padding: 10px 15px;
  display: flex;
  border-bottom: 1px solid var(--clr-border);
  transition: all 0.3s ease-in-out;
  color: var(--clr-dark);
}

.dropdownMenu a:hover {
  background: #f5f5f5;
  color: var(--clr-primary);
}

.dropdownMenu li:last-child a {
  border-bottom: 0;
}

.dropdownItem:hover::after {
  transform: rotate(180deg);
}

.dropdownItem:hover .dropdownMenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: visible;
}

/* dropdown css end */

.sticky-header.show-nav .navbar-nav .nav-link,
.sticky-header.hide-nav .navbar-nav .nav-link {
  color: var(--clr-dark);
}

.navbar-nav .dropdownItem .nav-link.active::after,
.navbar-nav .dropdownItem:hover .nav-link,
.navbar-nav .dropdownItem:hover .nav-link::after {
  color: var(--clr-primary);
}

.sticky-header .navbar-nav .nav-link.active,
.sticky-header .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-primary);
}

/* header end */

::-webkit-scrollbar-track {
  border-radius: 5px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #888;
}

/* Button */

.ThemeBtn {
  border: 0;
  padding: 5px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 24px;
  background: var(--clr-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: 0.5px;
  transition: all 0.5s ease-in-out;
  outline: none;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.20);
  text-transform: uppercase;
}

.ThemeBtn:hover {
  color: var(--clr-white);
}


.textBtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-dark);
  line-height: 24px;
}

.textBtn:hover {
  color: var(--clr-dark);
}

.textBtn:after {
  content: '\e941';
  font-family: 'Material Icons';
  display: inline-block;
  font-size: 24px;
  line-height: normal;
}


/* Button end */

/* inputs group */

.form-control {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  min-height: 40px;
  height: 100%;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 50em;
  border: 1px solid transparent;
  border-color: var(--clr-form-color-1);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--clr-primary);
}

/* inputs group end */

.light-bg {
  background: #F2F2F2;
}

.secHead-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secHead-right {
  text-align: right;
}

.secHead-right .divider {
  justify-content: flex-end;
}

.secHead .divider:before,
.secHead-right .divider:after {
  display: none;
}

.secHead-right .divider:before,
.secHead-center .divider:before {
  display: flex;
}

.secHead h2 {
  font-size: 36px;
  position: relative;
  margin: 0 0 20px;
}

.secHead h2 span {
  font-weight: 600;
  color: var(--clr-primary);
}

.secHead h4 {
  font-size: 28px;
  margin: 0 0 15px;
}

.secHead h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.divider {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 20px;
}

.divider:before,
.divider:after {
  content: '';
  width: 100px;
  height: 1px;
  background: var(--clr-border);
  display: inline-block;
}

.custom-space {
  padding-top: 70px;
  padding-bottom: 70px;
}

.btn-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.swiper-pagination-bullet-active {
  background: var(--clr-primary);
}

/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--clr-primary);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
  animation: pulse-animation 2s infinite;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

/* scroll top */

/* keyframe */

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 151, 245, 0.5);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 151, 245, 0);
  }
}

.shrink {
  animation: shrink 2s infinite;
}

@keyframes shrink {
  0% {
    background-size: 120% 120%;
  }

  100% {
    background-size: 100% 100%;
  }
}

.drift {
  animation: drift 2s linear infinite alternate forwards;
}

@keyframes drift {
  from {
    border-radius: 100px 100px 0px 100px;
  }

  to {
    border-radius: 0px 100px 100px 100px;
  }
}

.blink {
  animation: blink 2s infinite alternate;
}

@keyframes blink {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.7);
  }
}

.loading {
  animation: loading 2s linear infinite alternate forwards;
}

@keyframes loading {
  0% {
    left: -100%;
    right: 100%;
  }

  50% {
    left: 50%;
    right: 40%;
  }

  100% {
    left: 100%;
    right: -100%;
  }
}

/* keyframe end */