@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

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

body {
  background: #0D0D0D;
  font-family: Urbanist;
  line-height: 1;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  padding: 0px auto;
  transition: 0.3s ease-in-out;
}
header .navlogo {
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  color: #F0A900;
  font-weight: 500;
  text-transform: uppercase;
  margin: 7px 10px;
}
header .navlogo img {
  max-width: 30px;
}
header .Navlinks-lg {
  display: none;
}
@media (min-width: 960px) {
  header .Navlinks-lg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
header ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 200px 0;
}
header ul li a {
  color: #ffffff;
  padding: 7px 10px;
  transition: 0.6s ease-in-out;
  font-weight: 300;
  font-size: 35px;
  transition: 1s ease;
}
header ul li a:hover {
  color: #F0A900;
}
@media (min-width: 960px) {
  header ul li a {
    font-size: 15px;
    background-color: #ff0000;
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: none;
    background-color: transparent;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
  }
  header ul li a:hover {
    backdrop-filter: blur(10px);
    background-color: rgba(46, 52, 98, 0.0745098039);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 960px) {
  header ul {
    background-color: transparent;
    flex-direction: row;
    margin: 0px auto;
    padding: 12px 40px;
    border-radius: 20px;
    backdrop-filter: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    transition: 0.7s ease;
  }
  header ul:hover {
    background-color: rgba(46, 52, 98, 0.1647058824);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
  }
}
header .Nav-btn {
  font-size: 15px;
  padding: 0.2em 2.7em;
  margin: 0 0.5em;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid #F0A900;
  background: linear-gradient(to right, rgba(253, 200, 27, 0.1) 1%, transparent 40%, transparent 60%, rgba(253, 212, 27, 0.1) 100%);
  color: #F0A900;
  box-shadow: inset 0 0 10px rgba(253, 238, 27, 0.4), 0 0 9px 3px rgba(249, 253, 27, 0.1);
}
header .Nav-btn:hover {
  color: #fff382;
  box-shadow: inset 0 0 10px rgba(253, 219, 27, 0.6), 0 0 9px 3px rgba(253, 230, 27, 0.2);
}
header .Nav-btn:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(253, 212, 27, 0.1) 40%, rgba(253, 219, 27, 0.1) 60%, transparent 100%);
}
header .Nav-btn:hover::before {
  transform: translateX(15em);
}
header .hamburgr-buttn {
  background-color: transparent;
  padding: 5px 5px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  margin: 10px 30px;
  cursor: pointer;
  z-index: 1000;
}
header .hamburgr-buttn .hamburgr-line {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 3px;
  border-radius: 1px;
}
@media (min-width: 960px) {
  header .hamburgr-buttn {
    display: none;
  }
}
header .Navlinks-sm {
  position: fixed;
  top: 0;
  right: -80%;
  width: 60%;
  height: 100%;
  background-color: #0D0D0D;
  z-index: 100;
  box-shadow: #383838 0px 0px 15px;
  padding-left: 30px;
  padding-top: 50%;
  transition: 0.5s ease-in-out;
}
@media (min-width: 960px) {
  header .Navlinks-sm {
    display: none;
  }
}
header .Navlinks-sm-open {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 77, 64, 0.2862745098), rgba(62, 46, 98, 0.2862745098));
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
  z-index: 100;
  box-shadow: #383838 0px 0px 15px;
  padding-left: 30px;
  padding-top: 0%;
}
@media (min-width: 960px) {
  header .Navlinks-sm-open {
    display: none;
  }
}
header .Navlinks-sm-open .Nbtn-mobl {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: transparent;
  color: #F0A900;
}
header .Navlinks-sm-open .Nbtn-mobl:hover {
  background-color: #F0A900;
  color: #0D0D0D;
}

section {
  padding: 10px 10px;
  box-shadow: none;
}

.container-lg {
  padding: 10px 10px;
}

.container-sm {
  padding: 10px 10px;
}

