/*

TemplateMo 577 Liberty Market

https://templatemo.com/tm-577-liberty-market

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background-color: #1e1e1e;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background: #7453fc;
  color: #fff;
}

::-moz-selection {
  background: #7453fc;
  color: #fff;
}

.border-button a {
  font-size: 14px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #7453fc;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.border-button a:after {
  width: 78%;
  height: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.border-button a:hover {
  background-color: #7453fc;
  color: #fff;
}

.main-button a {
  font-size: 14px;
  color: #fff;
  background-color: #7453fc;
  border: 1px solid #7453fc;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:after {
  width: 78%;
  height: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.main-button a:hover {
  background-color: #fff;
  color: #7453fc;
  border: 1px solid #fff;
}

section {
  margin-top: 120px;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  margin-bottom: 80px;
  text-align: center;
}

.section-heading .line-dec {
  width: 100px;
  height: 2px;
  background-color: #7453fc;
  margin: 0 auto 30px auto;
}

.section-heading h2 {
  margin-top: 10px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}

.section-heading h2 em {
  color: #7453fc;
  font-style: normal;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.98);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #7453fc;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #7453fc;
  border-radius: 50%;
}

/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: rgba(27, 26, 26, 0.863) !important;
  height: 100px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  background-color: transparent;
  position: absolute;
  height: 70px;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
  display: flex;
  background-color: rgba(27, 26, 26, 0.863);
  padding: 15px 30px;
  border-radius: 50px;
}

.background-header .main-nav {
  padding: 0px;
  background-color: transparent;
}

.header-area .main-nav .logo {
  flex-basis: 30%;
  -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;
}

.header-area .main-nav .logo img {
  width: 223px;
}

.background-header .main-nav .logo {
  margin-top: 8px;
}

.background-header .main-nav .logo img {
  width: 180px;
}

.header-area .main-nav .nav {
  display: inline-flex;
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  text-align: right;
  margin-top: 20px;
  margin-right: 0px;
  -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;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
  -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;
  border: transparent;
  padding: 8px 15px;
  border-radius: 18px;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
  padding-left: 25px !important;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fff;
  background-color: #7453fc;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fff;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 17px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #7453fc;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #7453fc;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #7453fc;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #7453fc;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #7453fc;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #7453fc;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #7453fc;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #7453fc;
}

.header-area.header-sticky {
  min-height: 70px;
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area {
    top: 0;
  }
  .header-area .main-nav {
    background-color: transparent;
    border-radius: 0px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 15px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #7453fc!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: rgba(27, 26, 26, 0.863);
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area.header-sticky .nav {
    margin-top: 85px !important;
    text-align: center;
  }
  .background-header.header-sticky .nav {
    margin-top: 70px !important;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #fff !important;
    color: #1e1e1e !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #fff !important;
    color: #7453fc!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}
.content_p{
  font-size: 17px;
  font-style: italic;
}

.profile_content p{
  line-height: 30px;
  font-size: 20px;
  padding: 20px 0px;
  text-align: justify;
}

/* R&D project */


/* company Profile image */
.blob{
  background-image: url(../images/about-img.jpg);
  width: 450px;
  height: 450px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(213, 13, 253, 0.2);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
  
}

