@charset "UTF-8";
@keyframes border-bottom-top {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 50%;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
@keyframes drop {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  40% {
    font-size: 10px;
    border-radius: 0 0 70% 70%;
    transform: scale(0.5, 3.2) translateY(35%);
  }
  60% {
    transform: translateY(260px) scale(1.1, 0.5);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
  }
  80% {
    transform: translateY(252px) scale(1.3, 0.8);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
  }
  100% {
    transform: translateY(244px);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
  }
}
@keyframes undrop {
  0% {
    transform: translateY(260px);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
    opacity: 0.1;
  }
  50% {
    border-radius: 100%;
    transform: scale(0.5, 2.5);
  }
  100% {
    transform: translateY(-18%) scale(0.5, 0.7);
    font-size: 5px;
    opacity: 1;
    border-radius: 0 0 100% 100%;
  }
}
input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default), input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default), input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default),
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: box-shadow 0.3s, border 0.3s;
  font-family: "Montserrat", sans-serif;
}

select {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  outline: none;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  color: #222;
}

button, input, optgroup, select, textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

button, input {
  overflow: visible;
}

.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-field label {
  left: 0.75rem;
  color: #222;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  cursor: text;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transform-origin: 0% 100%;
  text-align: initial;
  transform: translateY(12px);
  background-color: transparent;
  border: 0;
  padding: 0;
}

select:invalid, select {
  color: #222;
}

.input-field > label:not(.label-icon).active {
  transform: translateY(-20px) scale(0.8);
  transform-origin: 0 0;
}

input:not([type]) + label:after, input[type=text]:not(.browser-default) + label:after,
input[type=password]:not(.browser-default) + label:after, input[type=email]:not(.browser-default) + label:after,
input[type=url]:not(.browser-default) + label:after, input[type=time]:not(.browser-default) + label:after,
input[type=date]:not(.browser-default) + label:after, input[type=datetime]:not(.browser-default) + label:after,
input[type=datetime-local]:not(.browser-default) + label:after, input[type=tel]:not(.browser-default) + label:after,
input[type=number]:not(.browser-default) + label:after, input[type=search]:not(.browser-default) + label:after,
textarea.materialize-textarea + label:after, .select-wrapper + label:after {
  color: #222;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  cursor: text;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transform-origin: 0% 100%;
  text-align: initial;
  transform: translateY(12px);
}

.success {
  padding: 30px 0;
  color: #04e3c2;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.98px;
}

.error {
  display: none;
  padding: 10px 0;
  color: #c24c36;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.98px;
}
.error.active {
  display: block;
}

:root {
  --reveal-delay: 0ms;
  --reveal-translate-distance: 0;
}

html, body {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #222;
}

