/*--------------------------------------------------------------------------
TABLE OF CONTENTS
--------------------------------------------------------------------------
* Google Font
* Common Css
========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root{
  --primary-font:'Plus Jakarta Sans', sans-serif;
  --body-bg:#fff;
  --body-color:#292962;
  --primary-color:#fab700;
  --primary-rgb:250,183,0;
  --section-bg:#f9f9f9;
  --card-bg:#fff;
  --border-color:#E7E7E7;
  --muted-color:#5F5F5F;
  --dark-color:#292962;
  --box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.06);
}

/*==========================================================================
Common Css
==========================================================================*/
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb),.25);
}

a {
    text-decoration: none;
    color: var(--body-color);
    transition: all 400ms ease;
}

a:hover {
    color: var(--primary-color);
}

img,
svg {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.logo {
    max-height: 40px;
}

.footer-logo {
    max-height: 50px;
    filter: grayscale(100%);
}

.z-index {
    z-index: 1;
}

.transition {
    transition: all 400ms ease;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.card-padding {
    padding: 30px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}
/*==========================================================================
Color And Button Styles CSS
==========================================================================*/
.section-bg {
    background: var(--section-bg);
}

.text-muted {
    color: #5F5F5F !important;
}

.text-dark {
    color: var(--dark-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.btn {
    position: relative;
    border-radius: 6px;
    z-index: 1;
    transition: 0.5s;
    overflow: hidden;
    box-shadow: none;
    font-weight: 500;
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-color) !important;
    color: var(--body-color);
    border: 1px solid transparent !important;
}

.btn-primary:hover {
    background: var(--body-bg) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 400ms ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    border: 1px solid transparent;
    color: #fff;
}

.btn-sm {
    padding: 6px 24px;
}

.btn-md {
    padding: 12px 30px;
}

.btn-lg {
    padding: 13px 34px;
}

.subtitle {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    padding-right: 46px;
    letter-spacing: 1.3px;
    margin-bottom: 10px;
    padding-left: 46px;
    line-height: 20px;
}

.subtitle::before {
    position: absolute;
    right: 0;
    top: 2px;
    height: 14px;
    width: 32px;
    background-image: url(../images/icon/subtitle-before.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}

.subtitle::after {
    position: absolute;
    left: 0;
    top: 2px;
    height: 14px;
    width: 32px;
    background-image: url(../images/icon/subtitle-before.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.subtitle-right {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    padding-right: 46px;
    letter-spacing: 1.3px;
    margin-bottom: 10px;
    line-height: 20px;
}

.subtitle-right::before {
    position: absolute;
    right: 0;
    top: 2px;
    height: 14px;
    width: 32px;
    background-image: url(../images/icon/subtitle-before.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}
/*==========================================================================
Font Size
==========================================================================*/
.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px
}

.fs-19 {
    font-size: 19px
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-25 {
    font-size: 25px;
}

/*==========================================================================
Spacing Css
==========================================================================*/
.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}

@media(max-width:767px) {
    .mt-100 {
        margin-top: 80px;
    }
}

.pb-30 {
    padding-bottom: 30px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.p-30 {
    padding: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.p-40 {
    padding: 40px;
}

.py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 576px) {
    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .py-80 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.pb-50 {
    padding-bottom: 40px;
}

@media(min-width:576px) {
    .pb-50 {
        padding-bottom: 40px;
    }
}

@media(min-width:992px) {
    .pb-50 {
        padding-bottom: 50px;
    }
}

.pb-60 {
    padding-bottom: 30px;
}

@media(min-width:576px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media(min-width:992px) {
    .pb-60 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media (min-width: 1080px) {
    .pb-120 {
        padding-bottom: 120px;
    }
}

.py-120 {
    padding: 60px 0;
}

@media (min-width: 576px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .py-120 {
        padding: 90px 0;
    }
}

@media (min-width: 1080px) {
    .py-120 {
        padding: 120px 0;
    }
}

.hero-padding {
    padding: 3.5rem 0;
}

@media(min-width:992px) {
    .hero-padding {
        padding: 7rem 0;
    }
}

.section-head {
    padding-bottom: 2.5rem;
}

@media(min-width:992px) {
    .section-head {
        padding-bottom: 3.75rem;
    }
}

.footer-padding {
    padding-bottom: 30px;
    padding-top: 40px;
}

@media(min-width:576px) {
    .footer-padding {
        padding-bottom: 40px;
        padding-top: 60px;
    }
}

@media(min-width:992px) {
    .footer-padding {
        padding-bottom: 60px;
        padding-top: 80px;
    }
}
/*==========================================================================
Heading Css
==========================================================================*/
.display-6 {
    font-size: calc(1.5rem + 3vw);
    font-weight: 700;
    line-height: 1.25;
}

@media(min-width: 1200px) {
    .display-6 {
        font-size: 3.75rem;
    }
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1,
.h1 {
    font-size: calc(1.365rem + 2.1vw)
}

@media(min-width: 1200px) {

    h1,
    .h1 {
        font-size: 3rem;
    }
}

h2,
.h2 {
    font-size: calc(1.33rem + 1.2vw)
}

@media(min-width: 1200px) {

    h2,
    .h2 {
        font-size: 2.25rem;
    }
}

h3,
.h3 {
    font-size: calc(1.275rem + 0.3vw)
}

@media(min-width: 1200px) {

    h3,
    .h3 {
        font-size: 1.5rem;
    }
}

h4,
.h4 {
    font-size: 1.25rem;
}

h5,
.h5 {
    font-size: 1.125rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 27px;
}
/*==========================================================================
Loader
==========================================================================*/
.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--body-bg);
    z-index: 9999;
    height: 100vh;
    display: grid;
    place-items: center;
    transition: all 0.6s ease-in;
}
.loader.hide {
    display: none !important;
}

.bar {
  width: 10px;
  height: 70px;
  background: #fff;
  display: inline-block;
  transform-origin: bottom center;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  animation: loader 1.2s linear infinite;
}
.bar1 {
  animation-delay: 0.1s;
}
.bar2 {
  animation-delay: 0.2s;
}
.bar3 {
  animation-delay: 0.3s;
}
.bar4 {
  animation-delay: 0.4s;
}
.bar5 {
  animation-delay: 0.5s;
}
.bar6 {
  animation-delay: 0.6s;
}
.bar7 {
  animation-delay: 0.7s;
}
.bar8 {
  animation-delay: 0.8s;
}

@keyframes loader {
  0% {
    transform: scaleY(0.1);
    background: ;
  }
  50% {
    transform: scaleY(1);
    background: var(--primary-color);
  }
  100% {
    transform: scaleY(0.1);
    background: transparent;
  }
}

/*==========================================================================
Scroll Top CSS
==========================================================================*/
.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #E8E8E8;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    transition: all 200ms linear;
}

.scroll-up::after {
    position: absolute;
    content: "\2191";
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: var(--primary-color);
    left: 0;
    top: 0;
    font-size: 35px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-up svg path {
    fill: none;
}

.scroll-up svg.scroll-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}
/*==========================================================================
Navbar
==========================================================================*/
body {
    background: var(--body-bg);
    color: var(--body-color);
    font-family: var(--primary-font);
    font-size: 16px;
}

.navbar {
    background: var(--navbar-bg);
}

.navbar .close {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    animation: slide-down 0.7s;
    z-index: 99;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .nav-item .nav-link {
    color: var(--body-color);
    margin-left: 15px;
    transition: all .5s ease-in-out;
    padding: 20px 10px 15px 10px;
    font-size: 15px;
    font-weight: 500;
}

.navbar .nav-link[aria-expanded="true"]>i {
    transform: rotate(180deg);
}

.navbar .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar .navbar-text .icon-wrap {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
}

.navbar .navbar-text.social {
    bottom: -7px;
}

.navbar .navbar-text.social i {
    width: 35px;
    height: 35px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    transition: all 400ms ease;
}

.navbar .navbar-text.social i:hover {
    background: var(--dark-color);
    color: #fff;
}

.navbar .dropdown-menu {
    background: var(--card-bg);
    border: none;
}

.navbar .dropdown-menu li a {
    color: var(--body-color);
    margin-bottom: 10px;
    transition: all .5s ease-in-out;
    font-size: 15px;
    font-weight: 500;
}

.navbar .dropdown-menu li a:hover {
    margin-left: 4px;
    background: transparent;
    color: var(--primary-color);
}

.navbar .offcanvas {
    background: var(--card-bg);
}

@media(min-width: 992px) {
    .navbar .fa-chevron-down {
        font-size: 13px;
    }
}

@media(max-width: 992px) {
    .navbar .offcanvas {
        width: 300px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 15px 30px 10px;
        margin: 0;
    }

    .navbar .navbar-nav .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .navbar .dropdown-item {
        padding: 11px 40px 7px
    }

    .navbar .dropdown-menu li a {
        margin: 0;
    }

    .navbar .nav-link>i {
        float: right;
        vertical-align: middle;
        margin-right: -15px;
    }
}

/*==========================================================================
Hero
==========================================================================*/
.hero .light-effect{
    position: absolute;
    bottom: 33%;
    right: 15%;
    width: 651px;
    height: 273px;
    background-color: rgba(var(--primary-rgb),0.5);
    opacity: 0.8;
    filter: blur(93px);
    border-radius: 1% 50% 50% 0%;
    z-index: -1;
}
@media (max-width: 1499px){
   .hero .light-effect {
      right: 15%;
      width: 491px;
  }
}

@media (max-width: 1199px){
   .hero .light-effect {
      bottom: 32%;
      right: 5%;
      width: 450px;
  }
}

@media (max-width: 991px){
   .hero .light-effect {
      bottom: 24%;
      right: 2%;
      width: 350px;
  }
}

@media  (max-width: 767px){
   .hero .light-effect {
      bottom: 19%;
      right: 27%;
      width: 350px;
  }
  
}

@media (max-width: 575px){
   .hero .light-effect {
      bottom: 30%;
      right: 20%;
      width: 200px;
   }
}
/*==========================================================================
Counter
==========================================================================*/
.counter .icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter h2{
  font-size: 27px;
}

.counter .icon-wrap img {
    width: 70%;
    height: 70%;
}
/*==========================================================================
Feature
==========================================================================*/
.feature .card{
  box-shadow: var(--box-shadow);
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
  border:1px solid rgba(var(--primary-rgb),0.06);
}

.feature .card:hover{
  box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
  transform: translateY(-4px);
  border:1px solid rgba(var(--primary-rgb),0.08);
}

.feature .icon-wrap{
  background: rgba(var(--primary-rgb),0.09);
  width: 80px;
  height: 80px;
  text-align: center;
  line-height:80px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.feature .icon-wrap img{
  width: 50px;
  height: 50px;
}

.feature .card:hover .icon-wrap img{
    animation: rotateY 0.6s;
}

.feature .card h3{
    line-height: 1.39
}

@keyframes rotateY {
	100% {
		transform: rotateY(360deg);
	}
}
/*==========================================================================
Pricing
==========================================================================*/
.pricing .btn:hover {
    background: var(--primary-color);
    color: #fff;
    transition: all 400sm ease-in-out;
    border: 1px solid transparent !important;
}

.pricing .price {
    -webkit-clip-path: polygon(100% 0%, 87% 53%, 100% 100%, 0 100%, 0 50%, 0 0);
    clip-path: polygon(100% 0%, 87% 53%, 100% 100%, 0 100%, 0 50%, 0 0);
    border-radius: 0 6px 6px 0;
    margin-right: 20px;
}

.pricing .card.active .price {
    -webkit-clip-path: polygon(100% 0%, 100% 55%, 100% 100%, 0 100%, 0 50%, 0 0);
    clip-path: polygon(100% 0%, 100% 55%, 100% 100%, 0 100%, 0 50%, 0 0);
    border-radius: 0;
    margin-right: 0;
}

.pricing .card {
    position: relative;
}

.pricing .card .badge {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    top: 30px;
    right: 5px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0%;
    padding: 8px 0;
    padding-right: 18px;
    padding-left: 10px;
    -webkit-clip-path: polygon(100% 0%, 87% 53%, 100% 100%, 0 100%, 0 50%, 0 0);
    clip-path: polygon(100% 0%, 87% 53%, 100% 100%, 0 100%, 0 50%, 0 0);
    transform: rotate(90deg);
}
/*==========================================================================
Testimonial
==========================================================================*/
.testimonial .card {
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.testimonial .quote{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: -1;
  font-size: 30px;
  color: rgba(var(--primary-rgb),0.1);
}
.testimonial .quote i{
  font-size: 100px;
}

.testimonial .card .info img{
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.swiper-button-prev {
    display: inline-block;
    position: static;
    margin: 0;
}

.swiper-button-next {
    display: inline-block;
    position: static;
    margin: 0;
    margin-left: 30px;
}
.swiper-button-prev i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    background: rgba(var(--primary-rgb),0.1);
    font-size: 22px;
    color: var(--primary-color);
    border-radius: 50%;
    transition: 0.4s;
}

.swiper-button-next i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    font-size: 22px;
    background: rgba(var(--primary-rgb),0.1);;
    color: var(--primary-color);
    border-radius: 50%;
    transition: 0.4s;
}

.swiper-button-prev i:hover,
.swiper-button-next i:hover {
    background: var(--primary-color);
    color: #fff;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '';
}
.template .swiper {
    padding-bottom: 80px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px var(--swiper-pagination-bullet-horizontal-gap, 9px);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    position: relative;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    transform: translate(1px, 1px);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    height: 22px;
    width: 22px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 1;
}
/*==========================================================================
Template
==========================================================================*/
.template .card{
  border: none;
  box-shadow: var(--box-shadow);
  position: relative;
  cursor: pointer;
}

.template .card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .4s;
}

.template .card:hover::before{
  opacity: 1;
}

.template .card .see-btn{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  z-index: 1;
  transition: 0.6s;
}

.template .card:hover .see-btn{
  opacity:1;
  
}
/* ==========================================================================
  Faqs
========================================================================== */
.collapse-toggle.collapsed::after {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}

.collapse-toggle[aria-expanded=true]::after {
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}

.collapse-toggle::after {
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}
/* ==========================================================================
  Authantication
========================================================================== */
.auth-wrap .form-label{
  font-size: 14px;
  font-weight: 500;
  color: #667085;
}

.auth-wrap .form-control{
  border: 1px solid #e4e6ea;
  padding:14px 17.22px;
  min-height: 0;
  border-radius: 13px;
  font-size: 15px;
  color: inherit;
  font-weight: 500;
}

.auth-wrap .form-control::placeholder{
    font-size: .875rem;
    font-weight: 500;
    color:#999;
}

.auth-wrap .auth-btn{
    margin-top: 24px;
}

.auth-wrap .auth-btn .btn{
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 600;
}
/* ==========================================================================
  Footer
========================================================================== */
.footer{
    position: relative;
    background-color: #000;
    padding-top: 10rem;
    padding-bottom: 2.75rem;
}

.footer .shape{
    position: absolute;
    background: radial-gradient(circle at 0% -20%, rgba(255, 230, 109,0.90), rgba(87, 232, 107, 0.35), transparent, transparent, transparent);
    inset: 0;
}

.footer .round-shape{
    position: absolute;
    top:-1px;
    left: 0;
    right: 0;
}

.footer .round-shape svg{
    display: block;
    width: 100%;
    fill:var(--body-bg);
}

.footer .title{
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -.025em;
  background-image: linear-gradient(to bottom right,black 0%,#fff 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.footer .btn{
    background: rgb(255 255 255/0.1);
    padding: 16px 28px;
    color: #fff;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
}

.footer .btn:hover{
    background: #fff;
    color: #000;
    transform: translate(0,0) rotate(0) skew(0) skewY(0) scaleX(1.05) scaleY(1.05);
}

.footer .mb-28{
    margin-bottom: 7rem;
}

.footer .bottom-footer{
    border-top:1px solid rgb(255 255 255/0.15);
    border-bottom:1px solid rgb(255 255 255/0.15);
    z-index: 1;
    position: relative;
}

.footer .bottom-footer a{
    color: #fff;
}

.footer .bottom-footer a:hover{
    color: var(--primary-color);
}

@media(max-width:576px){
  .footer .title{
    font-size: 18vw;
  }
}