@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;1,300;1,400;1,500&display=swap');

:root {
  --brand-navy: #0D4286;
  --brand-blue: #074EA2;
  --brand-teal: #136A9A;
  --brand-aqua: #2D9288;
  --brand-green: #3DA779;
  --color-white: #FFFFFF;
  --color-bg-light: #F3F7FA;
  --color-text: #15283B;
  --color-text-muted: #5E6F7F;
  --color-border: #DCE6EC;
  --brand-gradient: linear-gradient(135deg, #074EA2 0%, #136A9A 45%, #3DA779 100%);
  --brand-hero-gradient: linear-gradient(135deg, #0D4286 0%, #074EA2 35%, #136A9A 70%, #2D9288 100%);
  --shadow-brand: 0 12px 32px rgba(13, 66, 134, 0.10);
  --shadow-neutral: 0 8px 24px rgba(21, 40, 59, 0.08);
  --focus-ring: 0 0 0 0.2rem rgba(7, 78, 162, 0.18);
  --section-padding-y: 80px;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa Bold.otf') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

section,
section[class] {
  box-sizing: border-box;
  padding-top: var(--section-padding-y) !important;
  padding-bottom: var(--section-padding-y) !important;
}

body {
  overflow-x: hidden;
  background-color: var(--brand-navy);
}

main {
  /* overflow: hidden; */
}

a {
  text-decoration: none;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
  box-shadow: none;
}
p{
  color: #ffffffba!important;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}

.service-read-more {
  white-space: nowrap;
  display: block;
  text-decoration: underline;
}

.sec-home-banner {
  position: relative;
  padding: 190px 0 0px 0;
}

.banner-3 {
  position: relative;
  padding: 193px 0 219px 0;

}
.sec-inner-banner .particles-dot  ,
.sec-home-banner .particles-dot {

  position: absolute;

  left: 0;

  right: 0;

  top: -100px;

  bottom: 70%;
}

.header-1 {
  z-index: 991;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0 0;
  transition: 0.7s;
}

.header-1.scroll {
  background: linear-gradient(to bottom right, #0D4286, #136A9A);
  padding: 15px 0;
}

.coure img {
  width: 370px;
  transform: scale(1.5);
  margin: 0 0 0px 63px;
}

.navbar-brand img {
  width: 100%;
}

.sec-home-banner .main-sec-banner {
  position: relative;
  z-index: 1;
}

.sec-home-banner .main-sec-banner h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;


}

.sec-home-banner .main-sec-banner h2 {
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;

}

.sec-home-banner .main-sec-banner p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  /* font-weight: lighter; */
  /* width: 55%; */
  /* display: block; */
  display: bock;
  /* margin: 0 auto; */
}

/* ... anmation... */


/* .container{  padding-top: 20px;
    padding-bottom: 20px;} */




.content h2 {
  font-size: 19px;
}

.box {
  /*top: 50%;*/
  /*left: 50%;*/
  transform: translate(0%, 0%);
  position: relative;
  width: 100%;
  /* height: 300px; */
  box-sizing: border-box;
  overflow: hidden;
  color: white;
  padding: 20px;
}

.box:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.5s;
  pointer-events: none;
}

.box:hover:before {
  left: -50%;
  transform: skewX(-5deg);
}


.box .content {
  /* position: absolute; */
  /* top: 15px; */
  /* left: 15px; */
  /* right: 15px; */
  /* bottom: 15px; */
  padding: 34px 0 0 0;
  text-align: center;
}

/* .box span {
  position: absolute;
} */

.box span.top,
.box span.bottom {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--brand-navy);
  left: 0;
  right: 0;
}

.box span.right,
.box span.left {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--brand-navy);
  top: 0;
  bottom: 0;
}

.box span.top {
  animation: animateTopBar 4s linear infinite;
  top: 0;
}

.box span.bottom {
  animation: animateBottomBar 4s linear infinite;
  bottom: 0;
}

.box span.right {
  animation: animateRightBar 4s linear infinite;
  right: 0;
}

.box span.left {
  animation: animateLeftBar 4s linear infinite;
  left: 0;
}

/*.box span{*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: block;*/
/*  box-sizing: border-box;*/
/*}*/

/*.box span:nth-child(1)*/
/*{*/
/*  transform:translate(-50%,-50%) scale(0.43) rotate(0deg);*/
/*}*/

/*.box span:nth-child(2)*/
/*{*/
/*  transform:rotate(90deg);*/
/*}*/

/*.box span:nth-child(3)*/
/*{*/
/*  transform:rotate(180deg);*/
/*}*/

/*.box span:nth-child(4)*/
/*{*/
/*  transform:rotate(270deg);*/
/*}*/

/*.box span:before*/
/*{*/
/*  content: '';*/
/*  position: absolute;*/
/*  width:100%;*/
/*  height: 2px;*/
/*  background: var(--brand-navy);*/
/*  animation: animate 4s linear infinite;*/
/*}*/

@keyframes animateTopBar {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: right;

  }

  100% {
    transform: scaleX(0);
    transform-origin: right;

  }
}

@keyframes animateBottomBar {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }

  50% {
    transform: scaleX(1);
    transform-origin: right;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: left;

  }

  100% {
    transform: scaleX(0);
    transform-origin: left;

  }
}

@keyframes animateLeftBar {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: top;

  }

  100% {
    transform: scaleY(0);
    transform-origin: top;

  }
}

@keyframes animateRightBar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;

  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;

  }
}

.content h2 {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 23px 0 10px 0;
  font-size: 25px;
}

.content h2 span {
  display: block;
  font-size: 20px;
}

.content p {
  font-size: 14px;
}

.main-local {
  padding: 75px 0 21px 0;
}

.main-local {
  color: #fff;
}

.texter-1 {
  margin: 0 0 0 -36px;
}

.imagess img {
  width: 35px;
  transition: 0.3s;
}

.abouts {
  /* background-image: url(../images/001234.png);
  background-size: 57%;
  background-repeat: no-repeat;
  background-position: right; */
}

.sconed ul li {
  display: inline-block;
}

.texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  font-size: 60px;

}

.main-local .texter-1 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.texter p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.texter-1 h2 {
  font-family: 'Nexa';
  font-style: bold;
  font-size: 25px;
}

.dotss {
  position: relative;

}

.main-dots {
  position: absolute;
  top: -23px;
  right: 0;
  left: 2%;
  width: 98%;
  -webkit-animation: rotate 15s normal linear infinite;
  animation: rotate 15s normal linear infinite;
  z-index: -1;
}

.main-img {
  /* width: 76%; */
  transform: scale(1.1);
  /* margin: 0px 0 0 52px; */
  object-fit: cover;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }

  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }

  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}





.card {
  transform: rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition-duration: 0.1s;

}

.card__image img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: lighten;
}

.card__heading h2 {
  margin: 0;
  transform: translateZ(30px);
}

.card.rounded,
.card.rounded .card__overlay {
  /* border-radius: 8px; */
}

.card.is-out {
  transform: rotateX(0) rotateY(0) !important;
  transition-duration: 1s;
}

#superman {
  background-color: transparent;
}

.seconds-cards {
  padding: 50PX 0 0 0;
}

/* .content button{
  background-color: transparent;
  border: none;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
} */
.goodwill .box .content {
  padding: 0px 0 0 0 !important;
}

/* .content button:hover{
  border-color: #fff;
  border-bottom: 1px solid #fff;
  transition-timing-function: linear;

} */

.draw-border {
  box-shadow: inset 0 0 0 2px rgb(13 66 134);
  color: #fff;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}

.draw-border::before,
.draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.draw-border::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.draw-border::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.draw-border:hover {
  color: #fff;
}

.draw-border:hover::before,
.draw-border:hover::after {
  border-color: #fff;
  transition: border-color 0s, width 0.20s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.20s;
}

.draw-border:hover::after {
  transition-delay: 0s, 0.20s, 0s;
}

.btn {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font-size: 16PX;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-style: italic;
  padding: 10px 10px 10px 10px;
  letter-spacing: 0.05rem;
}

.btn:focus {
  outline: 2px dotted #fff;
}

.hands-yet h4 {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 25px;
}

.hands-yet h2 {
  font-family: 'Nexa';
  font-size: 62px;
  font-weight: 500;
  color: #fff;
}

.hands-yet h2 span {
  display: block;
  font-size: 40px;
}

.hands-yet p {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
}

.hands-yet ul li {
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  padding: 10px 0 0 0;
}

.harder {
  padding: 137px 0 58px 0;
}

.hands-yet ul li i {
  padding: 0 8px 0 0px;
}

.handles {
  position: absolute;
  LEFT: 50%;
}

.LOTSSS {
  position: absolute;
  animation: flip-with-scale 5s infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

footer::before {
  content: '';
  position: absolute;
  background-image: url(../images/global2.png);
  z-index: -1;
  top: 26%;
  bottom: 0;
  left: 20%;
  right: 0;
  background-repeat: no-repeat;
}

footer {
  position: relative;
  z-index: 1;
}

.everlast P {
  padding: 16PX 0 10PX 0;
  color: #5E6F7F;
}













@keyframes flip-with-scale {
  0% {
    transform: perspective(400px) scaleX(1);
  }

  100% {
    transform: perspective(400px) scaleX(-1);
  }
}

.logo-for {
  padding: 109px 0 0 0;
}

.logo-for h2 {
  font-family: 'Nexa';
  font-size: 62px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.logo-for p {
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.logo-box {
  display: flex;
  justify-content: space-between;

}



.draw-border1 {
  box-shadow: inset 0 0 0 2px var(--brand-teal);
  color: #fff;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}

.draw-border1::before,
.draw-border1::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.draw-border1::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.draw-border1::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.draw-border1:hover {
  color: #fff;
}

.draw-border1:hover::before,
.draw-border1:hover::after {
  border-color: #fff;
  transition: border-color 0s, width 0.20s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border1:hover::before {
  transition-delay: 0s, 0s, 0.20s;
}

.draw-border1:hover::after {
  transition-delay: 0s, 0.20s, 0s;
}

.btn1 {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font-size: 16PX;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-style: italic;
  width: 219px;
  height: 109px;
  letter-spacing: 0.05rem;
}

.btn1:focus {
  outline: 2px dotted #fff;
}

.logo-box {
  padding: 20px 0 0 0;
}


.form-tops {
  text-align: center;
  color: #fff;
  padding: 100px 0 0 0;
}

.contact-form.form-tops {
  padding-top: 30px;
}

.contact-form.form-tops .form-title {
  margin: 0 auto;
  width: 85%;
  padding: 0 0 67px 0;
}

.custom-input input {
  width: 97%;
  height: 47px;
  border: 1px solid black;
  border-radius: 18px;
  outline: none;
  background-color: var(--brand-navy);
  PADDING: 0 0px 0 29px;
  color: #fff;
  ;
}

.banner-2 {
  padding: 144px 0 0 0 !important;
}

.golbel {
  height: 70vh;

}

.form-tops h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.form-tops h2 {
  font-family: 'Nexa';
  font-style: bold;
  font-size: 60px;
}

.form-tops p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.aman {
  padding: 18px 0 0 0;
}

.text-area textarea {
  width: 100%;
  BORDER-RADIUS: 17PX;
  HEIGHT: 145PX;
  BACKGROUND-COLOR: var(--brand-navy);
  BORDER: NONE;
  outline: none;
  resize: none;
  PADDING: 5px 0px 0 29px;
  color: #fff;
  ;
}

.form-tops input::placeholder {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: #5E6F7F;
}

.text-area textarea::placeholder {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: #5E6F7F;
}



#home_wave {
  position: absolute;
  top: 0;
  z-index: -1;
}



.btn12 {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background-color: var(--brand-navy);
  padding: 17px 60px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
  border-radius: 20PX;
}

.btn12 span {
  position: relative;
  z-index: 1;
}

.LOCAL-BTN {
  padding: 20PX 0 10PX 0;
}

.btn12:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: var(--brand-teal);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn12:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  color: black;
}

.firts-footer .footer-logo img {
  border-bottom: 5px solid var(--brand-navy);
  padding: 20px 0 20px 0;
}

.footer-logo-p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  padding: 22px 0px 0px 0px;
  font-family: 'Outfit', sans-serif;
}

footer .icon ul li a {
  color: #fff;
  /*display: flex;*/

}

footer .icon ul li a {
  font-size: 15px;
  padding: 8px 15px 8px 15px;
  border: 2px solid white;
  border-radius: 16px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .icon ul li a:hover {
  border-color: #fff;
  color: var(--brand-navy);
  background-color: #fff;
}

footer .icon ul {
  display: flex;
}

footer .icon ul li {
  padding: 10px 32px 10px 0;
}

footer .help-1 h2 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 5px solid var(--brand-navy);
  padding: 40px 0 20px 0;
}

footer .help-2 ul li a {
  list-style: none;
  color: #fff;
  text-align: start;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-style: light;
}

.help {
  padding: 0px 0px 0 52px;
}

footer .help-2 .top-class {
  padding: 38px 0 0 0;
}

footer .help-2 .topi {
  padding: 20px 0 0 0;
}

footer .last-h2 h2 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 5px solid var(--brand-navy);
  padding: 40px 0 20px 0;
}


footer .lasty p {
  width: 132%;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  padding: 22px 0px 0px 0px;
}

.last-customs input {
  height: 43px;
  border-radius: 28px;
  padding: 0 0 0 26px;
  font-size: 16px;
  position: relative;
  outline: none;
}

.last-customs i {
  position: absolute;
  color: white;
  margin: 3px 0 0 -42px;
  padding: 10px;
  background-color: var(--brand-navy);
  border-radius: 20px;
}

.last-customs {
  display: flex;
}

.everlast {
  text-align: center;
  color: #fff;
}

.lode {
  border-top: 3px solid var(--brand-navy);
}

.everlast P {
  padding: 10PX 0 10PX 0;
}

footer {
  PADDING: 100px 0 0 0;
}

/* menu css */
.menu-icon {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  z-index: 991;
  transition: 0.3s;
}

.toggle-icon-text {
  color: #fff;
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  text-transform: capitalize;

}

.menu-icon a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  width: 30px;
  height: 30px;
  box-shadow: none;
  transition: 0.3s;

}

.menu-icon a span {
  background-color: #fff;
  height: 3px;
  width: 35px;
  border-radius: 5px;
  transition: 0.3s;
}

.menu-icon a .bar-1 {
  width: 30px;
}

.menu-icon a .bar-3 {
  width: 25px;
}

.menu-icon a.active {
  transform: rotate(180deg) translateX(-15px);
}

.menu-icon a.active .bar-1 {
  transform: rotate(-45deg) translateY(18px);
  width: 30px;
}

div#particle-canvass {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.menu-icon a.active .bar-2 {
  opacity: 0;
}

.menu-icon a.active .bar-3 {
  transform: rotate(45deg) translateY(-19px);
  width: 30px;
}

.menu-sec {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, #0D4286, #136A9A);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transform: translateX(-100%);
  transition: cubic-bezier(.77, 0, .175, 1) .8s, -webkit-transform cubic-bezier(.77, 0, .175, 1) .8s;
}

