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

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

body {
  background: #010101;
  font-family: Poppins;
  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: #bbfff4;
  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;
}
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: #10D87D;
}
@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 {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.3em 2em;
  margin: 0 0.5em;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}
header .Nav-btn:hover {
  background-position: right top;
}
header .Nav-btn:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
}
header .Nav-btn:hover::before, header .Nav-btn button:hover::after {
  transform: scale(0);
}
header .Nav-btn:hover {
  box-shadow: inset 0px 0px 25px #1479EA;
}
@media (prefers-reduced-motion: reduce) {
  header .Nav-btn .btn-donate {
    transition: linear;
  }
}
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: #010101;
  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: 50%;
}
@media (min-width: 960px) {
  header .Navlinks-sm-open {
    display: none;
  }
}
header .Navlinks-sm-open .Nbtn-mobl {
  font-size: 25px;
  background: linear-gradient(to bottom, #ffd700, #ffd700 50%, #e5ac00 50%, #e5ac00);
}
header .Navlinks-sm-open .Nbtn-mobl:hover {
  background: linear-gradient(to bottom, #e5ac00, #e5ac00 50%, #ffd700 50%, #ffd700);
  color: #010101;
}

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

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

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

footer {
  background-image: linear-gradient(#010101, #010101, 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: 50px 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: #bbfff4;
  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: #bbfff4;
}
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: #bbfff4;
}
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;
  margin: 10px 0;
}
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 #bbfff4;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: #bbfff4;
  color: #010101;
}
footer .container-lg .quk-links .ctc-info .btns a:hover {
  background-color: transparent;
  color: #bbfff4;
}
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: 70px;
  box-shadow: 15px 15px 40px rgb(31, 31, 31);
  border-radius: 35px;
  border: 2px Solid #bbfff4;
  transition: 0.7s ease;
}
footer .container-lg .quk-links .sm-icons > * {
  transition: inherit;
}
footer .container-lg .quk-links .sm-icons a {
  background-color: #bbfff4;
  border: 2px Solid #bbfff4;
  border-radius: 35px;
  padding: 5px;
}
footer .container-lg .quk-links .sm-icons a i {
  color: #010101;
}
footer .container-lg .quk-links .sm-icons a:hover {
  background-color: transparent;
}
footer .container-lg .quk-links .sm-icons a:hover i {
  color: #bbfff4;
}
footer .copyright {
  color: #ffffff;
  font-size: 15px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 2px solid #bbfff4;
}
footer .copyright a {
  color: #ffffff;
}
footer .copyright a:hover {
  color: #bbfff4;
}

.Hm-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #010101), url("Assets/Home/Heromob.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  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(255, 255, 255, 0), #010101), url("Assets/Home/Hero.webp");
  }
}
.Hm-hero .container-lg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 10px;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg {
    display: flex;
    flex-direction: row;
  }
}
.Hm-hero .container-lg .heading h1 {
  background: linear-gradient(to right, #bbfff4, #19ffe0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 75px;
  text-transform: uppercase;
  line-height: 60px;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg .heading h1 {
    font-size: 120px;
    line-height: 90px;
  }
}
.Hm-hero .container-lg .heading .autou {
  background: linear-gradient(to right, #10D87D, blue);
  -webkit-background-clip: text;
  background-clip: text;
}
.Hm-hero .container-lg .heading p {
  font-size: 25px;
  color: #ffffff;
  margin: 20px 50px 0px 20px;
  padding-left: 30px;
  border-left: 1px solid #bbfff4;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg .heading p {
    margin: 20px 500px 0px 20px;
  }
}
.Hm-hero .container-lg .btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0px;
  gap: 10px;
}
@media (min-width: 960px) {
  .Hm-hero .container-lg .btns {
    flex-direction: column;
  }
}
.Hm-hero .container-lg .btns a {
  padding: 5px 70px;
}
.Hm-hero .container-lg .btns .stbtn {
  border: 1px solid #bbfff4;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: #bbfff4;
  color: #010101;
  width: 20vw;
  text-align: center;
}
.Hm-hero .container-lg .btns .stbtn:hover {
  background-color: transparent;
  color: #bbfff4;
}
.Hm-hero .container-lg .btns .ndbtn {
  border: 1px solid #bbfff4;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: transparent;
  color: #bbfff4;
  width: 20vw;
  text-align: center;
}
.Hm-hero .container-lg .btns .ndbtn:hover {
  background-color: #bbfff4;
  color: #010101;
}

.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: #bbfff4;
  text-transform: uppercase;
}
.Hm-about .container-sm .About-info p {
  color: #ffffff;
  line-height: 15px;
  padding: 10px 0px;
  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 a {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.3em 2em;
  margin: 0 0.5em;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}
.Hm-about .container-sm a:hover {
  background-position: right top;
}
.Hm-about .container-sm a:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
}
.Hm-about .container-sm a:hover::before, .Hm-about .container-sm a button:hover::after {
  transform: scale(0);
}
.Hm-about .container-sm a:hover {
  box-shadow: inset 0px 0px 25px #1479EA;
}
@media (prefers-reduced-motion: reduce) {
  .Hm-about .container-sm a .btn-donate {
    transition: linear;
  }
}

