/*Main Css */
html {
  scroll-behavior: smooth;
}
::selection {
  background: #bdd100;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #bdd100;
}

/* Tabbing CSS */

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

/* Accordion CSS */

.myaccordion li .faq-opt {
  display: none;
}

.myaccordion li.active .faq-opt {
  display: block;
}

.myaccordion li.active .faq-ang h4:before {
  content: "\f077";
}

body {
  font-family: 'TT Firs Neue';
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-color: #080808;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'TT Firs Neue';
  display: block;
  font-weight: bold;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
}

a:hover {
  color: #bdd100;
}

span {
  display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
  background: transparent;
  border: none;
  border-radius: 0px;
   font-family: 'TT Firs Neue';
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */

.pad-sec {
}

.pad-zero {
  padding: 0px;
}

.pad-l-zero {
  padding-left: 0px;
}

.pad-r-zero {
  padding-right: 0px;
}

.ovr-hiddn {
  overflow: hidden;
}

.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
}

/* Heading Classes */

.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}

.hding-2 h2 {
}

.hding-3 h3 {
}

.hding-4 h4 {
}

.hding-5 h5 {
}

.hding-6 h6 {
}

.para {
}

.highlighted {
  color: #bdd100;
}

/* Custom Slick Css */

.slick-list {
  margin: 0 -15px;
}

.slick-slide {
  margin: 0 15px;
}

.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}

.slick-dots li {
  margin: 0 20px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  padding: 0px;
  background: #d6d6d6;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #f3c919;
  width: 11px;
  height: 11px;
}

.btn-menu-toggle.btn-menu-toggle-active {
  background-color: #fff;
}
.btn-menu-toggle.btn-menu-toggle-active svg path {
  fill: #000;
}

.header-navigation {
  position: fixed;
  left: 0;
  right: 0;
  height: 100vh;
  top: -300%;
  background-color: #1a1a1a;
  z-index: 8;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.75s ease-in-out;
}

