/*
Theme Name: Techbe
Template URL: https://exdesigners.com/html/techbe/
Author: exdesigners
Author URI: https://themeforest.net/user/exdesigners
Description: Techbe-IT Solution & Technology Service Template
Version: 1.0.0 
*/
/*=================================
    CSS Index Here
==================================*/
/*

01. Theme Base
    1.1. Mixin 
    1.2. Variable
    1.3. Typography  
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input 
    2.4. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common    
    3.5. Animation 
    3.6. Slider
    3.7. Text Sliding 
    3.8. Cursor Follower

04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.4. Breadcumb 
    4.5. Blog 
    4.6. Hero Area 
    4.7. Popup Search
    4.8. Popup Side Menu   
    4.9. Contact
    4.10. About
    4.11. Team
    4.12. Testimonial
    4.13. Counter
    4.14. Blog 
    4.15. Simple Sections 
    4.16. Faq
    4.17. Cta
    4.18. Service
    4.19. Pricing
    4.20. Why choose Us 
    4.21. Work Process
    4.22. Project  
    4.23. Download App
    4.24. Offering 
    4.25. Video
    4.26. Screenshots
    4.27. Skill
    4.28. Contact

05. Spacing 

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Variable-------------------*/
:root {
    /* --theme-color: #ff3838; 
    --theme-color: #384BFF;
    --theme-color2: #B42AF3; */
    --theme-color: #000000;
    --theme-color2: #ff0000;
    /* --title-color: #17012C; */
    --body-color: #726B7D;
    --smoke-color: #F6F5FD;
    --smoke-color2: #CFD3FC;
    --smoke-color3: #F7F7F7;
    --smoke-color4: #E0E0E0;
    --black-color: #000000;
    --gray-color: #F5F5F5;
    --white-color: #ffffff;
    --light-color: #BDBDBD;
    --border-color: #E5E5E5;
    --title-font: "Plus Jakarta Sans", sans-serif;
    --body-font: "Plus Jakarta Sans", sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1185px;
    --container-gutters: 30px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
  }
  
  /*------------------- 1.3. Typography -------------------*/
  html,
  body {
    scroll-behavior: smooth !important;
  }
  
  body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /***scroll-bar***/
  }
  body .theme-red, body.theme-red {
    --theme-color: #F02801;
    --theme-color2: #FFC000;
  }
  body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  body::-webkit-scrollbar-track {
    /* background: rgba(252, 0, 18, 0.1);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  body::-webkit-scrollbar-thumb {
    /* background-color: var(--theme-color); */
    background-color: red;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
  }
  
  iframe {
    border: none;
    width: 100%;
  }
  
  .slick-slide:focus,
  button:focus,
  a:focus,
  a:active,
  input,
  input:hover,
  input:focus,
  input:active,
  textarea,
  textarea:hover,
  textarea:focus,
  textarea:active {
    outline: none;
  }
  
  input:focus {
    outline: none;
    box-shadow: none;
  }
  
  img:not([draggable]),
  embed,
  object,
  video {
    max-width: 100%;
    height: auto;
  }
  
  ul {
    list-style-type: none;
  }
  
  ol {
    list-style-type: decimal;
  }
  
  table {
    margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--border-color);
  }
  
  th {
    font-weight: 700;
    color: var(--title-color);
  }
  
  td,
  th {
    border: 1px solid var(--border-color);
    padding: 9px 12px;
  }
  
  a {
    color: var(--theme-color);
    text-decoration: none;
    outline: 0;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
  }
  a:hover {
    color: var(--title-color);
  }
  a:active, a:focus, a:hover, a:visited {
    text-decoration: none;
    outline: 0;
  }
  
  button {
    transition: all ease 0.4s;
  }
  
  img {
    border: none;
    max-width: 100%;
  }
  
  ins {
    text-decoration: none;
  }
  
  pre {
    font-family: var(--body-font);
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  span.ajax-loader:empty,
  p:empty {
    display: none;
  }
  
  p {
    font-family: var(--body-font);
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.75;
  }
  
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a,
  p a,
  span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
  
  .h1,
  h1,
  .h2,
  h2,
  .h3,
  h3,
  .h4,
  h4,
  .h5,
  h5,
  .h6,
  h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
  }
  
  .h1,
  h1 {
    font-size: 64px;
    line-height: 1.167;
  }
  
  .h2,
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
  
  .h3,
  h3 {
    font-size: 30px;
    line-height: 1.278;
  }
  
  .h4,
  h4 {
    font-size: 24px;
    line-height: 34px;
  }
  
  .h5,
  h5 {
    font-size: 20px;
    line-height: 30px;
  }
  
  .h6,
  h6 {
    font-size: 18px;
    line-height: 1.5;
  }
  
  /* Medium Large devices */
  @media (max-width: 1399px) {
    .h1,
    h1 {
      font-size: 48px;
    }
  }
  /* Large devices */
  @media (max-width: 1199px) {
    .h1,
    h1 {
      font-size: 44px;
      line-height: 1.3;
    }
    .h2,
    h2 {
      font-size: 40px;
      line-height: 1.25;
    }
    .h3,
    h3 {
      font-size: 30px;
    }
    .h4,
    h4 {
      font-size: 24px;
    }
    .h5,
    h5 {
      font-size: 20px;
    }
    .h6,
    h6 {
      font-size: 16px;
    }
  }
  /* Small devices */
  @media (max-width: 767px) {
    .h1,
    h1 {
      font-size: 40px;
    }
    .h2,
    h2 {
      font-size: 34px;
      line-height: 1.3;
    }
    .h3,
    h3 {
      font-size: 26px;
    }
    .h4,
    h4 {
      font-size: 22px;
    }
    .h5,
    h5 {
      font-size: 18px;
    }
    .h6,
    h6 {
      font-size: 16px;
    }
  }
  /* Extra small devices */
  @media (max-width: 575px) {
    .h1,
    h1 {
      font-size: 34px;
      line-height: 1.35;
    }
    .h2,
    h2 {
      font-size: 30px;
    }
  }
  /* Extra small devices */
  @media (max-width: 375px) {
    .h1,
    h1 {
      font-size: 32px;
    }
  }
  /*=================================
      02. Reset
  ==================================*/
  /*------------------- 2.1. Container -------------------*/
  @media (max-width: 1399px) {
    :root {
      --main-container: 1300px;
    }
  }
  @media only screen and (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: calc(var(--main-container) + var(--container-gutters));
      padding-left: calc(var(--container-gutters) / 2);
      padding-right: calc(var(--container-gutters) / 2);
    }
    .container-xxl.px-0,
    .container-xl.px-0,
    .container-lg.px-0,
    .container-md.px-0,
    .container-sm.px-0,
    .container.px-0 {
      max-width: var(--main-container);
    }
  }
  @media only screen and (max-width: 1600px) {
    .container-fluid.px-0 {
      padding-left: 15px !important;
      padding-right: 15px !important;
    }
    .container-fluid.px-0 .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
  }
  @media (min-width: 1600px) {
    /* .header-top-section {
      --main-container: 1520px;
    }
    .header-layout1,
    .header-layout2 {
      --main-container: 1520px;
    } */
    .hero-1,
    .hero-2,
    .hero-3 {
      --main-container: 1520px;
    }
    .testimonial-wrap.style3 {
      --main-container: 1410px;
    }
    .service-wrap.style1 {
      --main-container: 1520px;
    }
    .video-wrap.style1 {
      --main-container: 1520px;
    }
  }
  .all-project-area {
    --main-container: 1520px;
  }
  
  /*------------------- 2.2. Grid -------------------*/
  @media (min-width: 1300px) {
    .row {
      --bs-gutter-x: 30px;
    }
  }
  .gy-20 {
    --bs-gutter-y: 20px;
  }
  
  .gy-25 {
    --bs-gutter-y: 25px;
  }
  
  .gy-30 {
    --bs-gutter-y: 30px;
  }
  
  .gy-40 {
    --bs-gutter-y: 40px;
  }
  
  .gy-50 {
    --bs-gutter-y: 50px;
  }
  
  .gx-10 {
    --bs-gutter-x: 10px;
  }
  
  @media (min-width: 1500px) {
    .gx-60 {
      --bs-gutter-x: 60px;
    }
  }
  @media (min-width: 1399px) {
    .gx-30 {
      --bs-gutter-x: 30px;
    }
    .gx-25 {
      --bs-gutter-x: 25px;
    }
    .gx-40 {
      --bs-gutter-x: 40px;
    }
  }
  /* Medium devices */
  @media (max-width: 991px) {
    .gy-50 {
      --bs-gutter-y: 40px;
    }
  }
  .gx-0 {
    --bs-gutter-x: 0px;
  }
  
  /*------------------- 2.3. Input -------------------*/
  select,
  .single-select,
  .form-control,
  .form-select,
  textarea,
  input {
    height: 56px;
    padding: 0 20px;
    border: 1px solid var(--border-color);
    color: var(--body-color);
    background-color: transparent;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    transition: 0.4s ease-in-out;
    border-radius: 0px;
  }
  select:focus,
  .single-select:focus,
  .form-control:focus,
  .form-select:focus,
  textarea:focus,
  input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--theme-color);
    background-color: var(--white-color);
  }
  select::-moz-placeholder,
  .single-select::-moz-placeholder,
  .form-control::-moz-placeholder,
  .form-select::-moz-placeholder,
  textarea::-moz-placeholder,
  input::-moz-placeholder {
    color: var(--body-color);
  }
  select::-webkit-input-placeholder,
  .single-select::-webkit-input-placeholder,
  .form-control::-webkit-input-placeholder,
  .form-select::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  input::-webkit-input-placeholder {
    color: var(--body-color);
  }
  select:-ms-input-placeholder,
  .single-select:-ms-input-placeholder,
  .form-control:-ms-input-placeholder,
  .form-select:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  input:-ms-input-placeholder {
    color: var(--body-color);
  }
  select::placeholder,
  .single-select::placeholder,
  .form-control::placeholder,
  .form-select::placeholder,
  textarea::placeholder,
  input::placeholder {
    color: var(--body-color);
  }
  
  .form-text {
    font-size: 16px;
  }
  .form-text a {
    color: var(--title-color);
    font-weight: 500;
  }
  
  .single-select,
  .form-select,
  select {
    display: block;
    width: 100%;
    line-height: 56px;
    height: 56px;
    padding: 0 20px;
    font-size: 16px;
    cursor: pointer;
    background-image: none;
  }
  .single-select:after,
  .form-select:after,
  select:after {
    border-bottom: 1px solid var(--title-color);
    border-right: 1px solid var(--title-color);
    right: 20px;
    height: 7px;
    width: 7px;
  }
  .single-select .list,
  .form-select .list,
  select .list {
    width: 100%;
    display: block;
    border-radius: 0;
  }
  .single-select.style2,
  .form-select.style2,
  select.style2 {
    padding: 0 20px;
    font-size: 16px;
    position: relative;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-size: 24px 12px;
  }
  .single-select.style2:after,
  .form-select.style2:after,
  select.style2:after {
    content: "";
    position: absolute;
    right: 20px;
    width: 10px;
    height: 6px;
    border-top: solid 6px var(--body-color);
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
    transform: rotate(0);
    border-bottom: 0;
    margin-top: -2px;
    z-index: 9;
  }
  .single-select.style2.open:after,
  .form-select.style2.open:after,
  select.style2.open:after {
    border-top: 0;
    border-bottom: solid 6px var(--body-color);
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
    transform: none;
  }
  .single-select.style3,
  .form-select.style3,
  select.style3 {
    background: var(--border-color);
    padding: 0 20px;
    font-size: 14px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-size: 50px 10px;
    background-repeat: no-repeat;
    background-position: right;
  }
  .single-select.style-white2,
  .form-select.style-white2,
  select.style-white2 {
    background: var(--white-color);
    border-color: var(--white-color);
    padding: 0 30px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-size: 70px 12px;
    background-repeat: no-repeat;
    background-position: right;
  }
  .single-select.style-white2:after,
  .form-select.style-white2:after,
  select.style-white2:after {
    right: 30px;
  }
  
  .single-select {
    background-image: none !important;
  }
  
  textarea.form-control,
  textarea {
    min-height: 150px;
    padding-top: 16px;
    padding-bottom: 17px;
  }
  textarea.form-control.style2,
  textarea.style2 {
    min-height: 105px;
  }
  
  .form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative;
  }
  .form-group > i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 21px;
    font-size: 16px;
    color: var(--body-color);
  }
  .form-group > i.fa-envelope {
    padding-top: 1px;
  }
  .form-group > i.fa-comment {
    margin-top: -2px;
  }
  .form-group > i.fa-chevron-down {
    width: 17px;
    background-color: var(--smoke-color);
  }
  .form-group.has-label > i {
    top: 50px;
  }
  .form-group .input-icon {
    display: inline-block;
    position: absolute;
    right: 42px;
    top: 19px;
    font-size: 16px;
    color: var(--body-color);
  }
  .form-group .input-icon:hover {
    color: var(--theme-color);
  }
  .form-group.style-2 .form-control {
    padding: 0 30px 0 55px;
  }
  .form-group.style-2 textarea.form-control {
    padding: 16px 30px 30px 55px;
  }
  .form-group.style-white .form-control {
    background: var(--white-color);
  }
  .form-group.style-white2 .form-control {
    background: var(--white-color);
    border-color: var(--white-color);
    padding: 0 45px 0 30px;
  }
  .form-group.style-white2 textarea.form-control {
    padding: 16px 45px 30px 30px;
  }
  
  [class*=col-].form-group > i {
    right: calc(var(--bs-gutter-x) / 2 + 25px);
  }
  [class*=col-].form-group .form-icon-left {
    left: calc(var(--bs-gutter-x) / 2 + 30px);
    right: auto;
  }
  
  option:checked, option:focus, option:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  input[type=checkbox] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none;
    border-radius: 10px;
  }
  input[type=checkbox]:checked ~ label:after {
    opacity: 1;
  }
  input[type=checkbox] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
  }
  input[type=checkbox] ~ label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 3.5px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    height: 20px;
    width: 20px;
    text-align: center;
  }
  input[type=checkbox] ~ label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    background: var(--theme-color);
    height: 8px;
    width: 8px;
    opacity: 0;
    transition: 0.4s;
  }
  input[type=checkbox].style2 ~ label {
    color: #8B929C;
    padding-left: 23px;
    margin-bottom: -0.5em;
  }
  input[type=checkbox].style2 ~ label:before {
    background-color: white;
    border: 1px solid rgb(247, 204, 215);
    height: 14px;
    width: 14px;
    line-height: 14px;
    border-radius: 3px;
    top: 6px;
  }
  input[type=checkbox].style2:checked ~ label:before {
    color: var(--theme-color);
  }
  
  input[type=radio] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none;
  }
  input[type=radio] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0;
  }
  input[type=radio] ~ label::before {
    content: "\f111";
    position: absolute;
    font-family: var(--icon-font);
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    padding-left: 0;
    font-size: 0.6em;
    line-height: 19px;
    text-align: center;
    border: 1px solid var(--theme-color);
    border-radius: 100%;
    font-weight: 700;
    background: var(--white-color);
    color: transparent;
    transition: all 0.2s ease;
  }
  input[type=radio]:checked ~ label::before {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: block;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 16px;
  }
  
  textarea.is-invalid,
  select.is-invalid,
  input.is-invalid,
  .was-validated input:invalid {
    border: 1px solid red !important;
    background-position: right calc(0.375em + 0.8875rem) center;
    background-image: none;
  }
  textarea.is-invalid:focus,
  select.is-invalid:focus,
  input.is-invalid:focus,
  .was-validated input:invalid:focus {
    outline: 0;
    box-shadow: none;
  }
  
  textarea.is-invalid {
    background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
  }
  
  .row.no-gutters > .form-group {
    margin-bottom: 0;
  }
  
  .form-messages {
    display: none;
  }
  .form-messages.mb-0 * {
    margin-bottom: 0;
  }
  .form-messages.success {
    color: green;
    display: block;
  }
  .form-messages.error {
    color: red;
    display: block;
  }
  .form-messages pre {
    padding: 0;
    background-color: transparent;
    color: inherit;
  }
  

  /*=================================
      03. Utilities
  ==================================*/
  /*------------------- 3.1. Preloader -------------------*/
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--white-color);
  }
  
  .gt-preloader {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
  .gt-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
  }
  .gt-preloader .animation-preloader .txt-loading {
    font-family: var(--title-font);
    font-size: 72px;
    line-height: 82px;
    font-weight: 700;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  .gt-preloader .animation-preloader .txt-loading .characters {
    color: rgba(0, 0, 0, 0.2);
    position: relative;
  }
  .gt-preloader .animation-preloader .txt-loading .characters:before {
    animation: characters 4s infinite;
    color: var(--theme-color);
    content: attr(data-preloader-text);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotateY(-90deg);
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    -webkit-animation: characters 4s infinite;
  }
  .gt-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
  }
  .gt-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
  }
  .gt-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
  }
  .gt-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
    animation-delay: 0.8s;
  }
  .gt-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
    animation-delay: 1s;
  }
  
  /* Extra small devices */
  @media (max-width: 575px) {
    .gt-preloader .animation-preloader .txt-loading {
      font-size: 30px;
      line-height: 30px;
    }
  }
  /*------------------- 3.2. Buttons -------------------*/
  .gt-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    /* background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%); */
    /* background: linear-gradient(90deg, #000000 0%, #000000 40%, #ff0000 123.82%); */
    background: linear-gradient(90deg, #ff0000 0%, #ff0000 40%, #ff0000 123.82%);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 16px 20px 25px;
    min-width: 160px;
    cursor: pointer;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .gt-btn:before {
    top: 0;
    right: 0;
    border: 0 solid;
    /* border-color: transparent transparent transparent var(--title-color); */
    border-color: transparent transparent transparent var(--title-color);
    background-color: red;
    transform: rotate(360deg);
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    transition: 0.7s ease;
    z-index: -1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  .gt-btn1:before {
    bottom: 0;
    left: 0;
    right: auto;
    bottom: auto;
    border-color: var(--title-color) transparent transparent transparent;
    background-color: red;
  }
  .gt-btn:hover, .gt-btn.active {
    /* color: var(--white-color); */
    color: black;
    background-color: red;
  }
  .gt-btn1:hover:before, .gt-btn1:hover:after, .gt-btn1.active:before, .gt-btn1.active:after {
    border-width: 200px 130px;
    background-color: red;
  }
  .gt-btn:hover.gt-btn-icon:after, .gt-btn.active.gt-btn-icon:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    background-color: red;
  }
  .gt-btn.style2 {
    background: var(--title-color);
    transition: all 0.3s ease 0s;
  }
  .gt-btn.style2:before {
    top: 0;
    right: 0;
    border: 0 solid;
    border-color: transparent transparent transparent var(--theme-color);
    background-color: red;
    transform: rotate(360deg);
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    transition: 0.7s ease;
    z-index: -1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transition: all 0.3s ease 0s;
  }
  .gt-btn.style2:before {
    bottom: 0;
    left: 0;
    right: auto;
    bottom: auto;
    border-color: var(--theme-color2) transparent transparent transparent;
  }
  .gt-btn.style2:hover, .gt-btn.style2.active {
    color: var(--white-color);
  }
  .gt-btn.style2:hover:before, .gt-btn.style2:hover:after, .gt-btn.style2.active:before, .gt-btn.style2.active:after {
    border-width: 205px 130px;
    mix-blend-mode: hard-light;
  }
  .gt-btn.style2:hover.gt-btn-icon:after, .gt-btn.style2.active.gt-btn-icon:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .gt-btn.style3 {
    padding: 20px 75px;
    border-radius: 100px;
    /* background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%); */
    color: var(--white-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .gt-btn.style3:hover {
    color: var(--white-color);
  }
  .gt-btn.style3:hover:before, .gt-btn.style3:hover:after {
    border-width: 200px 170px;
  }
  .gt-btn.style3:hover.gt-btn-icon:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  @media (max-width: 330px) {
    .gt-btn.style3 {
      padding: 20px 39px;
    }
  }
  .gt-btn.style4 {
    padding: 20px 65px;
    border-radius: 100px;
    background: var(--title-color);
    color: var(--white-color);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .gt-btn.style4:hover {
    color: var(--white-color);
    /* background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%); */
  }
  .gt-btn.style4:hover:before, .gt-btn.style4:hover:after {
    border-width: 200px 170px;
  }
  .gt-btn.style4:hover.gt-btn-icon:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  @media (max-width: 330px) {
    .gt-btn.style4 {
      padding: 20px 39px;
    }
  }
  .gt-btn.style5 {
    background: var(--white-color);
    color: var(--title-color);
  }
  .gt-btn.style5:before {
    border-color: transparent transparent transparent var(--theme-color);
  }
  .gt-btn.style5:hover {
    color: var(--white-color);
    background: var(--title-color);
  }
  .gt-btn.style5:hover:before, .gt-btn.style5:hover:after {
    border-width: 200px 120px;
  }
  .gt-btn.style6 {
    background: var(--white-color);
    color: var(--title-color);
  }
  .gt-btn.style6:before {
    border-color: transparent transparent transparent var(--title-color);
  }
  .gt-btn.style6:hover {
    color: var(--white-color);
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  .gt-btn.style6:hover:before, .gt-btn.style6:hover:after {
    border-width: 200px 120px;
  }
  .gt-btn-icon:after {
    display: inline-block;
    content: "";
    position: relative;
    background-image: url(../img/icon/icon2.png);
    background-size: 100% 100%;
    background-color: red;
    width: 19px;
    height: 19px;
    line-height: 1;
    margin-bottom: -0.3em;
    text-align: center;
    margin-left: 15px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
  }
  
  .icon-btn {
    display: inline-block;
    width: var(--btn-size, 40px);
    height: var(--btn-size, 40px);
    line-height: var(--btn-size, 40px);
    font-size: var(--btn-font-size, 16px);
    /* background-color: var(--gray-color); */
    background-color: red;
    color: var(--title-color);
    text-align: center;
    border-radius: 50%;
    border: none;
    transition: 0.4s ease-in-out;
    position: relative;
  }
  .icon-btn:hover {
    /* background-color: var(--theme-color); */
    background-color: red;
    color: var(--white-color);
  }
  .icon-btn.btn-border {
    /* background-color: var(--smoke-color3); */
    background-color: red;
    border: 1px solid var(--smoke-color4);
    line-height: var(--btn-size, 38px);
  }
  .icon-btn.btn-border:hover {
    background: var(--theme-color);
    color: var(--white-color);
    border-color: var(--theme-color);
  }
  .icon-btn .badge {
    position: absolute;
    width: fit-content;
    display: inline-block;
    text-align: center;
    /* background-color: var(--theme-color); */
    background-color: red;
    color: var(--white-color);
    padding: 2px 4.1px 1px;
    font-size: 12px;
    border-radius: 50%;
    top: 0px;
    left: auto;
    right: -8px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    border: 1px solid var(--theme-color);
  }
  .icon-btn:hover .badge {
    /* background: var(--white-color); */
    background: red;
    color: var(--theme-color);
  }
  .icon-btn.bg-none {
    background: transparent;
    background-color: red;
    font-size: var(--btn-font-size, 20px);
    width: auto;
    padding: 0;
  }
  .icon-btn.bg-none .badge {
    right: -12px;
  }
  .icon-btn.bg-none:hover {
    color: var(--theme-color);
  }
  .icon-btn.style2:hover {
    background: var(--title-color);
  }
  
  .play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .play-btn > i {
    display: inline-block;
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    line-height: var(--icon-size, 60px);
    text-align: center;
    border-radius: 100px;
    border: 1px solid var(--white-color);
    background: radial-gradient(157.24% 123.22% at 47.19% -0.63%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(21px);
    color: var(--white-color);
    font-size: var(--icon-font-size, 24px);
    border-radius: 50%;
    z-index: 1;
    transition: all ease 0.4s;
  }
  .play-btn > i.fa-play {
    padding-right: 0.18em;
  }
  .play-btn:after, .play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(56, 56, 59, 0.3);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
  }
  .play-btn:after {
    animation-delay: 2s;
  }
  .play-btn:hover i {
    background-color: var(--theme-color2);
    color: var(--white-color);
  }
  .play-btn:hover:after, .play-btn:hover:before {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .play-btn.style2:before, .play-btn.style2:after {
    background-color: transparent;
    border: 1px solid var(--white-color);
  }
  .play-btn.style3 > i {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 20px;
  }
  .play-btn.style3:before, .play-btn.style3:after {
    background-color: var(--white-color);
  }
  .play-btn.style3:hover > i {
    background-color: var(--white-color);
    color: var(--theme-color);
  }
  .play-btn.style4 {
    position: absolute;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    top: 15%;
    left: 75%;
    transform: translate(-75%, -15%);
    -webkit-transform: translate(-75%, -15%);
    -moz-transform: translate(-75%, -15%);
    -ms-transform: translate(-75%, -15%);
    -o-transform: translate(-75%, -15%);
  }
  .play-btn.style4 > i {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 70px;
    text-align: center;
    background: var(--theme-color);
    border: 9px solid #C3C9FF;
    border-radius: 50%;
    z-index: 1;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
  }
  .play-btn.style4:before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
  }
  .play-btn.style4:after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
  }
  
  .link-btn a {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .link-btn a:hover {
    background: var(--white-color);
    color: var(--theme-color);
  }
  
  .line-btn {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: -1px;
    text-transform: uppercase;
    color: var(--title-color);
  }
  .line-btn i {
    margin-left: 5px;
    font-size: 0.9rem;
  }
  .line-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--title-color);
    transition: all ease 0.4s;
  }
  .line-btn:hover {
    color: var(--theme-color);
  }
  .line-btn:hover::before {
    background-color: var(--theme-color);
    width: 45px;
  }
  
  .scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(45px);
    transition: all 300ms linear;
  }
  .scroll-top:after {
    content: "\f062";
    font-family: var(--icon-font);
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--theme-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--theme-color);
    box-shadow: none;
    border-radius: 50%;
  }
  .scroll-top svg {
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color);
  }
  .scroll-top svg path {
    fill: none;
  }
  .scroll-top .progress-circle path {
    stroke: var(--theme-color);
    stroke-width: 20px;
    box-sizing: border-box;
    transition: all 400ms linear;
  }
  .scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .arrow-btn .style2 {
    width: 52px;
    height: 52px;
    line-height: 35px;
    text-align: center;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: background 0.4s ease;
    -webkit-transition: background 0.4s ease;
    -moz-transition: background 0.4s ease;
    -ms-transition: background 0.4s ease;
    -o-transition: background 0.4s ease;
  }
  .arrow-btn .style2:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border: 1px solid var(--theme-color);
  }
  .arrow-btn .style2.slider-next {
    margin-left: 5px;
  }
  
  /* Small devices */
  @media (max-width: 767px) {
    .play-btn {
      --icon-size: 60px;
    }
  }
  /*------------------- 3.3. Titles -------------------*/
  .title-wrap {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    /* Small devices */
  }
  .title-wrap .title-area {
    max-width: 645px;
    margin: 0;
  }
  @media (max-width: 767px) {
    .title-wrap {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  .title-area {
    max-width: 645px;
  }
  .title-area-custom {
    max-width: 700px;
  }
  .title-area .subtitle {
    text-align: center;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }
  .title-area .title {
    /* color: var(--title-color); */
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
  }

  .title-area .title-custom {
    /* color: var(--title-color); */
    color: white;
    font-family: var(--title-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
  }
  .title-area-custom .title-custom {
    /* color: var(--title-color); */
    color: white;
    font-family: var(--title-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
  }
  .title-area .text {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  .title-area .text-custom {
    /* color: var(--body-color); */
    color: white;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  
  /*------------------- 3.4. Common -------------------*/
  .fix {
    overflow: hidden;
  }
  
  .media-body {
    flex: 1;
  }
  
  .badge {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 0.2em 0.45em;
    font-size: 0.6em;
    border-radius: 50%;
    top: 7px;
    left: 12px;
    font-weight: 400;
    transition: 0.3s ease-in-out;
  }
  
  .as-social a {
    display: inline-block;
    width: var(--icon-size, 40px);
    height: var(--icon-size, 40px);
    line-height: var(--icon-size, 40px);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 0;
  }
  .as-social a:last-child {
    margin-right: 0;
  }
  .as-social a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  .as-social.style2 a {
    --icon-size: 40px;
    font-size: 14px;
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid;
  }
  .as-social.style2 a:hover {
    border-color: var(--theme-color);
    color: var(--white-color);
    background-color: var(--theme-color);
  }
  .as-social.color-theme a {
    color: var(--body-color);
    border-color: var(--theme-color);
  }
  
  /******* Magnific Image *******/
  .mfp-zoom-in .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
  
  .mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .mfp-zoom-in.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  
  .mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.7;
  }
  
  .mfp-zoom-in.mfp-removing .mfp-content {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  
  .mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
  }
  
  .mfp-figure:after {
    background: transparent;
    box-shadow: none;
  }
  
  .scroll-down {
    transform: rotate(-90deg);
    transform-origin: left;
    position: absolute;
    right: -25px;
    bottom: 195px;
    z-index: 1;
  }
  
  .scroll-down .hero-scroll-wrap {
    color: var(--white-color);
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
  }
  
  .scroll-down .hero-scroll-wrap i {
    font-size: 36px;
    margin-bottom: -2px;
  }
  
  .scroll-down .hero-scroll-wrap:hover {
    color: var(--theme-color2);
  }
  
  @media (max-width: 1500px) {
    .scroll-down {
      right: -34px;
    }
  }
  @media (max-width: 1399px) {
    .scroll-down {
      right: -43px;
    }
    .scroll-down .hero-scroll-wrap i {
      font-size: 24px;
      margin-bottom: 0px;
    }
  }
  @media (max-width: 991px) {
    .scroll-down {
      display: none;
    }
  }
  .bg-theme {
    background-color: var(--theme-color) !important;
  }
  
  .bg-smoke {
    background-color: var(--smoke-color) !important;
  }
  
  .bg-gray {
    background-color: var(--gray-color) !important;
  }
  
  .bg-white {
    background-color: var(--white-color) !important;
  }
  
  .bg-black {
    background-color: var(--black-color) !important;
  }
  
  .bg-title {
    background-color: var(--title-color) !important;
  }
  
  .background-image,
  [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .bg-fluid {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
  }
  
  .bg-auto {
    background-size: auto auto;
  }
  
  .bg-top-center {
    background-size: auto;
    background-position: top center;
  }
  
  .bg-repeat {
    background-size: auto;
    background-repeat: repeat;
  }
  
  .bg-gradient {
    /* background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%); */
    background: linear-gradient(90deg, #000000 0%, #ff0000 123.82%);
  }
  
  .section-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  /*------------------- 3.5. Animation -------------------*/
  .ripple-animation, .play-btn:after, .play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(1);
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    100% {
      transform: scale(2.1);
      opacity: 0;
    }
  }
  .movingX {
    animation: movingX 8s linear infinite;
  }
  
  @keyframes movingX {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(50px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .moving {
    animation: moving 8s linear infinite;
  }
  
  @keyframes moving {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-50px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .jump {
    animation: jumpAni 7s linear infinite;
  }
  
  .jump1 {
    animation: jumpAni 6s linear infinite;
  }
  
  .jump2 {
    animation: jumpAni 5s linear infinite;
  }
  
  .jump3 {
    animation: jumpAni 4s linear infinite;
  }
  
  @keyframes jumpAni {
    0% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .jump-reverse {
    animation: jumpReverseAni 7s linear infinite;
  }
  
  @keyframes jumpReverseAni {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .spin {
    animation: spin 15s linear infinite;
  }
  
  .spin-slow {
    animation: spin 50s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-positive {
    0% {
      width: 0;
    }
    100% {
      width: var(--progress-width);
    }
  }
  .scroll {
    animation: scroll 60s linear infinite;
    -webkit-animation: scroll 60s linear infinite;
  }
  
  .scroll2 {
    animation: scroll2 60s linear infinite;
    -webkit-animation: scroll2 60s linear infinite;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes scroll2 {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-200%);
    }
  }
  .wave-anim {
    width: 105px;
    height: 69px;
    background-repeat: repeat;
    background-size: auto;
    animation: wave 70s linear infinite;
    -webkit-animation: wave 70s linear infinite;
  }
  
  @keyframes wave {
    0% {
      background-position: top left;
    }
    100% {
      background-position: top left -2000px;
    }
  }
  .rotate360 {
    animation: rotate360 10s linear infinite;
    -webkit-animation: rotate360 10s linear infinite;
  }
  
  @keyframes rotate360 {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
      -webkit-transform: rotate(-360deg);
      -moz-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
      -o-transform: rotate(-360deg);
    }
  }
  .img-shine {
    position: relative;
    overflow: hidden;
  }
  .img-shine:after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-20deg);
    opacity: 0;
  }
  .img-shine:hover:after {
    animation: imgShine 1s;
    opacity: 1;
  }
  
  @keyframes imgShine {
    100% {
      left: 125%;
    }
  }
  @keyframes stickyAni {
    0% {
      transform: translate3d(0, -40px, 0) scaleY(0.8);
      opacity: 0.7;
    }
    100% {
      transform: translate3d(0, 0, 0) scaleY(1);
      opacity: 1;
    }
  }
  .moveAround {
    animation: moveAround 200s linear infinite;
    -webkit-animation: moveAround 200s linear infinite;
  }
  
  @keyframes moveAround {
    0% {
      transform: translate(-100%, -100%) translate(-300px, 80px);
      -webkit-transform: translate(-100%, -100%) translate(-300px, 80px);
      -moz-transform: translate(-100%, -100%) translate(-300px, 80px);
      -ms-transform: translate(-100%, -100%) translate(-300px, 80px);
      -o-transform: translate(-100%, -100%) translate(-300px, 80px);
    }
    25% {
      transform: translate(50%, -60%) translate(1900px, 300px);
      -webkit-transform: translate(50%, -60%) translate(1900px, 300px);
      -moz-transform: translate(50%, -60%) translate(1900px, 300px);
      -ms-transform: translate(50%, -60%) translate(1900px, 300px);
      -o-transform: translate(50%, -60%) translate(1900px, 300px);
    }
    50% {
      transform: translate(-80%, -80%) translate(-150px, 0px);
      -webkit-transform: translate(-80%, -80%) translate(-150px, 0px);
      -moz-transform: translate(-80%, -80%) translate(-150px, 0px);
      -ms-transform: translate(-80%, -80%) translate(-150px, 0px);
      -o-transform: translate(-80%, -80%) translate(-150px, 0px);
    }
    75% {
      transform: translate(50%, 50%) translate(1160px, 550px);
      -webkit-transform: translate(50%, 50%) translate(1160px, 550px);
      -moz-transform: translate(50%, 50%) translate(1160px, 550px);
      -ms-transform: translate(50%, 50%) translate(1160px, 550px);
      -o-transform: translate(50%, 50%) translate(1160px, 550px);
    }
    100% {
      transform: translate(100%, 100%) translate(-800px, -50px);
      -webkit-transform: translate(100%, 100%) translate(-800px, -50px);
      -moz-transform: translate(100%, 100%) translate(-800px, -50px);
      -ms-transform: translate(100%, 100%) translate(-800px, -50px);
      -o-transform: translate(100%, 100%) translate(-800px, -50px);
    }
  }
  .moveAround2 {
    animation: moveAround2 160s linear infinite;
    -webkit-animation: moveAround2 160s linear infinite;
  }
  
  @keyframes moveAround2 {
    0% {
      transform: translate(30%, 60%) translate(1450px, 500px);
      -webkit-transform: translate(30%, 60%) translate(1450px, 500px);
      -moz-transform: translate(30%, 60%) translate(1450px, 500px);
      -ms-transform: translate(30%, 60%) translate(1450px, 500px);
      -o-transform: translate(30%, 60%) translate(1450px, 500px);
    }
    25% {
      transform: translate(-50%, -60%) translate(-100px, -290px);
      -webkit-transform: translate(-50%, -60%) translate(-100px, -290px);
      -moz-transform: translate(-50%, -60%) translate(-100px, -290px);
      -ms-transform: translate(-50%, -60%) translate(-100px, -290px);
      -o-transform: translate(-50%, -60%) translate(-100px, -290px);
    }
    50% {
      transform: translate(-50%, 0%) translate(150px, 0px);
      -webkit-transform: translate(-50%, 0%) translate(150px, 0px);
      -moz-transform: translate(-50%, 0%) translate(150px, 0px);
      -ms-transform: translate(-50%, 0%) translate(150px, 0px);
      -o-transform: translate(-50%, 0%) translate(150px, 0px);
    }
    75% {
      transform: translate(50%, -50%) translate(1160px, -50px);
      -webkit-transform: translate(50%, -50%) translate(1160px, -50px);
      -moz-transform: translate(50%, -50%) translate(1160px, -50px);
      -ms-transform: translate(50%, -50%) translate(1160px, -50px);
      -o-transform: translate(50%, -50%) translate(1160px, -50px);
    }
    100% {
      transform: translate(50%, 50%) translate(-80px, 50px);
      -webkit-transform: translate(50%, 50%) translate(-80px, 50px);
      -moz-transform: translate(50%, 50%) translate(-80px, 50px);
      -ms-transform: translate(50%, 50%) translate(-80px, 50px);
      -o-transform: translate(50%, 50%) translate(-80px, 50px);
    }
  }
  .moveAround3 {
    animation: moveAround3 120s linear infinite;
    -webkit-animation: moveAround3 120s linear infinite;
  }
  
  @keyframes moveAround3 {
    0% {
      transform: translate(-50%, -50%) translate(400px, 300px);
      -webkit-transform: translate(-50%, -50%) translate(400px, 300px);
      -moz-transform: translate(-50%, -50%) translate(400px, 300px);
      -ms-transform: translate(-50%, -50%) translate(400px, 300px);
      -o-transform: translate(-50%, -50%) translate(400px, 300px);
    }
    25% {
      transform: translate(50%, -60%) translate(1900px, -300px);
      -webkit-transform: translate(50%, -60%) translate(1900px, -300px);
      -moz-transform: translate(50%, -60%) translate(1900px, -300px);
      -ms-transform: translate(50%, -60%) translate(1900px, -300px);
      -o-transform: translate(50%, -60%) translate(1900px, -300px);
    }
    50% {
      transform: translate(-50%, 0%) translate(-150px, 0px);
      -webkit-transform: translate(-50%, 0%) translate(-150px, 0px);
      -moz-transform: translate(-50%, 0%) translate(-150px, 0px);
      -ms-transform: translate(-50%, 0%) translate(-150px, 0px);
      -o-transform: translate(-50%, 0%) translate(-150px, 0px);
    }
    75% {
      transform: translate(50%, 50%) translate(160px, 50px);
      -webkit-transform: translate(50%, 50%) translate(160px, 50px);
      -moz-transform: translate(50%, 50%) translate(160px, 50px);
      -ms-transform: translate(50%, 50%) translate(160px, 50px);
      -o-transform: translate(50%, 50%) translate(160px, 50px);
    }
    100% {
      transform: translate(50%, 50%) translate(-200px, 200px);
      -webkit-transform: translate(50%, 50%) translate(-200px, 200px);
      -moz-transform: translate(50%, 50%) translate(-200px, 200px);
      -ms-transform: translate(50%, 50%) translate(-200px, 200px);
      -o-transform: translate(50%, 50%) translate(-200px, 200px);
    }
  }
  .moveAround4 {
    animation: moveAround4 200s linear infinite;
    -webkit-animation: moveAround4 200s linear infinite;
  }
  
  @keyframes moveAround4 {
    0% {
      transform: translate(50%, -50%) translate(500px, 300px);
      -webkit-transform: translate(50%, -50%) translate(500px, 300px);
      -moz-transform: translate(50%, -50%) translate(500px, 300px);
      -ms-transform: translate(50%, -50%) translate(500px, 300px);
      -o-transform: translate(50%, -50%) translate(500px, 300px);
    }
    25% {
      transform: translate(50%, 60%) translate(-100px, -300px);
      -webkit-transform: translate(50%, 60%) translate(-100px, -300px);
      -moz-transform: translate(50%, 60%) translate(-100px, -300px);
      -ms-transform: translate(50%, 60%) translate(-100px, -300px);
      -o-transform: translate(50%, 60%) translate(-100px, -300px);
    }
    50% {
      transform: translate(50%, 0%) translate(150px, 0px);
      -webkit-transform: translate(50%, 0%) translate(150px, 0px);
      -moz-transform: translate(50%, 0%) translate(150px, 0px);
      -ms-transform: translate(50%, 0%) translate(150px, 0px);
      -o-transform: translate(50%, 0%) translate(150px, 0px);
    }
    75% {
      transform: translate(50%, 50%) translate(760px, 550px);
      -webkit-transform: translate(50%, 50%) translate(760px, 550px);
      -moz-transform: translate(50%, 50%) translate(760px, 550px);
      -ms-transform: translate(50%, 50%) translate(760px, 550px);
      -o-transform: translate(50%, 50%) translate(760px, 550px);
    }
    100% {
      transform: translate(50%, 50%) translate(-800px, 350px);
      -webkit-transform: translate(50%, 50%) translate(-800px, 350px);
      -moz-transform: translate(50%, 50%) translate(-800px, 350px);
      -ms-transform: translate(50%, 50%) translate(-800px, 350px);
      -o-transform: translate(50%, 50%) translate(-800px, 350px);
    }
  }
  @keyframes characters {
    0%, 75%, 100% {
      opacity: 0;
      transform: rotateY(-90deg);
    }
    25%, 50% {
      opacity: 1;
      transform: rotateY(0deg);
    }
  }
  .scalein.as-animated {
    --animation-name: scalein;
  }
  
  .slidetopleft.as-animated {
    --animation-name: slidetopleft;
  }
  
  .slidebottomright.as-animated {
    --animation-name: slidebottomright;
  }
  
  .slideinleft.as-animated {
    --animation-name: slideinleft;
  }
  
  .slideinright.as-animated {
    --animation-name: slideinright;
  }
  
  .slideinup.as-animated {
    --animation-name: slideinup;
  }
  
  .slideindown.as-animated {
    --animation-name: slideindown;
  }
  
  .rollinleft.as-animated {
    --animation-name: rollinleft;
  }
  
  .rollinright.as-animated {
    --animation-name: rollinright;
  }
  
  .scalein,
  .slidetopleft,
  .slidebottomright,
  .slideinleft,
  .slideinright,
  .slideindown,
  .slideinup,
  .rollinleft,
  .rollinright {
    opacity: 0;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
  }
  
  .as-animated {
    opacity: 1;
  }
  
  @keyframes slideinup {
    0% {
      opacity: 0;
      transform: translateY(70px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes slideinright {
    0% {
      opacity: 0;
      transform: translateX(70px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes slideindown {
    0% {
      opacity: 0;
      transform: translateY(-70px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes slideinleft {
    0% {
      opacity: 0;
      transform: translateX(-70px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes slidebottomright {
    0% {
      opacity: 0;
      transform: translateX(100px) translateY(100px);
    }
    100% {
      transform: translateX(0) translateY(0);
    }
  }
  @keyframes slidetopleft {
    0% {
      opacity: 0;
      transform: translateX(-100px) translateY(-100px);
    }
    100% {
      transform: translateX(0) translateY(0);
    }
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
    0% {
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-top-color: transparent;
      border-left-color: transparent;
    }
    75% {
      border-top-color: #fff;
      border-left-color: #fff;
      border-right-color: #fff;
      border-bottom-color: transparent;
    }
    100% {
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-top-color: transparent;
      border-left-color: transparent;
    }
  }
  .bg-anime-scratch {
    animation: scratch 4s linear infinite;
    overflow: hidden;
  }
  
  @keyframes scratch {
    0% {
      height: 0;
    }
    70% {
      height: 158px;
    }
    100% {
      height: 158px;
    }
  }
  @keyframes shine {
    0% {
      left: -100px;
    }
    60% {
      left: 100%;
    }
    to {
      left: 100%;
    }
  }
  .fadein,
  .scalein,
  .slidetopleft,
  .slidebottomright,
  .slideinleft,
  .slideinright,
  .slideindown,
  .slideinup,
  .rollinleft,
  .rollinright {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 1.3s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
  }
  
  .swiper-slide-active .fadein {
    --animation-name: fadein;
  }
  
  .swiper-slide-active .scalein {
    --animation-name: scalein;
  }
  
  .swiper-slide-active .slidetopleft {
    --animation-name: slidetopleft;
  }
  
  .swiper-slide-active .slidebottomright {
    --animation-name: slidebottomright;
  }
  
  .swiper-slide-active .slideinleft {
    --animation-name: slideinleft;
  }
  
  .swiper-slide-active .slideinright {
    --animation-name: slideinright;
  }
  
  .swiper-slide-active .slideinup {
    --animation-name: slideinup;
  }
  
  .swiper-slide-active .slideindown {
    --animation-name: slideindown;
  }
  
  .swiper-slide-active .rollinleft {
    --animation-name: rollinleft;
  }
  
  .swiper-slide-active .rollinright {
    --animation-name: rollinright;
  }
  
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes scalein {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.3);
    }
  }
  @keyframes slideinup {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideinright {
    0% {
      opacity: 0;
      transform: translateX(180px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideindown {
    0% {
      opacity: 0;
      transform: translateY(-100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes slideinleft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slidebottomright {
    0% {
      opacity: 0;
      transform: translateX(120px) translateY(120px);
    }
    100% {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }
  }
  @keyframes slidetopleft {
    0% {
      opacity: 0;
      transform: translateX(-100px) translateY(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }
  }
  /*------------------- 3.6. Slider -------------------*/
  /* Service area slider */
  .service-wrap.style3 .service-slider1 {
    padding: 0 10px 0;
  }
  .service-wrap.style3 .service-slider1 .swiper-slide {
    /* Medium devices */
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 {
    background-color: var(--theme-color);
    border-radius: 16px;
    background: linear-gradient(180deg, #3D4AFF 0%, #9931F6 100%);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3 .card_content h3 a, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 .card_content h3 a {
    color: var(--white-color);
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3 .card_content h3 a:hover, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 .card_content h3 a:hover {
    color: var(--theme-color2);
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3 .card_content .text, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 .card_content .text {
    color: var(--white-color);
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3 .card_icon, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 .card_icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3 .card_icon:before, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 .card_icon:before {
    background-color: var(--white-color);
    opacity: 1;
  }
  .service-wrap.style3 .service-slider1 .swiper-slide.swiper-slide-active .service-card.style3 .link-wrap a, .service-wrap.style3 .service-slider1 .swiper-slide:hover .service-card.style3 .link-wrap a {
    color: var(--white-color);
  }
  @media (max-width: 991px) {
    .service-wrap.style3 .service-slider1 .swiper-slide {
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }
  }
  
  /* Porfolio area slider */
  .project-wrap.style1 .project-slider1 .gt-slider {
    margin-right: -775px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    /* Small devices */
  }
  .project-wrap.style1 .project-slider1 .gt-slider .swiper-slide {
    display: flex;
    justify-content: center;
  }
  @media (max-width: 767px) {
    .project-wrap.style1 .project-slider1 .gt-slider {
      margin-right: 0px;
    }
  }
  .project-wrap.style2 {
    margin-top: -230px;
  }
  .project-wrap.style2 .project-slider2 .gt-slider {
    overflow: visible !important;
    margin-right: -775px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    /* Small devices */
  }
  .project-wrap.style2 .project-slider2 .gt-slider .swiper-slide {
    display: flex;
    justify-content: center;
  }
  @media (max-width: 767px) {
    .project-wrap.style2 .project-slider2 .gt-slider {
      margin-right: 0px;
    }
  }
  
  /* App Screenshots area slider */
  .app-screenshot-area {
    position: relative;
  }
  .app-screenshot-area .screenshots-slider1 {
    padding: 0 0 50px;
  }
  .app-screenshot-area .screenshots-slider1 .screenshot-thumb-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .app-screenshot-area .screenshots-slider1 .slider-pagination {
    position: absolute !important;
    z-index: 10;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
  .app-screenshot-area .screenshots-slider1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.76);
    transition: background-color 0.3s;
    margin: 0 5px;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
  }
  .app-screenshot-area .screenshots-slider1 .swiper-pagination-bullet-active {
    background-color: #fff;
  }
  


  /* Team area slider */
  .team-wrap.style2 .team-slider1 .swiper-slide {
    margin-right: 25px !important;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .team-wrap.style2 .team-slider1 .swiper-slide {
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }
  }
  
  /*------------------- 3.7. Text Sliding -------------------*/
  .scrolling-wrap {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 100px;
  }
  .scrolling-wrap .textWrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: scroll 60s linear infinite;
    cursor: pointer;
  }
  .scrolling-wrap .textWrapper .textWrapper-textslide {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 85px;
  }
  .scrolling-wrap .textWrapper .textWrapper-textslide img {
    width: 75px;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
  }
  .scrolling-wrap .textWrapper .text-custom-storke {
    -webkit-text-stroke: 1px var(--title-color);
    -webkit-text-fill-color: transparent;
  }
  .scrolling-wrap:hover .textWrapper {
    animation-play-state: paused;
  }
  
  /*------------------- 3.8. Cursor Follower -------------------*/
  .cursor-follower {
    position: fixed;
    background: var(--theme-color2);
    border: 1px solid var(--theme-color2);
    width: 15px;
    height: 15px;
    border-radius: 100%;
    z-index: 999999;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    transform: translate(2px, 2px);
    opacity: 0.7;
    mix-blend-mode: multiply;
  }
  
  /*=================================
      04. Template Style
  ==================================*/
  /*------------------- 4.1. Widget  -------------------*/
  /*----------------------------------------------
      # Widget Sidebar style here
  ----------------------------------------------*/
  .main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: var(--gray-color);
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
  }
  .main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
  }
  .main-sidebar .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: var(--theme-color);
  }
  .main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative;
  }
  .main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: var(--white-color);
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--body-color);
  }
  .main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background: var(--theme-color2);
    border: none;
    color: var(--white-color);
    text-align: center;
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul {
    padding-left: 0;
    list-style-type: none;
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li {
    background-color: var(--white-color);
    font-weight: 500;
    transition: all 0.3s ease 0s;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: var(--title-color);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li a span {
    transition: all 0.3s ease 0s;
    color: var(--title-color);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
    margin-bottom: 12px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
    color: var(--white-color);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: var(--white-color);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
    color: var(--white-color);
  }
  .main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
    color: var(--white-color);
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E6E5E5;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
    width: 78px;
    height: 79px;
    object-fit: cover;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 8px;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
    color: var(--theme-color2);
    margin-right: 5px;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700;
    margin-bottom: 0;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
  }
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
    color: var(--theme-color2);
  }
  .main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-flex;
    padding: 10px 16px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-transform: capitalize;
    background: var(--white-color);
    margin-right: 5px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
  .main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0;
  }
  .main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color) !important;
  }
  
  .recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
  }
  .recent-post .media-img {
    margin-right: 20px;
    width: 95px;
    overflow: hidden;
    flex: none;
  }
  .recent-post .media-img img {
    width: 100%;
    transition: 0.4s ease-in-out;
  }
  .recent-post .post-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    margin: 10px 0 0px;
    font-family: var(--title-font);
    text-transform: capitalize;
  }
  .recent-post .recent-post-meta {
    margin-bottom: -2px;
  }
  .recent-post .recent-post-meta .price {
    font-size: 18px;
    font-weight: 700;
    color: #c5c5c5;
  }
  .recent-post .recent-post-meta .price del {
    margin-right: 10px;
  }
  .recent-post .recent-post-meta .price strong {
    color: var(--theme-color);
    font-weight: 700;
  }
  .recent-post .recent-post-meta a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: var(--body-color);
  }
  .recent-post .recent-post-meta a i {
    margin-right: 9px;
    color: var(--theme-color2);
    transition: 0.4s;
  }
  .recent-post .recent-post-meta a:hover {
    color: var(--theme-color);
  }
  .recent-post .recent-post-meta a:hover i {
    color: var(--theme-color);
  }
  .recent-post:hover .media-img img {
    transform: scale(1.1);
  }
  
  .widget_shopping_cart .widget_title {
    margin-bottom: 30px;
    border-bottom: none;
  }
  .widget_shopping_cart ul {
    margin: 0;
    padding: 0;
  }
  .widget_shopping_cart ul li {
    list-style-type: none;
  }
  .widget_shopping_cart .mini_cart_item {
    position: relative;
    padding: 30px 30px 30px 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    text-align: left;
  }
  .widget_shopping_cart .mini_cart_item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .widget_shopping_cart .cart_list a:not(.remove) {
    display: block;
    color: var(--body-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 6px;
  }
  .widget_shopping_cart .cart_list a:not(.remove):hover {
    color: var(--theme-color);
  }
  .widget_shopping_cart .cart_list a.remove {
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translateY(-50%);
    color: var(--body-color);
  }
  .widget_shopping_cart .cart_list a.remove:hover {
    color: var(--theme-color);
  }
  .widget_shopping_cart .cart_list img {
    width: 75px;
    height: 75px;
    position: absolute;
    left: 0;
    top: 18px;
  }
  .widget_shopping_cart .quantity {
    display: inline-flex;
    white-space: nowrap;
    vertical-align: top;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 500;
  }
  .widget_shopping_cart .total {
    margin-top: 20px;
    font-size: 18px;
    color: var(--title-color);
    font-family: var(--body-font);
  }
  .widget_shopping_cart .total strong {
    font-family: var(--title-font);
  }
  .widget_shopping_cart .amount {
    padding-left: 5px;
  }
  .widget_shopping_cart .as-btn {
    margin-right: 15px;
  }
  .widget_shopping_cart .as-btn:last-child {
    margin-right: 0;
  }
  
  /* Large devices */
  @media (max-width: 1199px) {
    .widget_title {
      font-size: 22px;
      margin: -0.12em 0 24px 0;
    }
  }
  @media (max-width: 330px) {
    .recent-post .post-title {
      font-size: 16px;
      line-height: 24px;
    }
    .recent-post .recent-post-meta a {
      font-size: 12px;
    }
  }
  /*----------------------------------------------
      # All Footer Widget style here
  ----------------------------------------------*/
  .widget-area.style2 {
    position: relative;
  }
  .widget-area.style2 .shape2_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .widget-area.style2 .shape2_2 {
    position: absolute;
    bottom: 63px;
    right: 0;
    z-index: 1;
  }
  .widget-area.style2 .shape2_3 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .widget-area.style1 {
    position: relative;
  }
  .widget-area.style1 .shape2_1 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .widget-area.style1 .shape2_2 {
    position: absolute;
    bottom: 63px;
    right: 0;
  }
  
  .widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 30px 0;
  }
  
  .widget.footer-widget {
    background-color: transparent;
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding-top: -webkit-calc(var(--section-space) - 20px);
    padding-top: -moz-calc(var(--section-space) - 20px);
    padding-top: calc(var(--section-space) - 20px);
    padding-bottom: 0px;
    margin-bottom: -5px;
  }
  .widget.footer-widget .widget_title {
    padding: 0 0 18px 0;
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
  }
  .widget.footer-widget .widget_title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  }
  
  .gt-widget-about {
    max-width: 270px;
  }
  .gt-widget-about .about-logo {
    margin-bottom: 33px;
  }
  .gt-widget-about .about-text {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px;
  }
  
  .widget.widget_nav_menu.footer-widget .widget_title {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
  }
  .widget.widget_nav_menu.footer-widget .menu-all-pages-container .menu {
    list-style-type: none;
    padding-left: 0;
  }
  .widget.widget_nav_menu.footer-widget .menu-all-pages-container .menu li {
    margin-bottom: 20px;
  }
  .widget.widget_nav_menu.footer-widget .menu-all-pages-container .menu li a {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  .widget.widget_nav_menu.footer-widget .menu-all-pages-container .menu li a i {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-right: 8px;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .widget.widget_nav_menu.footer-widget .menu-all-pages-container .menu li a:hover {
    color: var(--theme-color2);
  }
  .widget.widget_nav_menu.footer-widget .menu-all-pages-container .menu li a:hover i {
    color: var(--theme-color2);
  }
  .widget.widget_nav_menu.footer-widget .checklist {
    margin-top: 25px;
    margin-bottom: 0px;
  }
  .widget.widget_nav_menu.footer-widget .checklist ul {
    margin-bottom: 20px;
  }
  .widget.widget_nav_menu.footer-widget .email-input-container {
    margin-bottom: 25px;
    width: 270px;
  }
  
  .recent-post-wrap .recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    max-width: 300px;
    margin-top: -0.3em;
    margin-bottom: 30px;
    padding: 0;
    border: 0;
  }
  .recent-post-wrap .recent-post .media-img {
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  .recent-post-wrap .recent-post .media-body .recent-post-meta {
    margin-bottom: -2px;
  }
  .recent-post-wrap .recent-post .media-body .recent-post-meta a {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .recent-post-wrap .recent-post .media-body .recent-post-meta a i {
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-right: 9px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
  }
  .recent-post-wrap .recent-post .media-body .post-title a {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }
  .recent-post-wrap .recent-post .media-body .post-title a:hover {
    color: var(--theme-color2);
  }
  
  .copyright-wrap .copyright-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /* Small devices */
  }
  .copyright-wrap .copyright-layout .layout-text .copyright {
    margin-bottom: 0;
    color: var(--white-color);
  }
  .copyright-wrap .copyright-layout .layout-text .copyright a {
    color: var(--white-color);
  }
  .copyright-wrap .copyright-layout .layout-text .copyright a:hover {
    color: var(--theme-color2);
  }
  .copyright-wrap .copyright-layout .link-wrapper {
    text-align: end;
  }
  .copyright-wrap .copyright-layout .link-wrapper a {
    display: inline-block;
    color: var(--white-color);
    text-align: right;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-right: 30px;
  }
  .copyright-wrap .copyright-layout .link-wrapper a:hover {
    color: var(--theme-color2);
  }
  .copyright-wrap .copyright-layout .link-wrapper a:last-child {
    margin-right: 0;
  }
  @media (max-width: 767px) {
    .copyright-wrap .copyright-layout {
      grid-template-columns: repeat(1, 1fr);
      text-align: center;
    }
    .copyright-wrap .copyright-layout .link-wrapper {
      text-align: center;
    }
    .copyright-wrap .copyright-layout .link-wrapper a {
      text-align: center;
    }
  }
  
  /*------------------- 4.2. Header  -------------------*/
  .header-top-section.style1 {
    background-color: var(--title-color);
    padding: 10px 0;
    position: relative;
    z-index: 9;
    /* Medium devices */
  }
  .header-top-section.style1 .header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-top-section.style1 .header-top-wrapper .contact-list {
    list-style-type: none;
    padding-left: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .header-top-section.style1 .header-top-wrapper .contact-list li {
    font-size: 15px;
    color: var(--white-color);
  }
  .header-top-section.style1 .header-top-wrapper .contact-list li i {
    color: var(--white-color);
    margin-right: 10px;
  }
  .header-top-section.style1 .header-top-wrapper .contact-list li a {
    color: var(--white-color);
  }
  .header-top-section.style1 .header-top-wrapper .top-right {
    padding-right: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .header-top-section.style1 .header-top-wrapper .top-right .social-icon {
    gap: 15px;
  }
  .header-top-section.style1 .header-top-wrapper .top-right .social-icon a {
    color: var(--white-color);
  }
  .header-top-section.style1 .header-top-wrapper .top-right .social-icon span {
    color: var(--white-color);
    font-weight: 500;
  }
  @media (max-width: 991px) {
    .header-top-section.style1 {
      display: none;
    }
  }
  .header-top-section.style2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 9;
    /* Medium devices */
  }
  .header-top-section.style2 .header-top-wrapper {
    padding: 17px 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px 0px 30px 30px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  .header-top-section.style2 .header-top-wrapper .contact-list {
    list-style-type: none;
    padding-left: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .header-top-section.style2 .header-top-wrapper .contact-list li {
    font-size: 15px;
    color: var(--white-color);
  }
  .header-top-section.style2 .header-top-wrapper .contact-list li i {
    color: var(--white-color);
    margin-right: 10px;
  }
  .header-top-section.style2 .header-top-wrapper .contact-list li a {
    color: var(--white-color);
  }
  .header-top-section.style2 .header-top-wrapper .top-right {
    padding-right: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .header-top-section.style2 .header-top-wrapper .top-right .social-icon {
    gap: 15px;
  }
  .header-top-section.style2 .header-top-wrapper .top-right .social-icon a {
    color: var(--white-color);
  }
  .header-top-section.style2 .header-top-wrapper .top-right .social-icon span {
    color: var(--white-color);
    font-weight: 500;
  }
  @media (max-width: 991px) {
    .header-top-section.style2 {
      display: none;
    }
  }
  
  /* Header Default */
  .gt-header {
    position: relative;
    z-index: 41;
    /* overflow: hidden; */
  }
  .gt-header .icon-btn {
    border-radius: 99px;
  }
  .gt-header .menu-area {
    position: relative;
    z-index: 2;
    /* overflow: hidden; */
  }
  
  .sticky-wrapper {
    transition: 0.4s ease-in-out;
  }
  .sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--theme-color);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    animation: stickyAni 0.4s ease-in-out;
  }
  
  
  
  /* Header 1 ---------------------------------- */
  /* Medium devices */
  /* Large devices */
  /* .header-layout1 {
    position: relative;
    background-color: var(--white-color);
  } */
  /* @media (max-width: 991px) {
    .header-layout1 {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
    }
  } */

/*   .header-layout1 .sticky-wrapper.sticky {
    background: var(--white-color);
  }   */

  /* Medium devices */
/*   .header-layout1 .menu-area .header-logo {
    padding-top: 15px;
    padding-bottom: 15px;
  } */
  /* .header-layout1 .menu-area .header-logo a{
    position: relative;
    color: white;
    z-index: 10;
    
    
  }
  .header-layout1 .menu-area .header-logo a img {
    position: relative;
    z-index: 10;
    display: flex;
    justify-self: end;
  }

  .header-logo-area{
    position: absolute;
    top: -0.5px;
    left: 0;
    width: 457px;
    height: 109px;
    z-index: 1;
  } */
  
  /* .header-logo-container{    
    position: relative;
    width: 100%;
    height: 100%;
  } */

 /*  .header-layout1 .menu-area .header-logo{
    position: relative; Necessário para que o pseudoelemento seja posicionado em relação ao contêiner 
    display: flex;
    align-items: center;
    justify-content: end;
    width: 375px;
    height: 109px;
    margin: 0;Fundo do contêiner 
    z-index: 1;
    overflow: hidden;  Garante que o gradiente não vaze fora do contêiner 
  } */



  /* .header-layout1 .menu-area .header-logo-area .header-logo-container .header-logo:before {
    display: flex;    
    position: absolute;
    content: "";
    top: -0.5px;
    left: 0;
    width:75%;
    height: 109px;
    clip-path: polygon(0px 0px, 421.5px 0px, 457px 109px, 0px 109px, 0px 0px);
    z-index: 5;
  } */


  /* .header-layout1 .menu-area .header-logo:before { */

    /* overflow: hidden; */
    /* position: absolute;
    content: "";
    top: -0.5px;
    left: 0;
    width: 457px;
    height: 109px; */
    /* background: linear-gradient(to right, rgb(255, 0, 0)0%, rgb(255, 0, 0)35%, rgb(255, 255, 255) 55%, rgba(0, 0, 0, 0) 80%); */
    /* clip-path: polygon(0px 0px, 421.5px 0px, 457px 109px, 0px 109px, 0px 0px), polygon(0px 0px, 421.5px 0px, 457px 109px, 0px 109px, 0px 0px); */
    /* z-index: 1; */
    /* Hight Resoulation devices */
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium Large devices */
    /* Large devices */
    /* Medium devices */
    /* Small devices */
    /* Extra small devices */
    /* Extra small devices */
  /* } */
/*   @media (min-width: 1922px) {
    .header-layout1 .menu-area .header-logo:before { */
      /* width: 490px;
      height: 109px; */
      /* background: linear-gradient(to right, rgb(255, 0, 0)0%, rgb(255, 0, 0)35%, rgb(255, 255, 255) 55%, rgba(0, 0, 0, 0) 80%);
      clip-path: polygon(0px 0px, 421.5px 0px, 457px 109px, 0px 109px, 0px 0px);
      z-index: 1; */

      /* background: linear-gradient(90deg, #f32a2a 0%, #e7e7e7 83.46%); */
      /* background: linear-gradient(90deg, #B42AF3 0%, #384BFF 83.46%);
      clip-path: none;
      border-top-right-radius: 100px;
      border-bottom-right-radius: 100px; */
/*     }
  } */
/*   @media (min-width: 2050px) {
    .header-layout1 .menu-area .header-logo:before {
      width: 490px;
    }
  }
  @media (min-width: 2350px) {
    .header-layout1 .menu-area .header-logo:before {
      width: 490px;
    }
  }
  @media (max-width: 1750px) {
    .header-layout1 .menu-area .header-logo{
      width: 315px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -17%;
      width: 457px;
    }
  }
  @media (max-width: 1500px) {
    .header-layout1 .menu-area .header-logo{
      width: 270px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -30.5%;
      top: 0.1px;
    }
  }
  @media (max-width: 1399px) {
    .header-layout1 .menu-area .header-logo{
      width: 220px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -65%;
    }
  }
  @media (max-width: 1299px) {
    .header-layout1 .menu-area .header-logo{
      width: 200px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -80%;
    }
  }
  @media (max-width: 1250px) {
    .header-layout1 .menu-area .header-logo{
      width: 190px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -90%;
    }
  }
  @media (max-width: 1210px) {
    .header-layout1 .menu-area .header-logo{
      width: 180px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -95%;
    }
  }
  @media (max-width: 1199px) {
    .header-layout1 .menu-area .header-logo{
      width: 680px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: 0;
      width: 700px
    }
  }
  @media (max-width: 991px) {
    .header-layout1 .menu-area .header-logo{
      width: 575px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -15%;
    }
  }
  @media (max-width: 767px) {
    .header-layout1 .menu-area .header-logo{
      width: 470px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -22%;
    }
  }
  @media (max-width: 575px) {
    .header-layout1 .menu-area .header-logo{
      width: 375px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -40%;
    }
  }
  @media (max-width: 375px) {
    .header-layout1 .menu-area .header-logo{
      width: 270px;
    }
    .header-layout1 .menu-area .header-logo:before {
      left: -60%;
      top: 0.1px;
    }
  } */
  /* Aqui controla a listra ao lado do logo */
  /* .header-layoutsdasdsa1 .menu-area .header-logo:after {
    position: absolute;
    content: "";
    top: -1px;
    left: 345px;
    width: 250px;
    height: 150px;
    transform: rotate(-0.375deg); */
    /* background: var(--theme-color); */
    /* background: #ff0000; */
    /* clip-path: polygon(0px 0px, 17.8104px -0.00791562px, 52.0001px 109px, 34.0001px 109px, 0px 0px); */
/*     -webkit-transform: rotate(-0.375deg);
    -moz-transform: rotate(-0.375deg);
    -ms-transform: rotate(-0.375deg);
    -o-transform: rotate(-0.375deg); */
    /* Hight Resoulation devices */
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium Large devices */
    /* Large devices */
    /* Medium devices */
    /* Small devices */
    /* Extra small devices */
    /* Extra small devices */
  /* } */

  /* .third-bar {
    position: absolute;
    top: 0;
    right: 42px; 
    width: 20px;
    height: 100%;
    background: black; 
    transform: skewX(18deg);
    z-index: 3;
  }
  @media (min-width: 1922px) {
    .header-layout1 .menu-area .header-logo:after {
      display: none;
    }
  }
  @media (max-width: 1750px) {
    .header-layout1 .menu-area .header-logo:after {
      width: 450px;
      left: 285px;
      top: -2px;
    }
    .third-bar {
      position: absolute;
      top: 0;
      right: 105px; 
      width: 20px;
      height: 100%;
      background: black; 
      transform: skewX(18deg);
      z-index: 3;
    }
  }
  @media (max-width: 1500px) {
    .header-layout1 .menu-area .header-logo:after {
      top: -2px;
      left: 250px;
      transform: rotate(-0.395deg);
      -webkit-transform: rotate(-0.395deg);
      -moz-transform: rotate(-0.395deg);
      -ms-transform: rotate(-0.395deg);
      -o-transform: rotate(-0.395deg);
    }
    .third-bar {
      position: absolute;
      top: 0;
      right: 140px; 
      width: 20px;
      height: 100%;
      background: black; 
      transform: skewX(18deg);
      z-index: 3;
    }
  }
  @media (max-width: 1399px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 265px;
    }
  }
  @media (max-width: 1299px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 285px;
    }
  }
  @media (max-width: 1250px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 265px;
    }
  }
  @media (max-width: 1210px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 245px;
    }
  }
  @media (max-width: 1199px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 430px;
    }
  }
  @media (max-width: 991px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 315px;
    }
  }
  @media (max-width: 767px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 300px;
    }
  }
  @media (max-width: 575px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 215px;
    }
  }
  @media (max-width: 375px) {
    .header-layout1 .menu-area .header-logo:after {
      left: 200px;
    }
  }
  @media (max-width: 991px) {
    .header-layout1 .menu-area .header-logo {
      padding-top: 16.5px;
      padding-bottom: 16.5px;
    }
  }
  .header-layout1 .main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    background: linear-gradient(90deg, #B42AF3 0%, #384BFF 83.46%);
    width: 0%;
    margin-top: 30px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    z-index: 5;
  }
  .header-layout1 .main-menu > ul > li > a:hover:before {
    width: 100%;
  }
  .header-layout1 .simple-icon {
    padding: 10px;
    width: 56px;
    height: 56px;
    line-height: 36px;
    margin-left: 5px;
    text-align: center;
    background-color: transparent;
    color: var(--theme-color);
    border: 1px solid var(--theme-color2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .header-layout1 .simple-icon.searchBoxToggler {
    
  }
  @media (max-width: 1500px) {
    .header-layout1 .simple-icon.searchBoxToggler {
      display: none;
    }
  }
  .header-layout1 .simple-icon:hover {
    border: 1px solid var(--black-color);
  }
  .header-layout1 .icon-btn {
    
  }
  .header-layout1 .icon-btn.style1 {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border: 1px solid var(--theme-color2);
    background-color: transparent;
    color: var(--theme-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .header-layout1 .icon-btn.style1:hover {
    border: 1px solid var(--black-color);
  }
  @media (max-width: 1500px) {
    .header-layout1 .icon-btn {
      display: none !important;
    }
  }
  @media (max-width: 1199px) {
    .header-layout1 .simple-icon {
      margin-left: 0;
    }
    .header-layout1 .main-menu {
      margin-left: 0;
    }
  } */
  
  /* Header 2 ---------------------------------- */
  .header-layout2 {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background-color: transparent;
    /* Medium devices */
    /* Large devices */
  }
  @media (max-width: 991px) {
    .header-layout2 {
      top: 0;
      background-color: var(--title-color);
    }
  }
  .header-layout2 .sticky-wrapper.sticky {
    background: var(--title-color);
  }
  .header-layout2 .main-menu > ul > li.menu-item-has-children > a:after {
    content: "\f107";
    display: inline-block;
    position: relative;
    margin-left: 4px;
    font-weight: 400;
    top: 0;
    font-size: 0.9em;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
  }
  .header-layout2 .main-menu > ul > li > a {
    color: var(--white-color);
  }
  .header-layout2 .main-menu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    background: linear-gradient(90deg, #B42AF3 0%, #384BFF 83.46%);
    width: 0%;
    margin-top: 30px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    z-index: 5;
  }
  .header-layout2 .main-menu > ul > li > a:hover:before {
    width: 100%;
  }
  .header-layout2 .simple-icon {
    padding: 10px;
    width: 56px;
    height: 56px;
    line-height: 36px;
    margin-left: 5px;
    text-align: center;
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .header-layout2 .simple-icon.searchBoxToggler {
    /* Extra large devices */
  }
  @media (max-width: 1500px) {
    .header-layout2 .simple-icon.searchBoxToggler {
      display: none;
    }
  }
  .header-layout2 .simple-icon:hover {
    color: var(--theme-color2);
    border: 1px solid var(--theme-color2);
  }
  .header-layout2 .simple-icon2 {
    padding: 10px;
    width: 56px;
    height: 56px;
    line-height: 36px;
    margin-left: 5px;
    text-align: center;
    background-color: transparent;
    color: var(--theme-color2);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .header-layout2 .simple-icon2.searchBoxToggler {
    /* Extra large devices */
  }
  @media (max-width: 1500px) {
    .header-layout2 .simple-icon2.searchBoxToggler {
      display: none;
    }
  }
  .header-layout2 .simple-icon2:hover {
    color: var(--theme-color2);
    border: 1px solid var(--theme-color2);
  }
  .header-layout2 .simple-icon2:hover .line {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  .header-layout2 .icon-btn {
    /* Extra large devices */
  }
  .header-layout2 .icon-btn.style1 {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border: 1px solid var(--white-color);
    background-color: transparent;
    color: var(--white-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .header-layout2 .icon-btn.style1:hover {
    color: var(--theme-color2);
    border: 1px solid var(--theme-color2);
  }
  @media (max-width: 1500px) {
    .header-layout2 .icon-btn {
      display: none !important;
    }
  }
  @media (max-width: 1199px) {
    .header-layout2 .simple-icon {
      margin-left: 0;
    }
    .header-layout2 .main-menu {
      margin-left: 0;
    }
  }
  
  /*------------------- 4.3. Footer  -------------------*/
  /*----------------------------------------------
      # Footer style here
  ----------------------------------------------*/
  .copyright-wrap {
    padding: 20.5px 0;
    border-top: 1px solid #444A56;
    background-color: #252934;
  }
  
  .copyright-text {
    margin: 0;
    color: var(--white-color);
  }
  .copyright-text a {
    color: var(--theme-color);
  }
  .copyright-text a:hover {
    color: var(--white-color);
  }
  
  /*------------------- 4.4. Breadcumb  -------------------*/
  /*----------------------------------------------
      # Breadcumb style here
  ----------------------------------------------*/
  .breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
  }
  .breadcrumb-wrapper .breadcumb {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    padding: 180px 0;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .breadcrumb-wrapper .breadcumb {
      padding: 180px 0 70px;
    }
  }
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    z-index: 9;
    /* Medium Large devices */
    /* Large devices */
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 1299px) {
    .breadcrumb-wrapper .page-heading {
      padding: 140px 0;
    }
  }
  @media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
      padding: 120px 0;
    }
  }
  @media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
      padding: 100px 0;
    }
  }
  @media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
      padding: 80px 0;
    }
  }
  .breadcrumb-wrapper .page-heading h1 {
    color: var(--white-color);
    font-size: 65px;
    position: relative;
    z-index: 9;
    /* Large devices */
    /* Small devices */
  }
  @media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading h1 {
      font-size: 52px;
    }
  }
  @media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading h1 {
      font-size: 42px;
    }
  }
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
    list-style-type: none;
    padding-left: 0;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
      margin-top: 15px;
    }
  }
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white-color);
    text-transform: capitalize;
    font-weight: 600;
  }
  .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white-color);
    transition: all 0.3s ease 0s;
  }
  .breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme-color2);
  }
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white-color);
  }
  .breadcrumb-wrapper .border-shape {
    position: absolute;
    top: 20px;
    left: 0;
  }
  .breadcrumb-wrapper .line-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  
  .error-items {
    text-align: center;
  }
  .error-items h2 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 50px;
  }
  .error-items h2 span {
    color: var(--theme-color);
  }
  .error-items p {
    color: var(--paragraph-color, #726B7D);
    text-align: center;
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 50px;
  }
  
  /*------------------- 4.5. Blog  -------------------*/
  /*----------------------------------------------
      # Blog style here
  ----------------------------------------------*/
  .blog-wrap.style1 {
    position: relative;
  }
  .blog-wrap.style1 .shape1_1 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .blog-wrap.style2 {
    position: relative;
  }
  .blog-wrap.style2 .shape2_1 {
    position: absolute;
    top: 142px;
    left: 0;
  }
  .blog-wrap.style2 .shape2_2 {
    position: absolute;
    bottom: 50px;
    right: 0;
  }
  
  .blog-card-wrap.style1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 30px;
    /* Large devices */
    /* Medium devices */
  }
  @media (max-width: 1199px) {
    .blog-card-wrap.style1 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 991px) {
    .blog-card-wrap.style1 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .blog-card-wrap.style2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 30px;
    /* Large devices */
    /* Medium devices */
  }
  @media (max-width: 1199px) {
    .blog-card-wrap.style2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media (max-width: 991px) {
    .blog-card-wrap.style2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .blog-card-wrap.style3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  
  .blog-card.style1 {
    position: relative;
    padding: 24px;
    max-width: 370px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .blog-card.style1 .blog-card-body .btn-wrapper a {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
  }
  .blog-card.style1 .blog-card-body .btn-wrapper a:hover {
    color: var(--theme-color2);
  }
  .blog-card.style1 .blog-card-body .btn-wrapper img,
  .blog-card.style1 .blog-card-body .btn-wrapper i {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
  }
  .blog-card.style1 .calendar {
    position: absolute;
    top: 205px;
    left: 44px;
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
  }
  .blog-card.style1 .calendar .date {
    padding: 10px 18px;
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 3px;
    border-radius: 10px;
    background-color: var(--theme-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .blog-card.style1 .calendar .month {
    color: var(--body-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .blog-card.style1:hover .blog-card-thumb img {
    transform: scale(1.23);
    -webkit-transform: scale(1.23);
    -moz-transform: scale(1.23);
    -ms-transform: scale(1.23);
    -o-transform: scale(1.23);
  }
  .blog-card.style2 {
    position: relative;
    border-radius: 20px;
    border: 1px solid #E3E3E3;
    background-color: var(--white-color);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .blog-card.style2 .blog-card-body {
    padding: 0 30px 30px 30px;
  }
  .blog-card.style2 .calendar {
    position: absolute;
    top: 36px;
    left: 36px;
    display: inline-flex;
    padding: 10px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .blog-card.style2 .calendar .date {
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
  .blog-card.style2 .calendar .month {
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .blog-card.style2:hover .blog-card-thumb img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
  .blog-card.style3 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    border-radius: 20px;
    border: 1px solid #E3E3E3;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    /* Small devices */
  }
  .blog-card.style3 .blog-card-body {
    padding-right: 30px;
  }
  .blog-card.style3 .calendar {
    position: absolute;
    top: 36px;
    left: 36px;
    display: inline-flex;
    padding: 10px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .blog-card.style3 .calendar .date {
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
  }
  .blog-card.style3 .calendar .month {
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .blog-card.style3:hover .blog-card-thumb.style3 img {
    transform: scale(1.23);
    -webkit-transform: scale(1.23);
    -moz-transform: scale(1.23);
    -ms-transform: scale(1.23);
    -o-transform: scale(1.23);
  }
  @media (max-width: 767px) {
    .blog-card.style3 {
      grid-template-columns: repeat(1, 1fr);
    }
    .blog-card.style3 .blog-card-body {
      padding: 0 30px 30px 30px;
    }
  }
  
  .blog-card-thumb.style1 {
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .blog-card-thumb.style1 img {
    width: 322px;
    height: 216px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  .blog-card-thumb.style2 {
    overflow: hidden;
    margin: 20px 20px 0 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .blog-card-thumb.style2 img {
    width: 530px;
    height: 248px;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: all 0.3s ease 0s;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 1199px) {
    .blog-card-thumb.style2 img {
      width: 902px;
      height: 427px;
      object-fit: cover;
    }
  }
  @media (max-width: 991px) {
    .blog-card-thumb.style2 img {
      width: 650px;
    }
  }
  @media (max-width: 767px) {
    .blog-card-thumb.style2 img {
      width: 530px;
    }
  }
  .blog-card-thumb.style3 {
    overflow: hidden;
    margin: 20px 30px 20px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    /* Small devices */
  }
  .blog-card-thumb.style3 img {
    width: 238px;
    height: 236px;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: all 0.3s ease 0s;
    /* Large devices */
    /* Medium devices */
  }
  @media (max-width: 1199px) {
    .blog-card-thumb.style3 img {
      width: 420px;
      height: 410px;
      object-fit: cover;
    }
  }
  @media (max-width: 991px) {
    .blog-card-thumb.style3 img {
      width: 300px;
    }
  }
  @media (max-width: 767px) {
    .blog-card-thumb.style3 {
      overflow: hidden;
      margin: 20px 20px 0 20px;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
    }
    .blog-card-thumb.style3 img {
      width: 530px;
      height: 248px;
      object-fit: cover;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      transition: all 0.3s ease 0s;
    }
  }
  
  .blog-title.style1 {
    margin-bottom: 20px;
  }
  .blog-title.style1 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  .blog-title.style1 a:hover {
    color: var(--theme-color2);
  }
  .blog-title.style2 {
    margin-bottom: 20px;
  }
  .blog-title.style2 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  .blog-title.style2 a:hover {
    color: var(--theme-color2);
  }
  
  .blog-text {
    color: var(--body-color);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: -5px;
    margin-bottom: 30px;
  }
  
  .tag-cloud {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 45px;
    margin-bottom: 5px;
  }
  .tag-cloud.style2 {
    margin-top: 25px;
  }
  
  .profile-wrapper.style2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 133px;
    /* Small devices */
  }
  .profile-wrapper.style2 .fancy-box.style1 {
    gap: 16px;
  }
  .profile-wrapper.style2 .fancy-box.style1 .fancy-box_icon {
    padding: 0px;
  }
  .profile-wrapper.style2 .fancy-box.style1 .fancy-box_icon img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .profile-wrapper.style2 .fancy-box.style1 .fancy-box_content span {
    display: inline-block;
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }
  .profile-wrapper.style2 .fancy-box.style1 .fancy-box_content h4 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  @media (max-width: 767px) {
    .profile-wrapper.style2 {
      flex-direction: column;
      gap: 30px;
      justify-content: center;
    }
    .profile-wrapper.style2 .gt-btn {
      width: 100%;
    }
  }
  
  /*----------------------------------------------
      # Blog Extra style here
  ----------------------------------------------*/
  .news-wrapper {
    padding: 0 75px;
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .news-wrapper {
      padding: 0;
    }
  }
  
  .single-news-items {
    margin-top: 30px;
    padding: 40px 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 30px;
    /* Medium Large devices */
    /* Medium devices */
    /* Extra small devices */
  }
  @media (max-width: 1299px) {
    .single-news-items {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 991px) {
    .single-news-items {
      flex-wrap: initial;
    }
  }
  @media (max-width: 575px) {
    .single-news-items {
      flex-wrap: wrap;
    }
  }
  .single-news-items .news-image {
    height: 220px;
    width: 220px;
    flex-basis: 100%;
    position: relative;
  }
  .single-news-items .news-image .post-date {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--white-color);
    padding: 7px 10px;
  }
  .single-news-items .news-image .post-date span {
    color: var(--title-color);
    font-weight: 600;
  }
  .single-news-items .news-content h3 {
    margin-bottom: 10px;
  }
  .single-news-items .news-content h3 a:hover {
    color: var(--theme-color);
  }
  .single-news-items .news-content .theme-btn-2 {
    color: var(--theme-color);
  }
  
  .news-section-3 {
    margin-bottom: -50px;
  }
  
  .news-card-items {
    margin-top: 30px;
  }
  .news-card-items .news-image {
    position: relative;
  }
  .news-card-items .news-image .post-date {
    padding: 12px 24px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 40px;
    left: 0;
  }
  .news-card-items .news-image .post-date h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--white-color);
  }
  .news-card-items .news-image .post-date h3 span {
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
  }
  .news-card-items .news-content {
    padding: 30px;
    background-color: var(--white-color);
    position: relative;
    z-index: 9;
    margin-right: 40px;
    margin-top: -40px;
  }
  .news-card-items .news-content ul {
    display: flex;
    gap: 50px;
    margin-bottom: 15px;
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .news-card-items .news-content ul {
      gap: 20px;
    }
  }
  .news-card-items .news-content ul li {
    font-size: 14px;
    font-weight: 500;
  }
  .news-card-items .news-content ul li i {
    color: var(--theme-color);
    margin-right: 5px;
  }
  .news-card-items .news-content h3 {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .news-card-items .news-content h3 a:hover {
    color: var(--theme-color);
  }
  .news-card-items.style-2 {
    padding-bottom: 50px;
  }
  .news-card-items.style-2 .news-image {
    position: relative;
  }
  .news-card-items.style-2 .news-image .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: initial;
  }
  .news-card-items.style-2 .news-content {
    margin: 0;
  }
  .news-card-items.style-2 .news-content ul li {
    font-size: 16px;
  }
  .news-card-items.style-3 {
    padding-bottom: 0;
    background-color: var(--white-color);
    box-shadow: none;
  }
  .news-card-items.style-3 .news-image {
    padding: 15px 15px 0 15px;
  }
  .news-card-items.style-3 .news-image .post-date {
    left: 30px;
    top: 30px;
  }
  .news-card-items.style-3 .content {
    box-shadow: none;
  }
  
  .news-standard-wrapper .news-standard-items {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .news-standard-wrapper .news-standard-items:not(:last-child) {
    margin-bottom: 20px;
  }
  .news-standard-wrapper .news-standard-items .news-thumb {
    position: relative;
  }
  .news-standard-wrapper .news-standard-items .news-thumb .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    width: 59px;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .news-standard-wrapper .news-standard-items .news-thumb .post-date h3 {
    color: var(--white-color);
    font-family: var(--title-font);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
  }
  .news-standard-wrapper .news-standard-items .news-thumb .post-date h3 span {
    color: var(--white-color);
    font-family: var(--title-font);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .news-standard-wrapper .news-standard-items .news-content {
    margin-top: 20px;
    position: relative;
    z-index: 9;
  }
  .news-standard-wrapper .news-standard-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 7px;
    list-style-type: none;
    padding-left: 0;
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .news-standard-wrapper .news-standard-items .news-content ul {
      gap: 20px;
    }
  }
  .news-standard-wrapper .news-standard-items .news-content ul li {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .news-standard-wrapper .news-standard-items .news-content ul li i {
    color: var(--theme-color);
    margin-right: 5px;
  }
  .news-standard-wrapper .news-standard-items .news-content h3 {
    margin-bottom: 10px;
  }
  .news-standard-wrapper .news-standard-items .news-content h3 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .news-standard-wrapper .news-standard-items .news-content h3 a:hover {
    color: var(--theme-color2);
  }
  .news-standard-wrapper .news-standard-items .news-content a i {
    margin-left: 5px;
  }
  
  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 400px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
      height: 400px;
    }
  }
  .news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    padding-left: 0;
    list-style-type: none;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
    font-size: 14px;
    font-weight: 500;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list li i, .news-details-area .blog-post-details .single-blog-post .post-content .post-list li img {
    color: var(--theme-color);
    margin-right: 5px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
      font-size: 24px;
    }
  }
  .news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme-color);
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme-color);
    padding: 40px;
    background-color: var(--gray-color);
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    max-width: 650px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
  }
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-flex;
    padding: 10px 16px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-transform: capitalize;
    background: var(--white-color);
    margin-right: 5px;
    margin-bottom: 10px;
    border: none;
    border: 1px solid #E6E5E5;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
      margin-bottom: 5px;
    }
  }
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color) !important;
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--body-color);
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme-color);
  }
  .news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
  }
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 0px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
      margin-bottom: 20px;
    }
  }
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 500;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
    margin-bottom: 0;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
      font-size: 28px;
    }
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid var(--border-color);
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
      flex-wrap: wrap;
      gap: 20px;
    }
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 0;
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 a:hover {
    color: var(--theme-color2);
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .btn a {
    display: inline-flex;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .btn a:hover {
    background: var(--title-color);
    color: var(--white-color);
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--white-color);
    color: var(--theme-color);
  }
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }
  .news-details-area .blog-post-details .comment-form-wrap .form-clt input,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    font-weight: 500;
  }
  .news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--body-color);
  }
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
  }
  
  /*------------------- 4.6. Hero Area  -------------------*/
  /*----------------------------------------------
 
  
  /*------------------- 4.7. Popup Search  -------------------*/
  /*----------------------------------------------
      # Popup Search style here
  ----------------------------------------------*/
  .popup-search-box {
    position: fixed;
    top: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all ease 0.4s;
  }
  .popup-search-box button.searchClose {
    width: 50px;
    height: 50px;
    line-height: 52px;
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: var(--theme-color);
    font-size: 22px;
    border-radius: 10px;
    transform: rotate(0);
    transition: all ease 0.4s;
    color: var(--white-color);
    border: 0;
  }
  .popup-search-box button.searchClose:hover {
    color: var(--body-color);
    background-color: #fff;
    border-color: transparent;
    border-color: transparent;
    transform: rotate(90deg);
  }
  .popup-search-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    padding-bottom: 40px;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform ease 0.4s;
    /* Large devices */
  }
  @media (max-width: 1199px) {
    .popup-search-box form {
      max-width: 600px;
    }
  }
  .popup-search-box form input {
    font-size: 18px;
    height: 70px;
    width: 100%;
    border: none;
    background-color: var(--white-color);
    border: 2px solid var(--theme-color);
    padding: 0 80px 0 30px;
    color: var(--title-color);
    border-radius: 50px;
  }
  .popup-search-box form input::-moz-placeholder {
    color: var(--title-color);
  }
  .popup-search-box form input::-webkit-input-placeholder {
    color: var(--title-color);
  }
  .popup-search-box form input:-ms-input-placeholder {
    color: var(--title-color);
  }
  .popup-search-box form input::placeholder {
    color: var(--title-color);
  }
  .popup-search-box form button {
    position: absolute;
    top: 0px;
    background-color: transparent;
    border: none;
    color: var(--theme-color);
    font-size: 24px;
    right: 12px;
    cursor: pointer;
    width: 70px;
    height: 70px;
    transition: all ease 0.4s;
    transform: scale(1.001);
  }
  .popup-search-box form button:hover {
    transform: scale(1.1);
  }
  .popup-search-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    height: 100%;
    transition: all ease 0.4s;
    border-radius: 0;
  }
  .popup-search-box.show form {
    transition-delay: 0.5s;
    transform: translate(-50%, -50%) scale(1);
  }
  
  /*------------------- 4.8. Popup Side Menu  -------------------*/
  /*----------------------------------------------
      # Sidemenu style here
  ----------------------------------------------*/
  .sidemenu-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;
  }
  .sidemenu-wrapper .closeButton {
    display: inline-block;
    border: 2px solid;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white-color);
    border-radius: 50%;
    transform: rotate(0);
    transition: all ease 0.4s;
  }
  .sidemenu-wrapper .closeButton:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
    transform: rotate(90deg);
  }
  .sidemenu-wrapper .sidemenu-content {
    background-color: var(--white-color);
    width: 450px;
    margin-left: auto;
    padding: 80px 30px;
    height: 100%;
    overflow-y: scroll;
    position: relative;
    right: -500px;
    cursor: auto;
    transition-delay: 1s;
    transition: right ease 1s;
  }
  .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
  }
  .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 2px;
    background-color: #F5F5F5;
  }
  .sidemenu-wrapper .widget {
    padding: 0;
    border: none;
    background-color: transparent;
    margin-bottom: 40px;
  }
  .sidemenu-wrapper .newsletter-form .as-btn:hover {
    background: var(--theme-color2);
  }
  .sidemenu-wrapper .newsletter-form .as-btn:hover:before, .sidemenu-wrapper .newsletter-form .as-btn:hover::after {
    display: none;
  }
  .sidemenu-wrapper.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: all ease 0.8s;
  }
  .sidemenu-wrapper.show .sidemenu-content {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .sidemenu-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.8s;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    -ms-transition: all ease 0.8s;
    -o-transition: all ease 0.8s;
  }
  .sidemenu-wrapper .gt-social a {
    box-shadow: none;
  }
  .sidemenu-wrapper .closeButton {
    display: inline-block;
    border: 2px solid;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 24px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white-color);
    border-radius: 50%;
    transform: rotate(0);
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
  }
  .sidemenu-wrapper .closeButton:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
    transform: rotate(90deg);
  }
  .sidemenu-wrapper .sidemenu-content {
    background-color: var(--white-color);
    width: 450px;
    margin-left: auto;
    padding: 80px 30px;
    height: 100%;
    overflow: scroll;
    position: relative;
    right: -500px;
    cursor: auto;
    transition-delay: 1s;
    transition: right ease 1s;
    -webkit-transition: right ease 1s;
    -moz-transition: right ease 1s;
    -ms-transition: right ease 1s;
    -o-transition: right ease 1s;
  }
  .sidemenu-wrapper .sidemenu-content:-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
  }
  .sidemenu-wrapper .sidemenu-content:-webkit-scrollbar {
    width: 2px;
    background-color: #f5f5f5;
  }
  .sidemenu-wrapper .widget {
    padding: 0;
    border: none;
    background-color: transparent;
    margin-bottom: 40px;
  }
  .sidemenu-wrapper .recent-post .post-title {
    color: var(--title-color);
  }
  .sidemenu-wrapper .widget_title {
    color: var(--title-color);
  }
  .sidemenu-wrapper .newsletter-widget .newsletter-form {
    max-width: none;
  }
  .sidemenu-wrapper .newsletter-widget .newsletter-form .form-group {
    position: relative;
  }
  .sidemenu-wrapper .newsletter-widget .newsletter-form .form-group button {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 80px;
  }
  .sidemenu-wrapper .gt-widget-contact .info-box_text .icon img {
    filter: none;
  }
  .sidemenu-wrapper.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: all ease 0.8s;
  }
  .sidemenu-wrapper.show .sidemenu-content {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  
  /* Extra small devices */
  @media (max-width: 575px) {
    .sidemenu-wrapper {
      background: transparent;
    }
    .sidemenu-wrapper .sidemenu-content {
      width: 100%;
    }
    .sidemenu-wrapper .sidemenu-content .widget_shopping_cart .gt-btn {
      margin-bottom: 10px;
    }
  }
  .info-box {
    display: flex;
    margin-bottom: 11px;
  }
  .info-box:last-child {
    margin-bottom: 0;
  }
  
  .info-box_icon {
    font-size: 16px;
    background-color: transparent;
    color: var(--theme-color);
    text-align: center;
    margin-right: 10px;
  }
  
  .info-box_text {
    display: block;
    color: var(--body-color);
    margin-top: -0.45em;
    margin-bottom: -0.45em;
    align-self: center;
  }
  
  .info-box_link {
    display: inline-block;
    color: var(--body-color);
  }
  .info-box_link:hover {
    color: var(--theme-color);
  }
  
  .gt-widget-about {
    max-width: 354px;
    margin-bottom: -0.5em;
  }
  .gt-widget-about .about-logo {
    margin-bottom: 35px;
  }
  .gt-widget-about .text {
    margin-bottom: 30px;
    margin-top: -0.5em;
    color: var(--title-color);
  }
  
  .gt-widget-contact {
    max-width: 260px;
    margin-bottom: -0.4em;
  }
  .gt-widget-contact .info-box_text {
    line-height: 1.75em;
    margin-top: 0;
    display: flex;
    gap: 16px;
  }
  .gt-widget-contact .info-box_text:not(:last-child) {
    margin-bottom: 18px;
  }
  .gt-widget-contact .info-box_text .icon {
    color: var(--body-color);
    flex: none;
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid var(--body-color);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gt-widget-contact .info-box_text .icon img {
    filter: contrast(0) brightness(2) opacity(0.7);
  }
  .gt-widget-contact .info-box_text .details {
    margin-top: -0.3em;
  }
  .gt-widget-contact .info-box_text .details p {
    margin-bottom: 0;
  }
  .gt-widget-contact .info-box_text a {
    color: inherit;
  }
  .gt-widget-contact .info-box_text a:hover {
    color: var(--theme-color2);
  }
  
  /*------------------- 4.9. Contact  -------------------*/
  /*----------------------------------------------
      # Contact style here
  ----------------------------------------------*/
  .contact-wrap.style1 {
    position: relative;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  }
  .contact-wrap.style1 .shape1_1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .contact-wrap.style1 .shape1_2 {
    position: absolute;
    bottom: 0;
    left: 23px;
  }
  
  .contact-form.style1 .title-box {
    margin: 0;
  }
  .contact-form.style1 .title-box .section-title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
  }
  .contact-form.style1 form {
    padding: 40px 60px 61px 60px;
    border-radius: 16px 0px 0px 0px;
    background: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    -webkit-border-radius: 16px 0px 0px 0px;
    -moz-border-radius: 16px 0px 0px 0px;
    -ms-border-radius: 16px 0px 0px 0px;
    -o-border-radius: 16px 0px 0px 0px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .contact-form.style1 form {
      padding: 40px 30px 61px 30px;
    }
  }
  .contact-form.style1 .form-clt .contact__from-input label,
  .contact-form.style1 .form-clt .contact__from-input span {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
  }
  .contact-form.style1 .form-clt .contact__from-input input {
    display: flex;
    height: 56px;
    padding: 25px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #F5F5F5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .contact-form.style1 .form-clt .contact__select {
    position: relative;
  }
  .contact-form.style1 .form-clt .contact__select select {
    display: flex;
    height: 56px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #F5F5F5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 0 20px;
    line-height: 60px;
    width: 100%;
    border: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    color: rgb(120, 120, 120);
    z-index: 2;
  }
  .contact-form.style1 .form-clt .contact__select:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--theme-color);
    right: 15px;
    cursor: pointer;
    z-index: 6;
  }
  .contact-form.style1 .form-clt textarea {
    display: flex;
    height: 100px;
    padding: 25px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #F5F5F5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-top: 5px;
  }
  .contact-form.style1 button {
    margin-top: 25px;
  }
  
  .contact-map {
    margin-right: -370px;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .contact-map {
      margin-right: 0;
      margin-top: 30px;
      margin-bottom: 80px;
    }
  }
  .contact-map iframe {
    width: 100%;
    height: 727px;
    margin-bottom: -8px;
  }
  
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 {
    padding: 40px 40px 10px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border-radius: 16px 16px 0px 0px;
    -webkit-border-radius: 16px 16px 0px 0px;
    -moz-border-radius: 16px 16px 0px 0px;
    -ms-border-radius: 16px 16px 0px 0px;
    -o-border-radius: 16px 16px 0px 0px;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
      flex-wrap: wrap;
    }
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../../assets/img/shape/circle.png");
    animation: rotate360 10s linear infinite;
    -webkit-animation: rotate360 10s linear infinite;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content p {
    color: var(--white-color);
    margin-bottom: 5px;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
    font-size: 24px;
    color: var(--white-color);
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
    color: var(--white-color);
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
    border: none !important;
  }
  .contact-wrapper-2 .contact-left-items .video-image {
    position: relative;
  }
  .contact-wrapper-2 .contact-left-items .video-image img {
    width: 100%;
    position: relative;
  }
  .contact-wrapper-2 .contact-left-items .video-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .contact-wrapper-2 .contact-content {
    margin-left: 40px;
    /* Large devices */
  }
  @media (max-width: 1199px) {
    .contact-wrapper-2 .contact-content {
      margin-left: 0;
    }
  }
  .contact-wrapper-2 .contact-content h2 {
    margin-bottom: 10px;
  }
  .contact-wrapper-2 .contact-content .contact-form-items {
    margin-top: 30px;
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
    color: var(--title-color);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    display: inline-block;
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    border: 1px solid var(--border-color);
    color: var(--body-color);
    padding: 18px 20px;
    border-radius: 5px;
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--body-color);
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
    height: 200px;
    padding: 18px 20px;
  }
  
  .map-items .googlemap iframe {
    width: 100%;
    height: 600px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .map-items .googlemap iframe {
      height: 400px;
    }
  }
  
  /*------------------- 4.10. About  -------------------*/
  /*----------------------------------------------
      # About style here
  ----------------------------------------------*/
  .about-area .shape3_1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .about-area .shape3_2 {
    position: absolute;
    bottom: 120px;
    right: 0;
  }
  
  .about-wrap.style1 {
    position: relative;
  }
  .about-wrap.style1 .shape1_1 {
    position: absolute;
    bottom: 76px;
    left: 0;
    z-index: 1;
  }
  .about-wrap.style1 .shape1_2 {
    position: absolute;
    bottom: 205px;
    right: 0;
    z-index: 1;
  }
  .about-wrap.style2 {
    position: relative;
  }
  .about-wrap.style2 .shape1_1 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .about-wrap.style2 .shape1_2 {
    position: absolute;
    bottom: 120px;
    right: 0;
  }
  .about-wrap.style5 {
    max-width: 1620px;
    margin: 0 auto;
    background-color: #EBEDFF;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  
  .about-wrapper.style1 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    z-index: 5;
    background-color: var(--white-color);
    /* Medium devices */
    /* Small devices */
  }
  .about-wrapper.style1 .about-thumb-box {
    position: relative;
/*     background-color: blue;
    width: 300px;
    height: 300px; */
  }
  .about-wrapper.style1 .about-thumb-box.about-thumb1 {
    display: inline-block;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .about-wrapper.style1 .about-thumb-box.about-thumb1 img {
    /* width: 559px;
    height: 511px; */
    /* width: 300px;
    height: 300px; */
    object-fit: cover;
  }

  .about-wrapper.style1 .about-thumb-box.about-thumb2 {
    position: absolute;
    bottom: 39px;
    right: -63px;
    display: inline-block;
    border: 7px solid var(--white-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .about-wrapper.style1 .about-thumb-box.about-thumb2 .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .about-wrapper.style1 .about-thumb-box.counter-box {
    position: absolute;
    top: 25px;
    left: -50px;
  }
  .about-wrapper.style1 .about-thumb-box.line {
    position: absolute;
    top: 0;
    right: 0;
    width: 19px;
    height: 199px;
    border-radius: 8px;
    background: var(--theme-color);
  }
  .about-wrapper.style1 .about-content .fancy-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
  }
  .about-wrapper.style1 .about-content .profile-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .about-wrapper.style1 .about-content .profile-wrapper .fancy-box_icon {
    padding: 0;
  }
  @media (max-width: 991px) {
    .about-wrapper.style1 {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style1 .about-thumb-box.about-thumb2 {
      bottom: 39px;
      right: 150px;
    }
    .about-wrapper.style1 .about-thumb-box.line {
      top: 0px;
      right: 180px;
    }
  }
  @media (max-width: 767px) {
    .about-wrapper.style1 {
      gap: 80px;
    }
    .about-wrapper.style1 .about-thumb-box {
      position: relative;
    }
    .about-wrapper.style1 .about-thumb-box.about-thumb2 {
      position: absolute;
      bottom: 39px;
      right: 0px;
    }
    .about-wrapper.style1 .about-thumb-box.line {
      position: absolute;
      top: 0;
      right: 0;
      display: none;
    }
    .about-wrapper.style1 .about-content .fancy-box-wrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 25px;
    }
    .about-wrapper.style1 .about-content .profile-wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style1 .about-content .profile-wrapper .gt-btn {
      order: 2;
    }
    .about-wrapper.style1 .about-content .profile-wrapper .fancy-box {
      order: 1;
    }
  }
  .about-wrapper.style2 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
  }
  .about-wrapper.style2 .about-thumb-box {
    position: relative;
  }
  .about-wrapper.style2 .about-thumb-box.about-thumb1 {
    display: inline-block;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .about-wrapper.style2 .about-thumb-box.about-thumb1 img {
    /* width: 559px;
    height: 511px; */
    width: 300px;
    height: 300px;
    object-fit: cover;
  }
  .about-wrapper.style2 .about-content .title-area .text {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--smoke-color2);
  }
  .about-wrapper.style2 .about-content .fancy-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 33px;
    margin-bottom: 40px;
  }
  .about-wrapper.style2 .about-content .fancy-box-wrapper .fancy-box .checklist ul:last-child {
    margin-bottom: 0;
  }
  .about-wrapper.style2 .about-content .profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
  }
  .about-wrapper.style2 .about-content .profile-wrapper .fancy-box_icon {
    padding: 0;
  }
  @media (max-width: 1199px) {
    .about-wrapper.style2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media (max-width: 991px) {
    .about-wrapper.style2 {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style2 .about-thumb-box.about-thumb2 {
      bottom: 39px;
      right: 150px;
    }
  }
  @media (max-width: 767px) {
    .about-wrapper.style2 {
      gap: 80px;
    }
    .about-wrapper.style2 .about-thumb-box {
      position: relative;
    }
    .about-wrapper.style2 .about-thumb-box.about-thumb2 {
      position: absolute;
      bottom: 39px;
      right: 0px;
    }
    .about-wrapper.style2 .about-content .fancy-box-wrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 25px;
    }
    .about-wrapper.style2 .about-content .profile-wrapper {
      flex-direction: column;
    }
    .about-wrapper.style2 .about-content .profile-wrapper .gt-btn {
      display: block;
      width: 100%;
      order: 2;
    }
    .about-wrapper.style2 .about-content .profile-wrapper .fancy-box {
      order: 1;
    }
  }
  .about-wrapper.style3 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    /* Medium devices */
    /* Small devices */
    /* Extra small devices */
  }
  .about-wrapper.style3 .about-thumb-box {
    position: relative;
  }
  .about-wrapper.style3 .about-thumb-box.thumb-bg {
    display: inline-block;
    position: absolute;
    bottom: 52px;
    right: 0;
    z-index: -1;
  }
  .about-wrapper.style3 .about-thumb-box.about-thumb1 {
    display: inline-block;
    position: relative;
    bottom: 52px;
    right: -160px;
    z-index: 2;
  }
  .about-wrapper.style3 .about-thumb-box.about-thumb2 {
    display: inline-block;
    position: absolute;
    bottom: -4px;
    left: 41px;
    z-index: 3;
  }
  .about-wrapper.style3 .about-thumb-box.about-thumb3 {
    display: inline-block;
    position: absolute;
    top: 30px;
    right: -50px;
    z-index: 1;
  }
  .about-wrapper.style3 .about-thumb-box.about-icon1 {
    position: absolute;
    top: 129px;
    right: 80px;
  }
  .about-wrapper.style3 .about-thumb-box.about-icon2 {
    position: absolute;
    top: 225px;
    left: 104px;
  }
  .about-wrapper.style3 .about-thumb-box.about-icon3 {
    position: absolute;
    top: 240px;
    left: 124px;
  }
  .about-wrapper.style3 .about-thumb-box.about-icon4 {
    position: absolute;
    bottom: 85px;
    right: 25px;
  }
  .about-wrapper.style3 .about-thumb-box.about-icon5 {
    position: absolute;
    top: 90px;
    left: 157px;
  }
  .about-wrapper.style3 .about-content .title-area {
    max-width: 613px;
  }
  .about-wrapper.style3 .about-content .text-title {
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
  }
  .about-wrapper.style3 .about-content .fancy-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
  }
  .about-wrapper.style3 .about-content .profile-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .about-wrapper.style3 .about-content .profile-wrapper .fancy-box_icon {
    padding: 0;
  }
  @media (max-width: 991px) {
    .about-wrapper.style3 {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style3 .about-thumb-box.about-thumb1 {
      display: inline-block;
      position: relative;
      bottom: 52px;
      right: -180px;
    }
  }
  @media (max-width: 767px) {
    .about-wrapper.style3 {
      gap: 80px;
    }
    .about-wrapper.style3 .about-thumb-box.about-thumb1 {
      display: inline-block;
      position: relative;
      bottom: 52px;
      right: -130px;
    }
    .about-wrapper.style3 .about-content .fancy-box-wrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 25px;
    }
    .about-wrapper.style3 .about-content .profile-wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style3 .about-content .profile-wrapper .gt-btn {
      order: 2;
    }
    .about-wrapper.style3 .about-content .profile-wrapper .fancy-box {
      order: 1;
    }
  }
  @media (max-width: 575px) {
    .about-wrapper.style3 {
      gap: 80px;
    }
    .about-wrapper.style3 .about-thumb-box.about-thumb1 {
      display: inline-block;
      position: relative;
      bottom: 52px;
      right: -25px;
    }
  }
  .about-wrapper.style4 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    /* Medium devices */
    /* Small devices */
  }
  .about-wrapper.style4 .about-thumb-box {
    position: relative;
  }
  .about-wrapper.style4 .about-thumb-box.about-thumb1 {
    display: inline-block;
    position: absolute;
    bottom: 52px;
    right: 100px;
  }
  .about-wrapper.style4 .about-thumb-box.about-thumb2 {
    display: inline-block;
    position: relative;
    bottom: -4px;
    right: -110px;
  }
  .about-wrapper.style4 .about-thumb-box.about-thumb3 {
    display: inline-block;
    position: absolute;
    bottom: -4px;
    left: 250px;
  }
  .about-wrapper.style4 .about-thumb-box.about-icon1 {
    position: absolute;
    top: 114px;
    right: 155px;
  }
  .about-wrapper.style4 .about-thumb-box.about-icon2 {
    position: absolute;
    top: 139px;
    right: 141px;
  }
  .about-wrapper.style4 .about-thumb-box.about-icon6 {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: -5px;
  }
  .about-wrapper.style4 .about-content {
    /* Small devices */
  }
  .about-wrapper.style4 .about-content .title-area {
    max-width: 613px;
  }
  .about-wrapper.style4 .about-content .text-title {
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
  }
  .about-wrapper.style4 .about-content .fancy-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
  }
  .about-wrapper.style4 .about-content .profile-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .about-wrapper.style4 .about-content .profile-wrapper .fancy-box_icon {
    padding: 0;
  }
  @media (max-width: 767px) {
    .about-wrapper.style4 .about-content .checklist {
      margin-bottom: 0;
    }
  }
  @media (max-width: 991px) {
    .about-wrapper.style4 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media (max-width: 767px) {
    .about-wrapper.style4 {
      gap: 80px;
    }
    .about-wrapper.style4 .about-content .fancy-box-wrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 25px;
    }
    .about-wrapper.style4 .about-content .profile-wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style4 .about-content .profile-wrapper .gt-btn {
      order: 2;
    }
    .about-wrapper.style4 .about-content .profile-wrapper .fancy-box {
      order: 1;
    }
  }
  .about-wrapper.style5 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    /* Large devices */
  }
  .about-wrapper.style5 .about-thumb-box {
    position: relative;
  }
  .about-wrapper.style5 .about-thumb-box.about-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .about-wrapper.style5 .about-thumb-box.shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .about-wrapper.style5 .about-thumb-box.thumb1 {
    position: relative;
    bottom: 0;
    right: -209px;
    z-index: 2;
  }
  .about-wrapper.style5 .about-thumb-box.thumb2 {
    position: absolute;
    bottom: 40px;
    right: 263px;
    z-index: 3;
  }
  .about-wrapper.style5 .about-thumb-box.thumb3 {
    position: absolute;
    bottom: 320px;
    right: 16px;
    z-index: 4;
  }
  .about-wrapper.style5 .about-thumb-box.icon {
    position: absolute;
    bottom: 280px;
    left: 100px;
    z-index: 1;
  }
  .about-wrapper.style5 .about-thumb-box.icon2 {
    position: absolute;
    bottom: 41px;
    right: 24px;
    z-index: 1;
  }
  .about-wrapper.style5 .about-thumb-box.icon3 {
    position: absolute;
    bottom: 26px;
    right: 7px;
    z-index: 1;
  }
  @media (max-width: 1199px) {
    .about-wrapper.style5 {
      grid-template-columns: repeat(1, 1fr);
    }
    .about-wrapper.style5 .about-content {
      order: 2;
    }
  }
  
  /*------------------- 4.11. Team  -------------------*/
  /*----------------------------------------------
      # Team style here
  ----------------------------------------------*/
  .team-card-wrapper.style1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Large devices */
    /* Small devices */
  }
  @media (max-width: 1199px) {
    .team-card-wrapper.style1 {
      grid-template-columns: repeat(2, 1fr);
    }
    .team-card-wrapper.style1 .team-card.style1 {
      margin-bottom: 100px;
    }
    .team-card-wrapper.style1 .team-card.style1:last-child {
      margin-bottom: 0;
    }
  }
  @media (max-width: 767px) {
    .team-card-wrapper.style1 {
      grid-template-columns: repeat(1, 1fr);
      place-items: center;
    }
  }
  
  .team-wrap {
    position: relative;
  }
  .team-wrap.style1 .shape1_1 {
    position: absolute;
    top: -220px;
    left: 0;
  }
  .team-wrap.style1 .shape1_2 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .team-wrap.style2 {
    margin-bottom: -1.5em;
  }
  .team-wrap.style2 .shape1_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .team-wrap.style2 .shape1_2 {
    position: absolute;
    bottom: 25px;
    right: 0;
  }
  
  .team-card.style1 {
    position: relative;
    max-width: 370px;
    height: 343px;
    background-color: var(--smoke-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .team-card.style1 .team-thumb {
    position: relative;
    bottom: 110px;
    left: 39px;
  }
  .team-card.style1 .team-thumb img {
    position: relative;
    width: 264px;
    height: 452px;
    object-fit: cover;
    z-index: 3;
  }
  @media (max-width: 330px) {
    .team-card.style1 .team-thumb {
      position: relative;
      bottom: 110px;
      left: 17px;
    }
  }
  .team-card.style1 .profile-box {
    position: absolute;
    display: inline-block;
    bottom: 40px;
    left: 30px;
    border-radius: 80px;
    background: var(--white-color);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    z-index: 5;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    transition: background 1s ease-in-out;
    -webkit-transition: background 1s ease-in-out;
    -moz-transition: background 1s ease-in-out;
    -ms-transition: background 1s ease-in-out;
    -o-transition: background 1s ease-in-out;
  }
  .team-card.style1 .profile-box .title {
    padding: 10px 80px 0;
    text-align: center;
    margin-bottom: 0;
  }
  .team-card.style1 .profile-box .title a {
    color: var(--title-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .team-card.style1 .profile-box .text {
    padding: 0px 80px 10px;
    color: var(--body-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-transform: capitalize;
  }
  .team-card.style1 .profile-box:hover .title > a {
    color: var(--theme-color2);
  }
  @media (max-width: 330px) {
    .team-card.style1 .profile-box {
      bottom: 40px;
      left: 18px;
    }
  }
  .team-card.style1 .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 370px;
    height: 343px;
    max-height: 0;
    overflow: hidden;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -webkit-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -moz-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -ms-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -o-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
  }
  .team-card.style1 .bg img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .team-card.style1:hover {
    background-color: transparent;
  }
  .team-card.style1:hover .bg {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
  }
  .team-card.style2 {
    width: 270px;
    height: 366px;
    margin: 0 auto;
    border-radius: 16px;
    background: var(--white-color);
    border-bottom: 6px solid transparent;
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 0.3s ease 0s;
  }
  .team-card.style2 .team-thumb {
    position: relative;
    padding: 12px 12px 0px;
    height: 241px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .team-card.style2 .team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .team-card.style2 .team-thumb .social-profile {
    position: absolute;
    right: 25px;
    top: 25px;
    height: 32px;
    content: "";
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    z-index: 5;
  }
  .team-card.style2 .team-thumb .social-profile ul {
    padding-left: 0;
    transform: translateY(0px);
    transition: all 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
    list-style-type: none;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  .team-card.style2 .team-thumb .social-profile ul li {
    margin-bottom: 6px;
  }
  .team-card.style2 .team-thumb .social-profile ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    display: block;
    background-color: var(--theme-color);
    color: var(--white-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
  }
  .team-card.style2 .team-thumb .social-profile ul li a:hover {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  .team-card.style2 .team-thumb .social-profile .plus-btn {
    position: relative;
    z-index: 4;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    display: inline-block;
    background: var(--theme-color);
    color: var(--white-color);
    transition: all 0.3s ease 0s;
    border-radius: 50%;
  }
  .team-card.style2 .team-thumb .social-profile .plus-btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  .team-card.style2 .team-thumb .social-profile:hover {
    height: auto;
  }
  .team-card.style2 .team-thumb .social-profile:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
  }
  .team-card.style2 .team-content {
    padding: 20px 30px 30px;
    position: relative;
    z-index: 9;
    transition: all 0.3s ease 0s;
  }
  .team-card.style2 .team-content h3 {
    margin-bottom: 5px;
  }
  .team-card.style2 .team-content h3 a {
    color: var(--title-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .team-card.style2 .team-content p {
    color: var(--body-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
  }
  .team-card.style2:hover {
    border-bottom: 6px solid var(--theme-color2);
  }
  .team-card.style2:hover .team-image {
    position: relative;
  }
  .team-card.style2:hover .team-image .social-profile .plus-btn {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  
  /*----------------------------------------------
      # Team Extra style here
  ----------------------------------------------*/
  .team-details-wrap {
    padding: 30px;
    margin-bottom: 60px;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .team-details-wrap .team-details-content .details-info {
    /* Small devices */
  }
  .team-details-wrap .team-details-content .details-info .profile h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    margin-bottom: 5px;
  }
  .team-details-wrap .team-details-content .details-info .profile span {
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.3px;
    text-transform: capitalize;
  }
  .team-details-wrap .team-details-content .details-info .gt-social a {
    border-radius: 100px;
    color: var(--theme-color);
    background: #F5F5F5;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .team-details-wrap .team-details-content .details-info .gt-social a:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
  }
  @media (max-width: 767px) {
    .team-details-wrap .team-details-content .details-info {
      flex-direction: column;
    }
    .team-details-wrap .team-details-content .details-info .profile {
      margin-bottom: 10px;
    }
  }
  .team-details-wrap .team-details-content .info-wrapper {
    gap: 30px;
    /* Medium devices */
  }
  .team-details-wrap .team-details-content .info-wrapper .checklist {
    margin-top: 30px;
    padding-top: 30px;
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
  }
  .team-details-wrap .team-details-content .info-wrapper .checklist ul {
    padding-left: 0;
    margin-bottom: 0;
  }
  .team-details-wrap .team-details-content .info-wrapper .checklist ul li i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 24px;
    color: var(--theme-color);
    background-color: #F3EBFE;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
  }
  @media (max-width: 991px) {
    .team-details-wrap .team-details-content .info-wrapper {
      flex-direction: column;
    }
    .team-details-wrap .team-details-content .info-wrapper .checklist {
      margin-top: 0;
    }
    .team-details-wrap .team-details-content .info-wrapper .checklist:first-child {
      margin-top: 30px;
    }
  }
  
  .team-simple-history {
    padding-top: 60px;
    background-color: #F5F5F5;
  }
  .team-simple-history .title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.48px;
    text-transform: capitalize;
  }
  .team-simple-history .skills {
    padding: 28px 40px 70px;
    border-radius: 16px;
    background-color: var(--white-color);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .team-simple-history .skills > .title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    margin-bottom: 30px;
  }
  .team-simple-history .skills .progress-wrap .progress-meta {
    margin-bottom: 5px;
  }
  .team-simple-history .skills .progress-wrap .progress-meta .title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
  }
  .team-simple-history .skills .progress-wrap .progress-meta .percentage {
    color: var(--theme-color);
  }
  .team-simple-history .skills .progress-wrap .progress-container {
    height: 15px;
  }
  .team-simple-history .skills .progress-wrap .progress-container .progress-bar {
    height: 15px;
  }
  
  /*------------------- 4.12. Testimonial  -------------------*/
 
/*  */
.back-clients {
  padding: 0 0 175px;
}
.back-clients .client-slider {
  margin: 0 -10px 0 0;
  padding: 0;
  list-style: none;
}
.back-clients .client-slider .single-client {
  position: relative;
  background: #ffffff;
  padding: 30px 40px 40px;
  border-radius: 10px;
  border: 1px solid #e7e9ef;
  transition: all 0.5s ease 0s;
  overflow: hidden;
}
.back-clients .client-slider .single-client .client-title {
  color: #0d1e50;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
}
.back-clients .client-slider .single-client .client-content {
  color: #54565c;
  line-height: 30px;
  font-size: 18px;
}
.back-clients .client-slider .single-client .client-bottom {
  display: flex;
  align-items: center;
  padding-top: 31px;
}
.back-clients .client-slider .single-client .client-bottom .client-author-name {
  color: #7c7e84;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  padding-left: 20px;
}
.back-clients .client-slider .single-client .client-bottom .client-author-name em {
  font-style: normal;
  font-weight: 700;
  color: #0d1e50;
  display: block;
  font-size: 18px;
  line-height: 28px;
}
.back-clients .client-slider .single-client .client-bottom .client-author {
  padding: 0px;
  max-width: 50px;
}
.back-clients .client-slider .single-client:before {
  content: '';
  /* background: url(localhost:8080/assets/images/clients/quote.png); */
  width: 55px;
  height: 30px;
  position: absolute;
  top: -5px;
  right: 20px;
  opacity: 0.2;
  transition: all 0.5s ease 0s;
}
.back-clients .client-slider .single-client:hover {
  border-color: transparent;
  box-shadow: 0px 30px 40px 0px rgba(13, 30, 80, 0.1);
}
.back-clients .client-slider .single-client:hover:before {
  opacity: 1;
}
.back-clients .client-slider .center .single-client {
  border-color: transparent;
  box-shadow: 0px 30px 40px 0px rgba(13, 30, 80, 0.1);
}
.back-clients .client-slider .center .single-client:before {
  opacity: 1;
}
.back-clients .client-slider .owl-dots {
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
}
.back-clients .client-slider .owl-dots .owl-dot span {
  border-color: #e1e3ec;
}
.back-clients .client-slider .owl-dots .owl-dot.active span {
  /* border-color: #f84e77;
  background: #f84e77; */
  border-color: red;
  background: red;
}
.back-clients .client-slider .owl-stage-outer {
  margin: -10px -10px -60px;
  padding: 10px 10px 60px;
}

.owl-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1170px;
}
.owl-controls .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
}
.owl-controls .owl-dots .owl-dot {
  display: inline-block;
  margin-right: 10px;
}
.owl-controls .owl-dots .owl-dot span {
  display: inline-block;
  height: 15px;
  width: 15px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transition: all 0.5s ease 0s;
}
.owl-controls .owl-dots .owl-dot.active span {
  background: #ffffff;
}
.owl-controls .owl-dots .owl-dot:last-child {
  border-right: none;
}
.owl-controls .owl-nav {
  display: none;
}

/*  */

/*  */
.text-center {
  text-align: center;
}
  
  
  
  /*------------------- 4.13. Counter  -------------------*/
  /*----------------------------------------------
      # Counter style here
  ----------------------------------------------*/
  .counter-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-content: center;
    place-items: center;
    gap: 35px;
    padding: 80px 66px;
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
    border-right: 14px solid #D1C5FE;
    box-shadow: 14px 0px 0px 0px #D1C5FE inset;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    z-index: 5;
    position: relative;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 1199px) {
    .counter-wrap {
      gap: 0;
      padding: 60px 15px;
    }
    .counter-wrap .counter-box {
      gap: 10px;
    }
  }
  @media (max-width: 991px) {
    .counter-wrap {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .counter-wrap .counter-box {
      gap: 20px;
    }
  }
  @media (max-width: 767px) {
    .counter-wrap {
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
      border-top-right-radius: 200px;
      border-bottom-right-radius: 0px;
      border-top-left-radius: 200px;
      border-bottom-left-radius: 0px;
    }
    .counter-wrap .counter-box {
      gap: 20px;
    }
  }
  .counter-wrap.style2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-content: center;
    place-items: center;
    gap: 35px;
    padding: 80px 66px;
    border-top-right-radius: 500px;
    border-bottom-right-radius: 500px;
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
    border-right: 14px solid rgba(212, 197, 253, 0.9);
    box-shadow: 14px 0px 0px 0px rgba(212, 197, 255, 0.5) inset;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    z-index: 5;
    position: relative;
  }
  
  /*------------------- 4.14. Blog  -------------------*/
  /*----------------------------------------------
      # Blog Extra style here
  ----------------------------------------------*/
  .news-wrapper {
    padding: 0 75px;
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .news-wrapper {
      padding: 0;
    }
  }
  
  .single-news-items {
    margin-top: 30px;
    padding: 40px 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 30px;
    /* Medium Large devices */
    /* Medium devices */
    /* Extra small devices */
  }
  @media (max-width: 1299px) {
    .single-news-items {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 991px) {
    .single-news-items {
      flex-wrap: initial;
    }
  }
  @media (max-width: 575px) {
    .single-news-items {
      flex-wrap: wrap;
    }
  }
  .single-news-items .news-image {
    height: 220px;
    width: 220px;
    flex-basis: 100%;
    position: relative;
  }
  .single-news-items .news-image .post-date {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--white-color);
    padding: 7px 10px;
  }
  .single-news-items .news-image .post-date span {
    color: var(--title-color);
    font-weight: 600;
  }
  .single-news-items .news-content h3 {
    margin-bottom: 10px;
  }
  .single-news-items .news-content h3 a:hover {
    color: var(--theme-color);
  }
  .single-news-items .news-content .theme-btn-2 {
    color: var(--theme-color);
  }
  
  .news-section-3 {
    margin-bottom: -50px;
  }
  
  .news-card-items {
    margin-top: 30px;
  }
  .news-card-items .news-image {
    position: relative;
  }
  .news-card-items .news-image .post-date {
    padding: 12px 24px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: 40px;
    left: 0;
  }
  .news-card-items .news-image .post-date h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--white-color);
  }
  .news-card-items .news-image .post-date h3 span {
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
  }
  .news-card-items .news-content {
    padding: 30px;
    background-color: var(--white-color);
    position: relative;
    z-index: 9;
    margin-right: 40px;
    margin-top: -40px;
  }
  .news-card-items .news-content ul {
    display: flex;
    gap: 50px;
    margin-bottom: 15px;
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .news-card-items .news-content ul {
      gap: 20px;
    }
  }
  .news-card-items .news-content ul li {
    font-size: 14px;
    font-weight: 500;
  }
  .news-card-items .news-content ul li i {
    color: var(--theme-color);
    margin-right: 5px;
  }
  .news-card-items .news-content h3 {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .news-card-items .news-content h3 a:hover {
    color: var(--theme-color);
  }
  .news-card-items.style-2 {
    padding-bottom: 50px;
  }
  .news-card-items.style-2 .news-image {
    position: relative;
  }
  .news-card-items.style-2 .news-image .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: initial;
  }
  .news-card-items.style-2 .news-content {
    margin: 0;
  }
  .news-card-items.style-2 .news-content ul li {
    font-size: 16px;
  }
  .news-card-items.style-3 {
    padding-bottom: 0;
    background-color: var(--white-color);
    box-shadow: none;
  }
  .news-card-items.style-3 .news-image {
    padding: 15px 15px 0 15px;
  }
  .news-card-items.style-3 .news-image .post-date {
    left: 30px;
    top: 30px;
  }
  .news-card-items.style-3 .content {
    box-shadow: none;
  }
  
  .news-standard-wrapper .news-standard-items {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .news-standard-wrapper .news-standard-items:not(:last-child) {
    margin-bottom: 20px;
  }
  .news-standard-wrapper .news-standard-items .news-thumb {
    position: relative;
  }
  .news-standard-wrapper .news-standard-items .news-thumb .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    width: 59px;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .news-standard-wrapper .news-standard-items .news-thumb .post-date h3 {
    color: var(--white-color);
    font-family: var(--title-font);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
  }
  .news-standard-wrapper .news-standard-items .news-thumb .post-date h3 span {
    color: var(--white-color);
    font-family: var(--title-font);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .news-standard-wrapper .news-standard-items .news-content {
    margin-top: 20px;
    position: relative;
    z-index: 9;
  }
  .news-standard-wrapper .news-standard-items .news-content ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 7px;
    list-style-type: none;
    padding-left: 0;
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .news-standard-wrapper .news-standard-items .news-content ul {
      gap: 20px;
    }
  }
  .news-standard-wrapper .news-standard-items .news-content ul li {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
  .news-standard-wrapper .news-standard-items .news-content ul li i {
    color: var(--theme-color);
    margin-right: 5px;
  }
  .news-standard-wrapper .news-standard-items .news-content h3 {
    margin-bottom: 10px;
  }
  .news-standard-wrapper .news-standard-items .news-content h3 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .news-standard-wrapper .news-standard-items .news-content h3 a:hover {
    color: var(--theme-color2);
  }
  .news-standard-wrapper .news-standard-items .news-content a i {
    margin-left: 5px;
  }
  
  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 400px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
      height: 400px;
    }
  }
  .news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    padding-left: 0;
    list-style-type: none;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
    font-size: 14px;
    font-weight: 500;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list li i, .news-details-area .blog-post-details .single-blog-post .post-content .post-list li img {
    color: var(--theme-color);
    margin-right: 5px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
      font-size: 24px;
    }
  }
  .news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme-color);
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme-color);
    padding: 40px;
    background-color: var(--gray-color);
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    max-width: 650px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
  }
  .news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
  }
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-flex;
    padding: 10px 16px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-transform: capitalize;
    background: var(--white-color);
    margin-right: 5px;
    margin-bottom: 10px;
    border: none;
    border: 1px solid #E6E5E5;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
      margin-bottom: 5px;
    }
  }
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color) !important;
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--body-color);
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
  }
  .news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme-color);
  }
  .news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
  }
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 0px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
      margin-bottom: 20px;
    }
  }
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 500;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
    margin-bottom: 0;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
      font-size: 28px;
    }
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid var(--border-color);
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
      flex-wrap: wrap;
      gap: 20px;
    }
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 0;
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 a:hover {
    color: var(--theme-color2);
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .btn a {
    display: inline-flex;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .btn a:hover {
    background: var(--title-color);
    color: var(--white-color);
  }
  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--white-color);
    color: var(--theme-color);
  }
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }
  .news-details-area .blog-post-details .comment-form-wrap .form-clt input,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    font-weight: 500;
  }
  .news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--body-color);
  }
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
  }
  
  /*------------------- 4.15. Simple Sections  -------------------*/
  /*----------------------------------------------
      # Simple Common style here
  ----------------------------------------------*/
  .fancy-box.style1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    /* Small devices */
  }
  .fancy-box.style1 .fancy-box_icon {
    display: block;
    padding: 18px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .fancy-box.style1 .fancy-box_content h4 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 0px;
  }
  .fancy-box.style1 .fancy-box_content span {
    display: inline-block;
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }
  @media (max-width: 767px) {
    .fancy-box.style1 {
      justify-content: flex-start;
      width: 100%;
    }
  }
  .fancy-box.style2 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 26px 30px;
    background-color: var(--white-color);
    overflow: hidden;
    border-left: 4px solid var(--white-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    /* Medium devices */
  }
  .fancy-box.style2 p {
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 0px;
  }
  .fancy-box.style2 h4 {
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0;
  }
  .fancy-box.style2 h4 a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--title-color);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
  }
  .fancy-box.style2 h4 a:hover {
    color: var(--theme-color2);
  }
  .fancy-box.style2 .arrow-icon {
    position: absolute;
    top: 25px;
    bottom: 26px;
    right: 30px;
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
    background: var(--title-color);
    color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: background 0.4s ease;
    -webkit-transition: background 0.4s ease;
    -moz-transition: background 0.4s ease;
    -ms-transition: background 0.4s ease;
    -o-transition: background 0.4s ease;
    /* Medium devices */
  }
  .fancy-box.style2 .arrow-icon:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  @media (max-width: 991px) {
    .fancy-box.style2 .arrow-icon {
      top: 20px;
      bottom: 26px;
      right: 7px;
    }
  }
  .fancy-box.style2:hover {
    border-left: 4px solid var(--theme-color);
  }
  .fancy-box.style2:hover .arrow-icon {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
  }
  @media (max-width: 991px) {
    .fancy-box.style2 {
      padding: 20px 7px;
    }
  }
  .fancy-box.style3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 29px;
    gap: 8px;
    border-radius: 5000px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    -webkit-border-radius: 5000px;
    -moz-border-radius: 5000px;
    -ms-border-radius: 5000px;
    -o-border-radius: 5000px;
    /* Small devices */
  }
  .fancy-box.style3 .fancy-box_content h4 {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
  }
  .fancy-box.style3 .fancy-box_content span {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  @media (max-width: 767px) {
    .fancy-box.style3 {
      justify-content: flex-start;
    }
  }
  .fancy-box.style4 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 29px;
    gap: 8px;
    border-radius: 5000px;
    background: transparent;
    -webkit-border-radius: 5000px;
    -moz-border-radius: 5000px;
    -ms-border-radius: 5000px;
    -o-border-radius: 5000px;
    border: 1px solid var(--title-color);
    /* Small devices */
  }
  .fancy-box.style4 .fancy-box_content h4 {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 4px;
  }
  .fancy-box.style4 .fancy-box_content span {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  @media (max-width: 767px) {
    .fancy-box.style4 {
      justify-content: flex-start;
    }
  }
  
  .counter-box.style1 {
    padding: 18px 18px 18px 18px;
    max-width: 222px;
    border-radius: 8px;
    border-left: 2px solid var(--theme-color);
    background: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
  }
  .counter-box.style1 .counter-box_icon {
    width: 52px;
    height: 52px;
  }
  .counter-box.style1 .counter-box_counter .counter-number {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
  .counter-box.style1 .counter-box_counter .plus {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
  }
  .counter-box.style1 .counter-box_counter span {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }
  .counter-box.style2 {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
  }
  .counter-box.style2 .counter-box_icon {
    width: 52px;
    height: 52px;
  }
  .counter-box.style2 .counter-box_counter .counter-number {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
  }
  .counter-box.style2 .counter-box_counter .plus {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
  }
  .counter-box.style2 .counter-box_counter span {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }
  
  .checklist {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .checklist ul {
    display: flex;
    align-items: center;
    margin-left: 6px;
    gap: 8px;
    list-style-type: none;
  }
  
  .star-wrap {
    display: flex;
    padding-left: 0;
  }
  .star-wrap li {
    list-style-type: none;
  }
  
  .meta {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .meta .icon i {
    color: var(--theme-color);
  }
  .meta .text {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
  }
  
  .progress-wrap {
    margin-bottom: 30px;
  }
  .progress-wrap:last-child {
    margin-bottom: 0;
  }
  .progress-wrap .progress-meta {
    display: flex;
    gap: 250px;
    margin-bottom: 15px;
    /* Extra small devices */
    /* Extra small devices */
  }
  .progress-wrap .progress-meta .title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .progress-wrap .progress-meta .percentage {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  @media (max-width: 575px) {
    .progress-wrap .progress-meta {
      gap: 210px;
    }
  }
  @media (max-width: 375px) {
    .progress-wrap .progress-meta {
      gap: 150px;
    }
  }
  .progress-wrap .progress-container {
    position: relative;
    width: 500px;
    height: 5px;
    background-color: #D9DDFF;
    border-radius: 10px;
    overflow: visible;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    /* Small devices */
  }
  .progress-wrap .progress-container .progress-bar {
    height: 5px;
    background-color: var(--theme-color);
    border-radius: 10px;
    opacity: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  @media (max-width: 767px) {
    .progress-wrap .progress-container {
      width: 85%;
    }
  }

  .gt-social a div{
    display: flex;
    justify-content: center;
    align-content: center;
    height: 100%;
    width: 100%;
  }
  .gt-social a div i{
    height: 50%;
    align-self: center;
  }

  
  .gt-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
    margin-right: 5px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .gt-social a:hover {
    background: var(--white-color);
    color: var(--theme-color);
  }
  .gt-social.style2 a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: transparent;
    color: var(--white-color);
    margin-right: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .gt-social.style2 a:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
    border: 1px solid var(--title-color);
  }
  
  /* Hide the default checkbox */
  .custom-checkbox input[type=checkbox] {
    display: none;
  }
  
  /* Style the label */
  .custom-checkbox {
    cursor: pointer;
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    user-select: none;
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  .custom-checkbox .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    margin-right: 5px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid var(--white-color);
    opacity: 0.6;
  }
  .custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--white-color);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  .custom-checkbox a {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration-line: underline;
  }
  .custom-checkbox:hover input ~ .checkmark {
    background-color: var(--title-color);
  }
  .custom-checkbox input:checked ~ .checkmark {
    background-color: var(--theme-color);
  }
  .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  #termsForm button:disabled {
    background-color: var(--title-color);
    cursor: not-allowed;
  }
  
  /* Style the email input container */
  .email-input-container {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
  }
  .email-input-container #email {
    width: 270px;
    padding: 23px 16px;
    border-radius: 8px;
    background: var(--white-color);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: none;
    outline: none;
    box-sizing: border-box;
  }
  .email-input-container #submitButton {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
    cursor: pointer;
    outline: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .email-input-container #submitButton:hover {
    background: var(--title-color);
  }
  
  .page-nav-wrap ul li {
    display: inline-block;
  }
  .page-nav-wrap ul li .page-numbers {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border: 1px solid var(--border-color);
    color: var(--title-color);
  }
  .page-nav-wrap ul li .page-numbers.current {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
  }
  @media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
      margin-top: 10px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 14px;
    }
  }
  .page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
  }
  .page-nav-wrap ul li .page-numbers:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
    border: 1px solid transparent;
  }
  
  /*------------------- 4.16. Faq  -------------------*/
  /*----------------------------------------------
      # Faq style here
  ----------------------------------------------*/
  .faq-content .accordion-item {
    border: 0;
    background-color: var(--white-color);
  }
  .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: -0.2px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--gray-color);
    padding: 25px 30px 0;
    text-transform: capitalize;
    font-size: 20px;
    border: 1px solid var(--border-color);
    border: 1px solid transparent;
  }
  .faq-content .accordion-item .accordion-header .accordion-button:after {
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    background-image: url(../../assets/img/icon/chevron-right.svg);
    color: var(--theme-color2);
  }
  .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    background-image: url(../../assets/img/icon/chevron-down.svg);
    font-weight: 500;
    color: var(--theme-color2);
    transform: rotate(0);
  }
  .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 25px 30px;
    color: var(--title-color);
  }
  .faq-content .accordion-item .accordion-collapse {
    border: none;
  }
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 150px;
    padding-left: 30px;
    padding-top: 15px;
    color: var(--body-color);
    background-color: var(--theme-color);
    /* Extra large devices */
    /* Large devices */
  }
  @media (max-width: 1500px) {
    .faq-content .accordion-item .accordion-collapse .accordion-body {
      padding-right: 50px;
    }
  }
  @media (max-width: 1199px) {
    .faq-content .accordion-item .accordion-collapse .accordion-body {
      padding-right: 30px;
    }
  }
  .faq-content.style-2 {
    margin-left: 50px;
    /* Medium Large devices */
    /* Large devices */
  }
  @media (max-width: 1299px) {
    .faq-content.style-2 {
      margin-left: 20px;
    }
  }
  @media (max-width: 1199px) {
    .faq-content.style-2 {
      margin-left: 0;
    }
  }
  .faq-content.style-3 {
    margin-top: 35px;
  }
  .faq-content.style-3 .accordion-item {
    border: 0;
    background-color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  }
  .faq-content.style-3 .accordion-item .accordion-header .accordion-button {
    color: var(--title-color);
    font-family: inherit;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: inherit;
    background-color: var(--white-color);
    border: none;
  }
  .faq-content.style-3 .accordion-item .accordion-collapse .accordion-body {
    background-color: var(--white-color);
    padding-bottom: 30px;
  }
  
  .faq-wrapper .faq-image img {
    width: 100%;
    height: 100%;
  }
  
  /*------------------- 4.17. Cta  -------------------*/
  /*----------------------------------------------
      # Cta style here
  ----------------------------------------------*/
  .cta-wrap.style1 {
    position: relative;
    padding: 64px 73px 62px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 47px;
    z-index: 9;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
  }
  .cta-wrap.style1 .shape1_1 {
    position: absolute;
    bottom: 0;
    left: 43px;
  }
  .cta-wrap.style1 .shape1_2 {
    position: absolute;
    top: 0;
    left: 279px;
  }
  .cta-wrap.style1 .shape1_3 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .cta-wrap.style1 .cta-thumb {
    position: absolute;
    bottom: 0;
    left: 73px;
  }
  .cta-wrap.style1 .cta-title {
    max-width: 356px;
  }
  @media (max-width: 1199px) {
    .cta-wrap.style1 {
      align-items: center;
      justify-content: space-between;
    }
  }
  @media (max-width: 991px) {
    .cta-wrap.style1 {
      padding: 55px 35px 40px;
    }
  }
  @media (max-width: 767px) {
    .cta-wrap.style1 {
      padding: 40px 35px 40px;
      flex-direction: column;
      justify-content: center;
      gap: 25px;
    }
  }
  .cta-wrap.style2 {
    position: relative;
    padding: 64px 73px 62px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 47px;
    /* Large devices */
    /* Medium devices */
    /* Small devices */
  }
  .cta-wrap.style2 .shape1_2 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cta-wrap.style2 .shape1_3 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .cta-wrap.style2 .shape1_4 {
    position: absolute;
    bottom: 65px;
    left: 343px;
  }
  .cta-wrap.style2 .fancy-box.style1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .cta-wrap.style2 .fancy-box_icon {
    padding: 0;
  }
  .cta-wrap.style2 .cta-thumb {
    position: absolute;
    bottom: 0;
    left: 73px;
  }
  .cta-wrap.style2 .cta-title {
    max-width: 356px;
  }
  @media (max-width: 1199px) {
    .cta-wrap.style2 {
      padding: 55px 40px 50px;
      align-items: center;
      justify-content: space-between;
    }
  }
  @media (max-width: 991px) {
    .cta-wrap.style2 {
      padding: 40px 35px 40px;
      flex-direction: column;
      justify-content: center;
      gap: 25px;
    }
    .cta-wrap.style2 .cta-title {
      max-width: 100%;
    }
  }
  @media (max-width: 767px) {
    .cta-wrap.style2 {
      padding: 40px 35px 40px;
      flex-direction: column;
      justify-content: center;
      gap: 25px;
    }
  }
  
  /*------------------- 4.18. Service  -------------------*/
  /*----------------------------------------------
      # Service style here
  ----------------------------------------------*/
  .service-area {
    position: relative;
    margin-top: -80px;
    z-index: 9;
    /* Small devices */
  }
  
  .center-cards{
    display:flex;
    justify-content: center;
  }

  @media (max-width: 767px) {
    .service-area {
      margin-top: 0;
      padding-top: 80px;
    }
  }
  
  .service-wrap.style3 {
    position: relative;
  }
  .service-wrap.style3 .shape3_1 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .service-wrap.style3 .title-wrap .arrow-btn .style2 {
    width: 52px;
    height: 52px;
    line-height: 35px;
    text-align: center;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    background: transparent;
    color: var(--theme-color);
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .service-wrap.style3 .title-wrap .arrow-btn .style2:hover {
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    color: var(--white-color);
    border: 1px solid var(--theme-color);
  }
  .service-wrap.style3 .title-wrap .arrow-btn .style2.slider-next {
    margin-left: 5px;
  }
  
  .service-card-wrapper.style1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    place-content: center;
    place-items: center;
    gap: 30px;
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 1500px) {
    .service-card-wrapper.style1 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media (max-width: 1299px) {
    .service-card-wrapper.style1 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 991px) {
    .service-card-wrapper.style1 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px) {
    .service-card-wrapper.style1 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .service-card-wrapper.style2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-content: center;
    place-items: center;
    gap: 30px;
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 1500px) {
    .service-card-wrapper.style2 {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media (max-width: 1299px) {
    .service-card-wrapper.style2 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 991px) {
    .service-card-wrapper.style2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px) {
    .service-card-wrapper.style2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .service-card-wrapper.style4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    place-items: center;
    gap: 30px;
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 1500px) {
    .service-card-wrapper.style4 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 1299px) {
    .service-card-wrapper.style4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 991px) {
    .service-card-wrapper.style4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px) {
    .service-card-wrapper.style4 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .service-card-wrapper.style5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /* background-color: red;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    place-items: center;
    gap: 5px; */
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
  }
  .service-card-wrapper.style52 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /* background-color: red;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    place-items: center;
    gap: 5px; */
    /* Extra large devices */
    /* Medium Large devices */
    /* Medium devices */
    /* Small devices */
  }

  .div-style_center{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  @media (max-width: 1500px) {
    .service-card-wrapper.style5 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 1299px) {
    .service-card-wrapper.style5 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 991px) {
    .service-card-wrapper.style5 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px) {
    .service-card-wrapper.style5 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  .service-card {
    position: relative;
  }
  .service-card.style1 {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 36px 36px;
    /* max-width: 280px; */
    max-width: 350px;
    /* max-height: 285px; */
    max-height: 352px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
  }

/*   .service-card.style1:hover {
    background-color: black;
} */

  .service-card.style1 .card_icon {
    padding: 37px 15px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  .service-card.style1 .card_icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .service-card.style1 .card_icon:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    /* width: 80px;
    height: 80.638px; */
    width: 140px;
    height: 140.638px;
    background-color: var(--theme-color);
    opacity: 0.1;
    /* clip-path: polygon(43px 80.5px, 43px 80.5px, 39.53360194px 80.6138793px, 35.93715952px 80.1950024px, 32.27225038px 79.3019371px, 28.60045216px 77.9932512px, 24.9833425px 76.3275125px, 21.48249904px 74.3632888px, 18.15949942px 72.1591479px, 15.07592128px 69.7736576px, 12.29334226px 67.2653857px, 9.87334px 64.6929px, 9.87334px 64.6929px, 7.9367128753px 62.2494616px, 6.2104916824px 59.6854208px, 4.6949916931px 57.0120192px, 3.3905281792px 54.2404984px, 2.2974164125px 51.3821px, 1.4159716648px 48.4480656px, 0.7465092079px 45.4496368px, 0.2893443136px 42.3980552px, 0.0447922537px 39.3045624px, 0.0131683px 36.1804px, 0.0131683px 36.1804px, 0.1857139617px 33.13325371px, 0.5595666176px 30.11371768px, 1.1381176039px 27.13886617px, 1.9247582568px 24.22577344px, 2.9228799125px 21.39151375px, 4.1358739072px 18.65316136px, 5.5671315771px 16.02779053px, 7.2200442584px 13.53247552px, 9.0980032873px 11.18429059px, 11.2044px 9.00031px, 11.2044px 9.00031px, 13.4497356px 7.0972821754px, 15.8464968px 5.4603242994px, 18.3770652px 4.0732687683px, 21.0238224px 2.9199479789px, 23.76915px 1.9841943275px, 26.5954296px 1.2498402107px, 29.4850428px 0.7007180251px, 32.4203712px 0.320660167px, 35.3837964px 0.0934990332px, 38.3577px 0.00306702px, 38.3577px 0.00306702px, 41.363953px 0.0404444904px, 44.35772px 0.2181352006px, 47.323653px 0.5511659215px, 50.246404px 1.0545634235px, 53.110625px 1.7433544775px, 55.900968px 2.6325658541px, 58.602085px 3.7372243239px, 61.198628px 5.0723566578px, 63.675249px 6.6529896262px, 66.0166px 8.49415px, 66.0166px 8.49415px, 68.3999054px 10.69325995px, 70.6702992px 13.0542976px, 72.7870678px 15.56399965px, 74.7094976px 18.2091028px, 76.396875px 20.97634375px, 77.8084864px 23.8524592px, 78.9036182px 26.82418585px, 79.6415568px 29.8782604px, 79.9815886px 33.00141955px, 79.883px 36.1804px, 79.883px 36.1804px, 79.5103764px 39.0453677px, 79.0147072px 41.5826016px, 78.3824948px 43.8539179px, 77.6002416px 45.9211328px, 76.65445px 47.8460625px, 75.5316224px 49.6905232px, 74.2182612px 51.5163311px, 72.7008688px 53.3853024px, 70.9659476px 55.3592533px, 69px 57.5px, 69px 57.5px, 66.7549105px 60.0575467px, 64.478px 62.8473696px, 62.1516255px 65.7609029px, 59.758144px 68.6895808px, 57.2799125px 71.5248375px, 54.699288px 74.1581072px, 51.9986275px 76.4808241px, 49.160288px 78.3844224px, 46.1666265px 79.7603363px, 43px 80.5px); */
    /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
    clip-path: polygon(0% 50%, 10% 20%, 30% 5%, 70% 5%, 90% 20%, 100% 50%, 90% 80%, 70% 95%, 30% 95%, 10% 80%);
  }
  .service-card.style1 .card_content {
    margin-top: 15px;
    z-index: 3;
  }
  .service-card.style1 .card_content h3 {
    text-align: center;
    margin-bottom: 10px;
  }
  .service-card.style1 .card_content h3 a { /* Editar titulo dos cards */
    color: var(--title-color);
    text-align: center;
    font-family: var(--title-font);
    /* font-size: 20px; */
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .service-card.style1 .card_content h3 a:hover {
    color: var(--theme-color2);
  }
  .service-card.style1 .card_content .text {
    color: var(--body-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 16px;
    /* font-size: 12px; */
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 27px;
  }
  .service-card.style1 .link-btn {
    position: absolute;
    bottom: -5%;
    left: 42%;
    text-align: center;
    z-index: 3;
  }
  .service-card.style1 .bg {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 280px;
    height: 284px; */
    width: 350px;
    height: 349px;
    max-height: 0;
    overflow: hidden;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -webkit-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -moz-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -ms-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
    -o-transition: max-height 0.8s ease, opacity 1s ease, visibility 1s ease;
  }
  .service-card.style1:hover .bg {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
  }
  .service-card.style1:hover .card_content h3 a {
    color: var(--white-color);
  }
  .service-card.style1:hover .card_content h3 a:hover {
    color: var(--theme-color2);
  }
  .service-card.style1:hover .card_content .text {
    color: var(--white-color);
  }
  .service-card.style1:hover .link-btn > a {
    background: var(--white-color);
    color: var(--theme-color);
  }
  .service-card.style1:hover .card_icon {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  .service-card.style1:hover .card_icon:before {
    background-color: var(--white-color);
    opacity: 1;
  }
  .service-card.style2 {
    overflow: hidden;
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    /* max-width: 270px; */
    max-width: 320px;
    max-height: 460px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    z-index: 5;
  }
  .service-card.style2 .service-thumb {
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 0px;
  }
  .service-card.style2 .service-thumb img {
    /* width: 270px; */
    width: 320px;
    height: 160px;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 0px;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
  }
  .service-card.style2 .service-content {
    padding: 45px 5px 30px 30px;
    background-color: var(--white-color);
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
  }
  .service-card.style2 .service-content_title {
    margin-bottom: 5px;
  }
  .service-card.style2 .service-content_title a {
    /* background: var(--title-color); */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    transition: 1s, -webkit-background-clip 1s, -webkit-text-fill-color 1s;
    -webkit-transition: 1s, -webkit-background-clip 1s, -webkit-text-fill-color 1s;
    -moz-transition: 1s, -webkit-background-clip 1s, -webkit-text-fill-color 1s;
    -ms-transition: 1s, -webkit-background-clip 1s, -webkit-text-fill-color 1s;
    -o-transition: 1s, -webkit-background-clip 1s, -webkit-text-fill-color 1s;
  }
  .service-card.style2 .service-content_title a:hover {
    /* background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%); */
    background: red;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .service-card.style2 .service-content_text {
    color: var(--body-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 14px;
  }
  .service-card.style2 .service-content .link {
    color: var(--body-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
  }
  .service-card.style2 .service-content .link i {
    margin-left: 10px;
  }
  .service-card.style2 .service-content .link:hover {
    /* color: var(--theme-color2); */
    color: red;
  }
  .service-card.style2 .service-icon {
    position: absolute;
    top: 125px;
    left: 30px;
    padding: 15px;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
  }
  .service-card.style2 .service-icon_two {
    position: absolute;
    bottom: 8px;
    right: 8px;
    transition: all 2s ease;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
  }
  .service-card.style2:hover .service-thumb img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .service-card.style2:hover .service-icon {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  .service-card.style2:hover .service-icon_two {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .service-card.style3 {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: start;
    padding: 36px 36px;
    max-width: 270px;
    max-height: 303px;
    margin: 0 auto;
    background-color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(56, 75, 255, 0.08);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .service-card.style3 .card_icon {
    padding: 37px 15px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  .service-card.style3 .card_icon img {
    position: absolute;
    top: 20px;
    left: 30px;
  }
  .service-card.style3 .card_icon:before {
    position: absolute;
    content: "";
    top: 0px;
    left: 10px;
    width: 80px;
    height: 80.638px;
    background-color: var(--theme-color);
    opacity: 0.1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .service-card.style3 .card_content {
    z-index: 3;
  }
  .service-card.style3 .card_content h3 {
    text-align: start;
    margin-bottom: 10px;
  }
  .service-card.style3 .card_content h3 a {
    color: var(--title-color);
    text-align: start;
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  .service-card.style3 .card_content h3 a:hover {
    color: var(--theme-color2);
  }
  .service-card.style3 .card_content .text {
    color: var(--body-color);
    text-align: start;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
  }
  .service-card.style3 .link-wrap a {
    color: var(--theme-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-decoration-line: underline;
    text-transform: uppercase;
  }
  .service-card.style3 .link-wrap a:hover {
    color: var(--theme-color2);
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
  }
  .service-card.style3:hover {
    background-color: var(--theme-color);
    border-radius: 16px;
    background: linear-gradient(180deg, #3D4AFF 0%, #9931F6 100%);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .service-card.style3:hover .card_content h3 a {
    color: var(--white-color);
  }
  .service-card.style3:hover .card_content h3 a:hover {
    color: var(--theme-color2);
  }
  .service-card.style3:hover .card_content .text {
    color: var(--white-color);
  }
  .service-card.style3:hover .card_icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .service-card.style3:hover .card_icon:before {
    background-color: var(--white-color);
    opacity: 1;
  }
  .service-card.style3:hover .link-wrap a {
    color: var(--white-color);
  }
  .service-card.style4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background-color: var(--white-color);
    text-align: center;
    max-width: 370px;
    margin: 0 auto;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  .service-card.style4 .service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .service-card.style4 .service-icon img {
    max-width: 100%;
    height: auto;
  }
  .service-card.style4 .service-title a {
    color: var(--title-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .service-card.style4 .text {
    color: var(--body-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
  }
  .service-card.style4 .btn-wrapper a {
    color: var(--title-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .service-card.style4 .btn-wrapper a i {
    margin-left: 5px;
  }
  .service-card.style4:hover {
    border-radius: 10px;
    background: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .service-card.style4:hover .btn-wrapper a {
    color: var(--theme-color2);
  }
  .service-card.style4:hover .btn-wrapper a i {
    color: var(--theme-color2);
  }
  
  /*----------------------------------------------
      # Service Extra style here
  ----------------------------------------------*/
  .main-sidebar .single-sidebar-image {
    height: 400px;
    max-width: 500px;
    position: relative;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .main-sidebar .single-sidebar-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, #3C72FC 0%, rgba(0, 6, 12, 0) 100%);
    opacity: 0.9;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .main-sidebar .single-sidebar-image .contact-text {
    position: relative;
    text-align: center;
    padding: 130px 30px;
    margin: 0 auto;
  }
  .main-sidebar .single-sidebar-image .contact-text .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: var(--white-color);
    text-align: center;
    color: var(--theme-color);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
  }
  .main-sidebar .single-sidebar-image .contact-text .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    content: "";
    transform: translate(-50%, -50%);
  }
  .main-sidebar .single-sidebar-image .contact-text h4 {
    color: var(--white-color);
    margin-top: 30px;
  }
  .main-sidebar .single-sidebar-image .contact-text h5 {
    margin-top: 15px;
  }
  .main-sidebar .single-sidebar-image .contact-text h5 a {
    color: var(--white-color);
  }
  
  .main-sidebar .single-sidebar-widget .opening-category ul {
    padding-left: 0;
  }
  .main-sidebar .single-sidebar-widget .opening-category ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--white-color);
    font-weight: 500;
    color: var(--title-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .main-sidebar .single-sidebar-widget .opening-category ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  .main-sidebar .single-sidebar-widget .opening-category ul li i {
    color: var(--theme-color);
  }
  
  .service-details-wrapper .service-details-items .details-content h3 {
    margin-top: 30px;
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items .video-thumb {
    position: relative;
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items .video-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items .content .list {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items .content .list li {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-transform: capitalize;
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items .content .list li:not(:last-child) {
    margin-bottom: 10px;
  }
  .service-details-wrapper .service-details-items .details-content .details-video-items .content .list li i {
    margin-right: 10px;
    color: var(--theme-color);
  }
  
  .all-services-area .service-card.style3 {
    margin-bottom: 30px;
  }
  
  /*------------------- 4.19. Pricing  -------------------*/
  /*----------------------------------------------
      # Pricing style here
  ----------------------------------------------*/
  .pricing-wrap.style1 {
    position: relative;
    z-index: 2;
  }
  .pricing-wrap.style1 .shape1_1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
  }
  .pricing-wrap.style3 {
    position: relative;
  }
  .pricing-wrap.style3 .shape3_1 {
    position: absolute;
    bottom: 222px;
    left: 0;
    z-index: 1;
  }
  .pricing-wrap.style3 .shape3_2 {
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: -1;
  }
  
  .pricing-card-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 30px;
    z-index: 5;
    /* Large devices */
    /* Medium devices */
  }
  @media (max-width: 1199px) {
    .pricing-card-wrap {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 991px) {
    .pricing-card-wrap {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  .pricing-card.style1 {
    position: relative;
    text-align: center;
    max-width: 370px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    z-index: 2;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .pricing-card.style1 .pricing-card-header {
    padding: 30px 80px;
    text-align: center;
    border-radius: 16px 16px 50px 50px;
    -webkit-border-radius: 16px 16px 50px 50px;
    -moz-border-radius: 16px 16px 50px 50px;
    -ms-border-radius: 16px 16px 50px 50px;
    -o-border-radius: 16px 16px 50px 50px;
  }
  .pricing-card.style1 .pricing-card-header_badge {
    padding: 18px 50px;
    display: inline-block;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 25px;
    border-radius: 8px;
    background: var(--white-color);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .pricing-card.style1 .pricing-card-header_price {
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
  }
  .pricing-card.style1 .pricing-card-header_text {
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .pricing-card.style1 .shape1_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
  }
  .pricing-card.style3 {
    position: relative;
    text-align: center;
    max-width: 370px;
    max-height: 800px;
    border-radius: 16px;
    background: var(--white-color);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .pricing-card.style3 .pricing-card-header {
    padding: 40px 0px 0px 40px;
    text-align: center;
    border-radius: 16px 16px 50px 50px;
    -webkit-border-radius: 16px 16px 50px 50px;
    -moz-border-radius: 16px 16px 50px 50px;
    -ms-border-radius: 16px 16px 50px 50px;
    -o-border-radius: 16px 16px 50px 50px;
  }
  .pricing-card.style3 .pricing-card-header_badge {
    position: absolute;
    top: 39px;
    right: 0;
  }
  .pricing-card.style3 .pricing-card-header_badge span {
    display: inline-block;
    padding: 16px 16px 16px 60px;
    color: var(--white-color);
    text-align: right;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
  }
  @media (max-width: 330px) {
    .pricing-card.style3 .pricing-card-header_badge span {
      padding: 16px 16px 16px 6px;
    }
  }
  .pricing-card.style3 .pricing-card-header_price {
    color: var(--title-color);
    text-align: start;
    font-family: var(--title-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
  }
  .pricing-card.style3 .pricing-card-header_text {
    color: var(--body-color);
    text-align: start;
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .pricing-card.style3 .text {
    margin: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
  }
  .pricing-card.style3:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    z-index: -1;
    border-radius: 15px;
  }
  .pricing-card .btn-wrapper {
    text-align: start;
    margin-left: 40px;
    margin-bottom: 36px;
  }
  
  /*------------------- 4.20. Why choose Us  -------------------*/
  /*----------------------------------------------
      # why choose us style here
  ----------------------------------------------*/
  .wcu-tab-wrap {
    position: relative;
  }
  .wcu-tab-wrap .shape1_1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .wcu-tab-wrap .shape1_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  
  .wcu-tab-area ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
  }
  
  .wcu-tab-area ul .nav-link {
    position: relative;
    color: var(--title-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 27px;
    padding: 24px 20px 24px 24px;
    background: #fff;
    width: 298px;
    border: none !important;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    /* Extra small devices */
  }
  @media (max-width: 375px) {
    .wcu-tab-area ul .nav-link {
      position: relative;
      font-family: var(--title-font);
      color: var(--title-color);
      font-size: 20px;
      font-style: normal;
      font-weight: 600;
      line-height: 32px;
      text-transform: capitalize;
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 14px;
      padding: 15px 15px 15px 15px;
      background: #fff;
      width: 271px;
      border: none !important;
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
    }
  }
  
  .wcu-tab-area ul .nav-link:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    width: 35px;
    height: 60px;
    background: #fff;
    clip-path: polygon(100% 49%, 0 0, 0 100%);
  }
  
  .wcu-tab-area ul .nav-link .icon-box {
    font-size: 50px;
    color: var(--theme-color);
  }
  
  .wcu-tab-area ul .nav-link.active {
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .wcu-tab-area ul .nav-link.active img {
    filter: invert(100%);
  }
  
  .wcu-tab-area ul .nav-link.active:before {
    background: #9931F6;
  }
  
  .wcu-tab-area ul .nav-link.active .icon-box {
    color: #fff;
  }
  
  .wcu-tab-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    border-radius: 16px;
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    background-color: var(--white-color);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    /* Small devices */
  }
  .wcu-tab-content .shape {
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 1;
  }
  .wcu-tab-content .wcu-thumb {
    position: relative;
    padding: 36px 0px 0 68px;
  }
  .wcu-tab-content .wcu-thumb img {
    position: relative;
    z-index: 3;
  }
  .wcu-tab-content .wcu-content {
    padding: 36px 30px 36px 0;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .wcu-tab-content .wcu-content {
      padding: 0px 30px 56px 10px;
    }
  }
  .wcu-tab-content .wcu-content .title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
  }
  .wcu-tab-content .wcu-content .text {
    color: var(--body-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  .wcu-tab-content .wcu-content .checklist {
    margin-top: 20px;
  }
  .wcu-tab-content .wcu-content .checklist ul {
    display: flex;
    flex-direction: row;
    margin-left: 0;
  }
  .wcu-tab-content .wcu-content .checklist ul li {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  @media (max-width: 767px) {
    .wcu-tab-content {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  .wcu-area .bg-shape-1 {
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
  }
  
  .wcu-area .bg-shape-2 {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
  }
  
  .wcu-area .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  @media only screen and (max-width: 767px) {
    .service-tab-content {
      display: flex;
      flex-direction: column;
    }
    .wcu-tab-area {
      margin-bottom: 50px;
    }
    .service-tab-content figure.image img {
      width: 100%;
    }
  }
  /*------------------- 4.21. Work Process  -------------------*/
  /*----------------------------------------------
      # Work Process style here
  ----------------------------------------------*/
  .work-process-wrap.style1 {
    position: relative;
    background-color: var(--white-color);
    z-index: 5;
  }
  .work-process-wrap.style1 .shape1_1 {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 1;
  }
  .work-process-wrap.style1 .shape1_2 {
    position: absolute;
    bottom: -100px;
    right: 0;
    z-index: 1;
  }
  
  .process-card-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: var(--white-color);
    z-index: 5;
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 991px) {
    .process-card-wrap {
      grid-template-columns: repeat(2, 1fr);
    }
    .process-card-wrap .process-card.style1 {
      margin-bottom: 57px;
    }
    .process-card-wrap .process-card.style1:nth-child(3), .process-card-wrap .process-card.style1:nth-child(4) {
      margin-bottom: 0;
    }
  }
  @media (max-width: 767px) {
    .process-card-wrap {
      grid-template-columns: repeat(1, 1fr);
    }
    .process-card-wrap .process-card.style1 {
      margin-bottom: 57px;
    }
    .process-card-wrap .process-card.style1:nth-child(3) {
      margin-bottom: 57px;
    }
  }
  
  .process-card.style1 {
    position: relative;
    padding: 82px 30px 32px;
    border-bottom: 8px solid var(--white-color);
    border-radius: 0px 0px 1200px 1200px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    -webkit-border-radius: 0px 0px 1200px 1200px;
    -moz-border-radius: 0px 0px 1200px 1200px;
    -ms-border-radius: 0px 0px 1200px 1200px;
    -o-border-radius: 0px 0px 1200px 1200px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  .process-card.style1 .content .title {
    color: var(--title-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .process-card.style1 .content .text {
    color: var(--body-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 37px;
  }
  .process-card.style1 .content .number {
    text-align: center;
    -webkit-text-stroke-width: 1;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    font-family: var(--title-font);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--body-color);
    opacity: 0.5;
  }
  .process-card.style1 .icon-container {
    position: absolute;
    top: -35%;
    left: 50%;
    width: 114px;
    height: 114px;
    line-height: 114px;
    background-color: var(--white-color);
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, 35%);
    -webkit-transform: translate(-50%, 35%);
    -moz-transform: translate(-50%, 35%);
    -ms-transform: translate(-50%, 35%);
    -o-transform: translate(-50%, 35%);
  }
  .process-card.style1 .icon-container .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
  }
  .process-card.style1:hover {
    padding: 82px 30px 32px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom: 8px solid var(--theme-color);
  }
  
  /*------------------- 4.22. Project  -------------------*/
  /*----------------------------------------------
      # Project style here
  ----------------------------------------------*/
  .project-card.style1 {
    position: relative;
    overflow: hidden;
    max-width: 465px;
    margin: 0 auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    /* Extra small devices */
    /* Extra small devices */
  }
  .project-card.style1 .project-img {
    position: relative;
    z-index: 1;
  }
  .project-card.style1 .project-img img {
    width: 465px;
    height: 450px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .project-card.style1 .project-img .img-shine {
    opacity: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
  }
  .project-card.style1 .fancy-box.style2 {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
  }
  .project-card.style1 .fancy-box.style2:hover .img-shine {
    opacity: 1;
  }
  .project-card.style1:hover .img-shine {
    opacity: 1;
  }
  .project-card.style1:hover .project-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  @media (max-width: 575px) {
    .project-card.style1 {
      max-width: 400px;
    }
    .project-card.style1 .fancy-box.style2 {
      position: absolute;
      bottom: 14px;
      left: 14px;
      z-index: 3;
    }
  }
  @media (max-width: 375px) {
    .project-card.style1 {
      max-width: 320px;
    }
    .project-card.style1 .fancy-box.style2 {
      position: absolute;
      bottom: 10px;
      left: 10px;
      z-index: 3;
    }
  }
  
  .project-details-wrapper .project-details-items .details-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    /* Medium devices */
    /* Small devices */
  }
  @media (max-width: 991px) {
    .project-details-wrapper .project-details-items .details-content h3 {
      font-size: 26px;
    }
  }
  @media (max-width: 767px) {
    .project-details-wrapper .project-details-items .details-content h3 {
      font-size: 24px;
    }
  }
  .project-details-wrapper .project-details-items .project-catagory {
    padding: 40px 30px;
    background-color: var(--white-color);
    border-top: 4px solid var(--theme-color);
    margin-top: -150px;
    margin-right: 30px;
    /* Large devices */
  }
  @media (max-width: 1199px) {
    .project-details-wrapper .project-details-items .project-catagory {
      margin-top: 0;
    }
  }
  .project-details-wrapper .project-details-items .project-catagory h3 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
  }
  .project-details-wrapper .project-details-items .project-catagory ul {
    padding-left: 0;
    margin-bottom: 0;
  }
  .project-details-wrapper .project-details-items .project-catagory ul li {
    font-weight: 600;
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
  }
  .project-details-wrapper .project-details-items .project-catagory ul li span {
    font-weight: 500;
  }
  .project-details-wrapper .project-details-items .project-catagory ul li span i {
    color: var(--body-color);
    transition: all 0.3s ease 0s;
  }
  .project-details-wrapper .project-details-items .project-catagory ul li span i:hover {
    color: var(--theme-color);
  }
  .project-details-wrapper .project-details-items .list {
    padding-left: 0;
    margin-bottom: 0;
  }
  .project-details-wrapper .project-details-items .list li {
    font-weight: 500;
    color: var(--title-color);
  }
  .project-details-wrapper .project-details-items .list li:not(:last-child) {
    margin-bottom: 10px;
  }
  .project-details-wrapper .project-details-items .list li i {
    margin-right: 5px;
    color: var(--theme-color);
  }
  .project-details-wrapper .preview-area {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    /* Extra small devices */
  }
  .project-details-wrapper .preview-area .preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .project-details-wrapper .preview-area .preview-item .content h3,
  .project-details-wrapper .preview-area .preview-item .content p {
    margin-bottom: 0;
  }
  .project-details-wrapper .preview-area .preview-item .content.text-right {
    text-align: right;
  }
  @media (max-width: 375px) {
    .project-details-wrapper .preview-area {
      flex-direction: column;
      gap: 30px;
    }
  }
  
  /*------------------- 4.23. Download App -------------------*/
  /*----------------------------------------------
      # Download App style here
  ----------------------------------------------*/
  .dowload-wrap {
    position: relative;
  }
  .dowload-wrap .shape1_1 {
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 1;
  }
  .dowload-wrap .shape1_2 {
    position: absolute;
    bottom: 58px;
    right: 0;
    z-index: 1;
  }
  .dowload-wrap .shape1_3 {
    position: absolute;
    top: 0;
    right: 22%;
    z-index: -1;
  }
  .dowload-wrap .download-container-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .dowload-wrap .download-container-wrap {
      grid-template-columns: repeat(1, 1fr);
    }
    .dowload-wrap .download-container-wrap .download-content {
      order: 2;
    }
  }
  .dowload-wrap .download-thumb-wrap {
    position: relative;
    z-index: 6;
  }
  .dowload-wrap .download-thumb-wrap .shape1_4 {
    position: absolute;
    top: 28px;
    left: 115px;
    z-index: 1;
  }
  .dowload-wrap .download-thumb-wrap .shape1_5 {
    position: absolute;
    bottom: -20px;
    right: 10px;
    z-index: 1;
  }
  .dowload-wrap .download-thumb-wrap .thumb1 {
    position: relative;
    z-index: 5;
  }
  .dowload-wrap .download-content {
    position: relative;
    z-index: 3;
  }
  .dowload-wrap .download-content .title-area .text {
    position: relative;
    margin-bottom: 30px;
    background-color: #ECEDFE;
    z-index: 3;
  }
  .dowload-wrap .download-content .fancy-box-wrapper {
    gap: 30px;
  }
  
  /*------------------- 4.24. Offering  -------------------*/
  /*----------------------------------------------
      # Offering style here
  ----------------------------------------------*/
  .offering-area {
    position: relative;
    z-index: 1;
  }
  
  .offering-wrap {
    position: relative;
  }
  .offering-wrap.style1 {
    padding: 120px 0 415px 0;
  }
  
  .offer-box-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
/*     display: grid;
    grid-template-columns: repeat(6, 1fr);
    place-items: center; */
    /* Large devices */
    /* Medium devices */
    /* Small devices */
    /* Extra small devices */
  }
  @media (max-width: 1199px) {
    .offer-box-wrap {
      grid-template-columns: repeat(5, 1fr);
    }
    .offer-box-wrap .offer-box {
      margin-bottom: 50px;
    }
    .offer-box-wrap .offer-box:last-child {
      margin-bottom: 0px;
    }
  }
  @media (max-width: 991px) {
    .offer-box-wrap {
      grid-template-columns: repeat(3, 1fr);
    }
    .offer-box-wrap .offer-box:nth-child(4), .offer-box-wrap .offer-box:nth-child(5) {
      margin-bottom: 0;
    }
  }
  @media (max-width: 767px) {
    .offer-box-wrap {
      grid-template-columns: repeat(2, 1fr);
    }
    .offer-box-wrap .offer-box:nth-child(4) {
      margin-bottom: 50px;
    }
  }
  @media (max-width: 375px) {
    .offer-box-wrap {
      grid-template-columns: repeat(1, 1fr);
    }
    .offer-box-wrap .offer-box {
      margin-bottom: 50px;
    }
    .offer-box-wrap .offer-box:nth-child(5) {
      margin-bottom: 50px;
    }
    .offer-box-wrap .offer-box:last-child {
      margin-bottom: 0px;
    }
  }
  
  .offer-box {
    position: relative;
  }
  .offer-box .content {
    width: 170px;
    height: 102px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #525252;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .offer-box .content .title {
    margin-top: 39px;
  }
  .offer-box .content .title a {
    color: var(--white-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.36px;
  }
  .offer-box .content .title span {
    color: var(--white-color);
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.36px;
  }
  .offer-box .content .title a:hover {
    color: var(--theme-color2);
  }
  .offer-box .icon {
    position: absolute;
    top: -35px;
    left: 50px;
    display: inline-block;
    padding: 18px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  
  /*------------------- 4.25. Video  -------------------*/
  /*----------------------------------------------
      # Video style here
  ----------------------------------------------*/
  .video-box-area {
    position: relative;
    z-index: 3;
    padding: 355px 0 0;
  }
  .video-box-area .section-bg {
    z-index: 4;
  }
  .video-box-area .video-box {
    position: relative;
    z-index: 5;
    padding: 300px 0 270px;
    margin-top: -355px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .video-box-area .video-box .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 6;
  }
  
  /*------------------- 4.26. Screenshots  -------------------*/
  /*----------------------------------------------
      # Screenshots style here
  ----------------------------------------------*/
  .app-screenshot-area {
    position: relative;
  }
  .app-screenshot-area .screenshots-slider1 {
    padding: 0 0 50px;
  }
  .app-screenshot-area .screenshots-slider1 .screenshot-thumb-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .app-screenshot-area .screenshots-slider1 .screenshot-thumb-wrap img {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
  }
  .app-screenshot-area .screenshots-slider1 .slider-pagination {
    position: absolute !important;
    z-index: 10;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
  .app-screenshot-area .screenshots-slider1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.76);
    transition: background-color 0.3s;
    margin: 0 5px;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
  }
  .app-screenshot-area .screenshots-slider1 .swiper-pagination-bullet-active {
    background-color: var(--white-color);
  }
  
  /*------------------- 4.27. Skill  -------------------*/
  /*----------------------------------------------
      # Skill style here
  ----------------------------------------------*/
  .skill-wrap.style1 {
    position: relative;
  }
  .skill-wrap.style1 .shape1_1 {
    position: absolute;
    bottom: 312px;
    left: 0;
  }
  .skill-wrap.style1 .shape1_2 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .skill-wrapper.style1 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    /* Medium Large devices */
    /* Small devices */
  }
  .skill-wrapper.style1 .skill-thumb {
    position: relative;
  }
  .skill-wrapper.style1 .skill-thumb .shape1_3 {
    position: absolute;
    top: 28px;
    left: 62px;
    z-index: 1;
  }
  .skill-wrapper.style1 .skill-thumb .shape1_4 {
    position: absolute;
    bottom: -80px;
    right: 15px;
    z-index: 1;
  }
  .skill-wrapper.style1 .skill-thumb .thumb1 {
    position: relative;
    margin-left: 166px;
    max-width: 386px;
    height: 415px;
    object-fit: cover;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: 3;
  }
  .skill-wrapper.style1 .skill-thumb .thumb1 .thumb2 {
    position: absolute;
    border-radius: 8px;
    border: 7px solid var(--border-color);
    box-shadow: 0px 4px 25px 0px rgba(98, 34, 204, 0.08);
    bottom: -70px;
    left: -38%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: 3;
  }
  .skill-wrapper.style1 .skill-content .fancy-box-wrapper {
    display: flex;
    align-items: center;
    gap: 49px;
    margin-bottom: 25px;
  }
  .skill-wrapper.style1 .skill-content .progress-wrap .progress-container {
    height: 12px;
  }
  .skill-wrapper.style1 .skill-content .progress-wrap .progress-container .progress-bar {
    height: 12px;
  }
  @media (max-width: 1299px) {
    .skill-wrapper.style1 {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media (max-width: 767px) {
    .skill-wrapper.style1 .skill-content .fancy-box-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: start;
      gap: 5px;
    }
  }
  
  /*------------------- 4.28. Contact  -------------------*/
  /*----------------------------------------------
      # Contact style here
  ----------------------------------------------*/
  .contact-wrap.style1 {
    position: relative;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  }
  .contact-wrap.style1 .shape1_1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .contact-wrap.style1 .shape1_2 {
    position: absolute;
    bottom: 0;
    left: 23px;
  }
  
  .contact-form.style1 .title-box {
    margin: 0;
  }
  .contact-form.style1 .title-box .section-title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
  }
  .contact-form.style1 form {
    padding: 40px 60px 61px 60px;
    border-radius: 16px 0px 0px 0px;
    background: var(--white-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    -webkit-border-radius: 16px 0px 0px 0px;
    -moz-border-radius: 16px 0px 0px 0px;
    -ms-border-radius: 16px 0px 0px 0px;
    -o-border-radius: 16px 0px 0px 0px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .contact-form.style1 form {
      padding: 40px 30px 61px 30px;
    }
  }
  .contact-form.style1 .form-clt .contact__from-input label,
  .contact-form.style1 .form-clt .contact__from-input span {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
  }
  .contact-form.style1 .form-clt .contact__from-input input {
    display: flex;
    height: 56px;
    padding: 25px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #F5F5F5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  .contact-form.style1 .form-clt .contact__select {
    position: relative;
  }
  .contact-form.style1 .form-clt .contact__select select {
    display: flex;
    height: 56px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #F5F5F5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 0 20px;
    line-height: 60px;
    width: 100%;
    border: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    color: rgb(120, 120, 120);
    z-index: 2;
  }
  .contact-form.style1 .form-clt .contact__select:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--theme-color);
    right: 15px;
    cursor: pointer;
    z-index: 6;
  }
  .contact-form.style1 .form-clt textarea {
    display: flex;
    height: 100px;
    padding: 25px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 8px;
    background: #F5F5F5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-top: 5px;
  }
  .contact-form.style1 button {
    margin-top: 25px;
  }
  
  .contact-map {
    margin-right: -370px;
    /* Medium devices */
  }
  @media (max-width: 991px) {
    .contact-map {
      margin-right: 0;
      margin-top: 30px;
      margin-bottom: 80px;
    }
  }
  .contact-map iframe {
    width: 100%;
    height: 727px;
    margin-bottom: -8px;
  }
  
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 {
    padding: 40px 40px 10px;
    background: linear-gradient(90deg, #384BFF 0%, #B42AF3 123.82%);
    border-radius: 16px 16px 0px 0px;
    -webkit-border-radius: 16px 16px 0px 0px;
    -moz-border-radius: 16px 16px 0px 0px;
    -ms-border-radius: 16px 16px 0px 0px;
    -o-border-radius: 16px 16px 0px 0px;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    /* Medium Large devices */
  }
  @media (max-width: 1299px) {
    .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
      flex-wrap: wrap;
    }
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../../assets/img/shape/circle.png");
    animation: rotate360 10s linear infinite;
    -webkit-animation: rotate360 10s linear infinite;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content p {
    color: var(--white-color);
    margin-bottom: 5px;
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
    font-size: 24px;
    color: var(--white-color);
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
    color: var(--white-color);
  }
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
    border: none !important;
  }
  .contact-wrapper-2 .contact-left-items .video-image {
    position: relative;
  }
  .contact-wrapper-2 .contact-left-items .video-image img {
    width: 100%;
    position: relative;
  }
  .contact-wrapper-2 .contact-left-items .video-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .contact-wrapper-2 .contact-content {
    margin-left: 40px;
    /* Large devices */
  }
  @media (max-width: 1199px) {
    .contact-wrapper-2 .contact-content {
      margin-left: 0;
    }
  }
  .contact-wrapper-2 .contact-content h2 {
    margin-bottom: 10px;
  }
  .contact-wrapper-2 .contact-content .contact-form-items {
    margin-top: 30px;
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
    color: var(--title-color);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    display: inline-block;
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    border: 1px solid var(--border-color);
    color: var(--body-color);
    padding: 18px 20px;
    border-radius: 5px;
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
    color: var(--body-color);
  }
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
    height: 200px;
    padding: 18px 20px;
  }
  
  .map-items .googlemap iframe {
    width: 100%;
    height: 600px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .map-items .googlemap iframe {
      height: 400px;
    }
  }
  
  /*=================================
      05. Spacing
  ==================================*/
  /*-- Padding Left And Right --*/
  .px-5 {
    padding-right: 5px;
    padding-left: 5px;
  }
  
  .px-10 {
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .px-15 {
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .px-20 {
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .px-25 {
    padding-right: 25px;
    padding-left: 25px;
  }
  
  .px-30 {
    padding-right: 30px;
    padding-left: 30px;
  }
  
  .px-35 {
    padding-right: 35px;
    padding-left: 35px;
  }
  
  .px-40 {
    padding-right: 40px;
    padding-left: 40px;
  }
  
  .px-45 {
    padding-right: 45px;
    padding-left: 45px;
  }
  
  .px-50 {
    padding-right: 50px;
    padding-left: 50px;
  }
  
  .px-55 {
    padding-right: 55px;
    padding-left: 55px;
  }
  
  .px-60 {
    padding-right: 60px;
    padding-left: 60px;
  }
  
  .px-65 {
    padding-right: 65px;
    padding-left: 65px;
  }
  
  .px-70 {
    padding-right: 70px;
    padding-left: 70px;
  }
  
  .px-75 {
    padding-right: 75px;
    padding-left: 75px;
  }
  
  .px-80 {
    padding-right: 80px;
    padding-left: 80px;
  }
  
  .px-85 {
    padding-right: 85px;
    padding-left: 85px;
  }
  
  .px-90 {
    padding-right: 90px;
    padding-left: 90px;
  }
  
  .px-95 {
    padding-right: 95px;
    padding-left: 95px;
  }
  
  .px-100 {
    padding-right: 100px;
    padding-left: 100px;
  }
  
  /*-- Padding Top And Bottom --*/
  .py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  
  .py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .py-35 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  .py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .py-45 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  
  .py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .py-55 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  
  .py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .py-65 {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  
  .py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .py-75 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  
  .py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .py-85 {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  
  .py-90 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  
  .py-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  
  .py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  /*-- Padding Top --*/
  .pt-5 {
    padding-top: 5px;
  }
  
  .pt-10 {
    padding-top: 10px;
  }
  
  .pt-15 {
    padding-top: 15px;
  }
  
  .pt-20 {
    padding-top: 20px;
  }
  
  .pt-25 {
    padding-top: 25px;
  }
  
  .pt-30 {
    padding-top: 30px;
  }
  
  .pt-35 {
    padding-top: 35px;
  }
  
  .pt-40 {
    padding-top: 40px;
  }
  
  .pt-45 {
    padding-top: 45px;
  }
  
  .pt-50 {
    padding-top: 50px;
  }
  
  .pt-55 {
    padding-top: 55px;
  }
  
  .pt-60 {
    padding-top: 60px;
  }
  
  .pt-65 {
    padding-top: 65px;
  }
  
  .pt-70 {
    padding-top: 70px;
  }
  
  .pt-75 {
    padding-top: 75px;
  }
  
  .pt-80 {
    padding-top: 80px;
  }
  
  .pt-85 {
    padding-top: 85px;
  }
  
  .pt-90 {
    padding-top: 90px;
  }
  
  .pt-95 {
    padding-top: 95px;
  }
  
  .pt-100 {
    padding-top: 100px;
  }
  
  /*-- Padding Bottom --*/
  .pb-5 {
    padding-bottom: 5px;
  }
  
  .pb-10 {
    padding-bottom: 10px;
  }
  
  .pb-15 {
    padding-bottom: 15px;
  }
  
  .pb-20 {
    padding-bottom: 20px;
  }
  
  .pb-25 {
    padding-bottom: 25px;
  }
  
  .pb-30 {
    padding-bottom: 30px;
  }
  
  .pb-35 {
    padding-bottom: 35px;
  }
  
  .pb-40 {
    padding-bottom: 40px;
  }
  
  .pb-45 {
    padding-bottom: 45px;
  }
  
  .pb-50 {
    padding-bottom: 50px;
  }
  
  .pb-55 {
    padding-bottom: 55px;
  }
  
  .pb-60 {
    padding-bottom: 60px;
  }
  
  .pb-65 {
    padding-bottom: 65px;
  }
  
  .pb-70 {
    padding-bottom: 70px;
  }
  
  .pb-75 {
    padding-bottom: 75px;
  }
  
  .pb-80 {
    padding-bottom: 80px;
  }
  
  .pb-85 {
    padding-bottom: 85px;
  }
  
  .pb-90 {
    padding-bottom: 90px;
  }
  
  .pb-95 {
    padding-bottom: 95px;
  }
  
  .pb-100 {
    padding-bottom: 100px;
  }
  
  /*-- Padding Left --*/
  .pl-5 {
    padding-left: 5px;
  }
  
  .pl-10 {
    padding-left: 10px;
  }
  
  .pl-15 {
    padding-left: 15px;
  }
  
  .pl-20 {
    padding-left: 20px;
  }
  
  .pl-25 {
    padding-left: 25px;
  }
  
  .pl-30 {
    padding-left: 30px;
  }
  
  .pl-35 {
    padding-left: 35px;
  }
  
  .pl-40 {
    padding-left: 40px;
  }
  
  .pl-45 {
    padding-left: 45px;
  }
  
  .pl-50 {
    padding-left: 50px;
  }
  
  .pl-55 {
    padding-left: 55px;
  }
  
  .pl-60 {
    padding-left: 60px;
  }
  
  .pl-65 {
    padding-left: 65px;
  }
  
  .pl-70 {
    padding-left: 70px;
  }
  
  .pl-75 {
    padding-left: 75px;
  }
  
  .pl-80 {
    padding-left: 80px;
  }
  
  .pl-85 {
    padding-left: 85px;
  }
  
  .pl-90 {
    padding-left: 90px;
  }
  
  .pl-95 {
    padding-left: 95px;
  }
  
  .pl-100 {
    padding-left: 100px;
  }
  
  /*-- Padding Right --*/
  .pr-5 {
    padding-right: 5px;
  }
  
  .pr-10 {
    padding-right: 10px;
  }
  
  .pr-15 {
    padding-right: 15px;
  }
  
  .pr-20 {
    padding-right: 20px;
  }
  
  .pr-25 {
    padding-right: 25px;
  }
  
  .pr-30 {
    padding-right: 30px;
  }
  
  .pr-35 {
    padding-right: 35px;
  }
  
  .pr-40 {
    padding-right: 40px;
  }
  
  .pr-45 {
    padding-right: 45px;
  }
  
  .pr-50 {
    padding-right: 50px;
  }
  
  .pr-55 {
    padding-right: 55px;
  }
  
  .pr-60 {
    padding-right: 60px;
  }
  
  .pr-65 {
    padding-right: 65px;
  }
  
  .pr-70 {
    padding-right: 70px;
  }
  
  .pr-75 {
    padding-right: 75px;
  }
  
  .pr-80 {
    padding-right: 80px;
  }
  
  .pr-85 {
    padding-right: 85px;
  }
  
  .pr-90 {
    padding-right: 90px;
  }
  
  .pr-95 {
    padding-right: 95px;
  }
  
  .pr-100 {
    padding-right: 100px;
  }
  
  .pb-60 {
    padding-bottom: 60px;
  }
  
  .pb-105 {
    padding-bottom: 105px;
  }
  
  .pt-105 {
    padding-top: 105px;
  }
  
  .pb-170 {
    padding-bottom: 170px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .pb-170 {
      padding-bottom: 80px;
    }
  }
  
  .pb-230 {
    padding-bottom: 230px;
  }
  
  .pt-225 {
    padding-top: 225px;
  }
  
  .pt-226 {
    padding-top: 226px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .pt-226 {
      padding-top: 112px;
    }
  }
  
  .pb-233 {
    padding-bottom: 233px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .pb-233 {
      padding-bottom: 190px;
    }
  }
  
  .pb-300 {
    padding-bottom: 300px;
    /* Small devices */
  }
  @media (max-width: 767px) {
    .pb-300 {
      padding-bottom: 190px;
    }
  }
  
  .pb-377 {
    padding-bottom: 377px;
  }
  
  .pb-390 {
    padding-bottom: 390px;
    /* Large devices */
    /* Medium devices */
  }
  @media (max-width: 1199px) {
    .pb-390 {
      padding-bottom: 250px;
    }
  }
  @media (max-width: 991px) {
    .pb-390 {
      padding-bottom: 180px;
    }
  }
  
  .pb-425 {
    padding-bottom: 425px;
    /* Large devices */
    /* Medium devices */
  }
  @media (max-width: 1199px) {
    .pb-425 {
      padding-bottom: 250px;
    }
  }
  @media (max-width: 991px) {
    .pb-425 {
      padding-bottom: 230px;
    }
  }
  
  /*-- margin Left And Right --*/
  .mx-5 {
    margin-right: 5px;
    margin-left: 5px;
  }
  
  .mx-10 {
    margin-right: 10px;
    margin-left: 10px;
  }
  
  .mx-15 {
    margin-right: 15px;
    margin-left: 15px;
  }
  
  .mx-20 {
    margin-right: 20px;
    margin-left: 20px;
  }
  
  .mx-25 {
    margin-right: 25px;
    margin-left: 25px;
  }
  
  .mx-30 {
    margin-right: 30px;
    margin-left: 30px;
  }
  
  .mx-35 {
    margin-right: 35px;
    margin-left: 35px;
  }
  
  .mx-40 {
    margin-right: 40px;
    margin-left: 40px;
  }
  
  .mx-45 {
    margin-right: 45px;
    margin-left: 45px;
  }
  
  .mx-50 {
    margin-right: 50px;
    margin-left: 50px;
  }
  
  .mx-55 {
    margin-right: 55px;
    margin-left: 55px;
  }
  
  .mx-60 {
    margin-right: 60px;
    margin-left: 60px;
  }
  
  .mx-65 {
    margin-right: 65px;
    margin-left: 65px;
  }
  
  .mx-70 {
    margin-right: 70px;
    margin-left: 70px;
  }
  
  .mx-75 {
    margin-right: 75px;
    margin-left: 75px;
  }
  
  .mx-80 {
    margin-right: 80px;
    margin-left: 80px;
  }
  
  .mx-85 {
    margin-right: 85px;
    margin-left: 85px;
  }
  
  .mx-90 {
    margin-right: 90px;
    margin-left: 90px;
  }
  
  .mx-95 {
    margin-right: 95px;
    margin-left: 95px;
  }
  
  .mx-100 {
    margin-right: 100px;
    margin-left: 100px;
  }
  
  /*-- margin Top And Bottom --*/
  .my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  
  .my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  
  .my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .my-45 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  
  .my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .my-55 {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  
  .my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .my-65 {
    margin-top: 65px;
    margin-bottom: 65px;
  }
  
  .my-70 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  
  .my-75 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  
  .my-80 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  
  .my-85 {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  
  .my-90 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  
  .my-95 {
    margin-top: 95px;
    margin-bottom: 95px;
  }
  
  .my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
  /*-- margin Top --*/
  .mt-5 {
    margin-top: 5px;
  }
  
  .mt-10 {
    margin-top: 10px;
  }
  
  .mt-15 {
    margin-top: 15px;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mt-25 {
    margin-top: 25px;
  }
  
  .mt-30 {
    margin-top: 30px;
  }
  
  .mt-35 {
    margin-top: 35px;
  }
  
  .mt-40 {
    margin-top: 40px;
  }
  
  .mt-45 {
    margin-top: 45px;
  }
  
  .mt-50 {
    margin-top: 50px;
  }
  
  .mt-55 {
    margin-top: 55px;
  }
  
  .mt-60 {
    margin-top: 60px;
  }
  
  .mt-65 {
    margin-top: 65px;
  }
  
  .mt-70 {
    margin-top: 70px;
  }
  
  .mt-75 {
    margin-top: 75px;
  }
  
  .mt-80 {
    margin-top: 80px;
  }
  
  .mt-85 {
    margin-top: 85px;
  }
  
  .mt-90 {
    margin-top: 90px;
  }
  
  .mt-95 {
    margin-top: 95px;
  }
  
  .mt-100 {
    margin-top: 100px;
  }
  
  /*-- margin Bottom --*/
  .mb-5 {
    margin-bottom: 5px;
  }
  
  .mb-10 {
    margin-bottom: 10px;
  }
  
  .mb-15 {
    margin-bottom: 15px;
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }
  
  .mb-25 {
    margin-bottom: 25px;
  }
  
  .mb-30 {
    margin-bottom: 30px;
  }
  
  .mb-35 {
    margin-bottom: 35px;
  }
  
  .mb-40 {
    margin-bottom: 40px;
  }
  
  .mb-45 {
    margin-bottom: 45px;
  }
  
  .mb-50 {
    margin-bottom: 50px;
  }
  
  .mb-55 {
    margin-bottom: 55px;
  }
  
  .mb-60 {
    margin-bottom: 60px;
  }
  
  .mb-65 {
    margin-bottom: 65px;
  }
  
  .mb-70 {
    margin-bottom: 70px;
  }
  
  .mb-75 {
    margin-bottom: 75px;
  }
  
  .mb-80 {
    margin-bottom: 80px;
  }
  
  .mb-85 {
    margin-bottom: 85px;
  }
  
  .mb-90 {
    margin-bottom: 90px;
  }
  
  .mb-95 {
    margin-bottom: 95px;
  }
  
  .mb-100 {
    margin-bottom: 100px;
  }
  
  /*-- margin Left --*/
  .ml-5 {
    margin-left: 5px;
  }
  
  .ml-10 {
    margin-left: 10px;
  }
  
  .ml-15 {
    margin-left: 15px;
  }
  
  .ml-20 {
    margin-left: 20px;
  }
  
  .ml-25 {
    margin-left: 25px;
  }
  
  .ml-30 {
    margin-left: 30px;
  }
  
  .ml-35 {
    margin-left: 35px;
  }
  
  .ml-40 {
    margin-left: 40px;
  }
  
  .ml-45 {
    margin-left: 45px;
  }
  
  .ml-50 {
    margin-left: 50px;
  }
  
  .ml-55 {
    margin-left: 55px;
  }
  
  .ml-60 {
    margin-left: 60px;
  }
  
  .ml-65 {
    margin-left: 65px;
  }
  
  .ml-70 {
    margin-left: 70px;
  }
  
  .ml-75 {
    margin-left: 75px;
  }
  
  .ml-80 {
    margin-left: 80px;
  }
  
  .ml-85 {
    margin-left: 85px;
  }
  
  .ml-90 {
    margin-left: 90px;
  }
  
  .ml-95 {
    margin-left: 95px;
  }
  
  .ml-100 {
    margin-left: 100px;
  }
  
  /*-- margin Right --*/
  .mr-5 {
    margin-right: 5px;
  }
  
  .mr-10 {
    margin-right: 10px;
  }
  
  .mr-15 {
    margin-right: 15px;
  }
  
  .mr-20 {
    margin-right: 20px;
  }
  
  .mr-25 {
    margin-right: 25px;
  }
  
  .mr-30 {
    margin-right: 30px;
  }
  
  .mr-35 {
    margin-right: 35px;
  }
  
  .mr-40 {
    margin-right: 40px;
  }
  
  .mr-45 {
    margin-right: 45px;
  }
  
  .mr-50 {
    margin-right: 50px;
  }
  
  .mr-55 {
    margin-right: 55px;
  }
  
  .mr-60 {
    margin-right: 60px;
  }
  
  .mr-65 {
    margin-right: 65px;
  }
  
  .mr-70 {
    margin-right: 70px;
  }
  
  .mr-75 {
    margin-right: 75px;
  }
  
  .mr-80 {
    margin-right: 80px;
  }
  
  .mr-85 {
    margin-right: 85px;
  }
  
  .mr-90 {
    margin-right: 90px;
  }
  
  .mr-95 {
    margin-right: 95px;
  }
  
  .mr-100 {
    margin-right: 100px;
  }
  
  .mb-200 {
    margin-bottom: 160px;
  }
  
  .mt-n30 {
    margin-top: -30px;
  }
  
  .mt-n150 {
    margin-top: -150px;
  }
  
  .mt-n116 {
    margin-top: -116px;
  }
  
  .mt-n108 {
    margin-top: -108px;
  }
  
  .mt-n110 {
    margin-top: -110px;
  }
  
  .mb-n116 {
    margin-bottom: -116px;
  }
  
  .mt-n355 {
    margin-top: -355px;
  }
  
  .space,
  .space-top {
    padding-top: var(--section-space);
  }
  
  .space,
  .space-lg-bottom,
  .space-bottom {
    padding-bottom: var(--section-space);
  }
  
  .space2,
  .space2-top {
    padding-top: calc(var(--section-space) - 20px);
  }
  
  .space2,
  .space2-bottom {
    padding-bottom: calc(var(--section-space) - 20px);
  }
  
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space) - 45px);
  }
  
  .space-extra,
  .space-lg-extra-bottom,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 45px);
  }
  
  .space-extra2,
  .space-extra2-top {
    padding-top: calc(var(--section-space) - 60px);
  }
  
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: calc(var(--section-space) - 60px);
  }
  
  .custom-space-bottom {
    padding-bottom: 275px;
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .space,
    .space-top {
      padding-top: var(--section-space-mobile);
    }
    .custom-space-bottom,
    .space,
    .space-bottom {
      padding-bottom: var(--section-space-mobile);
    }
    .space-extra,
    .space-extra-top {
      padding-top: calc(var(--section-space-mobile) - 30px);
    }
    .space-extra,
    .space-extra-bottom {
      padding-bottom: calc(var(--section-space-mobile) - 30px);
    }
    .space-top-md-none {
      padding-top: 0;
    }
    .space-extra2,
    .space-extra2-top {
      padding-top: 60px;
    }
    .space-extra2,
    .space-extra2-bottom {
      padding-bottom: 60px;
    }
    .space-lg-extra-bottom,
    .space-lg-bottom {
      padding-bottom: 0;
    }
  }/*# sourceMappingURL=main.css.map */

  .flex-container_transparencia {
    display: flex;
    justify-content: center;
    align-items: center;
}

  @media (min-width: 832px) {
    .flex-container_transparencia {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .npad{
      padding: 150px;
    }
}

.service-card-wrapper_transparencia.style1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  place-content: center;
  place-items: center;
  gap: 30px;
}
@media (max-width: 1500px) {
  .service-card-wrapper_transparencia.style1 {
        display: flex;
        justify-content: center;
        align-items: center;
  }
}
@media (max-width: 1299px) {
  .service-card-wrapper_transparencia.style1 {
        display: flex;
        justify-content: center;
        align-items: center;
  }
}
@media (max-width: 991px) {
  .service-card-wrapper_transparencia.style1 {
        display: flex;
        justify-content: center;
        align-items: center;
  }
}
@media (max-width: 767px) {
  .service-card-wrapper_transparencia.style1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    place-content: center;
    place-items: center;
    gap: 30px;
  }
}