body {
  margin: 0;
  background-color: #050C15;
}
body.ovf {
  overflow: hidden;
}

header nav .list {
  background-color: #272b2c;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
header nav .list a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all 0.4s ease;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  color: #FAFAFA;
  font-weight: 600;
}
header nav .list a span {
  position: relative;
  z-index: 1;
}
header nav .list a:after {
  content: "";
  border-radius: 50px;
  background: #FA9702;
  background: linear-gradient(150deg, rgb(250, 151, 2) 0%, rgb(190, 37, 39) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FA9702", endColorstr="#BE2527", GradientType=0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
}
header nav .list a:hover, header nav .list a.active {
  transition: all 0.4s ease;
}
header nav .list a:hover:after, header nav .list a.active:after {
  animation: gradient 500ms ease 0s;
  transform: scale(1);
}
@keyframes gradient {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
header .last {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
header .last a {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
  white-space: nowrap;
  margin: 15px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  color: #FAFAFA;
}
header .last a.signup {
  overflow: hidden;
  margin: 0;
  padding: 15px 24px;
  border-radius: 50px;
}
header .last a span {
  position: relative;
  z-index: 1;
}
header .last a.ac:after {
  content: "";
  border-radius: 50px;
  background: #FA9702;
  background: linear-gradient(150deg, rgb(250, 151, 2) 0%, rgb(190, 37, 39) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FA9702", endColorstr="#BE2527", GradientType=0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
}
header .hamburger {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  cursor: pointer;
  position: relative;
}
header .hamburger span {
  display: block;
  height: 3px;
  background: #ff9000;
  border-radius: 2px;
  transition: all 0.4s ease;
  margin-left: 8px;
}
header .hamburger span:nth-child(1) {
  width: 32px;
}
header .hamburger span:nth-child(2) {
  width: 24px;
}
header .hamburger span:nth-child(3) {
  width: 16px;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  width: 32px;
  position: absolute;
  top: 14px;
  left: 1px;
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  width: 32px;
  position: absolute;
  top: 14px;
  left: 1px;
}
@media (width <= 80rem) {
  header {
    z-index: 11111111111;
    transition: all 0.3s linear;
    position: fixed;
    padding: 5px 0;
  }
  header.active, header.fixedmenu {
    position: fixed;
    top: 0;
    transition: all 0.3s linear;
    background-color: #050C15;
  }
  header .logo {
    z-index: 11;
    position: relative;
  }
  header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header .last {
    justify-content: flex-end;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  header .header .last a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px 10px 0;
  }
  header .header .last a.signup {
    margin: 0;
    padding: 8px 16px;
  }
  header .nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 84px;
    display: block;
    background-color: #050C15;
  }
  header .nav .list {
    border-radius: 0;
    background-color: transparent;
  }
  header .nav .list a {
    width: 240px;
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    justify-content: center;
    display: flex;
  }
  header .nav .list a:last-child {
    border: 0;
  }
  header .nav .list a:after {
    display: none;
  }
  header .nav .list a.active {
    color: #ff9000;
  }
  header .nav .social {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-top: 50px;
  }
  header .nav .social a {
    position: relative;
    display: inline-flex;
    padding: 0;
    width: auto;
    height: 14px;
    transition: all 0.3s linear;
    align-items: center;
  }
  header .nav .social a i {
    width: 14px;
    height: 14px;
    background: url(../images/common/social.webp) no-repeat;
    background-position: 0 0;
    background-size: 56px 14px;
    content: "";
    transition: all 0.3s linear;
  }
  header .nav .social a:hover {
    transition: all 0.3s linear;
  }
  header .nav .social a:hover::after {
    filter: brightness(0) invert(1);
    transition: all 0.3s linear;
  }
  header .nav .social a span {
    font-size: 0.9rem;
    line-height: 1;
    color: white;
  }
  header .nav .social a i.ic_fb {
    background-position: right 0;
  }
  header .nav .social a i.ic_tw {
    background-position: -28px 0;
  }
  header .nav .social a i.ic_yt {
    background-position: -14px 0;
  }
  header .nav {
    transform: translateY(-140%);
    transition: all 0.3s ease;
  }
  header.active .last a {
    display: none;
  }
  header.active .nav {
    transform: translateY(0%);
    transition: all 0.3s ease;
  }
}

footer .list h6 {
  margin-bottom: 20px;
}
footer .list a {
  margin: 10px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  color: #FAFAFA;
  font-weight: 400;
}
footer .list a.active {
  color: #ff9000;
  font-weight: 600;
}
@media (width <= 48rem) {
  footer .list h6 {
    margin-bottom: 14px;
    color: #ff9000;
    margin-top: 20px;
  }
}
footer .list2 a i {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/common/footericon.webp) no-repeat left top;
  background-size: 45px 30px;
}
footer .list2 a i.marker {
  background-position: center 0;
}
footer .list2 a i.phone {
  background-position: right 0;
}
footer .last .social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer .last .social a {
  position: relative;
  display: inline-block;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #00A9BF;
  width: 36px;
  height: 36px;
  transition: all 0.3s linear;
}
footer .last .social a::after {
  filter: invert(57%) sepia(100%) saturate(747%) hue-rotate(146deg) brightness(95%) contrast(101%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(../images/common/social.webp) no-repeat;
  background-position: 0 0;
  background-size: 96px 24px;
  content: "";
  transition: all 0.3s linear;
}
footer .last .social a:hover {
  background-color: #00A9BF;
  transition: all 0.3s linear;
}
footer .last .social a:hover::after {
  filter: brightness(0) invert(1);
  transition: all 0.3s linear;
}
footer .last .social a.ic_fb::after {
  background-position: right 0;
}
footer .last .social a.ic_tw::after {
  background-position: -48px 0;
}
footer .last .social a.ic_yt::after {
  background-position: -24px 0;
}
footer .last form {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 9px 11px;
  display: flex;
  margin: 20px 0 0;
}
footer .last form input[type=text] {
  font-size: 1rem;
  line-height: 1;
  color: #FAFAFA;
  width: 100%;
}
footer .last form input, footer .last form textarea {
  padding: 0 10px;
}
footer .last form input:focus, footer .last form input:active, footer .last form input:hover,
footer .last form textarea:focus, footer .last form textarea:active, footer .last form textarea:hover {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
footer .last form input[type=submit] {
  border: 0 !important;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #FAFAFA;
  white-space: nowrap;
  padding: 10px 14px;
  background-color: #ff9000;
  border-radius: 6px;
}
@media (width <= 48rem) {
  footer .last .social {
    justify-content: flex-start;
  }
  footer .last form {
    margin-bottom: 24px;
  }
}

.gradient {
  background: #FA9702;
  background: linear-gradient(150deg, rgb(250, 151, 2) 0%, rgb(190, 37, 39) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FA9702", endColorstr="#BE2527", GradientType=0);
}

.gradient2 {
  background: #171717;
  background: linear-gradient(120deg, rgb(23, 23, 23) 0%, rgb(48, 27, 5) 0%, rgb(28, 25, 23) 49%, rgb(23, 23, 23) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#171717", endColorstr="#171717", GradientType=0);
}

.gradient3 {
  background: #141310;
  background: linear-gradient(120deg, rgb(20, 19, 16) 0%, rgb(6, 17, 31) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#141310", endColorstr="#06111F", GradientType=0);
}

.swiper-pagination, .serviceSwiper-pagination, .realSwiper-pagination {
  display: flex;
}
.swiper-pagination span, .serviceSwiper-pagination span, .realSwiper-pagination span {
  width: 10px;
  height: 10px;
  background-color: #50545b;
  background-color: white;
  display: inline-block;
  border-radius: 10px;
  font-size: 0;
}
.swiper-pagination span.swiper-pagination-bullet-active, .serviceSwiper-pagination span.swiper-pagination-bullet-active, .realSwiper-pagination span.swiper-pagination-bullet-active {
  background-color: #00A9BF;
}

form input:focus, form input:focus-visible, form input:hover,
form textarea:focus, form textarea:focus-visible, form textarea:hover {
  outline: 0;
  border: 0;
  border-bottom: 1px solid #ff9000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
form textarea {
  resize: none;
  overflow: auto;
}
form textarea::-webkit-scrollbar {
  width: 5px;
}
form textarea::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(255, 144, 0, 0.5);
}
form textarea::-webkit-scrollbar-thumb {
  background-color: #ff9000;
}
form input[type=submit] {
  cursor: pointer;
}

form label.error {
  position: absolute;
  left: 0;
  bottom: 5px;
  font-size: 12px;
  line-height: 12px;
  color: red;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

#newsletter_form label.error {
  bottom: -15px;
}

.triggeranimation3 .animate1 {
  opacity: 0;
}
.triggeranimation3 .featureanimate1, .triggeranimation3 .featureanimate2, .triggeranimation3 .featureanimate3, .triggeranimation3 .featureanimate4 {
  opacity: 0;
}
.triggeranimation3.clear .animate2 {
  opacity: 1;
  animation: trigger2 1s 0s 1 linear;
}
.triggeranimation3.clear .animate1 {
  opacity: 1;
  animation: trigger1 1s 0s 1 linear;
}
.triggeranimation3.clear .featureanimate1 {
  opacity: 1;
  animation: featuretrigger1 1.5s 0s 1 linear;
}
@keyframes featuretrigger1 {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  40% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(0%);
    opacity: 1;
  }
  75% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.triggeranimation3.clear .featureanimate2 {
  opacity: 1;
  animation: featuretrigger2 1.5s 0s 1 linear;
}
@keyframes featuretrigger2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.triggeranimation3.clear .featureanimate3 {
  opacity: 1;
  animation: featuretrigger3 1.5s 0s 1 linear;
}
@keyframes featuretrigger3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.triggeranimation3.clear .featureanimate4 {
  opacity: 1;
  animation: featuretrigger4 1.5s 0s 1 linear;
}
@keyframes featuretrigger4 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn-1:hover span {
  animation: btn-1 1s 0s 1 ease;
}

@keyframes btn-1 {
  0% {
    left: 0%;
  }
  33% {
    left: -50%;
  }
  66% {
    left: 50%;
  }
  0% {
    left: 0%;
  }
}
@keyframes trigger2 {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    transform: translateY(-90%);
    opacity: 1;
  }
  50% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes trigger1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spinr {
  0% {
    transform: translatex(0) rotate(180deg);
    opacity: 0;
  }
  5% {
    transform: translatex(0) rotate(180deg);
    opacity: 0;
  }
  40% {
    transform: translatex(90px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translatex(0px) rotate(0deg);
    opacity: 1;
  }
}
.bg_managedSOC .banner {
  background: url(../images/managedsoc/bg_managedSOC.webp) no-repeat center center;
  background-size: cover;
}
.bg_managedSOC .banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #050C15;
  background: linear-gradient(0deg, rgb(5, 12, 21) 0%, rgba(50, 29, 6, 0.64) 50%, rgb(5, 12, 21) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#050C15", endColorstr="#050C15", GradientType=0);
}
@media (width <= 48rem) {
  .bg_managedSOC .banner {
    background-position: 84% 0;
    background-size: 300%;
    height: 704px;
  }
}

#bookMyDemo_form {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}
#bookMyDemo_form .close-btn {
  position: absolute;
  width: 15px;
  height: 15px;
  cursor: pointer;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 3;
}
#bookMyDemo_form .close-btn::after, #bookMyDemo_form .close-btn::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #fff !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#bookMyDemo_form .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#bookMyDemo_form.open {
  transition: max-height 1s ease;
  max-height: 2000px; /* large enough for form */
}

.bounce-up {
  animation: bounce-ups 0.5s ease 500ms infinite;
}

@keyframes bounce-ups {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.arrowdown {
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 24px solid rgba(250, 151, 2, 0.6);
}
@media (width <= 48rem) {
  .arrowdown {
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 19px solid rgba(250, 151, 2, 0.6);
  }
}/*# sourceMappingURL=common.css.map */