body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: #fff;
  font-family: "Marble";
  font-weight: 300;
}

/* 
html {
  scroll-snap-type: y proximity;
} 
*/

@font-face {
  font-family: "Marble";
  src: url("../fonts/MarbleBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Marble";
  src: url("../fonts/MarbleLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Marble";
  src: url("../fonts/MarbleMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Marble";
  src: url("../fonts/MarbleBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Original Handwriting - Personal";
  src: url("../fonts/OriginalHandwritingPersonal.woff2") format("woff2"),
    url("../fonts/OriginalHandwritingPersonal.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* PRELOADER BACKGROUND */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #448fe6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  font-family: "Marble";
}

/* CENTER CONTENT */
.loader-content {
  text-align: center;
  color: #fff;
  font-family: "Marble";
}

/* GIF */
.loader-gif {
  width: 150px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

/* PERCENTAGE */
.loader-percent {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: "Marble";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}
html,
body {
  height: 100%;
  scroll-snap-type: y mandatory;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
  transition: all 0.4s ease;
}

.header .logo {
  width: 8vw;
}

.header-bg {
  background-color: #3268aecf;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}
.header .logo {
  transition: all 0.4s ease;
}
.header-bg .logo {
  width: 5vw;
}

.header .open-menu {
  max-width: 50px;
  transition: all 0.4s ease;
}
.header-bg .open-menu {
  max-width: 28px;
}

section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* Navigation */
.navs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
  border-bottom: 1px solid #ddd;
}

.navs a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.content {
  position: relative;
  z-index: 2;
}

#page3 .btn-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  z-index: 2;
}

/* Arrow buttons */
.arrow-container {
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arrow:hover {
  opacity: 0.6;
}

.arrow.up {
  top: 20px;
}

.arrow.down {
  bottom: 20px;
}

/* MOBILE VIEW */
@media (max-width: 1279px) {
  html,
  body {
    scroll-snap-type: none;
  }

  section {
    min-height: 50vh;
    height: auto;
    padding: 100px 0 60px 0;
    background-attachment: scroll;
    font-size: 30px;
  }

  .arrow {
    font-size: 30px;
  }
}

h1 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 43px;
  line-height: 45px;
}

h2 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 40px;
  position: relative;
  z-index: 10;
}

h3 {
  font-weight: 900;
  font-size: 25px;
}

h4 {
  font-weight: 900;
  font-size: 20px;
}

p {
  font-size: 0.8vw;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.4vw;
}
ul.order-list li {
  font-size: 0.8vw;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.4vw;
}

span.outline {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  display: block;
}

p:last-child {
  margin: 0;
}

.btn-primary {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  letter-spacing: 0.02vw;
  font-weight: 500;
}

.btn-primary:hover {
  background: transparent;
  letter-spacing: 0.05vw;
}

.btn-primary::after {
  content: url(../images/btn-arrow.png);
  position: relative;
  top: 3px;
  left: 0;
  transition: all 0.3s;
}

.btn-primary:hover::after {
  left: 15px;
}

.btn-primary:focus {
  background: transparent !important;
}

.container {
  max-width: 80%;
}

.hero-section {
  inset: 0;
  background-size: cover;
  background-position: center;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .content {
  max-width: 600px;
  z-index: 5;
}

.hero-section video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #11376769;
}

.connecting-lines {
  position: relative;
}

.hero-section .connecting-lines::before {
  display: none !important;
}

.connecting-lines::after {
  border: 1px solid #fff;
  height: 200%;
  content: "";
  display: block;
  position: absolute;
  top: 103%;
  z-index: 1;
}

.connecting-lines::before {
  border: 1px solid #fff;
  height: 25vh;
  content: "";
  display: block;
  position: absolute;
  bottom: 103%;
  opacity: 0.8;
}

.collaboration-sec .connecting-lines::after {
  border: 1px solid #fff;
  height: 176%;
  content: "";
  display: block;
  position: absolute;
  top: 517%;
}

.stories-sec .connecting-lines::after {
  display: none;
}

video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.inspiration-section .btn {
  position: absolute;
  bottom: 6vw;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  z-index: 2;
}

.inspiration-section {
  position: relative;
  overflow: hidden;
}
.inspiration-section {
  background: url(../images/us-bg.jpg) center center / cover no-repeat;
  animation: bgZoom 40s ease-in-out infinite;
}

/* Zoom In → Zoom Out → Repeat */
@keyframes bgZoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 140%; /* zoom in */
  }
  100% {
    background-size: 100%; /* zoom out */
  }
}

#page1,
#page2,
#page3,
#page4,
#page5,
#page6 {
  overflow: hidden;
}

/* Stories Slider */
.stories-slider .text {
  position: absolute;
  bottom: 1.5vw;
  width: 85%;
  margin: auto;
  left: 0;
  right: 0;
}
.stories-slider .img-wrapper img {
  transition: all 0.3s;
}
.stories-slider .img-wrapper img:hover {
  scale: 1.1;
}
.stories-slider a h3,
.stories-slider a p {
  color: #fff;
}

.stories-slider .text h3 {
  font-size: 2vw;
  margin: 0;
  line-height: normal;
  text-transform: uppercase;
}

.stories-slider .img-wrapper {
  max-height: 415px;
  width: 100%;
  position: relative;
}

.stories-slider .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories-slider .slick-slide {
  margin: 0 15px;
  border-radius: 20px;
  overflow: hidden;
}

/* Logos Slider */
.logos-slider .slick-slide {
  margin: 20px;
}

.logos-slider .slick-slide div {
  height: 4.7vw;
  display: flex;
  align-items: center;
}

.logos-slider .slick-list {
  padding: 0 !important;
}

.logos-slider img {
  margin: 30px 0;
  max-width: 100%;
  width: auto !important;
}

/* Stories 2 Slider */
.stories2-slider img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1vw;
}

