/********** Template CSS **********/
:root {
  --primary: #ffc107;
  --light: #F1F8FF;
  --dark: #0F172B;
  --red: #ff3838;
}

.ff-secondary {
  font-family: 'Pacifico', cursive;
}
::selection{
  color: #df1919;
  background-color: #df1919;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #0F172B;
  z-index: 10000;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.steps{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
  float: left;
}
.steps .box{
  flex: 1 1 25rem;
  padding: 1rem;
  text-align: center;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}



/* Add this CSS code to style the menu bar and the lines */




/*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 600px;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}

.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgb(107, 28, 235);
  border-radius: 50%;
  font-size: 20px;
  color: rgb(107, 28, 235);
  text-decoration: none;
  margin: 30px 15px 30px 0;
  transition: .5s ease;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: calc(.1s * var(--i));
}

.home-sci a:hover {
  background: rgb(107, 28, 235);
  color: #ffffff;
  box-shadow: 0 0 35px rgb(107, 28, 235);
}

.btn-box {
  display: inline-block;
  padding: 12px 28px;
  background: rgb(107, 28, 235);
  border-radius: 40px;
  font-size: 16px;
  color: #000000;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
  transition: .5s;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  animation-delay: 1s;
  box-shadow: 0 0 5px rgb(107, 28, 235);
  ;

}

.btn-box:hover {
  background: rgb(107, 28, 235);
  color: rgb(255, 255, 255);
  box-shadow: 0 0 35px rgb(107, 28, 235);

}

@keyframes slideTop {
  0% {
      transform: translateY(100px);
      opacity: 0;
  }

  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
      transform: translateY(100px);
      opacity: 0;
  }

  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}


@keyframes slideRight {
  0% {
      transform: translateX(-100px);
      opacity: 0;
  }

  100% {
      transform: translateX(0px);
      opacity: 1;
  }
}

@keyframes slideBottm {
  0% {
      transform: translateY(-100px);
      opacity: 0;
  }

  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}



.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -410px;
  left: 600px;
  width: 500px;
  height: 500px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}
.btn{
  display: inline-block;
  padding: .03rem;
  border: .1rem solid var(--light);
  color: var(--light);
  padding-left: 20px;
  padding-right: 20px;
  
 
  cursor: pointer;
  font-size: 2.2rem;
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 490px;
  margin-left: 90px;

}
.btn::before{
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: .3s linear;
  z-index: -1;

}
.btn:hover::before{
  width: 100%;
  left: 0;
}
.btn:hover{
  color: #fff;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  font-size: 15px;
  color: var(--light) !important;
  text-transform: uppercase;
  font-weight: 500;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
  max-height: 60px;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
  max-height: 45px;
}

@media (min-width: 991.98px) {
  .sticky-top.navbar-dark {
      position: relative;
  }

  .navbar-dark .navbar-collapse {
      margin-top: 15px;
      border-top: none;
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
      padding: 10px 0;
      margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
      max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-dark {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 999;
      background: transparent !important;
  }
  
  .sticky-top.navbar-dark {
      position: fixed;
      background: var(--dark) !important;
  }

  /* Add these styles or adjust them as you like */
  .navbar-dark .navbar-nav .nav-link {
    font-size: 15px; /* increase the font size */
    letter-spacing: 1.4px; /* increase the letter spacing */
    margin-left: 30px; /* increase the margin between links */
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
  }

  /* Add these styles to make them consistent with navbar-dark */
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    font-size: 15px; /* same as navbar-dark */
    letter-spacing: 2px; /* same as navbar-dark */
    margin-left: 30px; /* same as navbar-dark */
  }
}






/*** Hero Header ***/
/* Use only one class name for your background */




.hero-header img {
  animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}


/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: .5s;
}

.service-item:hover * {
  color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}




/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  height: calc(100% - 38px);
  transition: .5s;
}

.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item:hover {
  height: 100%;
}

.team-item .btn {
  border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 15px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}


.footer .social-icon {
  margin-right: 5px;
  /* Use relative units instead of pixels */
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  transition: .3s;
}

.footer .social-icon:hover {
  color: var(--primary);
  background-color: var(--dark);
}