footer {
  background-image: linear-gradient(#0D0D0D, #181818, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("Assets/Home/Footer.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 0;
}
footer .container-lg {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 50px 0px;
  margin: 0 auto;
}
footer .container-lg .comp-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .container-lg .comp-logo h2 {
  font-size: 35px;
  border-top: 1px solid #ffffff;
  padding: 10px 30px;
  color: #F0A900;
  font-weight: 100;
}
footer .container-lg .comp-logo img {
  max-width: 250px;
}
footer .container-lg .comp-logo p {
  max-width: 350px;
  font-size: 15px;
  color: #ffffff;
}
footer .container-lg .quk-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .container-lg .quk-links ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: transparent;
  flex-direction: row;
  margin: 0px auto;
  padding: 12px 40px;
  border-radius: 20px;
  backdrop-filter: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  transition: 0.7s ease;
}
footer .container-lg .quk-links ul li a {
  color: #ffffff;
  transition: 0.6s ease-in-out;
  font-weight: 300;
  font-size: 15px;
  background-color: #ff0000;
  padding: 5px 15px;
  border-radius: 20px;
  backdrop-filter: none;
  background-color: transparent;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
}
footer .container-lg .quk-links ul li a:hover {
  color: #F0A900;
}
footer .container-lg .quk-links ul:hover {
  background-color: rgba(46, 52, 98, 0.1647058824);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
}
footer .container-lg .quk-links .ctc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .container-lg .quk-links .ctc-info h2 {
  font-size: 35px;
  color: #F0A900;
}
footer .container-lg .quk-links .ctc-info .ctc-details {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
footer .container-lg .quk-links .ctc-info .ctc-details p {
  display: flex;
  flex-direction: row;
  gap: 7px;
  font-size: 15px;
  color: #ffffff;
}
footer .container-lg .quk-links .ctc-info .btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 20px 0;
}
footer .container-lg .quk-links .ctc-info .btns a {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: #F0A900;
  color: #0D0D0D;
}
footer .container-lg .quk-links .ctc-info .btns a:hover {
  background-color: transparent;
  color: #F0A900;
}
footer .container-lg .quk-links .sm-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding: 10px 0;
  margin: auto;
  gap: 50px;
  transition: 0.7s ease;
}
footer .container-lg .quk-links .sm-icons > * {
  transition: inherit;
}
footer .container-lg .quk-links .sm-icons a {
  background-color: #F0A900;
  border: 2px Solid #F0A900;
  border-radius: 35px;
  padding: 5px;
}
footer .container-lg .quk-links .sm-icons a i {
  color: #0D0D0D;
}
footer .container-lg .quk-links .sm-icons a:hover {
  background-color: transparent;
}
footer .container-lg .quk-links .sm-icons a:hover i {
  color: #F0A900;
}
footer .copyright {
  color: #ffffff;
  font-size: 15px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 2px solid #F0A900;
}
footer .copyright a {
  color: #ffffff;
}
footer .copyright a:hover {
  color: #F0A900;
}

.Hm-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Home/Heromob.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 85vh;
  width: auto;
}
@media (min-width: 960px) {
  .Hm-hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(15, 15, 15, 0.7607843137), #0D0D0D), url("Assets/Home/Hero.webp");
  }
}
.Hm-hero .container-lg {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  max-width: 1400px;
  width: 95%;
  gap: 10px;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg {
    flex-direction: row;
  }
}
.Hm-hero .container-lg .hero-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.Hm-hero .container-lg .hero-info .hedear h1 {
  background: linear-gradient(to right, #F0A900, #4600D6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color: transparent;
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 80px;
  line-height: 60px;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg .hero-info .hedear h1 {
    font-size: 190px;
    line-height: 140px;
  }
}
.Hm-hero .container-lg .hero-info p {
  font-size: 20px;
  color: #ffffff;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 2px solid #F0A900;
}
.Hm-hero .container-lg .hero-info .btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0px;
  gap: 10px;
}
.Hm-hero .container-lg .hero-info .btns a {
  padding: 5px 70px;
}
.Hm-hero .container-lg .hero-info .btns .stbtn {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: #F0A900;
  color: #0D0D0D;
}
.Hm-hero .container-lg .hero-info .btns .stbtn:hover {
  background-color: transparent;
  color: #F0A900;
}
.Hm-hero .container-lg .hero-info .btns .ndbtn {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: transparent;
  color: #F0A900;
}
.Hm-hero .container-lg .hero-info .btns .ndbtn:hover {
  background-color: #F0A900;
  color: #0D0D0D;
}
.Hm-hero .container-lg img {
  max-width: 300px;
  margin: 0 50px;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg img {
    max-width: 400px;
  }
}

