/* ----------------------------------------------------------------

== Table Of Content

    |--- BASE

        |- typography
        |- helper classes

    |--- SHORTCODES
        |- extra
        |- overlay
        |- buttons
        |- navbar
        |- intro
        |- blog
        |- footers

    |--- BASE

        |- responsive
	


---------------------------------------------------------------- */
/* ====================== [ Start Typography  ] ====================== */

@import "/css/bootstrap.min.css";
@import "/css/animate.css";
@import "/css/font-awesome.min.css";
@import "/css/ionicons.min.css";
@import "/css/pe-icon.min.css";
@import "/css/font-awesome.min.css";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  background-color: #000;
}

img {
  width: 100%;
  height: auto;
}

span,
a,
a:hover {
  display: inline-block;
  color: inherit;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
  padding-bottom: 5px;
}

p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  margin: 0;
}

a,
span {
  display: inline-block;
}

a:hover,
span:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
}

.container-navbar {
  max-width: 1200px;
}

.custom-font {
  font-family: "Poppins", sans-serif;
}

.color-font {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12c2e9),
    color-stop(#c471ed),
    to(#f64f59)
  );
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-font-black {
  color: #fff;
}

.spacePadding {
  padding: 5px 0px 5px 0px;
}

.back-color {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12c2e9),
    color-stop(#c471ed),
    to(#f64f59)
  );
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
}

.line {
  position: absolute;
  height: 1px;
  width: 65%;
  background: #111;
}

.line.top {
  top: 0;
}

.line.bottom {
  bottom: 0;
}

.line.left {
  left: 0;
}

.line.right {
  right: 0;
}

/* ====================== [ End Typography  ] ====================== */
/* ====================== [ Start Helper Classes  ] ====================== */
.o-hidden {
  overflow: hidden;
}

.position-re {
  position: relative;
}

.ontop {
  position: relative;
  z-index: 7;
}

.full-over {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.full-width {
  width: 100% !important;
}

.main-color {
  color: #12c2e9 !important;
}

.bg-gray {
  background-color: #f8f4f3;
}

.bg-gray .primery-shadow {
  -webkit-box-shadow: 0px 4px 30px -4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 30px -4px rgba(0, 0, 0, 0.2);
}

.bg-dark {
  background-color: #141414 !important;
}

.bg-dark .primery-shadow {
  -webkit-box-shadow: 0px 4px 40px -4px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 40px -4px rgba(255, 255, 255, 0.2);
}

.bg-color {
  background-color: #12c2e9 !important;
}

.bg-color .primery-shadow {
  -webkit-box-shadow: 0px 4px 40px -4px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 40px -4px rgba(255, 255, 255, 0.2);
}

.sub-bg {
  background: #f5f5f5;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-center {
  background-position: center center;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-repeat {
  background-size: auto;
  background-repeat: repeat;
}

.section-padding {
  min-height: 100vh;
  padding: 150px 0px 100px 0px;
}

.section-padding-collection {
  min-height: 100vh;
  padding: 80px 0px 100px 0px;
  background-color: #000;
}

#nft-collection-title {
  color: #fff;
}

.section-ptb {
  padding: 80px 0;
}

.cmd-padding {
  padding: 0 10px;
}

.csm-padding {
  padding: 0 5px;
}

.head-pt {
  padding: 80px 0 0;
}

.head-pb {
  padding: 0 0 80px;
}

.rounded {
  border-radius: 5px;
}

#titleSize {
  font-size: 41px;
}

#aboutTitle {
  font-weight: 300;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-bottom: 7px;
}

#team-padding-profil {
  padding-top: 50px;
}

.circle {
  border-radius: 50%;
}

.unlist {
  list-style: none;
}

.undecro:hover {
  text-decoration: none;
}