.header-navigation-active {
  top: 0;
}
.main-header {
  position: relative;
  z-index: 9;
}
.header-navigation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
.header-nav-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-nav-link {
  font-size: 4.5rem;
  color: #ccc;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #ccc, #ccc);
  background-size: 100% 5px;
  background-position: left bottom;
  background-origin: content-box;
  background-repeat: no-repeat;
  font-family: 'TT Firs Neue';
  font-weight: bold;
  transition: none;
}
.header-nav-link span {
  font-size: 12px;
  vertical-align: top;
  color: #666666;
}
.header-nav-line {
  height: 4px;
  width: 108px;
  background-color: #666;
}
.header-nav-link:hover {
  color: #bdd100;
  background-image: linear-gradient(to right, #bdd100, #bdd100);
}

/*header css*/

header {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  padding: 20px 5rem;
}

.header-left-link {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.header-left-link:hover {
  color: #fff;
  text-decoration: underline;
}
.header-left {
  gap: 2.5rem;
  display: flex;
  align-items: center;
}
.header-left-oblique {
  font-size: 12px;
  color: #666;
}
.logo img {
  max-width: 90px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.header-menu a {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.header-menu a:hover {
  text-decoration: underline;
}
.header-menu > li:not(:first-child) {
  padding-left: 2.5rem;
}
.header-right {
}
.header-menu > li {
  display: inline-block;
}
.header-btn {
  color: #fff;
  background-color: #bdd100;
  padding: 16px 30px;
  flex-shrink: 0;
}

.header-btn:hover {
  color: #fff;
}
.btn-menu-toggle svg path {
  fill: #fff;
}
.btn-menu-toggle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.btn-menu-toggle:hover {
  background-color: #fff;
}
.btn-menu-toggle:hover svg path {
  fill: #000;
}

.main-header {
}

.logo {
  display: inline-block;
}

.logo img {
  display: block;
}

/* Home CSS */

.home-hero {
  min-height: calc(100vh - 6.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hh-heading {
  font-size: 100px;
}
.hh-scroll-anchor {
  color: #bdd100;
  background-image: linear-gradient(to right, #bdd100, #bdd100);
  background-repeat: no-repeat;
  background-position: 0.05em bottom;
  background-origin: border-box;
  background-size: 100% 8px;
}
.hh-video-trigger {
  color: #666;
  font-size: 13px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-right: 0;
  max-width: 126px;
  vertical-align: top;
  margin-top: 10px;
}
.hh-video-trigger video {
  width: 100%;
}

.home-reel {
  padding: 0 5rem;
}
.home-reel-wrapper {
  position: relative;
}
.home-reel-wrapper video {
  width: 100%;
}
.hr-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.home-intro {
  margin-top: 10rem;
}
.home-intro-wrapper {
  max-width: 52.5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-copy {
  font-size: 24px;
  line-height: 2;
}

.main-copy i {
  font-style: italic;
}

.main-copy-sub {
  color: #666;
  font-size: 12px;
  padding-right: 2.5rem;
  text-transform: uppercase;
}
.main-video-copy {
  width: 100%;
  max-width: 56px;
}
.main-copy-highlight {
  color: #bdd100;
  display: inline;
}

.main-copy-link {
  font-size: inherit;
  text-decoration: underline;
  color: inherit;
  text-decoration-thickness: 2px;
  display: inline;
}
.main-copy-link-super {
  color: #666;
  font-size: 12px;
  vertical-align: top;
}
.btns-wrapper {
  padding-top: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.btn-primary-solid {
  width: 100%;
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #bdd100;
  height: 60px;
  padding: 0 15px;
  color: #fff;
  text-transform: uppercase;
}
.btn-secondary-outline {
  width: 100%;
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 15px;
  color: #fff;
  border: 2px solid #666;
  text-transform: uppercase;
}
.btn-primary-solid:hover {
  color: #fff;
  background-color: #95a503;
}
.btn-secondary-outline:hover {
  color: #fff;
  border-color: #a2a2a2;
}

.home-clients-marquee {
  margin: 9.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
}

.hc-marquee-wrapper {
  animation: about-marquee-animation 20s linear 0s infinite;
  animation-direction: normal;
  display: flex;
  flex: 0 0 auto;
}
.hc-marquee-wrapper img {
  margin-left: 12rem;
width: 180px;
}

.home-projects {
  padding: 0 5rem;
  margin-bottom: 10rem;
}
.h-project-box-anchor {
  display: block;
}
.h-project-box-img img {
  width: 100%;
}
.h-project-box-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  gap:30px;
}
.h-project-box-body h3 {
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}
.h-project-box-body span {
  color: #666;
  font-size: 12px;
  line-height: normal;
}

.home-selected-projects-text h2 {
  color: #666;
  font-size: 26px;
}
.home-selected-projects-text h2 svg {
  transform: rotate(135deg);
}
.home-selected-projects-text {
  margin-top: 8rem;
  margin-bottom: 13rem;
}

.h-projects-row-spacer {
  margin-top: 6rem;
}
.h-project-box-spacer-top {
  margin-top: 7.5rem;
}

.btns-wrapper-center {
  justify-content: center;
}

.btns-wrapper-projects {
  margin-top: 10rem;
}

.hr-line-divider {
  border-color: #1a1a1a;
  height: 1px;
}

.home-about {
  margin-top: 9rem;
  padding: 0 5rem;
}

.home-about-img {
  margin-top: 18rem;
}

.home-about h2 {
  font-size: 70px;
  margin-bottom: 1.25rem;
}
.home-about h2 span {
  color: #bdd100;
}
.main-copy-sub-up {
  vertical-align: top;
}
.main-copy-sub-nospace {
  padding-right: 0;
}

.sub-copy {
  color: #a6a6a6;
  font-size: 14px;
  line-height: 2;
}
.sub-copy .sub-copy-link {
  color: #bdd100;
  text-decoration: underline;
}

.home-awards-marquee {
  margin: 9.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
}

.awards-marquee-wrapper {
  animation: about-marquee-animation 20s linear 0s infinite;
  animation-direction: normal;
  animation-direction: reverse;
  display: flex;
  flex: 0 0 auto;
}
.awards-marquee-wrapper img {
  margin-right: 12rem;
 width: 180px;
}

.home-clients {
  margin: 9rem 0;
}

.home-clients {
  margin: 9rem 0;
}
.home-clients h2 {
  color: #fff;
  font-size: 70px;
  text-align: center;
}
.home-clients .sub-copy {
  text-align: center;
}
.testimonials-wrapper {
  margin-top: 3.5rem;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-box p {
  font-size: 24px;
  color: #a6a6a6;
  font-style: italic;
  line-height: 2;
}
.testimonial-box p span {
  font-size: 12px;
  color: #666;
  font-style: normal;
  margin-right: 15px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.testimonial-user img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.testimonial-user h5 {
  font-size: 16px;
  padding-bottom: 10px;
}

.testimonial-user h6 {
  color: #666;
}
.testimonial-user::before {
  content: "";
  background-color: #bdd100;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 4.5rem;
}

.btn-testimonial-next {
  color: #fff;
  font-size: 12px;
}
.btn-testimonial-next svg {
  width: 12px;
  vertical-align: bottom;
  margin-right: 5px;
}

.gallery-box p {
  color: #666;
  font-size: 12px;
  padding: 15px 0;
}

.swiper-gallery.swiper-wrapper .swiper-slide:first-of-type {
  margin-left: 5rem;
}
.swiper-gallery .swiper-slide {
  /*max-width: 75vw;*/
  width:auto;
}
.swiper-gallery .swiper-slide {
  margin-right: 60px;
}
/* .gallery-box {
  height: 70vh;
} */
/*.gallery-box-img {*/
/*  max-height: 70vh;*/
/*  aspect-ratio: 1260 / 740;*/
/*}*/

.gallery-box img {
  height: 666px;
  /*object-fit: cover;*/
  width: auto;
}

.swiper-pagination-bullets {
  line-height: 0;
  bottom: 0px !important;
}
.swiper-pagination-bullet {
  height: 0.125rem;
  margin: 0px !important;
  border: medium;
  border-radius: unset;
  background: #292929;
  opacity: 1;
  width: clamp(1rem, 10%, 4rem);
}
.swiper-pagination-bullet-active {
  background: #666;
}
.swiper {
  padding-bottom: 25px;
}

footer {
  padding: 5rem 5rem;
}
.footer-cta {
  text-align: center;
  margin: 20vh 0px 30vh;
}
.footer-cta h2 {
  font-size: 70px;
}
.footer-cta a {
  font-size: 70px;
  color: #bdd100;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 6px;
}
.footer-cta a svg {
  height: 50px;
  width: 60px;
}

.footer-cta a span {
  color: #666;
  font-size: 12px;
  vertical-align: top;
  margin-top: 10px;
  letter-spacing: normal;
}




.footer-split-links {
  font-size: 0;
}
.footer-split-links > li {
  /* display: inline-flex; */
  vertical-align: top;
  /* width: 50%; */
  padding: 0 15px;
  height: 25vh;
  align-items: center;
  justify-content: center;
}
.footer-split-links p {
  font-size: 28px;
  text-align: center;
}
.footer-split-links p a {
  color: #bdd100;
  text-decoration: underline;
}
.footer-split-links p a span {
  color: #666;
  font-size: 18px;
  vertical-align: top;
}

.footer-copyright {
  font-size: 12px;
}

.back-to-top-btn {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 12px;
}
.back-to-top-btn svg {
  vertical-align: middle;
  transform: rotate(-90deg);
}
.footer-terms {
  text-align: right;
}
.footer-terms a {
  color: #fff;
  font-size: 12px;
}

/* about css */

.about-hero {
  height: 1500px;
  margin-top: 6rem;
  margin-bottom: 12rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-hero-media {
  position: relative;
  width: 100vw;
  height: 100%;
}

.ah-media-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  height: 100%;
}
.ab-media-wrapper-animation {
  position: relative;
  display: flex;
  flex: 0 0 auto;
}

.ab-media-wrapper-animation {
  animation: about-marquee-animation 80s linear 4s infinite;
  animation-direction: normal;
}

@keyframes about-marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ab-media-wrapper-inner {
  width: 190vw;
}
.ab-mwi-01 {
  top: 50%;
  left: -2%;
  height: auto;
  overflow: hidden;
  width: 18.125rem;
}
.ab-media-wrapper-inner .div {
  position: absolute;
}
.ab-media-wrapper-inner > div {
  position: absolute;
}
.ab-mwi-02.ab-mwi-text {
  top: 90%;
  left: 6%;
  text-transform: uppercase;
}
.ab-mwi-text::before {
  position: absolute;
  top: calc(0.5rem * -1);
  content: "";
  height: 2px;
  width: 40px;
  background-color: white;
  text-transform: uppercase;
}
.ab-mwi-text span {
  font-size: 3rem;
}
.ab-mwi-text p {
  font-size: 12px;
  color: #666;
}
.ab-mwi-text {
  transform: translateY(-100%) rotate(-90deg);
}
.ab-mwi-03 {
  top: 0%;
  left: 11%;
  width: 25rem;
}
.ab-mwi-04 {
  bottom: 0%;
  left: 26%;
  width: 18.125rem;
}
.ab-mwi-05 {
  top: 80px;
  left: 34%;
  width: 15rem;
}
.ab-mwi-06.ab-mwi-text {
  top: 29%;
  left: 40%;
}
.ab-mwi-07 {
  top: 40%;
  left: 39%;
  width: 25rem;
}
.ab-mwi-08.ab-mwi-text {
  top: 73%;
  left: 43%;
}
.ab-mwi-09 {
  top: 0%;
  left: 61%;
  width: 18.125rem;
}
.ab-mwi-10 {
  bottom: 0%;
  left: 66%;
  width: 25rem;
}
.ab-mwi-11.ab-mwi-text {
  top: 8%;
  left: 80%;
}
.ab-mwi-12 {
  top: 30%;
  left: 80%;
  width: 15rem;
}
.ab-mwi-13.ab-mwi-text {
  bottom: 1%;
  left: 85%;
}

.about-hero-text h1 {
  /*font-size: 260px;*/
  font-size: 360px;
  text-align: center;
  line-height: 0.85;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-hero-text-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 2.5px;
}

.about-img-caption h6 {
  font-size: 12px;
  padding-top: 10px;
  font-family: "Maison Neue";
}
.about-img-caption h6 span {
  color: #666;
}
.about-gallery {
  margin-top: 10rem;
}

.about-team {
  margin-top: 10rem;
}
.about-team h2 {
  font-size: 70px;
  text-align: center;
  padding-bottom: 35px;
}

.about-ceo-words {
  margin-left: 5rem;
  margin-right: 5rem;
}

.image-with-caption p {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  padding-top: 10px;
}

.image-with-caption p {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  padding-top: 10px;
}
.about-ceo-box {
  margin-top: 10rem;
}
.about-ceo-box svg path {
  color: #666;
}
.about-ceo-box p {
  padding-top: 25px;
  font-size: 14px;
  color: #a6a6a6;
  line-height: 2;
  font-style: italic;
  padding-bottom: 15px;
}
.about-ceo-img {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 25px;
  position: relative;
}
.about-ceo-img::before {
  content: "";
  background-color: #bdd100;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 4rem;
  height: 2px;
}
.about-ceo-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.about-ceo-img h6 {
  font-size: 12px;
  font-family: "Maison Neue";
}
.about-ceo-img h6 span {
  color: #666;
}

.image-with-caption.about-ceo-img-right {
  margin-top: -5rem;
}
.image-with-caption.about-ceo-img-left {
  margin-top: 20rem;
}

.about-process {
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 10rem;
}
.about-process h2 {
  text-align: center;
  font-size: 42px;
}

.about-process-box {
  max-width: calc(100% - 100px);
  height: 100vh;
  display: flex;
  align-items: center;
}

.about-process-box-content h3 {
  font-size: 70px;
  padding-bottom: 25px;
}
.about-process-box-content p {
  color: #a6a6a6;
  line-height: 2;
  padding-bottom: 25px;
}
.about-process-box-content {
  padding-right: 50px;
}
.about-process-box-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 35px;
  position: relative;
  margin-bottom: 15px;
}
.about-process-box-flex img {
  width: 100px;
}
.about-process-box-flex h5 {
  font-size: 14px;
  line-height: normal;
}
.about-process-box-flex h6 {
  font-size: 12px;
  color: #a6a6a6;
}
.about-process-box-content a svg {
  transform: rotate(90deg);
  vertical-align: middle;
  width: 12px;
}
.about-process-box-content a {
  color: #fff;
  font-size: 12px;
}
.about-process-box-flex::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #292929;
}

.about-process-pagination a {
  border-left: 2px solid #666;
  height: 2rem;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  text-align: center;
  color: #666;
  font-size: 12px;
}
.about-process-pagination .active a {
  color: #fff;
  border-color: #bdd100;
}
.about-process-pagination > li:not(:first-child) {
  padding-top: 15px;
}
.about-process-pagination-wrapper {
  height: 100vh;
  position: sticky;
  top: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.about-process-wrapper-main {
  display: flex;
  align-items: flex-start;
}

.about-after-process-media {
  margin-left: 5rem;
  margin-right: 5rem;
}
.image-with-caption.about-after-media-left {
  margin-top: 10rem;
}

.about-img-wide {
  margin-top: 9rem;
}

.about-img-wide img {
  width: 100%;
}

.about-our-offices {
  margin-top: 6rem;
}
.about-our-offices h2 {
  font-size: 70px;
  text-align: center;
  padding-bottom: 25px;
}

.about-hero-text {
  background-image: linear-gradient(rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0.75));
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  justify-content: center;
}

.footer-contact .footer-cta {
  display: none;
}
.footer-contact .footer-split {
  display: none;
}

.contact-form-wrapper {
  margin-top: 5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.contact-us-form {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.contact-us-form h1 {
  font-size: 90px;
  text-align: center;
  padding-bottom: 25px;
}
.contact-us-form p {
  text-align: center;
  font-size: 12px;
}
.contact-us-form a {
  color: #bdd100;
  text-transform: uppercase;
}
.contact-form-field {
  padding-bottom: 25px;
}
.contact-form-field label {
  text-transform: uppercase;
  font-size: 12px;
  color: #a6a6a6;
  padding-bottom: 10px;
}
.contact-form-field input {
  background-color: #1a1a1a;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  color: #fff;
}
.contact-form-field textarea {
  background-color: #1a1a1a;
  display: block;
  width: 100%;
  height: 180px;
  color: #fff;
  padding: 15px 10px;
}
.contact-form-submit {
  background-color: #bdd100;
  width: 100%;
  height: 55px;
  color: #fff;
}

.contact-locations .container {
  max-width: 640px;
}
.contact-locations h2 {
  font-size: 48px;
  text-align: center;
  padding-bottom: 50px;
}
.contact-locations-list > li {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #292929;
}
.contact-locations-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clb-left h4 {
  font-size: 14px;
  padding-bottom: 15px;
}
.clb-left p {
  font-size: 14px;
  color: #a6a6a6;
  line-height: normal;
}
.clb-left {
  max-width: 70%;
}
.clb-right {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 15px;
}
.clb-right a {
  width: 50px;
  height: 50px;
  background-color: #292929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.clb-right a:hover {
  background-color: #bdd100;
  color: #fff;
}
.contact-locations {
  margin-bottom: 10rem;
}

.why-rad-hero {
  height: calc(100vh - 10rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.why-rad-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.why-rad-hero-wrapper h1 {
 font-size: 260px;
  letter-spacing: -0.7rem;
}
.why-rad-hero-text-left {
  transform: translate3d(-28%, 0px, 0px);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-stroke-width: 2.5px;
}
.why-rad-hero-text-right {
  transform: translate3d(28%, 0px, 0px);
}
.why-rad-hero-circle {
  width: 15rem;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #bdd100;
  border-radius: 50%;
  position: relative;
}
.why-rad-hero-list > li:not(last-child) {
  padding-top: 10px;
}
.why-rad-hero-list > li {
  font-size: 12px;
  text-transform: uppercase;
}

.why-rad-hero-list > li span {
  text-decoration: underline;
}
.why-rad-hero-outer-text {
  font-size: 12px;
  color: #bdd100;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 500;
}

.why-rad-dividider-text {
  margin-left: 5rem;
  margin-right: 5rem;
  margin-bottom: 9rem;
}
.why-rad-divider-box {
  height: 22.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-rad-divider-box h5 {
  font-size: 28px;
  color: #fff;
}
.why-rad-divider-box h5:hover {
  color: #bdd100;
  text-decoration: underline;
}
.why-rad-divider-box h5 sup {
  font-size: 14px;
  vertical-align: bottom;
  color: #bdd100;
  margin-right: 15px;
}

.why-rad-divider-box.why-rad-divider-box-middle {
  border-left: 1px solid #292929;
  border-right: 1px solid #292929;
}

.about-ateam {
  margin-top: 7rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
.about-ateam h2 {
  font-size: 70px;
  margin-bottom: 1.25rem;
}

.img-wide-section {
  margin-top: 9rem;
}

.about-rad-mindset {
  margin-top: 9rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
.about-rad-mindset h2 {
 font-size: 70px;
  padding-bottom: 25px;
}

.about-ceo-words.about-ceos-words-abt-rad {
  margin-top: 7rem;
}

.why-rad-hero-list {
  text-align: center;
}

.services-hero {
  height: calc(100vh - 9rem);
  display: flex;
  align-items: center;
}
.services-hero h1 {
  font-size: 110px;
  text-align: center;
}
.services-hero-video-looper {
  width: 100%;
  max-width: 130px;
  vertical-align: middle;
}

.services-hero h1 strong {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 2.5px;
}
.services-hero h1 span svg {
  width: 1.875rem;
  height: 8.125rem;
}

.services-hero h1 span {
  display: inline-flex;
  align-items: center;
}


.services-list-images>li{
    display:none;
}

.services-page-service-list {
  margin-bottom: 9rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
.services-list {
  font-size: 0;
}
.services-list > li {
  border-top: 1px solid #292929;
}
.services-list a {
  padding: 2rem;
  position: relative;
  width: 100%;
  font-size: 24px;
  color: #fff;
}
.services-list a span {
  color: #bdd100;
  font-size: 12px;
  margin-right: 15px;
}
.services-list a:hover {
  background-color: #1a1a1a;
  padding-left: 3.5rem;
}

.service-info-template {
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 9rem;
}

.service-info-template h2 {
  font-size: 60px;
  padding-bottom: 25px;
}

.service-template-portfolio {
  margin-left: 5rem;
  margin-right: 5rem;
}
.service-portfolio-box img {
  width: 100%;
}
.service-portfolio-box-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 10px;
}
.service-portfolio-box-body h5 {
 font-size: 20px;
}
.service-portfolio-box-body h6 {
  color: #666666;
  font-size: 12px;
}

.sub-copy-heading {
  color: #666;
  font-size: 13px;
  margin-bottom: 0.75rem;
}
.why-rad-mobile {
  display: none;
}

.works-hero {
  height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-hero h1 {
 font-size: 130px;
  text-align: center;
}

.works-hero h1 strong {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 2.5px;
}
.works-hero span {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  height: 130px;
  width: 240px;
}


.works-alternating-img {
  max-width: 180px;
}

.works-project-section {
  padding-left: 5rem;
  padding-right: 5rem;
}


.service-video-box {
  position: relative;
  max-width: 150px;
}

.service-video-box video {
  width: 100%;
}
.service-video-box a {
  position: absolute;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 11px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  color: #000;
}
section.blog-detail p {
    font-size: 23px;
    line-height: 33px;
    padding-bottom: 20px;
}

section.blog-detail h2 {
    font-size: 40px;
    line-height: normal;
    padding-bottom: 20px;
}
.blog-detail i{font-style:italic;}

.blog-detail h3{font-size:30px;line-height:normal; font-weight:700;padding-bottom:20px;}

/*Lucky Textile*/
.bg-case{padding:0 100px;text-align:center;}
.bg-case video{
  width: 100%;
  height: auto;
}
.indusec{padding: 100px;}
.induscontent1{}
.induscontent1 h6{font-weight:400;font-size:14px;line-height:normal;text-transform:uppercase;color:#5B5B5B;padding-bottom:30px;}
.induscontent1 h2{font-weight:900;font-size:64px;line-height:83px;color:#FFFFFF;padding-bottom: 20px;}
.induscontent1 h2 span{color:#bdd100;}
.induscontent1 p{font-weight:400;font-size:14px;line-height:normal;text-transform:uppercase;color:#5B5B5B;padding-bottom:50px;}
.induscontent1 a{font-weight:400;font-size:14px;line-height:18px;text-transform:uppercase;color:#bdd100;}
.induscontent1 a strong{font-weight:400;font-size:14px;line-height:normal;display:block;text-transform:uppercase;color:#5B5B5B;padding-bottom:10px;}
.induscontent2{}
.induscontent2 h6{font-weight:600;font-size:24px;line-height:36px;color:#FFFFFF;}
.induscontent2 ul{padding:30px 0;list-style-type:disc;padding-left:30px;}
.induscontent2 ul li{font-weight:400;font-size:16px;line-height:24px;color:#FFFFFF;padding-bottom:10px;}
.induscontent2 ul li:last-child{padding-bottom:0;}
.induscontent2 ul li span{font-weight:400;font-size:12px;line-height:15px;color:#5B5B5B;}
.induscontent2 p{font-weight:400;font-size:16px;line-height:24px;color:#FFFFFF;}

.lucky-video{text-align:center;padding:0 100px 50px;}
.lucky-video h2{font-weight:500;font-size:64px;line-height:normal;color:#FFFFFF;padding-bottom:50px;}
.lucky-video video{width:100%;height:auto;margin-bottom: 30px;}
.lucky-video p{font-weight:400;font-size:24px;line-height:41px;text-align:center;color:#FFFFFF;max-width:50%;margin:auto;}
.lucky-video p span{color:#bdd100;font-weight:700;}

.luckyvision{padding:0 100px;}
.luckyvision h4{font-weight:900;font-size:64px;line-height:74px;color:#FFFFFF;padding-bottom:50px;}
.luckyvision h6{font-weight:600;font-size:24px;line-height:31px;color:#FFFFFF;padding-bottom:10px;}
.luckyvision p{font-weight:400;font-size:16px;line-height:27px;color:#FFFFFF;padding-bottom:20px;}
.luckyvision p span{font-weight:400;font-size:12px;line-height:15px;color:#7E7E7E;}
.luckyvision h5{font-weight:400;font-size:64px;line-height:normal;color:#FFFFFF;padding-bottom:30px;}

.challengesec{padding:150px 100px;}
.challengesec h3{font-weight:900;font-size:64px;line-height:normal;color:#FFFFFF;padding-bottom:30px;}
.challengesec h4{font-weight:600;font-size:32px;line-height:normal;color:#FFFFFF;padding-bottom:200px;}
.challengesec h5{font-weight:600;font-size:24px;line-height:31px;color:#FFFFFF;padding-bottom:15px;}
.challengesec span{font-weight:400;font-size:24px;line-height:31px;color:#FFFFFF;padding-bottom:20px;}
.challengesec h6{font-weight:600;font-size:24px;line-height:31px;color:#fff;padding-bottom:30px;}
.challengesec h6 strong{color:#bdd100;}
.challengesec p{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}

.chalnspace{padding-left:50px;padding-top: 50px;}
.chalnspace p{padding-bottom: 30px;}

.solutionsec{padding:0 100px 100px;position: relative;}
.solutionsec h2{font-weight:900;font-size:64px;line-height:normal;color:#FFFFFF;padding-bottom:30px;}
.solutionsec h3{font-weight:600;font-size:32px;line-height:normal;color:#FFFFFF;display:flex;align-items:center;gap:15px;margin-bottom:50px}
.solutionsec h3 strong{font-weight:400;font-size:12px;line-height:15px;color:#7E7E7E;}
.solimg{}
.solimg span{font-weight:400;font-size:14px;line-height:18px;color:#5B5B5B;display:block;text-align:right;margin-top:10px;}

.solcon{}
.solcon h4{font-weight:400;font-size:64px;line-height:normal;color:#FFFFFF;}
.solcon p{font-weight:400;font-size:16px;line-height:normal;color:#FFFFFF;padding-bottom:30px;}
.solcon ul{list-style-type:disc;padding-left:30px;padding-bottom:30px;}
.solcon ul li{font-weight:400;font-size:16px;line-height:normal;color:#FFFFFF;padding-bottom:15px;}
.solcon ul li span{font-weight:400;font-size:14px;line-height:18px;color:#5B5B5B;}

.soluimg{text-align:right;}
.soluimg span{font-weight:400;font-size:14px;line-height:18px;color:#5B5B5B;display:block;margin-bottom:10px;}
.soluarrow{position:absolute;left:0;right:-50px;bottom:17%;margin:auto;max-width:114px;}

.excel-sec{padding:0 100px}
.excel-sec .excel-cont{}
.excel-sec .excel-cont h3{font-weight:900;padding-bottom:20px;font-size:64px;line-height:83px;color:#FFFFFF;}
.excel-sec .excel-cont strong{font-weight:700;font-size:16px;line-height:21px;color:#bdd100;}
.excel-sec .excel-cont ul{list-style-type:disc;padding-left:17px;padding-top:25px;padding-bottom:18px;}
.excel-sec .excel-cont ul li{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}
/*.excel-sec .excel-cont ul li span{font-weight:400;font-size:16px;line-height:30px;color:#FA2B01;}*/
.excel-sec .excel-cont p{max-width:95%;font-weight:400;font-size:16px;line-height:27px;color:#FFFFFF;}
.excel-sec .excel-para{}
.excel-sec .excel-para h4{font-weight:600;padding-bottom:24px;font-size:24px;line-height:45px;color:#FFFFFF;max-width:60%;}
.excel-sec .excel-para h4 span{font-weight:400;font-size:14px;line-height:18px;color:#5B5B5B;}
.excel-sec .excel-slide{}
.excel-sec .excel-slide p{max-width:90%;padding-bottom:38px;font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}
.excel-sec .excel-slide svg{margin-bottom:12px;}
.excel-sec .excel-slide h5{padding-bottom:17px;font-style:italic;font-weight:500;font-size:16px;line-height:21px;color:#FFFFFF;}
.excel-sec .excel-slide .slide-cont{position: relative;display:flex;align-items:center;}
.excel-sec .excel-slide .slide-cont:before{content: '';position: absolute;bottom: -15px;margin: auto;left: 0; width: 51px;
height: 1px;
background-color: #bdd100;}
.excel-sec .excel-slide h6{font-weight:400;font-size:16px;padding-left:16px;line-height:21px;color:#FFFFFF;}
.excel-sec .excel-slide strong{font-weight:400;padding-left:6px;font-size:14px;line-height:18px;color:#5B5B5B;}
.excel-sec .excel-slider .slick-dots li.slick-active button{background:#bdd100;width:11px;height:11px;}





.power-sec{padding:50px 100px}
.power-sec .power-cont{}
.power-sec .power-cont h3{padding-bottom:48px;font-weight:900;font-size:64px;line-height:83px;color:#FFFFFF;}
.power-sec .power-cont h6{font-weight:400;padding-bottom:25px;max-width:88%;font-size:16px;line-height:24px;color:#FFFFFF;}
.power-sec .power-cont strong{display: block; padding-bottom:10px;font-weight:500;font-size:24px;line-height:31px;color:#bdd100;}
.power-sec .power-para{}
.power-sec .power-para h4{font-weight:600;padding-bottom:18px;font-size:24px;line-height:31px;color:#FFFFFF;}
.power-sec .power-para h4 span{font-weight:400;font-size:14px;line-height:18px;color:#5B5B5B;}
.power-sec .power-para p{font-weight:400;padding-bottom:28px;font-size:16px;line-height:30px;color:#FFFFFF;}

.import-sec{padding:0 100px 118px;}
.import-sec .import-img{}
.import-sec .import-cont{padding-top:16%}
.import-sec .import-cont h4{position:relative;left:-280px;padding-bottom:27px;font-weight:500;font-size:64px;line-height:75px;color:#FFFFFF;}
.import-sec .import-cont ul{list-style-type:disc;}
.import-sec .import-cont ul li{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}

.out-sec{padding:0 100px 117px;}
.out-sec .out-cont{}
.out-sec .out-cont h3{padding-bottom:15px;font-weight:900;font-size:64px;line-height:83px;color:#FFFFFF;}
.out-sec .out-cont h4{padding-bottom:35px;font-weight:600;font-size:24px;line-height:31px;color:#FFFFFF;}
.out-sec .out-cont span{font-weight:400;font-size:14px;line-height:18px;color:#5B5B5B;}
.out-sec .out-cont h6{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}
.out-sec .out-para{}
.out-sec .out-para strong{font-weight:500;font-size:24px;line-height:31px;color:#bdd100;}
.out-sec .out-para ul{padding-top:32px}
.out-sec .out-para ul li{font-weight:400;padding-bottom:28px;max-width:83%;font-size:16px;line-height:24px;color:#FFFFFF;}
.out-sec .out-para-line{position:relative;}
.out-sec .out-para-line:before{content:'';position:absolute;left:-55px;width:1px;height:366px;background-color:#bdd100;}

.client-sec{padding:0 100px 88px;}
/*.client-sec .client-arrow img{width: 10%;height: auto;}*/
.client-sec .client-cont h4{font-weight:600;padding-bottom:8px;font-size:32px;line-height:32px;color:#FFFFFF;}
.client-sec .client-cont h3{font-weight:900;padding-bottom:18px;font-size:60px;line-height:56px;color:#FFFFFF;}
.client-sec .client-cont p{font-weight:400;padding-bottom:50px;font-size:16px;line-height:26px;color:#fff;}
.client-sec .client-cont span{font-weight:900;font-size:16px;line-height:30px;color:#bdd100;}
.client-sec .client-cont h6{font-weight:400;font-size:23px;line-height:31px;color:#FFFFFF;}
.client-sec .client-img img{padding-bottom:6px}
.client-sec .client-img strong{font-weight:400;font-size:16px;line-height:21px;color:#FFFFFF;}
.clientvideo{position: relative;}
.clientvideo video{width: 100%;height: auto;margin-bottom: 10px;}
/* Floating sound button */
.sound-btn{position:absolute;bottom:35px;right:10px;width:45px;height:45px;border-radius:50%;border:none;cursor:pointer;background:#fff;color:#000;font-size:20px;display:flex;align-items:center;justify-content:center;z-index:10;transition:0.3s ease;}
.sound-btn:hover{background:#bdd100;}

.learn-sec{padding-bottom: 50px}
.learn-sec h3{font-weight:900;text-align:center;padding-bottom:10px;font-size:64px;line-height:83px;color:#FFFFFF;}
.learn-sec h4{font-weight:600;padding-bottom:12px;text-align:center;font-size:32px;line-height:41px;color:#FFFFFF;}
.learn-sec .learn-cont{width:66%;margin:auto;}
.learn-sec .learn-cont h5{font-weight:600;padding-bottom:12px;font-size:24px;line-height:31px;color:#bdd100;}
.learn-sec .learn-cont ul{list-style-type:disc;}
.learn-sec .learn-cont ul li{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}
.learn-sec .learn-cont-line{position:relative;}
.learn-sec .learn-cont-line:before{content:'';position:absolute;left:-16px;top:20px;margin:auto;width:1px;height:129px;background-color:#bdd100;}

.last-sec{text-align:center;}
.last-sec .last-cont{}
.last-sec .last-cont h4{font-weight:600;padding-bottom:12px;font-size:24px;line-height:31px;color:#bdd100;}
.last-sec .last-cont p{font-weight:400;font-size:16px;line-height:21px;color:#FFFFFF;}
.last-sec .last-cont h3{font-weight:900;padding-bottom:10px;max-width:83%;margin:auto;font-size:48px;line-height:62px;text-align:center;color:#FFFFFF;}
.last-sec .last-cont h3 a{padding-right:50px;}
.last-sec .last-cont span{font-weight:400;font-size:14px;line-height:18px;text-align:center;color:#5B5B5B;}

.globesec{padding:100px 0 0;}
.globesec h4{font-weight:900;font-size:64px;line-height:83px;color:#FFFFFF;padding-bottom:20px;}
.globesec h6{font-weight:600;font-size:24px;line-height:31px;color:#FFFFFF;padding-bottom:20px;text-align:center;}
.globesec p{font-weight:400;font-size:16px;line-height:26px;color:#FFFFFF;text-align:center;}
#canvas-container{width:650px;height:650px;background:transparent!important;position:relative;margin:auto;}
#canvas-container canvas{background:transparent!important;width:100%!important;height:100%!important;}
.caseboxx{padding-top:20px;}
.caseboxx h5{font-weight:600;font-size:24px;line-height:31px;color:#FFFFFF;padding-bottom:0px;}
.caseboxx p{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}
.caseboxx ul{list-style-type:disc;padding-left:30px;}
.caseboxx ul li{font-weight:400;font-size:16px;line-height:30px;color:#FFFFFF;}
.slidersecs{padding:100px 0;}
.slidersecs .gallery-box img{height:auto;width:auto;}
.slidersecs .swiper-pagination-bullet-active{background:#bdd100;}
/*Mouse effect*/
.image-wrapper{position:relative;display:inline-block;overflow:hidden;}
.image-wrapper img{width:100%;display:block;}
.image-wrapper:hover{cursor:none;}
.cursor-view{position:fixed;width:120px;height:120px;background:#bdd100;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:14px;pointer-events:none;transform:translate(-50%,-50%) scale(0.7);opacity:0;transition:opacity 0.3s ease,transform 0.3s ease;z-index:9999;}
.image-wrapper.active .cursor-view{opacity:1;transform:translate(-50%,-50%) scale(1);}

.arrowmute img{position:absolute;right:-70px;bottom:10px;max-width:13%;padding:0;transform:rotate(-25deg);}
.arrowmute span{position:absolute;right:-150px;bottom:70px;font-size:12px;line-height:normal;color:#666;}

.slidersecs .gallery-box video{
    width:100%;
    height:auto;
}

@media (max-width:1600px){
  header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .out-sec .out-para-line:before{left:-25px;}
  .power-sec{padding:50px 50px;}
  .bg-case{padding:0 50px;}
  .indusec{padding:100px 50px;}
  .lucky-video{text-align:center;padding:0 50px 50px;}
  .luckyvision{padding:0 50px;}
  .challengesec{padding:150px 50px;}
  .solutionsec{padding:0 50px 100px;}
  .excel-sec{padding:0 50px;}
  .import-sec{padding:0 50px 118px;}
  .out-sec{padding:0 50px 117px;}
  .client-sec{padding:0 50px 88px;}
}

@media (max-width: 1440px) {
  header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .home-reel {
    padding: 0 2rem;
  }
  .home-projects {
    padding: 0 2rem;
  }

  .home-about {
    padding: 0 2rem;
  }

  footer {
    padding: 5rem 2rem;
  }
  .header-menu > li:not(:first-child) {
    padding-left: 1rem;
  }
  .header-left {
    gap: 1.5rem;
  }
  .services-page-service-list {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .service-info-template {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .service-template-portfolio {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .about-ceo-words {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .about-process-box-content h3 {
    font-size: 50px;
  }

  .about-after-process-media {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .why-rad-dividider-text {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .about-ateam {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .about-rad-mindset {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .works-project-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width:1366px){
  .out-sec .out-para-line:before{left:-50px;}
  .soluarrow{position:absolute;left:-110px;right:0;bottom:30%;}
}
  
@media (max-width: 1200px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 824px) {
}

@media (max-width: 767px) {
  .header-left-link {
    display: none;
  }
  .header-left-oblique {
    display: none;
  }
  .header-menu, .arrowmute {
    display: none;
  }
  header {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-btn {
    padding: 10px 10px;
    font-size: 14px;
    background-color: transparent;
  }

  .header-btn {
    padding: 10px 10px;
    font-size: 14px;
    background-color: transparent;
  }
  .main-header .col-md-5,
  .main-header .col-md-2 {
    max-width: 33.333%;
  }

  .header-navigation {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 150px;
  }
  .header-nav-block {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 25px;
  }
  .header-nav-line {
    display: none;
  }
  .header-nav-link {
    font-size: 42px;
    background-size: 100% 2px;
  }
  .header-navigation-wrapper {
    width: 100%;
    margin-left: 30px;
    margin-right: 30px;
    gap: 25px;
  }

  .hh-heading {
    font-size: 50px;
  }
  .hh-video-trigger {
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    margin: auto;
  }
  .hh-scroll-anchor {
    background-size: 100% 4px;
  }
  .home-reel {
    padding: 0;
  }
  .home-intro {
    margin-top: 6rem;
    padding: 0 15px;
  }

  .main-copy {
    font-size: 18px;
  }
  .btn-primary-solid {
    font-size: 12px;
    max-width: 50%;
    padding: 0 10px;
  }
  .btn-secondary-outline {
    max-width: 50%;
    padding: 0 10px;
    font-size: 12px;
  }
  .btns-wrapper {
    flex-wrap: nowrap;
    gap: 15px;
  }
  .home-clients-marquee {
    margin: 6.5rem 0;
  }
  .hc-marquee-wrapper img {
    margin-left: 4rem;
  }
  .home-projects {
    padding: 0;
    margin-bottom: 6rem;
  }
  .home-selected-projects-text {
    display: none;
  }
  .h-project-box {
    padding-bottom: 40px;
  }
  .h-project-box-spacer-top {
    margin-top: 0;
  }
  .h-projects-row-spacer {
    margin-top: 0;
  }
  .btns-wrapper-projects {
    margin-top: 0;
  }

  .home-about {
    padding: 0;
    margin-top: 6rem;
  }
  .home-about-img {
    margin-top: 35px;
  }
  .home-about .row {
    flex-direction: column-reverse;
  }
  .home-about h2 {
    font-size: 50px;
    text-align: center;
  }
  .home-awards-marquee {
    margin: 5rem 0;
  }
  .home-clients {
    margin-top: 5rem;
  }
  .home-clients h2 {
    font-size: 50px;
  }
  .testimonials-wrapper {
    margin-top: 0;
  }
  .testimonial-box p {
    font-size: 16px;
  }
  .swiper-gallery.swiper-wrapper .swiper-slide:first-of-type {
    margin-left: 25px;
  }
  .footer-cta h2 {
    font-size: 50px;
  }
  .footer-cta a {
    font-size: 50px;
  }
  .footer-cta a svg {
    display: none;
  }

  footer {
    padding: 30px 15px;
  }

  .footer-cta a span {
    display: none;
  }

  .footer-split-links > li:last-child {
    display: none;
  }
  .footer-split-links > li {
    width: 100%;
  }
  .footer-split-links p {
    font-size: 20px;
  }

  .footer-bottom .row > div:nth-child(1) {
    order: 3;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-terms {
    text-align: center;
    padding: 25px 0;
  }

  .services-hero h1 {
    font-size: 50px;
  }
  .services-hero h1 svg {
    display: none;
  }
  .services-page-service-list {
    margin: 0;
  }
  .services-list a {
    font-size: 14px;
  }
  .service-info-template {
    margin-top: 6rem;
    margin-left: 0;
    margin-right: 0;
  }
  .service-info-template h2 {
    font-size: 38px;
  }
  .service-template-portfolio {
    margin-left: 0;
    margin-right: 0;
  }
  .service-portfolio-box {
    padding-top: 30px;
  }

  .about-hero {
    height: 100vh;
    margin-right: 3rem;
    margin-bottom: 3rem;
  }
  .about-hero-text-stroke {
    display: none;
  }
  .about-hero-text br {
    display: none;
  }
  .about-hero-text h1 {
    font-size: 72px;
  }
  .ab-media-wrapper-inner {
    width: 500vw;
  }
  .ab-mwi-text span {
    font-size: 2rem;
  }
  .ab-mwi-03 {
    width: 15rem;
  }
  .ab-mwi-07 {
    width: 18rem;
  }
  .ab-mwi-04 {
    width: 14.125rem;
  }
  .ab-mwi-10 {
    width: 18rem;
  }
  .ab-mwi-05 {
    width: 12rem;
  }

  .ab-mwi-13.ab-mwi-text {
    bottom: 10%;
  }
  .ab-mwi-01 {
    width: 12.125rem;
  }
  .about-img-caption {
    max-width: 50%;
  }
  .about-team h2 {
    font-size: 50px;
  }
  .about-team {
    margin-top: 5rem;
  }
  .about-gallery {
    margin-top: 6rem;
  }
  .image-with-caption.about-ceo-img-left {
    margin-top: 1rem;
  }
  .about-ceo-words {
    margin-left: 0;
    margin-right: 0;
  }
  .image-with-caption.about-ceo-img-right {
    margin-top: 25px;
  }
  .about-ceo-box {
    margin-top: 6rem;
  }
  .about-process {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 6rem;
  }
  .about-process h2 {
    font-size: 32px;
  }

  .about-process-box {
    height: 50vh;
    max-width: 100%;
  }
  .about-process-box #about-process-one {
  }
  .about-process-box .col-md-6 {
    max-width: 20%;
  }
  .about-process-box-number svg {
    width: 100%;
    height: 60px;
    color: red;
  }
  .about-process-box .col-md-5 {
    max-width: 80%;
  }
  .about-process-box-content {
    padding-right: 0;
  }
  .about-process-pagination-wrapper {
    display: none;
  }
  .about-process-wrapper-main {
    display: block;
  }
  .about-process-box-content h3 {
   font-size: 36px;
    padding-bottom: 15px;
  }
  .about-process-box-content p {
    font-size: 14px;
  }
  .about-process-box-flex h5 {
    font-size: 12px;
    padding-bottom: 5px;
  }
  .about-process-box-flex {
    gap: 10px;
  }
  .about-process-box-number svg path {
    stroke: red;
  }
  .image-with-caption.about-after-media-left {
    margin-top: 0;
  }
  .about-after-process-media {
    margin: 0;
  }
  .image-with-caption {
    padding-top: 25px;
  }
  .about-img-wide {
    margin-top: 6rem;
  }
  .about-our-offices h2 {
    font-size: 50px;
  }

  .why-rad-hero-wrapper {
    display: none;
  }
  .why-rad-mobile {
    display: block !important;
    text-align: center;
    width: 100%;
  }

  .why-rad-hero-wrapper {
    display: none;
  }
  .why-rad-mobile {
    display: block !important;
    text-align: center;
    width: 100%;
  }
  .why-rad-mobile h2 {
    font-size: 54px;
    line-height: 0.8;
  }
  .why-rad-divider-box h5 {
  font-size: 24px;
  }
  
  .why-rad-mobile h2:nth-child(1) {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 2.5px;
  }
  .why-rad-mobile h2:nth-child(3) {
    color: #bdd100;
  }

  .why-rad-dividider-text {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 5rem;
  }
  .why-rad-divider-box {
    height: auto;
    padding: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    border-left: none !important;
    border-right: none !important;
  }

  .about-ateam {
    margin-left: 0;
    margin-right: 0;
    margin-top: 5rem;
  }
  .about-ateam h2 {
   font-size: 50px;
    text-align: center;
  }
  .about-rad-mindset {
    margin-left: 0;
    margin-right: 0;
    margin-top: 5rem;
  }
  .about-rad-mindset h2 {
    font-size: 50px;
    text-align: center;
  }
  .contact-us-form h1 {
    font-size: 50px;
  }
  .contact-us-form p {
    line-height: normal;
  }
  .clb-left {
    max-width: 65%;
  }

  .works-project-section {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .works-hero h1 strong {
    display: none;
  }

  .works-hero span {
    height: 70px;
    width: 80px;
    margin-left: 10px;
  }
  .works-hero span svg {
    width: 15px;
    height: 50px;
    flex-shrink: 0;
  }
  .works-hero span img {
    max-width: 70px;
  }
  
  .awards-marquee-wrapper img {
  margin-right: 3rem;
}

.services-img-list-wrapper {
  display: none;
}

.works-hero h1 {
  font-size: 42px;
}

.service-video-box {
  margin: 30px 0;
}


/*lucky-textile*/
.bg-case{padding:0;}
.indusec{padding:30px 0;}
.induscontent1 h6{padding-bottom:15px;}
.induscontent1 h2{font-size:30px;line-height:40px;padding-bottom:15px;}
.induscontent1 p{padding-bottom:15px;}
.induscontent2 h6{font-size:22px;line-height:32px;}
.induscontent2 ul{padding:15px 0;padding-left:15px;}
.induscontent1 a{padding-bottom:15px;}
.lucky-video{padding:0;padding-bottom:30px;}
.lucky-video h2{font-size:30px;padding-bottom:15px;}
.lucky-video p{font-size:20px;line-height:28px;max-width:100%;}
.luckyvision h4{font-size:30px;text-align:center;line-height:38px;padding-bottom:15px;}
.luckyvision h6{font-size:22px;line-height:28px;padding:15px 0;}
.luckyvision{padding:0;}
.luckyvision p{line-height:24px;padding-bottom:30px;}
.luckyvision h5{font-size:30px;padding-bottom:15px;}
.challengesec{padding:0;}
.challengesec h3{font-size:30px;padding-bottom:15px;}
.challengesec h4{font-size:24px;padding-bottom:15px;}
.challengesec h6{font-size:22px;padding-bottom:15px;}
.challengesec h5{line-height:28px;padding:15px 0;}
.chalnspace{padding-left:0;padding-top:30px;}
.solutionsec{padding:0;padding-bottom:30px;}
.solutionsec h2{font-size:30px;padding-bottom:15px;}
.solutionsec h3{font-size:24px;margin-bottom:15px;}
.solcon h4{font-size:30px;}
.solcon ul{padding-left:15px;}
.soluarrow{display:none;}
.excel-sec{padding:0;}
.excel-sec .excel-cont h3{padding-bottom:15px;font-size:30px;line-height:38px;}
.excel-sec .excel-para h4{padding-bottom:24px;font-size:22px;line-height:32px;max-width:100%;}
.excel-sec .excel-cont p{padding-bottom:15px;}
.excel-sec .excel-slide p{padding-bottom:24px;}
.excel-sec .excel-slide h5{padding-bottom:15px;}
.power-sec{padding:30px 0;}
.power-sec .power-cont h3{padding-bottom:15px;font-size:30px;line-height:38px;}
.power-sec .power-cont h6{padding-bottom:15px;max-width:100%;}
.power-sec .power-para h4{padding-bottom:15px;line-height:28px;}
.power-sec .power-para p{padding-bottom:15px;}
.import-sec{padding:0;}
.import-sec .import-cont h4{left:0;padding-bottom:15px;font-size:30px;line-height:38px;}
.import-sec .import-cont{padding-top:30px;}
.import-sec .import-cont ul{padding-left:15px;}
.out-sec{padding:30px 0 15px;}
.out-sec .out-cont h3{font-size:30px;line-height:28px;}
.out-sec .out-cont h4{padding-bottom:30px;font-size:22px;line-height:28px;}
.out-sec .out-cont{padding-bottom:15px;}
.out-sec .out-para ul{padding-top:30px;}
.out-sec .out-para ul li{padding-bottom:15px;max-width:100%;}
.client-sec{padding:0;}
.client-sec .client-cont h4{padding-bottom:8px;font-size:24px;line-height:26px;}
.client-sec .client-cont h3{padding-bottom:15px;font-size:30px;line-height:38px;}
.client-sec .client-cont p{padding-bottom:30px;}
.client-sec .client-cont h6{padding-bottom:15px;line-height:28px;font-size:22px;}
.learn-sec{padding:30px 0;}
.learn-sec h3{font-size:30px;line-height:38px;}
.learn-sec h4{font-size:24px;line-height:32px;}
.learn-sec .learn-cont{padding-left:15px;width:100%;}
.learn-sec .learn-cont h5{padding:15px 0;line-height:22px;}
.client-sec .client-arrow img{width:10%;height:auto;}
#canvas-container{height:350px;width:350px;}
.globesec h4{font-size:30px;line-height:normal;}
.globesec h6{font-size:20px;padding-bottom:10px;}
.globesec p{font-size:16px;line-height:normal;}
.slidersecs{padding:30px 0;}
.caseboxx{padding:15px;}
.caseboxx h5{font-size:20px;line-height:normal;}
.caseboxx p,
.caseboxx li{font-size:14px;line-height:normal;}
.slidersecs .swiper-gallery.swiper-wrapper .swiper-slide:first-of-type{margin-left:0;margin-right:0;}
}
