@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');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Whisper&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
    margin: 0;
    background-color: #ffffff;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
    height: auto;
}
a{
    text-decoration: none;
}
header{
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}
header a{
    color: #eee;
    margin-right: 40px;
}

/* Start of Hero Section */
/* carousel */
.carousel{
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .des {
    color: #3ab4f1;
    font-family:cursive;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #f1683a;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
  color: #f1683a;
  font-family:cursive;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #2d84ee;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}
/* End of Hero Section */

/* Start of core values section */
.v-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h1-values { 	  
	color:#000000;
	font-weight:700;
	margin-top:45px;	 
	margin-bottom:65px;	 
	text-align:center;
	text-transform:uppercase;
	letter-spacing:4px;
	line-height:23px;
    font-size: 24px;
}

.v-container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.v-card {
    width: 80px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

.v-card > .v-row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
}

.v-card > .v-row > .v-icon {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.v-card > .v-row > .v-description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.v-description p {
    color: #b0b0ba;
    padding-top: 5px;
}

.v-description h4 {
    text-transform: uppercase;
}

input {
    display: none;
}

input:checked + label {
    width: 600px;
}

input:checked + label .v-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.v-card[for="c1"] {
    background-image: url('/image/index/v-1.png');
}
.v-card[for="c2"] {
    background-image: url('/image/index/v-2.png');
}
.v-card[for="c3"] {
    background-image: url('/image/index/v-3.png');
}
.v-card[for="c4"] {
    background-image: url('/image/index/v-4.png');
}


@media (max-width: 766px) {
    .h1-values { 
        margin-bottom: 10px;
    }

    .v-wrapper {
      margin-top: 50px;
      justify-content: center;
      padding-left: 20px;
    }
  
    .v-container {
      height: auto;
      flex-direction: column;
      margin-bottom: 40px;
    }
  
    .v-card {
        width: calc(80% - 20px);
        margin: 10px;
    }

    .v-card[for="c1"] {
      background-image: url('/image/index/v-1-1.png');
  }
  .v-card[for="c2"] {
      background-image: url('/image/index/v-2-2.png');
  }
  .v-card[for="c3"] {
      background-image: url('/image/index/v-3-3.png');
  }
  .v-card[for="c4"] {
      background-image: url('/image/index/v-4-4.png');
  }

    .slide {
      width: 400px;
      align-items: flex-start;
    }
  
    .slide > .v-row {
      flex-direction: column;
    }
  
    .slide > .v-row > .v-icon-1,
    .v-icon-2,
    .v-icon-3 {
      width: 60px;
       }
  
    .slide {
      height: 80px;
    }
  
    .slide > .row > .v-description {
      height: 500px;
      width: 400px;
    }
  
    input:checked + label {
      height: 600px;
      width: 400px;
    }
}

/* End of core values section */


/* Start of how it works section */
.process-wrapper {
	/* margin:auto; */
	max-width: 90%;
  margin-bottom: 20px;
  margin-top: 30px;
  justify-content: center;
}

.h1-how { 	  
	color:#000000;
	font-weight:700;
	margin-top:45px;	 
	margin-bottom:65px;	 
	text-align:center;
	text-transform:uppercase;
	letter-spacing:4px;
	line-height:23px;
  font-size: 24px;
}

#progress-bar-container {

	position:relative;
	width:90%;
	margin:auto;
	height:100px;
	margin-top:120px;
}

#progress-bar-container ul {
	padding:0;
	margin:0;
	padding-top:15px;
	z-index:9999;
	position:absolute;
	width:100%;
	margin-top:-40px
}

#progress-bar-container li:before {
	content:" ";
	display:block;
	margin:auto;
	width:30px;
	height:30px;
	border-radius:50%;
	border:solid 2px #080808;
	transition:all ease 0.3s;
     
}

#progress-bar-container li.active:before, #progress-bar-container li:hover:before {
	border:solid 2px #ffffff;
       	 
	background: linear-gradient(to right, #1e87e9 0%,#0a5494 100%); 
}

#progress-bar-container li {
	list-style:none;
	float:left;
	width:20%;
	text-align:center;
	color:#041b9e;
	text-transform:uppercase;
	font-size:11px;
	cursor:pointer;
	font-weight:700;
	transition:all ease 0.2s;
	vertical-align:bottom;
	height:60px;
	position:relative;
    flex: 1;
}

