* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.price-card{
    background-color:#172B36;
    height:55vh;
    border-radius:35px;
    max-height: 560px;
}
.dot-line{
    height: 80vh;
    max-height: 520px;
}

.line{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.triangle::after{
    content: '';
    position: absolute;
    bottom: -10px; /* Adjust the value to control the shadow's offset */
    left: 0;
    width: 100%;
    height: 10px; /* Adjust the value to control the shadow's size */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}
.team-card{
    width: 190px;
    height: 260px;
    border-radius: 20px;
}
.team-card img{
    width: 190px;
    height: 260px;
    border-radius: 16px;
    top: -16px;
    right: 16px;
}
.team-sub{
    width: 190px;
}
.pd-wx{
    padding-right:8vw;
    padding-left:8vw;
}

@media screen and (max-width: 600px) {
    .pd-wx{
        padding-right:4vw;
        padding-left:4vw;
    }
}
@media screen and (min-width: 2000px) {
    .pd-wx{
        padding-right:200px;
        padding-left:200px;
    }
}
html{
    scroll-behavior: smooth;
}

[data-scroll]{
    transition:all 1s
}
[data-scroll="in"]{
    opacity: 1;
    transform: translateY(0);
}
[data-scroll="out"]{
    opacity: 0;
    transform: translateY(50px);
}

.section{
    max-width:1600px;
    width:100%;
}
/* .h-screen{
    max-height: 1000px;
} */
/* .section{
    scroll-snap-align:start;
}
body{
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    display: flex;
    flex-direction: column;
} */
body{
    overflow-x: hidden;
}
.slide-right{
    filter: blur(5px);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
}
.slide-right-show{
    opacity: 1;
    filter:blur(0);
    transform: translateX(0);
}

@media(prefers-reduced-motion) {
    .slide-right{
        transition: none;
    }
}


.fade-in-element {
    opacity: 0;
    animation: fade-in 1s ease-in-out;
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


::-webkit-scrollbar {
    width: 10px; /* width of the scrollbar */
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #c9c9c9; /* color of the thumb */
    border-radius: 5px; /* round the thumb */

}
.dialog-size{
    min-width:600px;
    width:50vw;
}


@media screen and (max-width:630px) {
    .dialog-size{
        min-width:auto;
        width:95vw;
    }
}
/* Keyframes for the animation */
@keyframes moveDownZoomOut {
    0% {
        transform: translateY(100px) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Apply animation to the element */
.zoomout {
    animation: moveDownZoomOut 0.3s forwards;
}
.navbar{
    z-index: 100000000;
}
.h-screen{
    max-height: 1000px;
}
.tri-1{
    height:80vh;
    width:auto;
    max-height: 800px;
}
.tri-2{
    height:20vh;
    width:auto;
    max-height: 200px;
    left:35vw;
}
.tri-3{
    height:40vh;
    max-height: 400px;
    width:auto;
    left:20vw;
}
@media screen and (max-width:520px) {
}

.circlespinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 20px;
    margin-left: 5px;
    height: 20px;
    color: white;
    stroke: #fff;
  }
    .path {
      stroke: hsl(210, 70, 75);
      stroke-linecap: round;
      animation: dash 1.5s ease-in-out infinite;
  }

  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes dash {
    0% {
      stroke-dasharray: 1, 150;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -35;
    }
    100% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -124;
    }
  }

  .cooldown {
    color: red;
}




/* .navbar-links {
    position: absolute;
    display: none;
    animation: moveUp2 0.3s ease-in-out;
    flex-direction: column;
    justify-content: start;
    text-align: center;
    align-items: center;
    top: 0px;
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    text-align: start;
    border-radius: 0px;
    height: 60vh;
    left: 0px;
    right: 0px;
    margin:0px!important;
    background-color: #264BC9;
} */

@keyframes moveDown {
    0% {
        top: -100%;
    }
    100% {
        top: 0%;
    }
}


.show-links {
    display: flex!important;
    animation: moveDown 0.6s ease-in-out;
    top:0;
}


@keyframes moveUp {
    0% {
        top: 0%;
    }
    100% {
        top: -100%;
    }
}

.hide-links {
    animation: moveUp 0.6s ease-in-out;
    top: -100%;
}