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

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa%20Bold.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: #010411;
}

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;
}
.navbar-light .navbar-brand{
  width: 15%;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.service-read-more {
    white-space: nowrap;
    display: block;
    text-decoration: underline;
}

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

.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 {
  padding: 15px 0;
  background: linear-gradient(137deg, rgba(0,0,0,1) 20%, rgba(24,0,3,1) 36%, rgba(165,3,24,1) 57%, rgba(189,4,27,1) 100%);
}
.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; */
}

/* ... 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: #ef071a;
  left: 0;
  right: 0;
}

.box span.right,
.box span.left {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #ef071a;
  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: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: #ef071a;*/
/*  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(0 4 17);
  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: #b1b2b6;
}













@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 #ef071a8c;
  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::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.custom-input input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.custom-input input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.custom-input input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.custom-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.custom-input input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.custom-input input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.custom-input input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.custom-input textarea:placeholder{
  color: #fff;
}
.custom-input input {
  width: 97%;
  height: 47px;
  border: 1px solid black;
  border-radius: 18px;
  outline: none;
  background-color: #bd041b7a;
  PADDING: 0 0px 0 29px;
  color: #fff;
}

.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: #bd041b7a;
  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: #88899a;
}

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



#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: #bd041b7a;
  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: #c5051b;
  -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 #c6051b8c;
  padding: 20px 0 20px 0;
  width: 65%;
}

.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: #0e1334;
  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 #c6051b8c;
  padding: 40px 0 20px 0;
}
footer .help-2 ul li a i{
  margin: 0 10px 0 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 #c6051b8c;
  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: #c3041a;
  border-radius: 20px;
}

.last-customs {
  display: flex;
}

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

.lode {
  border-top: 3px solid #c6051b8c;
}

.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: #000;
  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: #c2041a;
}

.menu-sec .menu .menu-item .menu-link::before {
  content: attr(data-index);
  color: #fff;
  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: #c2041a;

}

/* 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, rgb(47 94 171), #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 rgb(60 60 200 / 40%); */
}

.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: #007fea;
}

.sconed .insta a:hover {
  color: #ff4c00;
}

.sconed .lindin a:hover {
  color: #0068c2;
}

.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: #5869e1;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background-color: #000411;
}

.loader svg text {
  stroke: #bd041b;
  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, rgb(189 4 27), #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: #c2041a;
}

.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: #c2041a;
  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: #c2041a;
  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: #0084ff;
  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: #0084ff;
  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 #c2041b;
  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: #c4cdd7;
  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: #c2041b;
  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: #332c87;
}
.sec-wrapper svg text{
  color: #0068c2;
  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: rgb(51 44 135 / 10%);
  border: 1px solid rgba(101, 161, 226, 0.17);
  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: #332c87;
  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;

}
.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%);
}




@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) {}