.Hm-about {
  display: flex;
  align-items: center;
  width: auto;
  padding: 70px 0;
}
@media (min-width: 960px) {
  .Hm-about {
    padding: 70px 0;
  }
}
.Hm-about .container-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.Hm-about .container-sm .About-info {
  text-align: center;
}
.Hm-about .container-sm .About-info h2 {
  font-size: 35px;
  color: #F0A900;
  text-transform: uppercase;
}
.Hm-about .container-sm .About-info p {
  color: #ffffff;
  line-height: 15px;
  padding: 10px 20px;
  font-size: 15px;
}
@media (min-width: 960px) {
  .Hm-about .container-sm .About-info p {
    padding: 10px 300px;
  }
}
.Hm-about .container-sm #modalTrigger {
  cursor: pointer;
  border-radius: 20px;
  width: 400px;
}
@media (min-width: 960px) {
  .Hm-about .container-sm #modalTrigger {
    width: 900px;
  }
}
.Hm-about .container-sm .about-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: opacity 0.5s ease-in-out;
}
.Hm-about .container-sm .about-modal .close {
  color: #fbfbfe;
  position: absolute;
  top: 6%;
  right: 6%;
  font-size: 30px;
  cursor: pointer;
}
.Hm-about .container-sm .about-modal iframe {
  width: 60%;
  height: 60%;
  max-width: 800px;
  max-height: 450px;
  margin: auto;
  display: block;
  transform: translatey(30%);
}
.Hm-about .container-sm .hmcts {
  font-size: 15px;
  padding: 0.2em 2.7em;
  margin: 0 0.5em;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid #F0A900;
  background: linear-gradient(to right, rgba(253, 200, 27, 0.1) 1%, transparent 40%, transparent 60%, rgba(253, 212, 27, 0.1) 100%);
  color: #F0A900;
  box-shadow: inset 0 0 10px rgba(253, 238, 27, 0.4), 0 0 9px 3px rgba(249, 253, 27, 0.1);
}
.Hm-about .container-sm .hmcts:hover {
  color: #fff382;
  box-shadow: inset 0 0 10px rgba(253, 219, 27, 0.6), 0 0 9px 3px rgba(253, 230, 27, 0.2);
}
.Hm-about .container-sm .hmcts:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(253, 212, 27, 0.1) 40%, rgba(253, 219, 27, 0.1) 60%, transparent 100%);
}
.Hm-about .container-sm .hmcts:hover::before {
  transform: translateX(15em);
}