.hidden {
  opacity: 0;
  transform: translateY(45px);
  transition: transform 0.6s, opacity 0.9s;
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.wh-100 {
  width: 100%;
  height: 100vh;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.blend-color {
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.blend-color-mode {
  mix-blend-mode: overlay;
  width: 100%;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

a, p, span, label {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

.min-height_flex {
  min-height: 940px;
  width: auto;
}

.cn-gap {
  padding: 130px 0;
}

.cn-gap_top {
  padding-top: 65px;
}

.cn-gap_bottom {
  padding-bottom: 65px;
}

.mt--25 {
  margin-top: 25px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-15 {
  margin-bottom: 15px;
}

.bg-white {
  background-color: #fff !important;
}

.bg-blue {
  background-color: #7F00FF;
}

.bg-green {
  background-color: #04e3c2;
}

.border-top {
  padding: 45px 0 70px;
  border-top: 1px solid #eee;
}

.t-show {
  display: block;
}

.t-hide {
  display: none;
}

.ipad-show {
  display: block;
}

.ipad-hide {
  display: none;
}

.cn--btn {
  display: inline-block;
  position: relative;
  animation: wiggle 5s linear infinite;
  transform-origin: 50% 5em;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  white-space: nowrap;
}
.cn--btn:before {
  content: "";
  position: absolute;
  top: 25%;
  left: 1.3rem;
  display: inline-block;
  background-image: url("/images/tea.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  width: 1.3rem;
  height: 1.3rem;
}
.cn--btn .cn-btn {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: transparent linear-gradient(90deg, #4f4d4d 0%, #000 50%, #222 100%) 0 0 no-repeat padding-box;
  position: relative;
  opacity: 1;
  z-index: 1;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  padding: 20px 32px 20px 52px;
  border: none;
  border-radius: 48px;
  transition: 0.5s;
  width: auto;
  box-shadow: none;
  display: inline-block;
  text-align: center;
  overflow-wrap: break-word;
}
.cn--btn .cn-btn:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent linear-gradient(90deg, #222 0%, #000 50%, #4f4d4d 100%) 100% 0 no-repeat padding-box;
  border-radius: 48px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s linear;
}
.cn--btn .cn-btn:hover {
  border-color: transparent;
}
.cn--btn .cn-btn:hover:before {
  opacity: 1;
}

.bkg-white {
  margin-top: 20px;
}
.bkg-white .cn--btn .cn-btn {
  color: #222;
  background: transparent linear-gradient(90deg, #4f4d4d 0%, #fff 50%, #fff 100%) 0 0 no-repeat padding-box;
}
.bkg-white .cn--btn .cn-btn:before {
  background: transparent linear-gradient(90deg, #b5b1b1 0%, #fff 50%, #4f4d4d 100%) 100% 0 no-repeat padding-box;
}

.overlay {
  background-color: rgba(18, 24, 32, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.sm-desk {
  display: block;
}

.sm-mobile {
  display: none;
}

.underline-break {
  content: "";
  background: #7F00FF;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 35%;
  z-index: -9;
  animation: border-bottom-top 1s normal forwards ease-out;
}

.title-wrapper h3 {
  color: #222;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.title-wrapper p {
  color: #222;
  font-size: 48px;
  margin-bottom: 40px;
}
.title-wrapper p strong {
  position: relative;
  z-index: 9;
}

.header-main .header-block {
  padding: 20px 0;
}
.header-main .header-block.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #222;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  max-width: 100%;
}
.header-main .header-block .aisc-logo {
  text-align: center;
}
.header-main .header-block .aisc-logo .logo {
  width: 260px;
}
.header-main .header-block .megamenu-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-main .header-block .megamenu-container .codenebula-menu {
  display: none;
}
.header-main .header-block .megamenu-container .menu-desktop {
  display: block;
}
.header-main .header-block .megamenu-container .mainmenu {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.header-main .header-block .megamenu-container .mainmenu li {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.header-main .header-block .megamenu-container .mainmenu li a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 20px;
  display: block;
  letter-spacing: 0.98px;
  transition: 0.3s;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.header-main .header-block .megamenu-container .mainmenu li a:hover {
  color: #7F00FF;
}
.header-main .header-block .megamenu-container .mainmenu li a.active {
  color: #7F00FF;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown > a {
  position: relative;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown > a::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #7F00FF;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown ul.mega-menu {
  min-width: 315px;
  height: auto;
  position: absolute;
  top: 90%;
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  padding: 20px 0;
  transition: 0.3s;
  background-color: #fff;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 5px solid #7F00FF;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown ul.mega-menu li > a {
  text-align: left;
  color: #222;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown ul.mega-menu li > a:hover {
  color: #7F00FF;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown ul.mega-menu li > a.active {
  color: #7F00FF;
}
.header-main .header-block .megamenu-container .mainmenu li.has-droupdown:hover > ul.mega-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-main .header-block .megamenu-container .menu-mobile {
  display: none;
}
.header-main .header-block .megamenu-container .get-started {
  position: relative;
}
.header-main .header-block .megamenu-container .get-started a {
  cursor: pointer;
  border: 1px solid #7f00ff;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 0.98px;
  transition: 0.3s;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #fff;
}

.main-section .banner {
  position: relative;
  padding: 160px 360px 180px 160px;
  overflow: hidden;
}
.main-section .banner .text-wrapper h1.title {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin: 0 0 0 15px;
  display: list-item;
  position: absolute;
  right: -8%;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
.main-section .banner .text-wrapper h1.title:after {
  content: "";
  position: absolute;
  width: 80vw;
  height: 1px;
  background: #fff;
  display: inline-block;
  left: 0px;
  top: 8px;
}
.main-section .banner .text-wrapper h1.title span {
  background: #222;
  padding-right: 25px;
  z-index: 999;
  position: relative;
}
.main-section .banner .text-wrapper h2 {
  font-size: 72px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
}
.main-section .banner .text-wrapper h2 strong {
  position: relative;
  z-index: 9;
}
.main-section .banner .text-wrapper p {
  margin: 0 0 16px;
  color: #fff;
  font-size: 30px;
}
.main-section .home-service .iframe-content {
  width: 100%;
  height: 100%;
  padding: 50px 70px 50px 0;
}
.main-section .home-service .iframe-content iframe {
  transform: skew(10deg, 10deg);
}
.main-section .home-service .service-wrapper span.title {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.main-section .home-service .service-wrapper h2 {
  color: #fff;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 700;
  margin: 20px 0 40px 0;
}
.main-section .home-service .service-wrapper h2 strong {
  position: relative;
  z-index: 9;
}
.main-section .home-service .service-wrapper label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}
.main-section .home-service .service-wrapper p {
  color: #fff;
  margin: 30px 0 15px;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
}
.main-section .home-services-ads .service-content img {
  width: 30%;
  padding-bottom: 15px;
}
.main-section .home-products .slider {
  margin: 0 40px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.main-section .home-products .slider .box-items {
  height: 100%;
  perspective: 1000px;
}
.main-section .home-products .slider .box-items .box-item {
  height: 620px;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  padding: 20px 40px;
  background-color: #222;
  border-radius: 5px;
}
.main-section .home-products .slider .box-items .box-item a {
  height: 100%;
}
.main-section .home-products .slider .box-items .box-item a img {
  width: 30%;
  margin-bottom: 20px;
}
.main-section .home-products .slider .box-items .box-item a h3 {
  font-size: 30px;
  margin-bottom: 40px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.main-section .home-products .slider .box-items .box-item a p {
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 1px;
}
.main-section .home-testimonials .title-wrapper h3, .main-section .home-testimonials .title-wrapper p, .main-section .home-testimonials .title-wrapper strong {
  color: #fff;
}
.main-section .home-testimonials .review-item {
  position: relative;
  margin: 0 10px 30px;
}
.main-section .home-testimonials .review-item .item {
  box-shadow: rgba(204, 204, 216, 0.25) 0px 2px 5px -1px, rgba(222, 207, 207, 0.3) 0px 1px 3px -1px;
  padding: 30px;
  text-align: center;
}
.main-section .home-testimonials .review-item img {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 4px #eee;
}
.main-section .home-testimonials .review-item .content {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1em;
  letter-spacing: 1px;
  text-align: left;
}
.main-section .home-testimonials .review-item .content::before {
  content: "”";
  font-size: 60px;
  color: #04e3c2;
  line-height: 1;
}
.main-section .home-testimonials .review-item .author {
  font-size: 16px;
  font-weight: bold;
  color: #04e3c2;
  line-height: 30px;
  text-transform: capitalize;
  text-align: left;
}
.main-section .home-testimonials .review-item .author strong {
  font-size: 20px;
  text-transform: uppercase;
}
.main-section .home-process-work .title-wrapper h3, .main-section .home-process-work .title-wrapper p, .main-section .home-process-work .title-wrapper strong {
  color: #fff;
}
.main-section .home-process-work .process-work p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
.main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  margin-bottom: 30px;
}
.main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li .img-wrap {
  background-color: #fff;
  border: 2px solid #7F00FF;
  border-radius: 50%;
  padding: 15px;
  width: 90px;
  height: 90px;
}
.main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li .img-wrap img {
  width: 100%;
}
.main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li span {
  font-size: 22px;
  font-weight: 500;
  transition: all 450ms;
  color: #fff;
  display: block;
  margin-left: 20px;
}
.main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li.active .img-wrap {
  background-color: #7F00FF;
  border-color: #fff;
}
.main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li.active span {
  font-weight: 700;
}
.main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content {
  display: block;
}
.main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content.hide {
  display: none;
}
.main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p {
  color: #fff;
  margin: 30px 0 15px;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p:first-child {
  font-weight: 700;
  font-size: 20px;
  margin-top: 30px;
}
.main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p:last-child {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 40px;
}

.faq-container .accordion .accordion-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding: 20px;
}
.faq-container .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #7F00FF;
}
.faq-container .accordion button {
  position: relative;
  text-align: left;
  width: 100%;
  color: #222;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  display: flex;
  flex-wrap: wrap;
}
.faq-container .accordion button:hover, .faq-container .accordion button:focus {
  cursor: pointer;
  color: #7F00FF;
}
.faq-container .accordion button:hover::after, .faq-container .accordion button:focus::after {
  cursor: pointer;
  color: #7F00FF;
  border: 1px solid #7F00FF;
}
.faq-container .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
}
.faq-container .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.faq-container .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.faq-container .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faq-container .accordion button[aria-expanded=true] {
  color: #7F00FF;
}
.faq-container .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.faq-container .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faq-container .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faq-container .accordion .accordion-content p {
  font-size: 18px;
  letter-spacing: 1px;
  color: #222;
  font-weight: 600;
  margin: 2em 0;
}
.faq-container .accordion .accordion-content p a {
  color: #7F00FF;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.faq-container .accordion .accordion-content p a:hover {
  font-weight: 200;
}

.get-started .title-wrapper h3, .get-started .title-wrapper p, .get-started .title-wrapper strong {
  color: #fff;
}

.footer-main .img-wrapper {
  text-align: left;
}
.footer-main .img-wrapper img {
  width: 80%;
}
.footer-main p {
  word-break: break-all;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.footer-main h3 {
  color: #222;
  font-size: 25px;
  margin-bottom: 40px;
  word-break: break-all;
}
.footer-main h3 strong {
  position: relative;
  z-index: 9;
}
.footer-main ul li {
  margin-bottom: 20px;
}
.footer-main ul li a {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
  word-break: break-all;
}
.footer-main ul li a:hover {
  color: #7F00FF;
}
.footer-main .privacy-policy {
  text-align: right;
}
.footer-main .privacy-policy a {
  color: #222;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.footer-main .privacy-policy a:hover {
  color: #7F00FF;
}

.about-details .text-wrapper label, .about-commitment .text-wrapper label {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 30px;
}
.about-details .text-wrapper p, .about-commitment .text-wrapper p {
  font-size: 18px;
  font-weight: 300;
}
.about-details .text-wrapper p:last-child, .about-commitment .text-wrapper p:last-child {
  text-decoration: underline;
  font-style: italic;
}

.about-commitment .title-wrapper {
  margin-bottom: 100px;
}
.about-commitment .box-wrapper .box {
  text-align: center;
  position: relative;
  background: #fff;
  color: #222;
  box-shadow: 0 3px 15px rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  transition: 0.2s ease;
  height: 370px;
  padding: 30px;
  word-break: break-word;
  margin-bottom: 100px;
}
.about-commitment .box-wrapper .box .box-img {
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
}
.about-commitment .box-wrapper .box .box-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 0 7px #7F00FF;
}
.about-commitment .box-wrapper .box .box-info {
  margin: 10px 30px 15px;
  position: absolute;
  top: 22%;
  right: 0;
  left: 0;
}
.about-commitment .box-wrapper .box .box-info h4 {
  color: #222;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.about-commitment .box-wrapper .box .box-info label {
  color: #222;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.about-commitment .box-wrapper .box .box-info p {
  color: #222;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}

.contact-form-map .contact-block .card-block {
  margin-bottom: 20px;
}
.contact-form-map .contact-block .card-block label {
  width: 10%;
  border: 3px solid #7F00FF;
  border-radius: 50px;
  padding: 10px;
  margin-right: 10px;
}
.contact-form-map .contact-block .card-block span {
  width: 90%;
  word-wrap: break-word;
  color: #222;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-form-map .contact-block .card-hours label {
  word-wrap: break-word;
  color: #222;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.contact-form-map .contact-block .card-hours .time-span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.contact-form-map .contact-block .card-hours .time-span span {
  width: 40%;
}

.services-content .text-wrapper h3 {
  color: #222;
  font-size: 35px;
  margin-bottom: 40px;
}
.services-content .text-wrapper h3 strong {
  position: relative;
  z-index: 9;
}
.services-content .text-wrapper h3 strong .underline-break {
  background: #04e3c2;
}
.services-content .text-wrapper p {
  color: #222;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.services-content .img-wrap img {
  width: 100%;
  max-width: 100%;
  height: 500px;
}
.services-content .img-wrapper img {
  margin-bottom: 20px;
}
.services-content .text-wrap h3 {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.bkg-traffic {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.blgs-service .blog-wrap {
  padding: 25px;
  border: 1px solid #7F00FF;
}
.blgs-service .blog-wrap .img-wrap img {
  height: 230px;
}
.blgs-service .blog-wrap .text-wrap label {
  color: #222;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.98px;
  transition: 0.3s;
  margin: 20px 0;
  font-family: "Montserrat", sans-serif;
}
.blgs-service .blog-wrap .text-wrap p {
  color: #222;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.blgs-service .blog-wrap .text-wrap a {
  color: #7F00FF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
}

.careers-service p {
  color: #222;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.careers-service .title-wrapper p {
  font-size: 48px;
}
.careers-service .text-wrapper p {
  font-weight: 600;
}
.careers-service .positions-wrap .position {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
  padding: 30px 15px;
}
.careers-service .positions-wrap .position .position-header {
  border-bottom: 5px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.careers-service .positions-wrap h3, .careers-service .positions-wrap label {
  flex-grow: 1;
  font-family: "Baloo Chettan 2", cursive;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.45;
  color: #c24c36;
}
.careers-service .positions-wrap label {
  font-size: 25px;
}

.privacy-wrapper p {
  color: #fff;
}

.privacy-section .text {
  margin-bottom: 30px;
}
.privacy-section .text label {
  color: #222;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
  display: block;
}
.privacy-section ul li {
  list-style: disc;
}
.privacy-section p {
  color: #222;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.98px;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
}

.firework {
  position: absolute;
}

.explosion {
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 4px;
  height: 80px;
  transform-origin: 50% 100%;
  /* background-color: rgba(0,0,0,.2); */
  overflow: hidden;
}

.explosion:nth-child(1) {
  transform: rotate(0deg) translateY(-15px);
}

.explosion:nth-child(2) {
  transform: rotate(30deg) translateY(-15px);
}

.explosion:nth-child(3) {
  transform: rotate(60deg) translateY(-15px);
}

.explosion:nth-child(4) {
  transform: rotate(90deg) translateY(-15px);
}

.explosion:nth-child(5) {
  transform: rotate(120deg) translateY(-15px);
}

.explosion:nth-child(6) {
  transform: rotate(150deg) translateY(-15px);
}

.explosion:nth-child(7) {
  transform: rotate(180deg) translateY(-15px);
}

.explosion:nth-child(8) {
  transform: rotate(210deg) translateY(-15px);
}

.explosion:nth-child(9) {
  transform: rotate(240deg) translateY(-15px);
}

.explosion:nth-child(10) {
  transform: rotate(270deg) translateY(-15px);
}

.explosion:nth-child(11) {
  transform: rotate(300deg) translateY(-15px);
}

.explosion:nth-child(12) {
  transform: rotate(330deg) translateY(-15px);
}

.explosion::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 40px;
  background-color: #ef7f1a;
}

@keyframes explosion {
  0% {
    top: 100%;
  }
  33%, 100% {
    top: -50%;
  }
}
#firework1 {
  left: 50%;
  top: 50%;
  transform: scale(1);
}

#firework1 .explosion::before {
  animation: explosion 2s ease-in-out infinite;
}

#firework2 {
  left: 40%;
  top: 45%;
  transform: scale(0.7);
}

#firework2 .explosion::before {
  animation: explosion 2s 0.6s ease-in-out infinite;
}

#firework3 {
  left: 60%;
  top: 65%;
  transform: scale(0.4);
}

#firework3 .explosion::before {
  animation: explosion 2s 0.4s ease-in-out infinite;
}

@keyframes border-bottom-top {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 50%;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
@keyframes drop {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  40% {
    font-size: 10px;
    border-radius: 0 0 70% 70%;
    transform: scale(0.5, 3.2) translateY(35%);
  }
  60% {
    transform: translateY(260px) scale(1.1, 0.5);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
  }
  80% {
    transform: translateY(252px) scale(1.3, 0.8);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
  }
  100% {
    transform: translateY(244px);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
  }
}
@keyframes undrop {
  0% {
    transform: translateY(260px);
    font-size: 30px;
    border-radius: 10px 10px 0px 0px;
    opacity: 0.1;
  }
  50% {
    border-radius: 100%;
    transform: scale(0.5, 2.5);
  }
  100% {
    transform: translateY(-18%) scale(0.5, 0.7);
    font-size: 5px;
    opacity: 1;
    border-radius: 0 0 100% 100%;
  }
}
input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default), input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default), input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default),
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: box-shadow 0.3s, border 0.3s;
  font-family: "Montserrat", sans-serif;
}

select {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #222;
  outline: none;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  color: #222;
}

button, input, optgroup, select, textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

button, input {
  overflow: visible;
}

.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-field label {
  left: 0.75rem;
  color: #222;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  cursor: text;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transform-origin: 0% 100%;
  text-align: initial;
  transform: translateY(12px);
  background-color: transparent;
  border: 0;
  padding: 0;
}

select:invalid, select {
  color: #222;
}

.input-field > label:not(.label-icon).active {
  transform: translateY(-20px) scale(0.8);
  transform-origin: 0 0;
}

input:not([type]) + label:after, input[type=text]:not(.browser-default) + label:after,
input[type=password]:not(.browser-default) + label:after, input[type=email]:not(.browser-default) + label:after,
input[type=url]:not(.browser-default) + label:after, input[type=time]:not(.browser-default) + label:after,
input[type=date]:not(.browser-default) + label:after, input[type=datetime]:not(.browser-default) + label:after,
input[type=datetime-local]:not(.browser-default) + label:after, input[type=tel]:not(.browser-default) + label:after,
input[type=number]:not(.browser-default) + label:after, input[type=search]:not(.browser-default) + label:after,
textarea.materialize-textarea + label:after, .select-wrapper + label:after {
  color: #222;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  cursor: text;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transform-origin: 0% 100%;
  text-align: initial;
  transform: translateY(12px);
}

.success {
  padding: 30px 0;
  color: #04e3c2;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.98px;
}

.error {
  display: none;
  padding: 10px 0;
  color: #c24c36;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.98px;
}
.error.active {
  display: block;
}

@media (max-width: 1399px) {
  .header-main .header-block .megamenu-container .mainmenu li a {
    font-size: 18px;
    padding: 15px;
  }
}
@media (max-width: 1199px) {
  .cn-gap {
    padding: 100px 0;
  }
  .cn-gap_top {
    padding-top: 50px;
  }
  .cn-gap_bottom {
    padding-bottom: 50px;
  }
  .t-show {
    display: none;
  }
  .t-hide {
    display: block;
  }
  .title-wrapper p {
    font-size: 46px;
    line-height: 1.2;
  }
  .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9;
  }
  .header-main .header-block {
    padding: 40px 0 20px;
  }
  .header-main .header-block .aisc-logo .logo {
    width: 180px;
  }
  .header-main .header-block .megamenu-container {
    align-items: center;
    justify-content: end;
    display: flex;
    padding-right: 0;
    flex-direction: row-reverse;
  }
  .header-main .header-block .megamenu-container .codenebula-menu {
    display: block;
    width: 8%;
    margin-right: 15px;
    margin-left: 30px;
  }
  .header-main .header-block .megamenu-container .menu-desktop {
    display: none;
  }
  .header-main .header-block .megamenu-container .menu-mobile {
    color: #222;
    font-size: 14px;
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -9;
    transition: all 400ms;
    box-sizing: border-box;
  }
  .header-main .header-block .megamenu-container .menu-mobile.active {
    display: block;
    opacity: 1;
    z-index: 999999;
  }
  .header-main .header-block .megamenu-container .menu-mobile.active .menu-items {
    transform: translateX(0);
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items {
    padding: 60px 20px 30px;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
    transform: translateX(100%);
    float: right;
    transition: transform 800ms;
    background-color: #fff;
    position: relative;
    z-index: 99;
    text-align: center;
    width: 400px;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items .item-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items .item-close span {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items .item-close span::before {
    transform: rotate(45deg);
    top: 19px;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items .item-close span::after {
    transform: rotate(-45deg);
    bottom: 19px;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items .item-close span::before, .header-main .header-block .megamenu-container .menu-mobile .menu-items .item-close span::after {
    content: "";
    position: absolute;
    background: #222;
    transition: all 120ms ease-in-out;
    width: 30px;
    height: 2px;
    left: 3px;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu {
    margin: 20px 0 30px;
    justify-content: flex-start;
    padding-right: 0;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu li {
    width: 100%;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu li a {
    color: #222;
    text-align: left;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu li.has-droupdown ul.mega-menu {
    opacity: 1;
    position: static;
    visibility: visible;
    padding: 0 0 0 40px;
    border: 0;
    box-shadow: none;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu li.has-droupdown ul.mega-menu li a {
    padding: 10px 0 0;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu li.has-droupdown > a::before {
    right: 70%;
  }
  .main-section .banner .text-wrapper h1.title {
    right: -18%;
  }
  .main-section .banner .text-wrapper h2 {
    font-size: 48px;
  }
  .main-section .banner .text-wrapper p {
    font-size: 25px;
  }
  .main-section .home-service .service-wrapper h2 {
    font-size: 46px;
  }
  .main-section .home-products .slider .box-items .box-item {
    padding: 30px 20px;
  }
  .main-section .home-products .slider .box-items .box-item a h3 {
    font-size: 24px;
  }
  .main-section .home-products .slider .box-items .box-item a p {
    font-size: 17px;
  }
  .main-section .home-testimonials .review-item .content {
    font-size: 17px;
  }
  .main-section .home-testimonials .review-item .author {
    font-size: 15px;
  }
  .main-section .home-testimonials .review-item .author strong {
    font-size: 16px;
  }
  .main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li .img-wrap {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li span {
    font-size: 20px;
  }
  .main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p {
    font-size: 17px;
  }
  .main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p:first-child {
    font-size: 19px;
  }
  .about-commitment .box-wrapper .box {
    height: 510px;
  }
  .footer-main p {
    font-size: 17px;
  }
  .footer-main h3 {
    font-size: 23px;
  }
  .footer-main ul li a {
    font-size: 17px;
  }
  .footer-main .privacy-policy a {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .ipad-show {
    display: none;
  }
  .ipad-hide {
    display: block;
  }
  .title-wrapper p {
    font-size: 40px;
  }
  .header-main .header-block .megamenu-container .codenebula-menu {
    width: 12%;
  }
  .header-main .header-block .megamenu-container .menu-mobile .menu-items ul.mainmenu li.has-droupdown > a::before {
    right: 70%;
  }
  .main-section .banner {
    padding: 100px;
  }
  .main-section .banner .text-wrapper h1.title {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: 0 0 10px;
    display: block;
  }
  .main-section .banner .text-wrapper h2 {
    font-size: 40px;
  }
  .main-section .banner .text-wrapper p {
    font-size: 22px;
  }
  .main-section .home-products .slider .box-items .box-item {
    height: 600px;
  }
  .main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li .img-wrap {
    margin-bottom: 20px;
  }
  .careers-service p {
    font-weight: 500;
    letter-spacing: 1.98px;
  }
  .careers-service .positions-wrap .position {
    margin-bottom: 20px;
  }
  .footer_one {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cn-gap {
    padding: 40px 0;
  }
  .cn-gap_top {
    padding-top: 20px;
  }
  .cn-gap_bottom {
    padding-bottom: 20px;
  }
  .btn--primary {
    text-align: center;
  }
  .cn--btn .cn-btn {
    font-size: 14px;
    padding: 20px 15px 20px 52px;
  }
  .title-wrapper p {
    font-size: 30px;
  }
  .header-main .header-block .megamenu-container .get-started a {
    font-size: 14px;
  }
  .main-section .banner {
    padding: 100px 0;
  }
  .main-section .banner .text-wrapper h2 {
    font-size: 30px;
  }
  .main-section .banner .text-wrapper p {
    font-size: 18px;
  }
  .main-section .home-services-ads .home--ads {
    flex-wrap: wrap;
  }
  .main-section .home-services-ads .home--ads .service-content {
    flex: 50%;
    margin-bottom: 10px;
  }
  .main-section .home-services-ads .home--ads .service-content img {
    width: 20%;
  }
  .main-section .home-services-ads .home--ads .service-content:last-child img {
    width: 11%;
  }
  .main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs li span {
    font-size: 17px;
    margin: 0;
    text-align: center;
  }
  .main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p {
    font-size: 16px;
  }
  .main-section .home-process-work .process-work .tabs-nav .left-nav .tabs-container .tab-content p:first-child {
    font-size: 17px;
  }
  .main-section .home-products .slider .box-items .box-item {
    height: 550px;
  }
  .main-section .home-service .service-wrapper h2 {
    font-size: 30px;
  }
  .main-section .home-service .service-wrapper span.title {
    font-size: 14px;
  }
  .about-details .text-wrapper label {
    font-size: 20px;
  }
  .about-details .text-wrapper p {
    font-size: 16px;
  }
  .about-commitment .text-wrapper label {
    font-size: 20px;
  }
  .about-commitment .text-wrapper p {
    font-size: 16px;
  }
  .about-commitment .box-wrapper .box {
    height: 300px;
  }
  .about-commitment .box-wrapper .box .box-info {
    margin: 20px 30px 15px;
  }
  .about-commitment .box-wrapper .box .box-info h4 {
    font-size: 20px;
  }
  .about-commitment .box-wrapper .box .box-info label {
    font-size: 17px;
  }
  .about-commitment .box-wrapper .box .box-info p {
    font-size: 16px;
  }
  .contact-form-map .contact-block .card-block span {
    font-size: 16px;
  }
  .contact-form-map .contact-block .card-hours .time-span span {
    font-size: 16px;
  }
  .services-content .text-wrapper h3 {
    font-size: 25px;
  }
  .services-content .text-wrapper p {
    font-size: 17px;
  }
  .blgs-service .blog-wrap {
    margin-bottom: 25px;
  }
  .footer-main ul li {
    margin-bottom: 5px;
  }
  .footer-main ul li a {
    font-size: 15px;
    padding: 0;
  }
  .footer-main h3 {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .footer-main p {
    font-size: 16px;
  }
  .footer-main .privacy-policy a {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .header-main .header-block .aisc-logo .logo {
    width: 150px;
  }
  .header-main .header-block .megamenu-container .codenebula-menu {
    width: 14%;
  }
}
@media (max-width: 479px) {
  .cn--btn .cn-btn {
    padding: 13px 15px 13px 52px;
  }
  .main-section .banner .text-wrapper h2 {
    font-size: 25px;
  }
  .main-section .banner .text-wrapper p {
    font-size: 16px;
  }
  .main-section .home-process-work .process-work .tabs-nav .right-nav ul.navs {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-evenly;
  }
  .main-section .home-service .service-wrapper h2 {
    font-size: 22px;
  }
  .main-section .home-service .service-wrapper label {
    font-size: 16px;
  }
  .main-section .home-service .service-wrapper p {
    font-size: 16px;
  }
  .main-section .home-products .slider .box-items .box-item a h3 {
    font-size: 20px;
  }
  .main-section .home-products .slider .box-items .box-item a p {
    font-size: 16px;
  }
  .main-section .home-testimonials .review-item .content {
    font-size: 16px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .header-main .header-block .megamenu-container .codenebula-menu {
    width: 12%;
  }
  .main-section .home-service .service-wrapper label {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.9;
  }
  .main-section .home-service .service-wrapper p {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.9;
  }
  .main-section .home-products .slider .box-items .box-item {
    height: 530px;
  }
  .main-section .home-services-ads .home--ads {
    flex-wrap: wrap;
  }
  .main-section .home-services-ads .home--ads .service-content {
    flex: 33.333%;
    margin-bottom: 10px;
  }
  .main-section .home-services-ads .home--ads .service-content p {
    font-size: 20px;
  }
  .main-section .home-services-ads .home--ads .service-content img {
    width: 20%;
  }
  .main-section .home-services-ads .home--ads .service-content:last-child img {
    width: 11%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .main-section .home-products .slider .box-items .box-item {
    height: 600px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  .main-section .home-products .slider .box-items .box-item {
    height: 600px;
  }
  .about-commitment .box-wrapper .box {
    height: 365px;
  }
  .contact-form-map .contact-block .card-block {
    flex-direction: column !important;
  }
  .contact-form-map .contact-block .card-block label {
    margin-bottom: 15px;
    width: 20%;
  }
  .footer_one {
    flex-direction: column !important;
  }
  .footer_one .img-wrapper {
    margin-bottom: 20px;
    text-align: center;
  }
}/*# sourceMappingURL=theme.css.map */