/* Use a different class name for footer links */
.footer .footer-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .footer-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .footer-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.scroll-up {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #df1919;
  color: white;
  font-size: 20px;
  /* Add an animation to the button */
  animation: bounce 1s infinite alternate;
  /* Add a transition to the button */
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 10000;
 
}

/* Define the bounce animation */
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* Add a hover effect to the button */
.scroll-up:hover {
  transform: scale(1.2);
}

.scroll-down {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #df1919;
  color: white;
  font-size: 20px;
   /* Add an animation to the button */
   animation: bounce 1s infinite alternate-reverse;
   /* Add a transition to the button */
   transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
   z-index: 10000;
 }
 
 /* Define the bounce animation */
 @keyframes bounce {
   from {
     transform: translateY(0);
   }
   to {
     transform: translateY(-10px);
   }
 }

 /* Add a hover effect to the button */
 .scroll-down:hover {
   transform: scale(1.2);
 }
 
html {
scroll-behavior: smooth;
}     
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #FFFFFF;
  border-radius: 35px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

@media only screen and (min-width:50px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 200px;
}

.home-content h3 {
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -200px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 26px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 13px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: 80px;
  left: 6.9px;
  width: 190px;
  height: 190px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}

@media only screen and (min-width:100px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 250px;
}

.home-content h3 {
  font-size: 27px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -190px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 15px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: 60px;
  left: 6.9px;
  width: 190px;
  height: 190px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}
@media only screen and (min-width:150px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 300px;
}

.home-content h3 {
  font-size: 30px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -180px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 35px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 17px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: 55px;
  left: 6.9px;
  width: 180px;
  height: 180px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}

@media only screen and (min-width:240px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 300px;
}

.home-content h3 {
  font-size: 31px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 31px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 12.6px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: 60px;
  left: 6.9px;
  width: 150px;
  height: 150px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}

@media only screen and (min-width:400px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 250px;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 33px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 19px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -10px;
  left: 150px;
  width: 210px;
  height: 210px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 


}
}
@media only screen and (min-width:400px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 250px;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 33px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 19px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -10px;
  left: 150px;
  width: 210px;
  height: 210px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 


}
}
@media only screen and (min-width:500px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 165%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 450px;
}

.home-content h3 {
  font-size: 33px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -20px;
  left: 150px;
  width: 260px;
  height: 260px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 


}
}
@media only screen and (min-width:580px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 450px;
}

.home-content h3 {
  font-size: 33px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -50px;
  left: 170px;
  width: 290px;
  height: 290px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 


}
}
@media only screen and (min-width:640px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 450px;
}

.home-content h3 {
  font-size: 33px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -110px;
  left: 190px;
  width: 330px;
  height: 330px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 


}
}
@media only screen and (min-width:740px) {
  /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 450px;
}