.blob_image{
  background-image: url(../images/standard.jpg);
  width: 450px;
  height: 450px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(213, 13, 253, 0.2);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

.blob_image_1{
  background-image: url(../images/robot_rd.jpg);
  width: 380px;
  height: 380px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

.blob_image_2{
  background-image: url(../images/agri_img.jpg);
  width: 380px;
  height: 380px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

.blob_image_3{
  background-image: url(../images/home-automation-history.jpg);
  width: 380px;
  height: 380px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

.blob_image_4{
  background-image: url(../images/research.jpg);
  width: 450px;
  height: 450px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

.blob_image_5{
  background-image: url(../images/company.jpg);
  width: 450px;
  height: 450px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(213, 13, 253, 0.2);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
  
}

.blob_image_6{
  background-image: url(../images/sir_img.jpeg);
  width: 450px;
  height: 450px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(213, 13, 253, 0.2);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
  
}

@keyframes animate {
  0%, 100%{
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50%{
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}


/* Media Quary */
/* @media screen and (max-width: 576px) {
  .blob{
      width: 280px;
      height: 280px;
  }
} */

/*
------------------------------
	service
----------------------------
*/

	.service-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) ,url(../images/bg-service.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
  height: 100vh;
}


.service-banner h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.service-banner h1:hover {
  transform: rotateY(0) rotateX(0);
}

.service-banner .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.service-banner .border-button {
  margin-right: 15px;
}

.service-banner .owl-banner {
  margin-top: -40px;
}

.service-banner .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.service-banner .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.service-banner .owl-nav .owl-next {
  margin-left: 7.5px;
}

.service-banner .owl-nav .owl-prev span,
.service-banner .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.service-banner .owl-nav .owl-prev span:hover,
.service-banner .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .service-banner .owl-banner {
    margin-top: 80px;
  }
}




.service-content .services{
  box-sizing: content-box;
  text-align: center;
  min-height: 100px;
}


.service-content .services h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: black;
}

.service-content .services h4 {
  font-size: 14px;
  color: black;
  margin: 0;
}

.service-content .services h5 {
  font-size:20px;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background-color: #7453fc;
  position: relative;
  margin-bottom: 35px;
  border-radius: 45px;
  box-shadow: 0px 2px 15px #7453fc;
}

.service-content .timeline-times {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.service-content .timeline-times::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #7453fc;
  left: calc(50% - 1px);
}

.service-content .timeline-time {
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.service-content .timeline-time:last-child {
  margin-bottom: 0;
}

.service-content .timeline-time:nth-child(odd) {
  padding-right: calc(50% + 30px);
}

.service-content .timeline-time:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.service-content .timeline-content {
  background-color: #7453fc;
  padding: 30px;
  border-radius: 5px;
}

.service-content .timeline-dot_service {
  height: 35px;
  width: 35px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 16px);
  border-radius: 50%;
  top: 10px;
}
.service-content .timeline-dot_service i{
  color: #7453fc;
  padding: 8px 5px 5px 8px;
}
@media(max-width:767px) {
  .service-content .timeline-times::before {
    left: 18px;
  }

  .service-content .timeline-time:nth-child(odd) {
    padding-right: 0;
  }

  .service-content .timeline-time:nth-child(odd),
  .service-content .timeline-time:nth-child(even) {
    padding-left: 37px;
  }

  .service-content .timeline-dot_service {
    left: 0;
  }
}

.service-content .left-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #7453fc;
  right: calc(50% - (-15px));
}

.service-content .right-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #7453fc;
  left: calc(50% - (-15px));
}

.service-content .timeline-content h3{
  font-size: 20px;
  margin: 0 0 15px;
  text-transform: capitalize;
  font-weight: 500;
}

.service-content .timeline-content p{
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  text-align: justify;
}


/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.img_class {
  /* border: 1px solid #ddd; */
  border-radius: 20px !important;
  /* padding: 5px; */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height:400px;
}

.main-banner {
  background-image: url(../images/banner_4.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}

.main-banner h6 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-banner h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
}

.main-banner p {
  margin-top: 20px;
}

.main-banner .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.main-banner .border-button {
  margin-right: 15px;
}

.main-banner .owl-banner {
  margin-top: -40px;
}

.main-banner .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.main-banner .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.main-banner .owl-nav .owl-next {
  margin-left: 7.5px;
}

.main-banner .owl-nav .owl-prev span,
.main-banner .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev span:hover,
.main-banner .owl-nav .owl-next span:hover {
  opacity: 1;
}


/* 
---------------------------------------------
Categories & Collections Style
--------------------------------------------- 
*/

.categories-collections {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px 150px 0px;
  position: relative;
}

.categories-collections:after {
  background-image: url(/assets/images/category-collection-dec.png);
  width: 300px;
  height: 282px;
  position: absolute;
  bottom: 0;
  right: 30px;
  content: '';
}

.categories .item {
  background-color: #282b2f;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #404245;
  position: relative;
}

.categories .item .icon {
  width: 62px;
  height: 62px;
  display: inline-block;
  text-align: center;
  line-height: 62px;
  background-color: #fff;
  border-radius: 50%;
}

.categories .item .icon img {
  max-width: 31px;
}

.categories .item h4 {
  margin-top: 15px;
  font-size: 20px;
}

.categories .item .icon-button a {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  background-color: #fff;
  color: #7453fc;
  border-radius: 50%;
  font-size: 18px;
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-23px);
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}

.categories .item .icon-button a:hover {
  background-color: #7453fc;
  color: #fff;
}

.categories .item:hover .icon-button a {
  visibility: visible;
  opacity: 1;
}

.collections {
  margin-top: 140px;
}

.collections .item img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.collections .item .down-content {
  background-color: #282b2f;
  border: 1px solid #404245;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 30px;
}

.collections .item .down-content h4 {
  font-size: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.collections .item {
  padding-bottom: 60px;
}

.collections .item span {
  color: #fff;
  display: inline-block;
  width: 48%;
  font-size: 15px;
}

.collections .item span strong {
  font-size: 20px;
}

.collections .item span.category {
  text-align: right;
}

.collections .item .main-button a {
  width: 100%;
  text-align: center;
}

.collections .item .main-button {
  margin-top: 20px;
  margin-bottom: -60px;
}

.collections .item .main-button a:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #7453fc;
}

.collections .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50px);
  text-align: center;
}

.collections .owl-nav .owl-prev {
  position: absolute;
  left: -23px;
}

.collections .owl-nav .owl-next {
  position: absolute;
  right: -23px;
}

.collections .owl-nav .owl-prev span,
.collections .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.collections .owl-nav .owl-prev span:hover,
.collections .owl-nav .owl-next span:hover {
  opacity: 1;
}

/* 
---------------------------------------------
Create NFT Style
--------------------------------------------- 
*/
	.software-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) ,url(../images/bg-software.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
  
}


.software-banner h2 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
   text-shadow: 0px 2px 15px #14074a;
}

.software-banner h2:hover {
  transform: rotateY(0) rotateX(0);
}

	.hardware-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/bg-hardware.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.hardware-banner h2 {
  text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
   text-shadow: 0px 2px 15px #7453fc;
}

