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

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

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /*   
        Purple: hsl(250, 66%, 75%)
        Blue: hsl(207, 90%, 72%)
        Pink: hsl(356, 66%, 75%)
        Teal: hsl(174, 63%, 62%)
        bittersweet: hsl(0, 97%, 69%);
  */
  --first-hue: 0;
  --sat: 97%;
  --lig: 69%;
  --second-hue: 219;
  --first-color: hsl(var(--first-hue), var(--sat), var(--lig));
  --first-color-alt: hsl(var(--first-hue), var(--sat), 71%); /* -4% */
  --title-color: hsl(var(--second-hue), 15%, 95%);
  --text-color: hsl(var(--second-hue), 8%, 75%);
  --text-color-light: hsl(var(--second-hue), 4%, 55%);
  --body-color: hsl(var(--second-hue), 48%, 8%);
  --container-color: hsl(var(--second-hue), 32%, 12%);
  
  /* Fading Effect for Carousel */
  .DYRfKK {
    opacity: 0;
    display: block;
    transition: opacity 1s ease-in-out;
    position: absolute; /* This allows stacking of items */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
.DYRfKK.active {
  display: block; /* Show only the active one */
}
  
.iXLWbT {
  position: absolute;
  top: 0; /* Place the line at the bottom of the carousel item */
  left: 0;
  width: 100%;
  height: 2px; /* Adjust the thickness of the line */
  background-color: #fff; /* Change color to match your theme */
  z-index: 10; /* Make sure the line appears over the image */
}

.DYRfKK.UKAjpb {
  opacity: 1;
  position: relative; /* Relative position ensures children are positioned absolutely relative to this */
}

/* Progress Bar Container */
.kJHuoF {
  position: absolute;
  bottom: 10%; /* Position near the bottom of the carousel */
  left: 50%;
  transform: translateX(-50%);
  width: 80%; /* Adjust to control length */
  height: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  overflow: hidden;
  z-index: 10; /* Keep the progress bar above the carousel line */
}
.tJdUTL {
  width: 0%;
  height: 100%;
  background-color: #d6d4d450;
  transition: width .003s linear;
}

/* Optional: Circle Indicator */
.kJHuoF-circle {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 5px solid #3498db;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  0% {
      transform: translateX(-50%) rotate(0deg);
  }
  100% {
      transform: translateX(-50%) rotate(360deg);
  }
}

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 1.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.625rem;

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

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

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.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 {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.4s; /* for light mode animation */
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

.XXGNZb {
  display: flex;
  justify-content: center;
}

.pMmprb > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.XXGNZb img {
  max-height: 70px;
}

.pMmprb {
  margin-top: 60px;
}

/*=============== THEME ===============*/
.sUVmwP {
  font-size: 24px; /* Adjust the theme icon size */
  cursor: pointer;
}

/*========== Variables Dark theme ==========*/

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


/*=============== REUSABLE CSS CLASSES ===============*/
.EJpjcI {
  max-width: 1200px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.woYYPg {
  display: grid;
  gap: 1.25rem;
}

.GSSWIt {
  overflow: hidden;
}

.wsHRPM {
  padding: 4.5rem 0 1rem;
}

.lEivTH,
.EelWBX {
  text-align: center;
}
.nm__title {
  font-size: var(--h2-font-size);
  text-align: center;
  color: var(--first-color);
  margin-bottom: 2rem;
}
.lEivTH {
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-bottom: 2rem;
}

.EelWBX {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== HEADER & NAV===============*/
.JesVyn {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: var(--body-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
  font-size: 14px;
  transition: 0.4s;
}
.DnFTMI.uXByXw {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px; /* Adjust the font size to make the text smaller */
  padding: 10px 40px; /* Reduce padding to make the button smaller */
  height: auto; /* Ensures the height adapts based on content */
  min-width: 100px; /* Optional: Set a minimum width if needed */
  border-radius: 5px; /* Optional: Adjust the corners */
}
.Shisen{

  font-size: 14px;
  padding: 5px 10px;
  height: auto;
  min-width: 100px;

}
header .logo {
  float: left; /* Or use flexbox */
  margin-left: 10px; /* Adjust as needed */
}

header .sign-in {
  float: right; /* This will move it to the right */
  margin-right: 10px; /* Adjust as needed */
}

.tPSPpW {
  border: none;
  height: 5px;
  background-color: #080d16; /* Light grey line */
  margin: 0px 0; /* Add some spacing above and below the line */
}

.gpQGyG {
  border: none;
  height: 50px;
  background-image: linear-gradient(rgba(11, 17, 30, 0.435), rgba(11, 17, 30, 0.75)) /* Light grey line */
  width: 100%;
}

.NHWzDb {
  display: flex;
  justify-content: space-between; /* Distribute logo and right section */
  align-items: center; /* Vertically center */
  padding: 1rem;
}
.GrRKmk {
  display: flex;
  align-items: center; /* Vertically center the buttons */
  gap: 1rem; /* Add space between the theme button and login button */
}

.aYxJyJ img {
  max-height: 40px; /* Set a max height for the logo */
}

.uRVKfv {
  width: 30px;  /* Set the width to your desired size */
  height: auto;  /* Keep the aspect ratio */
  max-width: 200px;
}

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

.WZXCum {
  position: fixed;
  bottom: 1rem;
  background-color: hsla(var(--second-hue), 32%, 16%, 0.8);
  width: 90%;
  border-radius: 4rem;
  padding: 1rem 2.25rem;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.ffFepe {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.SAeOSV {
  color: var(--text-color);
  font-size: 1.25rem;
  padding: 0.4rem;
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: 0.4s;
  display: flex;
  border-radius: 5rem;
}

/* Active link */

/* Change background header */

/*=============== HOME ===============*/
.OPMqwu {
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('background.jpg');
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
}
.Olkdwj {
  position: relative;
  row-gap: 4.5rem;
  padding-top: 0.6rem;
}

.jYoSBS {
  text-align: center;
}

.lkccKc,
.NMfPhe {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.lkccKc {
  display: block;
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.NMfPhe {
  color: var(--text-color);
  margin-bottom: 1.7rem;
}

.HDizNu {
  font-size: var(--medium-font-size);
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
}

.XnnjBL {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  margin-bottom: 1.5rem;
}

.soFXRg {
  border-radius: 1rem;
}

.vgkjOH {
  margin-top: 30px;
  margin-bottom: 30px;
  justify-self: center;
  max-width: 600px;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}

.QxUWUA {
  position: absolute;
  left: -35%;
  top: 0;
  width: 5.5rem;
  height: 100%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  background-color: var(--body-color);
  color: var(--first-color);
  font-weight: bold;
  transition: 0.4s;
  padding: 0 1rem;
  /* z-index: var(--z-fixed); */
}

.vgkjOH:hover .QxUWUA {
  left: 0;
}

.QxUWUA-name {
  position: absolute;
  top: 40px;
  left: 10px;
  font-size: var(--font-medium);
  font-weight: 300;
  color: var(--body-color);
  z-index: var(--z-tooltip);
}

.DnFTMI {
  display: flex;
  justify-content: center;
  align-items: center;

}

/* .VgqgWU,
.ccRFbY {
  position: absolute;
} */
/* 
.VgqgWU {
  bottom: 4rem;
  left: 0;
  display: grid;
  row-gap: 0.5rem;
}

.bipuXD {
  width: max-content;
  background-color: var(--container-color);
  color: var(--first-color);
  padding: 0.25rem;
  border-radius: 0.5rem;
  display: flex;
  font-size: 1rem;
  transition: 0.4s;
}

.bipuXD:hover {
  background-color: var(--first-color);
  color: #ffffff;
}

.VgqgWU::after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: var(--first-color);
  transform: rotate(90deg) translate(16px, 4px);
} */

.ccRFbY {
  color: var(--first-color);
  right: -1.5rem;
  bottom: 4rem;
  display: grid;
  row-gap: 0.5rem;
  justify-items: center;
  /* color: hsl(0, 97%, 69%); */
}

.WpWmvf {
  font-size: 1.25rem;
}

.cONmYH {
  position: center;
  font-size: var(--smaller-font-size);
}

/*=============== BUTTONS ===============*/
.mdfzrZ {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.jvPPAT {
  
  display: inline-flex;
  align-items: center;
  background-color: #D43434;
  color: white;
  padding: 5px 10px;
  border-radius: 0.3rem;
  font-weight: var(--font-medium);
  transition: 0.4s;
}

.jvPPAT:hover {


  box-shadow: 0 0 10px 3px #ffffff3d;
}

.lipmAr {
  background-color: transparent;
  color: var(--first-color);
  border: 1px solid var(--first-color);
}

/*=============== LOgin modal ===============*/
.login__modal {
  position: fixed;
  inset: 0;
  background-color: hsl(var(--second-hue), 28%, 16%, 0.9);
  padding: 2rem 1rem;
  display: grid;
  place-items: center;
  transition: 0.4s;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
}

.login__modal-content {
  background-color: var(--body-color);
  padding: 4.5rem 1.5rem 2.5rem;
  border-radius: 1.5rem;
  position: relative;
}

.login__modal-title,
.login__modal-description {
  text-align: center;
}

.login__modal-title {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: 1rem;
}

.login__modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
}

.login__form-div {
  position: relative;
  margin-bottom: 2rem;
  height: 3rem;
  width: 250px;
}

.login__form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color-light);
  background: none;
  border-radius: 0.75rem;
  padding: 1.5rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  outline: none;
  z-index: 1;
}

.login__form-tag {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  font-size: var(--smaller-font-size);
  padding: 0.25rem;
  background-color: var(--body-color);
  z-index: 10;
}

.submit__button {
  width: 100%;
  transition: 0.4s;
}

.select {
  position: relative;
}

select {
  color: var(--text-color);
  cursor: pointer;
  text-align: center;
  font-size: var(--normal-font-size);
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.3rem;
  border: 2px solid var(--text-color-light);
  border-radius: 0.75rem;
  background: none;
  z-index: 1;
}

option {
  background: var(--body-color);
  border: 2px solid var(--text-color-light);
}

select::-ms-expand {
  display: none;
}
.select::after {
  content: "\25BC";
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0.87rem 1em;
  border-radius: 0 0.75rem 0.75rem 0;
  background: var(--first-color-alt);
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.25s all ease;
  transition: 0.5s all ease;
  z-index: 2;
}

.select:hover::after {
  color: var(--body-color);
}

/*Active modal*/

.UKAjpb-modal {
  visibility: visible;
  opacity: 1;
}

/* .QMPwLU__modal-description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
} */

/* .QMPwLU__modal-list {
  display: grid;
  row-gap: 0.75rem;
}

.QMPwLU__modal-item {
  display: flex;
  align-items: flex-start;
  column-gap: 0.5rem;
}

.login__modal-icon {
  font-size: 1.5rem;
  color: var(--first-color);
}

.login__modal-info {
  font-size: var(--small-font-size);
} */
/* Download Section Styling */
.iphone__card {
  width: 50px;  /* Increase the width */
  height: auto;  /* Automatically adjust the height */
  display: block;
  margin: 0 auto; /* Center horizontally */
  text-align: center; /* Center the image inside the container */
}
.iphone__image-container {
  width: 100%; /* Let the container take up the full width */
  max-width: 400px; /* Set a maximum width to prevent the image from becoming too large */
  margin: 0 auto; /* Center the container horizontally */
}
.download__img {
  width: 100%;  /* Make the image fill the width of its container */
  height: auto;  /* Keep the aspect ratio intact */
}
.download-app {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--body-color); /* Light background */
}

.download-app .EelWBX {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.download-app .lEivTH {
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-bottom: 2rem;
}

.download__container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.download__card {
  background-color: var(--container-color);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  width: 200px;
  height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.download__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.download__img {
  max-width: 100px;
  margin-bottom: 1rem;
}

.download__text {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

.download__title {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

/* Optional: Mobile Responsiveness */
@media (max-width: 768px) {
  .download__container {
    flex-direction: column;
  }
}
/*=============== SERVICES ===============*/
.CmAQXM {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}
.sElEn{
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('your.png');
}

.sElEn2{
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('your.png');
}

.sElEn3{
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('your.png');
}

.sElEn4{
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('your.png');
}

.sElEn5{
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('your.png');
}

.sElEn6{
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center 70%; /* Center the image */
  background-repeat: no-repeat; /* Prevent image from repeating */
  padding: 40px 0; /* Add padding for spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.75)), url('your.png');
}
.oszLTd {
  
  padding: 3rem 1.5rem 1.5em;
  border-radius: 1.25rem;
}

.HsYxkj {
  font-size: var(--h3-font-size);
  margin-bottom: 1.2rem;
}

.tPttSh {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

.tPttSh:hover .WIGukZ {
  transform: translateX(0.25rem);
}

.WIGukZ {
  font-size: 1rem;
  transition: 0.4s;
}

/* Services modal */
/* .QMPwLU__modal {
  position: fixed;
  inset: 0;
  background-color: hsl(var(--second-hue), 28%, 16%, 0.9);
  padding: 2rem 1rem;
  display: grid;
  place-items: center;
  transition: 0.4s;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
}

.QMPwLU__modal-content {
  max-width: 500px;
  background-color: var(--body-color);
  padding: 4.5rem 1.5rem 2.5rem;
  border-radius: 1.5rem;
  position: relative;
}

.QMPwLU__modal-title,
.QMPwLU__modal-description {
  text-align: center;
}

.QMPwLU__modal-title {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: 1rem;
}

.QMPwLU__modal-description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.QMPwLU__modal-list {
  display: grid;
  row-gap: 0.75rem;
}

.QMPwLU__modal-item {
  display: flex;
  align-items: flex-start;
  column-gap: 0.5rem;
}

.QMPwLU__modal-icon {
  font-size: 1.5rem;
  color: var(--first-color);
}

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

.QMPwLU__modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
} */

/*=============== FAQs ===============*/
.EWmFII {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0;
}

.NFYZcx {
  margin: 0 auto;
  width: 85%;
}

.OYQhRI {
  background-color: var(--container-color);
  color: var(--text-color);
  border-radius: 1rem;
  box-shadow: 0 5px 10px 0 rgba(25, 9, 9, 0.25);
  margin: 20px 0;
}

.mMKtNy {
  font-size: var(--font-medium);
  font-weight: 500;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.mMKtNy::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.4s;
}

.mMKtNy.UKAjpb::after {
  transform: rotate(45deg);
}

.WXCZyY {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}
.WXCZyY.expanded {
  max-height: 300px;
}
.eYxJfl {
  padding: 0 20px 20px;
  line-height: 1.5rem;
  font-size: var(--small-font-size);
  font-weight: lighter;
}

.ktEpCF {
  text-decoration: none;
  color: var(--first-color-alt);

}

.lKXXJa {
  text-align: center;
}

.lKXXJa p {
  cursor: pointer;
  color: var(--first-color-alt);
}

.WUZeQD {
  display: none;
}

/*=============== weapons ===============*/

.UuIXeQ {
  margin-bottom: 2rem;
}
.QIQpKq {
  padding: 2rem 0;
  margin-bottom: 4rem;
}

/* Loading container will be positioned absolutely in the center */
.loading-container {
  position: absolute;  /* Position it absolutely relative to the weapon container */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  /* This will center the container both vertically and horizontally */
  text-align: center;
}

/* Loading circle styling */
.loading-circle {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Spin animation for the loading circle */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styling for loading text */
.loading-text {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
}

/* General reset to prevent conflicts with other grid-related styles */
.UGiOcg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 1200px;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  align-items: center;
  /* justify-items: center; */
  gap: 2rem;
}

/* title */
/* .shop__title {
  position: relative;
  margin: 0 2.5rem;
}

.shop__title::after {
  content: "";
  position: absolute;
  top: 69%;
  margin-left: 0.5rem;
  background-color: var(--dark-color);
  width: 80px;
  height: 2px;
} */

/* CARD */
.ozhDBx {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  overflow: hidden;
  height: 50vh;
  background-color: var(--container-color);
}



/* article:nth-child(1) {
  background-color: var(--first-color);
}

article:nth-child(2) {
  background-color: var(--second-color);
}

article:nth-child(3) {
  background-color: var(--third-color);
}

article:nth-child(4) {
  background-color: var(--fourth-color);
} */

.XXGNZb {
  width: 180px;
  height: auto;
  padding: 3rem 0 0 0;
  transition: 0.5s;
}

.EpXNLP {
  position: absolute;
  left: -25%;
  top: 0;
  width: 3.5rem;
  height: 100%;
  padding: 0 1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  background-color: var(--body-color);
  color: var(--first-color);
  font-weight: bold;
  transition: 0.5s;
}

.ozhDBx-icon {
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
  transition: 0.5s;
}

.ozhDBx-icon:hover {
  color: var(--first-color-alt);
  transition: 0.5s;
}

.pMmprb {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  /* align-items: flex-end; */
  transition: 0.5s;
}

.nQxRPN {
  display: block;
  text-align: center;
}

.xhcgRp {
  font-size: var(--h3-font-size);
  font-weight: bold;
}

.ozhDBx:hover {
  box-shadow: 0 2px 20px #f16e6e2c;
  transition: 0.5s;
}

.ozhDBx:hover .EpXNLP {
  left: 0;
}

.ozhDBx:hover .XXGNZb {
  transform: rotate(30deg);
  margin-left: 3.5rem;
}

.ozhDBx:hover .pMmprb {
  margin-left: 3.5rem;
  padding: 0 1.5rem;
}

/*-- MEDIA QUERIES --*/
/* @media screen and (min-width: 900px) {
  body {
    margin: 3rem 0 0 0;
  }
  .title-shop {
    margin: 0 5rem;
  }
  .   {
    margin-left: auto;
    margin-right: auto;
  }
} */

/*=============== finisher ===============*/
.finisher_vid {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: rgba(255, 119, 101, 0.473);
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.finisher_vid .finisher_vid_cl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  overflow: visible;
  border: 50px soli white;
}

.finisher_vid .finisher_vid_cl i {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  filter: invert(0);
  z-index: 1002;
}

.finisher_vid video {
  position: relative;
  max-width: 900px;
  outline: none;
  border-radius: 8px;
}

@media screen and (max-width: 991px) {
  .finisher_vid video {
    max-width: 90%;
  }

  .finisher_vid .finisher_vid_cl i {
    top: 10px;
    right: 7%;
    font-size: 1.3rem;
  }
}
/*=============== Conatct ===============*/
.contact__container {
  row-gap: 3rem;
  padding-bottom: 3rem;
}

.contact__title {
  text-align: center;
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
}

.contact__info {
  display: grid;
  gap: 1rem;
}

.contact__card {
  background-color: var(--container-color);
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

.contact__card-icon {
  font-size: 2rem;
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.contact__card-title,
.contact__card-data {
  font-size: var(--small-font-size);
}

.contact__card-title {
  font-weight: var(--font-medium);
}

.contact__card-data {
  display: block;
  margin-bottom: 0.75rem;
}

.contact__button {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

.contact__button:hover .contact__button-icon {
  transform: translateX(0.25rem);
}

.contact__button-icon {
  font-size: 1rem;
  transition: 0.4s;
}

.contact__form-div {
  position: relative;
  margin-bottom: 2rem;
  height: 4rem;
}

.contact__form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color-light);
  background: none;
  border-radius: 0.75rem;
  padding: 1.5rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  outline: none;
  z-index: 1;
}

.contact__form-tag {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  font-size: var(--smaller-font-size);
  padding: 0.25rem;
  background-color: var(--body-color);
  z-index: 10;
}

.contact__form-area {
  height: 17rem;
}

.contact__form-area textarea {
  resize: none;
}

/*=============== About ===============*/
.about__container {
  row-gap: 2.5rem;
  margin-bottom: 6rem;
}

.about__img {
  width: 220px;
  border-radius: 1.5rem;
  justify-self: center;
}

.about__data {
  text-align: center;
}

.about__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.about__box {
  background-color: var(--container-color);
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
}

.about__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: 0.5rem;
}

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

.about__subtitle {
  font-size: var(--tiny-font-size);
}

.about__description {
  margin-bottom: 2rem;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--first-color);
}

.footer__container {
  padding: 2rem 0 6rem;
}

.footer__title,
.footer__link {
  color: var(--body-color);
}

.footer__title {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
}

.footer__social-link {
  background-color: var(--body-color);
  color: var(--first-color);
  padding: 0.35rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  display: inline-flex;
}

.footer__copy {
  display: block;
  margin-top: 4.5rem;
  color: var(--container-color);
  text-align: center;
  font-size: var(--smaller-font-size);
}

/* .mMKtNy.UKAjpb + .WXCZyY {
} */

/* @media screen and (max-width: 790px) {
  html {
    font-size: 14px;
  }
  .wrapper {
    width: 90%;
  }
} */

/*=============== SKILLS ===============*/

/* Services modal */

/*Active modal*/

/*=============== WORK ===============*/

/* Active item work*/

/*=============== TESTIMONIAL ===============*/

/* Swiper class */

/*=============== CONTACT ===============*/

/*=============== preloader ===============*/
.JBQicY {
  background-color: rgba(51, 48, 47, 0.911);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1300;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.JBQicY svg {
  width: 100px;
  height: 100px;
}

.JBQicY svg .GLekaH {
  fill: transparent;
  stroke: #ff4457;
  stroke-width: 8px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: 2s ease-out 0s infinite ripple-out;
  animation: 2s ease-out 0s infinite ripple-out;
}

.JBQicY svg .LWSDmu {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.JBQicY svg .GLekaH3 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

@-webkit-keyframes ripple-out {
  0% {
    r: 0px;
    opacity: 1;
  }
  100% {
    r: 80px;
    opacity: 0;
  }
}

@keyframes ripple-out {
  0% {
    r: 0px;
    opacity: 1;
  }
  100% {
    r: 80px;
    opacity: 0;
  }
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.3rem;
  border-radius: 0.5rem;
  background-color: var(--container-color);
}

::-webkit-scrollbar-track {
  border-radius: 1.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--first-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color-alt);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .login__form-div {
    width: 200px;
  }
}

/* For medium devices */
@media screen and (min-width: 630px) {
  /* .vgkjOH:hover {
    border: 3px solid var(--container-color);
  } */

  .CmAQXM {
    grid-template-columns: repeat(3, 177px);
    justify-content: center;
  }

  .QMPwLU__modal-content {
    width: 500px;
    padding: 4.5rem 2.5rem 2.5rem;
  }

  .QMPwLU__modal-description {
    padding: 0 3.5rem;
  }

  .login__form-div {
    width: 400px;
  }

  .NFYZcx {
    width: 600px;
  }

  .contact__container {
    display: grid;
    grid-template-columns: 220px 340px;
    column-gap: 2rem;
    justify-content: center;
  }

  .contact__info {
    grid-template-columns: 200px;
    gap: 1rem;
  }

  .contact__form {
    width: 340px;
  }

  .about__info {
    grid-template-columns: repeat(3, 180px);
    justify-content: center;
  }

  .about__description {
    padding: 1rem 5rem;
    width: 600px;
    margin: 0 auto 2rem auto;
  }

  .about__box {
    padding: 1.75rem 0.95rem;
  }
}
@media screen and (max-width: 1200px)  {
  .Olkdwj {
    position: relative;
    row-gap: 4.5rem;
    padding-top: 5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1200px) {



  .EJpjcI {
    margin-left: auto;
    margin-right: auto;
  }

  .wsHRPM {
    padding: 6.5rem 0 1rem;
  }

  .lEivTH {
    margin-bottom: 3.5rem;
  }

  .NHWzDb {
    height: calc(var(--header-height) + 1rem);
  }

  .vgkjOH {
    max-width: 900px;
    height: 400px;
  }

  /* 
  .soFXRg {
    width: 220px;
  }
  .bipuXD {
    padding: 0.4rem;
    font-size: 1.25rem;
  }

  .VgqgWU::after {
    transform: rotate(90deg) translate(16px, -1px);
  }

  .WpWmvf {
    font-size: 2rem;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 4rem;
  }

  .about__img {
    width: 350px;
  }

  .about__data {
    text-align: initial;
  }

  .about__info {
    justify-content: initial;
    gap: 2rem;
  } */

  /* .about__box {
    text-align: center;
    padding: 1rem 1.25rem;
  }

  .about__description {
    padding: 0 4rem 0 0;
    margin-bottom: 2.5rem;
  }

  .skills__container {
    grid-template-columns: repeat(2, 460px);
    column-gap: 3rem;
  }

  .skills__title {
    margin-bottom: 3.5rem;
  } */

  .CmAQXM {
    grid-template-columns: repeat(3, 300px);
    column-gap: 2rem;
  }



    .NFYZcx {
      width: 950px;
    }
    /* .work__container {
      grid-template-columns: repeat(3, max-content);
      gap: 3rem;
    }

    .work__card {
      padding: 1.25rem;
    }

    .work__img {
      margin-bottom: 2rem;
    }

    .work__title {
      margin-bottom: 0.5rem;
    }

    .testimonial__container {
      width: 970px;
    }

    .testimonial__card {
      padding: 1.5rem 2rem;
    }*/

    .contact__info {
      grid-template-columns: 530px;
      gap: 1rem;
    }

    .contact__form {
      width: 550px;
    }

    .contact__form-area {
      height: 18rem;
    }

    .contact__container {
      grid-template-columns: repeat(2, 530px);
      column-gap: 6rem;
    }

    .footer__social-link {
      font-size: 1.25rem;
      padding: 0.4rem;
      border-radius: 0.5rem;
    }
  }