.stories2-slider .slick-slide {
  margin: 0 2.5vw;
}

.stories2-slider .slick-slide a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}

.stories2-slider .content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 4;
}

.stories2-slider {
  margin: 0 -40px;
}
.collaboration-sec {
  position: relative;
  overflow: hidden;
}
.collaboration-sec .btn {
  position: relative;
  z-index: 2;
}
.collaboration-sec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200%; /* two images side-by-side */
  height: 100%;
  background: url(../images/collaboration-bg.jpg) repeat-x;
  background-size: contain; /* or cover based on your image */
  animation: smoothScroll 50s linear infinite;
}

/* No-jump seamless movement */
@keyframes smoothScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.clients-sec {
  position: relative;
  z-index: 2;
}

.clients-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%; /* two images side-by-side */
  height: 100%;
  background: url(../images/client-bg.jpg) repeat-x;
  background-size: contain; /* or cover based on your image */
  animation: smoothScroll2 50s linear infinite;
}

/* No-jump seamless movement */
@keyframes smoothScroll2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}

.stories-sec {
  background-color: #448fe6;
}
/* 
.stories-sec::before {
  background-image: url(../images/stories-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 43vh;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
} */

/* Open Contact Button */
.open-contact {
  position: fixed;
  bottom: 40px;
  left: 20px;
  background: #446084;
  color: #fff;
  padding: 6px 11px;
  border-radius: 0;
  cursor: pointer;
  z-index: 5;
  border: 2px solid #fff;
  text-transform: uppercase;
}

.open-contact:hover {
  background: #325582;
}

.open-contact::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: -24px;
  border: 11px solid;
  border-color: #446084 #446084 transparent transparent;
}

/* Contact Form Overlay */
.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 36, 82, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  box-sizing: border-box;
}