.hardware-banner h2:hover {
  transform: rotateY(0) rotateX(0);
}
.workshop-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) ,url(../images/wk-banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.workshop-banner h2 {
  text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
   text-shadow: 0px 2px 15px #7453fc;
}

.workshop-banner h2:hover {
  transform: rotateY(0) rotateX(0);
}



.course-banner {
  
  background-image: url(../images/bg-course.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.course-banner h2 {
  text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
   text-shadow: 0px 2px 15px #7453fc;
}

.course-banner h2:hover {
  transform: rotateY(0) rotateX(0);
}
.create-nft {
  background-image: url(../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 50px 0px;
  position: relative;
}

.create-nft .section-heading .line-dec {
  margin-left: 0%;
  background-color: #fff;
}

.create-nft .section-heading {
  text-align: left;
  margin-bottom: 50px;
}

.create-nft .main-button {
  text-align: right;
}

.create-nft .item {
  margin-top: 25px;
  position: relative;
}

.heading-align{
	display:inline-block;
	
}

.item .icon {
  text-align: center;
  line-height:62px;
  background-color: #fff;
  border-radius: 50%;
}

.create-nft h3{
  font-size: 40px;
  margin-bottom: 15px;
}

.create-nft .item a {
  color: #3CF;
}



/* 
---------------------------------------------
Currently Market Style
--------------------------------------------- 
*/

.currently-market {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px;
  position: relative;
}

.currently-market-item {
  width: 45%;
  margin: 0 auto;
}

.currently-market .section-heading {
  text-align: left;
}

.currently-market .section-heading .line-dec {
  margin-left: 0;
}

.currently-market .filters {
  text-align: right;
}

.currently-market .filters ul li {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .3s;
}

.currently-market .filters ul li:first-child {
  margin-left: 0px;
}


.currently-market .filters ul li.active,
.currently-market .filters ul li:hover {
  background-color: #7453fc;
}

.currently-market .item {
  background-color: #282b2f;
  border: 1px solid #404245;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  margin-bottom: 30px;
}

.currently-market .item .right-content {
  margin-left: 30px;
  width: 100%;
}

.currently-market .item .right-content h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.currently-market .item .right-content span.author {
  display: flex;
  margin-bottom: 25px;
}

.currently-market .item .right-content span.author img {
  margin-right: 15px;
}

.currently-market .item .right-content span.author h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.currently-market .item .right-content span.author a {
  color: #7453fc;
  font-weight: 700;
  margin-top: 5px;
}

.currently-market .item span {
  color: #fff;
  display: inline-block;
  font-size: 15px;
}

.currently-market .item .line-dec {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
  margin-top: 30px;
}

.currently-market .item span strong {
  font-size: 20px;
}

.currently-market .item span.bid {
  line-height: 35px;
}

.currently-market .item span.bid em,
.currently-market .item span.ends em {
  font-style: normal;
}

.currently-market .item span.ends {
  text-align: right;
  float: right;
  line-height: 35px;
}

.currently-market .item .text-button {
  margin-top: 40px;
}

.currently-market .item .text-button a {
  font-size: 15px;
  font-weight: 700;
  color: #7453fc;
  border-bottom: 1px solid #7453fc;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #7453fc;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-top .social-links a:hover {
  background: #7453fc;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 10px;
  color: #7453fc;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #7453fc;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.whatsapp_float {
            position: fixed;
            width: 40px;
            height:40px;
            bottom: 70px;
            right: 13px;
            background-color: white;
            
            border: 1px solid #48df80;
            /* background-color: #48df80;  */
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;

            z-index: 100;
        }

        .whatsapp_float:hover {

            box-shadow: 0px 0px 3px 0px;
        }

        .whatsapp-icon {
            margin-top: 9px;
            color: #48df80;
        }

        .call_float {
            position: fixed;
            width: 40px;
            height: 40px;
            bottom: 130px;
            right: 13px;
            border: 1px solid #1363c6;
            background-color: white;
            /* background-color: #48df80;  */
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;

            z-index: 100;
        }

        .call_float:hover {
            cursor: pointer;
            box-shadow: 0px 0px 3px 0px;
        }

        .call-icon {
            margin-top: 9px;
            margin-left: -1px;
            color: #1363c6;
        }

        /* .call-icon:hover{
	   
	   } */
        /* for mobile */
        @media screen and (max-width: 767px) {
            .whatsapp-icon {
                margin-top: 2px;
            }

            .call_float {
                width: 40px;
                height: 40px;
                bottom: 150px;
                right: 10px;
                font-size: 22px;
            }

            .whatsapp_float {
                width: 40px;
                height: 40px;
                bottom: 100px;
                right: 10px;
                font-size: 22px;
            }
        }
        /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  display: none;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #7453fc;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
 text-decoration: none;}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
}

.back-to-top:hover i {
  color: #7453fc;
}

.back-to-top.active {
  visibility: visible;
  display: block;
  opacity: 1;
}

/* 
---------------------------------------------
Page Heading Style
--------------------------------------------- 
*/

.normal-space {
  padding: 250px 0px 120px 0px !important;
}

.page-heading {
  background-image: url(../images/heading-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 250px;
  text-align: center;
  background-color: #2a2a2a;
}

.page-heading h6 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-heading h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
}

.page-heading span {
  color: #8a75da;
  font-size: 15px;
}

.page-heading span a {
  color: #fff;
}

.page-heading .buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.page-heading .buttons .main-button {
  margin-right: 15px;
}

.page-heading .buttons .border-button {
  margin-left: 15px;
}



/* 
---------------------------------------------
Explore Style
--------------------------------------------- 
*/

.featured-explore {
  margin-top: 60px;
  margin-bottom: -300px;
}

.featured-explore .owl-features {
  min-height: 100%;
}

.featured-explore .item .thumb {
  position: relative;
  overflow: hidden;
  /* height: 700px; */
}

.featured-explore .item .thumb:hover .hover-effect {
  visibility: visible;
  opacity: 1;
  right: 30px;
}

.featured-explore .item .thumb .hover-effect {
  position: absolute;
  right: -100%;
  bottom: 30px;
  margin: 10px;
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid rgba(64, 66, 69, 0.9);
  background-color: rgba(40, 43, 47, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.featured-explore .item .hover-effect .content h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.featured-explore .item .hover-effect .content span.author {
  display: flex;
  margin-bottom: 0px;
}

.featured-explore .item .hover-effect .content span.author img {
  margin-right: 15px;
}

.featured-explore .item .hover-effect .content span.author h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}

.featured-explore .item .hover-effect .content span.author a {
  color: #7453fc;
  font-weight: 700;
  margin-top: 5px;
}

.featured-explore .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-23px);
  text-align: center;
}

.featured-explore .owl-nav .owl-prev {
  position: absolute;
  left: 30px;
}

.featured-explore .owl-nav .owl-next {
  position: absolute;
  right: 30px;
}

.featured-explore .owl-nav .owl-prev span,
.featured-explore .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all .3s;
}