.Hm-servcs {
  background-color: #0D0D0D;
  display: flex;
  align-items: center;
  width: auto;
}
.Hm-servcs .container-sm {
  width: auto;
  max-width: 1200px;
  width: 90%;
  padding: 80px 20px;
  margin: 0 auto;
}
.Hm-servcs .container-sm h1 {
  font-size: 80px;
  color: #ffffff;
  line-height: 70px;
}
@media (min-width: 960px) {
  .Hm-servcs .container-sm h1 {
    font-size: 190px;
  }
}
.Hm-servcs .container-sm .Service-menu {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 20px;
  padding: 30px 0px 30px 0px;
  overflow-x: auto;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  scrollbar-width: thin;
  width: 100%;
  box-sizing: border-box;
  margin: 50px auto;
}
.Hm-servcs .container-sm .Service-menu .servi {
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh;
  justify-content: end;
  padding: 20px 0px 40px 20px;
  border: 1px solid rgba(0, 225, 255, 0.1450980392);
  border-radius: 30px;
  box-shadow: inset 0px -300px 100px #0D0D0D;
  transition: 0.6s ease;
  cursor: pointer;
}
.Hm-servcs .container-sm .Service-menu .servi:hover {
  height: 60vh;
  border: 1px solid rgba(0, 225, 255, 0.6784313725);
  border-radius: 20px;
  box-shadow: inset 0px -200px 100px #0D0D0D;
}
.Hm-servcs .container-sm .Service-menu .servi h3 {
  font-size: 30px;
  line-height: 25px;
  text-transform: uppercase;
  color: #F0A900;
  margin: 10px 0px;
  white-space: normal;
}
.Hm-servcs .container-sm .Service-menu .servi p {
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0px 0px 0px 10px;
  white-space: normal;
  border-left: 2px solid #4600D6;
}
.Hm-servcs .container-sm .Service-menu #service1 {
  background-image: url(Assets/Home/GD.webp);
}
.Hm-servcs .container-sm .Service-menu #service2 {
  background-image: url(Assets/Home/Web.webp);
}
.Hm-servcs .container-sm .Service-menu #service3 {
  background-image: url(Assets/Home/Music.webp);
}
.Hm-servcs .container-sm .Service-menu #service4 {
  background-image: url(Assets/Home/Signage.webp);
}
.Hm-servcs .container-sm .Service-menu #service5 {
  background-image: url(Assets/Home/Tech.webp);
}
.Hm-servcs .container-sm .Service-menu #service6 {
  background-image: url(Assets/Home/Consl.webp);
}
.Hm-servcs .container-sm a {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: #F0A900;
  color: #0D0D0D;
}
.Hm-servcs .container-sm a:hover {
  background-color: transparent;
  color: #F0A900;
}

.Hm-clients {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.Hm-clients .container-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Hm-clients .container-lg h2 {
  font-size: 80px;
  font-weight: 900;
  color: #F0A900;
  text-transform: uppercase;
}
.Hm-clients .container-lg .cont {
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
  margin: 20px 0px;
}
@media (min-width: 960px) {
  .Hm-clients .container-lg .cont {
    margin: 70px;
  }
}
.Hm-clients .container-lg .cont img {
  padding: 7px;
}
.Hm-clients .container-lg .elfsight-app-4fb060ab-8e2d-4177-a00d-5a5ac1b7342d {
  margin: 0 50px;
}

.Sv-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Home/Heromob.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 55vh;
  width: auto;
}
@media (min-width: 960px) {
  .Sv-hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(15, 15, 15, 0.7607843137), #0D0D0D), url("Assets/Home/Hero.webp");
  }
}
.Sv-hero .container-lg {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 10px;
}
.Sv-hero .container-lg h1 {
  color: #ffffff;
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 60px;
}
@media (min-width: 960px) {
  .Sv-hero .container-lg h1 {
    font-size: 190px;
    line-height: 140px;
  }
}