.form-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Contact Box */
.contact-box {
  width: 90%;
  max-width: 30vw;
  background: #3268ae;
  padding: 2vw;
  border-radius: 14px 14px 0 14px;
  color: #fff;
  position: relative;
  /* animation: popup 0.4s ease forwards; */
}

.contact-box::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: -5.5vw;
  border: 3.1vw solid;
  border-color: #3268ae #3268ae transparent transparent;
}

@keyframes popup {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.contact-box .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 4vw;
  font-size: 4vw;
  font-family: "Original Handwriting - Personal";
  text-transform: none;
  font-weight: normal;
  margin-top: -2vw;
}
.contact-form input,
.contact-form textarea,
.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: none;
  font-weight: 300;
  border-radius: 8px;
  font-size: 0.9vw;
  color: #fff;
  background-color: #285691;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-box input:focus,
.contact-box textarea:focus {
  outline: 0;
}
.contact-form button,
.contact-box button {
  background: #1b3d69;
  color: #ffffffad;
  padding: 0.7vw 2vw;
  border: none;
  border-radius: 8px;
  font-size: 0.9vw;
  cursor: pointer;
  font-weight: 300;
  margin: auto;
  display: table;
}
.contact-form button:hover,
.contact-box button:hover {
  background: #1b3d69a2;
}
.contact-form ::placeholder,
.contact-box ::placeholder {
  color: rgba(255, 255, 255, 0.294);
}
.contact-form ::-ms-input-placeholder,
.contact-box ::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.294);
}

.thank-you {
  text-align: center;
  font-size: 24px;
  padding: 40px 0;
  display: none;
}

.ideas-sec {
  background-image: url("../images/service_bg2.jpg");
  background-color: #0d327f;
}
.inner-hero {
  padding-top: 160px;
}

/* .inner-hero.service {
  background-image: url(../images/dots-bg.jpg);
  background-size: 100%;
  background-attachment: fixed;
} */
/* .fixed-dotted-bg {
  background-image: url(../images/dots-bg.jpg);
  background-size: 100%;
  background-attachment: fixed;
} */

.fixed-dotted-bg {
  position: relative;
}
.fixed-dotted-bg::after {
  background: url(../images/dots-bg.jpg) center center / cover repeat-y;
  animation: bgZoom 40s ease-in-out infinite;
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

/* Zoom In → Zoom Out → Repeat */
@keyframes bgZoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 140%; /* zoom in */
  }
  100% {
    background-size: 100%; /* zoom out */
  }
}

.inner-hero h1 {
  text-align: center;
}

.service-slider .slick-track {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 17px 0;
  width: 100% !important;
}
.service-slider .slide-text {
  border-left: 5px solid #81b8ff;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 700;
}

.service-slider .slide-text a {
  text-decoration: none;
  color: #fff;
}

.service-slider .slide-text a:hover {
  border-bottom: 1px solid #81b8ff;
  text-align: center;
}

.service-slider .slick-slide {
  margin: 0 10px 0 0;
  width: 100% !important;
}

.service-slider .slick-list {
  padding: 0 !important;
}

.service-slider .slick-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about {
  padding-bottom: 6vw;
}

.about {
  position: relative;
  z-index: 2;
}

.about::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%; /* two images side-by-side */
  height: 100%;
  background: url(../images/about-bg.jpg) repeat-x;
  background-size: contain; /* or cover based on your image */
  animation: abtScroll2 80s linear infinite;
  z-index: -1;
}

/* No-jump seamless movement */
@keyframes abtScroll2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}

.about::after {
  background-image: url(../images/c2.png);
  background-size: cover;
  content: "";
  width: 100%;
  height: 14vw;
  display: block;
  position: fixed;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: 2;
}

.mission-container {
  background-color: #3268ae99;
  backdrop-filter: blur(5px);
  top: 50px;
  position: relative;
  top: 50px;
  position: relative;
  margin-bottom: 100px;
  z-index: 15;
}
.why-choose {
  gap: 25px;
}
.why-choose div {
  display: flex;
}