#progress-bar-container li .step-inner {
	position:absolute;
	width:100%;
	bottom:0;
    font-size: 15px;
}

#progress-bar-container li.active, #progress-bar-container li:hover {
	color:#0c0c0c;
}

#progress-bar-container li:after {
	content:" ";
	display:block;
	width:6px;
	height:6px;
	background:#474040;
	margin:auto;
	border:solid 7px #fff;
	border-radius:50%;
	margin-top:40px;
	box-shadow:0 2px 13px -1px rgba(0,0,0,0.3);
	transition:all ease 0.2s;
     
}

#progress-bar-container li:hover:after {
	background:#555;
}

#progress-bar-container li.active:after {
	background:#207893;
}

#progress-bar-container #line {
	width:80%;
	margin:auto;
	background: #eee;
	height:6px;
	position:absolute;
	left:10%;
	top:57px;
	z-index:1;
	border-radius:50px;
	transition:all ease 0.9s;
}

#progress-bar-container #line-progress {
	content:" ";
	width:3%;
	height:100%;
	background: #2d84ee;	 
	background: linear-gradient(to right, #1493e1 0%,#2ea3b7 100%); 
	position:absolute;
	z-index:2;
	border-radius:50px;
	transition:all ease 0.9s;
}

#progress-content-section {
	width:90%;
	margin: auto;
	background: #2d84ee;
	border-radius: 4px;
  padding: 20px;
}

#progress-content-section .section-content {
	padding:40px 40px;
	text-align:center;
}

#progress-content-section .section-content h2 {
	font-size: 18px;
	text-transform:uppercase;
	color:#000000;
	letter-spacing:1px;
    margin-bottom: 15px;
}

#progress-content-section .section-content p {
	font-size:14px;
	line-height:1.8em;
	color:#ffffff;
}

#progress-content-section .section-content {
	display:none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode:forwards;
	transform:translateY(15px);
	opacity:0;
}

#progress-content-section .section-content.active {
	display:block;
}

@keyframes FadeInUp {
	0% {
		transform:translateY(15px);
		opacity:0;
	}
	
	100% {
		transform:translateY(0px);
		opacity:1;
	}
}

@media (max-width: 1024px) {
    #progress-bar-container li .step-inner {
        font-size: 10px;
    
    }
    #progress-bar-container li {
        font-size: 10px; /* Adjusted font size for responsiveness */
    }
}
@media (max-width: 768px) {
    #progress-bar-container li .step-inner {
        font-size: 8px;
    
    }
    #progress-bar-container li {
        font-size: 10px; /* Adjusted font size for responsiveness */
    }
}
/* End of how it works section */

/* Start of Testimonial section */

.testimonialWrapper {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.h1-testimonial { 	  
	color:#000000;
	font-weight:700;
	margin-top:25px;	 
	margin-bottom:65px;	 
	text-align:center;
	text-transform:uppercase;
	letter-spacing:4px;
	line-height:23px;
  font-size: 30px;
}

.testimonialWrapper .outer{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonialWrapper .card{
    background: #2d84ee;
    width: 500px;
    display: flex;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    border-radius: 80px 20px 20px 80px;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
    animation: animate 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
  }
  .outer:hover .card{
    animation-play-state: paused;
  }
  .testimonialWrapper .card:last-child{
    animation-delay: calc(-3s * var(--delay));
  }
  @keyframes animate {
    0%{
      opacity: 0;
      transform: translateY(100%) scale(0.5);
    }
    5%, 20%{
      opacity: 0.4;
      transform: translateY(100%) scale(0.7);
    }
    25%, 40%{
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0%) scale(1);
    }
    45%, 60%{
      opacity: 0.4;
      transform: translateY(-100%) scale(0.7);
    }
    65%, 100%{
      opacity: 0;
      transform: translateY(-100%) scale(0.5);
    }
  }
  .card .content .name {
    font-weight: 800;
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
  }

  .card .content{
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
  }
  .testimonialWrapper .card .img{
    height: 120px;
    width: 120px;
    position: absolute;
    left: -40px;
    background: #000000;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  }
  .card .img img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  .card .details{
    margin-left: 80px;
  }
  .details span{
    font-weight: 600;
    font-size: 18px;
  }
  .card a{
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 25px;
    color: #fff;
    background: linear-gradient(to bottom, #bea2e7 0%, #86b7e7 100%);
    transition: all 0.3s ease;
  }
  .card a:hover{
    transform: scale(0.94);
  }
/* End of Testimonial section */

/* Start of Pricing section */
.pricing-container {
    max-width: auto;
    width: 95%;
    margin-top: 90px;
  }

.h1-pricing { 	  
	color:#000000;
	font-weight:700;
	margin-top:25px;	 
	margin-bottom:65px;	 
	text-align:center;
	text-transform:uppercase;
	letter-spacing:4px;
	line-height:23px;
    font-size: 24px;
    /* padding-left: 140px; */
}
  
.pricing-slider-wrapper {
    position: relative;
  }
  
.pricing-slider-wrapper .pricing-slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
.pricing-slider-wrapper .pricing-slide-button:hover {
    background: #404040;
  }
  
.pricing-slider-wrapper .pricing-slide-button#prev-slide {
    left: -25px;
    display: none;
  }
  
.pricing-slider-wrapper .pricing-slide-button#next-slide {
    right: -25px;
  }
  
.pricing-slider-wrapper .pricing-image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
.pricing-slider-wrapper .pricing-image-list::-webkit-scrollbar {
    display: none;
  }
  
.pricing-slider-wrapper .pricing-image-list .pricing-image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
  }
  