.featured-explore .owl-nav .owl-prev span:hover,
.featured-explore .owl-nav .owl-next span:hover {
  opacity: 1;
}

.discover-items {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 400px 0px 120px 0px;
  position: relative;
}

.discover-items .section-heading {
  text-align: left;
}

.discover-items .section-heading .line-dec {
  margin-left: 0;
}

.discover-items #search-form {
  margin-top: 15px;
}

.discover-items #search-form input,
.discover-items #search-form select {
  width: 100%;
  height: 46px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 23px;
  background-color: transparent;
  padding: 0px 15px;
  font-size: 14px;
  color: #fff;
}

.discover-items #search-form select {
  cursor: pointer;
}

.discover-items #search-form select option {
  background-color: #2a2a2a;
}

.discover-items #search-form input::placeholder,
.discover-items #search-form select::placeholder {
  color: #fff;
}

.discover-items #search-form button {
  font-size: 14px;
  color: #fff;
  background-color: #7453fc;
  border: 1px solid #7453fc;
  height: 46px;
  line-height: 46px;
  text-align: center;
  width: 100%;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.discover-items #search-form button:after {
  width: 78%;
  height: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.discover-items #search-form button:hover {
  background-color: #fff;
  color: #7453fc;
  border: 1px solid #fff;
}

.discover-items .item span.banner {
  font-size: 15px;
  background-color: #7453fc;
  color: #fff;
  font-weight: 500;
  padding: 5px 15px;
  display: inline-block;
  position: absolute;
  border-radius: 16px;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
}

.discover-items .item span.author {
  display: inline-flex;
  width: 100%;
}

.discover-items .item span.author img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.discover-items .item img {
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.discover-items .item h4 {
  font-size: 20px;
  margin-top: 30px;
}

.discover-items .item .line-dec {
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.2);
  margin: 30px 0px;
}

.discover-items .item {
  background-color: #282b2f;
  border: 1px solid #404245;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 52px;
}

.discover-items .item span {
  color: #fff;
  display: inline-block;
  font-size: 15px;
}

.discover-items .item span strong {
  font-size: 20px;
}

.discover-items .item span.category {
  text-align: right;
}

.discover-items .item .main-button {
  margin-top: 20px;
  margin-bottom: -60px;
  text-align: center;
}

.top-seller {
  background-image: url(../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px 90px 0px;
  position: relative;
}

.top-seller .section-heading .line-dec {
  background-color: #fff;
}

.top-seller .item {
  display: flex;
  margin-bottom: 30px;
}

.top-seller .item img {
  margin-right: 15px;
}

.top-seller .item h4 {
  font-size: 20px;
  margin-top: 12px;
  margin-right: 10px;
}

.top-seller .item h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
}

.top-seller .item a {
  font-size: 14px;
  cursor: auto;
  color: #fff;
  font-weight: 400;
  margin-top: 5px;
}


/* 
---------------------------------------------
Details Page Style
--------------------------------------------- 
*/

.item-details-page {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px 120px 0px;
  position: relative;
}

/* .item-details-page:after {
  background-image: url(/assets/images/category-collection-dec.png);
  width: 300px;
  height: 282px;
  position: absolute;
  bottom: 0;
  right: 30px;
  content: '';
  z-index: 1;
} */

.item-details-page .left-image {
  margin-right: 30px;
}

.item-details-page h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.item-details-page span.author {
  display: flex;
  margin-bottom: 30px;
}

.item-details-page span.author img {
  margin-right: 15px;
}

.item-details-page span.author h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.item-details-page span.author a {
  color: #7453fc;
  font-weight: 700;
  margin-top: 5px;
}

.item-details-page p {
  margin-bottom: 30px;
}

.item-details-page span {
  color: #fff;
  display: inline-block;
  font-size: 15px;
}

.item-details-page span strong {
  font-size: 20px;
  color: #7453fc;
}

.item-details-page p {
  position: relative;
  z-index: 2;
}

.item-details-page span.bid,
.item-details-page span.owner,
.item-details-page span.ends  {
  line-height: 35px;
  position: relative;
  z-index: 2;
}

.item-details-page span.bid em,
.item-details-page span.ends em,
.item-details-page span.owner em {
  font-style: normal;
  color: #afafaf;
}

.item-details-page form {
  margin-top: 40px;
}