.home-content h3 {
  font-size: 33px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
  margin-top: -130px;
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}
.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -110px;
  left: 190px;
  width: 330px;
  height: 330px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 


}
}

  @media only screen and (min-width:1000px) {
      /*** home ***/
  .home {
      position: relative;
      width: 100%;
      justify-content: space-between;
      height: 100vh;
      background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
      background-size: cover;
      background-position: center;
      width: 145%;
     
      display: flex;
      align-items: center;
      padding: 70px 10% 0%;
  }
  .home-content {
      max-width: 550px;
  }
  
  .home-content h3 {
      font-size: 35px;
      font-weight: 700;
      opacity: 0;
      animation: slideRight 1s ease forwards;
      font-family: 'Jost', sans-serif;
      color: var(--primary);
      margin-top: -150px;
  }
  
  .home-content h1 span {
      color: rgb(107, 28, 235);
  }
  
  .home-content h3:nth-of-type(2) {
      margin: 10px;
      opacity: 0;
      animation: slideRight 1s ease forwards;
      animation-delay: .5s;
      color: var(--primary);
  
  }
  
  .home-content h1 {
      font-size: 37px;
      font-weight: 700;
      margin: -3px 0;
      opacity: 0;
      animation: slideRight .5s ease forwards;
      font-family: 'Jost', sans-serif;
      color: var(--primary);
  
  }
  
  .home-content p {
      font-size: 22px;
      opacity: 0;
      animation: slideLeft 1s ease forwards;
      font-family: 'Ysabeau SC', sans-serif;
      color: var(--primary);
  }
  .home .image{
      flex: 1 1 30rem;
      position: relative; /* add this to position the image relative to this element */
  }
      
  .home .image img{
      position: absolute;
      top: -210px;
      left: 400px;
      width: 400px;
      height: 400px;
      
      animation: imgRotate 50s linear infinite; /* change this to the angle you want */
  }
  @keyframes imgRotate { 
      100% { 
          transform: rotate(360deg); 
      } 
  
  
  }
  }

  @media only screen and (min-width:900px) {
      /*** home ***/
  .home {
      position: relative;
      width: 100%;
      justify-content: space-between;
      height: 100vh;
      background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
      background-size: cover;
      background-position: center;
      width: 145%;
     
      display: flex;
      align-items: center;
      padding: 70px 10% 0%;
  }
  .home-content {
      max-width: 450px;
  }
  
  .home-content h3 {
      font-size: 33px;
      font-weight: 700;
      opacity: 0;
      animation: slideRight 1s ease forwards;
      font-family: 'Jost', sans-serif;
      color: var(--primary);
      margin-top: -130px;
  }
  
  .home-content h1 span {
      color: rgb(107, 28, 235);
  }
  
  .home-content h3:nth-of-type(2) {
      margin: 10px;
      opacity: 0;
      animation: slideRight 1s ease forwards;
      animation-delay: .5s;
      color: var(--primary);
  
  }
  
  .home-content h1 {
      font-size: 34px;
      font-weight: 700;
      margin: -3px 0;
      opacity: 0;
      animation: slideRight .5s ease forwards;
      font-family: 'Jost', sans-serif;
      color: var(--primary);
  
  }
  
  .home-content p {
      font-size: 20px;
      opacity: 0;
      animation: slideLeft 1s ease forwards;
      font-family: 'Ysabeau SC', sans-serif;
      color: var(--primary);
  }
  .home .image{
      flex: 1 1 30rem;
      position: relative; /* add this to position the image relative to this element */
  }
      
  .home .image img{
      position: absolute;
      top: -210px;
      left: 410px;
      width: 400px;
      height: 400px;
      
      animation: imgRotate 50s linear infinite; /* change this to the angle you want */
  }
  @keyframes imgRotate { 
      100% { 
          transform: rotate(360deg); 
      } 
  
  
  }
  }
@media only screen and (min-width:1024px) {
 /*** home ***/
.home {
  position: relative;
  width: 100%;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  width: 145%;
 
  display: flex;
  align-items: center;
  padding: 70px 10% 0%;
}
.home-content {
  max-width: 600px;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);
}

.home-content h1 span {
  color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
  margin: 10px;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: .5s;
  color: var(--primary);

}

.home-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight .5s ease forwards;
  font-family: 'Jost', sans-serif;
  color: var(--primary);

}

.home-content p {
  font-size: 20px;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  font-family: 'Ysabeau SC', sans-serif;
  color: var(--primary);
}

.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgb(107, 28, 235);
  border-radius: 50%;
  font-size: 20px;
  color: rgb(107, 28, 235);
  text-decoration: none;
  margin: 30px 15px 30px 0;
  transition: .5s ease;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: calc(.1s * var(--i));
}

.home-sci a:hover {
  background: rgb(107, 28, 235);
  color: #ffffff;
  box-shadow: 0 0 35px rgb(107, 28, 235);
}

.btn-box {
  display: inline-block;
  padding: 12px 28px;
  background: rgb(107, 28, 235);
  border-radius: 40px;
  font-size: 16px;
  color: #000000;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
  transition: .5s;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  animation-delay: 1s;
  box-shadow: 0 0 5px rgb(107, 28, 235);
  ;

}

.btn-box:hover {
  background: rgb(107, 28, 235);
  color: rgb(255, 255, 255);
  box-shadow: 0 0 35px rgb(107, 28, 235);

}

@keyframes slideTop {
  0% {
      transform: translateY(100px);
      opacity: 0;
  }

  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}

