


/* Typography
-----------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
  }
  
  html,
  body {
    color: #141414;
    background-color: #fff;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden !important;
    font-weight: 500;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 0;
  }
  
  h2 {
    font-size: 50px;
  }
  
  h3 {
    font-size: 48px;
  }
  
  h4 {
    font-size: 34px;
  }
  
  h5 {
    font-size: 24px;
  }
  
  h6 {
    font-size: 20px;
  }
  
  a {
    display: inline-block;
    text-decoration: none;
  }
  
  a,
  a:hover {
    color: inherit;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  img {
    width: 100%;
    height: auto;
  }
  
  main {
    position: relative;
    z-index: 5;
  }
  
  
  .left {
    text-align: left;
  }
  
  .right {
    text-align: right;
  }
  
  .center {
    text-align: center;
  }
  
  /* Common styles for .cmlo */
  .cmlo {
    display: flex;
    flex-direction: row;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
  }
  
  .cmlo>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
  }
  
  
  
  
  /* Preloader
  -----------------------------------------------------------------*/
  body.loaded {
    overflow: hidden !important;
    height: 100% !important;
  }
  
  .loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    z-index: 99999999999999;
  }
  
  .loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: #f7f8f9;
  }
  
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 15px;
    text-transform: uppercase;
    z-index: 20;
  }
  
  .load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
  }
  
  .load-text span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  
  .load-text span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  
  .load-text span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  
  .load-text span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  
  .load-text span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  
  .load-text span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  
  .load-text 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;
    }
  }
  
  /* Cursor
  -----------------------------------------------------------------*/
  .hover-this .hover-anim {
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  }
  .progress-wrap {
    bottom: 15px;
    right: 15px;
  }
  .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;
    mix-blend-mode: difference;
  }
  
  .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: #ccc;
    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: #ccc;
    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;
  }
  
  /* Navbar Css */
  .navbar {
    position: absolute;
    left: 0;
    top: 0;
    padding: 6px 0px;
    margin: 0;
    width: 100%;
    background: transparent;
    border-bottom: 2px solid transparent;
    z-index: 99999999;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transform: translateY(0); 
  }
  .navbar.hide {
    transform: translateY(-100%);
}
  .navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff; 
    transform: translateY(0); 
}

  .icon-img-100 {
    width: 190px;
  }
  
  .navbar .icon-bar {
    color: #141414;
  }
  
  span {
    display: inline-block;
  }
  
  .navbar .icon-bar {
    color: #141414;
  }
  
  .navbar .dropdown {
    position: static;
  }
  
  .navbar .navbar-nav .nav-link {
    color: #141414;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 10px 15px 10px;
    margin: 0 15px;
  }
  
  .collapse {
    display: none;
  }
  
  .collapse.show {
    display: flex;
    flex-direction: column;
  }
  
  .butn.butn-bg {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .butn.butn-md {
    padding: 14px 35px;
  }
  
  .bg-blck {
    background-color: #141414;
    color: #fff;
  }
  
  .bg-blck-btn {
    background-color: #fff;
    border: 2px solid transparent;
    background-image: linear-gradient(120deg, #41A8F3 0%, #9B28A6 60%), linear-gradient(120deg, #41A8F3 0%, #9B28A6 60%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    color: #ffffff;
  }
  
  .butn {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 14px 35px;
    background-clip: border-box;
    -webkit-background-clip: padding-box;
  }
  
  /* Header Css */
  .header-digital {
    padding: 180px 0 120px;
    position: relative;
  }
  
  .cmlo.md-marg {
    margin-left: -25px;
    margin-right: -25px;
  }
  
  .cmlo.md-marg>* {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .order-md-1,
  .order-md-2,
  .order-md-3,
  .order-md-4 {
    -webkit-box-ordinal-group: inherit !important;
    -ms-flex-order: inherit !important;
    order: inherit !important;
  }
  
  .header-digital .caption h1 {
    font-size: 100px;
    font-weight: 800;
  }
  @media screen and (max-width: 992px) {
    .header-digital {
      padding: 100px 0 120px;
      position: relative;
    }
    .header-digital .caption h1 {
        line-height: 1.1;
    }
}
  @media screen and (max-width: 768px) {
    .header-digital {
      padding: 100px 0 120px;
      position: relative;
    }
    .header-digital .caption h1 {
        font-size: 70px!important;
    }
}
  .header-digital .best-clients {
    padding: 25px;
    -webkit-box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0px 50px 50px 0 rgba(0, 0, 0, 0.05);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #fff;
    border-radius: 10px;
    margin-left: 50px;
    position: relative;
    z-index: 9999;
  }
  
  .sm-title {
    font-weight: 700;
  }
  
  .p-style,
  .sm-title {
    color: #141414;
  }
  
  p,
  .p-style,
  .sm-title {
    line-height: 26px;
    font-family: "Hanken Grotesk", sans-serif;
    margin: 0;
    font-size: 16px;
  }
  
  .header-digital .best-clients .imgs {
    padding-left: 10px;
  }
  
  .header-digital .best-clients .imgs .icon {
    background: #141414;
    color: #fff;
    text-align: center;
    line-height: 65px;
  }
  
  .header-digital .best-clients .imgs>div {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -10px;
  }
  
  .header-digital .best-clients svg {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
  }
  
  
  
  .butn-circle:hover {
    background: #141414;
    color: #fff;
  }
  
  .butn-circle:hover svg path {
    stroke: #fff;
  }
  
  .butn-circle svg path {
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .header-digital .img-circle {
    width: 165px;
  }
  
  .header-digital .img-fixed {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 420px;
  }
  
  .fit-img {
    overflow: hidden;
  }
  
  .header-digital .contact-email {
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .header-digital .contact-email .text {
    -webkit-transform: rotate(-90deg) translateY(-100%);
    -ms-transform: rotate(-90deg) translateY(-100%);
    transform: rotate(-90deg) translateY(-100%);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
  }
  
  .header-digital .contact-email .text a {
    text-decoration: underline;
    text-decoration-color: #888;
  }
  
  .valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .top-margin {
    margin-bottom: -8px;
  }
  
  .cmlo .md-marg {
    margin-left: -25px;
    margin-right: -25px;
  }
  
  /* portfolio Css */
  
  
  .icon-img-80 {
    width: 80px;
  }
  @media screen and (max-width: 992px) {
    .page-header .icon-img-80 {
        width: 60px;
    }
}
  @media screen and (max-width: 768px) {
    .page-header .icon-img-80 {
        width: 40px;
    }
}
@media screen and (max-width: 768px) {
  .page-header .long-arw {
      display: none;
  }
  header .contact-email {
    display: none;
}
  .page-header .sub-font {
    margin-top: 30px;
}
}
  .sec-head .lg-title h2 {
    font-size: 120px;
    font-weight: 700;
    line-height: 1.1;
  }
  @media screen and (max-width: 992px) {
    .sec-head .lg-title h2 {
        font-size: 80px;
    }
}
  @media screen and (max-width: 768px) {
    .sec-head .lg-title h2 {
        font-size: 55px;
    }
}
@media screen and (max-width: 992px) {
  h2 {
      font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
      font-size: 34px;
  }
}

  .container-box {
    max-width: 1920px;
    margin: auto;
  }
  
  .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
  }
  
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }
  
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
  }
  
  .work-carsouel2 .item {
    position: relative;
    overflow: hidden;
  }
  
  .work-carsouel2 .item .img {
    height: 600px;
  }
  
  .work-carsouel2 .item .cont {
    position: absolute;
    left: 30px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 3;
  }
  
  .work-carsouel2 .item .cont h6 {
    padding: 5px 20px;
    background: #8449ba;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    position: relative;
    z-index: 3;
    color: #ffffff;
  }
  
  .work-carsouel2 .item .cont h4 {
    font-size: 28px;
    position: relative;
    z-index: 3;
  }
  
  .work-carsouel2 .item .cont:after,
  .work-carsouel2 .item .cont:before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background-color: #4f92e7;
    opacity: 0.5;
    z-index: -1;
  }
  
  .work-carsouel2 .item .cont:before {
    top: -120px;
    right: -120px;
    background: -webkit-linear-gradient(250deg, #fff, #9B28A6);
    background: -o-linear-gradient(250deg, #fff, #9B28A6);
    background: linear-gradient(200deg, #fff, #9B28A6);
    opacity: 0.8;
    z-index: 2;
  }
  
  .work-carsouel2 .item:hover .cont {
    opacity: 1;
    visibility: visible;
  }
  
  .work-carsouel2.work-page .item .img {
    height: 580px;
    min-height: 75vh;
  }
  
  .fit-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  
  .fz-18 {
    font-size: 18px !important;
  }
  
  .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  
  .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #141414;
    border-radius: 50%;
    margin: 0 10px;
    position: relative;
  }
  
  .swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #141414;
    border-radius: 50%;
    opacity: 0;
  }
  
  .swiper-pagination .swiper-pagination-bullet-active:after {
    opacity: 1;
  }
  @media screen and (max-width: 768px) {
    .sm-hide {
        display: none;
    }
}
  /* Services */
  
  .filtering {
    padding: 10px 30px;
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.08);
  }
  
  .filtering span {
    font-size: 16px;
    font-weight: 500;
    padding: 7px 15px;
    border-radius: 30px;
    position: relative;
    margin-right: 30px;
    cursor: pointer;
  }
  
  .filtering span:after {
    content: "/";
    position: absolute;
    right: -20px;
  }
  
  .filtering span.Content-none:after {
    content: "";
    position: absolute;
    right: -20px;
  }
  
  .filtering.color2 span.active {
    color: #fff;
    background-image: linear-gradient(120deg, #41A8F3 0%, #9B28A6 60%);
  }
  
  .filtering span:last-of-type {
    margin-right: 0;
  }
  
  .cmlo.xlg-marg {
    margin-left: -50px;
    margin-right: -50px;
  }
  
  .cmlo.xlg-marg>* {
    padding-left: 50px;
    padding-right: 50px;
  }
  
  .work-stand3 .item {
    position: relative;
  }
  
  .work-stand3 .item .cont {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-image: linear-gradient(120deg, #41A8F3 0%, #9B28A6 60%);
    border-radius: 10px;
    max-width: 350px;
    padding: 25px 30px;
    opacity: .9;
    transition: all .4s;
    transform: translateY(0);
  }
  
  .work-stand3 .item .cont .des {
    font-size: 14px;
    color: #ffffff;
  }
  
  .work-stand3 .item .cont h6 {
    font-weight: 600;
    color: #ffffff;
  }
  
  
  @media screen and (max-width: 992px) {
    .md-mb50 {
        margin-bottom: 50px !important;
    }
}
@media screen and (max-width: 768px) {
  .sm-mb30 {
      margin-bottom: 30px;
  }
}
  .serv-dark .item {
    position: relative;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  @media screen and (max-width: 768px) {
    .serv-dark .item .num {
        margin: 0 0 10px !important;
    }
}
  @media screen and (max-width: 768px) {
    .serv-dark .item {
        display: block !important;
    }
}
@media screen and (max-width: 768px) {
  .serv-dark .item .ml-80 {
      margin-left: auto !important;
  }
}
  .bg-blck .bord-thin-top,
  .bg-blck .bord-thin-bottom,
  .bg-blck .bord-thin-right,
  .bg-blck .bord-thin-left {
    border-color: rgba(255, 255, 255, 0.15);
  }
  @media screen and (max-width: 992px) {
    h3 {
        font-size: 30px;
    }
}
  @media screen and (max-width: 768px) {
    h3 {
        font-size: 22px;
    }
}

  .serv-dark .item:hover {
    border-color: #eee;
  }
  @media screen and (max-width: 992px) {
    h5 {
        font-size: 23px;
    }
}
  @media screen and (max-width: 768px) {
    h5 {
        font-size: 18px;
    }
}

  .serv-dark .item:hover .img {
    top: -60px;
    opacity: 1;
  }
  
  .serv-dark .item .img {
    position: absolute;
    top: 0px;
    right: 0;
    width: 200px;
    height: 240px;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  
  .serv-box .swiper-pagination {
    position: static;
  }
  
  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .intro-marketing:before {
    right: auto;
    top: auto;
    bottom: -15%;
    left: -20%;
}
.intro-marketing:after, .intro-marketing:before {
  content: '';
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  right: -20%;
  top: -15%;
  pointer-events: none;
  z-index: -1;
}
  
  /* Testimonal  */
  .testimonials {
    position: relative;
  }
  
  .sub-bg {
    background: #f7f8f9 !important;
  }
  
  .testimonials .item .circle {
    width: 70px;
    height: 70px;
  }
  
  .circle {
    border-radius: 50%;
  }
  
  .opacity-7 {
    opacity: .7 !important;
  }
  
  .icon-img-90 {
    width: 90px;
  }
  
  .testimonials.section-padding.sub-bg h5 {
    font-size: 22px;
    font-weight: 400;
  }
  
  .testimonials .swiper-pagination {
    position: absolute;
    bottom: 185px;
  }
  
  /* Design turnarounds */
  
  .serv-box .item {
    position: relative;
    overflow: hidden;
  }
  
  .serv-box .item .img {
    height: 580px;
    min-height: 75vh;
  }
  
  .serv-container {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
  }
  
  /* intro full */
  
  
  .intro-full {
    position: relative;
    background-image: url('../imgs/background/4.jpg');
    min-height: 50vh;
    height: 600px;
    position: relative;
  }
  
  .bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .intro-full h3 {
    color: #ffffff;
    margin: 18px;
    line-height: 55px;
  }
  
  .intro-full p {
    color: #ffffff;
  }
  
  .best-clients .imgs {
    padding-left: 10px;
  }
  
  .best-clients .imgs>div {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -10px;
  }
  
  .best-clients .imgs .icon {
    background: #141414;
    color: #fff;
    text-align: center;
    line-height: 65px;
  }
  
  .intro-full .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .ontop {
    z-index: 9999;
  }
  
  /* About Us */
  .position-re {
    position: relative;
  }
  
  .md-title {
    font-size: 18px;
    font-weight: 500;
  }
  
  .hero-dark .circle-img-bord {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    right: -100px;
    bottom: 20%;
    overflow: visible;
  }
  
  .hero-dark.light-ver .circle-img-bord:after,
  .hero-dark.light-ver .circle-img-bord:before {
    border-color: rgba(0, 0, 0, 0.1);
  }
  
  .hero-dark .circle-img-bord:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .hero-dark .circle-img-bord img {
    border-radius: 50%;
  }
  
  .hero-dark .circle-img-bord:after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .page-header .caption h1 {
    font-size: 140px;
    font-weight: 800;
  }
  @media screen and (max-width: 992px) {
    .page-header .caption h1 {
        font-size: 100px;
    }
}
  @media screen and (max-width: 768px) {
    .page-header .caption h1 {
        font-size: 60px;
    }
}

  .breadcrumb {
    margin-top: 73px;
  }
  
  /* Blogs */
  .blog .item .img {
    height: 380px;
  }
  
  .opacity-8 {
    opacity: .8 !important;
  }
  
  .bord-thin-top {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  
  .blog .item .view svg {
    width: 15px;
    margin-left: 10px;
  }
  
  .pagination .numb {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0 2px;
    font-size: 14px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .pagination .numb:hover {
    border-color: #141414;
  }
  
  .pagination .numb.active {
    background: #141414;
    color: #fff;
  }
  
  .bord-thin-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  
  .main-post .blog .item .img {
    height: 550px;
  }
  
  .main-post .author {
    padding: 30px;
    position: relative;
  }
  
  .list-arrow li .icon {
    margin-right: 10px;
  }
  
  /* Faq */
  .main-marq {
    position: relative;
    padding: 0;
  }
  
  
  .main-marq {
    position: relative;
    padding: 0;
  }
  
  .main-marq:after {
    content: '';
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    pointer-events: none;
    background: -webkit-linear-gradient(right, #fff, rgba(255, 255, 255, 0) 280px, rgba(255, 255, 255, 0) calc(100% - 280px), #fff);
    background: -o-linear-gradient(right, #fff, rgba(255, 255, 255, 0) 280px, rgba(255, 255, 255, 0) calc(100% - 280px), #fff);
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0) 280px, rgba(255, 255, 255, 0) calc(100% - 280px), #fff);
  }
  
  .main-marq.shadow-off:after {
    display: none;
  }
  
  .main-marq.md-text .box .item h4 {
    font-size: 40px;
  }
  
  .main-marq.lrg .box .item h4 {
    font-size: 5vw;
  }
  
  .main-marq.xlrg .box .item {
    padding: 0 30px;
  }
  
  .main-marq.xlrg .box .item h4 {
    font-size: 8vw;
  }
  
  .main-marq .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  
  .main-marq .slide-har .overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .main-marq .strok .item h4 {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #141414;
  }
  
  .main-marq .strok .item h4 a {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #141414;
  }
  
  .main-marq .non-strok .item h4 {
    color: #141414 !important;
    -webkit-text-stroke: 0 !important;
  }
  
  .main-marq .non-strok .item h4 a {
    color: #141414 !important;
    -webkit-text-stroke: 0 !important;
  }
  
  .main-marq .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .main-marq .box .item {
    padding: 0 30px;
  }
  
  .main-marq .box .item h4 {
    white-space: nowrap;
    margin: 0;
  }
  
  .main-marq .box .item h4 .icon {
    margin-bottom: -15px;
  }
  
  .main-marq .box .item h2 {
    margin: 0;
  }
  
  .main-marq .box .item:nth-of-type(even) h4 {
    color: transparent;
    -webkit-text-stroke: 0.5px #141414;
  }
  
  .main-marq .box .item:nth-of-type(even) h4 a {
    color: transparent;
    -webkit-text-stroke: 0.5px #141414;
  }
  
  .main-marq .box:last-of-type .item:nth-of-type(even) h4 {
    color: #141414;
    -webkit-text-stroke: 0;
  }
  
  .main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
    color: #141414;
    -webkit-text-stroke: 0;
  }
  
  .main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
    color: transparent;
    -webkit-text-stroke: 1px #141414;
  }
  
  .main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
    color: transparent;
    -webkit-text-stroke: 1px #141414;
  }
  
  
  .slide-har {
    position: relative;
  }
  
  .slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 80s linear infinite;
    animation: slide-har 80s linear infinite;
  }
  
  .slide-har.st2 .box {
    position: relative;
    -webkit-animation: slide-har-revers 80s linear infinite;
    animation: slide-har-revers 80s linear infinite;
  }
  
  @-webkit-keyframes slide-har {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  
  @keyframes slide-har {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  
  @-webkit-keyframes slide-har-revers {
    100% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    0% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  
  @keyframes slide-har-revers {
    100% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
  
    0% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  
  
  
  .slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 80s linear infinite;
    animation: slide-har 80s linear infinite;
  }
  
  .main-marq .box .item h4 {
    white-space: nowrap;
    margin: 0;
  }
  
  .main-marq .non-strok .item h4 {
    color: #141414 !important;
    -webkit-text-stroke: 0 !important;
  }
  
  .faqs .main-marq h4 {
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }
  
  .main-marq .box .item {
    padding: 0 30px;
  }
  
  .faqs .main-marq:after {
    display: none;
  }
  
  .faqs .main-marq h4 {
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }
  
  .faqs .main-marq .icon {
    margin-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .faqs .main-marq .icon img {
    width: 100px;
  }
  
  .faqs .accordion-item {
    border: 0;
    margin-bottom: 30px;
  }
  
  .faqs .accordion-item:last-of-type {
    margin-bottom: 0;
  }
  
  .faqs .accordion-header .accordion-button {
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: inherit;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .faqs .accordion-button .icon svg {
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for rotation and opacity */
    transform: rotate(0deg); /* Default state */
    opacity: 0.5; /* Default opacity when collapsed */
  }
  
  .faqs .accordion-button.active .icon svg {
    transform: rotate(90deg); /* Rotate when active */
    opacity: 1; /* Full opacity when active */
  }
  
  .faqs .accordion-header .accordion-button .icon {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  
  
  .faqs .accordion-header .accordion-button:after {
    display: none;
  }
  
  .faqs .accordion-header .accordion-button:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .faqs .accordion-header .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .faqs .accordion-header .accordion-button:not(.collapsed) .icon svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
  }
  
  .faqs .accordion-body {
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.05);
  }
  
  .faqs .imgs {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    min-width: 1920px;
    height: 100%;
    pointer-events: none;
    z-index: 999999999999;
  }
  
  .faqs .imgs .img1 {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 300px;
    height: 350px;
  }
  
  .faqs .imgs .img2 {
    position: absolute;
    bottom: 0;
    left: 300px;
    width: 190px;
    height: 150px;
  }
  
  .faqs .imgs .img3 {
    position: absolute;
    right: 0;
    top: 15%;
    width: 420px;
    height: 450px;
  }
  
  .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  }
  @media screen and (max-width: 768px) {
    .faqs .main-marq h4 {
        font-size: 80px;
    }
}
  /* Numbers */
  .numbers {
    position: relative;
  }
  
  .numbers .item {
    width: 300px;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  @media screen and (max-width: 992px) {
    .numbers .item {
        margin-left: auto;
        margin-right: auto;
    }
}
  .numbers .item h3 {
    font-size: 80px;
    font-weight: 800;
  }
  
  .numbers .item .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 13px;
  }
  
  .sm-title {
    font-weight: 700;
  }
  
  .numbers .item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
    pointer-events: none;
  }
  
  /* Team */
  .team .item .img {
    position: relative;
  }
  
  .team .item .img:hover .social {
    opacity: 1;
    visibility: visible;
  }
  
  .team .item .img .social {
    position: absolute;
    left: 15px;
    bottom: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  
  .team .item .img .social a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 2px;
    background: #fff;
    color: #141414;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  
  .text-u {
    text-transform: uppercase !important;
  }
  
  /* Contact */
  .lg-bold-head {
    position: relative;
  }
  
  .lg-bold-head.gray h2 {
    color: #eee;
  }

  .lg-bold-head h2 {
    font-size: 265px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
  }
  @media screen and (max-width: 992px) {
    .lg-bold-head h2 {
        font-size: 120px;
    }
}
  @media screen and (max-width: 768px) {
    .lg-bold-head h2 {
        font-size: 60px;
    }
    .lg-bold-head h2 .icon {
      width: 14px !important;
  }
}
  .lg-bold-head h2 .inline {
    display: inline;
    position: relative;
  }
  
  .rest {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .contact .info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .contact .info .icon {
    font-size: 30px;
    margin-right: 15px;
  }
  
  .contact label {
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  label {
    display: inline-block;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    padding-bottom: 15px;
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    padding-bottom: 15px;
  }
  
  .contact button {
    padding: 14px 40px;
    background: #141414;
    border: 0;
    color: #fff;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  
  .butn-circle.butn-light:hover {
    background: #fff;
    color: #141414;
  }
  
  .butn-circle.butn-light:hover svg path {
    stroke: #141414;
  }
  
  .contact button:hover {
    background: #99E5B7;
    color: #141414;
  }
  
  .contact button:hover svg path {
    stroke: #141414;
  }
  
  .lg-bold-head h2 .inline .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-45%);
    -ms-transform: translateX(-50%) translateY(-45%);
    transform: translateX(-50%) translateY(-45%);
    width: 40px;
    height: 100%;
  }
  
  .fz-22 {
    font-size: 20px !important;
  }
  
  .fw-300 {
    font-weight: 300 !important;
  }
  
  .contact button svg {
    width: 18px;
    margin-left: 10px;
  }
  
  /* Blog Dtails */
  .main-post .tags a {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 13px;
    margin: 0 5px;
  }
  
  .main-post .tags a:hover {
    background: #141414;
    color: #fff;
  }
  
  .main-post .author .img-author {
    width: 100px;
    height: 100px;
  }
  
  .main-post .author .social {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  
  .main-post .author .social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 13px;
  }
  
  .main-post .author:hover .social {
    opacity: 1;
  }
  
  .pagination .butn-circle {
    margin: 0 15px;
    border-color: rgba(0, 0, 0, 0.2);
  }
  
  .sec-head h2 {
    font-size: 52px;
  }
@media screen and (max-width: 992px) {
    .sec-head h2 {
        font-size: 40px;
    }
}
@media screen and (max-width: 768px) {
  .sec-head h2 {
      font-size: 32px;
  }
}
  .sec-head .head-cont .icon {
    margin-left: auto;
  }
  
  .blogs .coments .img {
    width: 85px;
    height: 85px;
  }
  
  .blogs .comments-from button:hover {
    background: #99E5B7;
    color: #141414;
  }
  
  .blogs .comments-from button:hover svg path {
    stroke: #141414;
  }
  
  .blogs .coments .item {
    position: relative;
  }
  
  .blogs .coments .item .replay {
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .blogs .coments p {
    width: 85%;
  }
  
  .bord-thin-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  
  .blogs .coments .item.replaed {
    margin-left: 80px;
  }
  
  .icon-img-60 {
    width: 60px;
  }
  
  .blogs .comments-from label {
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .blogs .comments-from input,
  .blogs .comments-from textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    padding-bottom: 15px;
  }
  
  .blogs .comments-from button {
    padding: 14px 40px;
    background: #141414;
    border: 0;
    color: #fff;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  
  .blogs .comments-from button svg {
    width: 18px;
    margin-left: 10px;
  }
  
  .sidebar .search-box {
    position: relative;
  }
  
  .sidebar .search-box input {
    color: #141414;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    width: 100%;
    background: transparent;
  }
  
  .sidebar .search-box input:focus {
    border-color: #141414;
  }
  
  .sidebar .search-box .icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .sidebar .widget {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .sidebar .widget .title-widget {
    margin-bottom: 30px;
  }
  
  .sidebar .widget.catogry li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    margin-bottom: 7px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .sidebar .widget.catogry li:hover {
    background: #141414;
    color: #fff;
  }
  
  .sidebar .widget.catogry li:last-of-type {
    margin-bottom: 0;
  }
  
  .sidebar .widget.social a {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
  }
  
  .sidebar .widget.social a:hover {
    background: #141414;
    color: #fff;
  }
  
  .sidebar .widget.insta span {
    width: 110px;
    height: 110px;
    margin: 0 2px;
  }
  
  .sidebar .widget.insta .butn-full {
    background: #141414;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  
  .sidebar .widget.insta .butn-full i {
    margin-right: 10px;
  }
  
  /* Why choose us */
  .intro-marketing {
    position: relative;
  }
  
  .intro-marketing .full-width .v-img {
    position: absolute;
    right: 163px;
    top: 25px;
    -webkit-transform: rotate(30deg) translateX(100%);
    -ms-transform: rotate(30deg) translateX(100%);
    transform: rotate(30deg) translateX(100%);
    width: 200px;
    height: 200px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .intro-marketing .full-width .v-img {
          display: none;  
     }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .intro-marketing .full-width .v-img {
    display: none;  
}
}
@media (max-width: 768px) {
  .intro-marketing .full-width .v-img {
    display: none;  
}
}

  .intro-marketing .vector-icon {
    position: absolute;
    top: 20px;
    right: 30%;
  }
  
  .why-us {
    position: relative;
  }
  
  .skills-box .skill-progress {
    height: 5px;
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .skills-box .skill-progress .progres {
    position: absolute;
    height: 100%;
    width: 40%;
    top: 0;
    left: 0;
    background: #141414;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }
  
  .why-us .sec-head .text {
    position: relative;
  }
  
  .why-us .sec-head .text .sub-font {
    font-size: 170px;
    font-weight: 700;
    line-height: 1.1;
    opacity: .1;
  }
  
  .why-us .sec-head .text .img-vector {
    position: absolute;
    top: 10%;
    right: 30%;
    width: 80px;
  }
  @media screen and (max-width: 768px) {
    .why-us .sec-head .text .img-vector {
        width: 50px;
    }
}
  .why-us .img-top-left {
    position: absolute;
    left: 296px;
    top: 0;
    width: 550px;
    height: 400px;
    -webkit-transform: translateX(-85%);
    -ms-transform: translateX(-85%);
    transform: translateX(-85%);
  }
  
  .why-us .img-top-right {
    position: absolute;
    right: 296px;
    top: 140px;
    width: 400px;
    height: 220px;
    -webkit-transform: translateX(85%);
    -ms-transform: translateX(85%);
    transform: translateX(85%);
  }
  
  .numbers.num-dark {
    background: #141414;
    color: #fff;
  }
  
  .ontop {
    position: relative;
    z-index: 7;
  }
  
  .numbers.num-dark .item h3 {
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
  }
  
  .numbers.num-dark .item:after {
    border-color: rgba(255, 255, 255, 0.1);
    border-right-color: transparent;
  }
  
  .numbers.num-dark .item .icon {
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .numbers.num-dark .item .sm-title {
    color: #fff;
  }
  
  .numbers.num-dark .item .sm-title {
    color: #fff;
  }
  
  .numbers .g-img {
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    bottom: 0;
    pointer-events: none;
  }
  
  .numbers .g-img img {
    width: 100%;
    height: 100%;
  }
@media screen and (max-width: 992px) {
    .why-us .sec-head .text .sub-font {
        font-size: 120px;
    }
}
@media screen and (max-width: 768px) {
  .why-us .sec-head .text .sub-font {
      font-size: 65px;
  }
}
  /* Footer */
  footer .main-footer {
    position: relative;
  }
  
  .section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  
  .bg-blck .bord-thin-top,
  .bg-blck .bord-thin-bottom,
  .bg-blck .bord-thin-right,
  .bg-blck .bord-thin-left {
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .pb-50 {
    padding-bottom: 50px !important;
  }
  
  .mb-50 {
    margin-bottom: 50px !important;
  }
  
  .bord-thin-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  
  footer .call-action h2 {
    font-size: 120px;
    font-weight: 800;
  }
  
  footer .call-action h2 span {
    width: 300px;
    height: 80px;
    border-radius: 50px;
    background-size: cover;
    background-position: center center;
    margin-left: 30px;
  }
  @media screen and (max-width: 992px) {
    footer .call-action h2 {
        font-size: 100px;
    }
}
  @media screen and (max-width: 768px) {
    footer .call-action h2 {
        font-size: 55px;
    }
}
  .butn-circle.butn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .butn-circle {
    width: 180px;
    height: 180px;
    border: 1px solid #141414;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  footer .footer-items .info .logo {
    width: 240px;
  }
  
  .sub-font {
    font-family: "Hanken Grotesk", sans-serif;
  }
  
  footer .footer-items .info .social-text a {
    margin-right: 25px;
    font-size: 13px;
  }
  
  footer .footer-items .info .social-text a i {
    margin-right: 5px;
  }
  
  footer .footer-items .links li {
    font-size: 16px;
    margin-top: 12px;
    opacity: 0.7;
  }
  
  .bg-blck p {
    color: #ddd;
  }
  
  .fz-14 {
    font-size: 14px !important;
  }
  
  footer .footer-items .form-item {
    position: relative;
  }
  
  footer .footer-items .form-item input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    width: 100%;
    padding: 15px;
  }
  
  footer .footer-items .form-item svg {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  footer .sub-footer {
    background: #070707;
  }
  
  footer .sub-footer .slink a {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #eee;
  }
  
  footer .sub-footer .slink a:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border: 0;
  }
  
  footer .paterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  footer .paterns .tringle {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    position: absolute;
    top: calc(50% - 150px);
    left: -200px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  footer .paterns .circle {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    position: absolute;
    left: 25%;
    bottom: 100px;
  }
  
  footer .paterns .logo-img {
    position: absolute;
    top: 50%;
    right: -200px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25%;
    opacity: 0.4;
    -webkit-filter: invert(1);
    filter: invert(1);
  }
  
  footer:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background-image: url(../imgs/vector-img/dots2.png);
    pointer-events: none;
  }






/*========================================================================
 Login
=========================================================================*/
.fxt-template-layout16 {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: #111;
  padding: 15px;
}
.fxt-template-layout16 .fxt-checkbox-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fxt-template-layout16 .fxt-bg-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.fxt-template-layout16 .fxt-content {
  padding: 65px 90px 45px;
  width: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout16 .fxt-content {
    padding: 65px 30px 45px;
  }
}
.fxt-template-layout16 .fxt-header {
  text-align: center;
  margin-bottom: 50px;
}
.fxt-template-layout16 .fxt-header .fxt-logo {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.fxt-template-layout16 .fxt-header h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}
.fxt-template-layout16 .fxt-header p {
  color: #999898;
}
.fxt-template-layout16 .fxt-form h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}
.fxt-template-layout16 .fxt-form .fxt-otp-logo {
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.fxt-template-layout16 .fxt-form .fxt-otp-label {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
.fxt-template-layout16 .fxt-form p {
  font-size: 18px;
  color: #111111;
  text-align: center;
}
.fxt-template-layout16 .fxt-form p span {
  display: block;
}
.fxt-template-layout16 .fxt-form .form-group {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.fxt-template-layout16 .fxt-form .form-group .field-icon {
  position: absolute;
  z-index: 1;
  right: 19px;
  bottom: 18px;
  font-size: 14px;
  color: #a1a1a1;
}
.fxt-template-layout16 .fxt-form .form-group .field-icon:before {
  padding: 17px 10px;
}
.fxt-template-layout16 .fxt-form .form-control {
  min-height: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e7e7e7;
  padding: 10px 15px;
  color: #111;
  width: 100%;
}
.fxt-template-layout16 .fxt-form input::-webkit-input-placeholder {
  color: #a1a1a1;
  font-size: 15px;
  font-weight: 300;
}
.fxt-template-layout16 .fxt-form input::-moz-placeholder {
  color: #a1a1a1;
  font-size: 15px;
  font-weight: 300;
}
.fxt-template-layout16 .fxt-form input:-moz-placeholder {
  color: #a1a1a1;
  font-size: 15px;
  font-weight: 300;
}
.fxt-template-layout16 .fxt-form input:-ms-input-placeholder {
  color: #a1a1a1;
  font-size: 15px;
  font-weight: 300;
}
.fxt-template-layout16 .fxt-form .fxt-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.fxt-template-layout16 .fxt-form .fxt-form-row .fxt-form-col {
  padding: 10px 5px;
  text-align: center;
  margin-right: 10px;
  flex-basis: 0;
  flex-grow: 1;
}
.fxt-template-layout16 .fxt-form .fxt-form-row .fxt-form-col:last-child {
  margin-right: 0;
}
.fxt-template-layout16 .fxt-form .fxt-form-btn {
  margin-bottom: 10px;
}
.fxt-template-layout16 .fxt-btn-fill {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 0;
  /* color: #fff; */
  border-radius: 3px;
  /* background-color: #111; */
  padding: 10px 36px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(120deg, #41A8F3 0%, #9B28A6 60%), linear-gradient(120deg, #41A8F3 0%, #9B28A6 60%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: #ffffff;
}
.fxt-template-layout16 .fxt-btn-fill:hover {
  background-color: #333;
  border-color: #fff;
  color: #ffffff;
}
.fxt-template-layout16 .fxt-btn-fill:focus {
  outline: none;
}
.fxt-template-layout16 .switcher-text {
  color: #9b28a6;
  font-size: 15px;
  margin-bottom: 5px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout16 .switcher-text:hover {
  color: #000000;
}
.fxt-template-layout16 .switcher-text2 {
  color: #9b28a6;
  font-size: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout16 .switcher-text2.inline-text {
  margin-left: 3px;
}
.fxt-template-layout16 .switcher-text2:hover {
  color: #000000;
}
.fxt-template-layout16 .fxt-style-line {
  overflow: hidden;
  text-align: center;
}
.fxt-template-layout16 .fxt-style-line h3 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 30px;
  font-size: 20px;
  color: #a4a4a4;
  display: inline-block;
  position: relative;
  padding: 0 25px;
  z-index: 1;
}
.fxt-template-layout16 .fxt-style-line h3:before {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #ebebeb;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}
.fxt-template-layout16 .fxt-style-line h3:after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #ebebeb;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}
.fxt-template-layout16 ul.fxt-socials {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 20px;
}
.fxt-template-layout16 ul.fxt-socials li {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout16 ul.fxt-socials li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 350px) {
  .fxt-template-layout16 ul.fxt-socials li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.fxt-template-layout16 ul.fxt-socials li a {
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  font-size: 14px;
  height: 45px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout16 ul.fxt-socials li a i {
  border-radius: 2px 0 0 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}
.fxt-template-layout16 ul.fxt-socials li a span {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-facebook a {
  background-color: #3b5998;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-facebook a i {
  background-color: #4867aa;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-facebook a:hover {
  background-color: #5676bb;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-twitter a {
  background-color: #00acee;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-twitter a i {
  background-color: #33ccff;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-twitter a:hover {
  background-color: #3dc5f3;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-google a {
  background-color: #CC3333;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-google a i {
  background-color: #db4437;
}
.fxt-template-layout16 ul.fxt-socials li.fxt-google a:hover {
  background-color: #e75042;
}
.fxt-template-layout16 .checkbox {
  padding-left: 5px;
  margin-right: 30px;
  margin-bottom: 5px;
}
.fxt-template-layout16 .checkbox label {
  padding-left: 20px;
  color: #a4a4a4;
  margin-bottom: 0;
  font-size: 15px;
  position: relative;
}
.fxt-template-layout16 .checkbox label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 4px;
  left: 0;
  margin-left: -5px;
  border: 1px solid;
  border-color: #dcdcdc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.fxt-template-layout16 .checkbox label:after {
  position: absolute;
  margin-left: -20px;
  padding-left: 3px;
  font-size: 10px;
  color: #555555;
}
.fxt-template-layout16 .checkbox input[type="checkbox"] {
  display: none;
}
.fxt-template-layout16 .checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  font-weight: 900;
  color: #ffffff;
  left: 16px;
  top: 8px;
}
.fxt-template-layout16 .checkbox input[type="checkbox"]:checked + label::before {
  background-color: #111;
  border-color: #111;
}
.fxt-template-layout16 .fxt-footer {
  text-align: center;
}
.fxt-template-layout16 .fxt-footer p {
  color: #999898;
}
.fxt-template-layout16 .fxt-footer .fxt-resend-wrap {
  margin-bottom: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  width: 100%;
}
.fxt-template-layout16 .fxt-footer .fxt-btn-resend {
  margin-left: 3px;
  box-shadow: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  color: #9b28a6;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout16 .fxt-footer .fxt-btn-resend:focus {
  outline: none;
}
.fxt-template-layout16 .fxt-footer .fxt-btn-resend:hover {
  color: #000000;
}
.fxt-template-layout16 .fxt-footer .text-or {
  margin-left: 3px;
  color: #000000;
}
.fxt-header img {
  width: 165px;
}