/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 152;
  --first-color: #4070F4;
  --first-color-alt: hsl(224deg 89% 60% / 77%);
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten:hsl(224deg 90% 69%);
  --second-color-lighten:rgb(231, 231, 231);
  --title-color: hsl(var(--hue), 4%, 15%);
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --body-color: hsl(var(--hue), 0%, 100%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;


  
}

:root[dark] {
  background-color: var(--body-color);
 
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html{
  scroll-behavior: smooth;
}

body,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body{
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s; /*For animation dark mode*/
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

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

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme{
  --first-color-dark: hsl(201deg 93% 18% / 65%);
  --title-color: #fff;
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(202deg 90% 10%);
  --container-color: hsl(201deg 88% 10%);
  --second-color-lighten:hsl(201deg 95% 15%);
}

/*========== Button Dark/Light ==========*/
.change-theme{
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

.dark-theme .steps__bg,
.dark-theme .questions{
  background-color: var(--first-color-dark);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe{
  /* background-color: var(--container-color); */
  background-color: var(--second-color-lighten);
}

.dark-theme .scroll-header{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, .3);
  box-shadow: 0 1px 4px #315cc7;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center{
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

.section__title-center{
  text-align: center;
}

.container{
  max-width: 1199px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/

.home__title-color{
  color: var(--first-color);
}

.header{
  width: 100%;
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .4s; /*For animation dark mode*/
  padding: 0 20px;
}

/*=============== NAV ===============*/
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle,
.nav__close{
  color: var(--title-color);
}

.nav__logo{
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
  /* display: inline-flex; */
  align-items: center;
  column-gap: 0.5rem;
  transition: .3s;
  font-size: 22px;
}

.nav__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover{
  color: var(--first-color);
}

.nav__toggle{
  display: inline-flex;
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .nav__menu{
    position: fixed;
    background-color: var(--container-color);
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: .3s;
    z-index: var(--z-fixed);
  }
}

.nav__close{
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}

.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link{
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

/* Show menu */
.show-menu{
  right: 0;
}

/* Change background header */
.scroll-header{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 15%, .1);
  box-shadow: 0 1px 4px #315cc7;
}

/* Active link */
.active-link{
  position: relative;
  color: var(--first-color);
}

.active-link::after{
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--first-color);
}

/*=============== HOME ===============*/



.home__img img {
  width: 100%;
  border-radius: 0px 200px 200px 0;
}

.home__img span {
  background: var(--body-color);
  height: 70%;
  display: inline-block;
  position: absolute;
  width: 100px;
  top: 15%;
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  left: -2px;
}



.home{
  padding: 3.5rem 0 2rem;
}

.home__container{
  position: relative;
  row-gap: 2rem;
}

.home__img{
  width: 200px;
  justify-self: center;
}

.home__title{
  font-size: 40px;
  line-height: 140%;
  margin-bottom: var(--mb-1);
}

.home__description{
  margin-bottom: var(--mb-2-5);
}

.home__social{
  position: absolute;
  top: 120px;
  right: 0;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow{
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after{
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--first-color);
  right: -45%;
  top: 50%;
}

.home__social-links{
  display: inline-flex;
  flex-direction: column;
  row-gap: .25rem;
}

.home__social-link{
  font-size: 1rem;
  color: var(--first-color);
  transition: .3s;
}

.home__social-link:hover{
  transform: translateX(.25rem);
}

/*=============== BUTTONS ===============*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF !important;
  padding: 0.2rem 1rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
}

.button:hover{
  background-color: var(--first-color-alt);
  box-shadow: 0px 10px 15px -8px var(--first-color-alt);
  transform: translate(0px, -5px);
}

.button__icon{
  transition: .3s;
}

.button:hover .button__icon{
  transform: translateX(.25rem);
}

.button--flex{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.button--link{
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon{
  transform: translateX(.25rem);
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 2rem;
}

.about__img{
  width: 280px;
  justify-self: center;
}
.about__container img {
  width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 30px 100px 100px 30px;
  box-shadow: 0px 0px 50px -30px var(--first-color);
}


.about__title{
  margin-bottom: var(--mb-1);
}

.about__description{
  margin-bottom: var(--mb-2);
}

.about__details{
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.about__details-description{
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
}

.about__details-icon{
  font-size: 1rem;
  color: var(--first-color);
  margin-top: .15rem;
}

/*=============== STEPS ===============*/
.steps__bg{
  background-color: var(--first-color-lighten);
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
}

.steps__container{
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title{
  color: #FFF;
}

.steps__card{
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number{
  background-color: var(--first-color-alt);
  color: #FFF;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: .3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__card-title{
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.steps__card-description{
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number{
  transform: translateY(-.25rem);
}

/*=============== PRODUCTS ===============*/
.product__description{
  text-align: center;
}

.product__container{
  padding: 3rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.product__card{
  display: grid;
  position: relative;
}

.product__img{
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: .3s;
}

.product__title,
.product__price{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title{
  margin-bottom: .25rem;
}

.product__button{
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #FFF;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 1.15rem;
}

.product__button:hover{
  background-color: var(--first-color-alt);
}

.product__circle{
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.product__card:hover .product__img{
  transform: translateY(-.5rem);
}

/*=============== QUESTIONS ===============*/
.questions{
  background-color: var(--first-color-lighten);
}

.questions__container{
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.questions__group{
  display: grid;
  row-gap: 1.5rem;
}

.questions__item{
  background-color: var(--container-color);
  border-radius: .25rem;
}

.questions__item-title{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  margin: 0;
}

.questions__icon{
  font-size: 1.25rem;
  color: var(--title-color);
}

.questions__description{
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.questions__header{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.questions__content{
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content{
  transition: .3s;
}

.questions__item:hover{
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}

/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content{
  background-color: var(--first-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon{
  color: #FFF;
}

.accordion-open .questions__icon{
  transform: rotate(45deg);
}

/*=============== CONTACT ===============*/
.contact__container{
  row-gap: 3.5rem;
}

.contact__data{
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle{
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-0-5);
}

.contact__description{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon{
  font-size: 1.25rem;
}

.contact__inputs{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content{
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;

  color: var(--text-color);

  
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label{
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area{
  height: 7rem;
}

.contact__area textarea{
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus + .contact__label{
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus) + .contact__label{
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== FOOTER ===============*/
.footer__container{
  row-gap: 3rem;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: .3s;
}

.footer__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover{
  color: var(--first-color);
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer__subscribe{
  background-color: var(--second-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input{
  width: 70%;
  padding: 0 .5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button{
  padding: 1rem;
}

.footer__data{
  display: grid;
  row-gap: .75rem;
}

.footer__information{
  font-size: var(--small-font-size);
}

.footer__social{
  display: inline-flex;
  column-gap: .75rem;
}

.footer__social-link{
  font-size: 1rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__cards{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}
.footer__card{
  width: 35px;
}

.footer__copy{
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  background-color: var(--first-color);
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: 10px 15px;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon{
  font-size: 1rem;
  color: #FFF;
}

.scrollup:hover{
  background-color: var(--first-color-alt);
  opacity: 1;
}

.product__card_text {
  padding: 20px 0;
}
.product__card_text h2 {
  margin-bottom: 10px;
}
.product__card_main {
  padding: 20px 20px 0;
}
.product__card_img {
  height: 420px;
  width: 100%;
}
.product__card_img img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  background: hsl(201deg 56% 51% / 35%);
  border-radius: 15px;
}
.title-color {
  color: var(--title-color);
}
.footer__container .footer__content:first-child {
  align-items: center;
  display: flex;
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb{
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

/* -----------------My Style:start------------- */

.contact-label{
  margin-bottom: 50px;
}

.contact-label p{
  max-width: 500px;
}

a:hover{
  text-decoration: none !important;
}

.ri-skpe-line{
  font-size: 28px;
}

.personal-detail p{
  color: #fff !important;
}

.personal-detail ul li{
  color: #fff !important;
  font-weight: 100 !important;
  margin-bottom: 10px;
} 

.personal-detail ul li span{
  font-weight: 600;
  margin-right: 15px;
}

.personal-detail ul li a{
  color: #fff;
  font-weight: 100;
  margin-right: 15px;
}

.dj-img img{
  height: 500px;
  /* object-fit: cover; */
}

.main-label{
  margin-bottom: 90px;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.ex-edu-section{
  padding-top: 10rem;
  /* margin-top: 80px; */
}

.ex-edu-section h5{
  color: #FFF;
}

.about .timeline {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
  box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
}

.about .timeline .item {
  position: relative;
  padding: 0;
  border-radius: 5px;
}

.about .timeline .item .content {
  padding: 0px 0px 50px 50px;
  border-left: 1px solid #4070f4;
}

.about .timeline .item::after {
  position: absolute;
  content: "";
  left: -6px;
  top: 6px;
  width: 13px;
  height: 13px;
  background-color: #4070f4;
  border-radius: 50%;
}

.about .timeline .item .content h6 {
  text-transform: capitalize;
  font-weight: 500;
}

.about .timeline .item .content h6{
  text-transform: capitalize;
  font-weight: 500;
  color: #343a40!important;
}

.text-muted {
  color: #6c757d!important;
}

.about .timeline .item .content p{
  color: #343a40!important;
}

.services .item {
  padding: 50px 30px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 5px;
  background-color: #f8f9fa;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  min-height: 252px;
}

.services .item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  background-color: #ffffff;
  -webkit-box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
  box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
}

.testimonials .item {
  max-width: 750px;
}

.testimonials .item .image {
  position: relative;
  z-index: 1;
}

.testimonials .item .image img {
  width: 80px;
  height: 80px;
  max-width: 100px;
  border-radius: 50%;
  z-index: 1;
}

.testimonials .item .image:after {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  width: 90px;
  height: 90px;
  border: 2px solid #4070f4;
  z-index: -1;
  border-radius: 50%;
  background-color: #ffffff;
}

.testimonials .item .content {
  padding: 30px;
  padding-left: 70px;
  margin-left: -40px;
  z-index: -1;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.testimonials .item .content .icon {
  font-size: 30px;
  color: #4070f4;
}

.testimonials .item .content .author {
  position: relative;
  padding-left: 10px;
}

.testimonials .item .content .author:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 2px;
  width: 3px;
  height: 20px;
  background-color: #4070f4;
}

.testimonials .item .content .author .dot {
  margin: 2px 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #929292;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.testimonials .owl-dots {
  text-align: center;
}

.testimonials .owl-dots  button{
  outline: none !important;
}

.testimonials .owl-dot.active span {
  background-color: #4070f4;
}

.testimonials .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #eee;
  margin: 0 6px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testimonials .owl-stage-outer {
  padding-bottom: 30px;
}

.tab-inner-section ul{
  justify-content: center;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgb(24 94 224 / 15%), 0 6px 12px 0 rgb(24 94 224 / 15%);
  padding: 0.75rem;
  border-radius: 99px;
  width: 62%;
  margin: 0 auto;
}

.tab-inner-section ul li .nav-link.active{
  transition:all 0.4s ease-out;
  background-color: #9fb7f7;
  color: #000;
  border-radius: 50px;
}

.tab-inner-section ul li{
  transition:all 0.4s ease-out;
}

/* .tab-inner-section ul li:first-child .nav-link.active{
  transform: translateX(0);
}
.tab-inner-section ul li:nth-child(2) .nav-link.active{
  transform: translateX(10%);
}
.tab-inner-section ul li:nth-child(3) .nav-link.active{
  transform: translateX(20%);
}
.tab-inner-section ul li:last-child .nav-link.active{
  transform: translateX(30%);
} */

.tab-inner-section ul li a{
  color: #000;
  font-size: 20px;
  transition:all 0.4s ease-out;
  text-align: center;
  width: 130px;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in; 
}
.product__card_text h5{
  color: #fff;
}
.product__card_text p{
  font-size: 14px;
}

.content1 {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content1 .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 83%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  border-radius: 14px;
}

.content1:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content-details img{
  width: 50px;
}

.content1:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.fadeIn-top{
  top: 20%;
}

.tab-content{
      margin-top: 70px;
}

.disclaimer{
  display: none !important;
}

.index-ellipse-carousel-right-side img {
    position: absolute;
    top: -130px;
    right: 10%;
    animation-name: bounce-1;
    animation-timing-function: ease;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    transform-origin: right;
}

@keyframes bounce-1 {
	0% {
		transform: translateY(0);
		transform: rotate(0deg)
	}

	50% {
		transform: translateY(50px);
		transform: rotate(360deg)
	}

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

.index-ellipse-carousel-right-side img:last-child{
    position: absolute;
    top: -250px;
    left: 10%;
	animation-delay: 1.5s;
    animation-name: bounce-1;
    animation-timing-function: ease;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    transform-origin: right;
}



.loader::before {
	content: "";
	position: absolute;
	left:60px;
	width:50px;
	height:50px;
	border-radius: 50%;
	background: transparent;
	box-shadow: 0 0 0 3px #2574A9, 0 0 0 17px #3498DB,-3px -3px 0 #2574A9 inset;
	z-index:2;
}

.loader:after {
	content: "";
	position: absolute;
	left:80px;
	top:10px;
	width:30px;
	height:30px;
	border-radius: 50%;
	background-color: #913D88;
	box-shadow:-7px -7px 0 #674172 inset;
	-webkit-animation: ballMove 3s linear infinite;
	animation: ballMove 3s linear infinite;
	z-index: -10;
}

@keyframes pulse-ring {
    0% {
      transform: scale(0.33);
    }
    80%, 100% {
      opacity: 0;
    }
}
@keyframes pulse-dot {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.8);
	}
}

.dot-animation{
    position: absolute;
    top: 20px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: transparent linear-gradient(180deg, #25A8E0 0%, #5061AC 100%);
}

.dot-animation:before {
    content: "";
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #4285F4;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  .dot-animation:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #25A8E0 0%, #5061AC 100%);
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  }

@keyframes rotation {
    from {
            -webkit-transform: rotate(0deg);
    }
    to {
            -webkit-transform: rotate(359deg);
    }
}

.animation-tech-img {
    position: absolute;
    top: 0;
    right: 0;
    animation: rotation 2s infinite linear;
	width: 70px;
}

.hexa-ani {
    position: absolute;
    bottom: 0;
    left: 0;
}

.hexa-ani img{
	width: 100px;
}
  


/* -----------------My Style:end------------- */


















/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img{
    width: 180px;
  }
  .home__title{
    font-size: var(--h1-font-size);
  }

  .steps__bg{
    padding: 2rem 1rem;
  }
  .steps__card{
    padding: 1.5rem;
  }

  .product__container{
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .home__img span {
    width: 35px;
    border-radius: 0 20px 20px 0;
  }
  .home__img {
    width: 240px;
    justify-self: center;
  }
  .header {
    padding: 0;
}
}
@media screen and (min-width: 321px){

  .home__img span {
    width: 35px;
    border-radius: 0 20px 20px 0;
  }
  .home__img {
    width: 240px;
    justify-self: center;
  }
  .header {
    padding: 0;
}
.product__container {
  padding: 3rem 0;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem 3rem;
}
.product__card_img {
  height: 220px;
  width: 100%;
}
.product__card_main {
  padding: 0;
}
}


/* For medium devices */
@media screen and (min-width: 576px){
  .steps__container{
    grid-template-columns: repeat(2, 1fr);
  }

  .product__description{
    padding: 0 4rem;
  }
  .product__container{
    /* grid-template-columns: repeat(1, 400px); */
    grid-template-columns: repeat(1, 100%);
    justify-content: center;
    column-gap: 1rem;
  }
  .product__card_img {
    height: 320px;
    width: 100%;
}
  .footer__subscribe{
    width: 400px;
  }
  .home__img span {
    width: 35px;
    border-radius: 0 20px 20px 0;
}
.home__img {
  width: 320px;
  justify-self: center;
}
.product__card_main {
  padding: 20px 20px 0;
}
}

@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
  }
  .nav__menu{
    margin-left: auto;
  }
  
  .product__container{
    grid-template-columns: repeat(2, 354px);
    justify-content: center;
    column-gap: 1rem;
  }

  .home__container,
  .about__container,
  .questions__container,
  .contact__container,
  .footer__container{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home{
    padding: 10rem 0 5rem;
  }
  .home__container{
    align-items: center;
  }
  .home__img{
    width: 280px;
    order: 1;
  }
  .home__social{
    top: 30%;
  }

  .questions__container{
    align-items: flex-start;
  }

  .footer__container{
    column-gap: 3rem;
  }
  .footer__subscribe{
    width: initial;
  }
  .home__img span {
    width: 45px;
    border-radius: 0 20px 20px 0;
}
.nav__link {
  font-size: 10px;
}
.product__card_img {
  height: 200px;
  width: 100%;
}
}

/* For large devices */
@media screen and (min-width: 992px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }

  .section{
    padding: 5rem 0 1rem;
  }
  .section__title,
  .section__title-center{
    font-size: var(--h1-font-size);
  }

  .home{
    padding: 10rem 0 5rem;
  }
  .home__img{
    width: 590px;
  }
  .home__description{
    padding-right: 7rem;
  }

  .about__img{
    width: 380px;
  }

  .steps__container{
    grid-template-columns: repeat(3, 1fr);
  }
  .steps__bg{
    padding: 3.5rem 2.5rem;
  }
  .steps__card-title{
    font-size: var(--normal-font-size);
  }

  .product__description{
    padding: 0 16rem;
  }
  .product__container{
    padding: 4rem 0;
    grid-template-columns: repeat(2, 500px);
    gap: 4rem 0rem;
  }
  .product__img{
    width: 160px;
  }
  .product__circle{
    width: 110px;
    height: 110px;
  }
  .product__title,
  .product__price{
    font-size: var(--normal-font-size);
  }

  .questions__container{
    padding: 1rem 0 4rem;
  }
  .questions__title{
    text-align: initial;
  }
  .questions__group{
    row-gap: 2rem;
  }
  .questions__header{
    padding: 1rem;
  }
  .questions__description{
    padding: 0 3.5rem 2.25rem 2.75rem;
  }

  .footer__logo{
    font-size: var(--h3-font-size);
  }
  .footer__container{
    grid-template-columns: 0.5fr .5fr .5fr .5fr;
  }
  .footer__copy{
    margin: 7rem 0 2rem;
  }
  .home__img span {
    width: 100px;
    border-radius: 0 30px 30px 0;
}
.nav__link {
  font-size: 16px;
}
.product__card_img {
  height: 300px;
  width: 100%;
}
}

@media screen and (min-width: 1200px){
  .home__social{
    right: 10px;
    row-gap: 4.5rem;
  }
  .home__social-follow{
    font-size: var(--small-font-size);
  }
  .home__social-follow::after{
    width: 1.5rem;
    right: -60%;
  }
  .home__social-link{
    font-size: 1.15rem;
  }

  .about__container{
    column-gap: 7rem;
  }

  .scrollup{
    right: 3rem;
  }
}

/* --------My Media-------------------- */

@media(max-width:1199px){
  .home__container .home__img{
    width: 85%;
  }
  .home__containe .home__data{
      width: 50%;
  }
  .home__title {
    font-size: 30px;
  }
  .header {
    padding: 0 20px;
  }
  .section {
    padding: 50px 0 1rem;
  }
  .tab-inner-section ul {
    width: 75%;
  }
  .testimonials .item {
    margin: 0 auto;
  }
  .questions__container {
    padding: 1rem 15px 4rem;
  }
  .contact{
    padding: 50px 15px 1rem;
  }
  .footer__copy {
    margin: 30px 0;
  }

}
@media(max-width:992px){
  .container {
    margin-left: auto;
  }
  p{
    font-size: 14px !important;
  }
  .tab-inner-section ul {
    width: 100%;
  }
  .tab-inner-section ul li a {
    color: #000;
    font-size: 16px;
  }
  .dj-img{
    margin-bottom: 25px;
  }
  .main-label {
    margin-bottom: 55px;
  }
}

@media(max-width:767px){
  .about .timeline .item .content {
    padding: 0px 0px 50px 25px;
  }
  .testimonials .item .image {
    top: 15px;
    left: 15px;
  }
  .product__card_img {
    height: auto;
  }
  .content1 {
    width: 100%;
  }
  .content1 > img{
    min-height: 200px;
    object-fit: cover;
  }
  .tab-content {
    margin-top: 40px;
  }
  .tab-inner-section ul{
      height: auto;
      border-radius: 10px;
  }
  .tab-inner-section ul li {

  }
  .testimonials .item .content {
      margin-left: 0px;
      padding-left: 25px;
      min-height: 315px;
  }
  .product__card{
    margin-bottom: 25px;
  }
  .product__card_main {
    padding: 0px 20px 0;
  }
  .home__data{
    text-align: center;
  }
  .loader{
	  display: none;
  }
}