.item-details-page form label {
  color: #afafaf;
  font-size: 15px;
  font-weight: 500;
  margin-right: 10px;
}

.item-details-page form input {
  width: 100px;
  height: 46px;
  border: 1px solid #7453fc;
  outline: none;
  border-radius: 23px;
  background-color: transparent;
  color: #fff;
  text-align: center;
  margin-right: 15px;
}

.item-details-page form input::placeholder {
  color: #fff;
}

.item-details-page button {
  font-size: 14px;
  color: #fff;
  background-color: #7453fc;
  border: 1px solid #7453fc;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.item-details-page button:after {
  width: 50%;
  height: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.item-details-page button:hover {
  background-color: #fff;
  color: #7453fc;
  border: 1px solid #fff;
}

.current-bid {
  margin-top: 120px;
}

.current-bid select {
  float: right;
  width: 150px;
  background-color: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border: none;
  outline: none;
  cursor: pointer;
}

.current-bid .mini-heading h4 {
  background-color: #7453fc;
  display: inline-block;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 22px;
}

.current-bid .item {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background-color: #282b2f;
  border: 1px solid #404245;
}

.current-bid .item .left-img {
  flex-basis: 80%;
  display: inline-flex;
}

.current-bid .item .right-content {
  padding: 30px;
  width: 100%;
}

.current-bid .item .right-content h4 {
  font-size: 20px;
  margin-bottom: 0px;
}

.current-bid .item .right-content a {
  font-size: 15px;
  color: #7453fc;
  font-weight: 700;
}

.current-bid .item .right-content .line-dec {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 25px 0px;
}

.current-bid .item .right-content h6 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
}

.current-bid .item .right-content h6 em {
  font-size: 18px;
  color: #7453fc;
  font-style: normal;
  font-weight: 700;
}

.current-bid .item .right-content span.date {
  font-size: 15px;
  color: #7453fc;
}


/* 
---------------------------------------------
Author Page Style
--------------------------------------------- 
*/

.author-page {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px 120px 0px;
  position: relative;
}

.author-page .author {
  display: flex;
}

.author-page .author h4 {
  margin-top: 60px;
  font-size: 20px;
  margin-left: 30px;
}

.author-page .author h4 a {
  font-size: 15px;
  color: #7453fc;
}

.author-page .right-info {
  background-color: #282b2f;
  border: 1px solid #404245;
  padding: 20px 30px;
  border-radius: 20px;
  margin-left: 100px;
}

.author-page .right-info .info-item {
  margin-bottom: 20px;
}

.author-page .right-info i {
  color: #7453fc;
  font-size: 22px;
}

.author-page .right-info h6 {
  font-size: 20px;
  color: #7453fc;
  margin-top: 4px;
}

.author-page .right-info h6 em {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
}

.author-page .right-info h5 {
  font-size: 20px;
  color: #afafaf;
  margin-top: 10px;
}

.author-page .right-info .main-button a {
  width: 100%;
  text-align: center;
}

.author-page .section-heading {
  margin-top: 80px;
  text-align: left;
}

.author-page .section-heading .line-dec {
  margin-left: 0;
}

.author-page .item span.author {
  display: inline-flex;
  width: 100%;
}

.author-page .item span.author img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.author-page .item img {
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.author-page .item h4 {
  font-size: 20px;
  margin-top: 30px;
}

.author-page .item .line-dec {
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.2);
  margin: 30px 0px;
}

.author-page .item {
  background-color: #282b2f;
  border: 1px solid #404245;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 52px;
}

.author-page .item span {
  color: #fff;
  display: inline-block;
  font-size: 15px;
}

.author-page .item span strong {
  font-size: 20px;
}

.author-page .item span.category {
  text-align: right;
}

.author-page .item .main-button {
  margin-top: 20px;
  margin-bottom: -60px;
  text-align: center;
}


/* 
---------------------------------------------
Create Page Style
--------------------------------------------- 
*/

#contact {
  background-color: #37393c;
  border-radius: 20px;
  padding: 60px 30px;
  margin-bottom: 120px;
}

#contact input {
  width: 100%;
  height: 46px;
  text-align: left;
  padding: 0px 15px;
  background-color: #282b2f;
  border: 1px solid #404245;
  margin-bottom: 10px;
  font-weight: 500;
  color: #afafaf;
}

#contact input::placeholder {
  color: #afafaf;
}

#contact textarea {
  width: 100%;
  height: 90px;
  text-align: left;
  padding: 0px 15px;
  background-color: #282b2f;
  border: 1px solid #404245;
  margin-bottom: 10px;
  font-weight: 500;
  color: #afafaf;
  border-radius: 20px;
  /* border: none; */
}
#contact textarea:focus{
    border: none;
    outline: none;
}

#contact textarea::placeholder {
  color: #afafaf;
}

#contact label {
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}

#contact input#file {
  padding: 8px 0px;
  background-color: transparent;
  border: none;
  border-radius: 0px;
}

#contact button {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

#contact .error{
  padding: 0px 50px 0px 20px;
  color: rgb(250, 65, 65);
}