.pricing-container .pricing-slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  
.pricing-slider-scrollbar .pricing-scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
  }
  
.pricing-slider-scrollbar:hover .pricing-scrollbar-track {
    height: 4px;
  }
  
.pricing-slider-scrollbar .pricing-scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
  }
  
.pricing-slider-scrollbar .pricing-scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
  }
  
.pricing-slider-scrollbar .pricing-scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
  }
  
/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
    .pricing-slider-wrapper .pricing-slide-button {
      display: none !important;
    }
  
    .pricing-slider-wrapper .pricing-image-list {
      gap: 10px;
      margin-bottom: 15px;
      scroll-snap-type: x mandatory;
    }
  
    .pricing-slider-wrapper .pricing-image-list .pricing-image-item {
      width: 280px;
      height: 380px;
    }
  
    .pricing-slider-scrollbar .pricing-scrollbar-thumb {
      width: 20%;
    }
  }
/* End of Pricing section */

/* Start of FAQ section */
.faqContainer {
    margin-top: 3rem;
    display: block;
    position: relative;
    z-index: 1;
    padding-right: 0.25rem;
    color: #ffffff;
    border-top: 1px solid #dee2e6;
    margin-bottom: 10rem;
    margin-left: 10px;
    margin-right: 10px;
    
}
.faqContainer {
  background-color: #2d84ee;
}

.faqCard {
    position: relative; 
    top: 0; 
    right: 0; 
    display: flex;
    justify-content: center;

}

.faqText  {
  margin: 10px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
}

.faqCard {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  color: #000;
}

.h1-faq { 	  
	color:#0d0c0c;
	font-weight:700;
	margin-top:45px;	 
	margin-bottom:10px;	 
	text-align:center;
	text-transform:uppercase;
	letter-spacing:4px;
	line-height:23px;
    font-size: 24px;
    /* padding-left: 140px; */
}

.collapse {
    display: none;
    transition: all 0.3s ease;
  }
  
  .collapse.show {
    display: block;
  }
  
  #accordion a {
    display: block;
    border: 1px solid #000000; 
    border-radius: 0.25rem;
    margin-bottom: 1rem; 
    width: auto;
  }

  #accordion .collapse {
    border: 1px solid #000000; 
    border-top: 0; 
    border-radius: 0 0 0.25rem 0.25rem; 
    padding: 1rem; 
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  #accordion .card-body {
    padding: 0; 
  
  }

  #accordion a:hover {
    background-color: #0e43c6;
  }
  
  #accordion a i {
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }
  
  @media (max-width: 1024px) and (max-width: 768px) {
    #accordion a,
    #accordion .collapse { 
        margin: 40px;
    }
    #accordion a .position-absolute {
      right: 20px;
    }
  
    #accordion a h2 {
      margin-right: 40px;
    }
  }
/* End of FAQ section */