.menu-bg-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.menu-bg-images img {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.menu-sec.show-menu {
  transform: translateX(0);
}

.menu-sec .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-sec .menu .menu-item {
  position: relative;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  opacity: 0;
  transform: translate(0, 100%);
}

.menu-sec.show-menu .menu .menu-item {
  opacity: 1;
  transform: translate(0, 0);
}

.menu-sec .menu .menu-item .menu-link {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  text-transform: capitalize;
  margin: 0 30px;
  font-weight: 400;
  /* line-height: 30px; */
  transition: 0.3s;
}

.menu-sec .menu .menu-item .menu-link span {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  transition: 0.3s;
}

.menu-sec .menu .menu-item:hover .menu-link span {
  color: var(--brand-blue);
}

.menu-sec .menu .menu-item .menu-link::before {
  content: attr(data-index);
  color: var(--brand-blue);
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.menu-sec.show-menu .menu .menu-item:nth-child(1) {
  transition-delay: 0.6s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(2) {
  transition-delay: 0.65s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(3) {
  transition-delay: 0.7s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(4) {
  transition-delay: 0.75s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(5) {
  transition-delay: 0.8s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(6) {
  transition-delay: 0.85s;
}

.menu-sec .menu .menu-item .m-sub-menu {
  position: absolute;
  left: 0;
  top: 105;
  padding: 15px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.menu-sec .menu .menu-item:hover .m-sub-menu {
  visibility: visible;
  opacity: 1;
}

.menu-sec .menu .menu-item .m-sub-menu li a {
  color: #fff;
  font-size: 20px;
  font-family: 'Nexa';
  text-transform: capitalize;
  transition: 0.3s;
  font-weight: 100;
}

.menu-sec .menu .menu-item .m-sub-menu li a:hover {
  color: var(--brand-blue);

}

/* menu css end */
/* about-us */
.abouts .loop h2 {
  font-weight: 600;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  background: -webkit-linear-gradient(21deg, #136A9A, #e9e9ea);
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  /* margin: 0 0 20px 0; */
  letter-spacing: 2px;
  -webkit-background-clip: text;
  text-align: center;
}

.abouts {
  padding: 150px 0 150px 0;
  position: relative;
}

.abouts .loop .looop-1 i {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px;
}

.abouts .loop .looop-1 {
  text-align: center;
}

.abouts .loop .looop-1 span a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.aboust-us-1 .main-local .texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  padding: 0 0 5px 0;
  font-size: 33px;
}

.imagess:hover img {
  transform: scale(1.2);
}

.loop {
  /* width: fit-content; */
}

.first-cards {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  width: 100%;
  /* background-position: 100% 22%; */
  background-size: cover;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8) !important;
  padding-top: 166px !important;
  padding-bottom: 72px !important;
  padding-left: 51px !important;
  /* border-radius: 20px; */
  /* box-shadow: 0px 2px 60px 0px rgba(13, 66, 134, 0.18); */
}

.sconed ul li a {
  color: #fff;
  padding: 5PX 5PX 5PX 5PX;
  font-size: 18px;
  transition: 5.s;
}

.sconed {
  margin: 20px 0 0 0;
}

.sconed .fb a:hover {
  color: var(--brand-blue);
}

.sconed .insta a:hover {
  color: var(--brand-green);
}

.sconed .lindin a:hover {
  color: var(--brand-teal);
}

.scond-about-us .joji:nth-child(even) {
  transform: translateY(100%);

}

.hyt {
  height: 341px;
  padding: 0 0 690px 0;
}

.scond-about-us h2 {
  position: relative;
  text-align: center;
  margin: 69px 0px 47px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.scond-about-us h2:before {
  content: '';
  position: absolute;
  height: 2px;
  width: 150px;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-blue);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background-color: var(--brand-navy);
}

.loader svg text {
  stroke: var(--brand-teal);
  font-size: 100px;
  font-weight: 700;
  stroke-width: 5;
  text-transform: uppercase;
  animation: textanimate 3s infinite alternate;
}


@keyframes textanimate {
  0% {
    stroke-dasharray: 0 50%;
  }

  100% {
    stroke-dasharray: 50% 0;
  }
}

.map-usa {
  padding: 150px 0 150px 0;
  position: relative;
  position: relative;
  min-height: 32vw;
  background-image: url(../images/21121.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.map-usa .particles-dot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.map-usa h2 {
  font-weight: 600;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  background: -webkit-linear-gradient(21deg, #074EA2, #e9e9ea);
  width: fit-content;
  margin: 0 auto;
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  /* margin: 0 0 20px 0; */
  letter-spacing: 2px;
  -webkit-background-clip: text;
  text-align: center;
}

.map-usa .doop {
  position: relative;
  text-align: center;
  z-index: 99;
  text-align: center;
}

.map-usa .doop .looop-1 span a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.map-usa .doop .looop-1 i {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px;

}

.sec-title h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.balist.sec-title span {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.balist.sec-title {
  text-align: center;
}

.balist.sec-title span i {
  padding: 0px 6px 0 7px;
  font-size: 20px;
  color: var(--brand-blue);
}

.second-blasi .let h3 {
  color: #fff;
  line-height: 48px;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
  max-width: 400px;
}

/* .second-blasi  .let .main-black{
  line-height: 40px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0px 9px 0px 0px;
} */
.second-blasi .let h3 span {
  line-height: 40px;
  color: var(--brand-blue);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

section.second-blasi {
  margin: 32px 0 0 0;
}

section.second-blasi .onlin p {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 34px;
  color: #fff;
  margin-bottom: 0;
}

.roys {
    height: 227px;
    background-image:
        linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
        url(../images/Bgaaa-01-01.png);
    background-position: 58% 89%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
    margin: 108px 0 0 0;
    display: flex;
    align-items: center;
}

.roys .counter ul li h4 span,
.roys .counter ul li h4 {
  text-align: center;
  width: 99%;
  font-size: 31px;
  /* margin: 0 0 13px 0; */
  font-family: 'Poppins', sans-serif;
  font-style: bold;
  font-weight: 700;
}

.roys .counter ul li {
  display: inline-block;
  text-align: center;
  color: #fff;
  PADDING: 0 15px;
  /* margin: 86px 0 0 0; */
  width: 20%;
}

.roys .counter h4 span {
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
}

.roys .counter ul {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter .localjoi {
  color: var(--brand-blue);
  font-family: 'Nexa';
  font-size: 16px;
  /* color: #b48eff; */
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: capitalize;
}

.let-us-breath .sec-title {
  margin: 50px 0;
}

.let-us-breath .card-item .card {
  background-color: transparent;
  text-align: center;
  padding: 25px;
}

.let-us-breath .card-item .card .item-icon img {
  width: 100px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

/* testimonials sec */
.testimonial-sec .sec-title {
  padding: 50px 0 0;
}

/* / slider / */
.testi-wrap {
  position: relative;
  height: 430px;
}

.client-single {
  margin-top: 20px;
  text-align: center;
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.client-info,
.client-comment {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  display: none;
  opacity: 0;
  transition-delay: 0.5s;
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  opacity: 0;
  visibility: hidden;
}

.client-single.position-1 {
  -webkit-transform: scale(0.65);
  transform: scale(0.65);
}

.client-single.position-2 {
  left: 10px;
  top: 0;
}

.client-single.position-3 {
  left: 0;
  top: 176px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.position-4 {
  left: 92px;
  top: 330px;
}

.client-single.position-5 {
  top: 30px;
  right: 55px;
}

.client-single.position-6 {
  top: 220px;
  right: 56px;
}

.client-single.position-7 {
  top: 360px;
  right: 220px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.active {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60%;
}

.client-single.active .client-comment,
.client-single.active .client-info {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.client-single:not(.active) {
  -webkit-transform: scale(0.55);
  transform: scale(0.55);
  z-index: 99;
}

.client-single.active .client-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  position: relative;
}

.client-single .client-img img {
  width: 150px;
  border-radius: 50%;
  cursor: pointer;
}

.client-single.active .client-img img {
  max-width: 120px;
  margin: 0 auto 24px;
  border: 0;
}

.client-comment {
  padding: 0 30px;
}

.client-comment h3 {
  font-size: 19px;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}

.client-comment span i {
  font-size: 40px;
  color: var(--brand-blue);
  margin: 10px 0;
  display: inline-block;
}

.client-info h3 {
  color: #fff;
  font-weight: 600;
  margin: 15px 0 0;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 25px;
}

.client-info h5 {
  font-family: "Poppins", 'serif';
  font-size: 16px;
}

.client-info p {
  color: var(--brand-blue);
  text-transform: uppercase;
}

/* testimonials sec end */

/* portfolio tabs css start */
.portfolio-all .portfolio-filter-btn {
  overflow: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--brand-blue);
  border-radius: 25px;
  padding: 6px;
  margin: 30px auto;
}

.portfolio-all .portfolio-filter-btn button {
  position: relative;
  z-index: 1;
  width: 100%;
  border: none;
  border-radius: 25px;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #DCE6EC;
  height: fit-content;
  background-color: transparent;
  text-transform: capitalize;
  transition: 0.4s;
}

.portfolio-all .portfolio-filter-btn button.active {
  color: #fff;
  box-shadow: 0px 15px 39px rgb(0 0 0 / 20%);
  background-color: var(--brand-blue);
  transition: 0.3s;
}

.portfolio-all .tabs-slider-wrapper {
  margin-bottom: 20px;
}

.portfolio-all .logo-wrapper-ind,
.portfolio-all .web-wrapper-ind,
.portfolio-all .brouchers-wrapper-ind,
.portfolio-all .stationary-wrapper-ind {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-all .logo-wrapper-ind .logo-tab-slide-wrap,
.portfolio-all .stationary-wrapper-ind .stationary-tab-slide-wrap {
  width: 25%;
  padding: 10px;
}

.portfolio-all .brouchers-wrapper-ind .broucher-tab-slide-wrap,
.portfolio-all .web-wrapper-ind .logo-tab-slide-wrap {
  width: 33.33%;
  padding: 10px;
}

.portfolio-all .tab-inner-slide-wrap img {
  border-radius: 15px;
}

/* portfolio tabs css end */

/* faq sec css start */
.faq-sec .faq-card {
  text-align: center;
  color: #fff;
  margin: 30px 0;
}

.faq-sec .faq-card .icon {
  position: relative;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  margin: 15px auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #242731;
  z-index: 1;
}

.faq-sec .faq-card .icon:after,
.faq-sec .faq-card .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  animation: ripple 2s linear infinite;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.2s;
  z-index: -1;
}

.faq-sec .faq-card .icon:after {
  animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.5);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.faq-sec .faq-card .icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: #fff;
}


.faq-sec .faq-card .title {
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.faq-sec .faq-card .description {
  font-size: 16px;
  line-height: 25px;
  font-family: 'Outfit', sans-serif;
  opacity: 0.8;
}

/* faq sec css end */

/* test css */
.pinky {
  background-color: #fff;
  padding: 80px 0;
}

.pinky-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pinky-content span {
  color: var(--brand-teal);
  font-family: 'Nexa';
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pinky-content h2 {
  color: var(--brand-navy);
  font-family: 'Nexa';
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.pinky-content p {
  color: #5e6f7f;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.sec-wrapper {
  margin: 40px auto 0;
  flex: 0 0 1;
  display: flex;
  position: relative;
}

.sec-wrapper svg path {
  stroke: var(--brand-navy);
}

.sec-wrapper svg text {
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.9);
}

.sec-wrapper svg .bottom text {
  font-size: 12px;
}

.line.top {
  stroke-dasharray: 1600;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: dash 3s ease-in 0.5s forwards;
}

.line.top.topOne {
  animation-delay: 0s;
}

.line.top.topTwo {
  animation-delay: 0.2s;
}

.line.top.topThree {
  animation-delay: 0.4s;
}

.line.top.topFour {
  animation-delay: 0.6s;
}

.line.top.topFive {
  animation-delay: 0.8s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 2000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.15;
  }
}

.line.bottom {
  stroke-dasharray: 1600;
  stroke-dashoffset: -1000;
  opacity: 0;
  animation: dash-reversed 3s ease-in normal forwards;
}

.line.bottom.bottomOne {
  animation-delay: 0.8s;
}

.line.bottom.bottomTwo {
  animation-delay: 1s;
}

.line.bottom.bottomThree {
  animation-delay: 1.2s;
}

@keyframes dash-reversed {
  from {
    stroke-dashoffset: -1000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.2;
  }
}

.block {
  stroke-dasharray: 1600;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: block-animation 1.5s ease-in-out 0.5s forwards;
}

.block.topOne {
  animation-delay: 0s;
}

.block.topTwo {
  animation-delay: 0.2s;
}

.block.topThree {
  animation-delay: 0.4s;
}

.block.topFour {
  animation-delay: 0.6s;
}

.block.topFive {
  animation-delay: 0.8s;
}

.block.bottomOne {
  animation-delay: 2s;
}

.block.bottomTwo {
  animation-delay: 2.25s;
}

.block.bottomThree {
  animation-delay: 2.5s;
}

@keyframes block-animation {
  from {
    transform: translate(0, 20px);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.line.top {
  stroke-dasharray: 1600;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: dash 3s ease-in 0.5s forwards;
}

.line.top.topOne {
  animation-delay: 0s;
}

.line.top.topTwo {
  animation-delay: 0.2s;
}

.line.top.topThree {
  animation-delay: 0.4s;
}

.line.top.topFour {
  animation-delay: 0.6s;
}

.line.top.topFive {
  animation-delay: 0.8s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 2000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.15;
  }
}

.line.bottom {
  stroke-dasharray: 1600;
  stroke-dashoffset: -1000;
  opacity: 0;
  animation: dash-reversed 3s ease-in normal forwards;
}

.line.bottom.bottomOne {
  animation-delay: 0.8s;
}

.line.bottom.bottomTwo {
  animation-delay: 1s;
}

.line.bottom.bottomThree {
  animation-delay: 1.2s;
}

@keyframes dash-reversed {
  from {
    stroke-dashoffset: -1000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.2;
  }
}

.circles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 374px;
}

.circle {
  opacity: 0;
  display: block;
  position: absolute;
  height: 250px;
  width: 250px;
  margin: auto;
  border-radius: 50%;
  background: rgba(13, 66, 134, 0.10);
  border: 1px solid rgba(19, 106, 154, 0.20);
  animation: circle-pulse 6s linear infinite forwards;
  mix-blend-mode: multiply;
}

.circle.circleOne {
  animation: circle-entry 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1 forwards;
  animation-delay: 1.35s;
  background: var(--brand-navy);
  z-index: 5;
}

.circle.circleTwo {
  animation-delay: 2s;
}

.circle.circleThree {
  animation-delay: 4s;
}

.circle.circleFour {
  animation-delay: 6s;
}

@keyframes circle-pulse {
  from {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  to {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes circle-entry {
  from {
    transform: scale(0);
    opacity: 0.5;
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.circles-container .logo {
  display: flex;
  color: white;
  font-family: sans-serif;
  position: relative;
  z-index: 6;
  animation: block-animation 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.5s forwards;
}

.dots {
  stroke-linecap: round;
  stroke-dasharray: 0.5 200;
  animation: dots 5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  stroke: red;
  opacity: 0;
}

.dots.dotsOne {
  animation-delay: 1.1s;
}

.dots.dotsTwo {
  animation-delay: 4s;
}

.dots.dotsThree {
  animation-delay: 2.8s;
}

.dots.dotsFour {
  animation-delay: 2s;
}

.dots.dotsFive {
  animation-delay: 4.9s;
}

.dots.bottom.dotsOne {
  animation: dots-reversed 3.5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  animation-delay: 3s;
}

.dots.bottom.dotsTwo {
  animation: dots-reversed 3.5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  animation-delay: 3s;
}

.dots.bottom.dotsThree {
  animation: dots-reversed 3.5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  animation-delay: 5s;
}

@keyframes dots {
  to {
    stroke-dashoffset: -200;
  }
}

@keyframes dots-reversed {
  from {
    stroke-dashoffset: -200;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.66;
  }
}

/* 
  font-family: 'Kanit', sans-serif;
  font-family: 'Nexa';
  font-family: 'Outfit', sans-serif;
  font-family: 'Poppins', sans-serif;

*/
.header-1 .collapse .navbar-nav .nav-item a {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  transition: 10.0s;
  border-bottom: 1px solid transparent;
}

.header-1 .collapse .navbar-nav .nav-item {
  padding: 0 10px 0 10px;
}

.header-1 .collapse .navbar-nav .nav-item a:hover {
  border-bottom: 1px solid white;
}

.header-1 .collapse .navbar-nav {
  display: none;
}

.header-1.scroll .collapse .navbar-nav {
  display: flex;
}

.menu-icon.scroll-menu {
  transform: translateY(-50%) translateX(-200%);
}

.cool125 ul .preety {
  padding: 35px 0 0 23px;
}

.cool125 ul {
  display: flex;
}

.since1983 {
  padding: 100px 0 0 0;
}

.since1983 .perfect-858 h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;


}

.since1983 .perfect-858 h2 {
  color: #fff;
  font-size: 45px;
  font-family: 'Nexa';
  font-weight: 900;

}

.since1983 .perfect-858 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;


}

.doctrol {
  padding: 100px 0 0 0;
}

.doctrol .herbion h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.doctrol .herbion h2 {
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.doctrol .undergarde p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.secondf img {
  animation: slidein 3s alternate infinite;
}

.pharma {
  padding: 100px 0 0 0;
}

.pharma .fashion h2 {
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.pharma .fashion p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.electircal h4 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.electircal h2 {
  text-align: center;
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.electircal {
  padding: 100px 0 0 0;
}

.electircal p {
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
}

.personal {
  padding: 100px 0 0 0;
}

.personal h4 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.personal h2 {
  text-align: center;
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.personal p {
  color: #ffffff;
  font-size: 16px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.main-123 {
  display: flex;
  justify-content: space-between;
  padding: 27px 0 0 0;
  margin: 33px 0 0 0;
  border-top: 2px solid;
}

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

.localhost img {
  width: 250px;
  height: 99px;
  padding: 0px 10px 0 7px;
  object-fit: contain;
}

.main-321 .bru p {
  text-align: start !important;
  color: #ffffff;
  font-size: 14px;
  padding: 0 26px 0 1px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
}

.main-321 .bru h4 {
  text-align: start !important;
}

@keyframes slidein {
  0% {
    transform: translatey(0%);
  }

  100% {
    transform: translatey(50px);
  }
}

.since1983 .perfect-858 {
  padding: 0 0 0 20px;
}

.arma {
  border-right: 1px solid;
}

.bulb {
  padding: 80px 0 50px 0;
}

.LADY-diyana h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.LADY-diyana h2 {
  color: #fff;
  font-size: 45px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.LADY-diyana p {
  color: #ffffff;
  font-size: 16px;
  padding: 0 26px 0 1px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
}

.banner-3 {
  background-image: url(../images/Layer8787.png);
  width: 100%;
  background-size: cover;
  object-fit: cover;
  /* background-position: 100% 100%; */
  height: 133vh;
  background-repeat: no-repeat;
}

.banner-3 h2 {
  padding: 50px 0 0 0;
}

.saty {
  width: 20%;
}

.saty img {
  width: 100%;
  height: 76px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.mobiling .staine h2 {
  color: #fff;
}

.intro .aresoal {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
}

.exper {
  padding: 100px 0 0 0;
}

.exper .tankin h4 {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-size: 30px;
  font-weight: 500;

}

.exper .tankin h2 {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.exper .tankin p {
  color: #ffffffba;
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 0 3px 0;
}

.exper .tankin ul li i {
  color: var(--brand-navy);
  font-size: 27px;
  font-weight: 500;
  line-height: 25px;
  padding: 0 8px 22px 0px;
}

.exper .tankin ul li {
  color: #ffffffba;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.ustad {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  /* font-style: italic; */
  padding: 23px 0 10px 0;
  font-size: 50px;
  text-align: center;
  width: 62%;
  margin: 0 auto;
  display: block;
}

.shake {
  animation-name: shake;
  padding: 0 0 0 24px;
  width: 80%;
}

.aresoal {
  display: flex;
  /* align-items: center; */
  padding: 30px 0 20px 0;
  border-radius: 29px;
  margin: 24px 0px 0 0;
  background-color: #fff;
  transition: 0.3s;
}

.aresoal:hover {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
}

.mobiling {
  padding: 75px 0 0 0;
}

.banner-3 h2,
.banner-3 p {
  text-align: center;
}

.cool125 ul .preety-1 {
  padding: 1px 0 0 50px;
}

.cool125.col45 {
  margin: 36px 0 0 0;
}

.ecoc {
  display: flex;
  align-items: center;
}

.cool125 .box .products1 h2 {
  text-align: start;

}

.products1 {
  padding: 0 0 0 33px;
}

.cool125 .box .products1 p {
  text-align: start;
  color: #ffffffba;
}

.cool125 .headphone .ecoc {
  padding: 13px 0 12px 0 !important;
}

.cool125 .headphone .ecoc img {
  width: 142px;
  object-fit: cover;
}

.aresoal:hover .shake p {
  color: #fff !important;
}

.aresoal:hover .shake h2 {
  color: #fff !important;
}

.aresoal .saty img {
  /* -webkit-filter: grayscale(100%); */
  /* Safari 6.0 - 9.0 */
  /* filter: grayscale(100%); */
  filter: invert(1);
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.aresoal:hover .saty img {
  filter: brightness(0) invert(1.5);
}

.rooter {
  white-space: normal !important;
  text-decoration: none;
}

.shake p {
  color: #000 !important;
  font-size: 18px;
  color: #fff;
  padding: 0 0 0 -1px;
  line-height: 23px;
  padding: 0 20px 0 0px;
  font-family: 'Outfit', sans-serif;
}

.shake h2 {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 3px 0 3px 0px;
  font-size: 25px;
  color: #000 !important;
}


.modei {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  padding: 50px 20px 210px 20px;
  border-radius: 25px;
}

.pvt {
  margin: -164px 0 0px 0;
}

.modei h4 {
  text-align: center;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 3px 0 3px 0px;
  font-size: 25px;
  color: #fff;
}

.modei p {
  color: #fff;
  font-size: 18px;
  padding: 0 0 0 -1px;
  line-height: 23px;
  font-family: 'Outfit', sans-serif;
}

.modei h2 {
  text-align: center;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  padding: 10px 0 10px 0;
  font-size: 50px;
}

.custom-45 img {
  margin: 0 auto;
  display: block;
  padding: 0 0 13px 0;
  border-radius: 10px;
}

.custom-45 h3 {
  text-align: center;
  color: #000;
  font-family: 'Kanit', sans-serif;
  padding: 5px 0 5px 0;
  font-size: 30px;

  font-weight: 600;
}

.custom-45 p {
  text-align: center;
  color: #000;
  font-size: 18px;
  color: #000!important;
  padding: 0 0 0 -1px;
  padding: 0 21px 1px 21px;
  line-height: 23px;
  font-family: 'Outfit', sans-serif;
}

.modei p {
  text-align: center;
  color: #fff;
}

.custom-45 {
  background-color: #fff;
  padding: 30px 0 31px 0;
  border-radius: 31px;
  height: 273px;
}

.falll {
  display: flex;
  justify-content: space-around;
}

.fresherner img {
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

section.lora {
  padding: 73px 0 0 0;
}

.golbal {
  display: flex;
}

.shadow {
  padding: 91px 0 0 0;
}

.shadow .content-85 {
  padding: 1px 0 28px 32px;
}

.shadow .golbal .content-85 h2 {
  /* text-align: center; */
  color: #fff;
  font-family: 'Kanit', sans-serif;
  /* padding: 10px 0 10px 0; */
  font-size: 35px;
}

.shadow .golbal .content-85 p {
  font-size: 18px;
  /* line-height: 23px; */
  font-family: 'Outfit', sans-serif;
  color: #ffffffba;
}

.shadow .golbal img {
  width: 166px;
}

.shadow .itali h2 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 41px;
  font-weight: 900;
}

.shadow .itali p {
  color: #ffffffba;
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
}

.shadow .itali {
  padding: 0 0 0 26px;
}

.btn858 {
  margin: 0 0 0 0 !important;
}

.everword {
  padding: 50px 0 0 0;
}

.everword .infinxi h2 {
  color: #fff;
  font-family: 'Outfit';
  font-style: bold;
  font-weight: bold;
  font-size: 41px;
  padding: 20px 0 34px 0;
}

.fresherner {
  position: relative;
}

.fresherner .upper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  animation-direction: reverse;

}

.infinxi h3 {
  color: #fff;
  font-family: 'Outfit';
  font-weight: 400;
  font-size: 24px;
  /* padding: 20px 0 26px 0; */
}

.infinxi p {
  color: #ffffffba;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.rado img {
  transform: scale(1.5);

}

.jugi {
  padding: 0 0 0 14px;
}

.wheel img {
  width: 79%;
  display: block;
  mix-blend-mode: hard-light;
  margin: 0 auto;
}

.banner-3 {
  background-image: url(../images/Layer8787.png);
}


.sec-home-banne {
  background-image: url(../images/185858.png);
  background-size: cover;
  width: 100%;
  height: 150vh;
}
.sec-inner-banner{
  background-image: url(../images/banner-bg.jpg);
  background-size: contain;
}
.main-sec-banner{
  min-height: 100vh;
}
.sec-inner-banner .circle-img-wrapper{
  position: relative;
}
.sec-inner-banner .circle-img-wrapper .spin-efct{
  position: absolute;
  top: -13px;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  animation: 10s spin2 linear infinite;
  transform: translate(-50%,-50%) scale(0.43);
}
.sec-inner-banner .circle-img-wrapper .text-banner{
  position: absolute;
  top: calc(50% - 13px);
  left: 50%;
  transform: translate(-50%,-50%);
  width: 30%;
  height: 30%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-inner-banner .circle-img-wrapper .text-banner h2{
  font-family: 'Nexa';
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}
.sec-inner-banner .circle-img-wrapper .text-banner p{
  font-size: 12px;
}
section.volet {
  padding: 100px 0 0 0;
}
.tapal h2 {
  font-size: 63px;
  margin: -19px 0 0 -12px;
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  font-family: 'Nexa';
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.volet .tapal-1 p{
color: #fff;
    font-size: 16px;
    /* padding: 0 0 0 -1px; */
    line-height: 28px;
    font-family: 'Outfit', sans-serif;
}
.volet h3 {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 10px 0 20px 0;
  font-size: 50px;
  text-align: center;
}
.twisto .tomor h2{
  color: #fff;
    font-family: 'Kanit', sans-serif;
    /* font-style: italic; */
    /* padding: 10px 0 20px 0; */
    font-size: 40px;
} 
.twisto .tomor p{
  color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Outfit', sans-serif;
}
.volet .paper img{
  width: 90%;
}
.twisto .flavore i{
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  /* font-family: 'Nexa'; */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  /* right: 36%; */
  font-size: 33px;
  position: absolute;
  left: -9px;
  transform: translateX(-100%);
  /* transform: rotateX(45deg); */
} 

.role .gar{
  font-family: 'Nexa';
  text-align: center;
  color: #fff;
  padding: 0 0 18px 0px;
  font-size: 40px;
}
.rometea img {
  width: 106%;
  height: 226px;
  object-fit: cover;
}
.role .rolaa{
  font-family: 'Nexa';
  text-align: center;
  color: #fff;
  font-size: 24px;
}
.twisto {
  position: relative;
  padding: 70px 0 50px 0;
}
.flavore {
  padding: 0 0 0 12px;
}
.jelly img {
  width: 92%;
}
.twisto .flavore h2{
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 3px 0 3px 0px;
  font-size: 25px;
  position: relative;
  color: #fff;
}
.role{
  position: relative;
}
.twisto .flavore p{
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
}
.role .mater h2{
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  font-family: 'Nexa';
  position: relative;
}
.role .mater h2 i {
    position: absolute;
    left: -8px;
    transform: translateX(-100%);
}
.mater {
  padding: 0 0 0 21px;
}
.zip {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  border-radius: 22px;
  padding: 23px 17px 10px 28px;
}
.eyes{
  height: inherit !important;
}
.bottel .router-cards{
  text-align: center;
  background: var(--brand-navy);
  background: linear-gradient(180deg, #0D4286 0%, #136A9A 48%);
  padding: 16px 12px 16px 12px;
  border-radius: 12px;
  HEIGHT: 100%;
}
section.wrap {
  padding: 95px 0 0 0;
}
section.wrap .civil h2{
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  font-family: 'Nexa';

}
section.wrap .civil{
  font-size: 17px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  padding: 10px 0 0 0;

}
 .bottel .router-cards h4{
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  font-family: 'Nexa';
  padding: 19px 0 6px 0;
}
.circule {
  margin: 0 0 0 -109px;
}
.bottel {
  padding: 50px 0 0 0;
}
.dulex{
  text-align: center;
  margin: 29px 0 0 0;
  border: 3px solid var(--brand-navy);
  padding: 16px 14px 16px 10px;
}
.dulex h2{
  border-radius: 106% 113% 142% 111% / 24% 29% 64% 66%;
  border: 1px solid #fff;
  width: 24%;
  margin: 0 auto;
  background: #fff;
  display: block;
  padding: 3px 0 3px 0;
  /* margin: 0 0 0 0; */
  font-family: 'Nexa';
  color: var(--brand-navy);
  font-size: 20px;
  font-weight: 500;
}
.dulex h3{
  color: #fff;
  font-size: 26px;
  margin: 4px 0 4px 0;
  font-weight: 500;
  white-space: nowrap;
  /* line-height: 54px; */
  font-family: 'Outfit', sans-serif;
}
.dulex  p{

  font-size: 16px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
}
.funds .tisur h2{
  font-size: 41px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0 0 0;
  font-family: 'Nexa';
}
.funds .tisur h5{
  font-size: 24px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-weight: 500;
  line-height: 36px;
}
.funds .tisur p{
  font-size: 16px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
  line-height: 31px;
  padding: 9px 0 4px 0;
  font-weight: 400;
}
.golbale{
  background-image: url(../images/downloopy.png);
  width: 100%;
  background-size: contain;
  height: 58vh;
  padding: 137px 0 0 0;
  text-align: center;
  background-repeat: no-repeat;
  color: #fff;
}
.golbale h2 {
  font-size: 61px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.norwa .golbale p{
  color: #fff!important;
  width: 78%;
  font-weight: 700;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
}
.norwa .invert{
  background: var(--brand-navy);
  background: linear-gradient(91deg, rgb(13 66 134) 8%, rgb(90 92 120 / 0%) 80%);
  border-top-left-radius: 438px;
  border-bottom-left-radius: 428px;
}
.norwa .PRO h2{
  font-size: 41px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0 0 0;
  font-family: 'Nexa';
}

section.norwa {
  padding: 100px 0 0 0;
}
.airpods .ruber h2{
  font-size: 41px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0 0 0;
  font-family: 'Nexa';
}
.airpods .ruber p{
  font-size: 17px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 35px;;
}
.airpods .ruber li{
  position: relative;
  padding: 11px 0 0 40px;
  color: #fff;
  font-size: 18px;
}

.airpods .ruber li::before {
  position: absolute;
  content: "";
  height: 4px;
  background-color: var(--brand-teal);
  width: 5%;
  margin-left: 15px;
  top: 64%;
  /* transform: rotate(45deg); */
  transform: translateX(-100%);
  left: 10px;
  } 
.airpods{
    padding: 100px 0 100px 0;
  }
  .sever{
    padding: 100px 0 100px 0 ;
  }
  .star-6{
    background-image: url(../images/Groupcopy.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
 
.watchers h2{
  padding: 229px 57px 0 26px;
  color: #fff;
  font-family: 'Nexa';
  white-space: nowrap;
  text-align: center;
}
.watchers p{
  padding: 0px 33px 25px 38px;
}
.sever {
  padding: 51px 0 147px 0;
}
.gap{
  padding: 100px 0 0 0;
}
.cumputer .robwe h4{
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}
.cumputer .robwe h2{
  color: #fff;
  font-family: 'Nexa';
  white-space: nowrap;
  font-size: 36px;

}
.cumputer .robwe p{
  font-size: 17px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;

}
.cumputer{
  padding: 100px 0 0 0;
}
.dell{
  background-image: url(../images/7777777-0y.png);
  background-position: center center;
  width: 100%;
  background-repeat: no-repeat;
  padding: 100px 0 100px 0;
  margin: 91px 0 0 0;
  /* height: 99vh; */
}
.dell  .black-1{
  padding: 50px 0 50px 0;
}
.dell .black-1 ul li {
  padding: 32px 53px 0 4px;
}
.dell .black-1{
text-align: end;
} 
.dell  .black{
  padding: 50px 0 50px 0 ;
}
.dell .black ul li {
  padding: 38px 0px 0 53px;
  position: relative;
}
 
.dell .black{
  padding: 50px 0 32px 0;
 
}
.dell .black h2{
  color: #fff;
}
.dell .black-1 h2{
  color: #fff;
}
.dell .black-1 ul li{
  position: relative;
  
}
.dell .black-1 ul li img{
  position: absolute;
  transform: translate(-100%);
  right: -63px;
  top: 27px;
}
.dell .black ul li img{
  position: absolute;
  transform: translate(-100%);
  /* right: -63px; */
  left: 32px;
  top: 41px;
}
.nutss .crime h2{
  color: #fff;
  font-family: 'Nexa';
  font-size: 40px;
}
.nutss .crime h2{
  color: #fff;
  font-family: 'Nexa';
  /* white-space: nowrap; */
  font-size: 43px;
  padding: 0 0 18px 0;
}
.nutss .crime ul li{
  padding: 0px 0 9px 50px;
  position: relative;
}
.nutss .crime ul li img{
  position: absolute;
  top: 9px;
  width: 7%;
  transform: translate(-100%);
  left: 29px;
}
.nutss .crime ul li h4{
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;

}
.head h4{
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}
.head h2{
  text-align: center;
  color: #fff;
  font-family: 'Nexa';
  font-size: 40px;
  padding: 0px 0 35px 0;
}
.head .rooter-1 {
  text-align: center;
  /* padding: 33px 0 0 0; */
  border: 2px solid cornflowerblue;
}
.head .rooter-1 h3{
  color: #fff;
  font-size: 40px;
  font-family: 'Nexa';
  padding: 17px 0 0 0;
}
.head .rooter-1 h5{
  color: #fff;
  font-size: 30px;
  font-family: 'Kanit', sans-serif;

}
.head .rooter-1 p{
  font-size: 17px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
  padding: 4px 0 4px 6px;
}
.march{
  padding: 100px 0 0 0;
}
.march .shoperr  h2{
  color: #fff;
  font-size: 40px;
  font-family: 'Nexa';
}
.head{
  padding: 100px 0 0 0;
}
.march .shoperr p{
  font-size: 18px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
}
.verts{
  padding: 100px 0 0 0;
}
header .nav-item .m-sub-menu{
  display: none;
  /* top: 126%; */
  position: absolute;
  transform: translate(-100%);
  left: 149px;
}
header .nav-item .m-sub-menu li:hover{
  background-color:var(--brand-navy) ;
}
header .nav-item:hover .m-sub-menu{
  display: block;
}
header .nav-item{
  position: relative;
}
header .nav-item .m-sub-menu{
  white-space: nowrap;
}
header .nav-item .m-sub-menu{
  background-color: var(--brand-blue);
  
}
header .nav-item .m-sub-menu li {
 padding: 10px 5px 10px 10px;
 border: 1px solid rgba(0, 0, 0, 0.514);
}

.verts .shoperr p{
  font-size: 18px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
}
.labor img {
  width: 93%;
}
.verts .shoperr h2{
  color: #fff;
  font-size: 40px;
  font-family: 'Nexa';
}
.since1983 h3{
  color: #fff;
  font-size: 40px;
  font-family: 'Kanit', sans-serif;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  display: block;
  padding: 0 0 49px 0px;
}
@keyframes spin2 {
  from {
    transform: scale(0.43) rotate(0deg);
  }

  to {
    transform: scale(0.43) rotate(360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}
.card-item a{
  display: block;
  text-decoration: underline;
  font-size: 20px;
}
.text-item h2{
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 23px 0 10px 0;
  font-size: 25px;
}
.let-us-breath .card-item .card {
  background-color: transparent;
  text-align: center;
  padding: 25px;
  width: 100%;
}
/* 
  font-family: 'Kanit', sans-serif;
  font-family: 'Nexa';
  font-family: 'Outfit', sans-serif;

*/

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  canvas {
    display: none;
}
.handles img{
  display: none;
}
.handed img{
  display: none;
}
#superman img{
display: none;
}
.main-dots img{
  display: none;
}
.logo-box{
  display: flex;
  flex-wrap: wrap;
}
.menu-icon{
display: none;
}
.sec-home-banner .main-sec-banner h4 {  
  font-size: 20px;
}
.box {
  margin: 0 0 28px 0;
}
.main-local {
  padding: 45px 0 21px 0;
}
.texter h2 {
  font-size: 46px;
}
.texter-1 h2 {
  text-align: center;
}
.main-local .texter-1 p {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  padding: 0 0 0 27px;
}
.imagess img{
  display: none;
}
.logo-for{
padding: 0;
}
.logo-for h2 {
  font-size: 36px;
}
.logo-1 {
  display: block;
  margin: 11px auto;
}
.sec-home-banner .main-sec-banner h2 {
  margin: 8px 0 10px 0;
}
.help{
  padding: 0;
}
footer .icon ul li {
  padding: 10px 19px 10px 0;
}
footer .lasty p {
  width: 100%;
}
.footer-logo-p {
  font-size: 13px;
}
.form-tops {
  padding: 73px 0 0 0;
}
.form-tops h2 {
 
  font-size: 35px;
}
.custom-input input {
  margin: 0 0 12px 0;
}
.navbar-brand img {
  width: 75%;
}
.sec-home-banner .main-sec-banner h2 {
 font-size: 37px;
}
.navbar-light .navbar-toggler-icon {
  filter: brightness(0.5) invert(1);
}
.navbar-light .navbar-toggler {
  color: #fff;
  border-color: rgba(0, 0, 0, 0.5);
}
.pinky{
  display: none;
}
.map-usa h2{
  font-size: 40px;
}
.aboust-us-1 .main-local .texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  padding: 0 0 5px 0;
  font-size: 26px;
}
.hands-yet h2 span {

  font-size: 28px;
}
.hands-yet h2 {
  font-size: 30px;
}
.testimonial-sec{
  display: none;
}
.roys{
  display: none;
}
.sec-title h2{
  font-size: 23px;
}
.balist.sec-title span {
  font-size: 12px;

}
.second-blasi .let h3 {
 font-size: 21px;
}
.last-customs input {
  margin: 0 0 18px 0;
}
.portfolio-all .portfolio-filter-btn{
  display: block;
}
.coure img{
  display: none;
} 
.sec-inner-banner .circle-img-wrapper .spin-efct {
  top: 44px;
}
.sec-inner-banner .circle-img-wrapper .text-banner h2 {
  font-size: 20px;
  padding: 122px 0 0 0;
}

.sec-inner-banner {
background-image: none;
}
.sec-inner-banner .circle-img-wrapper {
  padding: 100px 0 0 0px;
}
.volet .paper img {
  width: 90%;
  margin: -92px 0 19px 0;
}
.twisto .flavore i{
  display: none;
}
.zip {
  margin: 0 0 25px 0;
 }
 .bottel .router-cards {
 
  margin: 16px 0 1px 0px;
  HEIGHT: inherit;
}
section.wrap .civil h2 {
  font-size: 29px;
 padding: 20px 0 0 0;
  }
  .role .gar {
    font-size: 31px;
}
.volet h3 {
  padding: 14px 0 39px 0;
  font-size: 31px;
  text-align: center;
}
header .nav-item:hover .m-sub-menu {
  display: block;
  z-index: 999;
}
}





@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;1,300;1,400;1,500&display=swap');

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa Bold.otf') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  background-color: var(--brand-navy);
}

main {
  /* overflow: hidden; */
}

a {
  text-decoration: none;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none;
  box-shadow: none;
}
p{
  color: #ffffffba!important;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}

.service-read-more {
  white-space: nowrap;
  display: block;
  text-decoration: underline;
}

.sec-home-banner {
  position: relative;
  padding: 190px 0 0px 0;
}

.banner-3 {
  position: relative;
  padding: 193px 0 219px 0;

}
.sec-inner-banner .particles-dot  ,
.sec-home-banner .particles-dot {

  position: absolute;

  left: 0;

  right: 0;

  top: -100px;

  bottom: 70%;
}

.header-1 {
  z-index: 991;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0 0;
  transition: 0.7s;
}

.header-1.scroll {
  background: linear-gradient(to bottom right, #0D4286, #136A9A);
  padding: 15px 0;
}

.coure img {
  width: 370px;
  transform: scale(1.5);
  margin: 0 0 0px 63px;
}

.navbar-brand img {
  width: 100%;
}

.sec-home-banner .main-sec-banner {
  position: relative;
  z-index: 1;
}

.sec-home-banner .main-sec-banner h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;


}

.sec-home-banner .main-sec-banner h2 {
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;

}

.sec-home-banner .main-sec-banner p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  /* font-weight: lighter; */
  /* width: 55%; */
  /* display: block; */
  display: bock;
  /* margin: 0 auto; */
}

/* ... anmation... */


/* .container{  padding-top: 20px;
    padding-bottom: 20px;} */




.content h2 {
  font-size: 19px;
}

.box {
  /*top: 50%;*/
  /*left: 50%;*/
  transform: translate(0%, 0%);
  position: relative;
  width: 100%;
  /* height: 300px; */
  box-sizing: border-box;
  overflow: hidden;
  color: white;
  padding: 20px;
}

.box:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.5s;
  pointer-events: none;
}

.box:hover:before {
  left: -50%;
  transform: skewX(-5deg);
}


.box .content {
  /* position: absolute; */
  /* top: 15px; */
  /* left: 15px; */
  /* right: 15px; */
  /* bottom: 15px; */
  padding: 34px 0 0 0;
  text-align: center;
}

/* .box span {
  position: absolute;
} */

.box span.top,
.box span.bottom {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--brand-navy);
  left: 0;
  right: 0;
}

.box span.right,
.box span.left {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--brand-navy);
  top: 0;
  bottom: 0;
}

.box span.top {
  animation: animateTopBar 4s linear infinite;
  top: 0;
}

.box span.bottom {
  animation: animateBottomBar 4s linear infinite;
  bottom: 0;
}

.box span.right {
  animation: animateRightBar 4s linear infinite;
  right: 0;
}

.box span.left {
  animation: animateLeftBar 4s linear infinite;
  left: 0;
}

/*.box span{*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: block;*/
/*  box-sizing: border-box;*/
/*}*/

/*.box span:nth-child(1)*/
/*{*/
/*  transform:translate(-50%,-50%) scale(0.43) rotate(0deg);*/
/*}*/

/*.box span:nth-child(2)*/
/*{*/
/*  transform:rotate(90deg);*/
/*}*/

/*.box span:nth-child(3)*/
/*{*/
/*  transform:rotate(180deg);*/
/*}*/

/*.box span:nth-child(4)*/
/*{*/
/*  transform:rotate(270deg);*/
/*}*/

/*.box span:before*/
/*{*/
/*  content: '';*/
/*  position: absolute;*/
/*  width:100%;*/
/*  height: 2px;*/
/*  background: var(--brand-navy);*/
/*  animation: animate 4s linear infinite;*/
/*}*/

@keyframes animateTopBar {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: right;

  }

  100% {
    transform: scaleX(0);
    transform-origin: right;

  }
}

@keyframes animateBottomBar {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }

  50% {
    transform: scaleX(1);
    transform-origin: right;
  }

  50.1% {
    transform: scaleX(1);
    transform-origin: left;

  }

  100% {
    transform: scaleX(0);
    transform-origin: left;

  }
}

@keyframes animateLeftBar {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: top;

  }

  100% {
    transform: scaleY(0);
    transform-origin: top;

  }
}

@keyframes animateRightBar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;

  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;

  }
}

.content h2 {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 23px 0 10px 0;
  font-size: 25px;
}

.content h2 span {
  display: block;
  font-size: 20px;
}

.content p {
  font-size: 14px;
}

.main-local {
  padding: 75px 0 21px 0;
}

.main-local {
  color: #fff;
}

.texter-1 {
  margin: 0 0 0 -36px;
}

.imagess img {
  width: 35px;
  transition: 0.3s;
}

.abouts {
  /* background-image: url(../images/001234.png);
  background-size: 57%;
  background-repeat: no-repeat;
  background-position: right; */
}

.sconed ul li {
  display: inline-block;
}

.texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  font-size: 60px;

}

.main-local .texter-1 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.texter p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.texter-1 h2 {
  font-family: 'Nexa';
  font-style: bold;
  font-size: 25px;
}

.dotss {
  position: relative;

}

.main-dots {
  position: absolute;
  top: -23px;
  right: 0;
  left: 2%;
  width: 98%;
  -webkit-animation: rotate 15s normal linear infinite;
  animation: rotate 15s normal linear infinite;
  z-index: -1;
}

.main-img {
  /* width: 76%; */
  transform: scale(1.1);
  /* margin: 0px 0 0 52px; */
  object-fit: cover;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }

  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }

  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}





.card {
  transform: rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition-duration: 0.1s;

}

.card__image img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: lighten;
}

.card__heading h2 {
  margin: 0;
  transform: translateZ(30px);
}

.card.rounded,
.card.rounded .card__overlay {
  /* border-radius: 8px; */
}

.card.is-out {
  transform: rotateX(0) rotateY(0) !important;
  transition-duration: 1s;
}

#superman {
  background-color: transparent;
}

.seconds-cards {
  padding: 50PX 0 0 0;
}

/* .content button{
  background-color: transparent;
  border: none;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
} */
.goodwill .box .content {
  padding: 0px 0 0 0 !important;
}

/* .content button:hover{
  border-color: #fff;
  border-bottom: 1px solid #fff;
  transition-timing-function: linear;

} */

.draw-border {
  box-shadow: inset 0 0 0 2px rgb(13 66 134);
  color: #fff;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}

.draw-border::before,
.draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.draw-border::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.draw-border::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.draw-border:hover {
  color: #fff;
}

.draw-border:hover::before,
.draw-border:hover::after {
  border-color: #fff;
  transition: border-color 0s, width 0.20s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.20s;
}

.draw-border:hover::after {
  transition-delay: 0s, 0.20s, 0s;
}

.btn {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font-size: 16PX;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-style: italic;
  padding: 10px 10px 10px 10px;
  letter-spacing: 0.05rem;
}

.btn:focus {
  outline: 2px dotted #fff;
}

.hands-yet h4 {
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 25px;
}

.hands-yet h2 {
  font-family: 'Nexa';
  font-size: 62px;
  font-weight: 500;
  color: #fff;
}

.hands-yet h2 span {
  display: block;
  font-size: 40px;
}

.hands-yet p {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
}

.hands-yet ul li {
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  padding: 10px 0 0 0;
}

.harder {
  padding: 137px 0 58px 0;
}

.hands-yet ul li i {
  padding: 0 8px 0 0px;
}

.handles {
  position: absolute;
  LEFT: 50%;
}

.LOTSSS {
  position: absolute;
  animation: flip-with-scale 5s infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

footer::before {
  content: '';
  position: absolute;
  background-image: url(../images/global2.png);
  z-index: -1;
  top: 26%;
  bottom: 0;
  left: 20%;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

footer {
  position: relative;
  z-index: 1;
}

.everlast P {
  padding: 16PX 0 10PX 0;
  color: #5E6F7F;
}













@keyframes flip-with-scale {
  0% {
    transform: perspective(400px) scaleX(1);
  }

  100% {
    transform: perspective(400px) scaleX(-1);
  }
}

.logo-for {
  padding: 109px 0 0 0;
}

.logo-for h2 {
  font-family: 'Nexa';
  font-size: 62px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.logo-for p {
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.logo-box {
  display: flex;
  justify-content: space-between;

}



.draw-border1 {
  box-shadow: inset 0 0 0 2px var(--brand-teal);
  color: #fff;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}

.draw-border1::before,
.draw-border1::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.draw-border1::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.draw-border1::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.draw-border1:hover {
  color: #fff;
}

.draw-border1:hover::before,
.draw-border1:hover::after {
  border-color: #fff;
  transition: border-color 0s, width 0.20s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border1:hover::before {
  transition-delay: 0s, 0s, 0.20s;
}

.draw-border1:hover::after {
  transition-delay: 0s, 0.20s, 0s;
}

.btn1 {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font-size: 16PX;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  font-style: italic;
  width: 219px;
  height: 109px;
  letter-spacing: 0.05rem;
}

.btn1:focus {
  outline: 2px dotted #fff;
}

.logo-box {
  padding: 20px 0 0 0;
}


.form-tops {
  text-align: center;
  color: #fff;
  padding: 100px 0 0 0;
}

.contact-form.form-tops {
  padding-top: 30px;
}

.contact-form.form-tops .form-title {
  margin: 0 auto;
  width: 85%;
  padding: 0 0 67px 0;
}

.custom-input input {
  width: 97%;
  height: 47px;
  border: 1px solid black;
  border-radius: 18px;
  outline: none;
  background-color: var(--brand-navy);
  PADDING: 0 0px 0 29px;
  color: #fff;
  ;
}

.banner-2 {
  padding: 144px 0 0 0 !important;
}

.golbel {
  height: 70vh;

}

.form-tops h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.form-tops h2 {
  font-family: 'Nexa';
  font-style: bold;
  font-size: 60px;
}

.form-tops p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.aman {
  padding: 18px 0 0 0;
}

.text-area textarea {
  width: 100%;
  BORDER-RADIUS: 17PX;
  HEIGHT: 145PX;
  BACKGROUND-COLOR: var(--brand-navy);
  BORDER: NONE;
  outline: none;
  resize: none;
  PADDING: 5px 0px 0 29px;
  color: #fff;
  ;
}

.form-tops input::placeholder {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: #5E6F7F;
}

.text-area textarea::placeholder {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: #5E6F7F;
}



#home_wave {
  position: absolute;
  top: 0;
  z-index: -1;
}



.btn12 {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background-color: var(--brand-navy);
  padding: 17px 60px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
  border-radius: 20PX;
}

.btn12 span {
  position: relative;
  z-index: 1;
}

.LOCAL-BTN {
  padding: 20PX 0 10PX 0;
}

.btn12:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: var(--brand-teal);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn12:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  color: black;
}

.firts-footer .footer-logo img {
  border-bottom: 5px solid var(--brand-navy);
  padding: 20px 0 20px 0;
}

.footer-logo-p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  padding: 22px 0px 0px 0px;
  font-family: 'Outfit', sans-serif;
}

footer .icon ul li a {
  color: #fff;
  /*display: flex;*/

}

footer .icon ul li a {
  font-size: 15px;
  padding: 8px 15px 8px 15px;
  border: 2px solid white;
  border-radius: 16px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .icon ul li a:hover {
  border-color: #fff;
  color: var(--brand-navy);
  background-color: #fff;
}

footer .icon ul {
  display: flex;
}

footer .icon ul li {
  padding: 10px 32px 10px 0;
}

footer .help-1 h2 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 5px solid var(--brand-navy);
  padding: 40px 0 20px 0;
}

footer .help-2 ul li a {
  list-style: none;
  color: #fff;
  text-align: start;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-style: light;
}

.help {
  padding: 0px 0px 0 52px;
}

footer .help-2 .top-class {
  padding: 38px 0 0 0;
}

footer .help-2 .topi {
  padding: 20px 0 0 0;
}

footer .last-h2 h2 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 5px solid var(--brand-navy);
  padding: 40px 0 20px 0;
}


footer .lasty p {
  width: 132%;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  padding: 22px 0px 0px 0px;
}

.last-customs input {
  height: 43px;
  border-radius: 28px;
  padding: 0 0 0 26px;
  font-size: 16px;
  position: relative;
  outline: none;
}

.last-customs i {
  position: absolute;
  color: white;
  margin: 3px 0 0 -42px;
  padding: 10px;
  background-color: var(--brand-navy);
  border-radius: 20px;
}

.last-customs {
  display: flex;
}

.everlast {
  text-align: center;
  color: #fff;
}

.lode {
  border-top: 3px solid var(--brand-navy);
}

.everlast P {
  padding: 10PX 0 10PX 0;
}

footer {
  PADDING: 100px 0 0 0;
}

/* menu css */
.menu-icon {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  z-index: 991;
  transition: 0.3s;
}

.toggle-icon-text {
  color: #fff;
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  text-transform: capitalize;

}

.menu-icon a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  width: 30px;
  height: 30px;
  box-shadow: none;
  transition: 0.3s;

}

.menu-icon a span {
  background-color: #fff;
  height: 3px;
  width: 35px;
  border-radius: 5px;
  transition: 0.3s;
}

.menu-icon a .bar-1 {
  width: 30px;
}

.menu-icon a .bar-3 {
  width: 25px;
}

.menu-icon a.active {
  transform: rotate(180deg) translateX(-15px);
}

.menu-icon a.active .bar-1 {
  transform: rotate(-45deg) translateY(18px);
  width: 30px;
}

div#particle-canvass {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.menu-icon a.active .bar-2 {
  opacity: 0;
}

.menu-icon a.active .bar-3 {
  transform: rotate(45deg) translateY(-19px);
  width: 30px;
}

.menu-sec {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, #0D4286, #136A9A);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transform: translateX(-100%);
  transition: cubic-bezier(.77, 0, .175, 1) .8s, -webkit-transform cubic-bezier(.77, 0, .175, 1) .8s;
}

.menu-bg-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.menu-bg-images img {
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.menu-sec.show-menu {
  transform: translateX(0);
}

.menu-sec .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-sec .menu .menu-item {
  position: relative;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  opacity: 0;
  transform: translate(0, 100%);
}

.menu-sec.show-menu .menu .menu-item {
  opacity: 1;
  transform: translate(0, 0);
}

.menu-sec .menu .menu-item .menu-link {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  text-transform: capitalize;
  margin: 0 30px;
  font-weight: 400;
  /* line-height: 30px; */
  transition: 0.3s;
}

.menu-sec .menu .menu-item .menu-link span {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  transition: 0.3s;
}

.menu-sec .menu .menu-item:hover .menu-link span {
  color: var(--brand-blue);
}

.menu-sec .menu .menu-item .menu-link::before {
  content: attr(data-index);
  color: var(--brand-blue);
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.menu-sec.show-menu .menu .menu-item:nth-child(1) {
  transition-delay: 0.6s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(2) {
  transition-delay: 0.65s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(3) {
  transition-delay: 0.7s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(4) {
  transition-delay: 0.75s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(5) {
  transition-delay: 0.8s;
}

.menu-sec.show-menu .menu .menu-item:nth-child(6) {
  transition-delay: 0.85s;
}

.menu-sec .menu .menu-item .m-sub-menu {
  position: absolute;
  left: 0;
  top: 105;
  padding: 15px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.menu-sec .menu .menu-item:hover .m-sub-menu {
  visibility: visible;
  opacity: 1;
}

.menu-sec .menu .menu-item .m-sub-menu li a {
  color: #fff;
  font-size: 20px;
  font-family: 'Nexa';
  text-transform: capitalize;
  transition: 0.3s;
  font-weight: 100;
}

.menu-sec .menu .menu-item .m-sub-menu li a:hover {
  color: var(--brand-blue);

}

/* menu css end */
/* about-us */
.abouts .loop h2 {
  font-weight: 600;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  background: -webkit-linear-gradient(21deg, #136A9A, #e9e9ea);
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  /* margin: 0 0 20px 0; */
  letter-spacing: 2px;
  -webkit-background-clip: text;
  text-align: center;
}

.abouts {
  padding: 150px 0 150px 0;
  position: relative;
}

.abouts .loop .looop-1 i {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px;
}

.abouts .loop .looop-1 {
  text-align: center;
}

.abouts .loop .looop-1 span a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.aboust-us-1 .main-local .texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  padding: 0 0 5px 0;
  font-size: 33px;
}

.imagess:hover img {
  transform: scale(1.2);
}

.loop {
  /* width: fit-content; */
}

.first-cards {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  width: 100%;
  /* background-position: 100% 22%; */
  background-size: cover;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8) !important;
  padding-top: 166px !important;
  padding-bottom: 72px !important;
  padding-left: 51px !important;
  /* border-radius: 20px; */
  /* box-shadow: 0px 2px 60px 0px rgba(13, 66, 134, 0.18); */
}

.sconed ul li a {
  color: #fff;
  padding: 5PX 5PX 5PX 5PX;
  font-size: 18px;
  transition: 5.s;
}

.sconed {
  margin: 20px 0 0 0;
}

.sconed .fb a:hover {
  color: var(--brand-blue);
}

.sconed .insta a:hover {
  color: var(--brand-green);
}

.sconed .lindin a:hover {
  color: var(--brand-teal);
}

.scond-about-us .joji:nth-child(even) {
  transform: translateY(100%);

}

.hyt {
  height: 341px;
  padding: 0 0 690px 0;
}

.scond-about-us h2 {
  position: relative;
  text-align: center;
  margin: 69px 0px 47px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.scond-about-us h2:before {
  content: '';
  position: absolute;
  height: 2px;
  width: 150px;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-blue);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background-color: var(--brand-navy);
}

.loader svg text {
  stroke: var(--brand-teal);
  font-size: 100px;
  font-weight: 700;
  stroke-width: 5;
  text-transform: uppercase;
  animation: textanimate 3s infinite alternate;
}


@keyframes textanimate {
  0% {
    stroke-dasharray: 0 50%;
  }

  100% {
    stroke-dasharray: 50% 0;
  }
}

.map-usa {
  padding: 150px 0 150px 0;
  position: relative;
  position: relative;
  min-height: 32vw;
  background-image: url(../images/21121.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.map-usa .particles-dot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.map-usa h2 {
  font-weight: 600;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  background: -webkit-linear-gradient(21deg, #074EA2, #e9e9ea);
  width: fit-content;
  margin: 0 auto;
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  /* margin: 0 0 20px 0; */
  letter-spacing: 2px;
  -webkit-background-clip: text;
  text-align: center;
}

.map-usa .doop {
  position: relative;
  text-align: center;
  z-index: 99;
  text-align: center;
}

.map-usa .doop .looop-1 span a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.map-usa .doop .looop-1 i {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px;

}

.sec-title h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.balist.sec-title span {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.balist.sec-title {
  text-align: center;
}

.balist.sec-title span i {
  padding: 0px 6px 0 7px;
  font-size: 20px;
  color: var(--brand-blue);
}

.second-blasi .let h3 {
  color: #fff;
  line-height: 48px;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
  max-width: 400px;
}

/* .second-blasi  .let .main-black{
  line-height: 40px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0px 9px 0px 0px;
} */
.second-blasi .let h3 span {
  line-height: 40px;
  color: #f7f7f7;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

section.second-blasi {
  margin: 32px 0 0 0;
}

section.second-blasi .onlin p {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 34px;
  color: #fff;
  margin-bottom: 0;
}

.roys {
  background-image: url(../images/Bgaaa-01-01.png);
  height: 227px;
  background-position: center;
  background-position: 58% 89%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  margin: 108px 0 0 0;
  display: flex;
  align-items: center;
}

.roys .counter ul li h4 span,
.roys .counter ul li h4 {
  text-align: center;
  width: 99%;
  font-size: 31px;
  /* margin: 0 0 13px 0; */
  font-family: 'Poppins', sans-serif;
  font-style: bold;
  font-weight: 700;
}

.roys .counter ul li {
  display: inline-block;
  text-align: center;
  color: #fff;
  PADDING: 0 15px;
  /* margin: 86px 0 0 0; */
  width: 20%;
}

.roys .counter h4 span {
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
}

.roys .counter ul {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter .localjoi {
  color: #ffffff;
  font-family: 'Nexa';
  font-size: 16px;
  /* color: #b48eff; */
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: capitalize;
}

.let-us-breath .sec-title {
  margin: 50px 0;
}

.let-us-breath .card-item .card {
  background-color: transparent;
  text-align: center;
  padding: 25px;
}

.let-us-breath .card-item .card .item-icon img {
  width: 100px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

/* testimonials sec */
.testimonial-sec .sec-title {
  padding: 50px 0 0;
}

/* / slider / */
.testi-wrap {
  position: relative;
  height: 430px;
}

.client-single {
  margin-top: 20px;
  text-align: center;
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.client-info,
.client-comment {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  display: none;
  opacity: 0;
  transition-delay: 0.5s;
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  opacity: 0;
  visibility: hidden;
}

.client-single.position-1 {
  -webkit-transform: scale(0.65);
  transform: scale(0.65);
}

.client-single.position-2 {
  left: 10px;
  top: 0;
}

.client-single.position-3 {
  left: 0;
  top: 176px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.position-4 {
  left: 92px;
  top: 330px;
}

.client-single.position-5 {
  top: 30px;
  right: 55px;
}

.client-single.position-6 {
  top: 220px;
  right: 56px;
}

.client-single.position-7 {
  top: 360px;
  right: 220px;
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.client-single.active {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60%;
}

.client-single.active .client-comment,
.client-single.active .client-info {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.client-single:not(.active) {
  -webkit-transform: scale(0.55);
  transform: scale(0.55);
  z-index: 99;
}

.client-single.active .client-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  position: relative;
}

.client-single .client-img img {
  width: 150px;
  border-radius: 50%;
  cursor: pointer;
}

.client-single.active .client-img img {
  max-width: 120px;
  margin: 0 auto 24px;
  border: 0;
}

.client-comment {
  padding: 0 30px;
}

.client-comment h3 {
  font-size: 19px;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}

.client-comment span i {
  font-size: 40px;
  color: var(--brand-blue);
  margin: 10px 0;
  display: inline-block;
}

.client-info h3 {
  color: #fff;
  font-weight: 600;
  margin: 15px 0 0;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 25px;
}

.client-info h5 {
  font-family: "Poppins", 'serif';
  font-size: 16px;
}

.client-info p {
  color: var(--brand-blue);
  text-transform: uppercase;
}

/* testimonials sec end */

/* portfolio tabs css start */
.portfolio-all .portfolio-filter-btn {
  overflow: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--brand-blue);
  border-radius: 25px;
  padding: 6px;
  margin: 30px auto;
}

.portfolio-all .portfolio-filter-btn button {
  position: relative;
  z-index: 1;
  width: 100%;
  border: none;
  border-radius: 25px;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #DCE6EC;
  height: fit-content;
  background-color: transparent;
  text-transform: capitalize;
  transition: 0.4s;
}

.portfolio-all .portfolio-filter-btn button.active {
  color: #fff;
  box-shadow: 0px 15px 39px rgb(0 0 0 / 20%);
  background-color: var(--brand-blue);
  transition: 0.3s;
}

.portfolio-all .tabs-slider-wrapper {
  margin-bottom: 20px;
}

.portfolio-all .logo-wrapper-ind,
.portfolio-all .web-wrapper-ind,
.portfolio-all .brouchers-wrapper-ind,
.portfolio-all .stationary-wrapper-ind {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-all .logo-wrapper-ind .logo-tab-slide-wrap,
.portfolio-all .stationary-wrapper-ind .stationary-tab-slide-wrap {
  width: 25%;
  padding: 10px;
}

.portfolio-all .brouchers-wrapper-ind .broucher-tab-slide-wrap,
.portfolio-all .web-wrapper-ind .logo-tab-slide-wrap {
  width: 33.33%;
  padding: 10px;
}

.portfolio-all .tab-inner-slide-wrap img {
  border-radius: 15px;
}

/* portfolio tabs css end */

/* faq sec css start */
.faq-sec .faq-card {
  text-align: center;
  color: #fff;
  margin: 30px 0;
}

.faq-sec .faq-card .icon {
  position: relative;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  margin: 15px auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #242731;
  z-index: 1;
}

.faq-sec .faq-card .icon:after,
.faq-sec .faq-card .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  animation: ripple 2s linear infinite;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.2s;
  z-index: -1;
}

.faq-sec .faq-card .icon:after {
  animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.5);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

.faq-sec .faq-card .icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: #fff;
}


.faq-sec .faq-card .title {
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.faq-sec .faq-card .description {
  font-size: 16px;
  line-height: 25px;
  font-family: 'Outfit', sans-serif;
  opacity: 0.8;
}

/* faq sec css end */

/* test css */
.sec-wrapper {
  margin: 80px auto;
  flex: 0 0 1;
  display: flex;
  position: relative;
}

.sec-wrapper svg path {
  stroke: var(--brand-navy);
}

.sec-wrapper svg text {
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.9);
}

.sec-wrapper svg .bottom text {
  font-size: 16px;
}

.line.top {
  stroke-dasharray: 1600;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: dash 3s ease-in 0.5s forwards;
}

.line.top.topOne {
  animation-delay: 0s;
}

.line.top.topTwo {
  animation-delay: 0.2s;
}

.line.top.topThree {
  animation-delay: 0.4s;
}

.line.top.topFour {
  animation-delay: 0.6s;
}

.line.top.topFive {
  animation-delay: 0.8s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 2000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.15;
  }
}

.line.bottom {
  stroke-dasharray: 1600;
  stroke-dashoffset: -1000;
  opacity: 0;
  animation: dash-reversed 3s ease-in normal forwards;
}

.line.bottom.bottomOne {
  animation-delay: 0.8s;
}

.line.bottom.bottomTwo {
  animation-delay: 1s;
}

.line.bottom.bottomThree {
  animation-delay: 1.2s;
}

@keyframes dash-reversed {
  from {
    stroke-dashoffset: -1000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.2;
  }
}

.block {
  stroke-dasharray: 1600;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: block-animation 1.5s ease-in-out 0.5s forwards;
}

.block.topOne {
  animation-delay: 0s;
}

.block.topTwo {
  animation-delay: 0.2s;
}

.block.topThree {
  animation-delay: 0.4s;
}

.block.topFour {
  animation-delay: 0.6s;
}

.block.topFive {
  animation-delay: 0.8s;
}

.block.bottomOne {
  animation-delay: 2s;
}

.block.bottomTwo {
  animation-delay: 2.25s;
}

.block.bottomThree {
  animation-delay: 2.5s;
}

@keyframes block-animation {
  from {
    transform: translate(0, 20px);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.line.top {
  stroke-dasharray: 1600;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: dash 3s ease-in 0.5s forwards;
}

.line.top.topOne {
  animation-delay: 0s;
}

.line.top.topTwo {
  animation-delay: 0.2s;
}

.line.top.topThree {
  animation-delay: 0.4s;
}

.line.top.topFour {
  animation-delay: 0.6s;
}

.line.top.topFive {
  animation-delay: 0.8s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 2000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.15;
  }
}

.line.bottom {
  stroke-dasharray: 1600;
  stroke-dashoffset: -1000;
  opacity: 0;
  animation: dash-reversed 3s ease-in normal forwards;
}

.line.bottom.bottomOne {
  animation-delay: 0.8s;
}

.line.bottom.bottomTwo {
  animation-delay: 1s;
}

.line.bottom.bottomThree {
  animation-delay: 1.2s;
}

@keyframes dash-reversed {
  from {
    stroke-dashoffset: -1000;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.2;
  }
}

.circles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 374px;
}

.circle {
  opacity: 0;
  display: block;
  position: absolute;
  height: 250px;
  width: 250px;
  margin: auto;
  border-radius: 50%;
  background: rgba(13, 66, 134, 0.10);
  border: 1px solid rgba(19, 106, 154, 0.20);
  animation: circle-pulse 6s linear infinite forwards;
  mix-blend-mode: multiply;
}

.circle.circleOne {
  animation: circle-entry 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1 forwards;
  animation-delay: 1.35s;
  background: #ffffff;
  z-index: 5;
}

.circle.circleTwo {
  animation-delay: 2s;
}

.circle.circleThree {
  animation-delay: 4s;
}

.circle.circleFour {
  animation-delay: 6s;
}

@keyframes circle-pulse {
  from {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  to {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes circle-entry {
  from {
    transform: scale(0);
    opacity: 0.5;
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.circles-container .logo {
  display: flex;
  color: white;
  font-family: sans-serif;
  position: relative;
  z-index: 6;
  animation: block-animation 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.5s forwards;
}

.dots {
  stroke-linecap: round;
  stroke-dasharray: 0.5 200;
  animation: dots 5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  stroke: red;
  opacity: 0;
}

.dots.dotsOne {
  animation-delay: 1.1s;
}

.dots.dotsTwo {
  animation-delay: 4s;
}

.dots.dotsThree {
  animation-delay: 2.8s;
}

.dots.dotsFour {
  animation-delay: 2s;
}

.dots.dotsFive {
  animation-delay: 4.9s;
}

.dots.bottom.dotsOne {
  animation: dots-reversed 3.5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  animation-delay: 3s;
}

.dots.bottom.dotsTwo {
  animation: dots-reversed 3.5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  animation-delay: 3s;
}

.dots.bottom.dotsThree {
  animation: dots-reversed 3.5s linear infinite forwards, fade-in 3s ease-in 1 forwards;
  animation-delay: 5s;
}

@keyframes dots {
  to {
    stroke-dashoffset: -200;
  }
}

@keyframes dots-reversed {
  from {
    stroke-dashoffset: -200;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.66;
  }
}

/* 
  font-family: 'Kanit', sans-serif;
  font-family: 'Nexa';
  font-family: 'Outfit', sans-serif;
  font-family: 'Poppins', sans-serif;

*/
.header-1 .collapse .navbar-nav .nav-item a {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-weight: 500;
  transition: 10.0s;
  border-bottom: 1px solid transparent;
}

.header-1 .collapse .navbar-nav .nav-item {
  padding: 0 10px 0 10px;
}

.header-1 .collapse .navbar-nav .nav-item a:hover {
  border-bottom: 1px solid white;
}

.header-1 .collapse .navbar-nav {
  display: none;
}

.header-1.scroll .collapse .navbar-nav {
  display: flex;
}

.menu-icon.scroll-menu {
  transform: translateY(-50%) translateX(-200%);
}

.cool125 ul .preety {
  padding: 35px 0 0 23px;
}

.cool125 ul {
  display: flex;
}

.since1983 {
  padding: 100px 0 0 0;
}

.since1983 .perfect-858 h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;


}

.since1983 .perfect-858 h2 {
  color: #fff;
  font-size: 45px;
  font-family: 'Nexa';
  font-weight: 900;

}

.since1983 .perfect-858 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;


}

.doctrol {
  padding: 100px 0 0 0;
}

.doctrol .herbion h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.doctrol .herbion h2 {
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.doctrol .undergarde p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.secondf img {
  animation: slidein 3s alternate infinite;
}

.pharma {
  padding: 100px 0 0 0;
}

.pharma .fashion h2 {
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.pharma .fashion p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
}

.electircal h4 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.electircal h2 {
  text-align: center;
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.electircal {
  padding: 100px 0 0 0;
}

.electircal p {
  color: #ffffff;
  font-size: 14px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
}

.personal {
  padding: 100px 0 0 0;
}

.personal h4 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.personal h2 {
  text-align: center;
  color: #fff;
  font-size: 58px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.personal p {
  color: #ffffff;
  font-size: 16px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
}

.main-123 {
  display: flex;
  justify-content: space-between;
  padding: 27px 0 0 0;
  margin: 33px 0 0 0;
  border-top: 2px solid;
}

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

.localhost img {
  width: 250px;
  height: 99px;
  padding: 0px 10px 0 7px;
  object-fit: contain;
}

.main-321 .bru p {
  text-align: start !important;
  color: #ffffff;
  font-size: 14px;
  padding: 0 26px 0 1px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
}

.main-321 .bru h4 {
  text-align: start !important;
}

@keyframes slidein {
  0% {
    transform: translatey(0%);
  }

  100% {
    transform: translatey(50px);
  }
}

.since1983 .perfect-858 {
  padding: 0 0 0 20px;
}

.arma {
  border-right: 1px solid;
}

.bulb {
  padding: 80px 0 50px 0;
}

.LADY-diyana h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.LADY-diyana h2 {
  color: #fff;
  font-size: 45px;
  font-family: 'Nexa';
  font-weight: 1000;
}

.LADY-diyana p {
  color: #ffffff;
  font-size: 16px;
  padding: 0 26px 0 1px;
  line-height: 27px;
  font-family: 'Outfit', sans-serif;
}

.banner-3 {
  background-image: url(../images/Layer8787.png);
  width: 100%;
  background-size: cover;
  object-fit: cover;
  /* background-position: 100% 100%; */
  height: 133vh;
  background-repeat: no-repeat;
}

.banner-3 h2 {
  padding: 50px 0 0 0;
}

.saty {
  width: 20%;
}

.saty img {
  width: 100%;
  height: 76px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.mobiling .staine h2 {
  color: #fff;
}

.intro .aresoal {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
}

.exper {
  padding: 100px 0 0 0;
}

.exper .tankin h4 {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-size: 30px;
  font-weight: 500;

}

.exper .tankin h2 {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.exper .tankin p {
  color: #ffffffba;
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 0 3px 0;
}

.exper .tankin ul li i {
  color: var(--brand-navy);
  font-size: 27px;
  font-weight: 500;
  line-height: 25px;
  padding: 0 8px 22px 0px;
}

.exper .tankin ul li {
  color: #ffffffba;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.ustad {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  /* font-style: italic; */
  padding: 23px 0 10px 0;
  font-size: 50px;
  text-align: center;
  width: 62%;
  margin: 0 auto;
  display: block;
}

.shake {
  animation-name: shake;
  padding: 0 0 0 24px;
  width: 80%;
}

.aresoal {
  display: flex;
  /* align-items: center; */
  padding: 30px 0 20px 0;
  border-radius: 29px;
  margin: 24px 0px 0 0;
  background-color: #fff;
  transition: 0.3s;
}

.aresoal:hover {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
}

.mobiling {
  padding: 75px 0 0 0;
}

.banner-3 h2,
.banner-3 p {
  text-align: center;
}

.cool125 ul .preety-1 {
  padding: 1px 0 0 50px;
}

.cool125.col45 {
  margin: 36px 0 0 0;
}

.ecoc {
  display: flex;
  align-items: center;
}

.cool125 .box .products1 h2 {
  text-align: start;

}

.products1 {
  padding: 0 0 0 33px;
}

.cool125 .box .products1 p {
  text-align: start;
  color: #ffffffba;
}

.cool125 .headphone .ecoc {
  padding: 13px 0 12px 0 !important;
}

.cool125 .headphone .ecoc img {
  width: 142px;
  object-fit: cover;
}

.aresoal:hover .shake p {
  color: #fff !important;
}

.aresoal:hover .shake h2 {
  color: #fff !important;
}

.aresoal .saty img {
  /* -webkit-filter: grayscale(100%); */
  /* Safari 6.0 - 9.0 */
  /* filter: grayscale(100%); */
  filter: invert(1);
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.aresoal:hover .saty img {
  filter: brightness(0) invert(1.5);
}

.rooter {
  white-space: normal !important;
  text-decoration: none;
}

.shake p {
  color: #000 !important;
  font-size: 18px;
  color: #fff;
  padding: 0 0 0 -1px;
  line-height: 23px;
  padding: 0 20px 0 0px;
  font-family: 'Outfit', sans-serif;
}

.shake h2 {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 3px 0 3px 0px;
  font-size: 25px;
  color: #000 !important;
}


.modei {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  padding: 50px 20px 210px 20px;
  border-radius: 25px;
}

.pvt {
  margin: -164px 0 0px 0;
}

.modei h4 {
  text-align: center;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 3px 0 3px 0px;
  font-size: 25px;
  color: #fff;
}

.modei p {
  color: #fff;
  font-size: 18px;
  padding: 0 0 0 -1px;
  line-height: 23px;
  font-family: 'Outfit', sans-serif;
}

.modei h2 {
  text-align: center;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  padding: 10px 0 10px 0;
  font-size: 50px;
}

.custom-45 img {
  margin: 0 auto;
  display: block;
  padding: 0 0 13px 0;
  border-radius: 10px;
}

.custom-45 h3 {
  text-align: center;
  color: #000;
  font-family: 'Kanit', sans-serif;
  padding: 5px 0 5px 0;
  font-size: 30px;

  font-weight: 600;
}

.custom-45 p {
  text-align: center;
  color: #000;
  font-size: 18px;
  color: #000!important;
  padding: 0 0 0 -1px;
  padding: 0 21px 1px 21px;
  line-height: 23px;
  font-family: 'Outfit', sans-serif;
}

.modei p {
  text-align: center;
  color: #fff;
}

.custom-45 {
  background-color: #fff;
  padding: 30px 0 31px 0;
  border-radius: 31px;
  height: 273px;
}

.falll {
  display: flex;
  justify-content: space-around;
}

.fresherner img {
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

section.lora {
  padding: 73px 0 0 0;
}

.golbal {
  display: flex;
}

.shadow {
  padding: 91px 0 0 0;
}

.shadow .content-85 {
  padding: 1px 0 28px 32px;
}

.shadow .golbal .content-85 h2 {
  /* text-align: center; */
  color: #fff;
  font-family: 'Kanit', sans-serif;
  /* padding: 10px 0 10px 0; */
  font-size: 35px;
}

.shadow .golbal .content-85 p {
  font-size: 18px;
  /* line-height: 23px; */
  font-family: 'Outfit', sans-serif;
  color: #ffffffba;
}

.shadow .golbal img {
  width: 166px;
}

.shadow .itali h2 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 41px;
  font-weight: 900;
}

.shadow .itali p {
  color: #ffffffba;
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
}

.shadow .itali {
  padding: 0 0 0 26px;
}

.btn858 {
  margin: 0 0 0 0 !important;
}

.everword {
  padding: 50px 0 0 0;
}

.everword .infinxi h2 {
  color: #fff;
  font-family: 'Outfit';
  font-style: bold;
  font-weight: bold;
  font-size: 41px;
  padding: 20px 0 34px 0;
}

.fresherner {
  position: relative;
}

.fresherner .upper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  animation-direction: reverse;

}

.infinxi h3 {
  color: #fff;
  font-family: 'Outfit';
  font-weight: 400;
  font-size: 24px;
  /* padding: 20px 0 26px 0; */
}

.infinxi p {
  color: #ffffffba;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.rado img {
  transform: scale(1.5);

}

.jugi {
  padding: 0 0 0 14px;
}

.wheel img {
  width: 79%;
  display: block;
  mix-blend-mode: hard-light;
  margin: 0 auto;
}

.banner-3 {
  background-image: url(../images/Layer8787.png);
}


.sec-home-banne {
  background-image: url(../images/185858.png);
  background-size: cover;
  width: 100%;
  height: 150vh;
}
.sec-inner-banner{
  background-image: url(../images/banner-bg.jpg);
  background-size: contain;
}
.main-sec-banner{
  min-height: 100vh;
}
.sec-inner-banner .circle-img-wrapper{
  position: relative;
}
.sec-inner-banner .circle-img-wrapper .spin-efct{
  position: absolute;
  top: -13px;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  animation: 10s spin2 linear infinite;
  transform: translate(-50%,-50%) scale(0.43);
}
.sec-inner-banner .circle-img-wrapper .text-banner{
  position: absolute;
  top: calc(50% - 13px);
  left: 50%;
  transform: translate(-50%,-50%);
  width: 30%;
  height: 30%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-inner-banner .circle-img-wrapper .text-banner h2{
  font-family: 'Nexa';
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}
.sec-inner-banner .circle-img-wrapper .text-banner p{
  font-size: 12px;
}
section.volet {
  padding: 100px 0 0 0;
}
.tapal h2 {
  font-size: 63px;
  margin: -19px 0 0 -12px;
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  font-family: 'Nexa';
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.volet .tapal-1 p{
color: #fff;
    font-size: 16px;
    /* padding: 0 0 0 -1px; */
    line-height: 28px;
    font-family: 'Outfit', sans-serif;
}
.volet h3 {
  color: #fff;
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 10px 0 20px 0;
  font-size: 50px;
  text-align: center;
}
.twisto .tomor h2{
  color: #fff;
    font-family: 'Kanit', sans-serif;
    /* font-style: italic; */
    /* padding: 10px 0 20px 0; */
    font-size: 40px;
} 
.twisto .tomor p{
  color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Outfit', sans-serif;
}
.volet .paper img{
  width: 90%;
}
.twisto .flavore i{
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  /* font-family: 'Nexa'; */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  /* right: 36%; */
  font-size: 33px;
  position: absolute;
  left: -9px;
  transform: translateX(-100%);
  /* transform: rotateX(45deg); */
} 

.role .gar{
  font-family: 'Nexa';
  text-align: center;
  color: #fff;
  padding: 0 0 18px 0px;
  font-size: 40px;
}
.rometea img {
  width: 106%;
  height: 226px;
  object-fit: cover;
}
.role .rolaa{
  font-family: 'Nexa';
  text-align: center;
  color: #fff;
  font-size: 24px;
}
.twisto {
  position: relative;
  padding: 70px 0 50px 0;
}
.flavore {
  padding: 0 0 0 12px;
}
.jelly img {
  width: 92%;
}
.twisto .flavore h2{
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 3px 0 3px 0px;
  font-size: 25px;
  position: relative;
  color: #fff;
}
.role{
  position: relative;
}
.twisto .flavore p{
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
}
.role .mater h2{
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  font-family: 'Nexa';
  position: relative;
}
.role .mater h2 i {
    position: absolute;
    left: -8px;
    transform: translateX(-100%);
}
.mater {
  padding: 0 0 0 21px;
}
.zip {
  background: var(--brand-navy);
  background: linear-gradient(177deg, #074EA2 7%, #2D9288 88%);
  border-radius: 22px;
  padding: 23px 17px 10px 28px;
}
.eyes{
  height: inherit !important;
}
.bottel .router-cards{
  text-align: center;
  background: var(--brand-navy);
  background: linear-gradient(180deg, #0D4286 0%, #136A9A 48%);
  padding: 16px 12px 16px 12px;
  border-radius: 12px;
  HEIGHT: 100%;
}
section.wrap {
  padding: 95px 0 0 0;
}
section.wrap .civil h2{
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  font-family: 'Nexa';

}
section.wrap .civil{
  font-size: 17px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  padding: 10px 0 0 0;

}
 .bottel .router-cards h4{
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  font-family: 'Nexa';
  padding: 19px 0 6px 0;
}
.circule {
  margin: 0 0 0 -109px;
}
.bottel {
  padding: 50px 0 0 0;
}
.dulex{
  text-align: center;
  margin: 29px 0 0 0;
  border: 3px solid var(--brand-navy);
  padding: 16px 14px 16px 10px;
}
.dulex h2{
  border-radius: 106% 113% 142% 111% / 24% 29% 64% 66%;
  border: 1px solid #fff;
  width: 24%;
  margin: 0 auto;
  background: #fff;
  display: block;
  padding: 3px 0 3px 0;
  /* margin: 0 0 0 0; */
  font-family: 'Nexa';
  color: var(--brand-navy);
  font-size: 20px;
  font-weight: 500;
}
.dulex h3{
  color: #fff;
  font-size: 26px;
  margin: 4px 0 4px 0;
  font-weight: 500;
  white-space: nowrap;
  /* line-height: 54px; */
  font-family: 'Outfit', sans-serif;
}
.dulex  p{

  font-size: 16px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
}
.funds .tisur h2{
  font-size: 41px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0 0 0;
  font-family: 'Nexa';
}
.funds .tisur h5{
  font-size: 24px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-weight: 500;
  line-height: 36px;
}
.funds .tisur p{
  font-size: 16px;
  line-height: 28px;
  font-family: 'Outfit', sans-serif;
  line-height: 31px;
  padding: 9px 0 4px 0;
  font-weight: 400;
}
.golbale{
  background-image: url(../images/downloopy.png);
  width: 100%;
  background-size: contain;
  height: 58vh;
  padding: 137px 0 0 0;
  text-align: center;
  background-repeat: no-repeat;
  color: #fff;
}
.golbale h2 {
  font-size: 61px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.norwa .golbale p{
  color: #fff!important;
  width: 78%;
  font-weight: 700;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
}
.norwa .invert{
  background: var(--brand-navy);
  background: linear-gradient(91deg, rgb(13 66 134) 8%, rgb(90 92 120 / 0%) 80%);
  border-top-left-radius: 438px;
  border-bottom-left-radius: 428px;
}
.norwa .PRO h2{
  font-size: 41px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0 0 0;
  font-family: 'Nexa';
}

section.norwa {
  padding: 100px 0 0 0;
}
.airpods .ruber h2{
  font-size: 41px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0 0 0;
  font-family: 'Nexa';
}
.airpods .ruber p{
  font-size: 17px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 35px;;
}
.airpods .ruber li{
  position: relative;
  padding: 11px 0 0 40px;
  color: #fff;
  font-size: 18px;
}

.airpods .ruber li::before {
  position: absolute;
  content: "";
  height: 4px;
  background-color: var(--brand-teal);
  width: 5%;
  margin-left: 15px;
  top: 64%;
  /* transform: rotate(45deg); */
  transform: translateX(-100%);
  left: 10px;
  } 
.airpods{
    padding: 100px 0 100px 0;
  }
  .sever{
    padding: 100px 0 100px 0 ;
  }
  .star-6{
    background-image: url(../images/Groupcopy.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
 
.watchers h2{
  padding: 229px 57px 0 26px;
  color: #fff;
  font-family: 'Nexa';
  white-space: nowrap;
  text-align: center;
}
.watchers p{
  padding: 0px 33px 25px 38px;
}
.sever {
  padding: 51px 0 147px 0;
}
.gap{
  padding: 100px 0 0 0;
}
.cumputer .robwe h4{
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}
.cumputer .robwe h2{
  color: #fff;
  font-family: 'Nexa';
  white-space: nowrap;
  font-size: 36px;

}
.cumputer .robwe p{
  font-size: 17px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;

}
.cumputer{
  padding: 100px 0 0 0;
}
.dell{
  background-image: url(../images/7777777-0y.png);
  background-position: center center;
  width: 100%;
  background-repeat: no-repeat;
  padding: 100px 0 100px 0;
  margin: 91px 0 0 0;
  /* height: 99vh; */
}
.dell  .black-1{
  padding: 50px 0 50px 0;
}
.dell .black-1 ul li {
  padding: 32px 53px 0 4px;
}
.dell .black-1{
text-align: end;
} 
.dell  .black{
  padding: 50px 0 50px 0 ;
}
.dell .black ul li {
  padding: 38px 0px 0 53px;
  position: relative;
}
 
.dell .black{
  padding: 50px 0 32px 0;
 
}
.dell .black h2{
  color: #fff;
}
.dell .black-1 h2{
  color: #fff;
}
.dell .black-1 ul li{
  position: relative;
  
}
.dell .black-1 ul li img{
  position: absolute;
  transform: translate(-100%);
  right: -63px;
  top: 27px;
}
.dell .black ul li img{
  position: absolute;
  transform: translate(-100%);
  /* right: -63px; */
  left: 32px;
  top: 41px;
}
.nutss .crime h2{
  color: #fff;
  font-family: 'Nexa';
  font-size: 40px;
}
.nutss .crime h2{
  color: #fff;
  font-family: 'Nexa';
  /* white-space: nowrap; */
  font-size: 43px;
  padding: 0 0 18px 0;
}
.nutss .crime ul li{
  padding: 0px 0 9px 50px;
  position: relative;
}
.nutss .crime ul li img{
  position: absolute;
  top: 9px;
  width: 7%;
  transform: translate(-100%);
  left: 29px;
}
.nutss .crime ul li h4{
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;

}
.head h4{
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}
.head h2{
  text-align: center;
  color: #fff;
  font-family: 'Nexa';
  font-size: 40px;
  padding: 0px 0 35px 0;
}
.head .rooter-1 {
  text-align: center;
  /* padding: 33px 0 0 0; */
  border: 2px solid cornflowerblue;
}
.head .rooter-1 h3{
  color: #fff;
  font-size: 40px;
  font-family: 'Nexa';
  padding: 17px 0 0 0;
}
.head .rooter-1 h5{
  color: #fff;
  font-size: 30px;
  font-family: 'Kanit', sans-serif;

}
.head .rooter-1 p{
  font-size: 17px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
  padding: 4px 0 4px 6px;
}
.march{
  padding: 100px 0 0 0;
}
.march .shoperr  h2{
  color: #fff;
  font-size: 40px;
  font-family: 'Nexa';
}
.head{
  padding: 100px 0 0 0;
}
.march .shoperr p{
  font-size: 18px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
}
.verts{
  padding: 100px 0 0 0;
}
header .nav-item .m-sub-menu{
  display: none;
  /* top: 126%; */
  position: absolute;
  transform: translate(-100%);
  left: 149px;
}
header .nav-item .m-sub-menu li:hover{
  background-color:var(--brand-navy) ;
}
header .nav-item:hover .m-sub-menu{
  display: block;
}
header .nav-item{
  position: relative;
}
header .nav-item .m-sub-menu{
  white-space: nowrap;
}
header .nav-item .m-sub-menu{
  background-color: var(--brand-blue);
  
}
header .nav-item .m-sub-menu li {
 padding: 10px 5px 10px 10px;
 border: 1px solid rgba(0, 0, 0, 0.514);
}

.verts .shoperr p{
  font-size: 18px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 30px;
}
.labor img {
  width: 93%;
}
.verts .shoperr h2{
  color: #fff;
  font-size: 40px;
  font-family: 'Nexa';
}
.since1983 h3{
  color: #fff;
  font-size: 40px;
  font-family: 'Kanit', sans-serif;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  display: block;
  padding: 0 0 49px 0px;
}
@keyframes spin2 {
  from {
    transform: scale(0.43) rotate(0deg);
  }

  to {
    transform: scale(0.43) rotate(360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}
.card-item a{
  display: block;
  text-decoration: underline;
  font-size: 20px;
}
.text-item h2{
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  padding: 23px 0 10px 0;
  font-size: 25px;
}
.let-us-breath .card-item .card {
  background-color: transparent;
  text-align: center;
  padding: 25px;
  width: 100%;
}
/* 
  font-family: 'Kanit', sans-serif;
  font-family: 'Nexa';
  font-family: 'Outfit', sans-serif;

*/

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  canvas {
    display: none;
}
.handles img{
  display: none;
}
.handed img{
  display: none;
}
#superman img{
display: none;
}
.main-dots img{
  display: none;
}
.logo-box{
  display: flex;
  flex-wrap: wrap;
}
.menu-icon{
display: none;
}
.sec-home-banner .main-sec-banner h4 {  
  font-size: 20px;
}
.box {
  margin: 0 0 28px 0;
}
.main-local {
  padding: 45px 0 21px 0;
}
.texter h2 {
  font-size: 46px;
}
.texter-1 h2 {
  text-align: center;
}
.main-local .texter-1 p {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  padding: 0 0 0 27px;
}
.imagess img{
  display: none;
}
.logo-for{
padding: 0;
}
.logo-for h2 {
  font-size: 36px;
}
.logo-1 {
  display: block;
  margin: 11px auto;
}
.sec-home-banner .main-sec-banner h2 {
  margin: 8px 0 10px 0;
}
.help{
  padding: 0;
}
footer .icon ul li {
  padding: 10px 19px 10px 0;
}
footer .lasty p {
  width: 100%;
}
.footer-logo-p {
  font-size: 13px;
}
.form-tops {
  padding: 73px 0 0 0;
}
.form-tops h2 {
 
  font-size: 35px;
}
.custom-input input {
  margin: 0 0 12px 0;
}
.navbar-brand img {
  width: 75%;
}
.sec-home-banner .main-sec-banner h2 {
 font-size: 37px;
}
.navbar-light .navbar-toggler-icon {
  filter: brightness(0.5) invert(1);
}
.navbar-light .navbar-toggler {
  color: #fff;
  border-color: rgba(0, 0, 0, 0.5);
}
.pinky{
  display: none;
}
.map-usa h2{
  font-size: 40px;
}
.aboust-us-1 .main-local .texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  padding: 0 0 5px 0;
  font-size: 26px;
}
.hands-yet h2 span {

  font-size: 28px;
}
.hands-yet h2 {
  font-size: 30px;
}
.testimonial-sec{
  display: none;
}
.roys{
  display: none;
}
.sec-title h2{
  font-size: 23px;
}
.balist.sec-title span {
  font-size: 12px;

}
.second-blasi .let h3 {
 font-size: 21px;
}
.last-customs input {
  margin: 0 0 18px 0;
}
.portfolio-all .portfolio-filter-btn{
  display: block;
}
.coure img{
  display: none;
} 
.sec-inner-banner .circle-img-wrapper .spin-efct {
  top: 44px;
}
.sec-inner-banner .circle-img-wrapper .text-banner h2 {
  font-size: 20px;
  padding: 122px 0 0 0;
}

.sec-inner-banner {
background-image: none;
}
.sec-inner-banner .circle-img-wrapper {
  padding: 100px 0 0 0px;
}
.volet .paper img {
  width: 90%;
  margin: -92px 0 19px 0;
}
.twisto .flavore i{
  display: none;
}
.zip {
  margin: 0 0 25px 0;
 }
 .bottel .router-cards {
 
  margin: 16px 0 1px 0px;
  HEIGHT: inherit;
}
section.wrap .civil h2 {
  font-size: 29px;
 padding: 20px 0 0 0;
  }
  .role .gar {
    font-size: 31px;
}
.volet h3 {
  padding: 14px 0 39px 0;
  font-size: 31px;
  text-align: center;
}
header .nav-item:hover .m-sub-menu {
  display: block;
  z-index: 999;
}
footer::before {
  content: '';
  position: absolute;
  background-image: url(../images/global2.png);
  z-index: -1;
  top: 26%;
  bottom: 0;
  left: 20%;
  background-size: contain;
  right: 0;
  background-repeat: no-repeat;
}
.cool125 ul {
  display: block;
}
.cool125 ul .preety-1 {
  padding: 0;
}
.fresherner{
  display: none;
}
.ustad {
  font-size: 18px;
  width: 77%;
}
.shake h2 {
 font-size: 21px;
}
.saty img {
  width: 82%;
  margin: 0 0 0 14px;

}
.shake p {
  font-size: 14px;
}
.modei h4 {
  font-size: 21px;
}
.modei h2 {
 font-size: 27px;
}
.modei p {

  font-size: 16px;

}
.custom-45 h3 {
  font-size: 21px;
  }
  .custom-45 {
    margin: 0 0 13px 0;
}
.custom-45 p{
  font-size: 16px;
}
.shadow .golbal .content-85 h2 {
  font-size: 24px;
}
.shadow .golbal .content-85 p {
  font-size: 15px;
}
.shadow .itali h2 {
  font-size: 22px;
}
.shadow .itali p {
  font-size: 16px;
  padding: 20px 0 0 0;
}
.exper .tankin h4 {
  font-size: 24px;
}
.exper .tankin h2 {
  font-size: 31px;
 }
 .everword .infinxi h2 {
  font-size: 26px;
}
.rado img {
  transform: scale(0.7);
}
.wheel img{
  display: none;
}
.fresherner-1 img{
  display: none;
}
.since1983{
  padding: 0;
}
.since1983 h3 {
  font-size: 18px;
  width: 86%;
}
.massage img{
  display: none;
}
.rober img{
  display: none;
}
.cumputer{
  padding: 0;
}
.dell {
  background-image: none;
 padding: 0;
  margin: 0;
  /* height: 99vh; */
}
.nutss .crime h2 {
  font-size: 30px;
  padding: 37px 0 18px 0;
}
.head h2 {
  font-size: 33px;
}
.head .rooter-1 {
  margin: 0 0 12px 0;
}
.march .shoperr h2 {
  padding: 0 0 11px 0;
  font-size: 23px;
}
.smile img{
  display: none;
}
.labor {
  padding: 0 0 30px 0;
}
.verts .shoperr h2 {
  font-size: 25px;
}
.cumputer .robwe h2 {
  font-size: 18px;
}
.gap{
  padding: 0;
}
.beatuy img{
  display: none;
}
.golbale h2 {
  font-size: 38px;
}
.norwa .PRO h2 {
  font-size: 30px;
 }
 .airpods .ruber h2 {
  font-size: 30px;
}
.sever {
  padding: 0;
}
.watchers h2{
  padding: 0;
}
.star-5{
  display: none;
}
.circule img{
  display: none;
}
section.norwa{
  padding: 0;
  
}
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  canvas {
    display: none;
}
.handles img{
  display: none;
}
.handed img{
  display: none;
}
#superman img{
display: none;
}
.main-dots img{
  display: none;
}
.logo-box{
  display: flex;
  flex-wrap: wrap;
}
.menu-icon{
display: none;
}
.sec-home-banner .main-sec-banner h4 {  
  font-size: 20px;
}
.box {
  margin: 0 0 28px 0;
}
.main-local {
  padding: 45px 0 21px 0;
}
.texter h2 {
  font-size: 46px;
}
.texter-1 h2 {
  text-align: center;
}
.main-local .texter-1 p {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  font-family: 'Outfit', sans-serif;
  padding: 0 0 0 27px;
}
.imagess img{
  display: none;
}
.logo-for{
padding: 0;
}
.logo-for h2 {
  font-size: 36px;
}
.logo-1 {
  display: block;
  margin: 11px auto;
}
.sec-home-banner .main-sec-banner h2 {
  margin: 8px 0 10px 0;
}
.help{
  padding: 0;
}
footer .icon ul li {
  padding: 10px 19px 10px 0;
}
footer .lasty p {
  width: 100%;
}
.footer-logo-p {
  font-size: 13px;
}
.form-tops {
  padding: 73px 0 0 0;
}
.form-tops h2 {
 
  font-size: 35px;
}
.custom-input input {
  margin: 0 0 12px 0;
}
.navbar-brand img {
  width: 75%;
}
.sec-home-banner .main-sec-banner h2 {
 font-size: 37px;
}
.navbar-light .navbar-toggler-icon {
  filter: brightness(0.5) invert(1);
}
.navbar-light .navbar-toggler {
  color: #fff;
  border-color: rgba(0, 0, 0, 0.5);
}
.pinky{
  display: none;
}
.map-usa h2{
  font-size: 40px;
}
.aboust-us-1 .main-local .texter h2 {
  font-family: 'Nexa';
  font-style: bold;
  padding: 0 0 5px 0;
  font-size: 26px;
}
.hands-yet h2 span {

  font-size: 28px;
}
.hands-yet h2 {
  font-size: 30px;
}
.testimonial-sec{
  display: none;
}
.roys{
  display: none;
}
.sec-title h2{
  font-size: 23px;
}
.balist.sec-title span {
  font-size: 12px;

}
.second-blasi .let h3 {
 font-size: 21px;
}
.last-customs input {
  margin: 0 0 18px 0;
}
.portfolio-all .portfolio-filter-btn{
  display: block;
}
.coure img{
  display: none;
} 
.sec-inner-banner .circle-img-wrapper .spin-efct {
  top: 44px;
}
.sec-inner-banner .circle-img-wrapper .text-banner h2 {
  font-size: 20px;
  padding: 122px 0 0 0;
}

.sec-inner-banner {
background-image: none;
}
.sec-inner-banner .circle-img-wrapper {
  padding: 100px 0 0 0px;
}
.volet .paper img {
  width: 90%;
  margin: -92px 0 19px 0;
}
.twisto .flavore i{
  display: none;
}
.zip {
  margin: 0 0 25px 0;
 }
 .bottel .router-cards {
 
  margin: 16px 0 1px 0px;
  HEIGHT: inherit;
}
section.wrap .civil h2 {
  font-size: 29px;
 padding: 20px 0 0 0;
  }
  .role .gar {
    font-size: 31px;
}
.volet h3 {
  padding: 14px 0 39px 0;
  font-size: 31px;
  text-align: center;
}
header .nav-item:hover .m-sub-menu {
  display: block;
  z-index: 999;
}
footer::before {
  content: '';
  position: absolute;
  background-image: url(../images/global2.png);
  z-index: -1;
  top: 26%;
  bottom: 0;
  left: 20%;
  background-size: contain;
  right: 0;
  background-repeat: no-repeat;
}
.cool125 ul {
  display: block;
}
.cool125 ul .preety-1 {
  padding: 0;
}
.fresherner{
  display: none;
}
.ustad {
  font-size: 18px;
  width: 77%;
}
.shake h2 {
 font-size: 21px;
}
.saty img {
  width: 82%;
  margin: 0 0 0 14px;

}
.shake p {
  font-size: 14px;
}
.modei h4 {
  font-size: 21px;
}
.modei h2 {
 font-size: 27px;
}
.modei p {

  font-size: 16px;

}
.custom-45 h3 {
  font-size: 21px;
  }
  .custom-45 {
    margin: 0 0 13px 0;
}
.custom-45 p{
  font-size: 16px;
}
.shadow .golbal .content-85 h2 {
  font-size: 24px;
}
.shadow .golbal .content-85 p {
  font-size: 15px;
}
.shadow .itali h2 {
  font-size: 22px;
}
.shadow .itali p {
  font-size: 16px;
  padding: 20px 0 0 0;
}
.exper .tankin h4 {
  font-size: 24px;
}
.exper .tankin h2 {
  font-size: 31px;
 }
 .everword .infinxi h2 {
  font-size: 26px;
}
.rado img {
  transform: scale(0.7);
}
.wheel img{
  display: none;
}
.fresherner-1 img{
  display: none;
}
.since1983{
  padding: 0;
}
.since1983 h3 {
  font-size: 18px;
  width: 86%;
}
.massage img{
  display: none;
}
.rober img{
  display: none;
}
.cumputer{
  padding: 0;
}
.dell {
  background-image: none;
 padding: 0;
  margin: 0;
  /* height: 99vh; */
}
.nutss .crime h2 {
  font-size: 30px;
  padding: 37px 0 18px 0;
}
.head h2 {
  font-size: 33px;
}
.head .rooter-1 {
  margin: 0 0 12px 0;
}
.march .shoperr h2 {
  padding: 0 0 11px 0;
  font-size: 23px;
}
.smile img{
  display: none;
}
.labor {
  padding: 0 0 30px 0;
}
.verts .shoperr h2 {
  font-size: 25px;
}
.cumputer .robwe h2 {
  font-size: 18px;
}
.gap{
  padding: 0;
}
.beatuy img{
  display: none;
}
.golbale h2 {
  font-size: 38px;
}
.norwa .PRO h2 {
  font-size: 30px;
 }
 .airpods .ruber h2 {
  font-size: 30px;
}
.sever {
  padding: 0;
}
.watchers h2{
  padding: 0;
}
.star-5{
  display: none;
}
.circule img{
  display: none;
}
section.norwa{
  padding: 0;
}
}

/* INNOFIZE semantic theme layer */
::selection {
  color: var(--color-white);
  background: var(--brand-teal);
}

a {
  color: var(--brand-blue);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--brand-teal);
}

.header-1.scroll,
.menu-sec,
footer {
  background: var(--brand-navy);
}

.header-1.scroll {
  box-shadow: 0 8px 24px rgba(13, 66, 134, 0.16);
}

.header-1 .navbar-nav .nav-link.active,
.header-1 .navbar-nav .nav-link:hover,
.menu-sec .menu-link:hover,
footer a:hover {
  color: var(--brand-aqua) !important;
}

.btn,
.btn1,
.btn12,
.btn858,
button[type="submit"],
input[type="submit"] {
  border-color: var(--brand-blue);
}

.btn:hover,
.btn1:hover,
.btn12:hover,
.btn858:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  border-color: var(--brand-navy);
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  border-color: var(--color-border);
}

input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: var(--focus-ring);
}

.portfolio-all .portfolio-filter-btn button.active {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--color-white);
}

.portfolio-all .portfolio-filter-btn button:hover {
  background-color: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--color-white);
}

/* White linework and monochrome icon treatment for dark brand surfaces */
.box span.top,
.box span.right,
.box span.bottom,
.box span.left {
  background-color: var(--color-white);
}

.box,
.draw-border,
.draw-border1,
.btn,
.btn1,
.btn12,
.btn858,
button[type="submit"],
input[type="submit"] {
  border-color: var(--color-white);
}

.draw-border,
.draw-border1 {
  box-shadow: inset 0 0 0 2px var(--color-white);
}

.box .content > img,
.box .item-icon img,
.let-us-breath .item-icon img {
  filter: brightness(0) invert(1);
}

/* Keep the hero vertically centered within the available screen height. */
.sec-home-banner {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 110px 0 40px;
}

.sec-home-banner > .container {
  width: 100%;
}

.sec-home-banner .main-sec-banner {
  min-height: 50vh;
  min-height: 50svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

@media (max-width: 767.98px) {
  .sec-home-banner {
    padding: 90px 0 30px;
  }
}

/* Modern white service-intro banner. */
.texture {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-white) !important;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.texture::before,
.texture::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.texture::before {
  width: 24rem;
  height: 24rem;
  top: -14rem;
  right: -5rem;
  background: radial-gradient(circle, rgba(7,78,162,.14), transparent 68%);
  animation: service-intro-drift 12s ease-in-out infinite alternate;
}

.texture::after {
  width: 15rem;
  height: 15rem;
  bottom: -10rem;
  left: 8%;
  background: radial-gradient(circle, rgba(61,167,121,.12), transparent 70%);
}

.texture .balist {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.texture .balist h2 {
  margin: 0;
  color: var(--brand-navy) !important;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.texture .balist span {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
  color: var(--brand-teal) !important;
  font-size: clamp(.75rem, 1.3vw, 1rem);
  font-weight: 600;
  letter-spacing: .14em;
}

.texture .balist i { color: var(--brand-green); }

@keyframes service-intro-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24px, 16px, 0); }
}

@media (max-width: 575.98px) {
  .texture .balist { padding-left: .75rem; padding-right: .75rem; }
  .texture .balist span { gap: .4rem; letter-spacing: .08em; }
}

/* Responsive use of the supplied INNOFIZE logo asset. */
.brand-logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-image--header {
  width: clamp(118px, 11vw, 158px);
}

.navbar-brand img.brand-logo-image--header {
  width: clamp(118px, 11vw, 158px) !important;
  max-width: clamp(118px, 11vw, 158px);
  height: auto;
}

.brand-logo-image--footer {
  width: clamp(155px, 16vw, 210px);
  margin-bottom: 1rem;
  padding: 0.4rem;
  border-radius: 0.5rem;
  background: var(--color-white);
}

.brand-logo-image--graphic {
  width: clamp(150px, 20vw, 240px);
  margin: 0 auto;
}

.menu-bg-images .brand-logo-image--watermark {
  width: min(52vw, 620px);
  opacity: 0.1;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .brand-logo-image--header {
    width: 108px;
  }

  .navbar-brand img.brand-logo-image--header {
    width: 108px !important;
    max-width: 108px;
  }

  .menu-bg-images .brand-logo-image--watermark {
    width: 82vw;
  }
}

/* INNOFIZE wordmark replaces legacy company-name artwork without altering image assets. */
.brand-wordmark {
  display: inline-block;
  color: var(--color-white);
  font-family: 'Nexa', 'Inter', sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
}

.brand-wordmark::after {
  content: '';
  display: block;
  width: 42%;
  height: 2px;
  margin-top: 0.35rem;
  background: var(--brand-aqua);
}

.brand-wordmark--footer {
  margin-bottom: 1rem;
}

.brand-wordmark--watermark {
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(3rem, 11vw, 10rem);
  pointer-events: none;
}

.brand-wordmark--watermark::after,
.brand-wordmark--graphic::after {
  display: none;
}

.brand-wordmark--graphic {
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}

/* Light INNOFIZE hero with responsive brand motion. */
.sec-home-banner {
  isolation: isolate;
  overflow: hidden;
  background: var(--color-white);
}

.sec-home-banner::before,
.sec-home-banner::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: clamp(280px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  will-change: transform;
}

.sec-home-banner::before {
  top: -24%;
  right: -10%;
  background: radial-gradient(circle, rgba(7, 78, 162, 0.16) 0%, rgba(19, 106, 154, 0.08) 42%, transparent 72%);
  animation: innofize-float-one 12s ease-in-out infinite alternate;
}

.sec-home-banner::after {
  bottom: -34%;
  left: -10%;
  background: radial-gradient(circle, rgba(45, 146, 136, 0.15) 0%, rgba(61, 167, 121, 0.07) 44%, transparent 72%);
  animation: innofize-float-two 15s ease-in-out infinite alternate;
}

.sec-home-banner > .container {
  position: relative;
  z-index: 2;
}

.sec-home-banner .particles-dot {
  inset: 0;
  z-index: 1;
  bottom: 0;
  opacity: 0.78;
  pointer-events: none;
}

.sec-home-banner .main-sec-banner h4 {
  color: var(--brand-teal);
}

.sec-home-banner .main-sec-banner h2 {
  color: var(--brand-navy);
}

.sec-home-banner .main-sec-banner p {
  color: var(--color-text-muted) !important;
}

.navbar-brand .brand-wordmark {
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
}

.header-1.scroll .navbar-brand .brand-wordmark,
.footer-logo .brand-wordmark,
.menu-sec .brand-wordmark {
  color: var(--color-white);
}

.menu-icon .toggle-icon-text {
  color: var(--color-text);
}

.menu-icon a span {
  background-color: var(--brand-navy);
}

.menu-icon:has(a.active) .toggle-icon-text {
  color: var(--color-white);
}

.menu-icon:has(a.active) a span {
  background-color: var(--color-white);
}

@keyframes innofize-content-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes innofize-float-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-7%, 10%, 0) scale(1.12); }
}

@keyframes innofize-float-two {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(10%, -8%, 0) scale(1.1); }
}

@media (max-width: 767.98px) {
  .navbar-brand .brand-wordmark {
    font-size: 1.6rem;
  }

  .sec-home-banner::before {
    top: -8%;
    right: -45%;
  }

  .sec-home-banner::after {
    bottom: -12%;
    left: -48%;
  }
}

.hero-tech-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

#superman .card__overlay img,
#superman img.main-img {
  filter: brightness(0) invert(1);
}

.harder .handles > img,
.harder .handles .handed img {
  filter: brightness(0) invert(1);
}

/* Light contact form treatment using the INNOFIZE logo palette. */
.form-tops {
  color: var(--color-text);
  background: var(--color-white);
}

.form-tops h4 {
  color: var(--brand-teal);
}

.form-tops h2 {
  color: var(--brand-navy);
}

.form-tops p {
  color: var(--color-text-muted) !important;
}

.form-tops .custom-input input,
.form-tops .text-area textarea {
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-neutral);
}

.form-tops .custom-input input:focus,
.form-tops .text-area textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: var(--focus-ring);
}

.form-tops input::placeholder,
.form-tops textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.form-tops .btn12 {
  color: var(--color-white);
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  box-shadow: var(--shadow-brand);
}

.form-tops .btn12:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

/* Premium INNOFIZE loading screen. */
.loader {
  isolation: isolate;
  overflow: hidden;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
  background: var(--brand-hero-gradient);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader::before,
.loader::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(55vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.32;
}

.loader::before {
  top: -35%;
  right: -12%;
  background: radial-gradient(circle, var(--brand-aqua), transparent 68%);
}

.loader::after {
  bottom: -42%;
  left: -15%;
  background: radial-gradient(circle, var(--brand-green), transparent 70%);
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__content {
  width: min(88vw, 760px);
  text-align: center;
}

.loader__content svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.loader__content svg text {
  fill: var(--color-white);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1;
  font-family: 'Nexa', 'Inter', sans-serif;
  font-size: 112px;
  font-weight: 800;
  letter-spacing: 0.11em;
  animation: loader-wordmark 1.6s ease-in-out infinite alternate;
}

.loader__tagline {
  margin: -0.65rem 0 1.4rem;
  color: var(--color-white) !important;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.loader__progress {
  width: min(64vw, 320px);
  height: 2px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.loader__progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
  animation: loader-progress 1.2s ease-in-out infinite;
}

@keyframes loader-wordmark {
  from { opacity: 0.72; }
  to { opacity: 1; }
}

@keyframes loader-progress {
  from { transform: translateX(-110%); }
  to { transform: translateX(250%); }
}

@media (max-width: 575.98px) {
  .loader__content svg text {
    font-size: 92px;
    letter-spacing: 0.07em;
  }

  .loader__tagline {
    margin-top: -0.35rem;
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader__content svg text,
  .loader__progress span {
    animation: none;
  }
}

/* Keep Why Choose Us artwork fully visible on smaller screens. */
@media (max-width: 991.98px) {
  .harder .handles {
    width: min(100%, 480px);
    aspect-ratio: 1 / .9;
    overflow: hidden;
  }

  .harder .handles > .LOTSSS {
    inset: -4% auto auto -5%;
    width: 108%;
    height: 108%;
  }

  .harder .handles .handed img {
    transform: scale(1.08);
  }
}

@media (max-width: 575.98px) {
  .harder .handles {
    width: min(100%, 360px);
    min-height: 230px;
  }

  .harder .handles > .LOTSSS {
    inset: -2% auto auto -7%;
    width: 114%;
    height: 114%;
  }
}

/* Service banners share the clean, responsive INNOFIZE hero treatment. */
.service-hero-banner {
  position: relative;
  isolation: isolate;
  min-height: 68vh;
  min-height: 68svh;
  overflow: hidden;
  background: var(--color-white) !important;
  background-image: radial-gradient(circle at 82% 28%, rgba(45,146,136,.12), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff 58%, rgba(45,146,136,.06) 100%) !important;
}

/* Keep each web-development section on a clean white canvas. */
.web-development-page > section {
  background-color: var(--color-white) !important;
}

.web-development-page > section h1,
.web-development-page > section h2,
.web-development-page > section h3,
.web-development-page > section h4 {
  color: var(--brand-navy);
}

.web-development-page > section p {
  color: var(--color-text-muted);
}

.contact-details {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--brand-aqua);
  background: var(--color-bg-light);
  border-radius: 0 .75rem .75rem 0;
}

.contact-details p {
  margin: 0 0 .55rem;
  font-size: .95rem;
  line-height: 1.6;
}

.contact-details p:last-child { margin-bottom: 0; }
.contact-details strong { color: var(--brand-navy); }
.contact-details a { color: var(--brand-blue); }
.contact-details a:hover { color: var(--brand-teal); }

.service-offerings-title {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.service-offerings-title h2 {
  margin-bottom: .5rem;
  color: var(--color-white) !important;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.service-offerings-title p {
  color: rgba(255,255,255,.78);
  margin: 0;
}

.process-section { position: relative; isolation: isolate; overflow: hidden; }
.process-section > .container { position: relative; z-index: 2; }
.process-services-title {
  max-width: 780px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.process-services-title h2 {
  margin-bottom: .6rem;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.process-services-title p {
  margin: 0;
  color: var(--color-text-muted);
}
.process-tech-scene { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .24; }
.process-tech-scene canvas { width: 100% !important; height: 100% !important; display: block; }
.process-section .box { height: 100%; min-height: 320px; }

.key-forgin {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue) 58%, var(--brand-teal)) !important;
}

.key-forgin > .container { position: relative; z-index: 2; }
.services-tech-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
}

.services-tech-scene canvas { width: 100% !important; height: 100% !important; display: block; }

.key-forgin .box {
  height: 100%;
  min-height: 285px;
}

/* Refined Services navigation dropdown. */
.header-1 .nav-item:has(.m-sub-menu) > .service-nav-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.service-nav-icon {
  font-size: .62rem;
  transition: transform .25s ease, color .25s ease;
}

.header-1 .nav-item:has(.m-sub-menu):hover .service-nav-icon { transform: rotate(180deg); }

.header-1 .nav-item .m-sub-menu {
  display: block;
  left: 50%;
  top: calc(100% + 8px);
  min-width: 220px;
  padding: .55rem;
  list-style: none;
  transform: translate(-50%, -8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: 1px solid rgba(220,230,236,.95);
  border-radius: .8rem;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 40px rgba(13,66,134,.16);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.header-1 .nav-item .m-sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.header-1 .nav-item:hover > .m-sub-menu,
.header-1 .nav-item:focus-within > .m-sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-1 .nav-item .m-sub-menu li {
  padding: 0;
  border: 0;
}

.header-1 .nav-item .m-sub-menu li a {
  display: block;
  padding: .65rem .8rem;
  border-radius: .5rem;
  color: var(--brand-navy) !important;
  font-size: .92rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.header-1 .nav-item .m-sub-menu li a:hover {
  color: var(--color-white) !important;
  background: var(--brand-blue);
  transform: translateX(3px);
}

.header-1 .nav-item .m-sub-menu li a:focus-visible {
  color: var(--color-white) !important;
  background: var(--brand-blue);
  outline: 2px solid var(--brand-aqua);
  outline-offset: -2px;
}

@media (max-width: 991.98px) {
  .header-1 .nav-item .m-sub-menu {
    position: static;
    min-width: 0;
    margin: .35rem 0 .5rem;
    transform: none;
    box-shadow: none;
    border-radius: .5rem;
  }
  .header-1 .nav-item:hover > .m-sub-menu,
  .header-1 .nav-item:focus-within > .m-sub-menu { transform: none; }
  .header-1 .nav-item.services-open > .m-sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
  }
}

/* Premium light footer with restrained branded motion. */
footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-white) !important;
  color: var(--color-text) !important;
  border-top: 1px solid var(--color-border);
}

footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  right: -10rem;
  top: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,146,136,.14), transparent 68%);
  animation: footer-glow 14s ease-in-out infinite alternate;
  pointer-events: none;
}

footer .footer-logo-p,
footer .lasty p,
footer .everlast p {
  color: var(--color-text-muted) !important;
}

footer .help-1 h2,
footer .last-h2 h2 {
  color: var(--brand-navy) !important;
}

footer .help-2 ul li a,
footer .icon ul li a {
  color: var(--brand-blue) !important;
}

footer .help-2 ul li a:hover,
footer .icon ul li a:hover {
  color: var(--brand-teal) !important;
}

footer .last-customs {
  position: relative;
  width: 100%;
  border-color: var(--color-border) !important;
  background: var(--color-bg-light) !important;
  border-radius: 28px;
}

footer .last-customs input {
  width: 100%;
  min-width: 0;
  padding-right: 3.25rem;
  border: 1px solid var(--color-border);
  color: var(--color-text) !important;
  background: transparent !important;
}

footer .last-customs button {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--brand-navy);
  transform: translateY(-50%);
  cursor: pointer;
}

footer .last-customs button i {
  position: static;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
}

footer .last-customs input:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(45, 146, 136, .18);
}

footer .last-customs button:hover,
footer .last-customs button:focus-visible {
  color: var(--brand-blue) !important;
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(45, 146, 136, .2);
}

footer .everlast {
  border-top-color: var(--color-border) !important;
}

@keyframes footer-glow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-24px, 18px, 0) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  footer::before { animation: none; }
}

/* Enhanced home hero motion layer. */
.sec-home-banner {
  background-image:
    radial-gradient(circle at 78% 44%, rgba(7,78,162,.10), transparent 29%),
    radial-gradient(circle at 92% 88%, rgba(61,167,121,.10), transparent 24%),
    linear-gradient(135deg, #fff 0%, #fff 62%, #f3f7fa 100%) !important;
}

.hero-tech-scene {
  opacity: .9;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}

@media (max-width: 767.98px) {
  .hero-tech-scene {
    opacity: .42;
    mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
  }
}

.service-hero-banner::before,
.service-hero-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  animation: service-banner-float 12s ease-in-out infinite alternate;
}

.service-hero-banner::before {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 8%;
  background: radial-gradient(circle, rgba(7,78,162,.18), rgba(7,78,162,0) 70%);
}

.service-hero-banner::after {
  width: 18rem;
  height: 18rem;
  right: 18%;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(61,167,121,.16), rgba(61,167,121,0) 70%);
  animation-delay: -4s;
}

.service-hero-banner > .container,
.service-hero-banner .row,
.service-hero-banner [class*="col-"] {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-hero-banner > .container {
  display: flex;
  align-items: center;
  min-height: 72vh;
  min-height: 72svh;
}

.service-hero-banner > .container > .row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.service-hero-banner .main-sec-banner {
  min-height: 50vh;
  min-height: 50svh;
  max-width: 760px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.service-hero-banner .main-sec-banner h2 {
  margin: 0 0 1.25rem;
  color: var(--brand-navy) !important;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-align: left;
}

.service-hero-banner .main-sec-banner p {
  max-width: 680px;
  margin: 0;
  color: var(--color-text-muted) !important;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
  text-align: left;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.service-hero-banner .particles-dot,
.service-hero-banner #home_wave {
  z-index: 0;
}

@keyframes service-banner-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 14px, 0) scale(1.06); }
}

@media (max-width: 767.98px) {
  .sec-home-banner,
  .service-hero-banner {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .sec-home-banner > .container,
  .sec-home-banner .row,
  .sec-home-banner [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  .service-hero-banner {
    min-height: 72vh;
    min-height: 72svh;
  }

  .service-hero-banner > .container {
    min-height: 72vh;
    min-height: 72svh;
    padding-left: 12px;
    padding-right: 12px;
  }

  .service-hero-banner .main-sec-banner {
    min-height: 58vh;
    min-height: 58svh;
    width: 100% !important;
    max-width: 100% !important;
  }

  .service-hero-banner .main-sec-banner h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .service-hero-banner .main-sec-banner p {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
    font-size: 1rem;
    line-height: 1.65;
    display: block;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere;
    overflow: hidden;
  }

  .sec-home-banner .main-sec-banner p {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    display: block;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-banner::before,
  .service-hero-banner::after { animation: none; }
}

/* Keep the full-color logo legible on the dark sticky header. */
.header-1 .navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-1.scroll .navbar-brand {
  padding: 0.25rem 0.45rem;
  border-radius: 0.65rem;
  background: var(--color-white);
  box-shadow: 0 6px 20px rgba(21, 40, 59, 0.16);
}

.header-1.scroll .navbar-brand img.brand-logo-image--header {
  width: 104px !important;
  max-width: 104px;
}

@media (max-width: 767.98px) {
  .header-1.scroll .navbar-brand img.brand-logo-image--header {
    width: 92px !important;
    max-width: 92px;
  }
}

/* Light Why Choose Us section with logo-inspired artwork colors. */
.harder {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 5px solid #0a3d62;
  border-bottom: 5px solid #0a3d62;
  background: linear-gradient(135deg, #fff 0%, #f4f9fc 100%);
}

.harder::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -14%;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 146, 136, 0.12), transparent 70%);
}

.harder .hands-yet {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.harder .why-choose-eyebrow {
  margin: 0 0 .9rem;
  color: #0a3d62 !important;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
}

.harder .hands-yet h2 {
  margin: 0 0 1.5rem;
  color: #082f49;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.harder .hands-yet h2 .why-choose-title-main,
.harder .hands-yet h2 .why-choose-title-sub {
  display: block;
  color: inherit;
}

.harder .hands-yet h2 .why-choose-title-sub {
  margin-top: .35rem;
  font-size: .72em;
  letter-spacing: -.02em;
}

.harder .hands-yet .why-choose-copy {
  max-width: 540px;
  margin: 0 0 1.8rem;
  color: #4b5968 !important;
  font-size: 1rem;
  line-height: 1.7;
}

.harder .why-choose-list {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.harder .why-choose-list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0;
  color: #344454;
  font-size: 1rem;
  line-height: 1.5;
  transition: color .25s ease, transform .25s ease;
}

.harder .why-choose-list li:hover {
  color: #0a3d62;
  transform: translateX(5px);
}

.harder .why-choose-icon {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #119c89;
}

.harder .why-choose-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: rgba(26, 188, 156, .1);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.harder > .container > .row > .col-12 { min-width: 0; }

/* The fixed aspect ratio removes layout jumps and gives both artwork layers a shared frame. */
.harder .handles {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  aspect-ratio: 1 / .88;
  min-height: 0;
  margin-inline: auto;
  isolation: isolate;
}

.harder .why-choose-glow {
  position: absolute;
  inset: 7% 2% 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 188, 156, .2), rgba(19, 106, 154, .1) 48%, transparent 72%);
  filter: blur(8px);
}

.harder .handles > .LOTSSS,
.harder .handles .handed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Scale the transparent-padded PNGs inside one precisely aligned frame. */
.harder .handles > .LOTSSS,
.harder .handles .handed img {
  display: block;
  object-fit: contain;
  object-position: center;
}
.harder .handles > .LOTSSS {
  inset: -18% auto auto -16%;
  z-index: 2;
  width: 92%;
  height: 92%;
  max-width: none;
  animation: none;
  filter: hue-rotate(-28deg) saturate(1.12) brightness(.92);
}
.harder .handles .handed {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.harder .handles .handed img {
  width: 100%;
  height: 100%;
  transform: scale(1.16);
  filter: hue-rotate(-62deg) saturate(1.08) brightness(.96);
}
.harder .handles > .LOTSSS,
.harder .handles .handed {
  will-change: transform, opacity;
}

@media (max-width: 991.98px) {
  .harder .hands-yet { max-width: 680px; margin-inline: auto; text-align: center; }
  .harder .hands-yet .why-choose-copy { margin-inline: auto; }
  .harder .why-choose-list { max-width: 590px; margin-inline: auto; text-align: left; }
  .harder .handles { width: min(100%, 520px); margin-top: 2rem; }
  .harder .handles > .LOTSSS { inset: -12% auto auto -10%; }
}

@media (max-width: 575.98px) {
  .harder { border-width: 4px; }
  .harder .hands-yet h2 { font-size: clamp(2.35rem, 12vw, 3rem); }
  .harder .why-choose-list li { align-items: flex-start; }
  .harder .why-choose-icon { flex-basis: 27px; width: 27px; height: 27px; }
  .harder .handles { min-height: 245px; }
}

@media (prefers-reduced-motion: reduce) {
  .harder .why-choose-list li,
  .harder .handles > img,
  .harder .handles .handed img { transition: none; }
  .harder .why-choose-list li:hover { transform: none; }
}

/* About page only: brand-color treatment with the same Home page behavior. */
.about-why-choose {
  border-color: var(--brand-aqua);
  background:
    radial-gradient(circle at 88% 22%, rgba(26, 188, 156, .24), transparent 34%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 62%, var(--brand-teal) 100%);
}

.about-why-choose::before {
  background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
}

.about-why-choose .why-choose-eyebrow,
.about-why-choose .hands-yet h2,
.about-why-choose .hands-yet h2 .why-choose-title-main,
.about-why-choose .hands-yet h2 .why-choose-title-sub {
  color: var(--color-white) !important;
}

.about-why-choose .hands-yet .why-choose-copy {
  color: rgba(255, 255, 255, .84) !important;
}

.about-why-choose .why-choose-list li,
.about-why-choose .why-choose-list li:hover {
  color: var(--color-white);
}

.about-why-choose .why-choose-icon {
  color: var(--brand-aqua);
}

/* About page only: render both Why Choose Us artwork layers in white. */
.about-why-choose .handles > .LOTSSS,
.about-why-choose .handles .handed img {
  filter: brightness(0) invert(1);
}

/* Keep the About-page network logo centered on the SVG connection point. */
.pinky .sec-wrapper .circles-container {
  top: 46.65%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
}

.pinky .sec-wrapper .circles-container .circle {
  inset: 0;
}

.pinky .sec-wrapper .circles-container .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  animation: none;
  opacity: 1;
}

.pinky .sec-wrapper .circles-container .logo a {
  display: grid;
  width: 158px;
  min-height: 86px;
  padding: 12px 16px;
  place-items: center;
  border: 1px solid rgba(19, 106, 154, .15);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(10, 61, 98, .2);
}

.pinky .sec-wrapper .circles-container .logo img.brand-logo-image--graphic {
  display: block;
  width: 126px;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

/* Website Development: high-impact, conversion-focused hero. */
.web-development-page .web-dev-hero {
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(26, 188, 156, .22), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(46, 111, 218, .22), transparent 34%),
    linear-gradient(125deg, #061f35 0%, #0a3d62 58%, #075d72 100%) !important;
}

.web-development-page .web-dev-hero::before {
  right: -5rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(26,188,156,.3), transparent 68%);
}

.web-development-page .web-dev-hero > .container {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.web-development-page .web-dev-hero-row { width: 100%; }

.web-development-page .web-dev-hero .main-sec-banner {
  display: flex;
  min-height: 0;
  max-width: 720px;
  align-items: flex-start;
  text-align: left;
}

.web-dev-eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: .55rem .9rem;
  border: 1px solid rgba(89, 231, 205, .42);
  border-radius: 999px;
  color: #7ff5df;
  background: rgba(26, 188, 156, .1);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.web-development-page .web-dev-hero .main-sec-banner h1 {
  max-width: 700px;
  margin: 0 0 1.35rem;
  color: #fff;
  font-family: 'Nexa', 'Outfit', sans-serif;
  font-size: clamp(3.25rem, 5.5vw, 5.75rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
}

.web-development-page .web-dev-hero .main-sec-banner h1 span { color: #55dfc4; }

.web-development-page .web-dev-hero .main-sec-banner > p {
  max-width: 620px;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.web-dev-benefits {
  display: grid;
  gap: .8rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: rgba(255,255,255,.9);
  list-style: none;
}

.web-dev-benefits li { display: flex; align-items: center; gap: .7rem; }
.web-dev-benefits i {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #06283f;
  background: #55dfc4;
  font-size: .7rem;
}

.web-dev-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.web-dev-actions a {
  display: inline-flex;
  min-height: 52px;
  padding: .8rem 1.35rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: .75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.web-dev-primary { color: #082f49 !important; border-color: #55dfc4 !important; background: #55dfc4; }
.web-dev-secondary { color: #fff !important; background: rgba(255,255,255,.06); }
.web-dev-actions a:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }

.web-dev-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / .92;
  margin-left: auto;
  perspective: 1200px;
}

.web-dev-browser {
  position: absolute;
  inset: 9% 3% 8% 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 1.3rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
  transform: rotateY(-8deg) rotateX(3deg);
  animation: web-browser-float 5s ease-in-out infinite alternate;
}

.web-dev-browser-bar { display: flex; height: 48px; padding: 0 1rem; align-items: center; gap: .42rem; background: #eaf1f5; }
.web-dev-browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #1abc9c; }
.web-dev-browser-bar span:nth-child(2) { background: #2e6fda; }
.web-dev-browser-bar span:nth-child(3) { background: #0a3d62; }
.web-dev-browser-bar b { margin-left: .6rem; color: #647484; font-size: .7rem; font-weight: 600; }
.web-dev-browser-body { position: relative; height: calc(100% - 48px); padding: 3rem 2.2rem; background: linear-gradient(145deg,#fff,#eaf6f5); }
.web-dev-code-label { position: absolute; right: 1.5rem; top: 1.2rem; color: rgba(10,61,98,.12); font-size: 4rem; font-weight: 800; }
.web-dev-mock-nav { display: flex; gap: .5rem; margin-bottom: 3.5rem; }
.web-dev-mock-nav i { display:block; width: 38px; height: 5px; border-radius: 5px; background: #b9cbd5; }
.web-dev-mock-title { width: 76%; height: 25px; border-radius: 6px; background: #0a3d62; }
.web-dev-mock-copy { width: 88%; height: 8px; margin-top: 1.2rem; border-radius: 5px; background: #9eafb9; }
.web-dev-mock-copy.short { width: 62%; margin-top: .55rem; }
.web-dev-mock-button { width: 112px; height: 34px; margin-top: 1.5rem; border-radius: 7px; background: #1abc9c; }
.web-dev-mock-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:.7rem; margin-top:2.5rem; }
.web-dev-mock-grid span { height: 86px; border-radius: .65rem; background: linear-gradient(145deg,#d7e8ee,#fff); box-shadow: 0 8px 20px rgba(10,61,98,.08); }

.web-dev-stat { position:absolute; z-index:3; display:flex; align-items:center; gap:.65rem; padding:.85rem 1rem; border:1px solid rgba(255,255,255,.32); border-radius:.85rem; color:#fff; background:rgba(6,31,53,.88); box-shadow:0 14px 35px rgba(0,0,0,.28); backdrop-filter:blur(8px); }
.web-dev-stat strong { font-size:1.45rem; color:#55dfc4; }
.web-dev-stat span { font-size:.78rem; font-weight:700; }
.web-dev-stat-speed { right:-3%; top:2%; }
.web-dev-stat-mobile { left:-8%; bottom:3%; }
.web-dev-stat-mobile i { color:#55dfc4; font-size:1.35rem; }
.web-dev-orbit { position:absolute; border:1px dashed rgba(85,223,196,.35); border-radius:50%; }
.web-dev-orbit-one { inset:0 1% 0 -8%; animation:web-orbit 18s linear infinite; }
.web-dev-orbit-two { inset:14% -8% 13% 8%; animation:web-orbit 13s linear infinite reverse; }

@keyframes web-browser-float { to { transform: rotateY(-5deg) rotateX(1deg) translateY(-12px); } }
@keyframes web-orbit { to { transform: rotate(360deg); } }

@media (max-width: 991.98px) {
  .web-development-page .web-dev-hero,
  .web-development-page .web-dev-hero > .container {
    min-height: 100vh;
    min-height: 100svh;
  }
  .web-development-page .web-dev-hero > .container { padding-top: 8.5rem; padding-bottom: 5rem; }
  .web-development-page .web-dev-hero .main-sec-banner { max-width: 760px; }
  .web-dev-visual { margin: 1rem auto 0; }
}

@media (max-width: 575.98px) {
  .web-development-page .web-dev-hero .main-sec-banner h1 { font-size: clamp(2.65rem, 13vw, 3.6rem); }
  .web-dev-actions { width:100%; }
  .web-dev-actions a { width:100%; }
  .web-dev-visual { width: 94%; }
  .web-dev-browser { inset: 8% 0; transform:none; }
  .web-dev-browser-body { padding: 2rem 1.35rem; }
  .web-dev-stat-speed { right:-5%; }
  .web-dev-stat-mobile { left:-5%; }
}

@media (prefers-reduced-motion: reduce) {
  .web-dev-browser,
  .web-dev-orbit { animation:none; }
}

/* Website Development expertise: white canvas with high-contrast brand cards. */
.web-development-page .web-expertise {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #fff !important;
}

.web-expertise-heading {
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: clamp(2rem, 5vw, 3.75rem);
  border-radius: 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 88% 15%, rgba(85,223,196,.25), transparent 28%),
    linear-gradient(125deg, var(--brand-navy), var(--brand-blue) 65%, var(--brand-teal));
  box-shadow: 0 24px 60px rgba(10,61,98,.18);
}

.web-expertise-heading > span {
  display: inline-block;
  margin-bottom: .8rem;
  color: #7ff5df;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.web-development-page .web-expertise .web-expertise-heading h2 {
  max-width: 820px;
  margin: 0 auto 1rem;
  color: #fff !important;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.web-development-page .web-expertise .web-expertise-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.8) !important;
  font-size: 1.05rem;
  line-height: 1.7;
}

.web-expertise-grid { max-width: 1120px; margin-inline: auto; }
.web-expertise-grid > div { display: flex; }

.web-expertise-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 1.35rem;
  width: 100%;
  min-height: 245px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(85,223,196,.22);
  border-radius: 1.25rem;
  color: #fff;
  background: linear-gradient(140deg,#082f49 0%,#0a3d62 68%,#075d72 100%);
  box-shadow: 0 18px 42px rgba(10,61,98,.14);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.web-expertise-card::after {
  content: '';
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(26,188,156,.12);
}

.web-expertise-card:hover {
  transform: translateY(-8px);
  border-color: #55dfc4;
  box-shadow: 0 28px 58px rgba(10,61,98,.22);
}

.web-expertise-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  padding: 1rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 1rem;
  background: rgba(255,255,255,.1);
}

.web-expertise-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.web-expertise-card > div:last-child { position: relative; z-index: 1; }
.web-expertise-number { display:block; margin-bottom:.4rem; color:#55dfc4; font-size:.75rem; font-weight:700; letter-spacing:.12em; }
.web-development-page .web-expertise .web-expertise-card h3 { margin:0 0 .7rem; color:#fff !important; font-size:1.45rem; font-weight:750; }
.web-development-page .web-expertise .web-expertise-card p { margin:0; color:rgba(255,255,255,.75) !important; line-height:1.65; }

@media (max-width: 575.98px) {
  .web-expertise-card { grid-template-columns:1fr; min-height:0; padding:1.5rem; }
  .web-expertise-icon { width:68px; height:68px; }
}

@media (prefers-reduced-motion: reduce) {
  .web-expertise-card { transition:none; }
}

/* Full-screen menu: visible logo badge and accessible Services dropdown. */
.header-1 .navbar-brand {
  transition: opacity .25s ease, visibility .25s ease;
}

body.fullscreen-menu-open .header-1 .navbar-brand {
  visibility: hidden;
  opacity: 0;
}

.menu-sec .menu-bg-images .brand-logo-image--watermark {
  left: clamp(1.25rem, 4vw, 4rem);
  top: clamp(1.25rem, 4vw, 3rem);
  width: clamp(150px, 16vw, 220px);
  max-width: 220px;
  padding: .65rem .8rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: .8rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.2);
  opacity: 1;
  object-fit: contain;
  transform: none;
}

.menu-sec .menu-item:has(.menu-submenu-toggle) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}

.menu-sec .menu-item:has(.menu-submenu-toggle) > .menu-link {
  margin-right: 0;
}

.menu-submenu-toggle {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-left: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.menu-submenu-toggle i { transition: transform .25s ease; }
.menu-item.submenu-open .menu-submenu-toggle i { transform: rotate(180deg); }

.menu-sec .menu .menu-item > .m-sub-menu {
  top: calc(100% + .65rem);
  left: 50%;
  z-index: 4;
  display: grid;
  width: max-content;
  min-width: 230px;
  gap: .15rem;
  margin: 0;
  padding: .75rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .85rem;
  background: rgba(6,31,53,.96);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  transform: translate(-50%, 10px);
  pointer-events: none;
  list-style: none;
  text-align: left;
}

.menu-sec .menu .menu-item > .m-sub-menu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu-sec .menu .menu-item:hover > .m-sub-menu,
.menu-sec .menu .menu-item.submenu-open > .m-sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.menu-sec .menu .menu-item > .m-sub-menu li a {
  display: block;
  padding: .65rem .75rem;
  border-radius: .5rem;
  color: rgba(255,255,255,.86);
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
}

.menu-sec .menu .menu-item > .m-sub-menu li a:hover,
.menu-sec .menu .menu-item > .m-sub-menu li a:focus-visible {
  color: #fff;
  background: rgba(26,188,156,.18);
}

/* Web-development content sections: white backgrounds need dark, readable copy. */
.web-development-page .shadow,
.web-development-page .exper,
.web-development-page .everword {
  background: #fff !important;
}

.web-development-page .shadow h2,
.web-development-page .shadow p,
.web-development-page .exper h4,
.web-development-page .exper h2,
.web-development-page .exper p,
.web-development-page .exper li,
.web-development-page .everword h2,
.web-development-page .everword h3,
.web-development-page .everword p {
  color: var(--brand-navy) !important;
}

.web-development-page .exper .tankin ul li i {
  color: var(--brand-teal) !important;
}

/* Workflow section: restore a contrasting canvas and make every process icon stand out. */
.web-development-page .everword {
  padding: clamp(4rem, 8vw, 7rem) 0 !important;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue)) !important;
}

.web-development-page .everword .infinxi h2,
.web-development-page .everword .infinxi h3 {
  color: #fff !important;
}

.web-development-page .everword .infinxi p {
  color: rgba(255,255,255,.78) !important;
}

.web-development-page .everword .rado {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid var(--brand-aqua);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.web-development-page .everword .rado img {
  display: block !important;
  width: 62px;
  height: 62px;
  transform: none;
  object-fit: contain;
  filter: brightness(0.5);
}

/* SEO benefits cards: remove the washed-out artwork background and keep copy readable. */
section.star-5 {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #fff !important;
}

section.star-5 .star-6 {
  padding: 0;
  background-image: none !important;
  background-color: transparent !important;
}

section.star-5 .watchers {
  height: 100%;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(13,66,134,.14);
  border-top: 4px solid var(--brand-teal);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 32px rgba(13,66,134,.1);
}

section.star-5 .watchers h2 {
  padding: 0 0 .75rem;
  color: var(--brand-navy) !important;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  text-align: left;
  white-space: normal;
}

section.star-5 .watchers p {
  padding: 0;
  color: #536273 !important;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

/* The Services page is dedicated to book-publishing support. */
.publishing-services-only .panel:not(:has(#ebook-services)) {
  display: none !important;
}

.publishing-services-only .row {
  justify-content: center;
}

.publishing-services-only #ebook-services {
  max-width: 760px;
}

.marketplace-highlight {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  color: #fff;
  text-align: center;
}

.marketplace-highlight-inner { max-width: 760px; margin: 0 auto; }
.marketplace-highlight span { color: var(--brand-aqua); font-size: .78rem; font-weight: 800; letter-spacing: .16em; }
.marketplace-highlight h2 { margin: .65rem 0 .9rem; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.marketplace-highlight p { color: rgba(255,255,255,.82) !important; line-height: 1.7; }
.marketplace-highlight a { display: inline-block; margin-top: 1rem; padding: .75rem 1.25rem; border: 1px solid var(--brand-aqua); border-radius: 999px; color: #fff; font-weight: 700; }

@media (max-width: 767.98px) {
  /* Keep inner-page banner content below the fixed header. */
  .map-usa {
    min-height: 320px;
    padding: 180px 1rem 90px !important;
    background-size: cover;
  }

  .map-usa h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler.is-active .navbar-toggler-icon {
    background-image: none;
    position: relative;
  }
  .navbar-toggler.is-active .navbar-toggler-icon::before,
  .navbar-toggler.is-active .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .navbar-toggler.is-active .navbar-toggler-icon::before { transform: rotate(45deg); }
  .navbar-toggler.is-active .navbar-toggler-icon::after { transform: rotate(-45deg); }
}

/* Mobile Bootstrap drawer: white panel with strong brand-color navigation. */
@media (max-width: 991.98px) {
  .header-1 .navbar-collapse.show,
  .header-1 .navbar-collapse.collapsing {
    margin-top: .75rem;
    padding: 1rem;
    border-radius: .85rem;
    background: #fff;
    box-shadow: 0 16px 35px rgba(10,61,98,.2);
  }

  .header-1 .navbar-collapse .navbar-nav .nav-link {
    display: block;
    padding: .75rem 1rem;
    color: var(--brand-navy) !important;
    border-radius: .5rem;
  }

  .header-1 .navbar-collapse .navbar-nav .nav-link:hover,
  .header-1 .navbar-collapse .navbar-nav .nav-link.active {
    color: #fff !important;
    background: var(--brand-blue);
  }

  .header-1 .navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,.75);
  }

  .header-1 .navbar-light .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
}

.publishing-features {
  display: grid;
  gap: .45rem;
  margin: .8rem 0 1rem;
  padding: 0;
  list-style: none;
}

.publishing-features li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.5;
}

.publishing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-aqua);
  font-weight: 700;
}

.ebook-publishing-journey {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #f5fbfc 0%, #fff 100%);
}

.ebook-publishing-journey .sec-title {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ebook-publishing-journey .sec-title > span {
  color: var(--brand-teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.ebook-publishing-journey .sec-title h2 {
  margin: .6rem 0 .8rem;
  color: var(--brand-navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.ebook-publishing-journey .sec-title p {
  color: #596979 !important;
  line-height: 1.7;
}

.ebook-journey-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(13,66,134,.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 32px rgba(13,66,134,.08);
}

.ebook-step {
  color: var(--brand-teal);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.ebook-journey-card h3 {
  margin: .7rem 0;
  color: var(--brand-navy);
  font-size: 1.35rem;
}

.ebook-journey-card p {
  margin: 0;
  color: #596979 !important;
  line-height: 1.65;
}

/* Center the SEO hero illustration at every breakpoint. */
section.gap .beatuy {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

section.gap .beatuy img {
  display: block !important;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
}


/* Complete on-page optimization: clean white illustration panel. */
section.wrap {
  background: #fff !important;
  padding: clamp(3.5rem, 7vw, 6rem) 0 !important;
}

section.wrap .circule {
  display: grid;
  min-height: 300px;
  margin: 0;
  padding: 2rem;
  place-items: center;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13,66,134,.1);
}

section.wrap .circule img {
  max-height: 360px;
  object-fit: contain;
}

.about-services-overview {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, #f4fbfc, #fff);
}

.about-services-intro {
  max-width: 780px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.about-services-intro > span {
  color: var(--brand-teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.about-services-intro h2 {
  margin: .6rem 0 1rem;
  color: var(--brand-navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.about-services-intro p {
  color: #596979 !important;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 980px;
  margin: 0 auto;
}

.about-services-list span {
  padding: .7rem 1rem;
  border: 1px solid rgba(13,66,134,.14);
  border-radius: 999px;
  color: var(--brand-navy);
  background: #fff;
  box-shadow: 0 8px 20px rgba(13,66,134,.06);
  font-weight: 600;
}

/* Final stacking rule: the original hamburger remains visible for closing. */
body.fullscreen-menu-open .menu-icon {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 3001 !important;
}

@media (max-width: 767.98px) {
  .harder .why-choose-layout > .col-lg-5 {
    position: relative;
    left: 50%;
    width: 100% !important;
    flex: 0 0 100%;
    transform: translateX(-50%);
  }

  .harder .why-choose-layout > .col-lg-5 .handles {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Final mobile state: show only the centered Image-826 hand layer. */
  .harder .handles .handed,
  .harder .handles .handed img { display: none !important; }
  .harder .handles > img.LOTSSS {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: contain !important;
    transform: translateX(-58%) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 767.98px) {
  /* Mobile uses only Image-826; hide the question-mark overlay. */
  .harder .handles .handed,
  .harder .handles .handed img { display: none !important; }
  .harder .handles > .LOTSSS {
    display: block !important;
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 767.98px) {
  .texter p {
    text-align: center;
  }

  .harder .handles > .LOTSSS {
    display: block !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
  }
  .harder .handles .handed {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .harder .handles .handed img {
    display: block !important;
    width: min(78%, 280px) !important;
    height: auto !important;
    margin: 0 auto;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Stable header logo sizing and stacking in the normal navbar state. */
.header-1 .navbar-brand {
  position: relative;
  z-index: 3002;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .35rem .55rem;
  border-radius: .65rem;
  background: #fff;
}

.header-1 .navbar-brand img.brand-logo-image--header {
  display: block;
  width: clamp(96px, 9vw, 140px) !important;
  max-width: 140px;
  height: auto;
}

body.fullscreen-menu-open .header-1 .navbar-brand {
  display: none !important;
}

@media (max-width: 767.98px) {
  .harder .why-choose-layout > [class*="col-"] {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .harder .why-choose-layout > [class*="col-"] .handles {
    margin-right: auto;
    margin-left: auto;
  }

  .harder .handles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 430px);
    min-height: 260px;
    margin: 0 auto;
  }

  .harder .handles > .LOTSSS,
  .harder .handles .handed {
    max-width: none;
  }

  .harder .handles > .LOTSSS {
    display: none !important;
  }

  .harder .handles .handed {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .harder .handles .handed img {
    display: block;
    width: min(78%, 280px);
    height: auto;
    margin: 0 auto;
    transform: none;
  }

  /* Keep the original desktop sizing rules from affecting the mobile question mark. */
  .harder .handles > .LOTSSS {
    width: 116%;
    height: 116%;
    left: -8%;
  }

  .harder .handles .handed img {
    width: 108%;
    height: 108%;
  }
}

/* Final responsive artwork sizing: prevent hand layers from being clipped. */
@media (max-width: 991.98px) {
  .harder .handles { width: min(100%, 480px); aspect-ratio: 1 / .9; overflow: hidden; }
  .harder .handles > .LOTSSS { inset: -4% auto auto -5%; width: 108%; height: 108%; }
  .harder .handles .handed img { transform: scale(1.08); }
}

@media (max-width: 575.98px) {
  .harder .handles { width: min(100%, 360px); min-height: 230px; }
  .harder .handles > .LOTSSS { inset: -2% auto auto -7%; width: 114%; height: 114%; }
}

/* Show the single padded logo inside the open hamburger screen. */
body.fullscreen-menu-open .menu-overlay-brand {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 3002 !important;
}

/* Stable header logo sizing and stacking in the normal navbar state. */
.header-1 .navbar-brand {
  position: relative;
  z-index: 3002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .55rem;
  border-radius: .65rem;
  background: #fff;
}

.header-1 .navbar-brand img.brand-logo-image--header {
  display: block;
  width: clamp(96px, 9vw, 140px) !important;
  max-width: 140px;
  height: auto;
}

body.fullscreen-menu-open .header-1 .navbar-brand {
  display: none !important;
}

section.wrap .civil h2,
section.wrap .civil p {
  color: var(--brand-navy) !important;
}

section.wrap .civil p {
  line-height: 1.7;
}

/* Hide the regular header logo while the hamburger overlay is open. */
body.fullscreen-menu-open .header-1 .navbar-brand {
  display: none !important;
}

body.fullscreen-menu-open .menu-overlay-brand {
  display: none !important;
}

/* Keep the hamburger overlay above the fixed Bootstrap header. */
.menu-sec {
  z-index: 2000 !important;
}

body.fullscreen-menu-open .menu-overlay-brand {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 3002 !important;
}

body.fullscreen-menu-open .header-1 {
  z-index: 1000 !important;
  visibility: hidden !important;
}

/* Keep the original hamburger/X control available as the close button. */
body.fullscreen-menu-open .menu-icon {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 3001 !important;
}

body.fullscreen-menu-open .menu-overlay-close {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 3000 !important;
}

/* Ensure the close control is always visible above the menu content. */
.menu-sec .menu-overlay-close {
  top: 2rem !important;
  right: 2rem !important;
  left: auto !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 3001 !important;
  padding: .65rem .9rem !important;
  border: 1px solid rgba(255,255,255,.5) !important;
  border-radius: 999px;
  color: #fff !important;
  background: rgba(5,34,67,.45) !important;
}

@media (max-width: 991.98px) {
  .menu-sec { overflow-y: auto; }
  .menu-sec .menu {
    flex-direction: column;
    padding: 7.5rem 1rem 3rem;
  }
  .menu-sec .menu .menu-item { flex-wrap: wrap; justify-content: center; }
  .menu-sec .menu .menu-item .menu-link { margin: 0 1rem; }
  .menu-sec .menu .menu-item:has(.menu-submenu-toggle) > .menu-link { margin-right: 0; }
  .menu-sec .menu .menu-item .menu-link span { font-size: clamp(1.65rem, 7vw, 2.25rem); line-height: 1.35; }
  .menu-submenu-toggle { margin-left: 0; }
  .menu-sec .menu .menu-item > .m-sub-menu {
    position: static;
    flex-basis: 100%;
    width: min(88vw, 330px);
    max-height: 0;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    border-width: 0;
    transform: none;
  }
  .menu-sec .menu .menu-item:hover > .m-sub-menu { max-height: 0; opacity: 0; visibility: hidden; }
  .menu-sec .menu .menu-item.submenu-open > .m-sub-menu {
    max-height: 280px;
    margin-top: .6rem;
    padding: .65rem;
    border-width: 1px;
    transform: none;
  }
}

/* Hero-header logo sizing; the sticky state remains compact above. */
.header-1:not(.scroll) .navbar-brand img.brand-logo-image--header {
  width: clamp(112px, 9vw, 142px) !important;
  max-width: 142px;
}

@media (max-width: 767.98px) {
  .header-1:not(.scroll) .navbar-brand img.brand-logo-image--header {
    width: 96px !important;
    max-width: 96px;
  }
}

.hero-tech-scene canvas,
.sec-home-banner .particles-dot canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-tech-scene canvas {
  opacity: 0.88;
}

.sec-home-banner .particles-dot {
  opacity: 0.42;
}

#home_wave {
  display: none;
}

@media (max-width: 767.98px) {
  .hero-tech-scene {
    opacity: 0.48;
  }

  .sec-home-banner .main-sec-banner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .sec-home-banner .main-sec-banner h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.45rem);
    overflow-wrap: break-word;
  }

  .sec-home-banner .main-sec-banner p {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .navbar-light .navbar-toggler-icon {
    filter: none;
  }

  .navbar-light .navbar-toggler {
    border-color: var(--brand-navy);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sec-home-banner::before,
  .sec-home-banner::after,
  .sec-home-banner .main-sec-banner h4,
  .sec-home-banner .main-sec-banner h2,
  .sec-home-banner .main-sec-banner p {
    animation: none;
  }
}

/* Header navigation interactions. */
.header-1 .navbar-nav > .nav-item > .nav-link.active {
  padding: 8px 16px;
  color: var(--brand-navy) !important;
  background-color: var(--color-white);
  border-radius: 8px;
  border-bottom-color: transparent;
}

.header-1 .navbar-nav > .nav-item > .nav-link:not(.active):hover,
.header-1 .navbar-nav > .nav-item > .nav-link:not(.active):focus-visible,
.header-1 .navbar-nav > .nav-item:hover > .nav-link:not(.active) {
  color: var(--color-white) !important;
  border-bottom-color: var(--color-white);
}

.header-1 .navbar-nav > .nav-item:has(.m-sub-menu) {
  position: relative;
}

.header-1 .navbar-nav > .nav-item > .m-sub-menu {
  display: block;
  z-index: 1000;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
  box-shadow: 0 18px 40px rgba(13, 66, 134, 0.28);
}

.header-1 .navbar-nav > .nav-item > .m-sub-menu li a {
  color: var(--color-white) !important;
  border-bottom: 0;
}

.header-1 .navbar-nav > .nav-item > .m-sub-menu li a:hover,
.header-1 .navbar-nav > .nav-item > .m-sub-menu li a:focus-visible {
  color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 3px 0 0 var(--color-white);
}

.header-1 .navbar-nav > .nav-item:hover > .m-sub-menu,
.header-1 .navbar-nav > .nav-item:focus-within > .m-sub-menu,
.header-1 .navbar-nav > .nav-item.services-open > .m-sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 991.98px) {
  .header-1 .navbar-nav > .nav-item > .m-sub-menu {
    display: none;
  }

  .header-1 .navbar-nav > .nav-item.services-open > .m-sub-menu {
    display: block;
  }
}

/* Premium GSAP full-screen overlay; desktop Bootstrap navigation remains unchanged. */
body.fullscreen-menu-open { overflow: hidden; }
body.fullscreen-menu-open .header-1,
body.fullscreen-menu-open .menu-icon { opacity:0; pointer-events:none; }

body.fullscreen-menu-open .header-1 .navbar-brand {
  display: none !important;
}

.menu-sec {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  clip-path: inset(0 0 0 100%);
  background: #0d3f7f;
}

.menu-sec.show-menu { transform: none !important; }

.menu-overlay-brand {
  position: absolute;
  z-index: 5;
  top: clamp(1.25rem, 3vw, 2.5rem);
  left: clamp(1.25rem, 4vw, 4rem);
  display: grid;
  width: clamp(145px, 14vw, 205px);
  padding: .65rem .8rem;
  place-items: center;
  border-radius: .8rem;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}

.menu-overlay-brand img { display:block; width:100%; height:auto; }

.menu-overlay-close {
  position: absolute;
  z-index: 6;
  top: clamp(7rem, 11vw, 10rem);
  left: clamp(1.25rem, 4vw, 4rem);
  display: inline-flex;
  padding: .5rem 0;
  align-items: center;
  gap: .65rem;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-overlay-close i { font-size:1.2rem; transition:transform .25s ease; }
.menu-overlay-close:hover i { transform:rotate(90deg); }

.menu-sec > .container,
.menu-sec > .container > .row,
.menu-sec > .container > .row > div { height:100%; }

.menu-sec .menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}

.menu-sec .menu .menu-item,
.menu-sec .menu .menu-item:has(.menu-submenu-toggle) {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  opacity: 1;
  transform: none;
  text-align: center;
}

.menu-sec .menu-number {
  display: block;
  color: rgba(140,190,235,.55);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  transition: color .25s ease, opacity .25s ease;
}

.menu-sec .menu .menu-item .menu-link {
  display: inline-block;
  margin: 0;
  padding: .2rem;
  border: 0;
  text-decoration: none;
}

.menu-sec .menu .menu-item .menu-link::before { display:none; }
.menu-sec .menu .menu-item .menu-link span {
  display: block;
  color: #fff;
  font-family: 'Kanit','Outfit',sans-serif;
  font-size: clamp(1.25rem, 2.35vw, 2.35rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  transform-origin: center;
  transition: color .25s ease, transform .25s ease;
}

.menu-sec .menu .menu-item .menu-link span::after {
  content:'';
  display:block;
  width:0;
  height:2px;
  margin:.4rem auto 0;
  background:#55dfc4;
  transition:width .25s ease;
}

.menu-sec .menu .menu-item:hover .menu-link span { color:#7ff5df; transform:scale(1.05); }
.menu-sec .menu .menu-item:hover .menu-link span::after { width:65%; }
.menu-sec .menu .menu-item:hover .menu-number { color:#fff; opacity:1; }

.menu-sec .menu-item:has(.menu-submenu-toggle) .menu-submenu-toggle {
  position:absolute;
  top:calc(50% + 1.15rem);
  right:clamp(.1rem,1vw,1rem);
  width:28px;
  height:28px;
  margin:0;
}

.menu-sec .menu .menu-item > .m-sub-menu {
  top:calc(50% + 3.6rem);
  left:50%;
  width:max-content;
  min-width:230px;
  height:0;
  margin:0;
  padding:0 .7rem;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius:.75rem;
  visibility:visible;
  opacity:0;
  background:rgba(5,34,67,.97);
  transform:translateX(-50%);
  pointer-events:none;
}

.menu-sec .menu .menu-item.submenu-open > .m-sub-menu { pointer-events:auto; }

@media (max-width: 767.98px) {
  .menu-sec .menu { grid-template-columns:repeat(3,minmax(0,1fr)); grid-template-rows:repeat(2,1fr); padding:10rem .5rem 2rem; }
  .menu-sec .menu .menu-item .menu-link span { font-size:clamp(1.2rem,4vw,1.8rem); }
}

@media (max-width: 479.98px) {
  .menu-overlay-brand { width:135px; }
  .menu-overlay-close { top:6.5rem; }
  .menu-sec .menu { display:flex; height:auto; min-height:100%; flex-direction:column; gap:.8rem; padding:9.5rem 1rem 2rem; overflow-y:auto; }
  .menu-sec .menu .menu-item,
  .menu-sec .menu .menu-item:has(.menu-submenu-toggle) { width:100%; flex:0 0 auto; }
  .menu-sec .menu .menu-item .menu-link span { font-size:1.65rem; }
  .menu-sec .menu-item:has(.menu-submenu-toggle) .menu-submenu-toggle { top:1.4rem; right:calc(50% - 85px); }
  .menu-sec .menu .menu-item > .m-sub-menu { position:static; width:min(90vw,320px); transform:none; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-sec .menu .menu-item .menu-link span,
  .menu-overlay-close i { transition:none; }
}

/* Restore the original header and left-opening hamburger menu behavior. */
.menu-overlay-brand,
.menu-overlay-close {
  display: inline-flex;
}

.menu-overlay-brand {
  display: grid !important;
  padding: .7rem .9rem !important;
  background: #fff !important;
  border-radius: .7rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
}

/* Clear, click-friendly Services accordion inside the hamburger menu. */
.menu-sec .menu-item:has(.menu-submenu-toggle) { position: relative; }

.menu-sec .menu-item:has(.menu-submenu-toggle) .menu-submenu-toggle {
  top: 50%;
  right: -1.15rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  transform: translateY(-50%);
  cursor: pointer;
}

.menu-sec .menu-item.submenu-open > .m-sub-menu {
  top: calc(50% + 3rem);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Restore the original dark hamburger canvas; keep the white logo card only. */
.menu-sec {
  background: linear-gradient(to bottom right, #0D4286, #136A9A) !important;
}

.menu-sec .menu .menu-item .menu-link span {
  color: #fff !important;
}

.menu-sec .menu .menu-item:hover .menu-link span {
  color: var(--brand-aqua) !important;
}

.menu-sec .menu-number {
  color: #fff !important;
}

.menu-sec .menu .menu-item .menu-link::before {
  display: block;
  margin-bottom: 0;
  color: #fff;
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .08em;
}

.menu-sec .menu-overlay-close {
  color: #fff;
}

.menu-sec {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: linear-gradient(to bottom right, #0D4286, #136A9A);
  clip-path: none;
  transform: translateX(-100%) !important;
  transition: transform cubic-bezier(.77, 0, .175, 1) .8s;
}

.menu-sec.show-menu {
  transform: translateX(0) !important;
}

.menu-sec > .container,
.menu-sec > .container > .row,
.menu-sec > .container > .row > div {
  height: auto;
}

.menu-sec .menu {
  display: flex;
  width: auto;
  height: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-sec .menu .menu-item,
.menu-sec .menu .menu-item:has(.menu-submenu-toggle) {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  text-align: left;
}

.menu-sec.show-menu .menu .menu-item {
  opacity: 1;
  transform: translateY(0);
}

.menu-sec .menu .menu-item .menu-link {
  margin: 0 30px;
  padding: 0;
}

.menu-sec .menu .menu-item .menu-link::before {
  display: block;
  content: attr(data-index);
}

.menu-sec .menu .menu-item .menu-link span {
  font-size: 36px;
  font-weight: 400;
}

.menu-sec .menu .menu-item > .m-sub-menu {
  top: 100%;
  left: 0;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 15px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  visibility: hidden;
  opacity: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.menu-sec .menu .menu-item:hover > .m-sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Keep the original hamburger/X control visible above the open menu. */
body.fullscreen-menu-open .menu-icon {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 3001 !important;
}