.Sv-servcs {
  background-color: #0D0D0D;
  display: flex;
  align-items: center;
  width: auto;
}
.Sv-servcs .container-sm {
  display: grid;
  grid-template-columns: 250fr;
  gap: 10px;
  width: auto;
  max-width: 1200px;
  width: 95%;
  padding: 80px 0px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .Sv-servcs .container-sm {
    padding: 80px 20px;
    grid-template-columns: 250fr 250fr;
  }
}
.Sv-servcs .container-sm .svcard {
  background: linear-gradient(rgb(44, 44, 44), #0D0D0D);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(37, 37, 37, 0.575);
}
.Sv-servcs .container-sm .svcard .sv-details {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.Sv-servcs .container-sm .svcard .sv-details h3 {
  font-size: 18px;
  font-weight: 900;
  color: #F0A900;
}
@media (min-width: 960px) {
  .Sv-servcs .container-sm .svcard .sv-details h3 {
    font-size: 25px;
  }
}
.Sv-servcs .container-sm .svcard .sv-details p {
  font-size: 10px;
  font-weight: 500;
  color: #ffffff;
}
@media (min-width: 960px) {
  .Sv-servcs .container-sm .svcard .sv-details p {
    font-size: 12px;
  }
}
.Sv-servcs .container-sm .svcard .sv-details .svscnt {
  margin-bottom: 15px;
}
.Sv-servcs .container-sm .svcard .sv-details .svs-projcnt {
  margin-bottom: 25%;
}
.Sv-servcs .container-sm .svcard .sv-details h2 {
  font-size: 30;
  font-weight: 900;
  text-transform: uppercase;
  margin: 7px 0;
  color: #009BCF;
}
@media (min-width: 960px) {
  .Sv-servcs .container-sm .svcard .sv-details h2 {
    font-size: 35px;
  }
}
.Sv-servcs .container-sm .svcard .sv-details .svcs-map {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
}
.Sv-servcs .container-sm .svcard .sv-details .svcs-map p {
  background-color: grey;
  padding: 3px 13px;
  border-radius: 10px;
  line-height: 10px;
}
.Sv-servcs .container-sm .svcard .sv-details a {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: transparent;
  color: #F0A900;
  margin: 7px 0;
  text-align: left;
  padding: 3px 20px;
}
.Sv-servcs .container-sm .svcard .sv-details a:hover {
  background-color: #F0A900;
  color: #0D0D0D;
}
.Sv-servcs .container-sm .svcard .sv-details a i {
  margin: 0 20px;
}
.Sv-servcs .container-sm .svcard .sv-img img {
  max-width: 150px;
}
@media (min-width: 960px) {
  .Sv-servcs .container-sm .svcard .sv-img img {
    max-width: 300px;
  }
}

.Sv-clients {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.Sv-clients .container-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Sv-clients .container-lg h2 {
  font-size: 80px;
  font-weight: 900;
  line-height: 65px;
  color: #F0A900;
  text-transform: uppercase;
}
.Sv-clients .container-lg .cont {
  display: grid;
  grid-auto-flow: column;
  gap: 5px;
  margin: 20px 0px;
}
@media (min-width: 960px) {
  .Sv-clients .container-lg .cont {
    gap: 30px;
    margin: 70px;
  }
}
.Sv-clients .container-lg .cont img {
  padding: 7px;
}
.Sv-clients .container-lg .elfsight-app-4fb060ab-8e2d-4177-a00d-5a5ac1b7342d {
  margin: 0 50px;
}

.Pr-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Home/Heromob.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 55vh;
  width: auto;
}
@media (min-width: 960px) {
  .Pr-hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(15, 15, 15, 0.7607843137), #0D0D0D), url("Assets/Home/Hero.webp");
  }
}
.Pr-hero .container-lg {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 10px;
}
.Pr-hero .container-lg h1 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 75px;
}
@media (min-width: 960px) {
  .Pr-hero .container-lg h1 {
    font-size: 35px;
    line-height: 140px;
  }
}

.Pr-social {
  margin: 50px 0;
}

.Plax-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: auto;
}
.Plax-hero .container-lg {
  background-image: url(Assets/Parallax/Hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 95%;
  gap: 10px;
  height: 80%;
  border-radius: 20px;
}
.Plax-hero .container-lg h1 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 60px;
}
@media (min-width: 960px) {
  .Plax-hero .container-lg h1 {
    font-size: 190px;
    line-height: 140px;
  }
}