.arrow-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  transition: all 0.5s;
}

.arrow-top.come:hover {
  opacity: 0.5;
}

.arrow-top.come {
  opacity: 1;
}
.inner-hero.contact {
  background-color: #448fe6;
  background-image: url(../images/contact-bg.jpg);
  background-size: 100%; /* start size */
  background-position: center 20vw;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  animation: zoomBg 10s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 120%; /* zoom in */
  }
}

.csMain .text {
  position: absolute;
  bottom: 1.5vw;
  width: 85%;
  margin: auto;
  left: 0;
  right: 0;
}

.csMain .text h3 {
  font-size: 1.8vw;
  margin: 0;
  line-height: normal;
  text-transform: uppercase;
}

.csMain .img-wrapper {
  max-height: 415px;
  width: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.csMain .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.csMain .img-wrapper img:hover {
  scale: 1.1;
}
.csMain a h3,
.csMain a p {
  color: #fff;
}

.csMain .slick-slide {
  margin: 0 15px;
  border-radius: 20px;
  overflow: hidden;
}

.csMain {
  padding-bottom: 100px;
}

/* cs-hero vikram */

.cs-hero {
  height: 50vh;
  background-position: center top;
  background-size: cover;
  position: relative;
}

.cs-hero .container {
  z-index: 2;
}

.vikram {
  background-image: url(../images/vikram-hero.jpg);
}

.suzlon {
  background-image: url(../images/suzlon-hero.jpg);
}

.archiereef {
  background-image: url(../images/archiereef-1.jpg);
}

.kia {
  background-image: url(../images/kia-hero.jpg);
}

.aidbees {
  background-image: url(../images/aidbees-hero.jpg);
}
.dualroots {
  background-image: url(../images/dualroots-hero.jpg);
}
.objective-sec {
  background-color: #1b3d694f;
  border-radius: 15px;
  padding: 40px;
  margin-top: -50px;
}
ul.order-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.objective-sec ul.order-list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 40px;
  display: flex;
}

.objective-sec ul.order-list li {
  position: relative;
}
ul.order-list li {
  margin-bottom: 12px;
  padding-left: 19px;
}
ul.order-list li::before {
  content: url(../images/bullet.png);
  position: absolute;
  left: 0;
}