@keyframes slideLeft {
  0% {
      transform: translateY(100px);
      opacity: 0;
  }

  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}


@keyframes slideRight {
  0% {
      transform: translateX(-100px);
      opacity: 0;
  }

  100% {
      transform: translateX(0px);
      opacity: 1;
  }
}

@keyframes slideBottm {
  0% {
      transform: translateY(-100px);
      opacity: 0;
  }

  100% {
      transform: translateY(0px);
      opacity: 1;
  }
}



.home .image{
  flex: 1 1 30rem;
  position: relative; /* add this to position the image relative to this element */
}
  
.home .image img{
  position: absolute;
  top: -310px;
  left: 450px;
  width: 400px;
  height: 400px;
  animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}
}
@media only screen and (min-width:1030px) {
  /*** home ***/
.home {
   position: relative;
   width: 100%;
   justify-content: space-between;
   height: 100vh;
   background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
   background-size: cover;
   background-position: center;
   width: 145%;
  
   display: flex;
   align-items: center;
   padding: 70px 10% 0%;
}
.home-content {
   max-width: 600px;
}

.home-content h3 {
   font-size: 32px;
   font-weight: 700;
   opacity: 0;
   animation: slideRight 1s ease forwards;
   font-family: 'Jost', sans-serif;
   color: var(--primary);
}

.home-content h1 span {
   color: rgb(107, 28, 235);
}

.home-content h3:nth-of-type(2) {
   margin: 10px;
   opacity: 0;
   animation: slideRight 1s ease forwards;
   animation-delay: .5s;
   color: var(--primary);

}

.home-content h1 {
   font-size: 56px;
   font-weight: 700;
   margin: -3px 0;
   opacity: 0;
   animation: slideRight .5s ease forwards;
   font-family: 'Jost', sans-serif;
   color: var(--primary);

}

.home-content p {
   font-size: 20px;
   opacity: 0;
   animation: slideLeft 1s ease forwards;
   font-family: 'Ysabeau SC', sans-serif;
   color: var(--primary);
}

.home-sci a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 40px;
   height: 40px;
   background: transparent;
   border: 2px solid rgb(107, 28, 235);
   border-radius: 50%;
   font-size: 20px;
   color: rgb(107, 28, 235);
   text-decoration: none;
   margin: 30px 15px 30px 0;
   transition: .5s ease;
   opacity: 0;
   animation: slideLeft 1s ease forwards;
   animation-delay: calc(.1s * var(--i));
}

.home-sci a:hover {
   background: rgb(107, 28, 235);
   color: #ffffff;
   box-shadow: 0 0 35px rgb(107, 28, 235);
}

.btn-box {
   display: inline-block;
   padding: 12px 28px;
   background: rgb(107, 28, 235);
   border-radius: 40px;
   font-size: 16px;
   color: #000000;
   letter-spacing: 1px;
   font-weight: 600;
   text-decoration: none;
   transition: .5s;
   opacity: 0;
   animation: slideTop 1s ease forwards;
   animation-delay: 1s;
   box-shadow: 0 0 5px rgb(107, 28, 235);
   ;

}

.btn-box:hover {
   background: rgb(107, 28, 235);
   color: rgb(255, 255, 255);
   box-shadow: 0 0 35px rgb(107, 28, 235);

}

@keyframes slideTop {
   0% {
       transform: translateY(100px);
       opacity: 0;
   }

   100% {
       transform: translateY(0px);
       opacity: 1;
   }
}

@keyframes slideLeft {
   0% {
       transform: translateY(100px);
       opacity: 0;
   }

   100% {
       transform: translateY(0px);
       opacity: 1;
   }
}


@keyframes slideRight {
   0% {
       transform: translateX(-100px);
       opacity: 0;
   }

   100% {
       transform: translateX(0px);
       opacity: 1;
   }
}

@keyframes slideBottm {
   0% {
       transform: translateY(-100px);
       opacity: 0;
   }

   100% {
       transform: translateY(0px);
       opacity: 1;
   }
}



.home .image{
   flex: 1 1 30rem;
   position: relative; /* add this to position the image relative to this element */
}
   