.Plax-cntnt {
  display: flex;
  align-items: center;
}
.Plax-cntnt .container-lg {
  display: flex;
  align-items: center;
}
.Plax-cntnt .container-lg .px-content .Beats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: rgb(36, 36, 36);
  padding: 20px;
  border-radius: 20px;
}
@media (min-width: 960px) {
  .Plax-cntnt .container-lg .px-content .Beats {
    flex-direction: row;
    gap: 20px;
  }
}
.Plax-cntnt .container-lg .px-content .Beats .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15vh;
}
.Plax-cntnt .container-lg .px-content .Beats .info h2 {
  font-size: 80px;
  color: #F0A900;
}
.Plax-cntnt .container-lg .px-content .Beats .info p {
  color: #ffffff;
}
.Plax-cntnt .container-lg .px-content .Beats ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: rgb(255, 249, 231);
  padding: 20px;
  border-radius: 20px;
}
@media (min-width: 960px) {
  .Plax-cntnt .container-lg .px-content .Beats ul {
    flex-direction: row;
    gap: 20px;
  }
}
.Plax-cntnt .container-lg .px-content .Beats ul li {
  background-color: rgb(0, 255, 149);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  width: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgb(104, 93, 70);
  transition: 0.7s ease;
}
@media (min-width: 960px) {
  .Plax-cntnt .container-lg .px-content .Beats ul li {
    width: 10vw;
    gap: 20px;
  }
}
.Plax-cntnt .container-lg .px-content .Beats ul li:hover {
  height: 35vh;
}
.Plax-cntnt .container-lg .px-content .Beats ul li h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #ffffff;
}
.Plax-cntnt .container-lg .px-content .Beats ul li button {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.438);
  font-size: 50px;
  cursor: pointer;
}
.Plax-cntnt .container-lg .px-content .Beats ul li .dl-info h3 {
  font-size: 15px;
  color: #ffffff;
  margin: 5px 0;
}
.Plax-cntnt .container-lg .px-content .Beats ul li .dl-info a {
  font-size: 15px;
  color: #009BCF;
}
.Plax-cntnt .container-lg .px-content .Beats ul li .dl-info a:hover {
  color: #F0A900;
}
.Plax-cntnt .container-lg .px-content .Beats ul .heat {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Heat.webp");
}
.Plax-cntnt .container-lg .px-content .Beats ul .mini {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Mini.webp");
}
.Plax-cntnt .container-lg .px-content .Beats ul .aqua {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Aqua.webp");
}
.Plax-cntnt .container-lg .px-content .Beats ul .purple {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Purple.webp");
}
.Plax-cntnt .container-lg .px-content .Beats ul .more {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D);
}

.Plax-beats-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: auto;
}
.Plax-beats-hero .container-lg {
  background-image: url(Assets/Parallax/Beats/Hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 95%;
  gap: 10px;
  height: 80%;
  border-radius: 20px;
}
.Plax-beats-hero .container-lg h1 {
  color: #ffffff;
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 60px;
}
@media (min-width: 960px) {
  .Plax-beats-hero .container-lg h1 {
    font-size: 190px;
    line-height: 140px;
  }
}

.Plax-beats-cntnt {
  display: flex;
  align-items: center;
}
.Plax-beats-cntnt .container-lg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: rgb(36, 36, 36);
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
  width: 80%;
  box-shadow: 10px 10px 10px rgba(65, 65, 65, 0.212);
}
.Plax-beats-cntnt .container-lg .info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.Plax-beats-cntnt .container-lg .info h2 {
  font-size: 80px;
  color: #F0A900;
}
.Plax-beats-cntnt .container-lg .info p {
  font-size: 20px;
  color: #ffffff;
  padding: 0 10%;
}
.Plax-beats-cntnt .container-lg ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 1 1 1 200px;
  gap: 40px;
  background-color: rgb(27, 27, 27);
  padding: 20px;
  border-radius: 20px;
}
@media (min-width: 960px) {
  .Plax-beats-cntnt .container-lg ul {
    gap: 20px;
  }
}
.Plax-beats-cntnt .container-lg ul li {
  background-color: rgb(0, 255, 149);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 35vh;
  width: 45vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(68, 61, 46, 0.192);
  transition: 0.7s ease;
}
@media (min-width: 960px) {
  .Plax-beats-cntnt .container-lg ul li {
    height: 30vh;
    width: 10vw;
  }
}
.Plax-beats-cntnt .container-lg ul li:hover {
  height: 35vh;
}
.Plax-beats-cntnt .container-lg ul li h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #ffffff;
}
.Plax-beats-cntnt .container-lg ul li button {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.438);
  font-size: 50px;
  cursor: pointer;
}
.Plax-beats-cntnt .container-lg ul li .dl-info h3 {
  font-size: 15px;
  color: #ffffff;
  margin: 5px 0;
}
.Plax-beats-cntnt .container-lg ul li .dl-info a {
  font-size: 15px;
  color: #009BCF;
}
.Plax-beats-cntnt .container-lg ul li .dl-info a:hover {
  color: #F0A900;
}
.Plax-beats-cntnt .container-lg ul .heat {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Heat.webp");
}
.Plax-beats-cntnt .container-lg ul .mini {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Mini.webp");
}
.Plax-beats-cntnt .container-lg ul .aqua {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Aqua.webp");
}
.Plax-beats-cntnt .container-lg ul .purple {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Purple.webp");
}
.Plax-beats-cntnt .container-lg ul .sumer {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Sumer.webp");
}
.Plax-beats-cntnt .container-lg ul .blu {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Blu.webp");
}
.Plax-beats-cntnt .container-lg ul .club {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Gas.webp");
}
.Plax-beats-cntnt .container-lg ul .heal {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Heal.webp");
}
.Plax-beats-cntnt .container-lg ul .vele {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Parallax/Vele.webp");
}