.breadcrumb-item a {
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* MEDIA QUERIES */

@media (max-width: 1400px) and (min-width: 1280px) {
  .homePage .container {
    scale: 0.92;
    transform-origin: bottom;
  }
  .hero-section .hero-text {
    scale: 0.92;
    z-index: 1;
  }
}

@media (max-width: 1280px) {
  .stories2-slider .content {
    margin-top: 15px;
  }

  .stories2-slider {
    margin: 0;
  }

  .container {
    max-width: 90%;
  }
}

@media (min-width: 1280px) {
  .stories2-slider .slick-slide h4 {
    margin: 0;
    line-height: 1.5vw;
  }

  .inspiration-section .inspires-col p {
    line-height: 1.2vw;
  }

  h1 {
    font-size: 4vw;
    line-height: 4vw;
  }

  .cs-hero h1 {
    font-size: 2.5vw;
    line-height: 2.4vw;
  }

  h2 {
    font-size: 2.8vw;
    line-height: 2.8vw;
  }

  h3 {
    font-size: 1.2vw;
    line-height: 2.8vw;
  }

  h4 {
    font-size: 1vw;
    line-height: 1vw;
  }

  .btn-primary {
    font-size: 0.9vw;
  }
}

@media (max-width: 1199px) {
  .ideas-sec {
    background-image: none;
    background-color: #4684c0;
  }
}

@media (max-width: 1279px) {
  .header .logo {
    width: 100px;
    max-width: 100%;
  }

  .collaboration-sec::before {
    background-size: cover;
  }

  .about::before {
    background-size: cover;
  }

  .clients-sec::before {
    background: url(../images/client-bg2.jpg) repeat-x;
    background-size: 170%;
  }

  .inspiration-section {
    background-repeat: repeat-y;
  }

  .cs-hero {
    margin-top: 99px;
  }

  .objective-sec ul.order-list {
    flex-direction: column;
    gap: 10px;
  }

  .objective-sec {
    margin-top: -40px;
  }

  .why-choose {
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-choose div {
    width: 25%;
    min-width: 300px;
  }

  .hero-section video {
    position: absolute;
  }

  .connecting-lines::before,
  .connecting-lines::after {
    display: none;
  }

  .logos-slider .slick-slide div {
    height: 60px;
  }

  #page3 .btn-row {
    position: static;
    margin-top: 55px;
  }

  p {
    font-size: 16px;
    line-height: 25px;
  }

  ul.order-list li {
    font-size: 16px;
    line-height: 25px;
  }

  .header {
    background-color: #3268ae8f;
  }

  html,
  body {
    height: 100%;
    scroll-snap-type: none !important;
  }

  .contact-box input,
  .contact-box textarea {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-box {
    width: 90%;
    max-width: 600px;
  }

  .contact-box h2 {
    margin-bottom: 30px;
    font-size: 40px;
    margin-top: -25px;
  }
  .contact-form button {
    padding: 8px 20px;
    font-size: 18px;
  }
  .contact-box button {
    padding: 8px 20px;
    font-size: 18px;
  }

  .inner-hero.contact {
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .arrow-container {
    display: none;
  }

  .stories-sec::before {
    background-position: right top;
    background-size: 240%;
  }

  .clients-sec {
    background-position: left;
  }
  .csMain .text h3,
  .stories-slider .text h3 {
    font-size: 22px;
  }

  .stories-slider .slick-slide {
    margin: 0 5px;
  }
}

@media (max-width: 600px) {
  .stories2-slider img {
    margin-bottom: 20px;
  }

  .cs-hero::after {
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0/75%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  }

  #overlayMenu p {
    font-size: 10px !important;
    line-height: 18px !important;
    margin-top: 15px !important;
  }

  .mission-container {
    top: 0;
  }

  .about {
    padding-bottom: 30vw;
  }

  .why-choose div {
    width: 30%;
    min-width: none;
  }

  .service-slider .slick-slide {
    margin: 0 10px 0 10px;
  }
  .service-slider .slide-text {
    font-size: 15px;
    text-align: center;
  }

  .service-slider .slide-text br {
    display: none;
  }

  .ideas-sec .icons img {
    width: 42px;
  }

  span.outline {
    display: inline;
  }
  p {
    font-size: 15px;
    line-height: 24px;
  }
  ul.order-list li {
    font-size: 15px;
    line-height: 24px;
  }

  h2 {
    font-size: 34px;
  }

  span.outline {
    -webkit-text-stroke: 1px #ffffff;
  }

  .open-menu {
    scale: 0.7;
  }

  .close-btn {
    scale: 0.6;
    transform-origin: top;
  }

  .overlay-content a {
    font-size: 22px !important;
  }

  .overlay-content {
    gap: 15px !important;
  }

  .open-contact {
    scale: 0.8;
    transform-origin: left;
  }

  .header .logo {
    width: 110px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 34px;
  }
  h3 {
    font-size: 23px;
  }
  h4 {
    font-size: 19px;
  }
}

.design-animate {
  transform: scale(0.5);
  opacity: 0.2;
  transition: transform 0.6s ease-out 0.5s, opacity 0.6s ease-out 0.5s;
}

.design-animate.active {
  transform: scale(1);
  opacity: 1;
}

.animate-side {
  transform: translateX(-100px);
  opacity: 0.2;
  transition: transform 0.6s ease-out 0.15s, opacity 0.6s ease-out 0.5s;
}

.animate-side.active {
  transform: translateX(0);
  opacity: 1;
}