.home .image img{
   position: absolute;
   top: -290px;
   left: 400px;
   width: 450px;
   height: 450px;
   animation: imgRotate 50s linear infinite; /* change this to the angle you want */
}
@keyframes imgRotate { 
   100% { 
       transform: rotate(360deg); 
   } 
}
}

@media only screen and (min-width:1920px) {
  /*** home ***/
 .home {
   position: relative;
   width: 100%;
   justify-content: space-between;
   height: 100vh;
   background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url("BG.jpg") no-repeat;
   background-size: cover;
   background-position: center;
   width: 145%;
  
   display: flex;
   align-items: center;
   padding: 70px 10% 0%;
 }
 .home-content {
   max-width: 900px;
 }
 
 .home-content h3 {
   font-size: 50px;
   font-weight: 700;
   opacity: 0;
   animation: slideRight 1s ease forwards;
   font-family: 'Jost', sans-serif;
   color: var(--primary);
 }
 
 .home-content h1 span {
   color: rgb(107, 28, 235);
 }
 
 .home-content h3:nth-of-type(2) {
   margin: 10px;
   opacity: 0;
   animation: slideRight 1s ease forwards;
   animation-delay: .5s;
   color: var(--primary);
 
 }
 
 .home-content h1 {
   font-size: 74px;
   font-weight: 700;
   margin: -3px 0;
   opacity: 0;
   animation: slideRight .5s ease forwards;
   font-family: 'Jost', sans-serif;
   color: var(--primary);
 
 }
 
 .home-content p {
   font-size: 30px;
   opacity: 0;
   animation: slideLeft 1s ease forwards;
   font-family: 'Ysabeau SC', sans-serif;
   color: var(--primary);
 }
 
 .home-sci a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 40px;
   height: 40px;
   background: transparent;
   border: 2px solid rgb(107, 28, 235);
   border-radius: 50%;
   font-size: 20px;
   color: rgb(107, 28, 235);
   text-decoration: none;
   margin: 30px 15px 30px 0;
   transition: .5s ease;
   opacity: 0;
   animation: slideLeft 1s ease forwards;
   animation-delay: calc(.1s * var(--i));
 }
 
 .home-sci a:hover {
   background: rgb(107, 28, 235);
   color: #ffffff;
   box-shadow: 0 0 35px rgb(107, 28, 235);
 }
 
 .btn-box {
   display: inline-block;
   padding: 12px 28px;
   background: rgb(107, 28, 235);
   border-radius: 40px;
   font-size: 16px;
   color: #000000;
   letter-spacing: 1px;
   font-weight: 600;
   text-decoration: none;
   transition: .5s;
   opacity: 0;
   animation: slideTop 1s ease forwards;
   animation-delay: 1s;
   box-shadow: 0 0 5px rgb(107, 28, 235);
   ;
 
 }
 
 .btn-box:hover {
   background: rgb(107, 28, 235);
   color: rgb(255, 255, 255);
   box-shadow: 0 0 35px rgb(107, 28, 235);
 
 }
 
 @keyframes slideTop {
   0% {
       transform: translateY(100px);
       opacity: 0;
   }
 
   100% {
       transform: translateY(0px);
       opacity: 1;
   }
 }
 
 @keyframes slideLeft {
   0% {
       transform: translateY(100px);
       opacity: 0;
   }
 
   100% {
       transform: translateY(0px);
       opacity: 1;
   }
 }
 
 
 @keyframes slideRight {
   0% {
       transform: translateX(-100px);
       opacity: 0;
   }
 
   100% {
       transform: translateX(0px);
       opacity: 1;
   }
 }
 
 @keyframes slideBottm {
   0% {
       transform: translateY(-100px);
       opacity: 0;
   }
 
   100% {
       transform: translateY(0px);
       opacity: 1;
   }
 }
 
 
 
 .home .image{
   flex: 1 1 30rem;
   position: relative; /* add this to position the image relative to this element */
 }
   
 .home .image img{
   position: absolute;
   top: -310px;
   left: 650px;
   width: 600px;
   height: 600px;
   animation: imgRotate 50s linear infinite; /* change this to the angle you want */
 }
 @keyframes imgRotate { 
   100% { 
       transform: rotate(360deg); 
   } 
 }
 }