.Ab-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #0D0D0D), url("Assets/About/Heromob.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 65vh;
  width: auto;
}
@media (min-width: 960px) {
  .Ab-hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(15, 15, 15, 0.7607843137), #0D0D0D), url("Assets/About/Hero.webp");
  }
}
.Ab-hero .container-lg {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 10px;
}
.Ab-hero .container-lg .hero-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.Ab-hero .container-lg .hero-info h1 {
  background: linear-gradient(to right, #F0A900, #4600D6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color: transparent;
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 80px;
}
@media (min-width: 960px) {
  .Ab-hero .container-lg .hero-info h1 {
    line-height: 140px;
    font-size: 190px;
  }
}

.Ab-about {
  display: flex;
  align-items: center;
  width: auto;
  padding: 70px 0;
}
@media (min-width: 960px) {
  .Ab-about {
    padding: 70px 0;
  }
}
.Ab-about .container-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.Ab-about .container-sm .About-info {
  text-align: center;
}
.Ab-about .container-sm .About-info h2 {
  font-size: 35px;
  color: #F0A900;
  text-transform: uppercase;
}
.Ab-about .container-sm .About-info p {
  color: #ffffff;
  line-height: 15px;
  padding: 10px 20px;
  font-size: 15px;
}
@media (min-width: 960px) {
  .Ab-about .container-sm .About-info p {
    padding: 10px 300px;
  }
}
.Ab-about .container-sm #modalTrigger {
  cursor: pointer;
  border-radius: 20px;
  width: 400px;
}
@media (min-width: 960px) {
  .Ab-about .container-sm #modalTrigger {
    width: 900px;
  }
}
.Ab-about .container-sm .about-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: opacity 0.5s ease-in-out;
}
.Ab-about .container-sm .about-modal .close {
  color: #fbfbfe;
  position: absolute;
  top: 6%;
  right: 6%;
  font-size: 30px;
  cursor: pointer;
}
.Ab-about .container-sm .about-modal iframe {
  width: 60%;
  height: 60%;
  max-width: 800px;
  max-height: 450px;
  margin: auto;
  display: block;
  transform: translatey(30%);
}
.Ab-about .container-sm .abbtns .absvc {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: transparent;
  color: #F0A900;
}
.Ab-about .container-sm .abbtns .absvc:hover {
  background-color: #F0A900;
  color: #0D0D0D;
}
.Ab-about .container-sm .abbtns .abcts {
  border: 1px solid #F0A900;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: #F0A900;
  color: #0D0D0D;
}
.Ab-about .container-sm .abbtns .abcts:hover {
  background-color: transparent;
  color: #F0A900;
}