/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .top-seller .item {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .main-banner .owl-banner {
    margin-top: 80px;
  }
  .categories .item {
    margin-bottom: 35px;
  }
  .create-nft .section-heading,
  .currently-market .section-heading {
    text-align: center;
  }
  .currently-market-item {
    width: 100%;
  }
  .create-nft .section-heading .line-dec,
  .currently-market .section-heading .line-dec {
    margin: 0 auto;
  }
  .create-nft .main-button,
  .currently-market .filters {
    text-align: center;
  }
  .currently-market .filters {
    margin-bottom: 30px;
    margin-top: -30px;
  }
  .create-nft p {
    margin-right: 0px;
  }
  .create-nft .first-item:after,
  .create-nft .second-item:after,
  .create-nft .first-item .number,
  .create-nft .second-item .number {
    display: none;
  }
  .create-nft .item {
    text-align: center;
    margin-top: 45px;
  }
  .discover-items #search-form {
    margin-bottom: 40px;
    margin-top: -30px;
  }
  .discover-items #search-form fieldset {
    margin-bottom: 30px;
  }
  .top-seller .item h6 {
    font-size: 16px;
  }
  .item-details-page .left-image {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .current-bid select {
    float: none;
  }
  .author-page .author {
    justify-content: center;
  }
  .author-page .right-info {
    margin-left: 0px;
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  
}


.categories-collections:after {
  background-image: url(/assets/images/category-collection-dec.png);
  width: 300px;
  height: 282px;
  position: absolute;
  bottom: 0;
  right: 30px;
  content: '';
}

.categories .item {
  background-color: #282b2f;
  text-align: center;
  padding: 25px 15px 25px 15px;
  border-radius: 20px;
  border: 1px solid #404245;
  position: relative;
}

.categories .item .icon {
	color:#7453fc;
  width: 62px;
  height: 62px;
  display: inline-block;
  text-align: center;
  line-height: 62px;
  background-color: #fff;
  border-radius: 50%;
}

.categories .item .icon img {
  max-width: 31px;
}

.categories .item h5 {
  margin-top: 15px;
  font-size:15px;
}
.create-nft .first-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: rgba(255, 255, 255, 0.2);
  content: '';
  right: 5px;
  top: 5%;
}
.create-nft .second-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: rgba(255, 255, 255, 0.2);
  content: '';
  right: 5px;
  top: 5%;
}

.item .icon {
  color:#7453fc;
  width: 62px;
  height: 62px;
  display: inline-block;
  text-align: center;
  line-height: 62px;
  background-color: #fff;
  border-radius: 50%;
}

/*
------------------------------
	R&D project
----------------------------
*/

	.randd-project {
    background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/r_and_d.jpg);

  /* background-image: url(../images/r_and_d.jpeg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.randd-project h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.randd-project h1:hover {
  transform: rotateY(0) rotateX(0);
}

.randd-project .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.randd-project .border-button {
  margin-right: 15px;
}

.randd-project .owl-banner {
  margin-top: -40px;
}

.randd-project .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.randd-project .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.randd-project .owl-nav .owl-next {
  margin-left: 7.5px;
}

.randd-project .owl-nav .owl-prev span,
.randd-project .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.randd-project .owl-nav .owl-prev span:hover,
.randd-project .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .randd-project .owl-banner {
    margin-top: 80px;
  }
}

.randd-project .services{
  box-sizing: content-box;
  text-align: center;
  min-height: 100px;
}


.randd-project .services h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: black;
}

.randd-project .services h4 {
  font-size: 14px;
  color: black;
  margin: 0;
}

.randd-project .services h5 {
  font-size:20px;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background-color: #7453fc;
  position: relative;
  margin-bottom: 35px;
  border-radius: 45px;
  box-shadow: 0px 2px 15px #7453fc;
}

/* ------------------------ 
  nav bar 
----------------------*/


.nav .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  /* width: 100%; */
}

.nav .dropdown ul li {
  min-width: 200px;
}

.nav .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.nav .dropdown ul a i {
  font-size: 12px;
}

.nav .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.nav .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .nav .dropdown .dropdown ul {
    left: -90%;
  }

  .nav .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.main-nav .nav li ul li a{
    background: #fff !important;
    color: #7453fc!important;
    text-align: center !important;
  }

  .main-nav .nav li ul li a:hover{
    background: #fff !important;
    color: #151515!important;
    text-align: center !important;
  }


.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

@media (max-width: 992px){
 .main-nav .nav li ul li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .main-nav .nav li ul li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #fff !important;
    color: #1e1e1e !important;
  }
  .main-nav .nav li ul li a:hover {
    background: #fff !important;
    color: #7453fc!important;
  }

  .nav .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  left: 0px !important;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  width: 100%;
}
}


/*
------------------------------
	contact 
----------------------------
*/

.contact {
  background-image: linear-gradient(rgba(158, 3, 248, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/contact.jpg);
  /* background-image: url(../images/contact.jpg); */
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.contact h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.contact h1:hover {
  transform: rotateY(0) rotateX(0);
}

.contact .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.contact .border-button {
  margin-right: 15px;
}

.contact .owl-banner {
  margin-top: -40px;
}

.contact .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.contact .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.contact .owl-nav .owl-next {
  margin-left: 7.5px;
}

.contact .owl-nav .owl-prev span,
.contact .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.contact .owl-nav .owl-prev span:hover,
.contact .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .contact .owl-banner {
    margin-top: 80px;
  }
}

.contact .services{
  box-sizing: content-box;
  text-align: center;
  min-height: 100px;
}


.contact .services h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: black;
}

.contact .services h4 {
  font-size: 14px;
  color: black;
  margin: 0;
}

.contact .services h5 {
  font-size:20px;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background-color: #7453fc;
  position: relative;
  margin-bottom: 35px;
  border-radius: 45px;
  box-shadow: 0px 2px 15px #7453fc;
}