.inline {
  display: inline-block;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-img {
  border-radius: 10px;
}

.primery-shadow {
  -webkit-box-shadow: 0px 8px 30px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 30px -4px rgba(0, 0, 0, 0.1);
}

.padding5 {
  padding-right: 5%;
  padding-left: 5%;
}

/*-------------------------------------------------------
					 text color
-------------------------------------------------------*/
.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-extra-light-gray {
  color: #b7b7b7;
}

/*-------------------------------------------------------
					font-weight
-------------------------------------------------------*/
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/*-------------------------------------------------------
					 font-size
-------------------------------------------------------*/
.fz-10 {
  font-size: 10px !important;
}

.fz-12 {
  font-size: 12px !important;
}

.fz-14 {
  font-size: 14px !important;
}

.fz-15 {
  font-size: 15px !important;
}

.fz-16 {
  font-size: 16px !important;
}

.fz-18 {
  font-size: 18px !important;
}

.fz-20 {
  font-size: 20px !important;
}

.fz-22 {
  font-size: 22px !important;
}

.fz-25 {
  font-size: 25px !important;
}

.fz-30 {
  font-size: 30px !important;
}

.fz-40 {
  font-size: 40px !important;
}

.fz-50 {
  font-size: 50px !important;
}

/*-------------------------------------------------------
					line-height
-------------------------------------------------------*/
.line-height-10 {
  line-height: 10px;
}

.line-height-13 {
  line-height: 13px;
}

.line-height-18 {
  line-height: 18px;
}

.line-height-20 {
  line-height: 20px;
}

.line-height-24 {
  line-height: 24px;
}

.line-height-22 {
  line-height: 22px;
}

.line-height-26 {
  line-height: 26px;
}

.line-height-28 {
  line-height: 28px;
}

.line-height-30 {
  line-height: 30px;
}

.line-height-35 {
  line-height: 35px;
}

.line-height-40 {
  line-height: 40px;
}

.line-height-45 {
  line-height: 45px;
}

.line-height-50 {
  line-height: 50px;
}

.line-height-55 {
  line-height: 55px;
}

.line-height-60 {
  line-height: 60px;
}

.line-height-65 {
  line-height: 65px;
}

.line-height-70 {
  line-height: 70px;
}

.line-height-75 {
  line-height: 75px;
}

.line-height-80 {
  line-height: 80px;
}

.line-height-85 {
  line-height: 85px;
}

.line-height-90 {
  line-height: 90px;
}

.line-height-95 {
  line-height: 95px;
}

.line-height-100 {
  line-height: 100px;
}

.line-height-110 {
  line-height: 110px;
}

.line-height-120 {
  line-height: 120px;
}

/*-------------------------------------------------------
					text-transform
-------------------------------------------------------*/
.text-u {
  text-transform: uppercase !important;
}

.text-l {
  text-transform: lowercase !important;
}

.text-c {
  text-transform: capitalize !important;
}

.text-non {
  text-transform: none !important;
}

.text-i {
  font-style: italic;
}

/*-------------------------------------------------------
					 letter-spacing
-------------------------------------------------------*/
.ls0 {
  letter-spacing: 0px !important;
}

.ls1 {
  letter-spacing: 1px !important;
}

.ls2 {
  letter-spacing: 2px !important;
}

.ls3 {
  letter-spacing: 3px !important;
}

.ls4 {
  letter-spacing: 4px !important;
}

.ls5 {
  letter-spacing: 5px !important;
}

.ls10 {
  letter-spacing: 10px !important;
}

/*-------------------------------------------------------
			 margin-top  (0/100) +5
-------------------------------------------------------*/
.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-62 {
  margin-top: 62px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/*-------------------------------------------------------
			 margin-bottom  (0/100) +5
-------------------------------------------------------*/
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 5px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-62 {
  margin-bottom: 62px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/*-------------------------------------------------------
			padding-top  (0/100) +5
-------------------------------------------------------*/
.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

/*-------------------------------------------------------
		 padding-bottom  (0/100) +5
-------------------------------------------------------*/
.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.no-padding {
  padding: 0 !important;
}

/* ====================== [ End Helper Classes  ] ====================== */
/* ====================== [ Start Preloader ] ====================== */
.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.pace .pace-progress {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #12c2e9;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12c2e9),
    color-stop(#c471ed),
    to(#f64f59)
  );
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
}

.pace.pace-inactive {
  width: 100vw;
  opacity: 0;
}

.pace.pace-inactive .pace-progress {
  max-width: 100vw;
}

#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
}

#preloader:after,
#preloader:before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: #252531;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
  top: 0;
}

#preloader:after {
  bottom: 0;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone:after,
#preloader.isdone:before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.loading {
  color: #fff;
  position: fixed;
  left: 50%;
  top: calc(50% - 40px);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 10px;
  z-index: 9999999999;
}

.loading.isdone {
  top: 50%;
  opacity: 0;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.loading span {
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate;
}

.loading span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.loading span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ====================== [ End Preloader ] ====================== */
/* ====================== [ Start Text Animation & Images ] ====================== */
.splitting.animated .char {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splitting .whitespace {
  width: 5px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.splitting.txt.animated .char {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

.splitting.txt .whitespace {
  width: 5px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.imago {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.imago.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ====================== [ End Text Animation & Images ] ====================== */

/* ====================== [ Start progress-wrap ] ====================== */
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  text-align: center;
  line-height: 44px;
  font-size: 13px;
  font-weight: 900;
  color: #12c2e9;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #12c2e9;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* ====================== [ End progress-wrap ] ====================== */
/* ====================== [ Start animate headline ] ====================== */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
}

/* ====================== [ End animate headline ] ====================== */

/* ====================== [ Start Heading ] ====================== */
.sec-head {
  position: relative;
  margin: 0 auto 40px;
}

.sec-head h6 {
  font-weight: 300;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-bottom: 10px;
}

.sec-head h3 {
  font-size: 48px;
  font-weight: 600;
}

.sec-head h2 {
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sub-title {
  position: relative;
  margin-bottom: 20px;
}

.sub-title h4 {
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12c2e9),
    color-stop(#c471ed),
    to(#f64f59)
  );
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(
    to right,
    #12c2e9,
    #c471ed,
    #f64f59,
    #febf01,
    #2ac4ea,
    #20bf55
  );
  padding: 7px 12px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.sub-title h6 {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 8px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12c2e9),
    color-stop(#c471ed),
    to(#f64f59)
  );
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(
    to right,
    #12c2e9,
    #c471ed,
    #f64f59,
    #febf01,
    #2ac4ea,
    #20bf55
  );
  padding: 7px 12px;
  border-radius: 10px;
}

.main-title {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}

.extra-title {
  font-weight: 700;
  line-height: 40px;
}

.JessicaImgTalk {
  max-width: 432px;
}

.JessicaImgWalk {
  max-width: 605px;
}

.img.centered {
  text-align: center;
}

.imageText-padding {
  padding: 20px 0px;
}

.sm-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.smore {
  position: relative;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 7px;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px;
}

.smore:after {
  content: "";
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  position: absolute;
  left: 0;
  top: 0;
}

.smore i {
  margin-left: 10px;
}

.line-v {
  position: absolute;
  height: 80px;
  width: 1px;
  background: #c5a47e;
  left: 50%;
  opacity: 0.3;
}

.line-v.top {
  top: -30px;
}

.line-v.bottom {
  bottom: -30px;
}

/* ====================== [ End Heading ] ====================== */
/* ====================== [  Start Button Style ] ====================== */
.butn {
  padding: 12px 20px;
  font-size: 13px;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.butn:hover .char {
  -webkit-animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.butn.bord {
  border: 1px solid #fff;
}

.butn.bord:hover {
  background: #111;
  color: #fff;
}

.butn.light {
  background: #fff;
  color: #333;
}

.butn.light:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.butn.dark {
  background: #222;
  color: #fff;
}

.butn.dark:hover {
  background: transparent;
  border-color: #222;
  color: #333;
}

.butn.color {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12c2e9),
    color-stop(#c471ed),
    to(#f64f59)
  );
  background: -webkit-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #12c2e9, #c471ed, #f64f59);
  background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  border: transparent;
}

.butn.color:hover {
  background: #fff;
  color: #111;
}

.butn.curve.white {
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.1px;
  border: 1px solid #fff;
}

.butn.curve.white:hover {
  background: #000;
  color: #fff;
}

.butn.radius {
  border-radius: 30px;
}

[data-overlay-dark] .butn.bord {
  border-color: #fff;
}

[data-overlay-dark] .butn.bord:hover {
  background: #fff;
}

[data-overlay-dark] .butn.bord:hover span {
  color: #111;
}

.simple-btn {
  position: relative;
  padding: 7px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 300;
}

.simple-btn:after {
  content: "";
  width: 45%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 0;
}

.simple-btn.right:after {
  left: auto;
  right: 0;
}

/* ====================== [ End Button Style ] ====================== */
/* ====================== [ Start navbar ] ====================== */
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  border-bottom: 2px solid transparent;
  z-index: 999;
  min-height: 108px;
}

.navbar .icon-bar {
  color: #fff;
  z-index: 1000;
}

.navbar.light .navbar-nav .nav-link {
  background: #fff;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s;
  margin: 0px;
  cursor: pointer;
}

.navbar.light .navbar-nav .nav-link:hover {
  color: darkorchid;
}

.navbar .navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  padding: 15px 7px;
  margin: 10px 5px;
}

.navbar .navbar-nav .dropdown-menu {
  padding: 10px 0;
  border: 0;
  -webkit-box-shadow: 0px 10px 40px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 40px -4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .dropdown-item {
  font-size: 13px;
  padding: 10px 20px;
  opacity: 0.9;
}

.navbar .navbar-nav .dropdown-item:hover {
  background: transparent;
  color: #12c2e9;
}

.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  color: #111;
  background: #f5f5f5;
  min-width: 185px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.navbar .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  padding: 10px 25px;
  position: relative;
}

.navbar .dropdown-menu .dropdown-item:after {
  content: "";
  width: 0px;
  height: 1px;
  background: #12c2e9;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.navbar .dropdown-menu .dropdown-item:hover {
  padding-left: 30px;
}

.navbar .dropdown-menu .dropdown-item:hover:after {
  width: 10px;
}

.navbar .search {
  color: #fff;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .search .icon {
  cursor: pointer;
}

.navbar .search .search-form {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(37, 37, 49, 0.98);
  display: none;
}

.navbar .search .search-form form {
  width: 600px;
  position: absolute;
  left: calc(50% - 300px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navbar .search .search-form form input {
  padding: 15px 0;
  font-size: 80px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #12c2e9;
}

.navbar .search .search-form .close {
  position: absolute;
  top: 20%;
  right: 20%;
  color: #fff;
  font-size: 60px;
  opacity: 1;
  cursor: pointer;
}

.navbar .logo {
  width: 89px;
}

.nav-scroll {
  background: #000;
  border-color: #000;
  padding: 0;
  position: fixed;
  top: -80px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
}

.nav-scroll .navbar-nav .nav-link {
  color: #111;
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  padding: 30px 0;
  color: #fff;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.topnav.light {
  color: #111;
}

.topnav.light .text:after {
  color: #111;
}

.topnav.light .icon i {
  background: #111 !important;
}

.topnav .container,
.topnav .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topnav .container-fluid {
  padding: 0 50px;
}

.topnav .logo {
  width: 50px;
}

.topnav .menu-icon {
  margin-left: auto;
  cursor: pointer;
}

.topnav .menu-icon:hover .text .char {
  -webkit-animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.topnav .menu-icon .text {
  font-size: 13px;
  font-weight: 500;
  padding-left: 15px;
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.topnav .menu-icon .text:after {
  content: "close";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 15px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.topnav .menu-icon .text .word {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.topnav .menu-icon .text.open .word {
  opacity: 0;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.topnav .menu-icon .text.open:after {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.topnav .menu-icon .icon {
  display: table-cell;
}

.topnav .menu-icon .icon i {
  display: block;
  width: 20px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

.hamenu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #eee;
  padding: 120px 30px 30px;
  overflow: hidden;
  z-index: 9999;
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}

.hamenu.open .menu-links .main-menu > li .link {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.hamenu.open .cont-info:after {
  height: 100vh;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.hamenu.open .cont-info .item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.hamenu .menu-links {
  margin-top: 30px;
}

.hamenu .menu-links .o-hidden {
  display: inline-block;
}

.hamenu .menu-links .main-menu {
  position: relative;
  z-index: 2;
}

.hamenu .menu-links .main-menu.gosub > li {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.2s !important;
  -o-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.hamenu .menu-links .main-menu.gosub > li .link {
  -webkit-transform: translateY(45px) !important;
  -ms-transform: translateY(45px) !important;
  transform: translateY(45px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  -webkit-transition-delay: 0.2s !important;
  -o-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.hamenu .menu-links .main-menu.gosub .sub-menu.sub-open {
  z-index: 3 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hamenu .menu-links .main-menu > li {
  font-size: 30px;
  font-weight: 600;
  padding: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.hamenu .menu-links .main-menu > li span.nm {
  opacity: 0.8;
  font-size: 11px;
  margin-right: 10px;
}

.hamenu .menu-links .main-menu > li .link {
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  cursor: pointer;
}

.hamenu .menu-links .main-menu > li .link i {
  font-size: 15px;
  margin-left: 5px;
}

.hamenu .menu-links .main-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.hamenu .menu-links .main-menu .sub-menu.sub-open {
  z-index: 3;
}

.hamenu .menu-links .main-menu .sub-menu.sub-open li .sub-link {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.hamenu .menu-links .main-menu .sub-menu li {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 8px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.hamenu .menu-links .main-menu .sub-menu li .sub-link {
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.hamenu .menu-links .main-menu .sub-menu li .sub-link.back {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.hamenu .menu-links .main-menu .sub-menu li .sub-link.back i {
  margin-left: 10px;
}

.hamenu .menu-links .main-menu .sub-menu li .sub-link em {
  font-size: 13px;
  font-weight: 300;
  margin-left: 10px;
}

.hamenu .cont-info {
  margin-top: 50px;
  position: relative;
}

.hamenu .cont-info:after {
  content: "";
  width: 1px;
  height: 0;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -40px;
  top: -170px;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.hamenu .cont-info .item {
  margin-bottom: 30px;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.hamenu .cont-info .item:last-of-type {
  margin-bottom: 0;
}

.hamenu .cont-info .item h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ====================== [ End navbar ] ====================== */

.slider-stwo {
  min-height: 100vh;
  position: relative;
  background-color: #000;
  padding: 130px 0px 100px 0px;
}

.slider-stwo:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #f5f5f5;
  z-index: -1;
}

.slider-stwo .img {
  padding-right: 30px;
}

.slider-stwo .img img {
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.05);
  box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.05);
}

.slider-stwo ul {
  margin: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.slider-stwo ul li {
  display: inline-block;
  margin-right: 3px;
  text-align: center;
}

#dots {
  padding-right: 4px;
}

.countdown-label {
  text-transform: uppercase;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.launching-soon {
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  margin-left: 5px;
}

.slider-stwo ul li div {
  display: table-cell;
}

.particles {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.particles .cont h1 {
  font-size: 120px;
  font-weight: 800;
  margin-bottom: 0px;
  color: #fff;
}

.pages-header {
  min-height: 75vh;
  padding: 150px 0 0;
  position: relative;
}

.pages-header .cont h1 {
  font-size: 55px;
}

.pages-header .half {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: -1;
  overflow: hidden;
}

.page-header .cont {
  padding: 133px 0 50px;
}

.page-header .cont.pt-bot {
  padding: 133px 0 30px;
}

.page-header .cont h1 {
  font-size: 80px;
  font-weight: 600;
}

/* ====================== [ Start Intro ] ====================== */
.about .content .co-tit {
  font-weight: 400;
  margin-bottom: 30px;
}

#mt-23 {
  margin-top: 23px !important;
}

#about-p {
  color: #fff;
}

.about-us .img {
  padding-left: 90px;
  padding-right: 50px;
  position: relative;
  border-radius: 10px;
}

.about-us .img .stauts {
  position: absolute;
  bottom: 50px;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us .img .stauts .item {
  padding: 30px 20px;
  background: #272727;
  margin-right: 50px;
  position: relative;
  color: #fff;
}

.about-us .img .stauts .item:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(100, 100, 100, 0.1);
}

.about-us .img .stauts .item:first-of-type {
  background: #f5f5f5;
  color: #121a21;
}

.about-us .img .stauts .item h4 {
  font-size: 45px;
  font-weight: 800;
  display: table-cell;
  vertical-align: middle;
  padding-right: 20px;
}

.about-us .img .stauts .item h4 span {
  font-size: 30px;
  font-weight: 500;
  margin-left: 5px;
}

.about-us .img .stauts .item h6 {
  font-size: 15px;
  display: table-cell;
  vertical-align: middle;
}

.intro-section .htit {
  font-size: 28px;
  font-weight: 500;
}

.intro-section .htit span {
  font-size: 17px;
  font-weight: 300;
  color: #12c2e9;
  margin-right: 5px;
}

.intro-section .item h6 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.intro-section .item p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.intro-section .item p a {
  margin: 0 7px;
}

.intro-section .item p a:first-of-type {
  margin-left: 0;
}

.intro-section .item p a:last-of-type {
  margin-right: 0;
}

.extra-text {
  font-size: 22px;
}

#collection-text {
  line-height: 1;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====================== [ Start Team ] ====================== */
.team {
  position: relative;
}

.team .item {
  padding: 0 25px;
}

.team .item:hover {
  cursor: pointer;
}

.team .item.cir .img {
  position: relative;
}

.aboutIntroPadding {
  padding: 16px 0px;
}

#footerPadding {
  margin-top: 90px;
}

.titleIntro {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.team .item.cir .img .team-image {
  border-radius: 6px;
}

#footerLogo {
  max-width: 50px;
}

.imageText-mrg {
  padding-top: 20px;
}

#padding-txt {
  padding-top: 35px;
}

.team .item.cir .img:hover:after {
  opacity: 1;
  -webkit-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}

.team .item.cir .img:hover #circle1,
.team .item.cir .img:hover #circle2,
.team .item.cir .img:hover #circle3,
.team .item.cir .img:hover #circle4,
.team .item.cir .img:hover .info {
  opacity: 1;
}

.team .item.cir .img:hover:before {
  opacity: 0.8;
  cursor: pointer;
}

.team .item.cir .img:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

#team-padding {
  padding-top: 30px;
}

.team .item.cir .img:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.team .item.cir .info {
  position: absolute;
  top: 30px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  text-align: left;
}

.team .info span {
  line-height: 1.3;
  font-size: 12pt;
  margin-bottom: 12pt;
}

.space {
  padding: 3px 0px;
}

.spaceTitle {
  padding: 2px 0px;
}

.team .item.cir .info h6 {
  font-weight: 600;
  letter-spacing: 0.7px;
  font-size: 20px;
}

.team .item.cir .info .title {
  font-weight: 600;
  letter-spacing: 0.7px;
  font-size: 17px;
}

.team .item .img {
  position: relative;
}

.team .item .img:hover:after {
  opacity: 1;
  -webkit-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
}

.team .item .img:hover #circle1,
.team .item .img:hover #circle2,
.team .item .img:hover #circle3,
.team .item .img:hover #circle4,
.team .item .img:hover .info {
  opacity: 1;
  color: #fff;
}

.team .item .img:hover:before {
  opacity: 0.4;
}

.team .item .img:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;

  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.team.bord .item:hover .img:after {
  border-color: #12c2e9;
  opacity: 1;
  -webkit-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.team.bord .item .img {
  padding: 30px;
}

.team.bord .item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 5px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 0.1;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  z-index: -1;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.team.bord .item .img.left:after {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
}

.team.bord .item .info {
  margin-top: 15px;
  text-align: center;
}

.team.bord .item .info span {
  font-size: 13px;
  color: #12c2e9;
}

.team .slick-dots {
  bottom: -40px;
}

.team .slick-dots li.slick-active button {
  background: #12c2e9;
}

.team .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.8;
}

.team .slick-dots li button:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  line-height: 1;
  background: #12c2e9;
  opacity: 1;
}

.team .dots-half {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: -2;
}

#circle1,
#circle2,
#circle3,
#circle4 {
  position: absolute;
  top: -30%;
  right: -50%;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

#circle1 text,
#circle2 text,
#circle3 text,
#circle4 text {
  font-size: 13px;
  letter-spacing: 4px;
}

#circle1 svg,
#circle2 svg,
#circle3 svg,
#circle4 svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 8s;
  -moz-animation-duration: 8s;
  -ms-animation-duration: 8s;
  -o-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }

  to {
    -moz-transform: rotate(0);
  }
}

@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }

  to {
    -ms-transform: rotate(0);
  }
}

@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }

  to {
    -o-transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/* ====================== [ End Team ] ====================== */

/* ====================== [ Start Blog ] ====================== */
.blog .item .cont {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.blog .item .info {
  margin-bottom: 10px;
  font-size: 12px;
}

.blog .item .info .date {
  margin-right: 15px;
}

.blog .item .info .date span i {
  font-style: normal;
}

.blog .item .info span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  color: #aaa;
}

.blog .item .info .tag {
  margin-left: 15px;
}

.blog .item .info .tag span {
  color: #12c2e9;
}

.blog .item h5 {
  font-size: 28px;
  font-weight: 400;
}

.blog .item .btn-more {
  margin-top: 15px;
}

.blog .item .btn-more a {
  font-size: 12px;
  letter-spacing: 2px;
}

.blog-pg .posts .item .img {
  position: relative;
}

.blog-pg .posts .item .content {
  padding-top: 25px;
}

.blog-pg .posts .item .content .date {
  margin-right: 15px;
  text-transform: uppercase;
  font-size: 12px;
}

.blog-pg .posts .item .content .date .num {
  font-size: 12px;
}

.blog-pg .posts .item .content .tags {
  margin-bottom: 10px;
  display: inline-block;
}

.blog-pg .posts .item .content .tags a {
  font-size: 12px;
  font-weight: 500;
  color: #12c2e9;
  padding-right: 20px;
  position: relative;
  letter-spacing: 0.5px;
}

.blog-pg .posts .item .content .tags a:after {
  content: "";
  width: 8px;
  height: 1px;
  background: #eee;
  position: absolute;
  right: 4px;
  top: 50%;
}

.blog-pg .posts .item .content .tags a:last-of-type {
  padding-right: 14px;
}

.blog-pg .posts .item .content .tags a:last-of-type:after {
  display: none;
}

.blog-pg .posts .item .content h4 {
  line-height: 1.6;
  margin-bottom: 5px;
}

.blog-pg.single .post .main-img .simpleParallax {
  height: 70vh;
  max-height: 600px;
}

.blog-pg.single .post .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.blog-pg.single .post .content p {
  font-size: 16px;
  font-family: inherit;
}

.blog-pg.single .post .content ul li {
  margin: 10px 0;
}

.blog-pg.single .post .content ul li span {
  margin-right: 10px;
  font-weight: 500;
  font-size: 13px;
}

.blog-pg.single .post .content .quotes {
  background: rgba(0, 0, 0, 0.04);
  padding: 30px;
  margin: 30px 0;
}

.blog-pg.single .post .content .quotes p {
  font-size: 18px;
  font-style: italic;
}

strong {
  font-weight: 500;
}

.blog-pg.single .post .content .spacial p {
  font-size: 18px;
  font-weight: 500;
}

.blog-pg.single .post .content .share-info {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-pg.single .post .content .share-info .social a {
  font-size: 13px;
  margin-right: 20px;
}

.blog-pg.single .post .content .share-info .tags {
  margin-left: auto;
}

.blog-pg.single .post .content .share-info .tags a {
  font-size: 12px;
  margin: 0 10px;
}

.blog-pg.single .post .author {
  padding: 30px;
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.04);
}

.blog-pg.single .post .author .author-img {
  display: table-cell;
  vertical-align: middle;
  width: 140px;
}

.blog-pg.single .post .author .info {
  display: table-cell;
  padding-left: 40px;
}

.blog-pg.single .post .author .info h6 {
  margin-bottom: 10px;
  font-size: 15px;
}

.blog-pg.single .post .author .info h6 span {
  text-transform: uppercase;
  margin-right: 10px;
}

.blog-pg.single .post .author .info p {
  padding: 0;
  margin: 0;
}

.blog-pg.single .post .author .info .social {
  margin-top: 15px;
  font-size: 13px;
}

.blog-pg.single .post .author .info .social a {
  margin-right: 15px;
}

.blog-pg.single .pagination {
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-pg.single .pagination span {
  width: 100%;
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
}

.blog-pg.single .pagination .icon {
  border: 0;
  width: 70px;
}

.blog-pg.single .comments-area {
  margin-top: 80px;
}

.blog-pg.single .comments-area .item {
  padding: 30px 0;
  margin: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-pg.single .comments-area .item.relped {
  margin-left: 100px;
}

.blog-pg.single .comments-area .item .comment-img {
  display: table-cell;
  width: 80px;
}

.blog-pg.single .comments-area .item .info {
  display: table-cell;
  vertical-align: middle;
  padding-left: 40px;
  position: relative;
}

.blog-pg.single .comments-area .item .info h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.blog-pg.single .comments-area .item .info h6 span {
  display: block;
  color: #12c2e9;
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}

.blog-pg.single .comments-area .item .info p {
  line-height: 1.5;
  margin-top: 15px;
}

.blog-pg.single .comments-area .item .info .replay {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 13px;
}

.blog-pg.single .comments-area .item .info .replay i {
  margin-left: 5px;
}

.blog-pg.single .comment-form {
  margin-top: 80px;
}

.blog-pg.single .comment-form form {
  margin-top: 50px;
}

.blog-pg.single .comment-form form input,
.blog-pg.single .comment-form form textarea {
  color: #fff;
  width: 100%;
  padding: 17px;
  background: rgba(0, 0, 0, 0.05);
  border: 0;
}

.blog-pg.single .comment-form form textarea {
  height: 140px;
}

/* ====================== [ Start Footer ] ====================== */
footer {
  color: #fff;
  padding: 25px 0;
  background: #18191d;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

footer .container .logo-row {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: revert;
}

footer.sub-bg {
  background: #18191d;
}

footer .item .title h5 {
  margin-bottom: 30px;
}

footer .item li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}

footer .item li:last-of-type {
  margin-bottom: 0;
}

footer .item li h6 {
  font-size: 14px;
  font-weight: 600;
}

footer .item li .icon {
  font-size: 30px;
  margin-right: 30px;
}

footer .item li .img {
  width: 150px;
  margin-right: 15px;
}

footer .item li .sm-post p {
  font-size: 13px;
}

footer .item li .sm-post .date {
  font-size: 12px;
  color: #12c2e9;
}

footer .item li .subscribe {
  width: 100%;
  position: relative;
}

footer .item li .subscribe input {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  color: #fff;
  font-size: 13px;
}

footer .item li .subscribe .subs {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: #12c2e9;
  color: #000;
}

footer .item .logo {
  margin-bottom: 50px;
}

footer .item .logo img {
  width: 50px;
}

footer .item .social a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  margin-right: 10px;
}

footer .item .copy-right {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-link {
  font-size: 13px;
  color: darkorchid;
  letter-spacing: 0.5px;
  padding-left: 5px;
  margin: 0px;
  padding-top: 3px;
  transition: all 0.4s;
}

.footer-link:hover {
  color: #fff;
}

.symbol {
  padding-left: 5px;
}

footer .item .copy-right p {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
}

footer .item .copy-right p a {
  color: #12c2e9;
}

/* ====================== [ End Footer ] ====================== */
/* ====================== [ Start Responsive ] ====================== */

@media screen and (max-width: 991px) {
  .bg-img {
    background-position: center !important;
  }

  .container .row .col-lg-5 {
    margin-bottom: 70px;
  }

  .navbar .navbar-collapse.show-with-trans {
    opacity: 1;
    padding: 10px 15px;
    height: auto;
  }

  footer .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .copy-right {
    padding-bottom: 15px;
    flex-direction: column;
  }

  .symbol {
    display: none;
  }

  .copy-right-text {
    text-align: center;
    line-height: 1.5;
  }

  .team .item.cir .info {
    position: static;
    opacity: 1;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    z-index: initial;
    overflow: visible;
    word-wrap: normal;
    text-align: left;
    padding: 0; /* Reset padding */
    margin-top: 30px;
  }

  footer .container .logo-row {
    display: none;
  }

  .md-mb10 {
    margin-bottom: 10px;
  }

  .md-mb20 {
    margin-bottom: 20px;
  }

  .md-mb30 {
    margin-bottom: 30px;
  }

  .md-mb40 {
    margin-bottom: 40px;
  }

  .md-mb50 {
    margin-bottom: 50px;
  }

  .md-mb60 {
    margin-bottom: 60px;
  }

  .md-mb70 {
    margin-bottom: 70px;
  }

  .md-mb80 {
    margin-bottom: 80px;
  }

  .md-pb10 {
    padding-bottom: 10px;
  }

  .md-pb20 {
    padding-bottom: 20px;
  }

  .md-pb30 {
    padding-bottom: 30px;
  }

  .md-pb40 {
    padding-bottom: 40px;
  }

  .md-pb50 {
    padding-bottom: 50px;
  }

  .md-pb60 {
    padding-bottom: 60px;
  }

  .md-pb70 {
    padding-bottom: 70px;
  }

  .md-pb80 {
    padding-bottom: 80px;
  }

  .order2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .connect-btn .butn.curve {
    display: none;
  }

  .order1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .container {
    max-width: 720px;
  }

  .navbar {
    min-height: 60px;
  }

  .navbar i .navbar .navbar-collapse {
    max-height: 340px;
    overflow: auto;
    background: #11141b;
    text-align: center;
    display: block !important;
    opacity: 0;
    transition: all 0.3s linear;
    height: 0;
    padding: 0;
    transform-origin: top;
  }

  .navbar .nav-link {
    margin: 10px auto !important;
  }

  .nav-scroll .icon-bar,
  .light .icon-bar {
    color: #111;
  }

  .nav-scroll .navbar-collapse .nav-link,
  .light .navbar-collapse .nav-link {
    color: #fff !important;
  }

  .nav-scroll .navbar-collapse .active,
  .light .navbar-collapse .active {
    color: #12c2e9 !important;
  }

  .pages-header .cont h1 {
    font-size: 35px;
  }

  .works-header .capt h1 {
    font-size: 45px;
  }

  .sec-head h3 br {
    display: none;
  }

  #circle1,
  #circle2,
  #circle3,
  #circle4 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sm-mb10 {
    margin-bottom: 10px;
  }

  .sm-mb20 {
    margin-bottom: 20px;
  }

  .sm-mb30 {
    margin-bottom: 30px;
  }

  .sm-mb40 {
    margin-bottom: 40px;
  }

  .sm-mb50 {
    margin-bottom: 50px;
  }

  .sm-mb60 {
    margin-bottom: 60px;
  }

  .sm-mb70 {
    margin-bottom: 70px;
  }

  .sm-mb80 {
    margin-bottom: 80px;
  }

  .sm-pb10 {
    padding-bottom: 10px;
  }

  .sm-pb20 {
    padding-bottom: 20px;
  }

  .sm-pb30 {
    padding-bottom: 30px;
  }

  .sm-pb40 {
    padding-bottom: 40px;
  }

  .sm-pb50 {
    padding-bottom: 50px;
  }

  .sm-pb60 {
    padding-bottom: 60px;
  }

  .sm-pb70 {
    padding-bottom: 70px;
  }

  .sm-pb80 {
    padding-bottom: 80px;
  }

  .container {
    max-width: 540px;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }

  .hamenu .menu-links .main-menu > li {
    font-size: 24px;
  }

  .hamenu .menu-links .main-menu .sub-menu li {
    font-size: 18px;
  }

  .topnav .container-fluid {
    padding: 0 30px;
  }

  .topnav .logo {
    width: 40px;
  }

  .btn-curve {
    padding: 8px 15px;
  }

  .btn-curve span {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .slider .parallax-slider .caption h1 {
    font-size: 40px;
  }

  .slider .parallax-slider .caption h1 br {
    display: none;
  }

  .slider .parallax-slider .swiper-slide-active .caption h1 {
    font-size: 30px;
  }

  .slider .social-icon {
    display: none;
  }

  .slider .setone.setwo .prev-ctrl {
    left: 15px;
    bottom: 15px;
    top: auto;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

  .slider .setone.setwo .next-ctrl {
    left: 70px;
    bottom: 15px;
    top: auto;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }

  .slider .swiper-pagination-fraction.top.botm {
    right: 15px;
    bottom: 15px;
  }

  .slider .swiper-pagination-fraction.top .swiper-pagination-current {
    font-size: 40px;
  }

  .slider .parallax-slider .caption.dig h1 {
    font-size: 40px;
  }

  .particles .cont h1 {
    font-size: 55px;
  }

  .slider-stwo ul li div {
    display: block;
  }

  .slider-stwo ul li .cont {
    display: block;
    vertical-align: auto;
    padding-left: 0;
    margin-top: 15px;
  }

  .pages-header {
    padding: 120px 0 80px;
    overflow-x: hidden;
  }

  .works-header .capt h2 {
    font-size: 40px;
  }

  .slider.fixed-slider,
  .works-header.hfixd {
    position: static;
  }

  .main-content {
    margin-top: 0 !important;
  }

  .sub-title h6 {
    font-size: 12px;
  }

  .sec-head h3 {
    font-size: 30px;
  }

  .sec-head h6 {
    font-size: 15px;
    letter-spacing: 5px;
  }

  .about-us .img .stauts .item {
    padding: 25px 15px;
    margin-right: 20px;
  }

  .about-us .img .stauts .item:last-of-type {
    margin-right: 0;
  }

  .about-us .img .stauts .item h4 {
    font-size: 30px;
  }

  .about-us .img .stauts .item h4 span {
    font-size: 20px;
  }

  .about-us .img {
    padding: 0;
  }

  .about-cr .cont h3 {
    font-size: 40px;
  }

  .blog-pg.single .post .author .author-img,
  .blog-pg.single .post .author .info,
  .blog-pg.single .comments-area .item .comment-img,
  .blog-pg.single .comments-area .item .info {
    display: block;
  }

  .blog-pg.single .post .author .info,
  .blog-pg.single .comments-area .item .info {
    padding-left: 0;
    margin-top: 15px;
  }

  .intro-section .htit {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .hamenu .cont-info {
    display: none;
  }

  .hamenu .menu-links .main-menu > li {
    font-size: 20px;
    padding: 7px;
  }

  .hamenu .menu-links .main-menu .sub-menu li {
    font-size: 16px;
  }

  .topnav .container-fluid {
    padding: 0 15px;
  }

  .slider-bus .caption h1 {
    font-size: 50px;
  }

  .showcase-full .dots {
    display: none;
  }

  .slider .txt-botm .swiper-nav-ctrl.swiper-button-next {
    right: 20px;
  }

  .slider .txt-botm .swiper-nav-ctrl.swiper-button-prev {
    left: 20px;
  }

  .pages-header .cont .path {
    font-size: 15px;
  }

  .pages-header .cont .path span {
    margin: 0 10px;
  }

  .pages-header .capt h1 {
    font-size: 24px;
  }

  .page-header .cont h1 {
    font-size: 40px;
  }

  .slider .swiper-pagination-fraction.steps {
    bottom: 60px;
  }

  .particles .cont h1 {
    font-size: 30px;
    font-weight: 700;
  }

  .circle-slide .swiper-slide .bg-img {
    height: 280px !important;
    width: 280px !important;
  }

  .freelancre .cont h1 {
    font-size: 22px;
  }

  .freelancre .img {
    width: 200px;
    height: 200px;
  }

  .showcase-carus.circle-slide .caption h1,
  .showcase-carus.circle-slide .copy-cap h1 {
    font-size: 40px;
  }

  .works-header .capt h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .pages-header .cont h1 {
    font-size: 20px;
  }

  .sec-head h3 {
    font-size: 20px;
  }

  .sec-head h2 {
    font-size: 55px;
  }

  .about-us .img .stauts {
    display: none;
  }

  .blog .item h5 {
    font-size: 20px;
  }

  .blog-pg.single .post .content .share-info {
    display: block;
  }

  .blog-pg.single .post .content .share-info .social,
  .blog-pg.single .post .content .share-info .tags {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
  }

  .blog-pg.single .post .content .share-info .tags {
    margin-top: 5px;
  }
}

/* ====================== [ End Responsive ] ====================== */

div#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.next-prog.section-padding {
  overflow: hidden;
}
@media (max-width: 768px) {
  a.col-md-3.popimg {
    padding: 0;
    margin-bottom: 15px;
  }

  .popup-img .row {
    margin: 0 15px;
  }

  a.col-md-12.popimg {
    padding: 0;
  }
}

/*=====================================================**/
.connect-btn {
  margin-left: 41px;
}

.connect-btn:hover {
  cursor: pointer;
}

#borderRaduis {
  border-radius: 5px;
}
