<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&amp;family=Poppins:wght@400;500;700&amp;display=swap");
@font-face {
  font-family: "Andale Mono";
  src: url(../fonts/AndaleMono.ttf);
}
::-webkit-scrollbar{
    width: 4px;
    color:#A76AE4;
    transition: all .4s ease;
}
::-webkit-scrollbar-thumb {
    background: #A76AE4; 
    border-radius: 4px;
    width: 4px;
    transition: all .4s ease;
  }
  ::-webkit-scrollbar-track {
    background: #101010; 
    border-radius: 4px;
    width: 4px;
  }
  input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #141516;
}

.layout_margin {
  margin-top: 90px;
  margin-bottom: 90px;
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #ffffff;
}

.heading_container h2 {
  font-weight: bold;
}

.heading_container a {
  display: inline-block;
  background: #A66ADF;
  color: #000000;
  padding: 10px 35px;
  border-radius: 30px;
  border: 1px solid #A66ADF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 15px;
}

.heading_container a:hover {
  background: transparent;
  color: #A66ADF;
}

@-webkit-keyframes hueAnimate {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

@keyframes hueAnimate {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

/*header section*/
.hero_area {
  position: relative;
}

.sub_page .info_section .social_box {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link img {
  width: 22px;
  margin-right: 15px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0px 25px;
  color: #fefeff;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.custom_menu-btn {
  z-index: 9;
  position: absolute;
  left: 0;
  top: 15px;
}

.custom_menu-btn button {
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.menu_btn-style {
  position: fixed;
  left: 22px;
  top: 15px;
}

.menu_btn-style button {
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
}

.menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translateY(17px);
          transform: rotate(45deg) translateY(17px);
}

.menu_btn-style button .s-2 {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translateY(-17px);
          transform: rotate(-45deg) translateY(-17px);
}

.position-unset {
  position: unset;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(3, 16, 3, 0.95);
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.overlay a {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 10px 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1.5px solid #ffffff;
  border-radius: 5px;
  width: 190px;
}

.overlay a:hover {
  border-color: transparent;
  background-color: #ffffff;
}

.overlay-content {
  position: relative;
  top: 20%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu_width {
  width: 100%;
}

.scroll-y-hidden {
  overflow-y: hidden;
}

a,
a:hover,
a:focus {
  font-weight: bold;
  color: #7856E8;
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fk_width {
  width: 105px;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 18px;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  background-position: center;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar-brand span {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.custom_nav-container {
  z-index: 99999;
  padding: 15px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-size: 55px;
}

.main_nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 45px;
}

.user_option a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 35px;
  color: #ffffff;
  text-transform: uppercase;
}

.user_option a img {
  width: 20px;
  margin-right: 10px;
}

.user_option a span {
  color: #ffffff;
}

/*end header section*/
.slider_section {
  padding-top: 45px;
}

.slider_section #carouselExampleIndicators {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.slider_section .detail-box {
  color: #ffffff;
  margin-top: 75px;
}

.slider_section .detail-box h2, h1 {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
}

.slider_section .detail-box p {
  margin-top: 15px;
}

.slider_section .detail-box a {
  display: inline-block;
  background: #A66ADF;
  color: #000000;
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid #A66ADF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 35px;
}

.slider_section .detail-box a:hover {
  background: transparent;
  color: #A66ADF;
}

.slider_section .img-box {
  margin-top: -125px;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .img-box::before {
  content: "";
  position: absolute;
  top: -135px;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(transparent), to(transparent));
  background: linear-gradient(to bottom, #000000, transparent, transparent);
  z-index: 1;
  display: none;
}

.slider_section .carousel_control-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel_btn-container {
  width: 95px;
  min-width: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 999;
}

.slider_section .carousel_btn-container .carousel-control-prev,
.slider_section .carousel_btn-container .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  border: 1.5px solid #ffffff;
  background-color: transparent;
}

.slider_section .carousel_btn-container .carousel-control-prev:hover,
.slider_section .carousel_btn-container .carousel-control-next:hover {
  background-color: #A66ADF;
  border-color: transparent;
}

.slider_section .carousel_btn-container .carousel-control-prev {
  background-image: url(../images/prev.png);
}

.slider_section .carousel_btn-container .carousel-control-next {
  background-image: url(../images/next.png);
}

.slider_section .carousel-indicators {
  width: 550px;
  min-width: 550px;
  position: relative;
  margin: 0;
  margin-left: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slider_section .carousel-indicators::before {
  content: "";
  width: calc(100% - 75px);
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc(50% - 8px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff;
}

.slider_section .carousel-indicators .ol_design {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: calc(0% + 35px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  background-color: #A66ADF;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 2;
}

.slider_section .carousel-indicators li {
  height: auto;
  border: none;
  opacity: 1;
  color: #ffffff;
  text-indent: 0;
  background-color: transparent;
}

.about_section .detail-box {
  margin: 35px auto;
  position: relative;
  z-index: 2;
}

.about_section .img-box {
  width: 90%;
  margin: auto;
  position: relative;
  background-repeat: no-repeat;
  margin-top: -125px;
}

.about_section .img-box .play_btn {
  background: #A66ADF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about_section .img-box .play_btn button {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  border: none;
  position: relative;
  z-index: 5;
}

.about_section .img-box .play_btn a {
  background: #A66ADF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  position: relative;
  z-index: 5;
}

.about_section .img-box .play_btn img {
  width: 20px;
  margin-left: 3px;
}

.about_section .img-box .play_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #A66ADF;
  opacity: 1;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about_section .img-box .play_btn::before {
  z-index: 2;
  -webkit-animation: before-animation 1500ms infinite;
          animation: before-animation 1500ms infinite;
}

@-webkit-keyframes before-animation {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes before-animation {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.about_section .img-box .about-img {
  width: 100%;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  -webkit-animation: hueAnimate .7s infinite;
          animation: hueAnimate .7s infinite;
}

.about_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 75px;
  margin-bottom: 175px;
}

.about_section .btn-box a {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 10px 40px;
  border-radius: 30px;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about_section .btn-box a:hover {
  background: transparent;
  color: #ffffff;
}

.gallery_section .gallery_container {
  position: relative;
  max-width: 1500px;
  margin: auto;
  margin-top: -10%;
}

.gallery_section .gallery_container .gallery_bg {
  position: absolute;
  width: 100%;
  top: 20%;
  margin-left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}

.gallery_section .gallery_container .gallery_bg img {
  width: 100%;
}

.gallery_section .gallery_container .gallery_box {
  width: 85%;
  margin: auto;
}

.gallery_section .gallery_container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery_section .gallery_container .box.b1 .img-box {
  margin-left: 8%;
}

.gallery_section .gallery_container .box.b3 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gallery_section .gallery_container .box.b4 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gallery_section .gallery_container .box.b4 .img-box {
  margin-right: 8%;
}

.gallery_section .gallery_container .box .img-box {
  position: relative;
  margin: 10px;
  border-radius: 35px;
  overflow: hidden;
  width: 350px;
  height: 350px;
}

.gallery_section .gallery_container .box .img-box img {
  width: 100%;
}

.gallery_section .gallery_container .box .img-box h5 {
  color: #031003;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.blog_section .detail-box {
  margin: 35px auto;
  position: relative;
  z-index: 2;
}

.blog_section .blog_container {
  position: relative;
  max-width: 1500px;
  margin: auto;
}

.blog_section .blog_container .blog_bg {
  position: absolute;
  width: 100%;
  top: 10%;
  margin-left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: -1;
}

.blog_section .blog_container .blog_bg img {
  width: 100%;
}

.blog_section .blog_box {
  width: 80%;
  margin: auto;
}

.blog_section .box {
  margin-top: 55px;
  background-color: #ffffff;
  border-radius: 35px;
  overflow: hidden;
}

.blog_section .box.b1 {
  margin-top: 100%;
}

.blog_section .box .img-box {
  position: relative;
}

.blog_section .box .img-box img {
  width: 100%;
}

.blog_section .box .blog-detail {
  padding: 25px 25px 15px;
}

.blog_section .box .blog-detail .blog_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_section .box .blog-detail .blog_post h6 {
  color: #c2bebe;
}

.blog_section .box .blog-detail h5 {
  color: #031003;
  text-transform: uppercase;
  font-weight: bold;
}

.blog_section .box .blog-detail p {
  color: #404040;
}

.client_section .client_container {
  position: relative;
  max-width: 1500px;
  margin: auto;
}

.client_section .client_container .client_bg {
  position: absolute;
  width: 100%;
  top: 10%;
  margin-left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}

.client_section .client_container .client_bg img {
  width: 100%;
}

.client_section .client_box {
  width: 80%;
  margin: auto;
}

.client_section .box {
  position: relative;
}

.client_section .client_content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 10px;
}

.client_section .client_content-box .img-box {
  width: 125px;
  border-radius: 100%;
  margin-bottom: -62px;
  position: relative;
  z-index: 2;
}

.client_section .client_content-box .img-box img {
  width: 100%;
}

.client_section .client_content-box .detail-box {
  padding: 95px 25px 45px 25px;
  background-color: #ffffff;
  border-radius: 35px;
}

.client_section .client_content-box .detail-box h4 {
  color: #1d1b28;
  font-weight: bold;
}

.client_section .client_content-box .detail-box p {
  color: #1d1b28;
  margin-top: 25px;
}

.client_section .client_content-box .detail-box img {
  width: 35px;
  margin-top: 25px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #000000;
  opacity: 1;
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #A66ADF;
}

.client_section .carousel-control-prev {
  background-image: url(../images/prev-arrow.png);
  left: -65px;
}

.client_section .carousel-control-next {
  background-image: url(../images/next-arrow.png);
  right: -65px;
}

.client_section .camera_img-box {
  margin-top: 115%;
}

.client_section .camera_img-box img {
  width: 100%;
}

/* info section */
.info_section {
  position: relative;
  margin-top: -125px;
}

.info_section .heading_container {
  margin-bottom: 25px;
}

.info_section .info_main .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_logo img {
  width: 65px;
}

.info_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section .social_box a {
  margin: 0 10px;
}

.info_section a {
  text-transform: none;
}

.info_section h5 {
  margin-bottom: 12px;
  font-size: 24px;
  color: #3eb4b8;
}

.info_section p {
  color: #323232;
}

.info_section ul {
  padding: 0;
}

.info_section ul li {
  list-style-type: none;
  margin: 3px 0;
}

.info_section ul li a {
  color: #ffffff;
}

.info_section .info_link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  color: #ffffff;
}

.info_section .info_contact .link-box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.info_section .info_contact .link-box .img-box img {
  width: 20px;
}

.info_section .info_contact .link-box h6 {
  margin-bottom: 0;
}

/* end info section */
/* footer section*/
.footer_section {
  color: #ffffff;
}

.footer_section p {
  margin: 0;
  padding: 20px 0;
}

.footer_section a {
  color: #ffffff;
}

.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.modal-body {
  position: relative;
  padding: 0px;
}

.close {
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */
.logoNav{
  max-width: 60px;
  max-height: 60px;
}

















.setter{
    list-style-type: none;
    color:#7856E8;
    text-decoration: none;
    font-weight: bold;

    font-size: 40px;
}
.device-notification{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    -ms-grid-row-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    background-color:#0c0c0c;
    z-index:12
}
.device-notification--logo{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
    text-decoration:none;
    color:#fff
}
.device-notification--logo p{
    margin:0 0 0 10px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase
}
.device-notification--message{
    width:70%;
    margin:30px 0 0 0;
    font-weight:700;
    text-align:center
}
@media (max-width: )
@media (max-width: 767px) and (min-width: 601px) and (max-height: 680px){
    .device-notification{
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display:flex
    }

}
@media (max-width: 600px) and (min-width: 480px) and (max-height: 580px){
    .device-notification{
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display:flex
    }
}
@media (max-width: 736px) and (min-width: 360px) and (orientation: landscape){
    .device-notification{
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display:flex
    }
}
@media(max-width: 359px){
    .device-notification{
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display:flex
    }
}
.effect-rotate-left .containerNav{
    -webkit-transform-origin:0% 50%;
    transform-origin:0% 50%;
    -webkit-transition:-webkit-transform .4s;
    transition:-webkit-transform .4s;
    transition:transform .4s;
    transition:transform .4s, -webkit-transform .4s
}
.effect-rotate-left--animate .containerNav{
    -webkit-transform:translateZ(-1800px) translateX(-50%) rotateY(45deg);
    transform:translateZ(-1800px) translateX(-50%) rotateY(45deg);

}
.perspective{
    position:relative;
    width:100%;
    height:100%;
}
.perspective--modalview{
    position:fixed;
    -webkit-perspective:1500px;
    perspective:1500px
}
.containerNav{
    position:relative;
    -webkit-transform:translateZ(0) translateX(0) rotateY(0deg);
    transform:translateZ(0) translateX(0) rotateY(0deg);
    min-height:100%;

    -webkit-transition:-webkit-transform .4s;
    transition:-webkit-transform .4s;
    transition:transform .4s;
    transition:transform .4s, -webkit-transform .4s
}
.modalview .containerNav{
    position:absolute;
    width:100%;
    height:100%;
    overflow:hidden;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
.effect-rotate-left .containerNav{
    -webkit-transform-origin:0% 50%;
    transform-origin:0% 50%;
    -webkit-transition:-webkit-transform .4s;
    transition:-webkit-transform .4s;
    transition:transform .4s;
    transition:transform .4s, -webkit-transform .4s
}
.effect-rotate-left--animate .containerNav{
    -webkit-transform:translateZ(-1800px) translateX(-50%) rotateY(45deg);
    transform:translateZ(-1800px) translateX(-50%) rotateY(45deg);

}
.outer-nav{
    position:absolute;
    top:50%;
    left:55%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
    -webkit-transform-style:preserve-3d;
    transform-style:preserve-3d;
    margin:0;
    padding:0;
    list-style:none;
    text-align:center;
    visibility:hidden;
    -webkit-transition:visibility 0s .2s;
    transition:visibility 0s .2s
}
.outer-nav.is-vis{
    visibility:visible

}
.outer-nav--return{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    cursor:pointer;
    z-index:11
}
.outer-nav--return.is-vis{
    display:block
}
.outer-nav&gt;li{
    -webkit-transform-style:preserve-3d;
    transform-style:preserve-3d;
    -webkit-transform:translateX(350px) translateZ(-1000px);
    transform:translateX(350px) translateZ(-1000px);
    font-weight:900;
    opacity:0;
    cursor:pointer;
    -webkit-transition:opacity .2s,-webkit-transform .2s;
    transition:opacity .2s,-webkit-transform .2s;
    transition:transform .2s,opacity .2s;
    transition:transform .2s,opacity .2s,-webkit-transform .2s
}
.outer-nav&gt;li.is-vis{
    -webkit-transform:translateX(0) translateZ(0);
    transform:translateX(0) translateZ(0);
    opacity:1;
    -webkit-transition:opacity .4s,-webkit-transform .4s;
    transition:opacity .4s,-webkit-transform .4s;
    transition:transform .4s,opacity .4s;
    transition:transform .4s,opacity .4s,-webkit-transform .4s
}
.outer-nav&gt;li::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -25%);
    transform:translate(-50%, -25%);
    width:110%;
    height:15px;
    opacity:0;
    background-color:#0f33ff
}
.outer-nav&gt;li.is-active::before{
    opacity:1
}
@media (max-width: 768px){
    .outer-nav&gt;li{
        font-size:44px
    }
        body{
      overflow-x: hidden;
    }
    .l-viewport{
      box-shadow: none;
    }
    .gallery_bg, .client_bg, .blog_bg, .camera_img-box{
      display: none;
      visibility: hidden;
      width: 0%;
      height: 0%;
    }
    h6, .h6{
      font-size: 0.8rem;
    }
}
@media (max-width: 600px){
    .outer-nav&gt;li{
        font-size:34px
    }
}
.outer-nav li.is-vis:nth-child(2){
    -webkit-transition-delay:.04s;
    transition-delay:.04s
}
.outer-nav li.is-vis:nth-child(3){
    -webkit-transition-delay:.08s;
    transition-delay:.08s
}
.outer-nav li.is-vis:nth-child(4){
    -webkit-transition-delay:.12s;
    transition-delay:.12s
}
.outer-nav li.is-vis:nth-child(5){
    -webkit-transition-delay:.16s;
    transition-delay:.16s
}

.l-viewport{
    position:relative;
    width:100%;
    height:100vh;
    box-shadow:0 0 45px 5px rgba(0,0,0,0.2);

}
.l-wrapper{
    position:relative;

    height:100%;
    margin:0 auto
}
.header{
    position:absolute;
    top:0;
    left:50px;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    height:70px;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    z-index:10
}
.header--nav-toggle{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    width:50px;
    height:50px;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    cursor:pointer
}
 .header--nav-toggle span,.header--nav-toggle::before,.header--nav-toggle::after{
    content:"";
    position:relative;
    width:16px;
    height:2px;
    background-color:#fff
}
.header--nav-toggle::before{
    bottom:5px;
    width:23px
}
.header--nav-toggle::after{
    top:5px;
    width:23px
}
.section--is-active{
    opacity:1;
    visibility:visible;
    z-index:1;
    -webkit-transition:opacity .4s ease-in-out .4s;
    transition:opacity .4s ease-in-out .4s
}
.header--cta.is-active{
    opacity:1;
    visibility:visible;
    -webkit-transition:opacity .4s ease-in-out .4s;
    transition:opacity .4s ease-in-out .4s
}
 .side-nav li.is-active{
    color:#0f33ff;
    -webkit-transition:color .4s ease-in-out;
    transition:color .4s ease-in-out
}
.side-nav li.is-active span{
    opacity:1;
    visibility:visible;
    -webkit-transition:opacity .4s ease-in-out;
    transition:opacity .4s ease-in-out
}
.side-nav li.is-active::before{
    left:-33px;
    color:#fff
}
.outer-nav&gt;li.is-active::before{
    opacity:1
}
.outer-nav li.is-vis:nth-child(2){
    -webkit-transition-delay:.04s;
    transition-delay:.04s
}
.outer-nav li.is-vis:nth-child(3){
    -webkit-transition-delay:.08s;
    transition-delay:.08s
}
.outer-nav li.is-vis:nth-child(4){
    -webkit-transition-delay:.12s;
    transition-delay:.12s
}
.outer-nav li.is-vis:nth-child(5){
    -webkit-transition-delay:.16s;
    transition-delay:.16s
}
.outer-nav--return.is-vis{
    display:block
}
.outer-nav.is-vis{
    visibility:visible
}

 .logoNav{
     max-height : auto;
     max-width : 60px;
}
.visNone{
  visibility: hidden;
  display: none;
  position: absolute;
}
.creative{
    background-size: 100% 100%;
    height: 100%;
}

.offset-lg-1{
  margin-top: 10%;
}
@media all and (max-width: 568px) {
  .setter{
    font-size: 20px;
    margin-left: -52%;
  }
}

.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
  margin-top:16px;
}


.fremove{
   list-style-type: none;
   padding-left: 0px;
}
.fsocial{
  overflow: hidden;
    margin-top: 10px;
    text-align: center;
}

footer .fsocial li a {
    color: #5AA3F3;
    text-align: center;
    background-color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
footer .fcopyright {
    border-top: 1px solid rgba(250, 250, 250, 0.2);
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.88px;
    text-transform: uppercase;
}
.fcontainer{
  padding-top: 30px;
      background-color: #A76AE4;
    display: block;
    text-align: center;

}
.visiblemaker{
  display: none;
}
.visTrue{
  margin-top: 10px;
  margin-left: 2rem;
  text-align: center;
  display: block;
}
.shadowRemover{
    box-shadow: none;
}


.postBlog{
padding-top: 5%;
}
.pricing{
  margin-top: 20%;
}
.pricing-header{margin-bottom:48px}
.pricing-tables-wrap{display:flex;flex-wrap:wrap;justify-content:center;
  margin-right:-12px;margin-left:-12px}.pricing-tables-wrap:first-child{margin-top:-12px}
  .pricing-tables-wrap:last-child{margin-bottom:-12px}
#move{margin-bottom:50px;}


  .pricing-table{position:relative;  
    padding:12px;width:300px;max-width:350px;flex-grow:1}.pricing-table::before{content:'';
      position:absolute;left:50%;width:200%;max-width:200%;height:500px;background-repeat:no-repeat;
    
      background-position:center;background-size:100%;bottom:18.8%;-webkit-transform:translateX(-50%);
      transform:translateX(-50%);border-radius:100px;
      background-image:url("../images/pricing-illustration.svg");}
      .pricing-table-header,.pricing-table-features-title,.pricing-table-features
       li{border-bottom:1px solid #141516;}.pricing-table-inner 
       {position:relative;display:flex;flex-wrap:wrap;

      background:linear-gradient(60deg, rgb(252, 239, 249) ,#5AA3F3  0%, #af7be1 100%); 
      padding:24px;height:100%; border-radius: 2px; } 
     /*   background:#062264;padding:24px;height:100%*/
       .text-xs{color:#141516;font-weight:bold;}
      

       .pricing-table-inner&gt;*{position:relative;width:100% ;color: rgb(68, 61, 61);}
       .pricing-table-inner::before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;
        box-shadow:0 24px 48px rgba(1, 5, 14, 0.24);mix-blend-mode:multiply}
        .pricing-table-price-currency {color:#141516 }
        .pricing-table-features-title{color:rgb(13, 1, 1);font-weight:700}
        .pricing-table-features li{display:flex;font-style: normal;align-items:center;padding:14px 0;color-scheme: rgb(194, 76, 76) ,#141516 ;}
        .pricing-table-features li::before{content:'';width:16px;height:12px;margin-right:50px;
          background-image:url(../images/new.png);background-repeat:no-repeat}.pricing-table-cta{align-self:flex-end;}@media (min-width: 641px)
        /*  background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuNiA2LjRMMS42IDQgMCA1LjYgNS42IDEyIDE2IDEuNiAxNC40IDB6IiBmaWxsPSIjMDJDQkIxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);background-repeat:no-repeat}.pricing-table-cta{align-self:flex-end}@media (min-width: 641px)*/
          {.pricing .section-paragraph{padding-left:90px;padding-right:90px }
          .pricing-header{margin-bottom:52px}}.cta{text-align:center}
          .cta .section-inner{padding:48px 16px}.cta .section-title{margin-bottom:40px}
          .cta-inner{position:relative;background:rgb(218, 14, 14) ;overflow:hidden}
          .cta-inner::before{content:'';position:absolute;right:98px;top:-100px;width:160px;height:187px;
            background-image:url("../images/cta-illustration.svg");background-repeat:no-repeat}
            .cta-inner&gt;*{position:relative}@media (min-width: 641px){.cta{text-align:left}.cta 
            .section-inner{padding:64px 32px}.cta .section-title{margin-bottom:0;padding-right:24px}
            .cta-inner{display:flex;align-items:center;justify-content:space-between}}.is-boxed{background:#141516}

.button-primary{background:#0275e1; border-radius:20px;
    background:color(65deg, black 0, purple 100%)}
    .button-primary:hover{background:rgb(15, 104, 146);
      background:linear-gradient(65deg, #0b4984 0, #166cbc 100%)}
      .button-block{display:flex}.button-block{display:flex;width:100%}
      @media (max-width: 640px){.button-wide-mobile{width:100%;max-width:280px}}
     
     .button{
          display: inline-flex;
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: 600;
    line-height: 16px;
    text-decoration: none !important;
    text-transform: uppercase;
    background-color: rgb(176, 31, 176);
    color: #fff !important;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    justify-content: center;
    padding: 16px 32px;
    height: 48px;
    text-align: center;
    white-space: nowrap;
     }
/*dropdown*/


#dropdown-products {
  display: none;

}
#dropdown-products{
  position: absolute;
  z-index: 999;
  top: 12%;
  text-align: left;

}
@media only screen and (max-width: 991px) {
#dropdown-products{

}
}

#dropdown-products a .setter{
  width:300%;
}
#menu-products:hover #dropdown-products {
  
  display: block;
}
#menu-products:hover ~ .hide .setter{
  color:#141516;
}
.pricing-table-price-amount{
  color: white;
  background-color: #A76AE4;
  border-radius: 5px;
  padding: 5px;
  margin-top: 10px;
  font-size: 1rem;
}
li span{
  color: #569CE8;
}</pre></body></html>