.Hm-servcs {
  display: flex;
  align-items: center;
  width: auto;
  align-items: center;
  justify-content: center;
}
.Hm-servcs .container-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.Hm-servcs .container-sm .Services-info {
  text-align: center;
}
.Hm-servcs .container-sm .Services-info h1 {
  font-size: 35px;
  color: #bbfff4;
}
@media (min-width: 960px) {
  .Hm-servcs .container-sm .Services-info h1 {
    font-size: 75px;
    text-transform: uppercase;
    padding: 0 200px;
  }
}
.Hm-servcs .container-sm .Services-info p {
  color: #ffffff;
  margin: 20px 0px;
  line-height: 15px;
}
@media (min-width: 960px) {
  .Hm-servcs .container-sm .Services-info p {
    margin: 20px 200px;
  }
}
.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;
  scrollbar-color: var(--txt-cl) transparent;
  width: 85%;
  box-sizing: border-box;
  margin: 50px 0px;
}
.Hm-servcs .container-sm .Service-menu .servi {
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  justify-content: end;
  padding: 20px 20px 40px 20px;
  border: 1px solid rgba(0, 225, 255, 0.1450980392);
  border-radius: 30px;
  box-shadow: inset 0px -300px 100px #010101;
  transition: 0.6s ease;
  cursor: pointer;
}
.Hm-servcs .container-sm .Service-menu .servi:hover {
  height: 490px;
  border: 1px solid rgba(0, 225, 255, 0.6784313725);
  border-radius: 20px;
  box-shadow: inset 0px -200px 100px #010101;
}
.Hm-servcs .container-sm .Service-menu .servi h3 {
  font-size: 30px;
  line-height: 25px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 10px 0px;
}
.Hm-servcs .container-sm .Service-menu .servi p {
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0px 0px 0px 10px;
  border-left: 2px solid #19ffe0;
}
.Hm-servcs .container-sm .Service-menu #service1 {
  background-image: url(Assets/Home/WS.webp);
}
.Hm-servcs .container-sm .Service-menu #service2 {
  background-image: url(Assets/Home/Door.webp);
}
.Hm-servcs .container-sm .Service-menu #service3 {
  background-image: url(Assets/Home/Cabslider.webp);
}
.Hm-servcs .container-sm .Service-menu #service4 {
  background-image: url(Assets/Home/Quater.webp);
}
.Hm-servcs .container-sm .Service-menu #service5 {
  background-image: url(Assets/Home/Vent.webp);
}
.Hm-servcs .container-sm .Service-menu #service6 {
  background-image: url(Assets/Home/Solidglass.webp);
}

.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, #10D87D, #bbfff4);
  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: 40px;
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card .cts-details .cts-logo img {
    max-width: 150px;
  }
}
.Cts-hero .container-sm .cts-card .cts-details .cts-logo .cts-h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  margin: 10px 0;
  border-top: 2px solid #bbfff4;
}
.Cts-hero .container-sm .cts-card .cts-details .cts-logo .cts-h1 h1 {
  font-size: 18px;
  line-height: 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card .cts-details .cts-logo .cts-h1 h1 {
    font-size: 35px;
    line-height: 26px;
  }
}
.Cts-hero .container-sm .cts-card .cts-details h2 {
  color: transparent;
  -webkit-text-stroke: 0.3px rgb(255, 255, 255);
  font-size: 35;
  text-transform: uppercase;
  font-weight: 900;
  padding: 20px 0;
  border-top: 1px solid #bbfff4;
  letter-spacing: 5px;
  text-align: center;
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .cts-card .cts-details h2 {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    font-size: 35px;
    text-align: left;
  }
}
@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, #010101);
  box-shadow: 15px 15px 30px rgb(32, 32, 32);
  border-radius: 0 0 35px 35px;
}
.Cts-hero .container-sm .cts-card form .form-group .form-row input {
  padding: 5px 3px;
  margin: 5px 0;
  border-radius: 5px;
  border: none;
}
.Cts-hero .container-sm .cts-card form textarea {
  padding: 5px 5px;
  border-radius: 5px;
  border: none;
}
.Cts-hero .container-sm .cts-card form button {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.3em 2em;
  margin: 0 0.5em;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow: 0px 0px 20px rgba(71, 184, 255, 0.5), 0px 5px 5px -1px rgba(58, 125, 233, 0.25), inset 4px 4px 8px rgba(175, 230, 255, 0.5), inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}
.Cts-hero .container-sm .cts-card form button:hover {
  background-position: right top;
}
.Cts-hero .container-sm .cts-card form button:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow: 0 0 0 3px var(--btn-bg-color), 0 0 0 6px var(--btn-bg-2);
}
.Cts-hero .container-sm .cts-card form button:hover::before, .Cts-hero .container-sm .cts-card form button button:hover::after {
  transform: scale(0);
}
.Cts-hero .container-sm .cts-card form button:hover {
  box-shadow: inset 0px 0px 25px #1479EA;
}
@media (prefers-reduced-motion: reduce) {
  .Cts-hero .container-sm .cts-card form button .btn-donate {
    transition: linear;
  }
}
@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, #10D87D, #bbfff4);
  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: #10D87D;
  border-radius: 35px;
  padding: 5px;
}
.Cts-hero .container-sm .other-cts .sm-icons a i {
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 5px;
}
.Cts-hero .container-sm .other-cts .sm-icons a i p {
  font-size: 10px;
}
.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: #10D87D;
}
@media (min-width: 960px) {
  .Cts-hero .container-sm .other-cts {
    width: 55%;
  }
}