.popup{
  width: 400px;
  background: #fff;    
  border-radius: 6px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1);
  text-align: center;
  padding: 0 30px 30px;
  transition: transform 0.4s, top 0.4s;
}
.open-popup{
  visibility: hidden;
  top: 0;
  transform: translate(-50%,-50%) scale(0.1);
}

.popup p{
  color: #333;
}

.popup h2{
  color: #333;
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
}
.popup img{
  width: 100px;
  margin-top: -50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.popup button{
  width: 100%;
  margin-top:50px ;
  padding: 10px 0;
  background : #7453fc;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

/* -----------------------------------
    Registration  
---------------------------------*/


.reg {
  background-image: linear-gradient(rgba(158, 3, 248, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/robotics-stocks.png);
  /* background-image: url(../images/contact.jpg); */
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.reg h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.reg h1:hover {
  transform: rotateY(0) rotateX(0);
}

.reg .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.reg .border-button {
  margin-right: 15px;
}

.reg .owl-banner {
  margin-top: -40px;
}

.reg .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.reg .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.reg .owl-nav .owl-next {
  margin-left: 7.5px;
}

.reg .owl-nav .owl-prev span,
.reg .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.reg .owl-nav .owl-prev span:hover,
.reg .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .reg .owl-banner {
    margin-top: 80px;
  }
}

#reg_form {
  background-color: #37393c;
  border-radius: 20px;
  padding: 60px 30px;
  margin-bottom: 120px;
}

#reg_form input {
  width: 100%;
  height: 46px;
  text-align: left;
  padding: 0px 15px;
  background-color: #282b2f;
  border: 1px solid #404245;
  margin-bottom: 10px;
  font-weight: 500;
  color: #afafaf;
}

#reg_form input::placeholder {
  color: #afafaf;
}

#reg_form textarea {
  width: 100%;
  height: 90px;
  text-align: left;
  padding: 0px 15px;
  background-color: #282b2f;
  border: 1px solid #404245;
  margin-bottom: 10px;
  font-weight: 500;
  color: #afafaf;
  border-radius: 20px;
  /* border: none; */
}

#reg_form select {
  width: 100%;
  height: 46px;
  text-align: left;
  padding: 0px 15px;
  background-color: #282b2f;
  border: 1px solid #404245;
  margin-bottom: 10px;
  font-weight: 500;
  color: #afafaf;
  border-radius: 20px;
  /* border: none; */
}

#reg_form textarea:focus{
    border: none;
    outline: none;
}

#reg_form textarea::placeholder {
  color: #afafaf;
}

#reg_form label {
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}

#reg_form input#file {
  padding: 8px 0px;
  background-color: transparent;
  border: none;
  border-radius: 0px;
}

#reg_form button {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

#reg_form .error{
  padding: 0px 50px 0px 20px;
  color: rgb(250, 65, 65);
}


/* -----------------------------------
    FAQ  
---------------------------------*/

.faq {
  background-image: linear-gradient(rgba(158, 3, 248, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/fa.jpg);
  /* background-image: url(../images/contact.jpg); */
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.faq h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.faq h1:hover {
  transform: rotateY(0) rotateX(0);
}

.faq .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.faq .border-button {
  margin-right: 15px;
}

.faq .owl-banner {
  margin-top: -40px;
}

.faq .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.faq .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.faq .owl-nav .owl-next {
  margin-left: 7.5px;
}

.faq .owl-nav .owl-prev span,
.faq .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.faq .owl-nav .owl-prev span:hover,
.faq .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .faq .owl-banner {
    margin-top: 80px;
  }
}

#faq_page .questions-container{
  max-width: 800px;
  margin: 0 auto;
}


#faq_page .question button{
  width: 100%;
  background-color: #7453fc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  border:none;
  outline: none;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
#faq_page .question p{
  font-size: 15px;
  max-height: 0;
  margin-top: 10px;
  justify-content: center;
  opacity: 0;
  line-height: 1.5;
  overflow: hidden;
  transition: all 0.6s ease;
  font-weight: 100;
}
#faq_page .question b{
  /* font-size: 20px; */
  font-weight: 900;
}
#faq_page .d-arrow{
  transition: transform 0.5s ease-in ;
  color: #fff;
}

/*add this class when click*/
#faq_page .question p.show{
  max-height: 200px; 
  opacity: 1;
  padding:0px 15px 30px 15px;
}
#faq_page .question button .d-arrow.rotate{
  transform: rotate(180deg);
}


/* -----------------------------------
    About  
---------------------------------*/

