@charset "UTF-8";

@import url("bootstrap.min.css");
@import url("animate.css");
@import url("custom-animation.css");
@import url("swiper-bundle.css");
@import url("slick.css");
@import url("flaticon.css");
@import url("meanmenu.css");
@import url("font-awesome-pro.css");
@import url("magnific-popup.css");
@import url("spacing.css");


:root {
    /**
    @font family declaration
    */
    --tp-ff-body: "DM Sans", sans-serif;
    --tp-ff-heading: "DM Sans", sans-serif;
    --tp-ff-p: "DM Sans", sans-serif;
    --tp-ff-fontawesome: Font Awesome 5 Pro;
    /**
    @color declaration
    */
    --tp-common-white: #ffffff;
    --tp-common-black: #292930;
    --tp-common-blue: #82cefd;
    --tp-common-pink: #cd88a1;
    --tp-common-dpink: #fd346e;
    --tp-common-paste: #1ee2cf;
    --tp-heading-primary: #292930;
    --tp-grey-1: #f7f8fd;
    --tp-grey-2: #f8f8f8;
    --tp-text-body: #404045;
    --tp-text-p: #404045;
    --tp-theme-1: #4134D3;
    --tp-theme-2: #423ef3;
    --tp-theme-primary: #F49B20;
    --tp-theme-secondary: #80c7ed;
    --tp-border-1: #e8ecf2;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /*---------------------------------
	typography css start 
---------------------------------*/

body {
    font-family: var(--tp-ff-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--tp-text-body);
    line-height: 26px;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    transition: 0.3s;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--tp-ff-heading);
    color: var(--tp-header-1);
    margin-top: 0px;
    font-weight: var(--tp-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 28px;
  }
  
  h4 {
    font-size: 24px;
  }
  
  h5 {
    font-size: 20px;
  }
  
  h6 {
    font-size: 16px;
  }
  
  ul {
    margin: 0px;
    padding: 0px;
  }
  
  p {
    font-family: var(--tp-ff-p);
    font-size: 18px;
    font-weight: 400;
    color: var(--tp-text-body);
    margin-bottom: 15px;
    line-height: 30px;
  }
  
  .z-index {
    position: relative;
    z-index: 3;
  }
  
  a,
  .btn,
  button,
  input,
  select,
  textarea,
  li,
  img,
  .transition-3,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  li {
    list-style: none;
  }
  
  a:focus,
  .button:focus {
    text-decoration: none;
    outline: none;
  }
  
  a:focus,
  a:hover {
    color: inherit;
    text-decoration: none;
  }
  
  a,
  button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
  }
  
  button:hover {
    cursor: pointer;
  }
  
  button:focus {
    outline: 0;
  }
  
  .uppercase {
    text-transform: uppercase;
  }
  
  .capitalize {
    text-transform: capitalize;
  }
  
  input {
    outline: none;
  }
  
  input[type="color"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
  }
  
  *::-moz-selection {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
  }
  
  ::-moz-selection {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
  }
  
  ::selection {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    text-shadow: none;
  }
  
  *::-moz-placeholder {
    color: var(--tp-common-black);
    font-size: var(--tp-fz-body);
    opacity: 1;
  }
  
  *::placeholder {
    color: var(--tp-common-black);
    font-size: var(--tp-fz-body);
    opacity: 1;
  }
  
  /*---------------------------------
      common classes css start 
  ---------------------------------*/
  
  .w-img img {
    width: 100%;
  }
  
  .m-img img {
    max-width: 100%;
  }
  
  .fix {
    overflow: hidden;
  }
  
  .clear {
    clear: both;
  }
  
  .f-left {
    float: left;
  }
  
  .f-right {
    float: right;
  }
  
  .z-index-1 {
    position: relative;
    z-index: 2;
  }
  
  .z-index {
    position: relative;
    z-index: 1;
  }
  
  .overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .p-relative {
    position: relative;
  }
  
  .p-absolute {
    position: absolute;
  }
  
  .include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .gx-45 {
    --bs-gutter-x: 45px;
  }
  
  @media (max-width: 767px) {
    .gx-45 {
      --bs-gutter-x: 15px;
    }
  }
  
  .gx-12 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .gx-12 {
      --bs-gutter-x: 30px;
    }
  }
  
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  
  @media (max-width: 767px) {
    .gx-40 {
      --bs-gutter-x: 0px;
    }
  }
  
  .gx-120 {
    --bs-gutter-x: 120px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .gx-120 {
      --bs-gutter-x: 50px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .gx-120 {
      --bs-gutter-x: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .gx-120 {
      --bs-gutter-x: 0px;
    }
  }
  
  .gx-1 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
  
  .tp-gx-20 {
    --bs-gutter-x: 20px;
  }
  
  .tp-gx-15 {
    --bs-gutter-x: 15px;
  }
  
  .gx-6 {
    --bs-gutter-x: 60px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .gx-6 {
      --bs-gutter-x: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .gx-6 {
      --bs-gutter-x: 15px;
    }
  }
  
  .gx-7 {
    --bs-gutter-x: 70px;
  }
  
  @media (max-width: 767px) {
    .gx-7 {
      --bs-gutter-x: 0px;
    }
  }
  
  .gx-17 {
    --bs-gutter-x: 17px;
    --bs-gutter-y: 17px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .gx-17 {
      --bs-gutter-x: 30px;
      --bs-gutter-y: 30px;
    }
  }
  
  .gx-50 {
    --bs-gutter-x: 50px;
  }
  
  @media (max-width: 767px) {
    .gx-50 {
      --bs-gutter-x: 0px;
    }
  }
  
  .radius-20 {
    border-radius: 20px;
  }
  
  /*--
      - Spacing
  -----------------------------------------*/
  
  .tp-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  .tp-btn i {
    padding-left: 17px;
  }
  
  .tp-btn:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .tp-btn:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn::before,
  .tp-btn::after {
    content: "";
    background: #ffdc60;
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-btn {
      height: 60px;
      line-height: 60px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-btn {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-sky-similar {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-blue);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  .tp-btn-sky-similar i {
    padding-left: 17px;
  }
  
  .tp-btn-sky-similar:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .tp-btn-sky-similar:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-sky-similar::before,
  .tp-btn-sky-similar::after {
    content: "";
    background: #fff;
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-sky-similar::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-sky-similar::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sky-similar:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sky-similar:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-sm-sky {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-blue);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  .tp-btn-sm-sky i {
    padding-left: 17px;
  }
  
  .tp-btn-sm-sky:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .tp-btn-sm-sky:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-sm-sky::before,
  .tp-btn-sm-sky::after {
    content: "";
    background: #ffdc60;
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-sm-sky::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-sm-sky::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sm-sky:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sm-sky:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-sky {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-blue);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media (max-width: 767px) {
    .tp-btn-sky {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-sky i {
    padding-left: 17px;
  }
  
  .tp-btn-sky:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .tp-btn-sky:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-sky::before,
  .tp-btn-sky::after {
    content: "";
    background: #ffdc60;
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-sky::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-sky::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sky:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sky:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-black {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-btn-black {
      height: 60px;
      line-height: 60px;
    }
  }
  
  .tp-btn-black i {
    padding-left: 17px;
  }
  
  .tp-btn-black:hover {
    color: var(--tp-common-white);
  }
  
  .tp-btn-black:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-black::before,
  .tp-btn-black::after {
    content: "";
    background: var(--tp-common-black);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-black::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-black::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-black:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-black:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-black {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-sm {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-sm {
      margin-right: 30px;
    }
  }
  
  .tp-btn-sm i {
    padding-left: 17px;
  }
  
  .tp-btn-sm:hover {
    color: var(--tp-common-black);
  }
  
  .tp-btn-sm:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-sm::before,
  .tp-btn-sm::after {
    content: "";
    background: #ffdc60;
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-sm::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-sm::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sm:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-sm:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-grey {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-theme-1);
    background: #ebebf9;
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-btn-grey {
      height: 60px;
      line-height: 60px;
    }
  }
  
  .tp-btn-grey i {
    padding-left: 17px;
  }
  
  .tp-btn-grey:hover {
    color: var(--tp-common-white);
  }
  
  .tp-btn-grey:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-grey::before,
  .tp-btn-grey::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-grey::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-grey::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-grey:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-grey:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-grey {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-grey-sm {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-theme-1);
    background: rgba(89, 86, 233, 0.1);
    height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0 35px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: uppercase;
  }
  
  .tp-btn-grey-sm i {
    padding-left: 17px;
  }
  
  .tp-btn-grey-sm:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .tp-btn-grey-sm:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-lg-yellow {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-theme-primary);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    outline: none;
    border: 0;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-lg-yellow {
      padding: 0 35px;
    }
  }
  
  .tp-btn-lg-yellow i {
    padding-left: 17px;
  }
  
  .tp-btn-lg-yellow:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-1);
  }
  
  .tp-btn-lg-yellow:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-lg-yellow::before,
  .tp-btn-lg-yellow::after {
    content: "";
    background: var(--tp-common-white);
    color: var(--tp-common-black);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-lg-yellow::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-lg-yellow::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-lg-yellow:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-lg-yellow:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-lg-yellow {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-yellow {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-theme-primary);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-btn-yellow {
      padding: 0 30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-yellow {
      padding: 0 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-btn-yellow {
      height: 56px;
      line-height: 56px;
      left: 0;
      right: auto;
    }
  }
  
  .tp-btn-yellow i {
    padding-left: 17px;
  }
  
  .tp-btn-yellow:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-secondary);
  }
  
  .tp-btn-yellow:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-yellow::before,
  .tp-btn-yellow::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-yellow::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-yellow::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-yellow:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-yellow:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-border-sm {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    border: 1px solid #f6f6f6;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-border-sm {
      padding: 0 35px;
    }
  }
  
  .tp-btn-border-sm i {
    padding-left: 17px;
  }
  
  .tp-btn-border-sm:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .tp-btn-border-sm:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  @media (max-width: 767px) {
    .tp-btn-border-sm {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-yellow-sm {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-theme-primary);
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-yellow-sm {
      padding: 0 35px;
    }
  }
  
  .tp-btn-yellow-sm i {
    padding-left: 17px;
  }
  
  .tp-btn-yellow-sm:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-secondary);
  }
  
  .tp-btn-yellow-sm:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-yellow-sm::before,
  .tp-btn-yellow-sm::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-yellow-sm::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-yellow-sm::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-yellow-sm:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-yellow-sm:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-yellow-sm {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-yellow-semilar {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-theme-primary);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-btn-yellow-semilar {
      padding: 0 30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-yellow-semilar {
      padding: 0 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-btn-yellow-semilar {
      height: 56px;
      line-height: 56px;
      left: 0;
      right: auto;
    }
  }
  
  .tp-btn-yellow-semilar i {
    padding-left: 17px;
  }
  
  .tp-btn-yellow-semilar:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
  }
  
  .tp-btn-yellow-semilar:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-yellow-semilar::before,
  .tp-btn-yellow-semilar::after {
    content: "";
    background: var(--tp-theme-secondary);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-yellow-semilar::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-yellow-semilar::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-yellow-semilar:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-yellow-semilar:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-yellow-semilar {
      height: 56px;
      line-height: 56px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-button .tp-btn-yellow-semilar {
      padding: 0 50px;
      height: 60px;
      line-height: 60px;
    }
  }
  
  .tp-btn-white-border {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    border-bottom: 3px solid var(--tp-theme-1);
    box-shadow: 0px 2px 55px rgba(168, 182, 218, 0.32);
  }
  
  @media (max-width: 767px) {
    .tp-btn-white-border {
      height: 50px;
      line-height: 50px;
      padding: 0 20px;
    }
  }
  
  .tp-btn-white-border i {
    padding-left: 17px;
  }
  
  .tp-btn-white-border:hover {
    color: var(--tp-common-white);
  }
  
  .tp-btn-white-border:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-white-border::before,
  .tp-btn-white-border::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-white-border::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white-border::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-border:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-border:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    box-shadow: 0px 2px 55px rgba(168, 182, 218, 0.32);
  }
  
  .tp-btn-white i {
    padding-left: 17px;
  }
  
  .tp-btn-white:hover {
    color: var(--tp-common-white);
  }
  
  .tp-btn-white:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-white::before,
  .tp-btn-white::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-white::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-white {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-white-md {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    box-shadow: 0px 11px 12px #ebe9f3;
  }
  
  .tp-btn-white-md i {
    padding-left: 40px;
  }
  
  .tp-btn-white-md:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
  }
  
  .tp-btn-white-md:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-white-md::before,
  .tp-btn-white-md::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-white-md::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white-md::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-md:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-md:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white-brand {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    box-shadow: 0px 11px 12px #ebe9f3;
  }
  
  .tp-btn-white-brand i {
    padding-left: 15px;
  }
  
  .tp-btn-white-brand:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-btn-white-brand:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-white-sm {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
    box-shadow: 0px 11px 12px #ebe9f3;
  }
  
  .tp-btn-white-sm i {
    padding-left: 15px;
  }
  
  .tp-btn-white-sm:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
  }
  
  .tp-btn-white-sm:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-white-sm::before,
  .tp-btn-white-sm::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-white-sm::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white-sm::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-sm:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-sm:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white-lg {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-common-black);
    background: var(--tp-common-white);
    height: 90px;
    line-height: 90px;
    text-align: center;
    padding-left: 30px;
    padding-right: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-btn-white-lg {
      height: 80px;
      line-height: 80px;
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-btn-white-lg {
      width: 100%;
      margin-bottom: 15px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-btn-white-lg {
      height: 75px;
      line-height: 75px;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-btn-white-lg {
      height: 70px;
      line-height: 70px;
      padding-right: 10px;
      padding-left: 10px;
      margin-bottom: 15px;
      display: block;
    }
  }
  
  .tp-btn-white-lg i {
    padding-left: 40px;
  }
  
  .tp-btn-white-lg:hover {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-1);
  }
  
  .tp-btn-white-lg:hover i {
    animation: tfLeftToRight 0.5s forwards;
  }
  
  .tp-btn-white-lg::before,
  .tp-btn-white-lg::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-white-lg::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-white-lg::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-lg:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-white-lg:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .tp-btn-border {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #3f3f47;
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 50px;
    position: relative;
    color: var(--tp-theme-primary);
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  .tp-btn-border i {
    padding-left: 18px;
  }
  
  .tp-btn-border:hover {
    color: var(--tp-common-white);
    border-color: var(--tp-theme-1);
  }
  
  .tp-btn-border::before,
  .tp-btn-border::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-border::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-border::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-border:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-border:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-border {
      height: 56px;
      line-height: 56px;
    }
  }
  
  .tp-btn-border-2 {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #f6f6f6;
    height: 55px;
    line-height: 55px;
    text-align: center;
    padding: 0 70px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    text-transform: capitalize;
  }
  
  .tp-btn-border-2 i {
    padding-left: 18px;
  }
  
  .tp-btn-border-2:hover {
    color: var(--tp-common-black);
    border-color: var(--tp-theme-1);
  }
  
  .tp-btn-border-2::before,
  .tp-btn-border-2::after {
    content: "";
    background: var(--tp-theme-1);
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .tp-btn-border-2::before {
    top: 0;
    left: 0;
    right: auto;
  }
  
  .tp-btn-border-2::after {
    bottom: 0;
    right: 0;
    left: auto;
  }
  
  .tp-btn-border-2:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  .tp-btn-border-2:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  @media (max-width: 767px) {
    .tp-btn-border-2 {
      height: 56px;
      line-height: 56px;
    }
  }
  
  /* pulse effect animation */
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
  
    70% {
      -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
  
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
  
    70% {
      -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
  
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  @keyframes tfLeftToRight {
    49% {
      transform: translateX(30%);
    }
  
    50% {
      opacity: 0;
      transform: translateX(-30%);
    }
  
    51% {
      opacity: 1;
    }
  }
  
  @keyframes rotate2 {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes moving {
    0% {
      transform: translatey(0px);
    }
  
    20% {
      transform: translateX(-50px);
    }
  
    50% {
      transform: translatey(-40px);
    }
  
    100% {
      transform: translatey(0px);
    }
  }
  
  @keyframes leftright {
    0% {
      transform: translatex(0);
    }
  
    50% {
      transform: translateX(100%);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes movinglight {
    0% {
      transform: translatey(0px);
    }
  
    20% {
      transform: translateX(-70px);
    }
  
    50% {
      transform: translatey(-70px);
    }
  
    100% {
      transform: translatey(0px);
    }
  }
  
  @keyframes movinglight2 {
    0% {
      transform: translatey(0px);
    }
  
    20% {
      transform: translateX(70px);
    }
  
    50% {
      transform: translatey(70px);
    }
  
    100% {
      transform: translatey(0px);
    }
  }
  
  @keyframes movingtop {
    0% {
      transform: translatey(0px);
    }
  
    20% {
      transform: translatey(70px);
    }
  
    50% {
      transform: translatey(-70px);
    }
  
    100% {
      transform: translatey(0px);
    }
  }
  
  @keyframes circle-animation {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes circle-animation2 {
    0% {
      transform: scale(-1, 1) rotate(360deg);
    }
  
    100% {
      transform: scale(-1, 1) rotate(0deg);
    }
  }
  
  @keyframes zoom {
    0% {
      transform: scale(0.5);
    }
  
    50% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(0.5);
    }
  }
  
  @keyframes zoom2 {
    0% {
      transform: scale(0.9);
    }
  
    50% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(0.9);
    }
  }
  
  @keyframes wobble-vertical {
    10% {
      transform: translateY(-10px);
    }
  
    50% {
      transform: skew(15deg);
    }
  
    80% {
      transform: rotate(10deg);
    }
  
    100% {
      transform: translate(0);
    }
  }
  
  @-webkit-keyframes section-highlight {
    0% {
      width: 0%;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @-moz-keyframes section-highlight {
    0% {
      width: 0%;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @-ms-keyframes section-highlight {
    0% {
      width: 0%;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @keyframes section-highlight {
    0% {
      width: 0%;
    }
  
    100% {
      width: 100%;
    }
  }
  
  @keyframes widthcalc {
    0% {
      width: 20%;
    }
  
    50% {
      width: 50%;
    }
  
    75% {
      width: 90%;
    }
  
    90% {
      opacity: 75%;
    }
  
    90% {
      opacity: 100%;
    }
  }
  
  /* right bounce */
  
  @-webkit-keyframes bounceRight {
  
    0%,
    20%,
    50%,
    80%,
    100% {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    40% {
      -ms-transform: translateX(-90px);
      transform: translateX(-90px);
    }
  
    60% {
      -ms-transform: translateX(-15px);
      transform: translateX(-15px);
    }
  }
  
  @-moz-keyframes bounceRight {
  
    0%,
    20%,
    50%,
    80%,
    100% {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    40% {
      -ms-transform: translateX(-90px);
      transform: translateX(-90px);
    }
  
    60% {
      -ms-transform: translateX(-15px);
      transform: translateX(-15px);
    }
  }
  
  @keyframes bounceRight {
  
    0%,
    20%,
    50%,
    80%,
    100% {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  
    40% {
      -ms-transform: translateX(-90px);
      transform: translateX(-90px);
    }
  
    60% {
      -ms-transform: translateX(-15px);
      transform: translateX(-15px);
    }
  }
  
  /* /right bounce */
  
  @keyframes icon-bounce {
  
    0%,
    100%,
    20%,
    50%,
    80% {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  
    40% {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      -o-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  
    60% {
      -webkit-transform: translateY(-5px);
      -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
      -o-transform: translateY(-5px);
      transform: translateY(-5px);
    }
  }
  
  /*--
      - Background color
  -----------------------------------------*/
  
  .grey-bg {
    background: var(--tp-grey-1);
  }
  
  .white-bg {
    background: var(--tp-common-white);
  }
  
  .black-bg {
    background: var(--tp-common-black);
  }
  
  .theme-bg {
    background: var(--tp-theme-2);
  }
  
  .sky-bg {
    background: var(--tp-common-blue);
  }
  
  .yellow-bg {
    background: var(--tp-theme-primary);
    border-radius: 20px;
  }
  
  .bg-radius-none {
    border-radius: inherit;
  }
  
  .body-overlay.apply {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: 0.3s;
  }
  
  .breadcrumb__pt-310 {
    padding-top: 300px;
    padding-bottom: 145px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .breadcrumb__pt-310 {
      padding-top: 120px;
    }
  }
  
  .breadcrumb__title {
    font-size: 65px;
    color: var(--tp-common-black);
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  @media (max-width: 767px) {
    .breadcrumb__title {
      font-size: 40px;
    }
  }
  
  .ac-about-shape-img {
    position: absolute;
    bottom: -17px;
    left: 34px;
  }
  
  .ac-testimonial-space {
    padding-top: 115px;
    padding-bottom: 130px;
  }
  
  @media (max-width: 767px) {
    .ac-testimonial-space {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .breadcrumb__area {
      background-size: cover;
      background-position: right;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .breadcrumb__area {
      background-size: cover;
      background-position: left;
    }
  }
  
  .tp-custom-accordio .accordion-items {
    margin-bottom: 20px;
  }
  
  .tp-custom-accordio .accordion-buttons {
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    padding: 40px 45px;
    background-color: var(--tp-common-white);
    color: #212121;
    border-radius: 10px 10px 0 0;
  }
  
  @media (max-width: 767px) {
    .tp-custom-accordio .accordion-buttons {
      font-size: 17px;
      padding: 28px 20px;
    }
  }
  
  .tp-custom-accordio .accordion-buttons::after {
    position: absolute;
    content: "\f063";
    font-family: "Font Awesome 5 Pro";
    background-image: none;
    top: 45px;
    right: 45px;
    color: #b8bcc8;
    width: auto;
    height: auto;
    font-weight: 500;
    font-size: 14px;
  }
  
  @media (max-width: 767px) {
    .tp-custom-accordio .accordion-buttons::after {
      top: 33px;
      right: 18px;
    }
  }
  
  .tp-custom-accordio .accordion-buttons.collapsed::after {
    content: "\f062";
  }
  
  .tp-custom-accordio .collapsed {
    border-radius: 10px 10px 10px 10px;
  }
  
  .tp-custom-accordio .accordion-body {
    background-color: var(--tp-common-white);
    padding: 20px 45px;
    box-shadow: 0px 25px 32px 0px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    border-radius: 0 0px 10px 10px;
    font-size: 16px;
  }
  
  @media (max-width: 767px) {
    .tp-custom-accordio .accordion-body {
      padding: 20px 25px;
    }
  }
  
  .tp-custom-accordio .accordion-body::before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--tp-grey-1);
    top: 0;
    left: 45px;
    right: 45px;
  }
  
  .faq-accordio-border .accordion-items {
    background-color: var(--tp-common-white);
    border: 1px solid #f5f5f5;
    border-radius: 10px;
  }
  
  .tp-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #404045;
    margin-bottom: 20px;
  }
  
  .tp-subtitle::before {
    height: 12px;
    width: 12px;
    background-color: var(--tp-theme-primary);
    content: "";
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .tp-subtitle-before-color {
    color: rgba(41, 41, 48, 0.6);
  }
  
  .tp-subtitle-before-color::before {
    background-color: rgba(41, 41, 48, 0.6);
  }
  
  .tp-title {
    font-size: 60px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 40px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-title {
      font-size: 50px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-title {
      font-size: 42px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-title {
      font-size: 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-title {
      font-size: 35px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-title {
      font-size: 35px;
    }
  }
  
  .tp-title-sm {
    font-size: 50px;
    letter-spacing: 0;
    color: var(--tp-common-black);
    font-weight: 700;
    letter-spacing: -2px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-title-sm {
      font-size: 45px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-title-sm {
      font-size: 38px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-title-sm {
      font-size: 38px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-title-sm {
      font-size: 35px;
    }
  }
  
  .tp-white-text {
    color: var(--tp-common-white);
  }
  
  .subtitle-secondary-color {
    color: #d2d2d2;
  }
  
  .tp-section-highlight {
    position: relative;
    z-index: 1;
    display: inline-block;
  }
  
  .tp-section-highlight svg {
    position: absolute;
    bottom: 11px;
    left: 2px;
    z-index: -1;
    width: 0%;
    -moz-animation: section-highlight 1s ease-in-out 0.3s forwards;
    -webkit-animation: section-highlight 1s ease-in-out 0.3s forwards;
    animation: section-highlight 1s ease-in-out 0.3s forwards;
  }
  
  /*----------------------------------------*/
  
  /*  13. header CSS START
  /*----------------------------------------*/
  
  .tp-main-menu ul li {
    display: inline-block;
    margin-right: 60px;
    position: relative;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-main-menu ul li {
      margin-right: 40px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-main-menu ul li {
      margin-right: 32px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-main-menu ul li {
      margin-right: 25px;
    }
  }
  
  .tp-main-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #4134D3;
    text-transform: capitalize;
    position: relative;
    padding: 37px 0;
    display: inline-block;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-main-menu ul li a {
      font-size: 15px;
    }
  }
  
  .tp-main-menu ul li a i {
    margin-left: 5px;
    transform: translateY(2px);
    transition: 0.4s;
  }
  
  .tp-main-menu ul li a::after {
    position: absolute;
    content: "";
    bottom: 25px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-1);
    border-radius: 33px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
  }
  
  .tp-main-menu ul li a::before {
    position: absolute;
    content: "";
    bottom: 25px;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-primary);
    border-radius: 33px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .tp-main-menu ul li:hover a {
    color: var(--tp-common-black);
  }
  
  .tp-main-menu ul li:hover a::after {
    visibility: visible;
    opacity: 1;
    width: 90%;
  }
  
  .tp-main-menu ul li:hover a::before {
    visibility: visible;
    opacity: 1;
    width: 50%;
  }
  
  .tp-main-menu ul li:hover a i {
    transform: rotate(-180deg);
  }
  
  .tp-main-menu ul li:hover ul.submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  
  .tp-main-menu ul li ul.submenu {
    position: absolute;
    background-color: var(--tp-common-black);
    padding: 40px;
    width: 270px;
    transition: 0.3s;
    top: 110%;
    opacity: 0;
    visibility: hidden;
  }
  
  .tp-main-menu ul li ul.submenu li {
    margin: 0;
    margin-bottom: 10px;
    display: block;
  }
  
  .tp-main-menu ul li ul.submenu li:last-child {
    margin-bottom: 0;
  }
  
  .tp-main-menu ul li ul.submenu li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--tp-common-white);
    display: block;
    padding: 0;
  }
  
  .tp-main-menu ul li ul.submenu li a::after,
  .tp-main-menu ul li ul.submenu li a::before {
    display: none;
  }
  
  .tp-main-menu ul li ul.submenu li a:hover {
    color: var(--tp-theme-primary);
  }
  
  .tp-main-menu ul li:hover::after {
    color: var(--tp-common-black);
    transform: rotate(-180deg);
  }
  
  .hasdropdown-white {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  .hasdropdown-white .hasdropdown::after {
    color: var(--tp-common-white);
  }
  
  .hasdropdown-white .hasdropdown:hover::after {
    color: var(--tp-theme-primary);
  }
  
  .header-space-three {
    padding-right: 115px;
    padding-left: 115px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .header-space-three {
      padding-right: 100px;
      padding-left: 100px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-space-three {
      padding-right: 50px;
      padding-left: 50px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-space-three {
      padding-right: 0px;
      padding-left: 0px;
    }
  }
  
  .tp-header-bs-area {
    padding-right: 115px;
    padding-left: 115px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-header-bs-area {
      padding-right: 40px;
      padding-left: 40px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-bs-area {
      padding-right: 0px;
      padding-left: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-header-bs-area {
      padding-right: 0px;
      padding-left: 0px;
    }
  }
  
  .tp-header-right button {
    font-size: 25px;
    color: #222;
    margin-left: 30px;
    height: 57px;
    width: 57px;
    line-height: 57px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px -2px 12px #ebe9f3;
  }
  
  .tp-shadow-transparent button {
    box-shadow: none;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-shadow-transparent button {
      box-shadow: 0px -2px 12px #ebe9f3;
    }
  }
  
  .header-space-two {
    padding-top: 35px;
  }
  
  .tp-header-button {
    line-height: 0;
  }
  
  .bar button {
    font-size: 25px;
    color: #222;
    margin-left: 30px;
    height: 57px;
    width: 57px;
    line-height: 57px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px -2px 12px #ebe9f3;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .bar button {
      box-shadow: none;
    }
  }
  
  .tp-header-bg {
    background-color: var(--tp-common-white);
    margin-left: 80px;
    margin-right: 80px;
    padding: 0px 35px;
    margin-top: 50px;
    border-radius: 10px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-header-bg {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .tp-menu-bar button {
    font-size: 30px;
    color: var(--tp-common-black);
    font-weight: 400;
    height: 70px;
    width: 70px;
    background-color: var(--tp-common-white);
    text-align: center;
    line-height: 70px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    z-index: 2;
  }
  
  .tp-menu-bar button:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
  }
  
  .header-transparent {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .header-transparent {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .header-transparent {
      padding-left: 50px;
      padding-right: 50px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-transparent {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-transparent {
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-transparent-two {
      margin-left: 30px;
      margin-right: 30px;
      padding-left: 5px;
      padding-right: 5px;
    }
  }
  
  .header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--tp-common-white);
    width: 100%;
    padding-top: 0px;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0px 2px 55px rgba(168, 182, 218, 0.32);
    z-index: 99;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .header-sticky {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }
  
  .header-sticky .tp-menu-bar button {
    box-shadow: 0px 2px 55px rgba(168, 182, 218, 0.32);
  }
  
  .header-sticky .header-space-two {
    padding: 0;
  }
  
  .header-sticky.tp-header-bg {
    margin-top: 0;
    margin-left: 0;
    border-radius: 0;
  }
  
  .header-sticky .tp-main-menu ul li a {
    padding: 35px 0;
  }
  
  .hasdropdown-white.header-sticky {
    background-color: var(--tp-theme-1);
    padding-bottom: 0px;
    padding-top: 0;
    box-shadow: none;
  }
  
  .hasdropdown-white.header-sticky .tp-main-menu nav>ul>li>a {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  .tp-md-header-area.header-sticky .bar .tp-menu-bar button {
    box-shadow: 0px 2px 55px rgba(168, 182, 218, 0.32);
  }
  
  .tp-green-bg.header-sticky {
    background: var(--tp-theme-1);
  }
  
  .tp-green-bg button {
    box-shadow: none;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-menu-white ul li {
      margin-right: 32px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-menu-white ul li {
      margin-right: 26px;
    }
  }
  
  .tp-menu-white ul li a {
    color: var(--tp-common-white);
    padding: 30px 0;
  }
  
  .tp-menu-white ul li a::after {
    display: none;
  }
  
  .tp-menu-white ul li a::before {
    display: none;
  }
  
  .tp-menu-white ul li:hover a {
    color: var(--tp-theme-primary);
  }
  
  .tp-menu-white ul li:hover ul.submenu {
    top: 100%;
  }
  
  .tp-menu-white ul li ul.submenu {
    top: 110%;
  }
  
  .tp-menu-black ul li {
    margin-right: 55px;
  }
  
  .tp-menu-black ul li a {
    font-size: 16px;
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-menu-black ul li {
      margin-right: 40px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-menu-black ul li {
      margin-right: 30px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-menu-black ul li {
      margin-right: 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-menu-black ul li {
      margin-right: 22px;
    }
  }
  
  .login-color-black a {
    color: var(--tp-common-black);
    transition: 0.3s;
  }
  
  .login-color-black a:hover {
    color: var(--tp-theme-1);
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-bs-menu ul li {
      margin-right: 43px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-bs-menu ul li {
      margin-right: 32px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-bs-menu ul li {
      margin-right: 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-bs-menu ul li {
      margin-right: 22px;
    }
  }
  
  .tp-yellow-space {
    margin-left: 200px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-yellow-space {
      margin-left: 110px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-yellow-space {
      margin-left: 0;
    }
  }
  
  .tp-header-yellow-button {
    line-height: 0;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-header-yellow-button {
      margin-left: 30px;
    }
  }
  
  .tp-header-login {
    font-size: 18px;
    color: var(--tp-common-white);
    font-weight: 500;
  }
  
  .tp-header-login:hover {
    color: var(--tp-theme-primary);
  }
  
  .tp-login-primary a {
    color: var(--tp-common-white);
  }
  
  .tp-login-primary a:hover {
    color: var(--tp-theme-primary);
  }
  
  .tp-menu-space {
    padding-top: 50px;
  }
  
  .tp-menu-bar span {
    cursor: pointer;
  }
  
  .tp-menu-color ul li a {
    color: #404045;
    line-height: 0;
  }
  
  .tp-menu-color ul li:hover a {
    color: var(--tp-common-black);
  }
  
  .header-login-color {
    padding-bottom: 0;
  }
  
  .header-login-color a {
    color: #404045;
  }
  
  .header-login-color a:hover {
    color: var(--tp-common-black);
  }
  
  .tp-header-login-space a {
    padding-right: 60px;
    position: relative;
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-header-login-space a {
      padding-right: 50px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-header-login-space a {
      padding-right: 40px;
    }
  }
  
  .tp-header-login-space a span {
    color: var(--tp-theme-1);
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
  }
  
  .tp-header-login-space a ul {
    position: absolute;
  }
  
  .tp-logo img {
    width: 246px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-bp-menu ul li {
      margin-right: 35px;
    }
  }
  
  .tp-header-left ul {
    margin-right: 65px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-header-left ul {
      margin-right: 50px;
    }
  }
  
  .tp-header-left ul li {
    display: inline-block;
    margin-left: 60px;
    position: relative;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-header-left ul li {
      margin-left: 20px;
    }
  }
  
  .tp-header-left ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  .tp-header-left ul li a .arrow-down {
    color: var(--tp-theme-1);
    font-size: 16px;
    margin-left: 5px;
  }
  
  .tp-header-left ul li a .fa-user {
    color: var(--tp-common-black);
    font-size: 16px;
    margin-right: 5px;
  }
  
  .tp-header-left ul li:hover>a {
    color: var(--tp-theme-1);
  }
  
  .tp-header-left ul li:hover>a i {
    color: var(--tp-theme-1);
  }
  
  .tp-header-left ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 232%;
  }
  
  .tp-header-left ul li ul {
    position: absolute;
    background-color: var(--tp-common-black);
    right: 0;
    margin-right: 0;
    padding: 15px;
    top: 240%;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 5;
  }
  
  .tp-header-left ul li ul li {
    margin: 0;
  }
  
  .tp-header-left ul li ul li a {
    color: var(--tp-common-white);
    font-size: 14px;
  }
  
  .tp-header-left ul li ul li:hover a {
    color: var(--tp-theme-primary);
  }
  
  .tpoffcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 690px;
    height: 100vh;
    box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
    background-color: #292930;
    z-index: 9999;
    transition: 1s;
    padding-right: 120px;
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
  }
  
  .tpoffcanvas.opened {
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 767px) {
    .tpoffcanvas {
      width: 330px;
      padding: 30px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas {
      width: 400px;
      padding: 40px;
    }
  }
  
  .tpoffcanvas.opened {
    right: 0;
  }
  
  .tpoffcanvas__logo {
    margin-bottom: 60px;
  }
  
  .tpoffcanvas__logo img {
    width: 247px;
    height: 100%;
  }
  
  .tpoffcanvas__close-btn {
    font-size: 40px;
    color: white;
    position: absolute;
    right: 50px;
    top: 110px;
    transition: 0.3s;
  }
  
  @media (max-width: 767px) {
    .tpoffcanvas__close-btn {
      font-size: 28px;
      right: 20px;
      top: 44px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas__close-btn {
      right: 36px;
      top: 52px;
    }
  }
  
  .tpoffcanvas__close-btn:hover {
    color: red;
    transform: rotate(10deg);
  }
  
  .tpoffcanvas__content p {
    font-size: 26px;
    color: var(--tp-common-white);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    padding-bottom: 55px;
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas__content p br {
      display: none;
    }
  }
  
  .tpoffcanvas__contact {
    clear: both;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas__contact {
      margin-top: 60px;
    }
  }
  
  .tpoffcanvas__contact span {
    font-size: 14px;
    color: #888888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
  }
  
  .tpoffcanvas__contact ul {
    margin-bottom: 60px;
  }
  
  .tpoffcanvas__contact ul li {
    font-size: 20px;
    font-weight: 500;
    color: var(--tp-common-white);
    margin-bottom: 27px;
    position: relative;
    padding-left: 40px;
  }
  
  @media (max-width: 767px) {
    .tpoffcanvas__contact ul li {
      font-size: 16px;
      padding-left: 30px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas__contact ul li {
      font-size: 18px;
    }
  }
  
  .tpoffcanvas__contact ul li:last-child {
    margin-bottom: 0;
  }
  
  .tpoffcanvas__contact ul li i {
    color: var(--tp-theme-primary);
    font-size: 22px;
    position: absolute;
    left: 0;
    top: 4px;
  }
  
  @media (max-width: 767px) {
    .tpoffcanvas__contact ul li i {
      font-size: 16px;
    }
  }
  
  .tpoffcanvas__contact ul li:hover {
    color: var(--tp-theme-primary);
  }
  
  .tpoffcanvas__input {
    margin-bottom: 65px;
  }
  
  .tpoffcanvas__input p {
    color: #888888;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .tpoffcanvas__input input {
    background: rgba(118, 118, 130, 0.3);
    border: transparent;
    height: 60px;
    width: 100%;
    padding-left: 20px;
    padding-right: 80px;
    border-radius: 10px;
    color: var(--tp-common-white);
  }
  
  .tpoffcanvas__input input::placeholder {
    font-size: 14px;
    color: var(--tp-common-white);
    font-weight: 400;
  }
  
  .tpoffcanvas__input button {
    height: 60px;
    width: 60px;
    background-color: var(--tp-theme-1);
    color: var(--tp-common-white);
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 10px;
  }
  
  .tpoffcanvas__instagram img {
    border-radius: 10px;
    max-width: 100%;
  }
  
  .tpoffcanvas__instagram P {
    font-size: 14px;
    color: #888888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }
  
  .tpoffcanvas__instagram a {
    margin-right: 10px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-header-yellow-button {
      margin-left: 0;
    }
  }
  
  .tp-main-menu {
    position: relative;
  }
  
  .tp-main-menu ul li.has-mega-menu {
    position: static;
  }
  
  .tp-main-menu ul li.has-mega-menu ul.submenu {
    width: 800px;
    left: 0;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-main-menu ul li.has-mega-menu ul.submenu {
      left: -170px;
    }
  }
  
  .tp-main-menu ul li.has-mega-menu ul.submenu li {
    width: 33.33%;
    float: left;
  }
  
  /*----------------------------------------*/
  
  /*  17. MEANMENU CSS START
  /*----------------------------------------*/
  
  .mobile-menu.mean-container {
    overflow: hidden;
  }
  
  @media (max-width: 767px) {
    .mobile-menu.mean-container {
      margin-bottom: 30px;
    }
  }
  
  .mobile-menu .sidebar-list {
    clear: both;
  }
  
  .mobile-menu .sidebar-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: var(--tp-common-white);
  }
  
  .mobile-menu .sidebar-list li::after {
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #888888;
    background-color: transparent;
    content: "";
    display: inline-block;
    position: absolute;
  }
  
  .mobile-menu .tp-sidebar-social {
    margin-top: 20px;
  }
  
  .mobile-menu .tp-sidebar-social a {
    margin-right: 5px;
    background-color: var(--tp-theme-primary);
    color: #fff;
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 14px;
    line-height: 34px;
  }
  
  .sidebar-title h3 {
    color: var(--tp-common-white);
  }
  
  /* mean menu customize */
  
  .mean-container a.meanmenu-reveal {
    display: none;
  }
  
  .mean-container .mean-nav {
    background: none;
    margin-top: 0;
  }
  
  .mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
  }
  
  .mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
  }
  
  .mean-container a.meanmenu-reveal {
    display: none !important;
  }
  
  .mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    color: #fff;
    border-top: 1px solid #353535;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
  }
  
  .mean-container .mean-nav ul li a:hover {
    color: var(--tp-theme-primary);
  }
  
  .mean-container .mean-nav ul li a.mean-expand {
    margin-top: 10px;
    padding: 0 !important;
    line-height: 14px;
    border: 1px solid #888888 !important;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #fff;
    line-height: 30px;
    top: 0;
    font-weight: 400;
  }
  
  .mean-container .mean-nav ul li a.mean-expand:hover {
    background: var(--clr-theme-1);
    color: var(--clr-common-white);
    border-color: #888888;
  }
  
  .mean-container .mean-nav ul li>a>i {
    display: none;
  }
  
  .mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
  }
  
  .mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
  }
  
  .mean-container .mean-nav ul li a.mean-expand.mean-clicked {
    color: var(--clr-common-black);
  }
  
  .mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    color: var(--tp-common-white);
  }
  
  /*----------------------------------------*/
  
  /*  14. hero CSS START
  /*----------------------------------------*/
  
  .tp-hero-space {
    padding-top: 220px;
    padding-bottom: 165px;
  }
  
  .shape-circle-yellow {
    height: 433px;
    width: 433px;
    background-color: var(--tp-theme-primary);
    border-radius: 100%;
    position: absolute;
    top: -180px;
    left: -112px;
    z-index: -1;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .shape-circle-yellow {
      top: -220px;
      left: -200px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .shape-circle-yellow {
      height: 370px;
      width: 370px;
    }
  }
  
  .shape-circle-blue {
    overflow: hidden;
    height: 990px;
    width: 990px;
    background-color: var(--tp-theme-1);
    border-radius: 100%;
    position: absolute;
    right: -330px;
    top: -130px;
    z-index: -1;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .shape-circle-blue {
      right: -500px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .shape-circle-blue {
      right: -370px;
      height: 690px;
      width: 690px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .shape-circle-blue {
      right: -408px;
      height: 660px;
      width: 660px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .shape-circle-blue {
      height: 400px;
      width: 500px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .shape-circle-blue {
      height: 500px;
      width: 500px;
    }
  }
  
  @media (max-width: 767px) {
    .shape-circle-blue {
      display: none;
    }
  }
  
  .tp-highlight {
    position: relative;
    display: inline-block;
  }
  
  .tp-highlight svg {
    position: absolute;
    bottom: 9px;
    left: 0;
    -moz-animation: section-highlight 1s ease-in-out 0.3s forwards;
    -webkit-animation: section-highlight 1s ease-in-out 0.3s forwards;
    animation: section-highlight 1s ease-in-out 0.3s forwards;
  }
  
  .tp-highlight svg.highlight-space {
    bottom: 20px;
  }
  
  .tp-highlight svg path {
    -webkit-transform: translateX(-4px);
    -moz-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    -o-transform: translateX(-4px);
    transform: translateX(-4px);
  }
  
  .tp-highlight i {
    position: relative;
    z-index: 2;
    font-style: normal;
  }
  
  .bs-hero-social {
    position: absolute;
    left: -8%;
    transform: rotate(90deg);
    top: 60%;
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .bs-hero-social {
      left: -12%;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .bs-hero-social {
      left: -16%;
    }
  }
  
  .shape-one {
    position: absolute;
    top: 50%;
    left: 90px;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .shape-one {
      top: 78%;
    }
  }
  
  .tp-bp-hero-space {
    padding-top: 330px;
    padding-bottom: 130px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-bp-hero-space {
      padding-bottom: 70px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-bp-hero-space {
      padding-top: 150px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-bp-hero-space {
      padding-top: 0px;
    }
  }
  
  .tp-bp-hero__img {
    max-width: inherit;
    margin-left: 67px;
    position: relative;
    z-index: 2;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-bp-hero__img {
      margin-left: 0;
      margin-top: 30px;
    }
  
    .tp-bp-hero__img img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .tp-bp-hero__img {
      margin-left: 0;
      margin-top: 50px;
    }
  
    .tp-bp-hero__img img {
      max-width: 100%;
    }
  }
  
  .tp-hero-title {
    color: var(--tp-common-black);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -2px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-title {
      font-size: 55px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-title {
      font-size: 45px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-title {
      font-size: 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-title {
      font-size: 38px;
      margin-bottom: 18px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-hero-title {
      font-size: 56px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-xs-title {
      font-size: 43px;
    }
  }
  
  .tp-hero-text p {
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 40px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-hero-text p br {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-text p {
      font-size: 16px;
      padding-bottom: 0;
      line-height: 28px;
      margin-bottom: 25px;
    }
  }
  
  .tp-hero-social a {
    font-size: 14px;
    color: var(--tp-common-black);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 50px;
    letter-spacing: 2px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-social a {
      padding-right: 43px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-social a {
      padding-right: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-social a {
      padding-right: 25px;
    }
  }
  
  .tp-hero-social a i {
    font-size: 14px;
    padding-right: 15px;
  }
  
  @media (max-width: 767px) {
    .tp-hero-social a i {
      padding-right: 0px;
    }
  }
  
  .tp-hero-social-bg-color {
    background-color: var(--tp-common-white);
    display: inline-block;
    padding-left: 90px;
    padding-right: 100px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-social-bg-color {
      padding-left: 0px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-social-bg-color {
      padding-left: 0px;
      padding-right: 0;
      background-color: transparent;
    }
  }
  
  @media (max-width: 767px) {
    .bp-hero-social span {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .bp-hero-social a {
      padding-right: 0;
      height: 40px;
      width: 40px;
      background-color: var(--tp-common-white);
      color: var(--tp-common-white);
      display: inline-block;
      text-align: center;
      line-height: 40px;
      margin-right: 10px;
      box-shadow: 0px 2px 55px rgba(168, 182, 218, 0.32);
      border-radius: 4px;
      transition: 0.5s;
    }
  
    .bp-hero-social a:hover {
      border-radius: 50%;
      transform: rotate(360deg);
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-button {
      margin-bottom: 60px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-button {
      margin-bottom: 0px;
    }
  }
  
  @media (max-width: 767px) {
  
    .tp-hero-button .tp-btn,
    .tp-hero-button .tp-btn-grey {
      height: 56px;
      line-height: 56px;
      margin-bottom: 20px;
    }
  }
  
  .tp-hero-big-img {
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 767px) {
    .tp-hero-big-img {
      margin-top: 50px;
      margin-bottom: 50px;
    }
  }
  
  .tp-hero-big-img img {
    transform: translateX(45px);
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-big-img img {
      transform: translateX(-70px);
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-big-img img {
      transform: translateX(-40px);
      max-width: 120%;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-big-img img {
      transform: translateX(-15px);
      max-width: 115%;
      margin-top: -80px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-big-img img {
      transform: translateX(0);
      max-width: 100%;
    }
  }
  
  .social-icon-1 {
    color: var(--tp-theme-1);
  }
  
  @media (max-width: 767px) {
    .social-icon-1 {
      margin-bottom: 20px;
    }
  }
  
  .social-icon-1:hover {
    color: var(--tp-theme-1);
  }
  
  .social-icon-2 {
    color: #ff2c56;
  }
  
  @media (max-width: 767px) {
    .social-icon-2 {
      margin-bottom: 20px;
    }
  }
  
  .social-icon-2:hover {
    color: #ff2c56;
  }
  
  .social-icon-3 {
    color: red;
  }
  
  @media (max-width: 767px) {
    .social-icon-3 {
      margin-bottom: 20px;
    }
  }
  
  .social-icon-3:hover {
    color: red;
  }
  
  .social-icon-4 {
    color: #ff2c56;
  }
  
  .social-icon-4:hover {
    color: #ff2c56;
  }
  
  .tp-hero-content-box {
    position: relative;
    z-index: 2;
    padding-top: 208px;
    padding-bottom: 86px;
  }
  
  .tp-hero-content-box .tp-hero-title {
    font-size: 62px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 48px;
    letter-spacing: -4px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-content-box .tp-hero-title {
      font-size: 53px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-content-box .tp-hero-title {
      font-size: 52px;
      letter-spacing: -1.5px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-content-box .tp-hero-title {
      font-size: 30px;
      letter-spacing: -1.5px;
    }
  }
  
  .tp-hero-content-box .tp-hero-title span {
    color: var(--tp-theme-1);
  }
  
  .ct-hero-title {
    font-size: 75px;
    font-weight: 700;
    color: var(--tp-common-white);
    margin-bottom: 48px;
    letter-spacing: -3px;
    line-height: 1.1;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ct-hero-title {
      font-size: 65px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ct-hero-title {
      font-size: 60px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .ct-hero-title {
      font-size: 67px;
    }
  }
  
  @media (max-width: 767px) {
    .ct-hero-title {
      font-size: 40px;
      margin-bottom: 30px;
    }
  }
  
  .ce-hero-shape {
    position: absolute;
    top: 270px;
    left: 45px;
    animation: rotate2 15s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .ce-hero-shape {
      top: 173px;
      left: 16px;
    }
  }
  
  .ce-hero-shape-two {
    position: absolute;
    bottom: 100px;
    left: 45px;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .ce-hero-shape-two {
      bottom: 165px;
      left: 20px;
    }
  }
  
  .bp-hero-shape-1 {
    position: absolute;
    top: 265px;
    left: 60px;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .bp-hero-shape-1 {
      top: 38px;
      left: 20px;
    }
  }
  
  .bp-hero-shape-2 {
    position: absolute;
    bottom: 140px;
    left: 40px;
    animation: rotate2 15s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .bp-hero-shape-2 {
      bottom: 0px;
      left: 5px;
    }
  }
  
  .bp-hero-shape-3 {
    position: absolute;
    top: 20%;
    right: 37%;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-hero-shape-4 {
    position: absolute;
    right: 119px;
    bottom: 110px;
    z-index: 5;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .bp-hero-shape-4 {
      right: 119px;
      bottom: -50px;
    }
  }
  
  .tp-hero-bg-circle {
    position: relative;
    z-index: 1;
  }
  
  .tp-hero-bg-circle::after {
    position: absolute;
    content: "";
    top: -160px;
    left: 0;
    right: 0;
    margin: auto;
    width: 1374px;
    height: 1374px;
    border-radius: 50%;
    background-color: #f4f3f9;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-bg-circle::after {
      top: -73px;
      width: 1200px;
      height: 1200px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-bg-circle::after {
      top: -70px;
      width: 1100px;
      height: 1100px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-bg-circle::after {
      top: 0;
      left: 0;
      width: 900px;
      height: 900px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-bg-circle::after {
      top: 123px;
      left: 0;
      width: 700px;
      height: 700px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-bg-circle::after {
      top: 123px;
      left: 0;
      width: 300px;
      height: 300px;
    }
  }
  
  .tp-hero-light-shape-one {
    position: absolute;
    right: 11%;
    top: 45%;
    z-index: 2;
    animation: jumpTwo 4s infinite linear;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-light-shape-one {
      right: 4%;
    }
  }
  
  .tp-hero-light-shape-two {
    position: absolute;
    top: 40%;
    left: 60.5%;
    z-index: 2;
    animation: movinglight 10s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-light-shape-two {
      left: 5.5%;
    }
  }
  
  .tp-hero-light-shape-three {
    position: absolute;
    left: 1070px;
    bottom: 120px;
    animation: jumpTwo 4s infinite linear;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-light-shape-three {
      left: 10px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-light-shape-three {
      left: 40px;
      bottom: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-light-shape-three {
      left: 7px;
      bottom: 35px;
    }
  }
  
  .tp-hero-light-shape-four {
    position: absolute;
    right: 130px;
    bottom: 120px;
    animation: movinglight 10s linear infinite;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-light-shape-four {
      right: 24px;
      bottom: 90px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-light-shape-four {
      right: 10px;
      bottom: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-light-shape-four {
      right: 7px;
      bottom: 10px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-img img {
      max-width: 100%;
    }
  }
  
  .tp-hero-shape-three {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-shape-three {
      bottom: -25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-shape-three {
      left: -35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-shape-three {
      display: none;
    }
  }
  
  .tp-hero-social-link a {
    margin: 0 10px 30px 10px;
  }
  
  .tp-hero-social-link .tp-btn-white-brand {
    transition: 0.4s;
  }
  
  .tp-hero-social-link .tp-btn-white-brand:hover {
    transform: translateY(-10px);
  }
  
  .tp-hero-bd-title {
    font-size: 75px;
    font-weight: 700;
    color: var(--tp-common-white);
    letter-spacing: -1.5px;
    padding-bottom: 30px;
    line-height: 1.1;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-bd-title {
      font-size: 65px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-bd-title {
      font-size: 55px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-bd-title {
      font-size: 40px;
      margin-bottom: 0;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-section-box {
      padding-bottom: 0px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box {
      padding-bottom: 0px;
      padding-top: 50px;
    }
  }
  
  .tp-hero-section-box p {
    font-size: 18px;
    font-weight: 400;
    color: var(--tp-common-white);
    line-height: 30px;
    padding-bottom: 35px;
    position: relative;
    z-index: 2;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-section-box p {
      padding-right: 100px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box p {
      font-size: 17px;
      margin-bottom: 0;
    }
  }
  
  .xs-bottom-space {
    line-height: 1px;
  }
  
  @media (max-width: 767px) {
    .xs-bottom-space {
      margin-bottom: 30px;
    }
  }
  
  .tp-bp-hero-section-box .tp-hero-title {
    font-size: 60px;
    letter-spacing: -2px;
  }
  
  .tp-bp-hero-section-box p {
    color: #404045;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .tp-bp-hero-section-box p br {
      display: none;
    }
  }
  
  .tp-hero-three-button-box {
    line-height: 1;
  }
  
  @media (max-width: 767px) {
    .tp-hero-three-button-box {
      flex-wrap: wrap;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-three-button-box {
      margin-bottom: 60px;
    }
  }
  
  .tp-hero-paly-button a {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 70px;
    background-color: #82cefd;
    margin-right: 20px;
    color: var(--tp-common-black);
  }
  
  .tp-hero-paly-button a i {
    font-size: 17px;
  }
  
  .tp-hero-paly-button a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
    border-color: var(--tp-theme-primary);
  }
  
  .tp-hero-paly-button span {
    font-size: 18px;
    color: #fff;
  }
  
  .tp-bp-hero-paly-button a {
    background-color: var(--tp-theme-primary);
  }
  
  .tp-bp-hero-paly-button a:hover {
    background-color: var(--tp-common-blue);
    color: var(--tp-common-white);
    transition: 0.3s;
  }
  
  .tp-bp-hero-paly-button span {
    color: var(--tp-common-black);
  }
  
  .tp-hero-right-img {
    max-width: inherit;
    margin-left: 250px;
    position: relative;
    z-index: 2;
    padding-top: 90px;
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-hero-right-img {
      margin-left: 220px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-right-img {
      margin-left: 110px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-right-img {
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-right-img {
      margin-left: 0px;
      bottom: -100px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-right-img {
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .tp-hero-right-img img {
      max-width: 100%;
    }
  }
  
  .tp-hero-circle-three {
    position: absolute;
    height: 690px;
    width: 690px;
    background-color: var(--tp-theme-primary);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    z-index: 1;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-circle-three {
      right: -300px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-circle-three {
      height: 300px;
      width: 300px;
    }
  }
  
  .tp-hero-section-box-four p {
    color: #404045;
    padding-right: 40px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-section-box-four p {
      padding-right: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-four p {
      padding-right: 0px;
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-paly-button-four {
      margin-top: 30px;
      margin-bottom: 30px;
    }
  }
  
  .tp-hero-paly-button-four a {
    color: var(--tp-common-black);
    font-size: 18px;
    font-weight: 500;
  }
  
  .tp-hero-paly-button-four a i {
    padding-right: 15px;
  }
  
  .tp-hero-paly-button-four a:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-hero-yellow-shape {
    position: absolute;
    height: 100%;
    width: 475px;
    background-color: var(--tp-theme-primary);
    right: 0;
    top: 0;
    z-index: -1;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-yellow-shape {
      right: -162px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-yellow-shape {
      right: -200px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-yellow-shape {
      right: -252px;
    }
  }
  
  .tp-hero-right-img-four {
    max-width: inherit;
    margin-left: 144px;
    position: relative;
    z-index: 2;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-right-img-four {
      padding-top: 0;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-right-img-four img {
      max-width: 133%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-hero-right-img-four img {
      max-width: 100%;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-right-img-four {
      margin-left: 54px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-right-img-four {
      margin-left: -7px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-right-img-four {
      margin-left: 11px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-hero-right-img-four {
      margin-left: 0px;
      padding-top: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-social {
      padding-bottom: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-section-box-four .tp-hero-title {
      font-size: 40px;
    }
  }
  
  .tp-hero-section-box-five {
    padding-top: 120px;
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five {
      padding-top: 90px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__title {
      padding-bottom: 25px;
    }
  }
  
  .tp-hero-section-box-five__subtitle-wrapper {
    border: 1px solid #f1f3fa;
    padding: 15px 30px;
    border-radius: 10px;
    margin-left: -30px;
    margin-right: 260px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-section-box-five__subtitle-wrapper {
      margin-right: 180px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-section-box-five__subtitle-wrapper {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__subtitle-wrapper {
      margin-left: 0px;
      margin-right: 0px;
      padding: 15px 10px;
      flex-wrap: wrap;
      margin-bottom: 25px;
    }
  }
  
  .tp-hero-section-box-five__subtitle h5 {
    font-size: 18px;
    font-weight: 400;
    color: var(--tp-common-black);
    display: inline-block;
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__subtitle h5 {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
  
  .tp-hero-section-box-five__subtitle h5 b {
    color: #fd346e;
    font-size: 18px;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__subtitle h5 b {
      font-size: 14px;
    }
  }
  
  .tp-hero-section-box-five__subtitle h5 span {
    color: #404045;
    font-size: 12px;
    font-weight: 400;
  }
  
  .tp-hero-section-box-five__subtitle-link a {
    color: var(--tp-common-black);
    background-color: rgba(255, 220, 96, 0.2);
    border-radius: 90px;
    padding: 9px 20px;
    line-height: 0;
    display: inline-block;
  }
  
  .tp-hero-section-box-five__subtitle-link a:hover {
    background-color: rgba(137, 206, 251, 0.2);
  }
  
  .tp-hero-section-box-five__title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-section-box-five__title p {
      margin-bottom: 0;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-section-box-five__title p {
      margin-bottom: 0;
    }
  
    .tp-hero-section-box-five__title p br {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__title p {
      font-size: 17px;
    }
  
    .tp-hero-section-box-five__title p br {
      display: none;
    }
  }
  
  .tp-hero-section-box-five__input {
    position: relative;
    margin-right: 130px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .tp-hero-section-box-five__input {
      margin-right: 0;
    }
  }
  
  .tp-hero-section-box-five__input input {
    width: 100%;
    border: 2px solid var(--tp-common-black);
    border-radius: 10px;
    height: 80px;
    padding-left: 25px;
    padding-right: 255px;
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 400;
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__input input {
      padding-left: 15px;
      padding-right: 0px;
      padding-right: 15px;
      margin-bottom: 20px;
    }
  }
  
  .tp-hero-section-box-five__input button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
  }
  
  @media (max-width: 767px) {
    .tp-hero-section-box-five__input button {
      position: static;
      top: 0;
      transform: translateY(0);
    }
  }
  
  .tp-bp-hero-section-box .tp-hero-section-box p {
    color: #404045;
  }
  
  .tp-hero-bs-title {
    font-size: 87px;
    font-weight: 700;
    color: var(--tp-common-black);
    letter-spacing: -5px;
    padding-bottom: 30px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-bs-title {
      font-size: 65px;
      padding-bottom: 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-bs-title {
      font-size: 65px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-bs-title {
      font-size: 33px;
      letter-spacing: 1px;
      padding-bottom: 15px;
    }
  }
  
  .tp-hero-right-side-five .tp-yellow-circle-five {
    height: 730px;
    width: 730px;
    background-color: var(--tp-theme-primary);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    margin-left: -33px;
  }
  
  @media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .tp-hero-right-side-five .tp-yellow-circle-five {
      margin-left: -55 px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-right-side-five .tp-yellow-circle-five {
      height: 630px;
      width: 630px;
      margin-left: -56px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-right-side-five .tp-yellow-circle-five {
      height: 500px;
      width: 500px;
      margin-left: -20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-right-side-five .tp-yellow-circle-five {
      height: 400px;
      width: 400px;
      margin-left: -20px;
      margin-top: 90px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-right-side-five .tp-yellow-circle-five {
      margin-left: -16px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-hero-right-side-five .tp-yellow-circle-five {
      margin-left: 0px;
      height: 300px;
      width: 300px;
    }
  }
  
  .tp-hero-right-side-five__img {
    margin-left: 10px;
    margin-top: 25px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-hero-right-side-five__img {
      margin-left: 0px;
      margin-top: 70px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-hero-right-side-five__img {
      margin-top: 50px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-hero-right-side-five__img {
      margin-top: 150px;
    }
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .tp-hero-right-side-five__img img {
      max-width: 100%;
    }
  }
  
  .tp-hero-border {
    border-bottom: 1px solid #eeeeee;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-hero-border {
      border: none;
    }
  }
  
  .tp-hero-icon-five {
    position: absolute;
    bottom: -13px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-hero-icon-five {
      bottom: -67px;
    }
  }
  
  .tp-bp-hero-shape {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-bp-hero-shape {
      top: -31px;
      right: -185px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-bp-hero-shape {
      top: -29px;
      right: -345px;
    }
  }
  
  .bp-blur-shape {
    position: absolute;
    bottom: 0px;
    left: 110px;
    transition: 0.4s;
  }
  
  .tp-hero-area:hover .bp-blur-shape {
    bottom: -70px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-bp-hero-section-box .tp-bs-hero-title {
      font-size: 53px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-bp-hero-section-box .tp-bs-hero-title {
      font-size: 43px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-bp-hero-section-box .tp-bs-hero-title {
      font-size: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-bp-hero-section-box .tp-bs-hero-title {
      font-size: 30px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-bp-hero-section-box .tp-bs-hero-title {
      font-size: 45px;
    }
  }
  
  .bs-xl-hero-social {
    margin-top: 70px;
  }
  
  @media (max-width: 767px) {
    .bs-xl-hero-social {
      margin-top: 40px;
    }
  }
  
  /*----------------------------------------*/
  
  /*  09. creative CSS START
  /*----------------------------------------*/
  
  .tp-creative-content .tp-creative-title {
    color: var(--tp-common-white);
    font-weight: 700;
    font-size: 45px;
    line-height: 1.3;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-creative-content .tp-creative-title {
      font-size: 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-creative-content .tp-creative-title {
      font-size: 32px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-creative-content .tp-creative-title {
      font-size: 26px;
    }
  }
  
  .tp-creative-content .tp-creative-title b {
    color: var(--tp-theme-primary);
    text-decoration: underline;
  }
  
  .tp-play-button a {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-block;
    text-align: center;
    line-height: 90px;
    margin-right: 20px;
    color: var(--tp-common-white);
  }
  
  @media (max-width: 767px) {
    .tp-play-button a {
      margin-bottom: 20px;
    }
  }
  
  .tp-play-button a i {
    font-size: 22px;
  }
  
  .tp-play-button a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
    border-color: var(--tp-theme-primary);
  }
  
  .tp-play-button span {
    font-size: 18px;
    color: #fff;
  }
  
  @media (max-width: 767px) {
    .tp-play-button span {
      display: block;
    }
  }
  
  .tp-creative-item {
    background-color: var(--tp-theme-primary);
    padding: 40px 50px;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-creative-item {
      padding: 40px 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-creative-item {
      padding: 20px 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-creative-item {
      padding: 40px 30px;
    }
  }
  
  .tp-creative-item:hover .tp-creative-icon {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  
  .tp-creative-item:hover .tp-creative-icon i {
    color: rgba(41, 41, 48, 0.8);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .creative-box {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  .counter-text span {
    font-size: 45px;
    font-weight: 700;
    color: var(--tp-common-black);
    line-height: 1;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-text span {
      font-size: 40px;
    }
  }
  
  .counter-text p {
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 500;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-text p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .counter-text p {
      font-size: 16px;
    }
  }
  
  .tp-creative-blue {
    background-color: var(--tp-theme-secondary);
  }
  
  .tp-creative-pink {
    background-color: #ffadad;
  }
  
  .creative-shape-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .creative-shape-img {
      top: 31%;
      left: -74px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .creative-shape-img {
      top: 29%;
      left: -100px;
    }
  }
  
  @media (max-width: 767px) {
    .creative-shape-img {
      top: 29%;
      left: -102px;
      transform: translateY(-50%) rotate(17deg);
      transform-origin: left bottom;
    }
  }
  
  .creative-shape-img-2 {
    position: absolute;
    top: 50%;
    right: -200px;
    animation: zoom 5s infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .creative-shape-img-2 {
      top: 30%;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .creative-shape-img-2 {
      top: 41%;
      right: -267px;
    }
  }
  
  .tp-creative-icon {
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-creative-icon {
      margin-right: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-creative-icon {
      margin-right: 20px;
    }
  }
  
  .tp-creative-icon i {
    transition: 0.4s;
    font-size: 77px;
    color: rgba(41, 41, 48, 0.3);
  }
  
  .shape-two {
    position: absolute;
    top: -100px;
    left: 0;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .creative-box {
      padding: 0;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-creative-icon {
      margin-right: 20px;
    }
  }
  
  .creative-z-index {
    position: relative;
    z-index: 2;
  }
  
  .circle-animation.testimonial {
    top: 50%;
    left: 50%;
    border: 1px solid #3f3f47;
    width: 900px;
    height: 900px;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .circle-animation.testimonial {
      top: 28%;
      width: 700px;
      height: 700px;
    }
  }
  
  @media (max-width: 767px) {
    .circle-animation.testimonial {
      top: 32%;
      width: 330px;
      height: 330px;
    }
  }
  
  .circle-animation span.tp-circle-1 {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    -webkit-animation: circle-animation 13s linear infinite;
    -moz-animation: circle-animation 13s linear infinite;
    -o-animation: circle-animation 13s linear infinite;
    animation: circle-animation 13s linear infinite;
  }
  
  .circle-animation span.tp-circle-2 {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    transform: scale(-1, 1);
    -webkit-animation: circle-animation2 13s linear infinite;
    -moz-animation: circle-animation2 13s linear infinite;
    -o-animation: circle-animation2 13s linear infinite;
    animation: circle-animation2 13s linear infinite;
  }
  
  .circle-animation span.tp-circle-1::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: -25px;
    right: -12px;
    background-color: #ffadad;
  }
  
  .circle-animation span.tp-circle-2::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -25px;
    right: -7px;
    background-color: var(--tp-theme-1);
  }
  
  .tp-country-img img {
    max-width: 100%;
  }
  
  /*----------------------------------------*/
  
  /*  10. cta CSS START
  /*----------------------------------------*/
  
  .tp-cta-bottom-wrapper {
    background-color: #f9fafb;
    padding-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: -115px;
    position: relative;
    z-index: 9;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-cta-bottom-wrapper {
      margin-top: -25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-cta-bottom-wrapper {
      margin-top: 0px;
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  .tp-btn-white-lg {
    transition: 0.4s;
  }
  
  .tp-btn-white-lg:hover {
    transform: translateY(-10px);
  }
  
  @media (max-width: 767px) {
    .tp-cta-img-item {
      padding-top: 50px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-cta-img-item img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .tp-cta-img-item img {
      max-width: 100%;
      transform: rotateY(180deg);
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-cta-section-title-box {
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .tp-cta-section-title-box {
      padding-left: 0;
    }
  }
  
  /*----------------------------------------*/
  
  /*  03. brand CSS START
  /*----------------------------------------*/
  
  .tp-brands-item {
    text-align: center;
  }
  
  .tp-brands-item img {
    max-width: 100%;
  }
  
  .tp-brand-title {
    color: var(--tp-common-black);
    font-weight: 700;
    font-size: 20px;
  }
  
  @media (max-width: 767px) {
    .tp-brand-title {
      font-size: 17px;
    }
  }
  
  .tp-brands-title-two h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--tp-common-white);
  }
  
  .tp-brands-title-two span {
    color: var(--tp-theme-primary);
  }
  
  .tp-brand-title-four h4 {
    color: #404045;
    font-size: 20px;
  }
  
  .tp-brand-title-four b {
    font-weight: 700;
    color: var(--tp-common-black);
  }
  
  .tp-brand-build-title {
    color: var(--tp-common-black);
    font-weight: 700;
    font-size: 20px;
  }
  
  @media (max-width: 767px) {
    .tp-brand-build-title {
      font-size: 18px;
    }
  }
  
  .bp-blog-shape-1 {
    position: absolute;
    bottom: 72px;
    right: 42px;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-blog-shape-2 {
    position: absolute;
    right: 62px;
    top: 53px;
    animation: moving 10s linear infinite;
  }
  
  .bp-blog-shape-3 {
    position: absolute;
    bottom: -60px;
    left: -100px;
    animation: rotate2 15s linear infinite;
  }
  
  /*----------------------------------------*/
  
  /*  24. service CSS START
  /*----------------------------------------*/
  
  .tp-service-item {
    background-color: var(--tp-common-white);
    padding: 70px 60px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-service-item {
      padding: 50px 30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-service-item {
      padding: 30px 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-service-item {
      flex-wrap: wrap;
      padding: 35px 20px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-service-item {
      padding: 49px 30px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-service-item .tp-sv-img {
      margin-bottom: 20px;
    }
  }
  
  .tp-service-item:hover .tp-sv-img {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  
  .tp-sv-box {
    position: relative;
  }
  
  .tp-sv-box:before {
    content: "";
    background-image: linear-gradient(-90deg, #675aa3 0%, #ffdc60 100%);
    opacity: 0.3;
    height: 27px;
    width: 84%;
    bottom: 0px;
    position: absolute;
    left: 0;
    border-radius: 30px;
    right: 0;
    margin: auto;
    z-index: 1;
    transition: 0.4s;
  }
  
  .tp-sv-box:hover:before {
    bottom: -20px;
  }
  
  .tp-sv-img {
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
  }
  
  .tp-sv-img img {
    min-width: 105px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-sv-content {
      padding-left: 30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-sv-content {
      padding-left: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-sv-content {
      padding-left: 0px;
    }
  }
  
  .tp-sv-content .tp-sv-title {
    color: var(--tp-common-black);
    font-size: 32px;
    font-weight: 500;
  }
  
  .tp-sv-content .tp-sv-title:hover {
    color: var(--tp-theme-1);
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-sv-content .tp-sv-title {
      font-size: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-sv-content .tp-sv-title {
      font-size: 25px;
    }
  }
  
  .tp-sv-content p {
    line-height: 26px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-sv-content p {
      font-size: 15px;
    }
  }
  
  .tp-service-section-box {
    position: relative;
    z-index: 2;
  }
  
  .tp-sv-link a {
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 600;
  }
  
  .tp-sv-link a:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-sv-link a:hover i {
    animation: tfLeftToRight 0.4s forwards;
  }
  
  .tp-sv-link a i {
    font-weight: 400;
    padding-right: 10px;
  }
  
  .tp-sv-shape-img {
    position: absolute;
    bottom: 0;
    left: 10px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .tp-sv-shape-img {
      bottom: -75px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-sv-shape-img {
      bottom: -70px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-sv-shape-img {
      bottom: -74px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-sv-shape-img {
      bottom: -80px;
    }
  }
  
  .tp-sv-shape-img-2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
  }
  
  .tp-sv-item-two {
    border: 1px solid #3f3f47;
    border-radius: 20px;
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 50px;
    position: relative;
    padding-right: 44px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-sv-item-two {
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 42px;
      position: relative;
      padding-right: px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-sv-item-two {
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 39px;
      padding-right: 26px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-sv-item-two {
      padding-top: 60px;
      padding-bottom: 60px;
      padding-left: 50px;
      padding-right: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-sv-item-two {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 33px;
      padding-right: 11px;
    }
  }
  
  .tp-sv-item-two:hover {
    border-color: #3f3f47;
  }
  
  .tp-sv-item-two:hover::after {
    height: 100%;
  }
  
  .tp-sv-item-two:hover .tp-sv-icon-two {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  
  .tp-sv-icon-two {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 101%;
    width: 100%;
    background-color: #3f3f47;
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    transform: scale(0.9);
  }
  
  .tp-sv-icon-two i {
    font-size: 165px;
    -webkit-text-stroke: 1px #8d8d9c;
    color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .tp-sv-icon-two a {
    height: 100%;
    width: 100%;
    display: block;
  }
  
  .tp-sv-content-tow .tp-sv-product-design {
    font-size: 32px;
    font-weight: 500;
    color: var(--tp-common-white);
    margin-bottom: 40px;
  }
  
  .tp-sv-content-tow p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #b5b8c1;
    margin-bottom: 0;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-sv-content-tow p {
      font-size: 16px;
    }
  }
  
  .tp-sv-blue-color {
    border-bottom: 3px solid #675aa3;
  }
  
  .tp-sv-sky-color {
    border-bottom: 3px solid #57c9da;
  }
  
  .tp-sv-pink-color {
    border-bottom: 3px solid #ffadad;
  }
  
  .service-color-1 {
    background-color: rgba(255, 220, 96, 0.1);
  }
  
  .service-color-2 {
    background-color: rgba(130, 132, 253, 0.1);
  }
  
  .service-color-3 {
    background-color: rgba(255, 173, 173, 0.1);
  }
  
  .tp-services-item {
    padding: 80px 45px;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-services-item {
      padding: 45px 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-services-item {
      padding: 40px 45px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-services-item {
      padding: 35px 30px;
    }
  }
  
  .tp-services-item__icon img {
    min-height: 123px;
  }
  
  .tp-services-item__content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #8a879f;
    margin-bottom: 0;
  }
  
  .tp-services-item:hover .tp-services-item__icon {
    animation: icon-bounce 0.8s 1;
  }
  
  .tp-sv-title {
    font-size: 32px;
    color: var(--tp-common-black);
    font-weight: 500;
    margin-bottom: 45px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-sv-title {
      margin-bottom: 25px;
    }
  }
  
  .tp-sv-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-service-item-four {
    background-color: var(--tp-common-white);
    box-shadow: 0px 4px 4px rgba(100, 109, 152, 0.06);
    padding: 0px 55px;
    padding-top: 65px;
    padding-bottom: 55px;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    z-index: 2;
  }
  
  .tp-service-item-four__img {
    height: 60px;
    width: 60px;
    background-color: rgba(139, 64, 229, 0.15);
    line-height: 60px;
    text-align: center;
    border-radius: 6px;
    transition: 0.6s;
  }
  
  .tp-sv-sm-title {
    font-size: 24px;
    color: var(--tp-common-black);
    font-weight: 500;
    line-height: 32px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-sv-sm-title {
      font-size: 20px;
    }
  }
  
  .tp-sv-border-effect {
    position: relative;
  }
  
  .tp-sv-border-effect::after {
    position: absolute;
    content: "";
    bottom: 3px;
    left: 0;
    height: 40px;
    width: 100%;
    background-color: #1ee2cf;
    border-radius: 20px;
    transition: 0.4s;
  }
  
  .tp-sv-border-effect:hover .tp-service-item-four__img {
    transform: rotateY(180deg);
  }
  
  .tp-sv-border-effect:hover::after {
    bottom: -3px;
  }
  
  .sv-border-effect-1::after {
    background-color: #8b40e5;
  }
  
  .sv-border-effect-2::after {
    background-color: #ff885a;
  }
  
  .sv-border-effect-3::after {
    background-color: #fd346e;
  }
  
  .sv-border-effect-4::after {
    background-color: #0d88ff;
  }
  
  .sv-border-effect-5::after {
    background-color: #0cd68a;
  }
  
  .sv-border-effect-6::after {
    background-color: #fcdc02;
  }
  
  .sv-color-1 .tp-service-item-four__img {
    background-color: rgba(30, 226, 207, 0.15);
  }
  
  .sv-color-1 .tp-service-item-four__title:hover h3 {
    color: #1ee2cf;
  }
  
  .sv-color-1 .tp-service-item-four__title:hover .tp-service-item-four__img {
    background-color: rgba(30, 226, 207, 0.15);
  }
  
  .sv-color-2 .tp-service-item-four__img {
    background-color: rgba(139, 64, 229, 0.15);
  }
  
  .sv-color-2 .tp-service-item-four__title:hover h3 {
    color: #8b40e5;
  }
  
  .sv-color-3 .tp-service-item-four__img {
    background-color: rgba(255, 136, 90, 0.15);
  }
  
  .sv-color-3 .tp-service-item-four__title:hover h3 {
    color: #ff885a;
  }
  
  .sv-color-4 .tp-service-item-four__img {
    background-color: rgba(253, 52, 110, 0.15);
  }
  
  .sv-color-4 .tp-service-item-four__title:hover h3 {
    color: #fd346e;
  }
  
  .sv-color-5 .tp-service-item-four__img {
    background-color: rgba(13, 136, 255, 0.15);
  }
  
  .sv-color-5 .tp-service-item-four__title:hover h3 {
    color: #0d88ff;
  }
  
  .sv-color-6 .tp-service-item-four__img {
    background-color: rgba(12, 214, 138, 0.15);
  }
  
  .sv-color-6 .tp-service-item-four__title:hover h3 {
    color: #0cd68a;
  }
  
  .sv-color-7 .tp-service-item-four__img {
    background-color: rgba(252, 220, 2, 0.15);
  }
  
  .sv-color-7 .tp-service-item-four__title:hover h3 {
    color: #fcdc02;
  }
  
  .sv-color-eight {
    background-color: rgba(130, 206, 253, 0.15);
    padding-top: 65px;
    padding-bottom: 65px;
    border-radius: 20px;
  }
  
  .sv-color-eight__title h3 {
    color: var(--tp-common-black);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
  }
  
  .sv-color-eight__title h3:hover {
    color: var(--tp-theme-1);
  }
  
  .sv-color-eight__title i {
    color: var(--tp-theme-1);
    font-weight: 900;
    font-size: 110px;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sv-color-eight__title i {
      font-size: 100px;
    }
  }
  
  .sv-color-eight__title i:hover {
    color: var(--tp-theme-secondary);
  }
  
  .tp-best-services-title-box {
    margin-bottom: 180px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-best-services-title-box {
      margin-bottom: 50px;
    }
  }
  
  .tp-sv-button img {
    animation: rotate2 15s linear infinite;
  }
  
  @media (max-width: 767px) {
    .tp-sv-button {
      margin-bottom: 70px;
    }
  }
  
  .tpservices {
    padding-left: 50px;
  }
  
  @media (max-width: 767px) {
    .tpservices {
      padding-left: 25px;
    }
  }
  
  .tpservices__icon i {
    font-size: 66px;
    color: rgba(0, 0, 0, 0.3);
  }
  
  .tpservices__icon .angle-right-svg {
    color: var(--tp-common-black);
    font-weight: 300;
  }
  
  .tpservices__content .tp-sv-bs-title {
    color: var(--tp-common-black);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
  }
  
  @media (max-width: 767px) {
    .tpservices__content .tp-sv-bs-title {
      font-size: 20px;
    }
  
    .tpservices__content .tp-sv-bs-title br {
      display: none;
    }
  }
  
  .tpservices__content .tp-sv-bs-title:hover {
    color: var(--tp-theme-1);
  }
  
  .sv-border-top {
    border-top: 2px solid var(--tp-common-black);
  }
  
  .sv-border-bottom {
    border-bottom: 2px solid var(--tp-common-black);
  }
  
  .tp-sv-space-wrapper {
    margin-left: 110px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-sv-space-wrapper {
      margin-left: 0;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-sv-space-wrapper {
      margin-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .tp-sv-space-wrapper {
      margin-left: 0;
    }
  }
  
  .service-space {
    padding: 40px 60px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-space {
      margin-left: 0;
      padding: 20px 20px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .service-space {
      margin-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .service-space {
      margin-left: 0;
      padding: 20px 5px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-sv-button {
      margin-bottom: 50px;
    }
  }
  
  .bg-white-wrapper {
    transition: 0.3s;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  
  .bg-white-wrapper:before {
    content: "";
    background: #fff;
    height: 100%;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
  }
  
  .bg-white-wrapper:hover:before {
    animation: bounceRight 2s;
    width: 100%;
  }
  
  .bg-white-wrapper:hover .tpservices__icon a {
    color: rgb(0, 0, 0);
  }
  
  .circle-animation.service {
    top: 5%;
    left: 8%;
    border: 1px solid #e8ecf2;
    width: 757px;
    height: 757px;
    position: absolute;
    border-radius: 50%;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .circle-animation.service {
      top: 9%;
      left: 0%;
    }
  }
  
  @media (max-width: 767px) {
    .circle-animation.service {
      top: 5%;
      left: 5%;
      height: 300px;
      width: 300px;
    }
  }
  
  .circle-animation span.tp-circle-1 {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    -webkit-animation: circle-animation 13s linear infinite;
    -moz-animation: circle-animation 13s linear infinite;
    -o-animation: circle-animation 13s linear infinite;
    animation: circle-animation 13s linear infinite;
  }
  
  .circle-animation span.tp-circle-2 {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    transform: scale(-1, 1);
    -webkit-animation: circle-animation2 13s linear infinite;
    -moz-animation: circle-animation2 13s linear infinite;
    -o-animation: circle-animation2 13s linear infinite;
    animation: circle-animation2 13s linear infinite;
  }
  
  .circle-animation span.tp-circle-1::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: -25px;
    right: -12px;
    background-color: #ffadad;
  }
  
  .circle-animation span.tp-circle-2::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -25px;
    right: -7px;
    background-color: var(--tp-theme-1);
  }
  
  .circle-animation.service-two {
    bottom: -3%;
    right: 9%;
    border: 1px solid #e8ecf2;
    width: 488px;
    height: 488px;
    position: absolute;
    border-radius: 50%;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .circle-animation.service-two {
      bottom: 0%;
      right: 0%;
    }
  }
  
  @media (max-width: 767px) {
    .circle-animation.service-two {
      bottom: 12px;
      right: 3%;
      height: 200px;
      width: 200px;
    }
  }
  
  .circle-animation span.tp-circle-skye {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    -webkit-animation: circle-animation 13s linear infinite;
    -moz-animation: circle-animation 13s linear infinite;
    -o-animation: circle-animation 13s linear infinite;
    animation: circle-animation 13s linear infinite;
  }
  
  .circle-animation span.tp-circle-skye::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: -25px;
    right: -12px;
    background-color: #82cefd;
  }
  
  .tp-service-bs-space {
    margin-left: 130px;
    margin-right: 130px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-service-bs-space {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  .bp-sv-shape-1 {
    position: absolute;
    bottom: 18px;
    right: -26px;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .bp-sv-shape-1 {
      right: 0;
    }
  }
  
  .bp-sv-shape-2 {
    position: absolute;
    left: -100px;
    bottom: -90px;
    animation: rotate2 15s linear infinite;
  }
  
  .bs-shape-1 {
    position: absolute;
    left: 115px;
    top: 70px;
    animation: rotate2 15s linear infinite;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .bs-shape-1 {
      top: -50px;
    }
  }
  
  .bs-shape-2 {
    position: absolute;
    top: 70px;
    right: 90px;
    animation: moving 15s linear infinite;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .bs-shape-2 {
      top: 134px;
    }
  }
  
  .bpservice {
    background-color: transparent;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
  }
  
  .bpservice__item {
    padding: 55px 35px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.3s;
    cursor: pointer;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bpservice__item {
      padding: 35px 15px;
    }
  }
  
  @media (max-width: 767px) {
    .bpservice__item {
      padding: 38px 15px;
    }
  }
  
  .bpservice__icon a {
    height: 84px;
    width: 84px;
    background-color: var(--tp-common-dpink);
    display: inline-block;
    text-align: center;
    line-height: 84px;
    border-radius: 50%;
    margin-bottom: 42px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .bpservice__icon a {
      margin-bottom: 25px;
    }
  }
  
  .bpservice__content .bp-sv-sm-title {
    font-size: 32px;
    color: var(--tp-common-black);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 32px;
    display: inline-block;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bpservice__content .bp-sv-sm-title {
      font-size: 25px;
      margin-bottom: 25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .bpservice__content .bp-sv-sm-title {
      font-size: 25px;
      margin-bottom: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .bpservice__content .bp-sv-sm-title {
      font-size: 25px;
      margin-bottom: 25px;
    }
  }
  
  .bpservice__content P {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .bpservice:hover,
  .bpservice.active {
    box-shadow: 0px 26px 50px rgba(206, 210, 225, 0.24);
    background-color: var(--tp-common-white);
  }
  
  .bpservice:hover .bpservice__item,
  .bpservice.active .bpservice__item {
    border: 1px solid #f0f0f7;
  }
  
  .bpservice:hover .bpservice__icon a,
  .bpservice.active .bpservice__icon a {
    animation: icon-bounce 0.8s 1;
  }
  
  .bp-sv-color-1:hover {
    color: var(--tp-common-dpink);
  }
  
  .bp-sv-color-2 .bpservice__icon a {
    background-color: var(--tp-common-blue);
  }
  
  .bp-sv-color-2:hover {
    color: var(--tp-common-blue);
  }
  
  .bp-sv-color-3 .bpservice__icon a {
    background-color: var(--tp-theme-1);
  }
  
  .bp-sv-color-3:hover {
    color: var(--tp-theme-1);
  }
  
  .bp-sv-color-4 .bpservice__icon a {
    background-color: var(--tp-theme-primary);
  }
  
  .bp-sv-color-4:hover {
    color: var(--tp-theme-primary);
  }
  
  .sv-1-border {
    border: 1px solid #f3f3f3;
  }
  
  .svcase__img {
    margin-bottom: 30px;
    border-radius: 20px;
  }
  
  .svcase__img img {
    border-radius: 20px;
    max-width: 100%;
    transform: scale(1);
    transition: 1s;
  }
  
  .svcase:hover .svcase__img img {
    transform: scale(1.1);
  }
  
  .svcase__content p {
    font-size: 16px;
    line-height: 27px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .svcase__content p br {
      display: none;
    }
  }
  
  .sv-case-sm-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--tp-common-black);
    padding-bottom: 5px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .sv-case-sm-title {
      font-size: 21px;
    }
  }
  
  .sv-case-sm-title:hover {
    color: var(--tp-theme-1);
  }
  
  .sv-2-border {
    border: 1px solid #f3f3f3;
  }
  
  .service-details-space {
    margin-bottom: 200px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .service-details-space {
      margin-bottom: 80px;
    }
  }
  
  .service-pt-pb {
    padding-top: 125px;
    padding-bottom: 100px;
  }
  
  .sd-service-details-paragraph {
    padding-left: 60px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .sd-service-details-paragraph {
      padding-left: 45px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .sd-service-details-paragraph {
      padding-left: 0px;
    }
  }
  
  .sd-service-details a {
    font-weight: 500;
    font-size: 18px;
    align-items: center;
    text-decoration-line: underline;
    color: var(--tp-common-black);
    display: inline-block;
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .sd-service-details a {
      margin-bottom: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .sd-service-details a {
      margin-bottom: 50px;
      font-size: 16px;
    }
  }
  
  .sd-service-details a:hover {
    color: var(--tp-common-blue);
  }
  
  .sd-service-details a::before {
    content: "";
    height: 19px;
    width: 19px;
    border-radius: 50%;
    background-color: var(--tp-common-blue);
    display: inline-block;
    transform: translateY(4px);
    margin-right: 10px;
  }
  
  .sd-service-details a i {
    font-size: 14px;
    padding-left: 10px;
  }
  
  .sd-big-img {
    margin-bottom: 100px;
  }
  
  .sd-big-img img {
    border-radius: 20px;
    max-width: 100%;
  }
  
  .sv-four-color {
    background-color: rgba(130, 206, 253, 0.1);
  }
  
  .sv-five-color {
    background-color: rgba(30, 226, 207, 0.1);
  }
  
  .sv-six-color {
    background-color: rgba(253, 52, 110, 0.1);
  }
  
  /*----------------------------------------*/
  
  /*  11. feature CSS START
  /*----------------------------------------*/
  
  .tp-feature-list {
    padding-bottom: 15px;
  }
  
  .tp-feature-list__icon-img {
    height: 60px;
    width: 60px;
    background-color: var(--tp-theme-1);
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    flex: 0 0 auto;
  }
  
  @media (max-width: 767px) {
    .tp-feature-list__icon-img {
      margin-bottom: 20px;
    }
  }
  
  .tp-feature-list__content h4 {
    color: var(--tp-common-black);
    font-size: 24px;
    font-weight: 500;
  }
  
  .tp-feature-list__content p {
    color: #404045;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
  }
  
  @media (max-width: 767px) {
    .tp-feature-list__content p {
      font-size: 17px;
    }
  
    .tp-feature-list__content p br {
      display: none;
    }
  }
  
  .tp-feature-list:hover .fea-color-1 {
    box-shadow: inset 0 0 0 40px rgba(30, 226, 207, 0.9);
  }
  
  .tp-feature-list:hover .fea-color-1 svg {
    color: var(--tp-common-white);
    position: relative;
    z-index: 3;
  }
  
  .tp-feature-list:hover .fea-color-2 {
    box-shadow: inset 0 0 0 40px rgba(66, 62, 243, 0.9);
  }
  
  .tp-feature-list:hover .fea-color-2 svg {
    color: var(--tp-common-white);
    position: relative;
    z-index: 3;
  }
  
  .tp-feature-list:hover .fea-color-3 {
    box-shadow: inset 0 0 0 40px rgba(253, 52, 110, 0.9);
  }
  
  .tp-feature-list:hover .fea-color-3 svg {
    color: var(--tp-common-white);
    position: relative;
    z-index: 3;
  }
  
  @media (max-width: 767px) {
    .tp-fea-img {
      margin-bottom: 60px;
    }
  }
  
  .fea-color-1 {
    background-color: rgba(30, 226, 207, 0.15);
    transition: 0.5s;
  }
  
  .fea-color-1 svg {
    color: var(--tp-common-paste);
    transition: 0.5s;
  }
  
  .fea-color-2 {
    background-color: rgba(66, 62, 243, 0.15);
    transition: 0.5s;
  }
  
  .fea-color-2 svg {
    color: var(--tp-theme-1);
    transition: 0.5s;
  }
  
  .fea-color-3 {
    background-color: rgba(253, 52, 110, 0.15);
    transition: 0.5s;
  }
  
  .fea-color-3 svg {
    color: rgb(253, 52, 110);
    transition: 0.5s;
  }
  
  .tpchosebox {
    background-color: var(--tp-common-white);
    border-radius: 20px;
    box-shadow: 0px 26px 50px rgba(203, 206, 225, 0.24);
    padding: 50px 40px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tpchosebox {
      padding: 50px 34px;
    }
  }
  
  .tpchosebox:hover .tpchosebox__icon a {
    transform: rotateY(-180deg);
  }
  
  .tpchosebox__icon a {
    color: var(--tp-common-dpink);
    height: 60px;
    width: 60px;
    background-color: rgba(253, 52, 110, 0.15);
    display: inline-block;
    text-align: center;
    line-height: 64px;
    font-size: 26px;
    border-radius: 50%;
  }
  
  .tpchosebox__content h4 {
    color: var(--tp-common-black);
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 15px;
  }
  
  .tpchosebox__content h4 a {
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
  }
  
  .tpchosebox__content h4 a:hover {
    background-size: 0% 1px, 100% 1px;
  }
  
  .tpchosebox__content p {
    color: #404045;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
  }
  
  .fea-color-4 a {
    background-color: rgba(30, 226, 207, 0.15);
    color: var(--tp-common-paste);
  }
  
  .fea-color-5 a {
    background-color: rgba(252, 220, 2, 0.15);
    color: var(--tp-theme-primary);
  }
  
  .fea-wrapper-main:last-child {
    margin-bottom: 0;
  }
  
  .tp-chose-bg {
    position: absolute;
    z-index: -1;
    left: 0;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-chose-bg {
      right: 50px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-chose-bg {
      right: 70px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-chose-bg {
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: center;
    }
  }
  
  @media (max-width: 767px) {
    .tp-chose-bg {
      position: static;
      margin-bottom: 70px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-chose-bg img {
      max-width: 100%;
    }
  }
  
  .ce-chose-shape {
    position: absolute;
    bottom: 130px;
    right: 100px;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .ce-chose-shape {
      bottom: 70px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-chose-area {
      padding-top: 120px;
    }
  }
  
  @media (max-width: 767px) {
    .tpchosebox-main {
      margin-bottom: 70px;
    }
  }
  
  .tp-chose-space {
    transform: translateX(-75px);
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-chose-space {
      transform: translateX(-23px);
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-chose-space {
      transform: translateX(0);
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-chose-space {
      transform: translateX(-12px);
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-chose-space {
      transform: translateX(0);
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-feature-section-title-box .tp-title-sm {
      font-size: 29px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-feature-section-title-box {
      margin-top: 60px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-feature-section-title-box {
      padding-left: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-feature-section-title-box p {
      font-size: 15px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-fea-img {
      margin-bottom: 70px;
    }
  }
  
  .tp-fea-img img {
    max-width: 100%;
  }
  
  @media (max-width: 767px) {
    .tp-feature-list {
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
  }
  
  .ac-feature-title {
    font-size: 50px;
    color: var(--tp-common-black);
    font-weight: 700;
    line-height: 1.2;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .ac-feature-title {
      font-size: 42px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .ac-feature-title {
      font-size: 35px;
      margin-bottom: 30px;
    }
  }
  
  .ac-feature-right {
    padding-left: 55px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ac-feature-right {
      padding-left: 35px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .ac-feature-right {
      padding-left: 0px;
    }
  }
  
  .acfeature {
    text-align: center;
    margin-top: -17px;
  }
  
  .acfeature__item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  
  .ac-feature-sm-title {
    font-size: 24px;
    color: var(--tp-common-black);
    font-weight: 700;
    transition: 0.3s;
  }
  
  .ac-feature-sm-title:hover {
    color: var(--tp-common-dpink);
  }
  
  .ac-circle {
    height: 30px;
    width: 30px;
    background-color: var(--tp-common-white);
    box-shadow: 0px 1px 40px #d4dae8;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
  }
  
  .ac-circle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 15px;
    width: 15px;
    background-color: var(--tp-common-dpink);
    box-shadow: 0px 1px 40px #d4dae8;
    border-radius: 50%;
    display: inline-block;
    content: "";
    transform: translate(-50%, -50%);
  }
  
  .ac-feature-space {
    padding-bottom: 80px;
  }
  
  .ac-feature-border-top {
    border-top: 1px solid rgba(41, 41, 48, 0.08);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .ac-feature-border-top {
      border-top: transparent;
    }
  }
  
  .ac-cirle-color-2 {
    transition: 0.3s;
  }
  
  .ac-cirle-color-2:hover {
    color: var(--tp-common-paste);
  }
  
  .ac-cirle-color-2::after {
    background-color: var(--tp-common-paste);
  }
  
  .ac-cirle-color-3 {
    transition: 0.3s;
  }
  
  .ac-cirle-color-3:hover {
    color: var(--tp-theme-primary);
  }
  
  .ac-cirle-color-3::after {
    background-color: var(--tp-theme-primary);
  }
  
  .ac-cirle-color-4 {
    transition: 0.3s;
  }
  
  .ac-cirle-color-4:hover {
    color: var(--tp-theme-1);
  }
  
  .ac-cirle-color-4::after {
    background-color: var(--tp-theme-1);
  }
  
  /*----------------------------------------*/
  
  /*  04. brand CSS START
  /*----------------------------------------*/
  
  .tp-business-tab button {
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 500;
  }
  
  /*----------------------------------------*/
  
  /*  23. project CSS START
  /*----------------------------------------*/
  
  .tp-service-tab button {
    margin-left: 45px;
    font-size: 18px;
    font-weight: 500;
    color: #404045;
    position: relative;
    padding-bottom: 15px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-service-tab button {
      margin-left: 25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-service-tab button {
      margin-left: 0px;
      margin-right: 40px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-service-tab button {
      margin-left: 0px;
      margin-bottom: 10px;
      margin-right: 20px;
    }
  }
  
  .tp-service-tab button::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-1);
    border-radius: 33px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
  
  .tp-service-tab button::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-primary);
    border-radius: 33px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
  
  .tp-project-box {
    background-color: #f7f8fd;
    padding: 40px;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-project-box {
      padding: 40px 36px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-box {
      padding: 20px;
    }
  }
  
  .tp-project-img {
    border-radius: 20px;
  }
  
  .tp-project-img img {
    border-radius: 20px;
    transform: scale(1);
    transition: 1s;
  }
  
  .tp-project-box:hover .tp-project-img img {
    transform: scale(1.1);
  }
  
  .tp-project-item-two .project-one {
    border-radius: 20px;
  }
  
  .tp-project-item-two .project-one img {
    border-radius: 20px;
    transform: scale(1);
    transition: 1s;
  }
  
  .tp-project-item-two:hover img {
    transform: scale(1.1);
  }
  
  @media (max-width: 767px) {
    .tp-project-content {
      margin-left: 0px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-content .tp-btn-sm {
      padding: 0px 21px;
    }
  }
  
  .tp-project-content .pro-lg-title {
    font-size: 35px;
    font-weight: 500;
    color: var(--tp-common-black);
    margin-bottom: 25px;
  }
  
  .tp-project-content .pro-lg-title:hover {
    color: var(--tp-theme-1);
  }
  
  @media (max-width: 767px) {
    .tp-project-content .pro-lg-title {
      font-size: 21px;
    }
  }
  
  .tp-project-content p {
    margin-bottom: 40px;
  }
  
  .tp-project-sm-content p {
    line-height: 30px;
    margin-bottom: 35px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-project-sm-content p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-sm-content p {
      font-size: 16px;
    }
  }
  
  .pro-sm-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--tp-common-black);
    margin-bottom: 30px;
    letter-spacing: -1px;
  }
  
  .pro-sm-title:hover {
    color: var(--tp-theme-1);
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .pro-sm-title {
      font-size: 22px;
    }
  }
  
  @media (max-width: 767px) {
    .pro-sm-title {
      font-size: 20px;
      margin-bottom: 10px;
    }
  }
  
  .bp-project-shape-1 {
    position: absolute;
    top: -91px;
    left: -70px;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-project-shape-2 {
    position: absolute;
    bottom: 28px;
    right: 33px;
    animation: rotate2 15s linear infinite;
  }
  
  .tp-project-box-sm {
    background-color: #f7f8fd;
    padding: 43px 0;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-project-box-sm {
      padding: 32px 0;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-box-sm {
      flex-wrap: wrap;
      padding: 20px;
    }
  }
  
  .tp-project-box-sm:hover .tp-project-sm-img img {
    transform: scale(1.1);
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-service-tab-button {
      margin-bottom: 30px;
    }
  }
  
  .tp-project-sm-img {
    width: 230px;
    flex: 0 0 auto;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-project-sm-img {
      margin-right: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-sm-img {
      margin: 0;
      margin-bottom: 20px;
      width: 100%;
    }
  }
  
  .tp-project-sm-img img {
    border-radius: 20px;
    width: 100%;
    transform: scale(1);
    transition: 1s;
  }
  
  .tp-service-tab button:hover::after,
  .tp-service-tab button.active::after {
    visibility: visible;
    opacity: 1;
    width: 98%;
  }
  
  .tp-service-tab button:hover::before,
  .tp-service-tab button.active::before {
    visibility: visible;
    opacity: 1;
    width: 50%;
  }
  
  .tp-project-shape {
    position: absolute;
    right: 0;
    bottom: -25px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-shape {
      bottom: -51px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-project-shape {
      bottom: -60px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-shape {
      bottom: -46px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-section-box {
      text-align: center;
    }
  }
  
  .tp-project-tab-button {
    background-color: #f9fafb;
    padding: 10px 15px;
    display: inline-block;
  }
  
  .tp-project-tab-button button {
    font-size: 15px;
    font-weight: 500;
    padding: 15px 35px;
    position: relative;
    margin-left: -4px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-project-tab-button button {
      font-size: 14px;
      padding: 15px 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-tab-button button {
      font-size: 14px;
      padding: 6px 13px;
      margin: 3px 0px;
    }
  }
  
  .tp-project-tab-button button:last-child:after {
    display: none;
  }
  
  .tp-project-tab-button button span {
    position: relative;
    z-index: 3;
  }
  
  .tp-project-tab-button button.active {
    box-shadow: 0px 15px 30px rgba(57, 81, 105, 0.05);
    background-color: var(--tp-common-white);
    color: var(--tp-common-black);
  }
  
  .tp-project-tab-button button.active:before {
    opacity: 1;
    visibility: visible;
  }
  
  .tp-project-tab-button button:hover {
    color: #222;
  }
  
  .tp-project-tab-button button:before {
    content: "";
    height: 100%;
    width: 101%;
    top: 0;
    left: -1px;
    background: #fff;
    position: absolute;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
  }
  
  .tp-project-tab-button button:after {
    content: "";
    height: 40px;
    width: 1px;
    top: 50%;
    right: 0;
    background: #e4e6ea;
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-project-tab-button button:after {
      height: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-tab-button button:after {
      display: none;
    }
  }
  
  .project-shape-img {
    position: absolute;
    top: 200px;
    left: -85px;
    animation: zoom 5s infinite;
  }
  
  .tp-project-shape-one {
    position: absolute;
    left: 3%;
    top: 12%;
    animation: jumpTwo 4s infinite linear;
  }
  
  @media (max-width: 767px) {
    .tp-project-shape-one {
      top: 0;
      left: 0;
    }
  }
  
  .tp-project-shape-two {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translate(-50%);
    animation: jumpTwo 3s infinite linear;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-shape-two {
      top: 85%;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-shape-two {
      top: 92%;
    }
  }
  
  .tp-project-icon-two {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
  
  .tp-project-icon-two a {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--tp-theme-primary);
    color: transparent;
    display: inline-block;
    text-align: center;
    line-height: 105px;
    font-size: 36px;
    -webkit-text-stroke: 2px #292930;
    transition: 0.3s;
    transform: rotate(45deg) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
  
  .tp-project-icon-two a:hover {
    background-color: var(--tp-theme-1);
    -webkit-text-stroke: 2px #fff;
  }
  
  .tp-project-item-two:hover .tp-project-icon-two a {
    transform: rotate(45deg) scale(1);
    opacity: 1;
    visibility: visible;
  }
  
  .tp-project-item-three__img img {
    max-width: 100%;
    border-radius: 20px;
  }
  
  .tp-project-item-three__bg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    visibility: hidden;
    transition: 0.3s;
    opacity: 0;
    bottom: 25px;
    transition-delay: 0.5s;
    width: inherit;
    height: inherit;
  }
  
  .tp-project-item-three__bg-info {
    background-color: var(--tp-theme-primary);
    border-radius: 10px;
    display: inline-block;
    padding: 45px 75px;
  }
  
  @media (max-width: 767px) {
    .tp-project-item-three__bg-info {
      padding: 21px 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-item-three__bg-info {
      padding: 25px 25px;
    }
  }
  
  .tp-project-item-three:hover .tp-project-title {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  .tp-project-item-three:hover .tp-project-subtitle {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
  }
  
  .tp-project-item-three:hover .tp-project-item-three__bg {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
    transition-delay: 0s;
  }
  
  .tp-project-title {
    color: var(--tp-common-black);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0s;
    transition-delay: 0.2s;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-project-title {
      font-size: 18px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-title {
      font-size: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-title {
      font-size: 15px;
    }
  }
  
  .tp-project-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-project-subtitle {
    color: var(--tp-common-black);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
    transition-delay: 0s;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-project-subtitle {
      font-size: 14px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-subtitle {
      font-size: 14px;
    }
  }
  
  .tp-project-subtitle:hover {
    color: var(--tp-theme-1);
  }
  
  .project-slider-dots {
    padding-top: 60px;
  }
  
  .project-slider-dots .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--tp-theme-1);
    margin: 0px 3px;
    opacity: 0.5;
    transition: 0.3s;
  }
  
  .project-slider-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--tp-theme-1);
    width: 30px;
    border-radius: 30px;
    opacity: 1;
  }
  
  .tp-project-item-four {
    position: relative;
  }
  
  .tp-project-item-four::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 41, 48, 0.32);
    opacity: 0;
    border-radius: 20px;
    transition: 0.3s;
    pointer-events: none;
  }
  
  .tp-project-item-four__img {
    border-radius: 15px;
  }
  
  .tp-project-item-four__img img {
    border-radius: 15px;
    transform: scale(1);
    transition: 1s;
  }
  
  .tp-project-item-four__info-four {
    background-color: var(--tp-theme-primary);
    padding: 45px 70px;
    border-radius: 10px;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 5;
  }
  
  @media (max-width: 767px) {
    .tp-project-item-four__info-four {
      padding: 10px 25px;
    }
  }
  
  .tp-project-item-four__info-four h4 {
    font-size: 26px;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  @media (max-width: 767px) {
    .tp-project-item-four__info-four h4 {
      font-size: 16px;
    }
  }
  
  .tp-project-item-four__info-four h4:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-project-item-four__info-four span {
    color: var(--tp-common-black);
    font-size: 16px;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    .tp-project-item-four__info-four span {
      font-size: 14px;
    }
  }
  
  .tp-project-item-four__info-four span:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-project-item-four__info-sm {
    background-color: var(--tp-theme-primary);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 5;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-item-four__info-sm {
      padding: 19px 23px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-project-item-four__info-sm {
      padding: 15px 20px;
    }
  }
  
  .tp-project-item-four__info-sm span {
    color: var(--tp-common-black);
    font-size: 16px;
    font-weight: 500;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-project-item-four__info-sm span {
      font-size: 14px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-project-item-four__info-sm span {
      font-size: 14px;
    }
  }
  
  .tp-project-item-four__info-sm span:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-project-item-four:hover .tp-project-item-four__info-four {
    opacity: 1;
    visibility: visible;
    top: 50%;
  }
  
  .tp-project-item-four:hover::after {
    opacity: 1;
  }
  
  .tp-project-item-four:hover .tp-project-item-four__img img {
    transform: scale(1.1);
  }
  
  .tp-project-item-four:hover .tp-project-item-four__info-sm {
    opacity: 1;
    visibility: visible;
    top: 50%;
  }
  
  .tp-project-item-four:hover::after {
    opacity: 1;
  }
  
  .tp-testi-cm-sm-title {
    font-size: 23px;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testi-cm-sm-title {
      font-size: 18px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testi-cm-sm-title {
      font-size: 16px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-testi-cm-sm-title {
      font-size: 16px;
    }
  }
  
  .tp-testi-cm-sm-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-radius-button {
    background-color: transparent;
  }
  
  .tp-radius-button button {
    padding: 20px 40px;
    font-size: 18px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-radius-button button {
      padding: 20px 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-radius-button button {
      padding: 20px 25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-radius-button button {
      padding: 20px 40px;
    }
  }
  
  .tp-radius-button button.active {
    box-shadow: 0px 15px 30px rgba(57, 81, 105, 0.05);
    background-color: var(--tp-common-white);
    color: var(--tp-common-black);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-cc-project button {
      padding: 10px 18px;
      font-size: 14px;
    }
  }
  
  .tp-pj-subtitle {
    font-size: 16px;
    color: var(--tp-common-black);
    font-weight: 500;
    padding-bottom: 5px;
    transition: 0.3s;
  }
  
  .tp-pj-subtitle:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-pj-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--tp-common-black);
    padding-bottom: 25px;
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-pj-title {
      font-size: 25px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-pj-title {
      font-size: 21px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-pj-title {
      font-size: 21px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-pj-title {
      font-size: 20px;
    }
  }
  
  .tp-pj-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-pj-title:hover svg line {
    stroke: var(--tp-theme-1);
  }
  
  .tp-pj-title svg {
    margin-left: 40px;
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-pj-title svg {
      width: 4%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-pj-title svg {
      width: 3%;
    }
  }
  
  .tpproject__thumb {
    position: relative;
  }
  
  .tpproject__thumb img {
    transform: scale(1);
    transition: 0.9s;
    border-radius: 20px;
    filter: grayscale(100%);
  }
  
  .tpproject__thumb-icon a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    height: 80px;
    width: 80px;
    background-color: var(--tp-common-white);
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    transition: 0.3s;
  }
  
  .tpproject__thumb-icon a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
  }
  
  .tpproject__thumb:hover .tpproject__thumb-icon a {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .tpproject:hover .tpproject__thumb img {
    transform: scale(1.1);
    filter: grayscale(0);
  }
  
  .my-dots {
    margin-top: 50px;
  }
  
  .my-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--tp-common-black);
    margin: 0px 3px;
    opacity: 0.5;
  }
  
  .my-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--tp-common-black);
    width: 30px;
    border-radius: 30px;
    opacity: 1;
  }
  
  .tp-project-bs-space {
    margin-left: 130px;
    margin-right: 130px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-project-bs-space {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  .bp-project-item .bp-project-img {
    position: relative;
  }
  
  .bp-project-item .bp-project-img img {
    transform: scale(1);
    transition: 0.9s;
  }
  
  .bp-project-item .bp-project-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(41, 41, 48, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }
  
  .bp-project-item span {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    text-align: center;
  }
  
  .bp-project-item span svg {
    color: var(--tp-common-white);
    transition: all 0.4s ease-in-out;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bp-project-item span svg {
      width: 60%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .bp-project-item span svg {
      width: 50%;
    }
  }
  
  .bp-project-item span:hover svg {
    color: var(--tp-theme-primary);
  }
  
  .bp-project-item:hover .bp-project-img img {
    transform: scale(1.02);
  }
  
  .bp-project-item:hover .bp-project-img::after {
    visibility: visible;
    opacity: 1;
  }
  
  .bp-project-item:hover span {
    top: 50%;
    opacity: 1;
    visibility: visible;
  }
  
  .tp-project-item-four .tp-hover-wrapper {
    background-color: var(--tp-theme-primary);
    border-radius: 10px;
    display: inline-block;
    padding: 45px 75px;
  }
  
  .tp-project-item-four .tp-img-reveal-wrapper {
    width: auto;
    height: auto;
  }
  
  .tp-project-item-four .tp-hover-title {
    color: var(--tp-common-black);
  }
  
  .tp-project-item-four .tp-hover-subtitle {
    color: var(--tp-common-black);
    transition: inherit;
  }
  
  .tp-project-item-four p,
  .tp-project-item-three .tp-hover-meta {
    display: none;
  }
  
  .tp-img-reveal-item {
    text-align: center;
  }
  
  .port-space {
    margin-bottom: 70px;
  }
  
  .portfolio-four {
    position: relative;
  }
  
  .portfolio-four img {
    border-radius: 20px;
  }
  
  .portfolio-four::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tp-theme-1);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: scale(0.8);
  }
  
  .portfolio-four:hover::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  
  .portfolio-four:hover .portfolio-icon a {
    opacity: 1;
    visibility: visible;
  }
  
  .portfolio-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .portfolio-icon a {
    color: var(--tp-common-white);
    line-height: 0;
    font-size: 36px;
    transform: rotateX(45deg);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .portfolio-icon a:hover {
    color: var(--tp-common-black);
  }
  
  .tp-portfolio-content-box {
    position: absolute;
    top: 65px;
    left: -100%;
    background-color: var(--tp-common-black);
    padding: 30px 70px 30px 40px;
    border-radius: 0px 10px 10px 0px;
    transition: 0.8s;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-portfolio-content-box {
      top: 30px;
      padding: 20px 30px 20px 30px;
    }
  }
  
  .tp-portfolio-content-box span {
    color: var(--tp-theme-primary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .portfolio-animation-icon {
    position: absolute;
    bottom: 10px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-animation-icon {
      right: 20px;
    }
  }
  
  .portfolio-animation-icon svg {
    color: var(--tp-common-white);
    transition: 0.3s;
  }
  
  .portfolio-animation-icon svg:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-project-item-two:hover .tp-portfolio-content-box {
    left: 0;
  }
  
  .tp-project-item-two:hover .portfolio-animation-icon {
    bottom: 50px;
    opacity: 1;
    visibility: visible;
  }
  
  .portfolio-animation-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--tp-common-white);
    letter-spacing: -1px;
  }
  
  .portfolio-animation-title:hover {
    color: var(--tp-theme-primary);
  }
  
  .portfolio-thumb {
    border-radius: 20px;
  }
  
  .portfolio-thumb img {
    transform: scale(1);
    transition: 1s;
  }
  
  .portfolio-thumb:hover img {
    transform: scale(1.1);
  }
  
  /*----------------------------------------*/
  
  /*  21. price CSS START
  /*----------------------------------------*/
  
  .cpprice {
    border: 1px solid #f0f1f6;
    border-radius: 20px;
    padding: 47px 47px 55px 47px;
  }
  
  .cpprice__meta {
    margin-bottom: 30px;
  }
  
  .cpprice__meta span {
    font-size: 20px;
    color: var(--tp-common-black);
    font-weight: 400;
  }
  
  .cpprice__meta span b {
    font-size: 50px;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  .cpprice__list ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #404045;
    margin-bottom: 17px;
  }
  
  .cpprice__button {
    padding-top: 80px;
  }
  
  .cp-price-title {
    font-size: 35px;
    font-weight: 400;
    color: var(--tp-common-black);
    border-bottom: 1px solid #f0f1f6;
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
  
  .cp-price-sm-title {
    font-size: 16px;
    color: var(--tp-common-black);
    font-weight: 400;
    line-height: 1.5;
    padding-bottom: 40px;
  }
  
  .cpprice.active {
    background-color: var(--tp-common-blue);
  }
  
  .cpprice.active .cpprice__list ul li {
    color: var(--tp-common-black);
  }
  
  .cpprice.active .cpprice__button .tp-btn-yellow {
    background-color: var(--tp-common-white);
  }
  
  .jobitem {
    border: 1px solid #f6f6f6;
    padding: 50px 38px;
    border-radius: 20px;
    transition: 0.3s;
  }
  
  .jobitem__brand {
    margin-bottom: 45px;
  }
  
  .jobitem__details p {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #404045;
    padding-bottom: 10px;
  }
  
  .jobitem__details p i {
    padding-right: 8px;
  }
  
  .jobitem__details p:last-child {
    padding-bottom: 36px;
  }
  
  .jobitem:hover {
    box-shadow: 0px 16px 11px rgba(224, 224, 224, 0.25);
  }
  
  .job-title-sm {
    font-size: 20px;
    color: var(--tp-common-black);
    line-height: 32px;
    font-weight: 500;
    padding-bottom: 25px;
  }
  
  .job-title-sm a {
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
  }
  
  .job-title-sm a:hover {
    background-size: 0% 1px, 100% 1px;
  }
  
  /*----------------------------------------*/
  
  /*  01. about CSS START
  /*----------------------------------------*/
  
  .bp-about-img {
    max-width: inherit;
    margin-left: -210px;
    position: relative;
    z-index: 2;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .bp-about-img {
      margin-left: 0;
    }
  
    .bp-about-img img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .bp-about-img {
      margin-left: 0;
      margin-bottom: 50px;
    }
  
    .bp-about-img img {
      max-width: 100%;
    }
  }
  
  .bp-about-shape {
    position: absolute;
    top: -25px;
    left: -8px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .bp-about-shape {
      top: -75px;
      left: -235px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .bp-about-shape {
      top: -80px;
      left: -327px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bp-about-shape {
      top: -80px;
      left: -417px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .bp-about-shape {
      top: -68px;
      left: -502px;
    }
  }
  
  .bs-section-title-space {
    padding-left: 80px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .bs-section-title-space {
      padding-left: 0px;
    }
  }
  
  .bs-about-sm-1 {
    position: absolute;
    right: 110px;
    top: 103px;
    animation: moving 5s linear infinite;
  }
  
  .bs-about-sm-2 {
    position: absolute;
    right: 110px;
    bottom: 103px;
    animation: rotate2 5s linear infinite;
  }
  
  .ac-ab-title {
    color: var(--tp-common-black);
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.3;
    margin-bottom: 45px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .ac-ab-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 767px) {
    .ac-ab-title {
      font-size: 36px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .ac-play-button {
      margin-bottom: 40px;
    }
  }
  
  .ac-play-button a {
    height: 66px;
    width: 66px;
    background-color: var(--tp-common-blue);
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 66px;
    color: var(--tp-common-black);
    font-size: 16px;
    margin-right: 20px;
  }
  
  .ac-play-button a:hover {
    background-color: var(--tp-theme-primary);
  }
  
  .ac-play-button span {
    color: var(--tp-common-black);
    font-size: 18px;
    font-weight: 500;
  }
  
  .ac-about-right {
    padding-left: 65px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ac-about-right {
      padding-left: 35px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .ac-about-right {
      padding-left: 0px;
    }
  }
  
  .ac-border-bottom {
    border-bottom: 1px solid rgba(41, 41, 48, 0.08);
  }
  
  .ac-bottom-space {
    padding-bottom: 100px;
  }
  
  @media (max-width: 767px) {
    .ac-bottom-space {
      padding-bottom: 50px;
    }
  }
  
  .am-fea-space {
    padding-left: 40px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .am-fea-space {
      padding-left: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .am-fea-space {
      padding-left: 0px;
    }
  }
  
  .am-fea-space-2 {
    padding-left: 75px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .am-fea-space-2 {
      padding-left: 15px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .am-fea-space-2 {
      padding-left: 0px;
    }
  }
  
  .actestimonial {
    padding-right: 45px;
  }
  
  .actestimonial__icon {
    margin-bottom: 40px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .actestimonial__icon {
      margin-bottom: 20px;
    }
  }
  
  .actestimonial__position {
    margin-bottom: 35px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .actestimonial__position {
      margin-bottom: 20px;
    }
  }
  
  .actestimonial__position span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .actestimonial__paragraph p {
    font-weight: 400;
    font-size: 26px;
    color: var(--tp-common-black);
    line-height: 1.6;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .actestimonial__paragraph p {
      font-size: 21px;
    }
  }
  
  @media (max-width: 767px) {
    .actestimonial__paragraph p {
      font-size: 16px;
      margin-bottom: 50px;
    }
  }
  
  .actestimonial__paragraph p span {
    color: var(--tp-common-blue);
    font-size: 23px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .actestimonial__paragraph p span {
      font-size: 20px;
    }
  }
  
  .ac-client-name {
    font-size: 24px;
    color: var(--tp-common-black);
    font-weight: 700;
  }
  
  .am-p-space-1 {
    padding-bottom: 25px;
    padding-right: 80px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .am-p-space-1 {
      padding-right: 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .am-p-space-1 {
      padding-right: 0px;
    }
  }
  
  .am-p-space-2 {
    padding-bottom: 25px;
    padding-right: 40px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .am-p-space-2 {
      padding-right: 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .am-p-space-2 {
      padding-right: 0px;
    }
  }
  
  .am-p-space-3 {
    padding-bottom: 25px;
    padding-right: 10px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .am-p-space-3 {
      padding-right: 10px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .am-p-space-3 {
      padding-right: 0px;
    }
  }
  
  .ac-ab-img {
    width: 100%;
    border-radius: 15px;
  }
  
  .ac-ab-img img {
    border-radius: 15px;
    max-width: 100%;
    transform: scale(1);
    transition: 1s;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .ac-ab-img img {
      width: 100%;
      margin-bottom: 40px;
    }
  }
  
  .ac-ab-img:hover img {
    transform: scale(1.1);
  }
  
  .amaboutinfo {
    padding-left: 60px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .amaboutinfo {
      padding-left: 30px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .amaboutinfo {
      padding-left: 0px;
    }
  }
  
  .amaboutinfo__client-info h4 {
    font-size: 30px;
    color: var(--tp-common-black);
    font-weight: 500;
  }
  
  .amaboutinfo__client-info span {
    font-size: 12px;
    color: var(--tp-theme-1);
    text-transform: uppercase;
    padding-bottom: 25px;
    display: inline-block;
  }
  
  .amaboutinfo__client-info p {
    color: #404045;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 25px;
    padding-right: 20px;
    line-height: 25px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .amaboutinfo__client-info p {
      padding-right: 0px;
    }
  }
  
  .amaboutinfo__experience p {
    font-size: 18px;
    font-weight: 400;
    color: #404045;
  }
  
  .amaboutinfo__experience p:hover a {
    color: var(--tp-theme-1);
  }
  
  .amaboutinfo__experience p b {
    color: var(--tp-common-black);
  }
  
  .amaboutsocial__icon {
    overflow: hidden;
  }
  
  @media (max-width: 767px) {
    .amaboutsocial__icon {
      display: inline-block;
      margin-bottom: 0;
    }
  }
  
  .amaboutsocial__icon>a {
    display: inline-block;
  }
  
  .amaboutsocial__icon .tp-si.tp-si-color-2 {
    background-color: var(--tp-common-blue);
  }
  
  .amaboutsocial__icon .tp-si__text {
    background-color: #4267b2;
    height: 42px;
    padding-left: 16px;
    padding-right: 28px;
    display: inline-block;
    color: var(--tp-common-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 42px;
    border-radius: 3px 0 0 3px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-right: -112px;
    z-index: -1;
    position: relative;
  }
  
  @media (max-width: 767px) {
    .amaboutsocial__icon .tp-si__text {
      display: none;
    }
  }
  
  .amaboutsocial__icon .tp-si__text.tp-si-color-1 {
    background-color: #e40028;
  }
  
  .amaboutsocial__icon .tp-si__text.tp-si-color-2 {
    background-color: var(--tp-theme-1);
  }
  
  .amaboutsocial__icon .tp-si__text.tp-si-color-3 {
    background-color: var(--tp-common-blue);
  }
  
  .amaboutsocial__icon .tp-si__text.tp-si-color-4 {
    background-color: #e40028;
  }
  
  .amaboutsocial__icon .tp-si__text::after {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    width: 14px;
    background-color: rgba(255, 255, 255, 0.15);
    display: inline-block;
    z-index: 9;
  }
  
  .amaboutsocial__icon .tp-si__icon {
    background-color: #4267b2;
    height: 42px;
    width: 42px;
    text-align: center;
    display: inline-block;
    color: var(--tp-common-white);
    line-height: 42px;
    border-radius: 3px;
  }
  
  @media (max-width: 767px) {
    .amaboutsocial__icon .tp-si__icon {
      margin-right: 10px;
      margin-top: 20px;
    }
  }
  
  .amaboutsocial__icon .tp-si__icon.tp-si-color-1 {
    background-color: #e40028;
  }
  
  .amaboutsocial__icon .tp-si__icon.tp-si-color-2 {
    background-color: var(--tp-theme-1);
  }
  
  .amaboutsocial__icon .tp-si__icon.tp-si-color-3 {
    background-color: var(--tp-common-blue);
  }
  
  .amaboutsocial__icon .tp-si__icon.tp-si-color-4 {
    background-color: #e40028;
  }
  
  .si-btn-link:hover .tp-si__text {
    opacity: 1;
    visibility: visible;
    margin-right: 0px;
  }
  
  .si-btn-link:hover .tp-si__icon {
    border-radius: 0 3px 3px 0;
  }
  
  .feature-bottom-space {
    padding-bottom: 220px;
  }
  
  @media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-bottom-space {
      padding-bottom: 90px;
    }
  }
  
  .amfeature {
    padding-top: 50px;
  }
  
  @media (max-width: 767px) {
    .amfeature {
      padding-left: 0px;
    }
  }
  
  .amfeature__item p {
    font-size: 15px;
    line-height: 26px;
  }
  
  .amfeature__title p {
    font-size: 16px;
  }
  
  .amfeature__list ul li {
    color: var(--tp-common-black);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
    padding-bottom: 5px;
  }
  
  .amfeature__list ul li i {
    color: #726ffc;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 6px;
  }
  
  .amskill__title p {
    font-size: 16px;
    line-height: 26px;
  }
  
  .am-skill-title {
    font-size: 30px;
    color: var(--tp-common-black);
    font-weight: 500;
    padding-bottom: 25px;
  }
  
  .am-skill-sm-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--tp-common-black);
    padding-bottom: 20px;
  }
  
  .am-contact-title {
    font-size: 24px;
    color: var(--tp-common-black);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background-color: var(--tp-common-white);
    padding-right: 90px;
    display: inline-block;
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .am-contact-title {
      font-size: 23px;
    }
  }
  
  .am-border-shape {
    position: absolute;
    height: 1px;
    background-color: #f4f6fb;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    z-index: -1;
  }
  
  .contact-form {
    background-color: var(--tp-grey-1);
    border-radius: 20px;
    padding: 80px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-form {
      padding: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .contact-form {
      padding: 10px;
    }
  }
  
  .contact-form .input input {
    width: 100%;
    height: 65px;
    border-radius: 5px;
    border: none;
    padding: 0px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  
  .contact-form .input input::placeholder {
    color: #404045;
    font-size: 15px;
    font-weight: 400;
  }
  
  .contact-form .textarea textarea {
    width: 100%;
    height: 180px;
    padding: 30px 20px;
    border: 0;
    outline: 0;
    resize: none;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  
  .contact-form .textarea textarea::placeholder {
    color: #404045;
    font-size: 15px;
    font-weight: 400;
  }
  
  .am-contact-info {
    margin-bottom: 35px;
  }
  
  /*----------------------------------------*/
  
  /*  26. testimonial CSS START
  /*----------------------------------------*/
  
  .tp-testimonial-item {
    background-color: #3a3a42;
    padding: 60px 45px;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testimonial-item {
      padding: 60px 35px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-testimonial-item {
      padding: 20px 40px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-item {
      padding: 25px 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-item .tp-testi-meta {
      flex-direction: column;
      margin-bottom: 20px;
    }
  }
  
  .tp-testi-icon-box {
    flex: 0 0 auto;
  }
  
  .tp-testi-client-position h3 {
    color: var(--tp-common-white);
    font-size: 18px;
    font-weight: 700;
  }
  
  .tp-testi-client-position h6 {
    color: var(--tp-common-white);
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    .tp-testi-ratting {
      margin-top: 15px;
    }
  }
  
  .tp-testi-ratting i {
    color: var(--tp-theme-primary);
  }
  
  .tp-testi-p-text p {
    color: var(--tp-common-white);
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testi-p-text p {
      font-size: 16px;
      margin-bottom: 0;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-testi-p-text p {
      font-size: 16px;
      margin-bottom: 0;
    }
  }
  
  .testimonial-slider-active {
    margin-left: -55px;
    margin-right: -55px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-slider-active {
      margin-left: -390px;
      margin-right: -390px;
    }
  }
  
  @media (max-width: 767px) {
    .testimonial-slider-active {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .testimonial-slider-active-2 {
    margin-left: -390px;
    margin-right: -390px;
  }
  
  @media (max-width: 767px) {
    .testimonial-slider-active-2 {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .tp-testi-img img {
    border-radius: 10px;
  }
  
  .tp-testimonial-slider-section .swiper-slide.swiper-slide-active {
    border: 1px solid #ffdc60;
    border-radius: 20px;
  }
  
  .tp-testimonial-info img {
    border-radius: 10px;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
  }
  
  .tp-testimonial-info h4 {
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 700;
  }
  
  .tp-testimonial-info span {
    font-size: 12px;
    font-weight: 500;
    color: #404045;
    margin-bottom: 30px;
    display: inline-block;
  }
  
  .tp-testimonial-info span i {
    color: var(--tp-theme-primary);
  }
  
  .tp-testimonial-info span .fa-stars-1 {
    padding-left: 8px;
  }
  
  .tp-testimonial-info p {
    color: var(--tp-common-black);
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-testimonial-info p {
      font-size: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-info p {
      font-size: 18px;
    }
  }
  
  .testimonial-slider-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--tp-theme-1);
    margin: 0px 3px;
    opacity: 0.5;
    transition: 0.3s;
  }
  
  .testimonial-slider-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--tp-theme-1);
    width: 30px;
    border-radius: 30px;
    opacity: 1;
  }
  
  .testimonial-shape-1 {
    position: absolute;
    top: 210px;
    left: 120px;
    animation: moving 6s linear infinite;
  }
  
  .testimonial-shape-2 {
    position: absolute;
    top: 309px;
    left: 325px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-3 {
    position: absolute;
    top: 50%;
    left: 70px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-4 {
    position: absolute;
    bottom: 160px;
    left: 280px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-5 {
    position: absolute;
    bottom: 100px;
    left: 90px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-6 {
    position: absolute;
    top: 160px;
    right: 300px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-7 {
    position: absolute;
    top: 150px;
    right: 80px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-8 {
    position: absolute;
    top: 50%;
    right: 315px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-9 {
    position: absolute;
    top: 50%;
    right: 80px;
    animation: rotate 8s linear infinite;
  }
  
  .testimonial-shape-10 {
    position: absolute;
    bottom: 160px;
    right: 210px;
    animation: rotate 8s linear infinite;
  }
  
  .tp-testimonial-box {
    background-color: var(--tp-common-white);
    padding: 75px 63px;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testimonial-box {
      padding: 54px 63px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial-box {
      padding: 40px 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-box {
      padding: 40px 20px;
    }
  }
  
  .tp-testimonial-box__rating span {
    color: var(--tp-theme-primary);
    font-size: 26px;
    padding-right: 5px;
    margin-bottom: 55px;
    display: inline-block;
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-box__rating span {
      margin-bottom: 35px;
      font-size: 20px;
    }
  }
  
  .tp-testimonial-box__rating p {
    font-size: 24px;
    font-weight: 400;
    color: var(--tp-common-black);
    line-height: 1.7;
    margin-bottom: 75px;
    padding-right: 5px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial-box__rating p {
      font-size: 23px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-box__rating p {
      font-size: 15px;
      margin-bottom: 30px;
    }
  }
  
  .tp-testimonial-box__testi-title .testi-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 4px;
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-box__testi-title .testi-heading {
      font-size: 17px;
    }
  }
  
  .tp-testimonial-box__testi-title span {
    display: block;
    color: #404045;
    font-size: 14px;
    font-weight: 500;
  }
  
  .testi-slider-active-four {
    margin-left: -320px;
    margin-right: -320px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .testi-slider-active-four {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  @media (max-width: 767px) {
    .testi-slider-active-four {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  .testi-slider-opacity {
    opacity: 0.3;
  }
  
  .testi-slider-opacity.swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  
  .testimonial-slider-dots-four .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--tp-theme-1);
    margin: 0px 3px;
    opacity: 0.5;
    transition: 0.3s;
  }
  
  .testimonial-slider-dots-four .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--tp-theme-1);
    width: 30px;
    border-radius: 30px;
    opacity: 1;
  }
  
  .tp-testimonial-item-four {
    border: 1px solid #f0f1f6;
    padding: 0px 46px;
    padding-top: 50px;
    padding-bottom: 60px;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testimonial-item-four {
      padding: 0px 35px;
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial-item-four {
      padding: 0px 15px;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-item-four {
      padding: 0px 20px;
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial-item-four__meta {
      margin-bottom: 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-item-four__meta {
      margin-bottom: 25px;
    }
  }
  
  .tp-testimonial-item-four__rating span {
    color: var(--tp-theme-primary);
    line-height: 1;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .tp-testimonial-item-four .tp-testi-paragraph {
      margin-bottom: 0;
      padding-bottom: 10px;
    }
  }
  
  .tp-testimonial-item-four .tp-testi-paragraph p {
    font-size: 18px;
    font-weight: 400;
    color: var(--tp-common-black);
    line-height: 32px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-testimonial-item-four .tp-testi-paragraph p {
      font-size: 16px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-testimonial-item-four .tp-testi-paragraph p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-item-four .tp-testi-paragraph p {
      font-size: 15px;
    }
  }
  
  .tp-testimonial-item-four__position h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-common-black);
  }
  
  .tp-testimonial-item-four__position span {
    color: #404045;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  @media (max-width: 767px) {
    .tp-testi-wrapper {
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 767px) {
    .tp-testimonial-title-box {
      margin-bottom: 40px;
    }
  }
  
  .ce-testi-shape {
    position: absolute;
    bottom: 150px;
    left: 45px;
    animation: rotate2 15s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .ce-testi-shape {
      bottom: 20px;
    }
  }
  
  .tp-testimonial-thumb img {
    max-width: 100%;
  }
  
  .tptestimonial__rating-5 span {
    color: var(--tp-theme-primary);
    padding-right: 2px;
    margin-bottom: 55px;
    display: inline-block;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tptestimonial__rating-5 span {
      margin-bottom: 35px;
    }
  }
  
  @media (max-width: 767px) {
    .tptestimonial__rating-5 span {
      margin-bottom: 25px;
    }
  }
  
  .tptestimonial__rating-5 p {
    font-size: 30px;
    font-weight: 400;
    color: var(--tp-common-black);
    line-height: 1.4;
    padding-bottom: 55px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tptestimonial__rating-5 p {
      font-size: 28px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tptestimonial__rating-5 p {
      font-size: 25px;
      margin-bottom: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tptestimonial__rating-5 p {
      font-size: 18px;
      padding-bottom: 20px;
    }
  }
  
  .tptestimonial__meta-5 span {
    font-size: 14px;
    font-weight: 500;
    color: #404045;
    text-transform: uppercase;
  }
  
  @media (max-width: 767px) {
    .testimonial-pd-slider-section {
      padding-left: 0px;
    }
  }
  
  .tp-pd-testi-title {
    color: var(--tp-common-black);
    font-weight: 700;
    font-size: 24px;
  }
  
  .project-blue-dots {
    padding-top: 0px;
    position: absolute;
  }
  
  .project-blue-dots .swiper-pagination-bullet {
    background-color: rgb(137, 206, 251);
  }
  
  @media (max-width: 767px) {
    .project-blue-dots {
      padding-top: 20px;
      position: static;
    }
  }
  
  .project-blue-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--tp-common-blue);
    box-shadow: 0px 2px 2px rgba(89, 86, 233, 0.25);
  }
  
  .bp-testi-shape-1 {
    position: absolute;
    top: 150px;
    left: 330px;
    animation: moving 9s linear infinite;
  }
  
  .bp-testi-shape-2 {
    position: absolute;
    top: 130px;
    right: 120px;
    animation: rotate2 15s linear infinite;
  }
  
  .bs-testi-shape-1 {
    position: absolute;
    bottom: 70px;
    left: 40px;
    animation: rotate2 15s linear infinite;
  }
  
  .ac-testimonial-right img {
    max-width: 100%;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .ac-testimonial-info {
      margin-bottom: 70px;
    }
  }
  
  .testimonial-html-space {
    padding-left: 45px;
    padding-right: 120px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-html-space {
      padding-right: 45px;
    }
  }
  
  @media (max-width: 767px) {
    .testimonial-html-space {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  
  .basic-pagination ul li:not(:last-child) {
    margin-right: 10px;
  }
  
  .basic-pagination ul li {
    display: inline-block;
  }
  
  .basic-pagination ul li a,
  .basic-pagination ul li span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    border: 2px solid #f1f1f1;
    font-size: 18px;
    font-weight: 600;
  }
  
  .basic-pagination ul li a:hover,
  .basic-pagination ul li a.current,
  .basic-pagination ul li span:hover,
  .basic-pagination ul li span.current {
    background: var(--tp-theme-primary);
    border-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
  }
  
  /*----------------------------------------*/
  
  /*  25. team CSS START
  /*----------------------------------------*/
  
  .tp-team-item {
    position: relative;
    overflow: hidden;
  }
  
  .tp-team-item__img img {
    border-radius: 10px;
  }
  
  .tp-team-item__info {
    background-color: var(--tp-theme-primary);
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    padding: 25px 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-team-item__info {
      padding: 25px 25px;
    }
  }
  
  .tp-team-item__icon i {
    font-size: 36px;
    -webkit-text-stroke: 1px #292930;
    color: transparent;
    transform: rotate(45deg);
    font-weight: 700;
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0s;
    transition-delay: 0.2s;
  }
  
  .tp-team-item:hover .tp-team-item__icon i {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0.2s;
    transform: rotate(45deg);
  }
  
  .tp-team-item:hover .tp-team-title {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  .tp-team-item:hover .tp-team-subtitle {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
  }
  
  .tp-team-item:hover .tp-team-item__info {
    opacity: 1;
    visibility: visible;
    bottom: 0;
  }
  
  .tp-team-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--tp-common-black);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0s;
    transition-delay: 0.2s;
  }
  
  .tp-team-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-team-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--tp-common-black);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transition-delay: 0s;
    transition-delay: 0.2s;
  }
  
  .tp-team-overlay {
    position: relative;
  }
  
  .tp-team-overlay__img img {
    border-radius: 10px;
  }
  
  .tp-team-overlay::after {
    background-color: var(--tp-theme-secondary);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    border-radius: 10px;
  }
  
  .tp-team-overlay__info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
  }
  
  .tp-team-overlay__info .team-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  .tp-team-overlay__info .team-title:hover {
    color: var(--tp-theme-1);
    transition: 0.3s;
  }
  
  .tp-team-overlay__info i {
    font-size: 85px;
    -webkit-text-stroke: 2px #292930;
    color: transparent;
    transform: rotate(45deg);
    font-weight: 700;
    transition: 0.3s;
  }
  
  .tp-team-overlay__info i:hover {
    -webkit-text-stroke: 2px var(--tp-theme-1);
  }
  
  .tpteam {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .tpteam::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tp-common-blue);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .tpteam__shape-1 {
    position: absolute;
    top: -70px;
    left: -60px;
    z-index: 2;
    transition: 0.6s;
  }
  
  .tpteam__shape-2 {
    position: absolute;
    bottom: -70px;
    right: -60px;
    z-index: 2;
    transition: 0.6s;
  }
  
  .tpteam__thumb img {
    border-radius: 10px;
    max-width: 100%;
  }
  
  .tpteam__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    transition: 0.3s;
    width: 100%;
  }
  
  .tpteam__content i {
    font-size: 15px;
    color: var(--tp-common-black);
    padding: 0px 15px;
    transition: 0.3s;
  }
  
  .tpteam__content i:hover {
    color: var(--tp-common-white);
  }
  
  .tpteam:hover::after {
    opacity: 1;
    visibility: visible;
  }
  
  .tpteam:hover .tpteam__content {
    opacity: 1;
    visibility: visible;
  }
  
  .tpteam:hover .tpteam__shape-1 {
    left: 0;
    top: 0;
  }
  
  .tpteam:hover .tpteam__shape-2 {
    right: 0;
    bottom: 0;
  }
  
  .tp-team-sm-title {
    color: var(--tp-common-black);
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .tp-team-sm-title:hover {
    color: var(--tp-common-white);
  }
  
  .tp-team-sm-subtitle {
    color: var(--tp-common-black);
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
    padding-bottom: 5px;
  }
  
  .tp-team-sm-subtitle:hover {
    color: var(--tp-common-white);
  }
  
  .bp-team-shape-1 {
    position: absolute;
    top: 160px;
    left: 145px;
    animation: rotate2 15s linear infinite;
  }
  
  .ac-team-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--tp-common-black);
    letter-spacing: -2px;
  }
  
  /*----------------------------------------*/
  
  /*  18. mission CSS START
  /*----------------------------------------*/
  
  .tp-mission-tab {
    display: inline-block;
    border: 2px solid var(--tp-common-black);
    border-radius: 10px;
    padding: 0px 15px;
    margin-bottom: 55px;
  }
  
  .tp-mission-tab button {
    color: var(--tp-common-black);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 20px 45px;
    position: relative;
    margin: 7px 0;
    margin-left: -5px;
    margin-right: -2px;
    border-radius: 10px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-mission-tab button {
      padding: 20px 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-mission-tab button {
      padding: 15px 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-mission-tab button {
      padding: 19px 21px;
    }
  }
  
  .tp-mission-tab button::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 40px;
    background-color: #b5b5b5;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-mission-tab button::after {
      height: 20px;
    }
  }
  
  .tp-mission-tab button::before {
    content: "";
    height: 100%;
    width: 102%;
    top: 0;
    left: -2px;
    background: var(--tp-common-blue);
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
  }
  
  .tp-mission-tab button:last-child::after {
    display: none;
  }
  
  .tp-mission-tab button span {
    position: relative;
    z-index: 9;
  }
  
  .tp-mission-tab button.active {
    background-color: var(--tp-common-blue);
  }
  
  .tp-mission-tab button.active::before {
    opacity: 1;
    visibility: visible;
  }
  
  .tp-mission-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 40px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-mission-title {
      font-size: 42px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-mission-title {
      font-size: 28px;
    }
  }
  
  .tpmission__content p {
    font-size: 18px;
    font-weight: 400;
    color: #404045;
    padding-right: 62px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tpmission__content p br {
      display: none;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tpmission__content p {
      font-size: 15px;
    }
  
    .tpmission__content p br {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .tpmission__content p {
      padding-right: 0;
      font-size: 15px;
    }
  
    .tpmission__content p br {
      display: none;
    }
  }
  
  .tp-mission-img {
    margin-left: 110px;
  }
  
  .tp-mission-img img {
    max-width: 100%;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-mission-img {
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-mission-img {
      margin-left: 0px;
      margin-top: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-mission-img {
      margin-left: 0px;
      margin-top: 50px;
    }
  }
  
  .bp-mission-shape-1 {
    position: absolute;
    top: 140px;
    left: 44px;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-mission-shape-2 {
    position: absolute;
    bottom: 50px;
    left: 44px;
    animation: moving 9s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .bp-mission-shape-2 {
      bottom: -50px;
    }
  }
  
  .bp-mission-shape-3 {
    position: absolute;
    bottom: 0;
    right: 13%;
    animation: rotate2 15s linear infinite;
  }
  
  /*----------------------------------------*/
  
  /*  16. job CSS START
  /*----------------------------------------*/
  
  .jobdetails__subtitle {
    padding-bottom: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid #eceff4;
  }
  
  .jobdetails__title span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 45px;
    display: inline-block;
  }
  
  .jobdetails__paragraph p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
  }
  
  .jobdetails__paragraph p b {
    color: var(--tp-common-black);
  }
  
  .jobdetails__img {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  
  .jobdetails__img img {
    max-width: 100%;
    border-radius: 20px;
  }
  
  .jobdetails__feature ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
  }
  
  .jobdetails__feature ul li span {
    font-size: 16px;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  .jobdetails__feature ul li i {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--tp-theme-primary);
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    color: var(--tp-common-black);
    position: absolute;
    top: 3px;
    left: 0;
    margin-right: 20px;
  }
  
  .jobdetails__feature-2 ul li {
    margin-bottom: 45px;
  }
  
  .jb-subtitle {
    color: #ff2449;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .job-title {
    color: var(--tp-common-black);
    font-size: 26px;
    font-weight: 500;
  }
  
  /*----------------------------------------*/
  
  /*  07. chose CSS START
  /*----------------------------------------*/
  
  .bp-chose-1 {
    position: absolute;
    bottom: 104px;
    left: 144px;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-chose-2 {
    position: absolute;
    bottom: 87px;
    right: 132px;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-chose-3 {
    position: absolute;
    top: 135px;
    right: 132px;
    animation: moving 9s linear infinite;
  }
  
  .ac-chose-bg {
    background-color: var(--tp-grey-1);
    border-radius: 20px;
    padding: 80px 80px 50px 80px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ac-chose-bg {
      padding: 40px 40px 0px 40px;
    }
  }
  
  @media (max-width: 767px) {
    .ac-chose-bg {
      padding: 30px 30px 0px 30px;
    }
  }
  
  /*----------------------------------------*/
  
  /*  05. case CSS START
  /*----------------------------------------*/
  
  .cd-banner-img img {
    border-radius: 20px;
    max-width: 100%;
  }
  
  .cd-case-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--tp-common-black);
    padding-bottom: 15px;
  }
  
  .cd-project-info-box {
    padding-right: 80px;
    padding-left: 80px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .cd-project-info-box {
      padding-right: 60px;
      padding-left: 40px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cd-project-info-box {
      padding-right: 20px;
      padding-left: 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .cd-project-info-box {
      padding-right: 0px;
      padding-left: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .cd-project-info-box {
      padding-right: 10px;
      padding-left: 10px;
      margin-bottom: 30px;
    }
  }
  
  .cd-project-info-box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
  }
  
  .cd-client-details {
    padding-left: 40px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .cd-client-details {
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .cd-client-details {
      padding-left: 10px;
      margin-bottom: 20px;
    }
  }
  
  .cd-client-details p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  
  .cd-client-details p span {
    color: var(--tp-common-black);
  }
  
  .cd-project-wrapper {
    border: 1px solid #ebebeb;
    padding: 70px 0;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .cd-project-wrapper {
      padding: 23px 0;
    }
  }
  
  @media (max-width: 767px) {
    .cd-project-wrapper {
      padding: 10px 0;
    }
  }
  
  .cd-social-icon {
    padding-left: 70px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cd-social-icon {
      padding-left: 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .cd-social-icon {
      padding-left: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .cd-social-icon {
      padding-left: 10px;
    }
  }
  
  .cd-social-icon a {
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 767px) {
    .cd-social-icon a {
      display: inline-block;
      margin-right: 20px;
    }
  }
  
  .cd-si-color-1 {
    color: #4267b2;
  }
  
  .cd-si-color-1:hover {
    background-color: #4267b2;
    color: var(--tp-common-white);
    border-color: #4267b2;
  }
  
  .cd-si-color-2 {
    color: #e40028;
  }
  
  .cd-si-color-2:hover {
    background-color: #e40028;
    color: var(--tp-common-white);
    border-color: #e40028;
  }
  
  .cd-si-color-3 {
    color: #1da1f2;
  }
  
  .cd-si-color-3:hover {
    background-color: #1da1f2;
    color: var(--tp-common-white);
    border-color: #1da1f2;
  }
  
  .cd-info-box {
    padding-left: 80px;
    padding-right: 110px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .cd-info-box {
      padding-left: 35px;
      padding-right: 100px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .cd-info-box {
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cd-info-box {
      padding-left: 45px;
    }
  }
  
  /*----------------------------------------*/
  
  /*  22. product CSS START
  /*----------------------------------------*/
  
  .tp-product-title {
    font-size: 18px;
    color: var(--tp-common-black);
    font-weight: 500;
  }
  
  .tp-product-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tpproduct__img {
    margin-bottom: 45px;
    position: relative;
  }
  
  .tpproduct__img::after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 41, 48, 0.6);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .tpproduct__meta span {
    color: #777b83;
    font-size: 18px;
    font-weight: 500;
  }
  
  .tpproduct__meta .product-rating {
    color: #f7931e;
    margin-bottom: 5px;
  }
  
  .tpproduct:hover .tpproduct__img::after {
    opacity: 1;
    visibility: visible;
  }
  
  .tpproduct:hover .tpproduct__img .tp-product-icon {
    opacity: 1;
    visibility: visible;
    bottom: 40%;
  }
  
  .tp-product-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px 10px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  
  .tp-product-icon a {
    height: 50px;
    width: 50px;
    background-color: var(--tp-theme-primary);
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-weight: 300;
    color: var(--tp-common-black);
    margin: 0px 6px;
  }
  
  .tp-product-icon a:hover {
    background-color: var(--tp-theme-1);
    color: var(--tp-common-white);
  }
  
  .productdetails {
    padding-left: 35px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .productdetails {
      padding-left: 0;
    }
  }
  
  .productdetails__content p {
    font-size: 16px;
    font-weight: 400;
    color: #777b83;
    line-height: 26px;
    padding-bottom: 10px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .productdetails__content p br {
      display: none;
    }
  }
  
  .productdetails__ratting i {
    color: var(--tp-theme-primary);
    font-size: 14px;
  }
  
  .productdetails__ratting span {
    font-size: 14px;
    color: var(--tp-common-black);
    font-weight: 500;
    padding-bottom: 30px;
    display: inline-block;
  }
  
  .productdetails__ratting h4 {
    font-weight: 700;
    font-size: 30px;
    color: var(--tp-common-black);
    padding-bottom: 25px;
  }
  
  .productdetails__ratting h4 del {
    font-size: 20px;
    font-weight: 500;
    color: #b9b9b9;
  }
  
  .productdetails__model {
    padding-bottom: 45px;
  }
  
  .productdetails__model h5 {
    font-size: 16px;
    color: var(--tp-common-black);
    font-weight: 500;
    padding-bottom: 10px;
  }
  
  .productdetails__model a {
    font-size: 12px;
    color: #777b83;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #f7f8fd;
    height: 25px;
    display: inline-block;
    padding: 0px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  
  .productdetails__model a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
  }
  
  .pd-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--tp-common-black);
    padding-bottom: 10px;
  }
  
  /*----------------------------------------*/
  
  /*  19. SHOP CSS START
  /*----------------------------------------*/
  
  .productdetails-tabs {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  
  .tpshopitem:hover .tpshopitem__thumb img {
    transform: scale(1.2);
  }
  
  .tpshopitem:hover .tpshopitem__thumb-icon {
    bottom: 14px;
    opacity: 1;
    visibility: visible;
  }
  
  .tpshopitem__thumb {
    border: 1px solid #eceff4;
    border-radius: 5px;
  }
  
  .tpshopitem__thumb img {
    width: 100%;
    -webkit-transition: all 1s ease-out 0s;
    -moz-transition: all 1s ease-out 0s;
    -ms-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
  }
  
  .tpshopitem__thumb-icon {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  .tpshopitem__thumb-icon a {
    margin: 0 5px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border: 1px solid var(--tp-theme-blue);
    border-radius: 50%;
    display: inline-block;
    background-color: #0e63ff;
    color: var(--tp-common-white);
  }
  
  .tpshopitem__thumb-icon a:hover {
    background-color: var(--tp-theme-pink);
    border: 1px solid var(--tp-theme-pink);
  }
  
  .tpshopitem__content p {
    font-size: 18px;
    font-weight: 500;
    color: #777b83;
    margin-bottom: 6px;
  }
  
  .tpshopitem__title {
    font-size: 18px;
    font-weight: 500;
    display: block;
  }
  
  .tpshopitem__title a {
    background-image: linear-gradient(#0e63ff, #0e63ff),
      linear-gradient(#0e63ff, #0e63ff);
    background-repeat: no-repeat;
    background-position: 100% 100%, 0% 100%;
    background-size: 0% 1px, 0 1px;
    display: inline;
  }
  
  .tpshopitem__title a:hover {
    background-size: 0% 1px, 100% 1px;
    color: var(--tp-theme-blue);
  }
  
  .tpshopitem__review i {
    color: #f7931e;
  }
  
  .tpshopitem__product-base {
    position: absolute;
    top: 20px;
    left: 30px;
    font-weight: 700;
    font-size: 12px;
    color: var(--tp-common-white);
    padding: 6px 13px;
    background: #fd4766;
    border-radius: 5px;
    line-height: 1;
  }
  
  .tpproduct span {
    font-weight: 500;
    font-size: 15px;
  }
  
  .tpfilter {
    justify-content: end;
  }
  
  @media (max-width: 767px) {
    .tpfilter {
      justify-content: start;
    }
  }
  
  .tpfilter span {
    font-weight: 500;
    font-size: 15px;
  }
  
  .tpfilter .nice-select {
    padding-left: 5px;
    border: none;
    color: var(--tp-theme-primary);
  }
  
  .productthumb img {
    border-radius: 25px;
  }
  
  @media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .productthumb img {
      max-width: 100%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .product {
      margin-left: 0;
    }
  }
  
  .product__details-content p {
    font-weight: 400;
    font-size: 16px;
    color: #777b83;
  }
  
  @media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .product__details-content p br {
      display: none;
    }
  }
  
  .product-dtitle {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
  }
  
  @media (max-width: 767px) {
    .product-dtitle {
      font-size: 24px;
    }
  }
  
  .product-dinfo span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #141515;
  }
  
  .product-rating a {
    color: #ffdc60;
  }
  
  .product-dprice {
    font-weight: 400;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.02em;
  }
  
  .product-model-title {
    font-family: "Archivo";
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #0b0b0b;
  }
  
  .product-quantity-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.02em;
    color: #0b0b0b;
  }
  
  .product-quantity input {
    color: var(--tp-theme-primary);
    border: none;
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
  }
  
  .product-model-list a {
    font-size: 12px;
    font-weight: 600;
    color: #777b83;
    background: #f7f8fd;
    display: inline-block;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 15px;
    border-radius: 2px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-model-list a {
      margin-right: 8px;
    }
  }
  
  @media (max-width: 767px) {
    .product-model-list a {
      margin-right: 5px;
      padding: 0 6px;
    }
  }
  
  .product-model-list a:last-child {
    margin-right: 0;
  }
  
  .product-model-list a:hover {
    background: var(--tp-theme-blue);
    color: var(--tp-common-white);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-product-img {
      margin-bottom: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-product-img img {
      max-width: 100%;
    }
  }
  
  .tp-product-quantity .cart-minus,
  .tp-product-quantity .cart-plus {
    cursor: pointer;
    color: #8d8884;
  }
  
  .tp-product-quantity .cart-minus:hover,
  .tp-product-quantity .cart-plus:hover {
    color: var(--tp-theme-primary);
  }
  
  .tp-product-quantity input {
    height: 30px;
    width: 32px;
    font-size: 14px;
    border: none;
    font-weight: 700;
    text-align: center;
  }
  
  .product-rating {
    margin-right: 20px;
  }
  
  .product-rating a {
    font-size: 16px;
    color: #ffdc60;
  }
  
  .product-dinfo {
    display: flex;
  }
  
  .product-dprice del {
    font-size: 20px;
    color: #b9b9b9;
  }
  
  .pro-details-nav {
    background: #f9fafb;
    display: inline-block;
    padding: 7px 7px;
  }
  
  .pro-details-nav-btn {
    border: none;
  }
  
  .pro-details-nav-btn li {
    font-weight: 500;
    font-size: 18px;
    color: var(--tp-text-body);
    position: relative;
  }
  
  .pro-details-nav-btn li button span {
    position: relative;
    z-index: 9;
  }
  
  .pro-details-nav-btn li button::before {
    content: "";
    height: 100%;
    width: 102%;
    top: 0;
    left: -1px;
    background: #fff;
    position: absolute;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
  }
  
  .pro-details-nav-btn li button.active::before {
    opacity: 1;
    visibility: visible;
  }
  
  .pro-details-nav-btn li::after {
    position: absolute;
    content: "";
    height: 40px;
    width: 1px;
    background: #dfe3e9;
    top: 50%;
    transform: translateY(-50%);
  }
  
  @media (max-width: 767px) {
    .pro-details-nav-btn li::after {
      display: none;
    }
  }
  
  .pro-details-nav-btn li:last-child::after {
    display: none;
  }
  
  @media (max-width: 767px) {
    .pro-details-nav-btn li {
      font-size: 16px;
    }
  }
  
  .pro-details-nav-btn li .nav-links {
    padding: 20px 45px;
    border-radius: 5px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .pro-details-nav-btn li .nav-links {
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 767px) {
    .pro-details-nav-btn li .nav-links {
      padding: 5px 15px;
    }
  }
  
  .pro-details-nav-btn li .nav-links.active {
    background: var(--tp-common-white);
    color: var(--tp-common-black);
  }
  
  .tab-para p {
    font-size: 16px;
    line-height: 30px;
  }
  
  .comments-box {
    margin-bottom: 50px;
  }
  
  .user-rating ul li {
    display: inline-block;
    color: #ffdc60;
  }
  
  .comments-text span,
  .comments-text p {
    font-size: 14px;
    color: #777777;
    line-height: 26px;
  }
  
  .comment-title p {
    color: #777777;
    font-size: 16px;
  }
  
  .comment-rating span {
    font-weight: 500;
    margin-right: 5px;
  }
  
  .comment-rating ul li {
    display: inline-block;
    color: #ffdc60;
  }
  
  .comment-input textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    padding: 20px;
  }
  
  .comment-input textarea:focus {
    outline: 0;
    border: 1px solid var(--tp-theme-primary);
  }
  
  .comment-input input {
    width: 100%;
    height: 50px;
    resize: none;
    outline: 0;
    border: 1px solid #e7e7e7;
    padding: 8px 20px;
    margin-bottom: 30px;
  }
  
  .comment-input input:focus {
    border: 1px solid var(--tp-theme-primary);
  }
  
  .comments-avatar {
    flex: 0 0 auto;
  }
  
  .table .add-info {
    font-size: 18px;
    font-weight: 500;
  }
  
  .table td {
    padding: 18px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .shop-left-right {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .tp-comments-title {
    font-size: 24px;
    color: var(--tp-common-black);
    font-weight: 700;
    text-transform: capitalize;
  }
  
  @media (max-width: 767px) {
    .tp-comments-title {
      font-size: 18px;
    }
  }
  
  .avatar-name b {
    color: var(--tp-common-black);
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .shop-faq .accordion-header button {
    font-size: 18px;
    padding: 20px 55px 20px 30px;
  }
  
  @media (max-width: 767px) {
    .shop-faq .accordion-header button {
      font-size: 14px;
    }
  }
  
  .shop-faq .accordion-content p br {
    display: none;
  }
  
  .shop-faq .accordion-content p {
    padding: 0 75px 20px 30px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-button a {
      margin-bottom: 10px;
    }
  }
  
  .comment-title {
    font-size: 24px;
    color: var(--tp-common-black);
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .tp-product-slider-title {
    color: var(--tp-common-black);
    font-size: 30px;
    font-weight: 500;
  }
  
  /*----------------------------------------*/
  
  /*  15. industri CSS START
  /*----------------------------------------*/
  
  .tpindustri {
    padding: 25px 35px;
    background-color: var(--tp-common-white);
    border-radius: 10px;
    display: inline-block;
    margin: 0px 10px;
    border-radius: 10px;
    box-shadow: 0px 13px 12px rgba(181, 184, 200, 0.03);
    margin-bottom: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tpindustri {
      padding: 20px 25px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tpindustri {
      padding: 18px 20px;
      margin: 0px 5px;
      margin-bottom: 15px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tpindustri {
      padding: 20px 20px;
    }
  }
  
  .tp-industri-bg {
    background-color: var(--tp-grey-1);
    padding-top: 110px;
    padding-bottom: 120px;
    border-radius: 20px;
  }
  
  .tp-industri-space {
    padding-left: 90px;
    padding-right: 90px;
    text-align: center;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-industri-space {
      padding-left: 50px;
      padding-right: 50px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-industri-space {
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-industri-space {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-industri-space {
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  .tp-industri-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--tp-common-black);
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  
  @media (max-width: 767px) {
    .tp-industri-title {
      font-size: 15px;
    }
  }
  
  .tp-industri-title::before {
    content: "";
    height: 20px;
    width: 20px;
    background-color: var(--tp-common-blue);
    display: inline-block;
    border-radius: 50%;
    margin-right: 12px;
    flex: 0 0 auto;
  }
  
  .tp-ind-color-one::before {
    background-color: var(--tp-theme-primary);
  }
  
  .tp-ind-color-two::before {
    background-color: var(--tp-common-dpink);
  }
  
  .tp-ind-color-three::before {
    background-color: var(--tp-theme-1);
  }
  
  .tp-ind-color-four::before {
    background-color: var(--tp-theme-1);
  }
  
  .tp-ind-color-five::before {
    background-color: var(--tp-common-dpink);
  }
  
  .tp-ind-color-six::before {
    background-color: var(--tp-common-blue);
  }
  
  .tp-ind-color-seven::before {
    background-color: var(--tp-theme-primary);
  }
  
  .bs-industri-1 {
    position: absolute;
    left: 40px;
    top: 50px;
    animation: rotate2 5s linear infinite;
  }
  
  /*----------------------------------------*/
  
  /*  02. blog CSS START
  /*----------------------------------------*/
  
  @media (max-width: 767px) {
    .tp-blog-section-box .tp-title {
      font-size: 30px;
    }
  }
  
  .tp-blog-item {
    padding: 40px;
    border: 1px solid #f1f3f6;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    background-color: var(--tp-common-white);
  }
  
  @media (max-width: 767px) {
    .tp-blog-item {
      padding: 20px;
    }
  }
  
  .tp-blog-item:hover .tp-blog-img img {
    transform: scale(1.1);
  }
  
  .tp-blog-img {
    border-radius: 20px;
  }
  
  .tp-blog-img img {
    transition: 1s;
    border-radius: 20px;
    transform: scale(1);
  }
  
  .tp-blog-meta a {
    color: var(--tp-theme-1);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0px 30px;
    height: 40px;
    background-color: rgba(89, 86, 233, 0.1);
    border-radius: 10px;
    line-height: 40px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-blog-meta a {
      padding: 0 15px;
      font-size: 12px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-meta a {
      padding: 0 17px;
      font-size: 12px;
    }
  }
  
  .tp-blog-meta a:hover {
    background-color: var(--tp-theme-1);
    color: #fff;
  }
  
  .tp-blog-meta .tp-blog-meta-color {
    background-color: #f1f2ff;
    color: #404045;
  }
  
  .tp-blog-meta .tp-blog-meta-color:hover {
    background-color: rgba(89, 86, 233, 0.1);
    color: var(--tp-theme-1);
  }
  
  .tp-blog-info .tp-blog-title {
    color: var(--tp-common-black);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .tp-blog-info .tp-blog-title:hover {
    color: var(--tp-theme-1);
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-blog-info .tp-blog-title {
      font-size: 28px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-info .tp-blog-title {
      font-size: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-info .tp-blog-title {
      font-size: 28px;
    }
  }
  
  .tp-blog-info P {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-blog-info P {
      font-size: 17px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-info P {
      font-size: 17px;
    }
  }
  
  .tp-blog-border {
    border-right: 1px solid #e2e7ec;
  }
  
  @media (max-width: 767px) {
    .tp-blog-border {
      border-right: 0;
    }
  }
  
  .tp-blog-space {
    margin-left: 40px;
    margin-right: 40px;
  }
  
  @media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-blog-space {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  .tp-blog-space .tp-blog-box::before {
    display: none;
  }
  
  .tp-blog-space .tp-blog-box .tp-blog-item {
    padding: 0;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-area {
      padding-bottom: 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-blog-area {
      padding-bottom: 130px;
    }
  }
  
  .blog-grey-color {
    background-color: #f7f8fd;
    border: 0;
  }
  
  .blog-border-shape {
    position: relative;
  }
  
  .blog-border-shape::after {
    position: absolute;
    content: "";
    top: 50px;
    left: 0;
    width: 1px;
    background-color: #e2e7ec;
    height: 530px;
    margin-left: -15px;
  }
  
  .tp-blog-box {
    position: relative;
  }
  
  .tp-blog-box:before {
    content: "";
    bottom: 0;
    position: absolute;
    height: 90px;
    width: 85%;
    right: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    margin: 0 auto;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    background: rgba(231, 235, 242, 0.85);
    filter: blur(45px);
  }
  
  .tp-blog-box:hover:before {
    opacity: 1;
    visibility: visible;
    bottom: -20px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-blog-item-three {
      margin-bottom: 60px;
    }
  }
  
  .tp-blog-item-three__img {
    border-radius: 20px;
  }
  
  .tp-blog-item-three__img img {
    transform: scale(1);
    transition: 1s;
  }
  
  .tp-blog-item-three:hover img {
    transform: scale(1.1);
  }
  
  .tp-blog-item-three__button {
    line-height: 1;
  }
  
  .tp-blog-item-three__meta a {
    color: var(--tp-theme-1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
  }
  
  .tp-blog-item-three__meta a:hover {
    color: var(--tp-common-black);
  }
  
  .tp-blog-item-three__meta .tp-meta-text {
    color: #404045;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding-left: 25px;
    margin-left: 25px;
    position: relative;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-blog-item-three__meta .tp-meta-text {
      padding-left: 14px;
      margin-left: 10px;
    }
  }
  
  .tp-blog-item-three__meta .tp-meta-text i {
    padding-right: 5px;
  }
  
  .tp-blog-item-three__meta .tp-meta-text::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 2px;
    height: 17px;
    background-color: #e8ecf2;
  }
  
  .tp-blog-item-three__meta .tp-meta-text span {
    font-style: normal;
    color: var(--tp-common-black);
  }
  
  .tp-blog-item-three__meta .tp-meta-text span:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-blog-item-three__title p {
    font-size: 16px;
    font-weight: 400;
    color: #404045;
    line-height: 27px;
    padding-bottom: 5px;
    padding-right: 23px;
  }
  
  .tp-bp-title {
    color: var(--tp-common-black);
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-bp-title {
      font-size: 22px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-bp-title {
      font-size: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-bp-title {
      font-size: 20px;
    }
  }
  
  .tp-bp-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-blog-border {
    border-right: 1px solid #e2e5ea;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-blog-border {
      border: transparent;
    }
  }
  
  .tp-blog-item-four__img {
    border-radius: 20px;
  }
  
  .tp-blog-item-four__img img {
    border-radius: 20px;
    transform: scale(1);
    transition: 1s;
  }
  
  .tp-blog-item-four:hover .tp-blog-item-four__img img {
    transform: scale(1.1);
  }
  
  .tp-blog-item-four__meta a {
    color: var(--tp-theme-1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
  }
  
  .tp-blog-item-four__meta a:hover {
    color: var(--tp-common-black);
  }
  
  .tp-blog-item-four__meta .tp-meta-text {
    color: #404045;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding-left: 45px;
    margin-left: 45px;
    position: relative;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-item-four__meta .tp-meta-text {
      padding-left: 25px;
      margin-left: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-item-four__meta .tp-meta-text {
      padding-left: 20px;
      margin-left: 20px;
    }
  }
  
  .tp-blog-item-four__meta .tp-meta-text i {
    padding-right: 5px;
  }
  
  .tp-blog-item-four__meta .tp-meta-text::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 2px;
    height: 17px;
    background-color: #e8ecf2;
  }
  
  .tp-blog-item-four__meta .tp-meta-text span {
    font-style: normal;
    color: var(--tp-common-black);
  }
  
  .tp-blog-item-four__meta .tp-meta-text span:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-blog-item-four__title p {
    font-size: 16px;
    font-weight: 400;
    color: #404045;
    line-height: 27px;
    padding-bottom: 5px;
    padding-right: 23px;
  }
  
  .tp-blog-user-title {
    color: var(--tp-common-black);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-blog-user-title {
      font-size: 35px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-user-title {
      font-size: 30px;
    }
  }
  
  .tp-blog-user-title:hover {
    color: var(--tp-theme-1);
  }
  
  @media (max-width: 767px) {
    .tp-blog-right-side-sm {
      padding-right: 0;
      flex-wrap: wrap;
    }
  }
  
  .tp-blog-right-side-sm:hover .tp-blog-right-side-sm__img img {
    transform: scale(1.2);
  }
  
  .tp-blog-right-side-sm__img {
    border-radius: 20px;
    flex: 0 0 auto;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-right-side-sm__img {
      marign-right: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-right-side-sm__img {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-right-side-sm__img {
      width: 100%;
    }
  }
  
  .tp-blog-right-side-sm__img img {
    transform: scale(1);
    transition: 0.9s;
  }
  
  @media (max-width: 767px) {
    .tp-blog-right-side-sm__img img {
      width: 100%;
      margin-right: 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-right-side-sm__meta {
      margin-right: 10px;
      margin-bottom: 10px;
    }
  }
  
  .tp-blog-right-side-sm__meta a {
    color: var(--tp-theme-1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    padding-right: 40px;
    font-size: 13px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-blog-right-side-sm__meta a {
      padding-right: 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-right-side-sm__meta a {
      padding-right: 5px;
    }
  }
  
  .tp-blog-right-side-sm__meta a:hover {
    color: var(--tp-common-black);
  }
  
  .tp-blog-right-side-sm__meta .tp-meta-text {
    color: #404045;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-right-side-sm__meta .tp-meta-text {
      font-size: 13px;
    }
  }
  
  .tp-blog-right-side-sm__meta .tp-meta-text i {
    padding-right: 5px;
  }
  
  .tp-blog-right-side-sm__meta .tp-meta-text span {
    font-style: normal;
    color: var(--tp-common-black);
  }
  
  .tp-blog-right-side-sm__meta .tp-meta-text span:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-blog-user-sm-title {
    color: var(--tp-common-black);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -1px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-blog-user-sm-title {
      font-size: 23px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blog-user-sm-title {
      font-size: 18px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blog-user-sm-title {
      font-size: 22px;
    }
  }
  
  .tp-blog-user-sm-title:hover {
    color: var(--tp-theme-1);
  }
  
  .circle-animation.blog-animation {
    bottom: -18%;
    left: 21%;
    border: 1px solid #e8ecf2;
    width: 537px;
    height: 537px;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .circle-animation.blog-animation {
      bottom: -11%;
      left: 9%;
      height: 400px;
      width: 400px;
    }
  }
  
  @media (max-width: 767px) {
    .circle-animation.blog-animation {
      bottom: -10%;
      left: 50%;
      height: 300px;
      width: 300px;
    }
  }
  
  .circle-animation span.tp-circle-3 {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    transform: scale(-1, 1);
    -webkit-animation: circle-animation2 13s linear infinite;
    -moz-animation: circle-animation2 13s linear infinite;
    -o-animation: circle-animation2 13s linear infinite;
    animation: circle-animation2 13s linear infinite;
  }
  
  .circle-animation span.tp-circle-3::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -25px;
    right: -7px;
    background-color: #ffadad;
  }
  
  .tp-blg-sm-title {
    font-size: 16px;
    color: rgba(41, 41, 48, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 40px;
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-blg-sm-title {
      padding-right: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blg-sm-title {
      padding-right: 25px;
    }
  }
  
  .tp-blg-sm-title:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-blg-lg-title {
    font-size: 26px;
    color: var(--tp-common-black);
    font-weight: 700;
    transition: 0.3s;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-blg-lg-title br {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .tp-blg-lg-title {
      font-size: 22px;
    }
  }
  
  .tp-blg-lg-title a {
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
  }
  
  .tp-blg-lg-title a:hover {
    background-size: 0% 1px, 100% 1px;
  }
  
  .tpblog__item {
    padding-right: 35px;
    position: relative;
    z-index: 5;
  }
  
  @media (max-width: 767px) {
    .tpblog__item {
      flex-wrap: wrap;
      padding-right: 0;
    }
  }
  
  .tpblog:hover .tpblog__thumb img {
    transform: scale(1.1);
    transition: 0.9s;
  }
  
  .tpblog__thumb {
    margin-right: 35px;
    flex: 0 0 auto;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tpblog__thumb {
      padding-right: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .tpblog__thumb {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
  
  .tpblog__thumb img {
    transform: scale(1);
  }
  
  @media (max-width: 767px) {
    .tpblog__thumb img {
      width: 100%;
    }
  }
  
  .tpblog__meta {
    margin-bottom: 30px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .tpblog__meta {
      margin-bottom: 15px;
    }
  }
  
  .tpblog__meta span {
    font-size: 16px;
    color: rgba(41, 41, 48, 0.6);
    font-weight: 700;
    line-height: 1;
    transition: 0.3s;
  }
  
  .tpblog__meta span:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-blog-bs-space {
    margin-left: 130px;
    margin-right: 130px;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-blog-bs-space {
      margin-left: 0px;
      margin-right: 0px;
    }
  }
  
  .bpblog__img img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transform: scale(1);
    transition: 0.9s;
  }
  
  .bpblog:hover .bpblog__img img {
    transform: scale(1.1);
  }
  
  .bpblog__content {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--tp-common-white);
    padding: 35px 20px;
  }
  
  .bpblog__content span {
    font-size: 12px;
    font-weight: 500;
    color: var(--tp-common-black);
    background-color: rgba(137, 206, 251, 0.2);
    height: 24px;
    padding: 0px 15px;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    margin-bottom: 20px;
    border-radius: 3px;
  }
  
  .bpblog__content span:hover {
    color: var(--tp-common-black);
    background-color: var(--tp-theme-primary);
  }
  
  .bpblog__content p {
    color: #68666e;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 767px) {
    .bpblog__content p {
      font-size: 14px;
    }
  
    .bpblog__content p br {
      display: none;
    }
  }
  
  .ce-blog-shape {
    position: absolute;
    right: 40px;
    top: 161px;
    animation: rotate2 15s linear infinite;
  }
  
  .bp-blog-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--tp-common-black);
    line-height: 1.4;
    display: inline-block;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .bp-blog-title {
      font-size: 20px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bp-blog-title {
      font-size: 16px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .bp-blog-title {
      font-size: 18px;
    }
  }
  
  @media (max-width: 767px) {
    .bp-blog-title {
      font-size: 20px;
    }
  }
  
  .bp-blog-title:hover {
    color: var(--tp-theme-1);
  }
  
  .bs-blog-shape-1 {
    position: absolute;
    left: 75px;
    bottom: 190px;
    animation: moving 5s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
    .bs-blog-shape-1 {
      left: 75px;
      bottom: 50px;
    }
  }
  
  .bs-blog-shape-2 {
    position: absolute;
    right: 130px;
    top: 136px;
    animation: rotate2 5s linear infinite;
  }
  
  @media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__wrapper {
      padding-right: 0px;
    }
  }
  
  .postbox__thumb {
    margin-bottom: -2px;
  }
  
  .postbox__thumb .play-btn {
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 90px;
    width: 90px;
    background-color: var(--tp-common-white);
    text-align: center;
    line-height: 90px;
    color: var(--tp-theme-1);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  .postbox__thumb .play-btn:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-black);
  }
  
  .postbox__thumb img {
    border-radius: 20px;
    margin-bottom: 40px;
  }
  
  .postbox__audio {
    height: 100%;
    width: 100%;
  }
  
  .postbox__audio iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .postbox__item-single:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }
  
  .postbox__content p img {
    margin-bottom: 30px;
    max-width: 100%;
  }
  
  .postbox__content-single {
    padding-left: 0;
    padding-right: 0;
    border: none;
  }
  
  .postbox__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 20px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__title {
      font-size: 33px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__title {
      font-size: 28px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__title {
      font-size: 33px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox__title {
      font-size: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .postbox__title {
      font-size: 25px;
    }
  }
  
  .postbox__title a:hover {
    color: var(--tp-theme-1);
  }
  
  .postbox__meta {
    margin-bottom: 10px;
  }
  
  .postbox__meta span {
    font-size: 14px;
    font-weight: 700;
    color: #404045;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 30px;
  }
  
  .postbox__meta span:last-child {
    margin-right: 0;
  }
  
  .postbox__meta span i {
    color: var(--tp-common-black);
    margin-right: 3px;
    font-weight: 500;
  }
  
  .postbox__meta span:hover {
    color: var(--tp-theme-1);
  }
  
  .postbox__meta span:hover i {
    color: var(--tp-theme-1);
  }
  
  .postbox__text img {
    max-width: 100%;
  }
  
  .postbox__text p {
    margin-bottom: 28px;
    font-size: 17px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__text p {
      font-size: 16px;
    }
  }
  
  .postbox__text-single p {
    margin-bottom: 15px;
  }
  
  .postbox__slider button {
    position: absolute;
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    font-size: 30px;
    color: var(--tp-common-white);
  }
  
  .postbox__slider button.slick-next {
    left: auto;
    right: 50px;
  }
  
  @media (max-width: 767px) {
    .postbox__slider button.slick-next {
      right: 10px;
    }
  }
  
  @media (max-width: 767px) {
    .postbox__slider button {
      left: 10px;
    }
  }
  
  .postbox__comment ul li {
    margin-bottom: 30px;
    list-style: none;
  }
  
  .postbox__comment ul li.children {
    margin-left: 100px;
  }
  
  @media (max-width: 767px) {
    .postbox__comment ul li.children {
      margin-left: 15px;
    }
  }
  
  .postbox__comment-form {
    margin-bottom: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.09);
    background: var(--tp-common-white);
  }
  
  .postbox__comment-form-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--tp-common-black);
    margin-bottom: 40px;
  }
  
  .postbox__comment-input {
    position: relative;
    margin-bottom: 20px;
  }
  
  .postbox__comment-input span {
    font-weight: 600;
    color: var(--tp-common-black);
    margin-bottom: 12px;
    display: block;
  }
  
  .postbox__comment-input input,
  .postbox__comment-input textarea {
    height: 55px;
    padding: 0 20px;
    width: 100%;
    font-size: 14px;
    color: var(--tp-common-black);
    outline: none;
    border: 1px solid #f7f7f7;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
  }
  
  .postbox__comment-input textarea {
    height: 175px;
    resize: none;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .postbox__comment-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 35px;
    color: var(--tp-common-black);
  }
  
  .postbox__comment-avater img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  
  .postbox__comment-name {
    margin-bottom: 5px;
  }
  
  .postbox__comment-name h5 {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: var(--tp-common-black);
  }
  
  .postbox__comment-name span {
    font-size: 14px;
    color: #8a879f;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  @media (max-width: 767px) {
    .postbox__comment-text {
      margin-left: 0;
      margin-top: 15px;
    }
  }
  
  .postbox__comment-text p {
    font-size: 16px;
    color: var(--tp-text-11);
    margin-bottom: 15px;
  }
  
  @media (max-width: 767px) {
    .postbox__comment-text p br {
      display: none;
    }
  }
  
  .postbox__comment-reply {
    margin-top: 10px;
  }
  
  .postbox__comment-reply a {
    display: inline-block;
    color: var(--tp-theme-1);
    background: rgba(61, 108, 231, 0.1);
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
  }
  
  .postbox__comment-reply a:hover {
    color: var(--tp-common-white);
    background: var(--tp-theme-1);
  }
  
  .postbox__comment-agree {
    padding-left: 5px;
  }
  
  .postbox__comment-agree input {
    margin: 0;
    appearance: none;
    -moz-appearance: none;
    display: block;
    width: 14px;
    height: 14px;
    background: var(--tp-common-white);
    border: 1px solid #b9bac1;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    flex: 0 0 auto;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
  }
  
  .postbox__comment-agree input:checked {
    position: relative;
    background-color: var(--tp-theme-1);
    border-color: transparent;
  }
  
  .postbox__comment-agree input:checked::after {
    box-sizing: border-box;
    content: "\f00c";
    position: absolute;
    font-family: var(--tp-ff-fontawesome);
    font-size: 10px;
    color: var(--tp-common-white);
    top: 46%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .postbox__comment-agree input:hover {
    cursor: pointer;
  }
  
  .postbox__comment-agree label {
    padding-left: 8px;
    color: var(--tp-text-1);
    line-height: 1;
  }
  
  .postbox__comment-agree label a {
    color: var(--tp-common-black);
    font-weight: 600;
    padding-left: 4px;
  }
  
  .postbox__comment-agree label a:hover {
    color: var(--tp-theme-1);
  }
  
  .postbox__comment-agree label:hover {
    cursor: pointer;
  }
  
  .postbox__tag span {
    font-size: 20px;
    margin-bottom: 17px;
    color: var(--tp-common-black);
    margin-right: 30px;
    font-weight: 500;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .postbox__social {
      margin-top: 40px;
    }
  }
  
  .postbox__social span {
    font-size: 20px;
    color: var(--tp-common-black);
    font-weight: 500;
  }
  
  .postbox__social a {
    font-size: 15px;
    padding-left: 30px;
  }
  
  .postbox__social a .tp-linkedin {
    color: #0e6ba1;
  }
  
  .postbox__social a .tp-pinterest {
    color: #d70220;
  }
  
  .postbox__social a .tp-facebook {
    color: #0e6ba1;
  }
  
  .postbox__social a .tp-twitter {
    color: #36b6ed;
  }
  
  .postbox__social-wrapper {
    border-bottom: 1px solid #eceef3;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  
  .postbox__comment-info {
    flex: 0 0 auto;
  }
  
  .rc__post ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .rc__post-thumb {
    flex: 0 0 auto;
  }
  
  .rc__post-thumb img {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    border-radius: 10px;
  }
  
  .rc__post-title {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--tp-common-black);
    line-height: 22px;
  }
  
  .rc__post-title a:hover {
    color: var(--tp-theme-1);
  }
  
  .rc__meta span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: #8a879f;
  }
  
  .sidebar__wrapper {
    padding-left: 40px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .sidebar__wrapper {
      padding-left: 0;
      padding-top: 50px;
    }
  }
  
  .sidebar__widget {
    padding: 40px;
    border: 1px solid #f6f6f6;
  }
  
  .sidebar__widget-title {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--tp-common-black);
    font-weight: 500;
  }
  
  .sidebar__widget:last-child-title {
    border-bottom: 0;
  }
  
  .sidebar__widget ul li {
    list-style: none;
  }
  
  .sidebar__widget ul li:last-child {
    padding-bottom: 0;
  }
  
  .sidebar__widget ul li:last-child a {
    margin-bottom: 0;
  }
  
  .sidebar__widget ul li:first-child {
    padding-top: 0;
  }
  
  .sidebar__widget ul li a {
    color: #777777;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    border: 1px solid #f2f5fa;
    margin-bottom: 10px;
    padding: 7px 15px;
  }
  
  .sidebar__widget ul li span {
    float: right;
    color: var(--tp-common-black);
    font-size: 16px;
    font-weight: 600;
  }
  
  .sidebar__widget ul li:hover a {
    color: var(--tp-theme-1);
  }
  
  .sidebar__widget ul li:hover span {
    color: var(--tp-theme-1);
  }
  
  .sidebar__search {
    position: relative;
  }
  
  .sidebar__search input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: var(--tp-grey-1);
    padding: 0 25px;
    text-transform: capitalize;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    border: 2px solid var(--tp-grey-1);
    outline: none;
    padding-top: 3px;
    padding-right: 80px;
  }
  
  .sidebar__search input::placeholder {
    color: #777777;
  }
  
  .sidebar__search button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 24px;
    color: #fff;
    line-height: 60px;
    -webkit-border-radius: 0 7px 7px 0;
    -moz-border-radius: 0 7px 7px 0;
    -o-border-radius: 0 7px 7px 0;
    -ms-border-radius: 0 7px 7px 0;
    border-radius: 0 7px 7px 0;
    color: var(--tp-common-black);
  }
  
  .sidebar__banner-content {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: var(--tp-theme-1);
  }
  
  .sidebar__banner-content h4 {
    padding: 15px 20px;
    font-size: 24px;
    color: var(--tp-common-white);
    text-transform: uppercase;
    margin-bottom: 0;
  }
  
  .tagcloud a {
    border: 1px solid #f2f4f6;
    color: #c1c1c1;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 25px;
    margin-bottom: 8px;
    margin-right: 10px;
    text-transform: uppercase;
    border-radius: 5px;
  }
  
  .tagcloud a:hover {
    background: var(--tp-theme-primary);
    color: var(--tp-common-black);
  }
  
  blockquote {
    background: var(--tp-grey-1);
    padding: 35px 50px;
    margin-bottom: 35px;
  }
  
  @media (max-width: 767px) {
    blockquote {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  
  blockquote p {
    line-height: 1.5;
    font-size: 20px;
    color: #57565e;
    font-weight: 400;
  }
  
  blockquote cite {
    font-size: 18px;
    display: block;
    margin-top: 10px;
    color: #070337;
    font-style: inherit;
    font-weight: 600;
    position: relative;
  }
  
  blockquote cite::before {
    content: "";
    font-size: 28px;
    color: var(--tp-theme-1);
    padding-bottom: 0px;
    display: inline-block;
    background: var(--tp-theme-1);
    height: 2px;
    width: 40px;
    font-weight: 400;
    text-align: center;
    top: -4px;
    margin-right: 10px;
    position: relative;
  }
  
  .blog-post-slider-active {
    position: relative;
    margin-bottom: 40px;
  }
  
  .blog-post-slider-active .swiper-slide img {
    border-radius: 20px;
    width: 100%;
  }
  
  .blog-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 5;
  }
  
  .blog-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 5;
  }
  
  .blog-post-slider-nav .nav-button {
    height: 60px;
    width: 60px;
    background-color: var(--tp-common-white);
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    color: var(--tp-common-black);
  }
  
  /*----------------------------------------*/
  
  /*  19. news CSS START
  /*----------------------------------------*/
  
  .tp-news-letter-box {
    background-color: var(--tp-theme-1);
    padding-top: 82px;
    padding-bottom: 82px;
    border-radius: 20px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  @media (max-width: 767px) {
    .tp-news-letter-box {
      background-size: cover;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-news-button .tp-btn-yellow {
      padding: 0 30px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-button .tp-btn-yellow {
      height: 50px;
      line-height: 50px;
      padding: 0 25px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-news-wrapper {
      padding-left: 35px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-wrapper {
      padding-left: 25px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-wrapper {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-sub-wrapper {
      padding-right: 0px;
    }
  }
  
  .tp-news-shape-img {
    position: absolute;
    bottom: -22px;
    left: -60px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-news-shape-img {
      left: -35px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-news-shape-img {
      left: -25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-shape-img {
      bottom: -55px;
      left: -33px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-shape-img {
      left: -16px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-letter-img {
      padding-top: 30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-letter-img img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-letter-img img {
      max-width: 100%;
      padding-top: 25px;
    }
  }
  
  .tp-newsletter-left-img {
    max-width: inherit;
    margin-left: -100px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-newsletter-left-img {
      margin-left: -30px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-newsletter-left-img {
      margin-left: -30px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-newsletter-left-img {
      margin-left: -30px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-newsletter-left-img {
      margin-left: 0px;
      padding-top: 0;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-newsletter-left-img img {
      max-width: 100%;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-newsletter-left-img img {
      max-width: 100%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-newsletter-left-img img {
      max-width: 110%;
    }
  }
  
  @media (max-width: 767px) {
    .tp-newsletter-left-img img {
      max-width: 100%;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-letter-section-box-two {
      padding-bottom: 100px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-letter-section-box .tp-title {
      font-size: 45px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-letter-section-box .tp-title {
      font-size: 30px;
    }
  }
  
  .news-shape-img {
    position: absolute;
    top: -50px;
    left: 57px;
    animation: zoom2 5s infinite;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .news-shape-img {
      left: 0px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .news-shape-img {
      left: -33px;
    }
  }
  
  @media (max-width: 767px) {
    .news-shape-img {
      left: -61px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-button .tp-btn-lg-yellow {
      margin-bottom: 20px;
    }
  }
  
  /*----------------------------------------*/
  
  /*  20. newsletter CSS START
  /*----------------------------------------*/
  
  .tp-suscribe-newslatter {
    background-repeat: no-repeat;
  }
  
  .tp-news-letter-bg {
    background: -moz-linear-gradient(45deg, #978bc1 0%, #6759a3 29%, #6759a3 66%, #494655 100%);
    background: -webkit-linear-gradient(45deg, #978bc1 0%, #6759a3 29%, #6759a3 66%, #494655 100%);
    background: linear-gradient(45deg, #978bc1 0%, #6759a3 29%, #6759a3 66%, #494655 100%);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
    /*min-height: calc(100vh - 2rem);*/
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    overflow: hidden;
    position: relative;
  }
  
  .tp-news-letter-bg::before,
  .tp-news-letter-bg::after {
    content: "";
    width: 70vmax;
    height: 70vmax;
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    left: -20vmin;
    top: -20vmin;
    animation: morph 15s linear infinite alternate, spin 20s linear infinite;
    z-index: 1;
    will-change: border-radius, transform;
    transform-origin: 55% 55%;
    pointer-events: none;
  }
  
  .tp-news-letter-bg::after {
    width: 70vmin;
    height: 70vmin;
    left: auto;
    right: -10vmin;
    top: auto;
    bottom: 0;
    animation: morph 10s linear infinite alternate, spin 26s linear infinite reverse;
    transform-origin: 20% 20%;
  }
  
  @-webkit-keyframes Gradient {
    0% {
      background-position: 0 50%
    }
  
    50% {
      background-position: 100% 50%
    }
  
    100% {
      background-position: 0 50%
    }
  }
  
  @-moz-keyframes Gradient {
    0% {
      background-position: 0 50%
    }
  
    50% {
      background-position: 100% 50%
    }
  
    100% {
      background-position: 0 50%
    }
  }
  
  @keyframes Gradient {
    0% {
      background-position: 0 50%
    }
  
    50% {
      background-position: 100% 50%
    }
  
    100% {
      background-position: 0 50%
    }
  }
  
  @keyframes morph {
    0% {
      border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
  
    100% {
      border-radius: 40% 60%;
    }
  }
  
  @keyframes spin {
    to {
      transform: rotate(1turn);
    }
  }
  
  
  .tp-news-letter-bg .area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .tp-news-letter-bg .area .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
  
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
  }
  
  
  .tp-news-letter-bg .area .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
  }
  
  .tp-news-letter-bg .area .circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
  }
  
  @keyframes animate {
  
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
    }
  
    100% {
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
    }
  
  }
  
  
  .tp-news-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--tp-common-white);
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-news-title {
      font-size: 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-title {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-title {
      font-size: 29px;
      margin-bottom: 20px;
    }
  }
  
  .tp-submit-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  
  @media (max-width: 767px) {
    .tp-submit-button {
      position: relative;
      top: 0;
      transform: inherit;
    }
  }
  
  .tp-news-button input {
    height: 80px;
    width: 100%;
    border: 0;
    background-color: #6461ff;
    box-shadow: 0px, 14px rgba(35, 33, 142, 0.04);
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    color: var(--tp-common-white);
    padding-left: 30px;
    padding-right: 240px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-news-button input {
      padding-right: 200px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-button input {
      height: 60px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-news-button input {
      padding-left: 20px;
      padding-right: 10px;
      height: 60px;
      margin-bottom: 20px;
    }
  }
  
  .tp-news-button input::placeholder {
    color: var(--tp-common-white);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-news-sub-wrapper {
      margin-bottom: 70px;
    }
  }
  
  /*----------------------------------------*/
  
  /*  08. contact CSS START
  /*----------------------------------------*/
  
  .tp-contact-title {
    margin-bottom: 50px;
    color: var(--tp-common-black);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
  }
  
  .tp-contact-title svg {
    margin-right: 10px;
    flex: 0 0 auto;
  }
  
  .tpcontact__form input {
    width: 100%;
    height: 60px;
    padding-left: 20px;
    border: none;
    border-radius: 10px;
    color: #404045;
    margin-bottom: 30px;
  }
  
  .tpcontact__form input::placeholder {
    font-size: 15px;
    color: #404045;
  }
  
  .tpcontact__form textarea {
    width: 100%;
    resize: none;
    border: none;
    height: 215px;
    display: inline-block;
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 28px;
    color: #404045;
  }
  
  .tpcontact__form textarea:focus {
    outline: none;
  }
  
  .tpcontact__form textarea::placeholder {
    font-size: 15px;
    color: #404045;
  }
  
  .tpcontact__form-2 {
    padding-left: 80px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tpcontact__form-2 {
      padding-left: 40px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tpcontact__form-2 {
      padding-left: 0px;
      margin-top: 40px;
    }
  }
  
  .tpcontact__form-2 input {
    background-color: var(--tp-grey-1);
    height: 65px;
    padding-right: 20px;
  }
  
  .tpcontact__form-2 textarea {
    background-color: var(--tp-grey-1);
  }
  
  .tpcontact__form-3 {
    background-color: transparent;
  }
  
  .tpcontact__form-3 input {
    border: 1px solid #eff1f6;
  }
  
  .tpcontact__form-3 textarea {
    border: 1px solid #eff1f6;
  }
  
  .tp-border-left {
    border-left: 1px solid rgba(41, 41, 48, 0.1);
    padding-left: 100px;
    margin-left: 20px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-border-left {
      border-left: transparent;
      padding-left: 0px;
      margin-left: 0px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-border-left {
      border-left: transparent;
      padding-left: 0px;
      margin-left: 0px;
      margin-top: 60px;
    }
  }
  
  .tp-contact-thumb img {
    max-width: 100%;
  }
  
  .tp-contact-info span {
    color: #404045;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding-right: 33px;
  }
  
  .tp-contact-info span:hover {
    color: var(--tp-theme-1);
  }
  
  .contact-space-40 {
    margin-left: 40px;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-space-40 {
      margin-left: 0;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-space-40 {
      margin-bottom: 70px;
    }
  }
  
  @media (max-width: 767px) {
    .contact-space-40 {
      margin-left: 0;
      margin-bottom: 70px;
    }
  }
  
  .contact-title {
    font-weight: 700;
    color: var(--tp-common-black);
    font-size: 22px;
  }
  
  .tp-contact-big-title {
    font-size: 65px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 60px;
  }
  
  .login-space {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  
  .tp-login-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--tp-common-black);
    padding-bottom: 30px;
  }
  
  @media (max-width: 767px) {
    .tp-login-title {
      font-size: 30px;
    }
  }
  
  .tp-login-thumb img {
    max-width: 100%;
  }
  
  .tplogin {
    width: 420px;
  }
  
  .tplogin__form .tp-mail {
    margin-bottom: 15px;
  }
  
  .tplogin__form .tp-mail label {
    color: var(--tp-common-black);
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .tplogin__form .tp-mail input {
    height: 60px;
    width: 100%;
    background-color: var(--tp-grey-1);
    border: 0;
    border-radius: 5px;
    padding: 0px 20px;
    color: #b2b0c1;
  }
  
  .tplogin__form .tp-mail input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #b2b0c1;
  }
  
  .tplogin__form .tp-password {
    padding-bottom: 30px;
  }
  
  .tplogin__form .tp-password label {
    color: var(--tp-common-black);
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .tplogin__form .tp-password input {
    width: 100%;
    height: 60px;
    background-color: var(--tp-grey-1);
    border: 0;
    border-radius: 5px;
    padding: 0px 20px;
    color: #b2b0c1;
  }
  
  .tplogin__form .tp-password input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #b2b0c1;
  }
  
  .tplogin__form .tp-number {
    padding-bottom: 10px;
  }
  
  .tplogin__form .tp-number label {
    color: var(--tp-common-black);
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .tplogin__form .tp-number input {
    width: 100%;
    height: 60px;
    background-color: var(--tp-grey-1);
    border: 0;
    border-radius: 5px;
    padding: 0px 20px;
    color: #b2b0c1;
  }
  
  .tplogin__form .tp-number input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #b2b0c1;
  }
  
  .tplogin__form .tp-forgot-password {
    margin-bottom: 40px;
  }
  
  .tplogin__form .tp-forgot-password .checkbox label {
    color: var(--tp-common-black);
    font-size: 14px;
    font-weight: 500;
  }
  
  .tplogin__form .tp-forgot-password .forgot a {
    color: #007aff;
    font-size: 14px;
    font-weight: 500;
  }
  
  .tplogin__form .tp-signup {
    margin-top: 20px;
  }
  
  .tplogin__form .tp-signup .account a {
    color: var(--tp-common-black);
    font-size: 14px;
    font-weight: 500;
  }
  
  .tplogin__form .tp-signup .signin a {
    color: #007aff;
    font-size: 14px;
    font-weight: 500;
  }
  
  @media (max-width: 767px) {
    .tp-login-wrapper {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  
  .tp-404-thumb img {
    max-width: 100%;
  }
  
  .tp-404-circle {
    position: relative;
  }
  
  .tp-404-circle::after {
    top: -170px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    content: "";
    width: 1200px;
    height: 1200px;
    background-color: var(--tp-common-white);
    display: inline-block;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-404-circle::after {
      width: 750px;
      height: 750px;
      top: 55px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-404-circle::after {
      width: 320px;
      height: 320px;
      top: 155px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-404-circle::after {
      width: 550px;
      height: 550px;
      top: 96px;
    }
  }
  
  /*----------------------------------------*/
  
  /*  12. footer CSS START
  /*----------------------------------------*/
  
  .tp-footer-space {
    padding-top: 230px;
  }
  
  @media (max-width: 767px) {
    .tp-footer-space {
      padding-top: 110px;
    }
  }
  
  .tp-footer-title {
    font-size: 35px;
    color: var(--tp-common-white);
    font-weight: 500;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
    .tp-footer-title br {
      display: none;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-footer-title {
      font-size: 25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-title {
      font-size: 24px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-footer-title {
      font-size: 28px;
      margin-bottom: 30px;
    }
  }
  
  .tp-copyright-bottom {
    padding-top: 40px;
  }
  
  @media (max-width: 767px) {
    .tp-copyright-text {
      margin-bottom: 10px;
    }
  }
  
  .tp-copyright-text p {
    color: var(--tp-common-white);
    font-weight: 400;
  }
  
  @media (max-width: 767px) {
    .tp-copyright-text p {
      font-size: 15px;
    }
  }
  
  .tp-copyright-right span {
    color: var(--tp-common-white);
    font-weight: 400;
    font-size: 400;
    padding-left: 45px;
  }
  
  .tp-copyright-right span:hover {
    color: var(--tp-theme-primary);
  }
  
  .tp-copyright-box {
    border-top: 1px solid #383841;
    border-bottom: 1px solid #383841;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .tp-copyright-social a {
    color: var(--tp-common-white);
    font-size: 18px;
    font-weight: 400;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid #383841;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    margin-left: 20px;
  }
  
  .tp-copyright-social a:hover {
    background-color: var(--tp-theme-1);
    border-color: var(--tp-theme-1);
    color: var(--tp-common-white);
  }
  
  @media (max-width: 767px) {
    .tp-copyright-social a {
      margin-left: 0;
      margin-right: 10px;
    }
  }
  
  .footer-widget-info {
    border-bottom: 1px solid #ebecef;
  }
  
  .footer-widget-info .tp-footer-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--tp-common-black);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-widget-info .tp-footer-title {
      font-size: 44px;
    }
  }
  
  @media (max-width: 767px) {
    .footer-widget-info .tp-footer-title {
      font-size: 29px;
    }
  }
  
  .footer-widget-info p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    max-width: 625px;
    margin: 0 auto;
    padding-bottom: 35px;
  }
  
  @media (max-width: 767px) {
    .footer-widget-info p {
      font-size: 14px;
    }
  }
  
  .footer-widget-info .right-receved {
    font-size: 16px;
    font-weight: 400;
    color: var(--tp-common-black);
  }
  
  .tp-copyright-social-two a {
    color: var(--tp-common-black);
    border-color: #edeef1;
    font-size: 18px;
    font-weight: 400;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    margin-left: 20px;
  }
  
  @media (max-width: 767px) {
    .tp-copyright-social-two a {
      margin-left: 0;
      margin-top: 20px;
    }
  }
  
  .tp-cpoyright-menu a {
    font-size: 16px;
    font-weight: 400;
    color: var(--tp-common-black);
    padding: 0px 20px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-cpoyright-menu a {
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .tp-cpoyright-menu a {
      padding: 0px 10px;
    }
  }
  
  .tp-cpoyright-menu a:hover {
    color: var(--tp-theme-1);
  }
  
  .tp-footer-widget {
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-widget {
      margin-bottom: 70px;
      padding-left: 0;
    }
  }
  
  @media (max-width: 767px) {
    .tp-footer-widget {
      padding-left: 0;
      margin-bottom: 45px;
    }
  }
  
  .tp-footer-widget__logo img {
    width: 180px;
  }
  
  .tp-footer-widget__text p {
    font-size: 15px;
    font-weight: 400;
    color: #404045;
    line-height: 26px;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-footer-widget__text p {
      font-size: 14px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-widget__text p {
      margin-right: 30px;
    }
  }
  
  .tp-footer-widget__social-link a {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    line-height: 44px;
    text-align: center;
    background-color: #3e3e45;
    display: inline-block;
    color: #9e9ea2;
    font-size: 12px;
    margin-right: 10px;
  }
  
  .tp-footer-widget__social-link a:hover {
    background-color: var(--tp-theme-1);
    color: var(--tp-common-white);
  }
  
  .tp-footer-widget__social-link-2 a {
    background-color: var(--tp-grey-1);
  }
  
  .tp-footer-widget .footer-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--tp-common-white);
  }
  
  .tp-footer-widget__list ul li {
    margin-bottom: 15px;
  }
  
  .tp-footer-widget__list ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #404045;
  }
  
  .tp-footer-widget__list ul li:hover a {
    color: var(--tp-theme-primary);
  }
  
  .tp-footer-widget__input {
    position: relative;
  }
  
  .tp-footer-widget__input input {
    width: 100%;
    background-color: #313138;
    border: 0;
    border-radius: 10px;
    height: 60px;
    color: #96a1b6;
    padding-left: 20px;
    padding-right: 75px;
  }
  
  .tp-footer-widget__input input::placeholder {
    color: #96a1b6;
  }
  
  .tp-footer-widget__input button {
    height: 60px;
    width: 60px;
    background-color: var(--tp-theme-1);
    border-radius: 10px;
    line-height: 60px;
    color: var(--tp-common-white);
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .tp-footer-widget__tp-insta-img {
    position: relative;
  }
  
  .tp-footer-widget__tp-insta-img img {
    border-radius: 10px;
  }
  
  .tp-footer-widget__tp-insta-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 62, 243, 0.8);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .tp-footer-widget__tp-insta-img-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--tp-common-white);
    z-index: 2;
    font-size: 25px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .tp-footer-widget__tp-insta-img:hover::after {
    opacity: 1;
    visibility: visible;
  }
  
  .tp-footer-widget__tp-insta-img:hover .tp-footer-widget__tp-insta-img-icon {
    opacity: 1;
    visibility: visible;
  }
  
  .tp-input-white input {
    background-color: var(--tp-grey-1);
  }
  
  .tp-input-white button {
    background-color: var(--tp-common-blue);
    color: var(--tp-common-black);
  }
  
  .tp-copyright-left p {
    color: var(--tp-common-white);
    font-size: 15px;
    font-weight: 400;
  }
  
  .tp-copyright-logo img {
    width: 320px;
  }
  
  .tp-copyright-right a {
    color: var(--tp-common-white);
    font-size: 15px;
    font-weight: 400;
    margin-left: 60px;
  }
  
  .tp-copyright-right a:hover {
    color: var(--tp-theme-primary);
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-copyright-right a {
      margin-left: 30px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-copyright-right a {
      margin-left: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-copyright-right a {
      margin-left: 0px;
      margin-right: 10px;
      margin-bottom: 10px;
    }
  }
  
  .tp-copyright-color a {
    color: var(--tp-common-black);
  }
  
  .copyright-border {
    border-top: 1px solid #3e3e45;
  }
  
  .circle-animation.footer-animation {
    top: 23%;
    left: 4%;
    border: 1px solid #383841;
    width: 124px;
    height: 124px;
    position: absolute;
    border-radius: 50%;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .circle-animation.footer-animation {
      top: 7%;
      left: 0%;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .circle-animation.footer-animation {
      top: 7%;
      left: 0%;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .circle-animation.footer-animation {
      top: 7%;
      left: 0%;
    }
  }
  
  .circle-animation span.tp-circle-3 {
    display: block;
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    left: 50%;
    width: 50%;
    height: 1px;
    background: transparent;
    transform-origin: left;
    transform: scale(-1, 1);
    -webkit-animation: circle-animation2 10s linear infinite;
    -moz-animation: circle-animation2 10s linear infinite;
    -o-animation: circle-animation2 10s linear infinite;
    animation: circle-animation2 10s linear infinite;
  }
  
  .circle-animation span.tp-circle-3::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -25px;
    right: -7px;
    background-color: #ffadad;
  }
  
  .tp-footer-border-shape {
    width: 700px;
    height: 700px;
    border: 2px solid #383841;
    position: absolute;
    top: -228px;
    left: -483px;
    transform: rotate(30deg);
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tp-footer-border-shape {
      width: 500px;
      height: 500px;
      top: -228px;
      left: -353px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-footer-border-shape {
      width: 500px;
      height: 500px;
      top: -228px;
      left: -353px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-border-shape {
      width: 500px;
      height: 500px;
      top: -228px;
      left: -353px;
    }
  }
  
  .tp-footer-shape-one {
    position: absolute;
    left: 0;
    bottom: 70px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-shape-one {
      left: -60px;
      bottom: 90px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-footer-shape-one {
      display: none;
    }
  }
  
  .tp-footer-shape-two {
    position: absolute;
    right: 40px;
    bottom: 140px;
    animation: jumpTwo 3s infinite linear;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-shape-two {
      bottom: 200px;
    }
  }
  
  @media (max-width: 767px) {
    .tp-footer-shape-two {
      display: none;
    }
  }
  
  .footer-clip-shape {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    z-index: 2;
  }
  
  .footer-clip-shape svg {
    width: 100%;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .footer-clip-shape {
      line-height: 1;
      top: -17px;
    }
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-clip-shape {
      line-height: 1;
      top: -22px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-clip-shape {
      line-height: 1;
      top: -25px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-clip-shape {
      line-height: 1;
      top: -30px;
    }
  }
  
  @media (max-width: 767px) {
    .footer-clip-shape {
      line-height: 1;
      top: -42px;
    }
  }
  
  .bp-footer-widget-color {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .bp-footer-widget-color .right-receved {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .bp-footer-widget-color p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .bp-cpoyright-menu a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .bp-copyright-social a {
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid #36363c;
  }
  
  .bp-foooter-shape-1 {
    position: absolute;
    top: 100px;
    right: 140px;
    animation: moving 12s linear infinite;
  }
  
  @media only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
    .bp-foooter-shape-1 {
      top: 47px;
      right: 72px;
    }
  }
  
  .bp-foooter-shape-2 {
    position: absolute;
    bottom: 106px;
    left: 50px;
  }
  
  .bs-footer-shape-1 {
    position: absolute;
    top: 40%;
    left: 120px;
    animation: rotate2 8s linear infinite;
  }
  
  .bs-footer-shape-2 {
    position: absolute;
    right: 120px;
    top: 40%;
    animation: moving 10s linear infinite;
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-cpoyright-menu {
      margin-bottom: 0;
    }
  }
  
  .tp-backto-top {
    height: 142px;
    width: 142px;
    border-radius: 50%;
    border: 1px solid #eff2f6;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .tp-backto-top::after {
    height: 100%;
    width: 100%;
    background-color: var(--tp-theme-primary);
    content: "";
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0.8);
  }
  
  .tp-backto-top svg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
    top: -25px;
  }
  
  .tp-clip-height-one {
    height: 95px;
    background: #292930;
  }
  
  .tp-clip-height-two {
    height: 130px;
    background: #292930;
    overflow: hidden;
    position: relative;
    z-index: 222;
  }
  
  @media (max-width: 767px) {
    .tp-clip-height-two {
      height: 0px;
    }
  }
  
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 16px;
    border-radius: 6px;
    z-index: 99;
    color: var(--tp-common-white);
    text-align: center;
    cursor: pointer;
    background: var(--tp-theme-1);
    transition: 1s ease;
    border: none;
  }
  
  @media (max-width: 767px) {
    .scroll-top {
      right: 30px;
    }
  }
  
  .scroll-top.open {
    bottom: 30px;
  }
  
  .scroll-top::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0) 80%);
  }
  
  .tp-brand-icon img {
    max-width: 180px;
  }
  
  /*# sourceMappingURL=style.css.map */