.Ab-clients {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.Ab-clients .container-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Ab-clients .container-lg h2 {
  font-size: 80px;
  line-height: 80px;
  color: #F0A900;
  text-transform: uppercase;
}
.Ab-clients .container-lg .cont {
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
  margin: 10px 0px;
}
@media (min-width: 960px) {
  .Ab-clients .container-lg .cont {
    margin: 70px;
  }
}
.Ab-clients .container-lg .cont img {
  padding: 7px;
}
.Ab-clients .container-lg .elfsight-app-4fb060ab-8e2d-4177-a00d-5a5ac1b7342d {
  margin: 0 50px;
}

.Cts-hero {
  position: relative;
  padding-bottom: 10%; /* for 16:9 aspect ratio */
  overflow: hidden;
}
.Cts-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.Cts-hero .container-sm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 10vh;
}
.Cts-hero .container-sm .cts-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Cts-hero .container-sm .cts-card .cts-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 25vh;
  width: 85%;
  gap: 10px;
  padding: 50px;
  background-image: linear-gradient(to right top, white, #ffffff);
  box-shadow: 15px 15px 30px rgb(32, 32, 32);
  border-radius: 35px 35px 0 0;
}
.Cts-hero .container-sm .cts-card .cts-details .cts-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.Cts-hero .container-sm .cts-card .cts-details .cts-logo img {
  max-width: 150px;
}
.Cts-hero .container-sm .cts-card .cts-details h2 {
  color: #F0A900;
  font-size: 35;
  text-transform: uppercase;
  font-weight: 900;
  padding: 20px 0;
  border-top: 1px solid #F0A900;
  letter-spacing: 5px;
  text-align: center;
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card .cts-details h2 {
    font-size: 35px;
    text-align: left;
    line-height: 30px;
  }
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card .cts-details {
    border-radius: 35px 0 0 35px;
    width: 100%;
    height: 80vh;
    gap: 200px;
  }
}
.Cts-hero .container-sm .cts-card form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px;
  height: 40vh;
  width: 85%;
  background-image: linear-gradient(to right top, #2b2b2b, #0D0D0D);
  box-shadow: 15px 15px 30px rgb(32, 32, 32);
  border-radius: 0 0 35px 35px;
}
.Cts-hero .container-sm .cts-card form P {
  padding: 5px 3px;
  margin: 5px 0;
  border-radius: 5px;
  border: none;
}
.Cts-hero .container-sm .cts-card form P label {
  color: #ffffff;
}
.Cts-hero .container-sm .cts-card form button {
  font-size: 15px;
  padding: 0.2em 2.7em;
  margin: 0 0.5em;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid #F0A900;
  background: linear-gradient(to right, rgba(253, 200, 27, 0.1) 1%, transparent 40%, transparent 60%, rgba(253, 212, 27, 0.1) 100%);
  color: #F0A900;
  box-shadow: inset 0 0 10px rgba(253, 238, 27, 0.4), 0 0 9px 3px rgba(249, 253, 27, 0.1);
}
.Cts-hero .container-sm .cts-card form button:hover {
  color: #fff382;
  box-shadow: inset 0 0 10px rgba(253, 219, 27, 0.6), 0 0 9px 3px rgba(253, 230, 27, 0.2);
}
.Cts-hero .container-sm .cts-card form button:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(253, 212, 27, 0.1) 40%, rgba(253, 219, 27, 0.1) 60%, transparent 100%);
}
.Cts-hero .container-sm .cts-card form button:hover::before {
  transform: translateX(15em);
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card form {
    border-radius: 0 35px 35px 0;
    width: 100%;
    height: 80vh;
  }
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card {
    flex-direction: row;
  }
}
.Cts-hero .container-sm .other-cts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  gap: 50px;
}
.Cts-hero .container-sm .other-cts .sm-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  margin: auto;
  gap: 90px;
  background-color: rgb(255, 255, 255);
  box-shadow: 15px 15px 40px rgb(31, 31, 31);
  border-radius: 35px;
  background-image: linear-gradient(to right top, #373d02, #F0A900);
  transition: 0.7s ease;
}
.Cts-hero .container-sm .other-cts .sm-icons > * {
  transition: inherit;
}
.Cts-hero .container-sm .other-cts .sm-icons a {
  background-color: #009BCF;
  border-radius: 35px;
  padding: 5px;
}
.Cts-hero .container-sm .other-cts .sm-icons a i {
  color: rgb(255, 255, 255);
}
.Cts-hero .container-sm .other-cts .sm-icons a:hover {
  background-color: white;
}
.Cts-hero .container-sm .other-cts .sm-icons a:hover i {
  color: #009BCF;
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .other-cts {
    width: 55%;
  }
}