.about {
  background-image: linear-gradient(rgba(158, 3, 248, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/abt-banner.jpg);
  /* background-image: url(../images/contact.jpg); */
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.about h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.about h1:hover {
  transform: rotateY(0) rotateX(0);
}

.about .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.about .border-button {
  margin-right: 15px;
}

.about .owl-banner {
  margin-top: -40px;
}

.about .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.about .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.about .owl-nav .owl-next {
  margin-left: 7.5px;
}

.about .owl-nav .owl-prev span,
.about .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.about .owl-nav .owl-prev span:hover,
.about .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .about .owl-banner {
    margin-top: 80px;
  }
}

.timeline-times{
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.timeline-times::before{
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: #0c0c0c;
  left: calc(50% - 1px);
}
.timeline-time{
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.timeline-time:last-child{
  margin-bottom: 0;
}
.timeline-time:nth-child(odd){
  padding-right: calc(50% + 30px);
}

.timeline-time:nth-child(even){
  padding-left: calc(50% + 30px);
}
.timeline-content{
  background-color: #0c0c0c;
  padding: 30px;
  border-radius: 5px;
}

.timeline-dot{
  height: 16px;
  width: 16px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 8px);
  border-radius: 50%;
  top: 10px;
} 

@media(max-width:767px){
  .timeline-times::before{
    left: 18px;
  }
  .timeline-time:nth-child(odd){
    padding-right: 0;
  }
  .timeline-time:nth-child(odd),
  .timeline-time:nth-child(even){
    padding-left: 37px;
  }
  .timeline-dot{
    left: 0;
  }
}

.left-container-arrow{
height: 0;
width: 0;
position: absolute;
top: 28px;
z-index: 1;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 15px solid #0c0c0c;
right: calc(50% - (-15px));
}

.right-container-arrow{
height: 0;
width: 0;
position: absolute;
top: 28px;
z-index: 1;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-right: 15px solid #0c0c0c;
left: calc(50% - (-15px));
}

.create-nft1 {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 50px 0px;
  position: relative;
}

.create-nft1 .section-heading .line-dec {
  margin-left: 0%;
  background-color: #fff;
}

.create-nft1 .section-heading {
  text-align: left;
  margin-bottom: 50px;
}

.create-nft1 .main-button {
  text-align: right;
}

.create-nft1 .item {
  margin-top: 25px;
  position: relative;
}
/* ----------------------

        team
--------------------------*/

/* #team  */

#team .blob_image_1{
  background-image: url(../images/programm.jpg);
  width: 380px;
  height: 380px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

#team .blob_image_2{
  background-image: url(../images/IOT_image.jpg);
  width: 380px;
  height: 380px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

#team .blob_image_3{
  background-image: url(../images/data.jpg);
  width: 380px;
  height: 380px;
  background-size: cover;
  -webkit-background-position: center;
  background-position: center center;
  margin: 20px;
  box-shadow: 0 5px 5px 5px rgba(17, 17, 17, 0.596);
  animation: animate 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
}

@keyframes animate {
  0%, 100%{
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50%{
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/*-----------------------
    login
------------------------*/

.login {
  background-image: linear-gradient(rgba(158, 3, 248, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/login.png);
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.login h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.login h1:hover {
  transform: rotateY(0) rotateX(0);
}

.login .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.login .border-button {
  margin-right: 15px;
}

.login .owl-banner {
  margin-top: -40px;
}

.login .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.login .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.login .owl-nav .owl-next {
  margin-left: 7.5px;
}

.login .owl-nav .owl-prev span,
.login .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.login .owl-nav .owl-prev span:hover,
.login .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .login .owl-banner {
    margin-top: 80px;
  }
}

/* -------------------------
    quiz
----------------------------*/

.quiz {
  background-image: linear-gradient(rgba(158, 3, 248, 0.527),rgba(0, 0, 0, 0.5)) , url(../images/quiz-banner.jpg);
  /* background-image: url(../images/contact.jpg); */
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
}


.quiz h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.quiz h1:hover {
  transform: rotateY(0) rotateX(0);
}

.quiz .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.quiz .border-button {
  margin-right: 15px;
}

.quiz .owl-banner {
  margin-top: -40px;
}

.quiz .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.quiz .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.quiz .owl-nav .owl-next {
  margin-left: 7.5px;
}

.quiz .owl-nav .owl-prev span,
.quiz .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.quiz .owl-nav .owl-prev span:hover,
.quiz .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .contact .owl-banner {
    margin-top: 80px;
  }
}


.container_form form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.container_form label {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.375em;
}

.container_form  label input {
  position: absolute;
  left: -9999px;
}

.container_form label input:checked + span {
  background-color: #414181;
  color: white;
}

.container_form label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #00005c;
}

.container_form label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
  color: #6666da;
}

.container_form label span:hover {
  background-color: #d6d6e5;
}

.container_form label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #00005c;
}


#index_page .categories-collections {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 300px 0px 150px 0px;
  position: relative;
}


        /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
  margin: 20px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0;
  margin: 0;
  padding: 15px 0px;
}

#header .logo {
  width:200px;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #7453fc;
}

#header .logo img {
  max-height: 40px;
}

/*
------------------------------
	purchase
----------------------------
*/

.purchase-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)) ,url(../images/purchase.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: #2a2a2a;
  height: 100vh;
}


.purchase-banner h1 {
	text-align:center;
  color: #fff;
  font-size: 85px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
  transform: rotateY(25deg) rotateX(25deg);
  transform-origin: center;
  transition: transform 0.5s;
  text-shadow: 0px 2px 15px #7453fc;
}

.purchase-banner h1:hover {
  transform: rotateY(0) rotateX(0);
}

.purchase-banner .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.purchase-banner .border-button {
  margin-right: 15px;
}

.purchase-banner .owl-banner {
  margin-top: -40px;
}

.purchase-banner .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.purchase-banner .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.purchase-banner .owl-nav .owl-next {
  margin-left: 7.5px;
}

.purchase-banner .owl-nav .owl-prev span,
.purchase-banner .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: #7453fc;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.purchase-banner .owl-nav .owl-prev span:hover,
.purchase-banner .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .purchase-banner .owl-banner {
    margin-top: 80px;
  }
}


