 
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bellefair&family=Roboto:ital,wght@0,100..900;1,100..900&family=DM+Serif+Display:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Teko:wght@300..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");



@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --td-ff-body: "Inter", serif;
  --td-ff-heading: "Plus Jakarta Sans", serif;
  --td-ff-dm: "DM Serif Display", serif;
  --td-ff-dm-sans: "DM Sans", sans-serif;
  --td-ff-manrope: "Manrope", serif;
  --td-ff-bebas: "Bebas Neue", serif;
  --td-ff-teko: "Teko", sans-serif;
  --td-ff-rethink: "Rethink Sans", serif;
  --td-ff-bellefair: "Bellefair", serif;
  --td-ff-roboto: "Roboto", serif;
  --td-ff-fontawesome: "Font Awesome 6 Pro";
  --td-common-white: #fff;
  --td-common-black: #1c1d1f;
  --td-common-black-2: #000;
  --td-common-black-3: #010101;
  --td-common-black-4: #2d2d2d;
  --td-common-black-5: #1f1306;
  --td-common-green: #85ee00;
  --td-common-yellow: #fcff45;
  --td-common-green-2: #8bea7c;
  --td-grey-1: #6f7071;
  --td-grey-2: #f5f5f5;
  --td-grey-3: #90a49a;
  --td-grey-4: #787875;
  --td-grey-5: #555855;
  --td-grey-6: #756c63;
  --td-theme-primary: #beff01;
  --td-theme-secondary: #ff481f;
  --td-theme-1: #05341d;
  --td-theme-2: #ff9857;
  --td-theme-3: #063231;
  --td-theme-4: #e08824;
  --td-border-1: rgba(28, 29, 31, 0.15);
}

 
body {
  font-family: var(--td-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--td-grey-1);
  line-height: 26px;
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "salt", "ss01", "ss03", "cv01", "cv02", "cv03", "cv04", "cv05", "cv06", "cv09", "cv10";
}


 html::-webkit-scrollbar {
            width: 3px; /* Largura mais fina */
            height: 3px;
        }

        html::-webkit-scrollbar-track {
            background: #000  /* Deixa a trilha transparente */
        }

        html::-webkit-scrollbar-thumb {
            background-color: transparent; /* Deixa o "polegar" transparente por padrão */
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        /* Mostra e colore o polegar da barra de rolagem quando o mouse está sobre a página */
        html:hover::-webkit-scrollbar-thumb {
            background-color: #FF481f; /* Cor laranja do seu projeto */
        }

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--td-common-black);
  text-decoration: none;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

.scrool-bar::-webkit-scrollbar {
  width: 5px;
  display: block;
  overflow: hidden;
  position: relative;
  margin-left: 5px;
}

.scrool-bar::-webkit-scrollbar-thumb {
  background-color: #e1e1e1;
  outline: 1px solid #e1e1e1;
}

.scrool-bar::-mos-webkit-scrollbar-thumb {
  background-color: #e1e1e1;
  outline: 1px solid #e1e1e1;
}

.scrool-height {
  width: 100%;
  height: 240px;
  overflow-y: scroll;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: #fff;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 15px;
  color: var(--td-grey-1);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #a2a9ac;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--td-grey-1);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--td-grey-1);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--td-grey-1);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--td-grey-1);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  color: var(--td-grey-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--td-common-black);
  font-weight: 700;
  font-family: var(--td-ff-heading);
  line-height: 1.1;
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 32px;
}

.f-n {
  font-size: 15px !important;
  margin-bottom: 0px !important;
}


.design-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.design-list .dot {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ec4899 0%, #8b5cf6 100%);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

.design-list strong {
    display: block;
    font-weight: 600;
    color: #000;
}

.design-list p {
    margin: 5px 0 0;
    color: #64748b;
}


label {
  color: var(--td-common-black);
  cursor: pointer;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--td-common-black);
  color: var(--td-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--td-common-black);
  color: var(--td-common-white);
  text-shadow: none;
}

::selection {
  background: var(--td-common-black);
  color: var(--td-common-white);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--td-grey-1);
}

*::-moz-placeholder {
  color: var(--td-grey-1);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--td-grey-1);
  font-size: 16px;
  opacity: 1;
}



/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.lh-28 {
  line-height: 28px;
}

.td-round-15 {
  border-radius: 15px;
}

.td-round-25 {
  border-radius: 25px;
}

.z-index-m-1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.z-index-999 {
  z-index: 999;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-24 {
  --bs-gutter-x: 24px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-60 {
  --bs-gutter-x: 60px;
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

.gx-90 {
  --bs-gutter-x: 90px;
}

.gx-100 {
  --bs-gutter-x: 100px;
}

.underline-black {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-black:hover {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-white {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-white:hover {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}

.td-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.fix {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

/*=============================
    - Bootstrap Custom
=============================*/

/* Corrige o vazamento do título Conference/Presentations no mobile */
@media (max-width: 767.98px) {
  .td-service-3-title-wrap {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: center;
  }
  .td-section-3-title {
    font-size: 1.5rem !important;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;
  }
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.td-rounded-10 {
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .container-1750 {
    max-width: 1750px;
  }
}
@media (min-width: 1400px) {
  .container-1680 {
    max-width: 1680px;
  }
}
@media (min-width: 1400px) {
  .container-1670 {
    max-width: 1670px;
  }
}
@media (min-width: 1400px) {
  .container-1750 {
    max-width: 1750px;
  }
}
@media (min-width: 1400px) {
  .container-1650 {
    max-width: 1650px;
  }
}
@media (min-width: 1400px) {
  .container-1550 {
    max-width: 1550px;
  }
}
@media (min-width: 1400px) {
  .container-1710 {
    max-width: 1710px;
  }
}
@media (min-width: 1400px) {
  .container-1530 {
    max-width: 1530px;
  }
}
@media (min-width: 1400px) {
  .container-1830 {
    max-width: 1830px;
  }
}


.fundo {
background-color: #4caf50;
/* background-image: url("../img/cta/bg.jpg"); */
}


.td-btn {
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--td-common-black);
  font-family: var(--td-ff-heading);
  border: 1px solid var(--td-border-1);
  border-radius: 24px;
}
.td-btn-lg {
  padding: 9px 24px;
}
.td-btn-switch-animation {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.td-btn-switch-animation .btn-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}
.td-btn-switch-animation .btn-icon {
  margin-left: 6px;
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 0;
  z-index: 3;
}
.td-btn-switch-animation .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.td-btn-switch-animation:hover .btn-text {
  transition-delay: 0.1s;
  transform: translateX(23px);
}
.td-btn-switch-animation:hover .btn-icon {
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}
.td-btn-switch-animation:hover .btn-icon + .btn-icon {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 225ms;
}
.td-btn-switch-text > span {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.td-btn-switch-text.btn-lg > span {
  padding: 15px 31px;
}
.td-btn-switch-text .btn-double-text {
  transition: opacity 0.65s, transform 0.85s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  position: relative;
}
.td-btn-switch-text .btn-double-text::before {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 50%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  transition: opacity 0.5s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.td-btn-switch-text:hover.bg-hover-black {
  background: var(--tp-common-black-4);
}
.td-btn-switch-text:hover.bg-hover-theme-1 {
  background: var(--tp-theme-1);
}
.td-btn-switch-text:hover .btn-double-text {
  transform: translateY(-200%);
}
.td-btn-switch-text:hover .btn-double-text::before {
  transform: translate(-50%, 150%);
  opacity: 1;
}
.td-btn-2 {
  font-family: var(--td-ff-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 30px;
  padding: 20px 35px;
  line-height: 1;
  background: #ff481f;
  position: relative;
  z-index: 1;
}
.td-btn-menu-black {
  background: var(--td-common-black);
  color: var(--td-common-white);
  padding: 12px 24px;
}
.td-btn-menu-black:hover {
  color: var(--td-common-white);
}
.td-btn-4 {
  font-family: var(--td-ff-teko);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--td-common-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 27px;
}
.td-btn-4:hover {
  color: var(--td-common-white);
}
.td-btn-4-lg {
  padding: 13px 31px;
}
.td-btn-5 {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: var(--td-common-black-4);
  border-radius: 100%;
  background: var(--td-common-white);
  width: 170px;
  height: 170px;
  display: inline-block;
  padding: 47px 20px;
  border: 1px solid transparent;
}
.td-btn-5:hover {
  border-color: rgba(45, 45, 45, 0.2);
  background: transparent;
}
.td-btn-5-border {
  border-color: rgba(45, 45, 45, 0.2);
  background: transparent;
}
.td-btn-5-border:hover {
  background: var(--td-common-white);
  border-color: var(--td-common-white);
}
.td-btn-7 {
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  color: var(--td-common-black-5);
  background: var(--td-common-white);
  padding: 15px 34px;
  border-radius: 30px;
}
.td-btn-7:hover {
  background: var(--td-theme-4);
  color: var(--td-common-white);
}
.td-btn-12 {
  font-family: var(--td-ff-manrope);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--td-common-black);
  border: 1px solid rgba(28, 29, 31, 0.2);
  border-radius: 30px;
  padding: 12px 24px;
  display: inline-block;
}
.td-btn-12:hover {
  background: var(--td-theme-primary);
  border-color: var(--td-theme-primary);
}
.td-btn-group-border:hover .td-btn-2 {
  border: 1px solid var(--td-theme-primary);
  background: var(--td-theme-primary);
  color: var(--td-common-black);
}
.td-btn-group-border:hover .td-btn-circle {
  border: 1px solid var(--td-theme-primary) !important;
  background: var(--td-theme-primary) !important;
  color: var(--td-common-black) !important;
}
.td-btn-group-border .td-btn-2 {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--td-common-black);
  color: var(--td-common-white);
}
.td-btn-group-border .td-btn-circle {
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background-color: var(--td-common-black) !important;
  color: var(--td-common-white) !important;
}

.td-btn-group {
  display: flex;
  width: fit-content;
}
.td-btn-group > *:nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-end: -52px;
}
.td-btn-group > *:nth-child(2) {
  transform: scale3d(1, 1, 1);
}
.td-btn-group > *:nth-child(3) {
  transform: scale3d(1, 1, 1);
  margin-inline-start: 0;
}
.td-btn-group:hover > *:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-inline-end: 0;
}
.td-btn-group:hover > *:nth-child(2) {
  transform: scale3d(1, 1, 1);
}
.td-btn-group:hover > *:nth-child(3) {
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-start: -52px;
}
.td-btn-group .td-btn-circle {
  text-align: center;
  width: 54px;
  height: 54px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ff481f;
  color: #fff;
}
.td-btn-group .td-btn-circle i {
  transform: rotate(-45deg);
}
.td-btn-group .wc-btn-primary {
  font-size: 16px;
  font-weight: 400;
  padding: 0 24px;
  background-color: var(--td-theme-primary);
  color: var(--td-common-black);
}
.td-btn-group-black .td-btn-2 {
  background: var(--td-common-black);
  color: var(--td-common-white);
}
.td-btn-group-black .td-btn-circle {
  background-color: var(--td-common-black);
  color: var(--td-common-white);
}
.td-btn-group-yellow {
  width: inherit;
}
.td-btn-group-yellow .td-btn-2 {
  background: var(--td-theme-secondary);
  color: var(--td-common-white);
}
.td-btn-group-yellow .td-btn-circle {
  background-color: var(--td-theme-secondary);
  color: var(--td-common-white);
}

/*=============================
    10. Preloader
===============================*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid #8a2be2;
  border-top-color: #ff481f;
  height: 9em;
  margin: 0 auto 1.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: #fff;
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: #fff;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #fff;
  margin-bottom: 0;
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #000;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

/*=============================
    02. background
===============================*/
.blue-bg {
  background: var(--td-common-blue);
}

.green-bg {
  background: var(--td-theme-primary);
}

.green-bg-2 {
  background: var(--td-common-green);
}

.grey-bg {
  background: #f2f7f7;
}

.grey-bg-2 {
  background: var(--td-grey-2);
}

.grey-bg-3 {
  background: #eee;
}

.black-bg {
  background: var(--td-common-black);
}

.theme-bg {
  background: var(--td-theme-1);
}

/*=============================
	 09. OffCanvas
===============================*/
.offCanvas-toggle {
  position: relative;
  margin-right: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offCanvas-toggle {
    margin-right: 25px;
    padding-right: 25px;
  }
  .td-awards-title-wrap {
    display: flex
;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: center;
    margin-bottom: 40px;
}

.mt-150-m{
    margin-top: 100px !important;
}
}
@media (max-width: 575px) {
  .offCanvas-toggle {
    display: none;
  }
}
.offCanvas-toggle::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--td-border-1);
}
.offCanvas-toggle .menu-tigger {
  color: var(--td-common-black);
}
.offCanvas-toggle .menu-tigger:hover {
  color: var(--td-theme-primary);
}
.offCanvas-toggle-two {
  margin-right: 0;
  padding-right: 0;
  padding-left: 40px;
}
.offCanvas-toggle-two::before {
  right: auto;
  left: 0;
  height: 104px;
}

.offCanvas__info {
  background: var(--td-common-white) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 400px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
@media (max-width: 575px) {
  .offCanvas__info {
    width: 100%;
  }
}
.offCanvas__info.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offCanvas__info::-webkit-scrollbar {
  width: 0px;
}
.offCanvas__close-icon {
  margin-top: -16px;
  text-align: right;
}
.offCanvas__close-icon button {
  background: transparent;
  color: var(--td-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--td-theme-primary);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.offCanvas__close-icon button:hover {
  background: var(--td-theme-primary);
  color: var(--td-common-white);
}
.offCanvas__logo img {
  max-height: 34px;
}
.offCanvas__side-info {
  border-top: 1px solid var(--td-border-1);
  padding-top: 25px;
}
.offCanvas__side-info .contact-list h4 {
  color: var(--td-common-black);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}
.offCanvas__side-info .contact-list p {
  margin-bottom: 0;
}
.offCanvas__side-info .contact-list a {
  color: var(--td-grey-1);
  margin: 0;
  margin-bottom: 2px;
  line-height: 26px;
  font-family: var(--td-ff-poppins);
  display: block;
}
.offCanvas__side-info .contact-list a:hover {
  color: var(--td-theme-secondary);
}
.offCanvas__social-icon a {
  color: var(--td-theme-primary);
  display: inline-block;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--td-theme-primary);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.offCanvas__social-icon a:hover {
  background: var(--td-theme-primary);
  color: var(--td-common-white);
}
.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

/*=============================
    	05. cursor scss
===============================*/
.mouse-follower {
  z-index: 10;
}
.mouse-follower span {
  z-index: 10;
  opacity: 1;
  top: -10px;
  left: -10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  position: fixed;
  transition: 180ms ease-in-out;
  pointer-events: none;
}
.mouse-follower .cursor-outline {
  height: 30px;
  width: 30px;
  border: 1px solid #000;
}
.mouse-follower .cursor-dot {
  height: 6px;
  width: 6px;
  background: #000;
}
.mouse-follower.hide-cursor span {
  border-color: transparent;
  background: transparent;
}
.mouse-follower.highlight-cursor-head {
  cursor: none;
}
.mouse-follower.highlight-cursor-head .cursor-outline {
  height: 0;
  width: 0;
}
.mouse-follower.highlight-cursor-head .cursor-dot {
  height: 150px;
  width: 150px;
  background: #fff;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .mouse-follower.highlight-cursor-head .cursor-dot {
    height: 80px;
    width: 80px;
  }
}
.mouse-follower.highlight-cursor-para {
  cursor: none;
}
.mouse-follower.highlight-cursor-para .cursor-outline {
  height: 0;
  width: 0;
}
.mouse-follower.highlight-cursor-para .cursor-dot {
  height: 100px;
  width: 100px;
  background: #fff;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .mouse-follower.highlight-cursor-para .cursor-dot {
    height: 60px;
    width: 60px;
  }
}



.generated-time-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: 600;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b26d9, #f042bc, #ff794d);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
/* Centraliza verticalmente o texto do card de educação/certificação */


.generated-time {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b26d9, #f042bc, #ff794d) !important;
  color: #fff !important; /* força o branco */
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.td-service-6-item .col-lg-7 {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 120px; /* ajuste conforme necessário para o visual desejado */
}

.td-service-6-text {
  width: 100%;
  margin-bottom: 0; /* remove espaço extra se necessário */
}
/*=========================
      03. Breadcrumb
===========================*/
.td-breadcrumb-spacing {
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-breadcrumb-spacing {
    padding-top: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-breadcrumb-wrap {
    margin-left: 0;
  }
}
.td-breadcrumb-wrap .subtitle {
  font-weight: 600;
  font-size: 18px;
  color: var(--td-common-black);
}
.td-breadcrumb-wrap .text {
  margin-left: 340px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-breadcrumb-wrap .text {
    margin-left: 0;
  }
}
.td-breadcrumb-2-spacing {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-breadcrumb-2-spacing {
    padding-top: 90px;
  }
}

/*=============================
    11. Scroll Top
===============================*/
.scroll__top {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 0;
  z-index: 99;
  color: var(--td-common-white);
  text-align: center;
  cursor: pointer;
  background: var(--td-common-black);
  transition: 1s ease;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .scroll__top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 575px) {
  .scroll__top.open {
    bottom: 15px;
    display: none;
  }

  footer {
    padding-bottom: 70px;
}


.td-service-5-wrapper.border-b {
  
    padding-top: 0px !important;
}

}


.white {
  color: var(--td-common-white) !important;
}


/* Centraliza o logo no header em telas menores */
@media (max-width: 991.98px) {
  .logo {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile {
       width: 100% !important;
  }
}

.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll__top:hover {
  background: var(--td-theme-secondary);
  color: var(--td-common-white);
}

/*=============================
	13. Section Title
===============================*/
.td-section-subtitle {
  font-weight: 600;
  font-size: 18px;
  color: var(--td-common-black);
}
.td-section-title {
  font-weight: 800;
  font-size: 160px;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-section-title {
    font-size: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-title {
    font-size: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-title {
    font-size: 80px;
  }
}
.td-section-title-capi {
  font-weight: 800;
  font-size: 160px;
  letter-spacing: -0.03em;
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
  transform: translateY(-20px);
  margin-left: 270px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-title-capi {
    font-size: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-title-capi {
    margin-left: 0;
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-text {
    margin-right: 40px;
  }
}
.td-section-2-subtitle {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: #595c61;
}
.td-section-2-title {
  font-family: var(--td-ff-dm-sans);
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-section-2-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-section-2-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-2-title {
    font-size: 40px;
  }
  .td-section-2-title br {
    display: none;
  }
}
.td-section-2-title span {
  color: rgba(10, 17, 25, 0.6);
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-section-2-title span {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-2-title span {
    font-size: 40px;
  }
}
.td-section-3-subtitle {
  font-family: var(--td-ff-manrope);
  font-weight: 500;
  font-size: 18px;
  color: var(--td-common-black-2);
}


.mt-c {
  margin-top: 20px !important;
}

.icon-gradient-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b115a, #8a2be2, #ff481f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}


.svg-white {
  width: 40px;
  filter: brightness(0) invert(1);
}

.cc {

    background: linear-gradient(135deg, #1b115a, #8a2be2, #ff481f);
}

.td-brand-item img {
  filter: brightness(0) invert(1);
}


.slide-jordana {
  background-color: #171717 !important;
    padding: 26px 0px 26px 0px !important;
}

.aa {
      font-family: var(--td-ff-manrope);
    font-weight: 300 !important;
    font-size: 30px  !important;
    color: var(--td-common-black-2);
    line-height: 40px !important;
}

.rosa {
font-family: "Montserrat", sans-serif !important;
font-size: 140px !important;
font-weight: 200 !important;
}

.td-section-3-title {
  font-family: var(--td-ff-manrope);
  font-weight: 300;
  font-size: 65px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--td-common-black-2);
}


.nono {
    font-family: var(--td-ff-manrope);
    font-weight: 300 !important;
    font-size: 40px !important;
    line-height: 1;
    letter-spacing: -0.10em !important;
    color: var(--td-common-black-2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-3-title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .td-section-3-title {
    font-size: 40px;
  }

  .pt-craff {
    padding-top: 100px !important;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-3-title br {
    display: none;
  }
}
.td-section-3-title-white {
  color: var(--td-common-white);
}
.td-section-3-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-section-4-title {
  font-family: var(--td-ff-teko);
  font-weight: 400;
  font-size: 80px;
  line-height: 94%;
  text-transform: uppercase;
  color: var(--td-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-section-4-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-4-title {
    font-size: 60px;
  }
  .td-section-4-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .td-section-4-title {
    font-size: 40px;
  }
}
.td-section-4-title span {
  color: var(--td-common-green-2);
}
.td-section-4-subtitle {
  font-weight: 400;
  font-size: 18px;
  display: inline-block;
  color: var(--td-common-green-2);
}
.td-section-4-text {
  color: var(--td-grey-3);
}
.td-section-5-title {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  color: var(--td-common-black-4);
}
.td-section-5-title span {
  color: var(--td-grey-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-section-5-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-5-title {
    font-size: 60px;
  }
  .td-section-5-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .td-section-5-title {
    font-size: 40px;
  }
}
.td-section-5-bigtitle {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 180px;
  line-height: 1;
  color: var(--td-common-black-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-5-bigtitle {
    font-size: 140px;
  }
}
@media (max-width: 575px) {
  .td-section-5-bigtitle {
    font-size: 70px;
  }
}
.td-section-5-bigtitle span {
  color: #787875;
  margin-left: 250px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-5-bigtitle span {
    margin-left: 0px;
  }
}
.td-section-6-subtitle {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--td-theme-3);
  position: relative;
  padding-left: 20px;
}
.td-section-6-subtitle::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #ffbf43;
  border-radius: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.td-section-6-title {
  font-family: var(--td-ff-rethink);
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--td-theme-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-6-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .td-section-6-title {
    font-size: 40px;
  }
}
.td-section-6-text {
  font-weight: 400;
  color: var(--td-grey-5);
}
.td-section-6-bigtitle {
  font-family: var(--td-ff-rethink);
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  color: var(--td-theme-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-section-6-bigtitle {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-section-6-bigtitle {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-6-bigtitle {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .td-section-6-bigtitle {
    font-size: 50px;
  }
}
.td-section-7-title {
font-family: var(--td-ff-bellefair);
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--td-common-black);
}

.icon-white path {
  stroke: #fff;
}
.contato {
  color: #ffffff !important
}
@media (max-width: 575px) {
  .td-section-7-title {
    font-size: 35px;
  }
}
.td-section-7-title-white {
  color: var(--td-common-white);
}
.td-section-7-subtitle {
  color: #756c63;
}
.td-section-7-subtitle::before {
  background: var(--td-theme-4);
}
.td-section-page-title {
  font-size: 79px;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-section-page-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-section-page-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-page-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .td-section-page-title {
    font-size: 35px;
  }
}
.td-section-page-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-section-page-bigtitle {
  font-size: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-section-page-bigtitle {
    font-size: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-page-bigtitle {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .td-section-page-bigtitle {
    font-size: 60px;
  }
}

.inner-subtitle {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: #595c61;
}

.td-text-invert {
  line-height: 0.94;
}

.td-text-invert > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, rgb(28, 29, 31) 50%, rgb(168, 169, 169) 50%);
}

.td-text-opacity {
  line-height: 0.94;
}

.td-text-opacity > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, rgb(6, 50, 49) 50%, rgb(168, 169, 169) 50%);
}

/*=============================
	07. Mobile Menu
===============================*/
.tdmobile__search {
  padding: 0 20px 25px 25px;
}
.tdmobile__search form {
  position: relative;
}
.tdmobile__search input {
  border: 1px solid #d9e1e1;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  background: var(--td-common-white);
  font-family: var(--td-ff-poppins);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  padding-right: 50px;
  color: var(--td-grey-1);
}
.tdmobile__search input:focus {
  border-color: var(--td-common-black);
}
.tdmobile__search input::placeholder {
  font-family: var(--td-ff-poppins);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--td-grey-1);
}
.tdmobile__search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--td-common-black);
}
.tdmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 350px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 9991;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}
@media (max-width: 575px) {
  .tdmobile__menu {
    width: 100%;
  }
}
.tdmobile__menu .navbar-collapse {
  display: block !important;
}
.tdmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}
.tdmobile__menu .nav-logo img {
  width: 150px;
}
.tdmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.tdmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tdmobile__menu .navigation li.active > a {
  color: var(--td-grey-1);
}
.tdmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--td-common-white);
  background: var(--td-common-black);
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.tdmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--td-common-white);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tdmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--td-common-white);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tdmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--td-common-black);
}
.tdmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--td-common-white);
}
.tdmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}
.tdmobile__menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 60px 10px 25px;
  font-size: 15px;
  font-weight: 600;
  color: var(--td-common-black);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
  letter-spacing: 1px;
}
.tdmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--td-common-black);
  pointer-events: none;
}
.tdmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}
.tdmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}
.tdmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}
.tdmobile__menu .navigation li > ul {
  display: none;
}
.tdmobile__menu .navigation li > ul > li > ul {
  display: none;
}
.tdmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}
.tdmobile__menu .navigation ul li a {
  display: block;
}
.tdmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.tdmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tdmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tdmobile__menu .navigation > li.active > a::before {
  height: 100%;
}
.tdmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--td-common-black);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 23px;
}
.tdmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.tdmobile__menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  flex-wrap: wrap;
}
.tdmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}
.tdmobile__menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 22px;
  color: var(--td-common-black);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tdmobile__menu .social-links ul li a:hover {
  color: var(--td-grey-1);
}
.tdmobile__menu .tdmenu__action {
  padding: 0 0;
  margin: 0 0;
}
.tdmobile__menu .tdmenu__action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.tdmobile__menu .tdmenu__action > ul li {
  margin: 0 0;
}
.tdmobile__menu .tdmenu__action > ul .header-btn {
  display: block;
}
.tdmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--td-common-white);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}
.tdmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--td-color-white-default);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .tdmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .tdmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .tdmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

/*=============================
    01. Animation
===============================*/
.td-arrow-angle {
  --qode-hover-move-x: 110%;
  --qode-hover-move-y: 100%;
}

.td-arrow-svg-top-right {
  fill: currentColor;
  stroke: none;
}

.td-left-right .td-text {
  transform: translateY(1px);
}

.td-arrow-angle path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}

.td-arrow-angle path:nth-of-type(1) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.td-arrow-angle path:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--qode-hover-move-x))) translateY(var(--qode-hover-move-y));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}

.td-left-right:hover .td-arrow-angle path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.td-left-right:hover .td-arrow-angle path:nth-of-type(1) {
  transform: translateX(var(--qode-hover-move-x)) translateY(calc(-1 * var(--qode-hover-move-y)));
  opacity: 0;
  transition-delay: 0s, 0s;
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}
@keyframes td_animation_spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.td-live-anim-spin {
  animation: td_animation_spin 6s linear infinite;
}

@keyframes tdfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/*=============================
	12. Search
===============================*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--td-common-white);
  backdrop-filter: blur(10px);
  z-index: 99999999;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
}
.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}
.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search__input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
}
.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--td-common-black);
  transition-delay: 0.3s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--td-common-black);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search__input input::placeholder {
  font-size: 24px;
  color: var(--td-grey-1);
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--td-common-black);
  border: none;
  padding: 0 0;
  background: transparent;
}
.search__close {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}
.search-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--td-common-black);
  cursor: pointer;
  background: transparent;
}
.search-close-btn:hover {
  color: var(--td-theme-primary);
}
.search-popup-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: #000d25;
}
.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.55;
  visibility: visible;
  transition-delay: 0s;
}

.search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--td-theme-primary);
  transition: all 0.5s;
  z-index: 1;
}
.search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

/*=============================
	06. minicart
===============================*/
.cartmini__top-title {
  padding: 20px 0;
  border-bottom: 1px solid var(--td-border-primary);
}
.cartmini__top-title h4 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}
.cartmini__close {
  position: absolute;
  top: 17px;
  right: 20px;
}
.cartmini__close-btn {
  background: transparent;
  color: var(--td-common-black);
  font-size: 22px;
}
.cartmini__close-btn:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cartmini__shipping {
  padding: 15px 0;
  border-bottom: 1px solid var(--td-border-primary);
}
.cartmini__shipping .progress {
  height: 10px;
  border-radius: 0;
}
.cartmini__shipping .progress-bar {
  background-color: var(--td-theme-primary);
}
.cartmini__shipping p {
  margin-bottom: 5px;
}
.cartmini__shipping p span {
  color: var(--td-pink-1);
  font-weight: 600;
}
.cartmini__content a {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--td-ff-poppins);
}
.cartmini__content a:hover {
  color: var(--td-theme-04);
}
.cartmini__widget {
  height: 100%;
}
.cartmini__widget::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}
.cartmini__widget-item {
  position: relative;
  display: flex;
  padding: 20px;
  padding-right: 35px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  transition: background-color 0.3s;
}
.cartmini__widget-item:last-child {
  border-bottom: 0;
}
.cartmini__thumb {
  margin-right: 15px;
}
.cartmini__thumb img {
  width: 70px;
  height: 70px;
}
.cartmini__title {
  font-weight: 500;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.2);
}
.cartmini__title h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}
.cartmini__title a:hover {
  color: var(--td-theme-primary);
}
.cartmini__del {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--td-common-black);
  font-size: 14px;
}
.cartmini__del:hover {
  color: var(--td-theme-04);
}
.cartmini__checkout {
  padding: 20px;
  padding-bottom: 85px;
  width: 100%;
  background: var(--td-common-white);
  border-top: 2px solid rgba(129, 129, 129, 0.2);
}
.cartmini__checkout-title h4 {
  font-size: 18px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--td-common-black);
}
.cartmini__checkout-title span {
  float: right;
  font-size: 20px;
  font-weight: 600;
  color: var(--td-theme-primary);
}
.cartmini__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--td-theme-primary);
}
.cartmini__quantity {
  font-size: 12px;
  font-weight: 500;
}
.cartmini__empty {
  margin-top: 150px;
}
.cartmini__empty img {
  margin-bottom: 30px;
}
.cartmini__empty p {
  font-size: 16px;
  color: var(--td-common-black);
  margin-bottom: 15px;
}
.cartmini-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--td-common-white);
  background: var(--td-common-black);
  text-align: center;
  padding: 10px 30px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  overflow: hidden;
  letter-spacing: -0.02em;
  border: 1px solid var(--td-common-black);
  border-radius: 12px;
}
.cartmini-btn:hover {
  border: 1px solid rgba(129, 129, 129, 0.2);
  color: var(--td-common-black);
  background: none;
}
.cartmini-btn-border {
  display: inline-block;
  font-weight: 500;
  color: var(--td-common-black);
  border: 1px solid rgba(129, 129, 129, 0.2);
  text-align: center;
  padding: 10px 30px;
  font-size: 15px;
  text-transform: capitalize;
  border-radius: 12px;
}
.cartmini-btn-border:hover {
  background: var(--td-common-black);
  border: 1px solid var(--td-common-black);
  color: var(--td-common-white);
}
.cartmini__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 330px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  background: var(--td-common-white) none repeat scroll 0 0;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.cartmini__area.cartmini-opened {
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.cartmini__wrapper {
  position: relative;
  min-height: 100%;
}
.cartmini-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 995;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.cartmini-overlay.openeds {
  opacity: 1;
  visibility: visible;
}
.cartmini-item-count {
  top: -10px;
  right: -9px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--td-common-white);
  background-color: var(--td-border-primary);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}
.cartmini-item-count-2 {
  background-color: var(--td-common-black);
  color: var(--td-common-white);
}
.cartmini-item-count-3 {
  background-color: var(--td-theme-primary);
}

.body-overlay.openeds {
  opacity: 1;
  visibility: visible;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}

/*=============================
	14. spacing default responsive
===============================*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-170 {
    padding-top: 115px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-165 {
    padding-top: 110px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-160 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-155 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-150 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-145 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-140 {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-135 {
    padding-top: 95px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-130 {
    padding-top: 90px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-125 {
    padding-top: 85px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-115 {
    padding-top: 75px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-110 {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-105 {
    padding-top: 65px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-100 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-170 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-165 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-160 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-155 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-145 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-135 {
    padding-bottom: 95px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-125 {
    padding-bottom: 85px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-115 {
    padding-bottom: 75px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-110 {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-105 {
    padding-bottom: 65px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-95 {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

/*=============================
	08. Nice Select
===============================*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: normal;
  line-height: 58px;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  width: 100%;
  text-transform: uppercase;
  height: 60px;
  color: var(--tp-grey-1);
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select .current {
  font-size: 15px;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--td-theme-primary);
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 20px;
  font-size: 18px;
  font-family: var(--td-ff-fontawesome);
  color: var(--td-common-black);
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*=============================
    	14. Header
===============================*/
.td-header-spacing {
  padding: 18px 0px;
  border-bottom: 1px solid var(--td-border-1);
}
.td-header-2-btn {
  font-weight: 600;
  font-size: 17px;
  color: var(--td-common-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 19px 25px 19px 8px;
}
.td-header-2-btn:hover {
  background: var(--td-common-white);
}
.td-header-2-btn:hover .icon {
  background: var(--td-theme-secondary);
  color: var(--td-common-white);
}
.td-header-2-btn .icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  background: var(--td-common-white);
  line-height: 45px;
  margin-right: 15px;
  color: var(--td-common-black);
  transition: all 0.3s ease-in-out;
}
.td-header-2-right .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-white);
}
.td-header-2-right .tdmenu-offcanvas-open-bar span {
  background-color: var(--td-common-white);
}
.td-header-2-right .tdmenu-offcanvas-open-btn {
  border: 1px solid rgba(230, 236, 247, 0.15);
}
.td-header-3-wrapper {
  border-bottom: none;
}
.td-header-3-wrapper .tdmenu__navbar-wrap > ul {
  border: none;
  border-radius: 30px;
  backdrop-filter: blur(0);
  background: var(--td-common-white);
}
.td-header-3-wrapper .tdmenu__navbar-wrap > ul > li a {
  color: var(--td-common-black);
  font-family: var(--td-ff-manrope);
}
.td-header-3-wrapper .tdmenu__navbar-wrap > ul > li:not(:last-child) {
  margin-right: 50px;
}
.td-header-3-wrapper .td-header-2-btn {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--td-common-black-2);
  font-family: var(--td-ff-manrope);
}
.td-header-3-wrapper .td-header-2-btn .icon {
  background: var(--td-common-black-2);
  color: var(--td-common-white);
}
.td-header-4-wrapper {
  border: none;
}
.td-header-4-wrapper .tdmenu__navbar-wrap > ul {
  background: none;
  border: none;
}
.td-header-4-wrapper .tdmenu__navbar-wrap > ul > li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  text-transform: uppercase;
  padding: 25px 0px;
}
.td-header-4-wrapper .tdmenu__navbar-wrap > ul > li.active > a, .td-header-4-wrapper .tdmenu__navbar-wrap > ul > li:hover > a {
  color: var(--td-common-white) !important;
}
.td-header-4-wrapper.header-sticky .tdmenu__navbar-wrap > ul > li.active > a, .td-header-4-wrapper.header-sticky .tdmenu__navbar-wrap > ul > li:hover > a {
  color: var(--td-common-black) !important;
}
.td-header-4-wrapper.header-sticky .td-header-search {
  color: var(--td-common-black) !important;
}
.td-header-4-wrapper.header-sticky .tdmenu__navbar-wrap > ul > li > a {
  padding: 15px 0px;
}
.td-header-4-wrapper .tdmenu__navbar-wrap > ul > li .sub-menu li:hover > a, .td-header-4-wrapper .tdmenu__navbar-wrap > ul > li .sub-menu li.active > a {
  color: var(--td-common-black-2);
}
.td-header-4-wrapper .tdmenu__navbar-wrap > ul > li:not(:last-child) {
  margin-right: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-header-4-wrapper .tdmenu__navbar-wrap > ul > li:not(:last-child) {
    margin-right: 30px;
  }
}
.td-header-4-wrapper .tdmenu__navbar-wrap {
  text-align: center;
}
.td-header-4-wrapper .td-header-search {
  color: var(--td-common-white);
}
.td-header-4-wrapper .tdmenu-offcanvas-open-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.td-header-4-wrapper .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-white);
}
.td-header-4-wrapper .tdmenu-offcanvas-open-bar span {
  background-color: var(--td-common-white);
}
.td-header-5-wrapper .tdmenu-offcanvas-open-btn {
  border-radius: 0;
  width: auto;
  height: auto;
  border: none;
}
.td-header-5-wrapper .tdmenu-offcanvas-open-bar span:not(:last-child) {
  width: 36px;
  margin-bottom: 8px;
}
.td-header-5-wrapper .tdmenu-offcanvas-open-bar span {
  width: 36px;
}
.td-header-5-wrapper .tdmenu__navbar-wrap > ul > li a {
  color: var(--td-common-black-4);
  font-size: 16px;
  font-family: var(--td-ff-body);
  text-transform: uppercase;
}
.td-header-5-wrapper .tdmenu__navbar-wrap > ul {
  border: none;
  background: none;
  padding: 0;
}
.td-header-6-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--td-theme-3);
}
.td-header-6-wrapper .tdmenu-offcanvas-open-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.td-header-6-wrapper .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-white);
}
.td-header-6-wrapper .tdmenu-offcanvas-open-bar span {
  background-color: var(--td-common-white);
}
.td-header-6-wrapper .td-btn {
  color: var(--td-common-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.td-header-6-wrapper .td-header-search.search-open-btn {
  color: var(--td-common-white);
}
.td-header-6-wrapper.header-sticky .td-header-search {
  color: var(--td-common-black) !important;
}
.td-header-6-wrapper.header-sticky .tdmenu__navbar-wrap > ul > li > a {
  padding: 15px 0px;
}
.td-header-6-wrapper.header-sticky .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-black);
}
.td-header-6-wrapper.header-sticky .tdmenu-offcanvas-open-bar span {
  background-color: var(--td-common-black);
}
.td-header-6-wrapper.header-sticky .tdmenu-offcanvas-open-btn {
  border: 1px solid rgba(53, 52, 52, 0.2);
}
.td-header-6-wrapper.header-sticky .td-btn {
  border: 1px solid rgba(48, 49, 51, 0.15);
  color: var(--td-common-black);
}
.td-header-7-wrapper {
  border-bottom: none;
}
.td-header-7-wrapper .tdmenu-offcanvas-open-bar span {
  background-color: var(--td-common-white);
}
.td-header-showcase {
  padding: 50px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-header-showcase {
    padding-top: 20px;
  }
}
.td-header-showcase .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-white);
  text-transform: capitalize;
  font-family: var(--td-ff-body);
  font-weight: 400;
  font-size: 18px;
}
.td-header-showcase.header-sticky {
  padding: 20px 0px !important;
}
.td-header-showcase.header-sticky .tdmenu-offcanvas-open-btn {
  border: none !important;
}
.td-header-10-wrapper .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-black-2);
}
.td-header-about-wrapper {
  border: none;
}
.td-header-about-wrapper .tdmenu-offcanvas-open-bar span {
  height: 1px;
  width: 15px;
  background: var(--td-common-white);
}
.td-header-about-wrapper .tdmenu-offcanvas-open-bar span:not(:last-child) {
  width: 15px;
  margin-bottom: 4px;
}
.td-header-about-wrapper .tdmenu-offcanvas-open-btn {
  width: 52px;
  height: 52px;
  display: inline-block;
  background: var(--td-common-black);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
}
.td-header-about-wrapper .tdmenu__navbar-wrap > ul > li:not(:last-child) {
  margin-right: 82px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-header-about-wrapper .tdmenu__navbar-wrap > ul > li:not(:last-child) {
    margin-right: 50px;
  }
}
.td-header-about-wrapper .tdmenu__navbar-wrap > ul > li a {
  font-size: 17px;
}
.td-header-about-wrapper .tdmenu__navbar-wrap > ul > li.active > a, .td-header-about-wrapper .tdmenu__navbar-wrap > ul > li:hover > a {
  color: var(--td-grey-1) !important;
}
.td-header-about-wrapper .tdmenu__navbar-wrap > ul > li .sub-menu li:hover > a, .td-header-about-wrapper .tdmenu__navbar-wrap > ul > li .sub-menu li.active > a {
  color: var(--td-grey-1) !important;
}
.td-header-about-wrapper .tdmenu__navbar-wrap > ul {
  backdrop-filter: blur(0px);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-header-about-wrapper .td-header-right {
    margin-left: -50px;
  }
}
.td-header-blog .tdmenu__navbar-wrap > ul > li a {
  color: var(--td-common-white);
}
.td-header-blog .tdmenu__navbar-wrap > ul > li.active > a, .td-header-blog .tdmenu__navbar-wrap > ul > li:hover > a {
  color: rgba(253, 230, 230, 0.6509803922) !important;
}
.td-header-blog .tdmenu-offcanvas-open-btn {
  background: var(--td-theme-primary);
}
.td-header-blog .tdmenu-offcanvas-open-bar span {
  background: var(--td-common-black);
}
.td-header-blog .td-btn-12 {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--td-common-white);
}
.td-header-blog .td-btn-12:hover {
  color: var(--td-common-black);
}
.td-header-blog.header-sticky .tdmenu__navbar-wrap > ul > li.active > a, .td-header-blog.header-sticky .tdmenu__navbar-wrap > ul > li:hover > a {
  color: var(--td-common-black) !important;
}
.td-header-blog.header-sticky .td-btn-12 {
  border: 1px solid rgba(48, 49, 51, 0.15);
  color: var(--td-common-black);
}
.td-header-sticky-white.header-sticky .tdmenu__navbar-wrap > ul > li a {
  color: var(--td-common-black);
}
.td-header-sticky-white.header-sticky .td-header-2-btn {
  color: var(--td-common-black);
  border: 1px solid rgba(53, 52, 52, 0.2);
}
.td-header-sticky-white.header-sticky .td-header-2-btn .icon {
  background: var(--td-common-black);
  color: var(--td-common-white);
}
.td-header-sticky-white.header-sticky .logo-1 {
  display: none;
}
.td-header-sticky-white.header-sticky .logo-2 {
  display: block !important;
}
.td-header-sticky-white.header-sticky .tdmenu-offcanvas-open-btn {
  border: 1px solid rgba(48, 49, 51, 0.15);
  color: var(--td-common-black);
}
.td-header-sticky-white.header-sticky .tdmenu-offcanvas-open-btn .text {
  color: var(--td-common-black);
}
.td-header-sticky-white.header-sticky .tdmenu-offcanvas-open-bar span {
  background-color: var(--td-common-black);
}
.td-header-sticky-white.header-sticky .td-btn-4 {
  border: 1px solid rgba(48, 49, 51, 0.15);
  color: var(--td-common-black);
}

.header-sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    opacity: 1;
    width: 100%;
    z-index: 999;
    visibility: visible;
    background: rgb(255, 255, 255);
    box-shadow: rgba(23, 23, 24, 0.12) 0px 1px 3px 0px, rgba(36, 62, 21, 0.14) 0px -1px 0px 0px;
    animation: 0.95s ease 0s 1 normal forwards running headerSlideDown;
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(8px);
    /* background: rgb(61 61 61 / 20%); */
    /* padding: 0px 30px 0px 30px; */
    /* border-radius: 15px; */
    box-shadow: inset -1.73px 1.73px 1.73px -1.46px rgb(111 111 111);
    background: rgb(252 252 252 / 40%);
}

/*=============================
    17. Menu
===============================*/
.tdmenu__navbar-wrap > ul {
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.04);
  display: inline-block;
  padding: 0px 30px;
}
.tdmenu__navbar-wrap > ul > li {
  display: inline-block;
  position: relative;
  list-style: none;
}
.tdmenu__navbar-wrap > ul > li:not(:last-child) {
  margin-right: 65px;
}
.tdmenu__navbar-wrap > ul > li a {
  font-weight: 500;
  font-size: 17px;
  display: inline-block;
  color: var(--td-common-white);
  padding: 17px 0px;
}


.m-a {
  color: #000 !important
}


.tdmenu__navbar-wrap > ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  background: var(--td-common-white);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.tdmenu__navbar-wrap > ul > li .sub-menu.sub-menu-right {
  right: 0;
  left: auto;
}
.tdmenu__navbar-wrap > ul > li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.tdmenu__navbar-wrap > ul > li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}
.tdmenu__navbar-wrap > ul > li .sub-menu li a {
  padding: 6px 15px 6px 25px;
  display: block;
  color: var(--td-common-black);
  font-size: 14px;
  margin: 0;
}
.tdmenu__navbar-wrap > ul > li .sub-menu li:hover > a, .tdmenu__navbar-wrap > ul > li .sub-menu li.active > a {
  color: var(--td-theme-secondary);
}
.tdmenu__navbar-wrap > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tdmenu__navbar-wrap > ul > li.active > a, .tdmenu__navbar-wrap > ul > li:hover > a {
  color: var(--td-theme-secondary) !important;
}
.tdmenu__search {
  margin-inline-end: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tdmenu__search {
    margin-left: auto;
  }
}
.tdmenu__search-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 535px;
  border-radius: 100px;
  border: 1px solid #D3D2DF;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tdmenu__search-form {
    width: 485px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tdmenu__search-form {
    width: 380px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tdmenu__search-form {
    width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tdmenu__search-form {
    width: auto;
  }
}
.tdmenu__search-form .select-grp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 12px 0 12px 17px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  width: 153px;
  flex: 0 0 auto;
  position: relative;
}
.tdmenu__search-form .select-grp::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #BDBABB;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tdmenu__search-form .select-grp::after {
    display: none;
  }
}
.tdmenu__search-form .select-grp svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.tdmenu__search-form .select-grp path {
  fill: var(--td-theme-primary);
}
.tdmenu__search-form .form-select {
  outline: none;
  box-shadow: none;
  border: none;
  padding-left: 8px;
  color: var(--td-heading-color);
  font-family: var(--td-heading-font-family);
  font-size: 14px;
}
.tdmenu__search-form .input-grp {
  position: relative;
  flex-grow: 1;
  margin-left: -1px;
}

/* Alinha a altura dos cards de projetos */
.td-pricing-area .row {
  display: flex;
  flex-wrap: wrap;
}

.td-pricing-area .col-xl-4,
.td-pricing-area .col-lg-6,
.td-pricing-area .col-md-6 {
  display: flex;
  flex-direction: column;
}

.td-pricing-6-wrap {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.td-pricing-6-top {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tdmenu__search-form .input-grp {
    display: none;
  }
}
.tdmenu__search-form input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding: 12px 50px 10px 20px;
  height: 50px;
  font-size: 15px;
  font-family: var(--td-heading-font-family);
}
.tdmenu__search-form input::placeholder {
  color: #8D9DB5;
  font-size: 14px;
}
.tdmenu__search-form [type=submit] {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4px;
  width: 44px;
  height: 44px;
  border: none;
  padding: 0 0;
  background: var(--td-theme-primary);
  font-size: 20px;
  color: var(--td-color-white-default);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.tdmenu__search-form [type=submit]:hover {
  background: var(--td-theme-secondary);
  color: var(--td-heading-color);
}
.tdmenu__search-bar {
  flex-grow: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tdmenu__search-bar {
    max-width: 240px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tdmenu__search-bar {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tdmenu__search-bar {
    display: none;
  }
}
.tdmenu__search-bar form {
  position: relative;
}
.tdmenu__search-bar form input {
  display: block;
  width: 100%;
  background: var(--td-color-white-default);
  border: 1px solid var(--td-border-2);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 12px 50px 10px 20px;
  height: 45px;
  font-size: 15px;
  font-family: var(--td-heading-font-family);
}
.tdmenu__search-bar form input::placeholder {
  color: #8D9DB5;
  font-size: 14px;
}
.tdmenu__search-bar form [type=submit] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  right: 10px;
  border: none;
  padding: 0 0;
  background: transparent;
  font-size: 24px;
  color: #8D9DB5;
}
.tdmenu__search-bar form [type=submit]:hover {
  color: var(--td-theme-primary);
}
.tdmenu-offcanvas-open-bar span {
  height: 2px;
  width: 24px;
  background-color: var(--td-common-black);
  display: block;
  border-radius: 6px;
  transition: all 0.4s ease;
}
.tdmenu-offcanvas-open-bar span:not(:last-child) {
  margin-bottom: 4px;
  width: 14px;
}
.tdmenu-offcanvas-open-btn {
  border-radius: 24px;
  width: 116px;
  height: 44px;
  border: 1px solid var(--td-border-1);
  cursor: pointer;
}
.tdmenu-offcanvas-open-btn:hover .tdmenu-offcanvas-open-bar span:not(:last-child) {
  width: 24px;
}
.tdmenu-offcanvas-open-btn .text {
  font-family: var(--td-ff-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1c1d1f;
}

/*=============================
    	15. hero
===============================*/
.td-hero-title .title {
  font-weight: 800;
  font-size: 130px;
  letter-spacing: -0.04em;
  color: var(--td-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-title .title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-title .title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-title .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .td-hero-title .title {
    font-size: 40px;
  }
}
.td-hero-title .title img {
  border-radius: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-title .title img {
    width: 120px;
  }
}
.td-hero-shape {
  top: 180px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.td-hero-bigtext {
  font-weight: 800;
  font-size: 600px;
  color: var(--td-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-bigtext {
    font-size: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-bigtext {
    font-size: 200px;
  }
}
.td-hero-text-slide {
  margin-top: -380px;
  position: relative;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-text-slide {
    margin-top: -240px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-text-slide {
    margin-top: -140px;
  }
}
.td-hero-text-slide-active .swiper-slide {
  width: auto !important;
}
.td-hero-spacing {
  padding-top: 215px;
  padding-bottom: 140px;
}
@media (max-width: 575px) {
  .td-hero-spacing {
    padding-top: 150px;
    padding-bottom: 80px;
  }
}
.td-hero-feature ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-feature ul {
    justify-content: flex-start;
  }
}
.td-hero-feature ul li {
  font-weight: 600;
  font-size: 18px;
  color: var(--td-common-black-2);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-feature ul li {
    margin-right: 30px;
  }
}
.td-hero-feature ul li.td-border {
  width: 120px;
  height: 1px;
  background: var(--td-common-black);
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-feature ul li.td-border {
    display: none;
  }
}
.td-hero-feature ul li span {
  margin-right: 10px;
}
.td-hero-bottom-thumb {
  overflow: hidden;
  position: relative;
  width: auto;
  height: 650px;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-bottom-thumb {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-bottom-thumb {
    height: 250px;
  }
}
.td-hero-bottom-thumb img {
  border-radius: 10px;
}
.td-hero-2-title {
  font-family: var(--td-ff-dm-sans);
  font-weight: 700;
  font-size: 70px;
  line-height: 114%;
  color: var(--td-common-white);
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-2-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .td-hero-2-title {
    font-size: 40px;
  }
}
.td-hero-2-title span {
  display: block;
}
.td-hero-2-title i {
  font-size: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  line-height: 64px;
  text-align: center;
  display: inline-block;
  background: var(--td-theme-secondary);
  transform: rotate(-45deg);
  margin-left: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-2-title i {
    display: none;
  }
}
.td-hero-2-spacing {
  padding-top: 200px;
  padding-bottom: 100px;
}

@media (max-width: 767.98px) {
  .mobile-center {
    text-align: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-2-spacing {
    padding-top: 200px;
  }
}
@media (max-width: 575px) {
  .td-hero-2-spacing {
    padding-top: 120px;
  }
}
.td-hero-2-bigtitle h2 {
  font-family: var(--td-ff-dm-sans);
  font-weight: 900;
  font-size: 260px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--td-common-white);
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-hero-2-bigtitle h2 {
    font-size: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-hero-2-bigtitle h2 {
    font-size: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-2-bigtitle h2 {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .td-hero-2-bigtitle h2 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-2-thumb {
    margin-left: -140px;
  }
}
.td-hero-2-thumb .thumb-1 {
  transform: rotate(-15deg);
  margin-left: 55px;
  width: 295px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-hero-2-thumb .thumb-1 {
    width: 195px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-2-thumb .thumb-1 {
    margin-left: 0;
  }
}
.td-hero-2-thumb .thumb-2 {
  transform: rotate(-164deg);
  position: absolute;
  bottom: -98px;
  margin-left: -78px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-hero-2-thumb .thumb-2 {
    width: 195px;
  }
}
.td-hero-2-thumb .thumb-3 {
  position: absolute;
  top: -93px;
  right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-2-thumb .thumb-3 {
    right: 0;
  }
}
.td-hero-2-thumb .thumb-4 {
  position: absolute;
  bottom: 93px;
  left: 0;
  z-index: 1;
}
.td-hero-3-title {
  font-family: var(--td-ff-manrope);
  font-weight: 800;
  font-size: 150px;
  line-height: 93%;
  letter-spacing: -0.04em;
  color: var(--td-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-3-title {
    font-size: 130px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-hero-3-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-title {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .td-hero-3-title {
    font-size: 65px;
  }
}
@media (max-width: 575px) {
  .td-hero-3-title {
    font-size: 38px;
  }
}
.td-hero-3-title img {
  transform: translateY(-60px);
}
.td-hero-3-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.td-hero-3-content {
  margin-left: -80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-content {
    margin-left: 0;
  }
}
.td-hero-3-content .likes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.td-hero-3-content-para {
  margin-right: 100px;
  margin-left: -80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-content-para {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-hero-3-content-para p {
  font-size: 18px;
  line-height: 32px;
  color: var(--td-common-black-2);
}
.td-hero-3-border {
  width: 572px;
  height: 1px;
  margin-left: -30px;
  background: rgba(0, 0, 0, 0.35);
  margin-right: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-border {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-border {
    margin-left: 0;
  }
}
.td-hero-3-spacing {
  padding-top: 245px;
  padding-bottom: 170px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-3-spacing {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-3-spacing {
    padding-top: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-spacing {
    padding-bottom: 60px;
    padding-top: 143px;
  }
}
.td-hero-3-shape {
  position: absolute;
  top: -51px;
  right: -146px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-shape {
    top: 0;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-3-shape {
    width: 70px;
  }
}
.td-hero-4-title h2 {
    font-family: var(--td-ff-manrope);
    font-weight: 200;
    font-size: 70px;
    /* line-height: 94%; */
    /* letter-spacing: -0.02em; */
    color: var(--td-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-title h2 {
    font-size: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-title h2 {
    font-size: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-4-title h2 {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .td-hero-4-title h2 {
    font-size: 50px;
  }
}
/* Centraliza texto apenas em telas menores que 768px */
@media (max-width: 767.98px) {
  .mobile-center {
    text-align: center !important;
  }
  .mt-mobile-0 {
	margin-top: 0px !important
}
}

@media (max-width: 767.98px) {
  .mobile-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .td-awards-title-wrap {
    display: flex
;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    margin-bottom: 40px;
}
}

/* Centralização total dos counters */
.counter-card {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* Centraliza verticalmente */
  align-items: center;       /* Centraliza horizontalmente */
  height: 100%;              /* Garante que ocupe toda a altura do card */
  text-align: center;        /* Centraliza o texto */
}

.counter-card .counter-number {
  font-size: 2.5rem;         /* Ajuste conforme o design */
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.counter-card .counter-text {
  font-size: 1.1rem;         /* Ajuste conforme o design */
}
/* Adicione ao final do arquivo main.css */
.neo-highlight {
  color: #42b3b6;
}

.td-contact-7-content.wow.fadeInLeft {

    border-radius: 10px;
    background: #ff481f;
    padding: 50px 20px 50px 20px;
    /* position: absolute; */
    /* right: 300px; */
    /* top: -120px; */

}
.td-hero-4-circale {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background: var(--td-theme-1);
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.td-hero-4-circale-inner {
  width: 137px;
  height: 137px;
  text-align: center;
  line-height: 137px;
  z-index: 2;
  background: #8bea7c;
  border-radius: 50%;
}
.td-hero-4-circale .shape {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.td-hero-4-thumb {
  padding-left: 70px;
  margin-right: -100px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-hero-4-thumb {
    padding-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-thumb {
    padding-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
  }
}
.td-hero-4-thumb .thumb {
  border-radius: 50%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-4-thumb .thumb {
    width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-thumb .thumb {
    width: 100%;
            margin-top: 90px;
  }
}
.td-hero-4-thumb .thumb-2 {
  padding: 75px 26px 70px 40px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-thumb .thumb-2 {
    padding: 5px 0 10px 10px;
  }
}
.td-hero-4-thumb .thumb-2 .titles {
  color: #ffffff;
}
.td-hero-4-thumb .thumb-2 img {
  margin-left: 20px;
}
.td-hero-4-thumb .thumb-2 h5 {
  font-family: var(--td-ff-roboto);
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.td-hero-4-bottom {
  display: flex;
  align-items: center;
  margin-left: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-bottom {
    margin-left: 0;
  }
}
.td-hero-4-bottom .icon {
  flex: 0 0 auto;
  margin-right: 132px;
}
.td-hero-4-bottom-content .count {
  font-family: var(--td-ff-teko);
  font-weight: 400;
  font-size: 44px;
  color: #fcff45;
  writing-mode: sideways-lr;
  position: absolute;
  left: -106px;
  display: inline-block;
  top: 100px;
}
.td-hero-4-bottom-content p {
  line-height: 30px;
  color: var(--td-grey-3);
  padding-left: 45px;
}
.td-hero-4-spacing {
  padding-top: 235px;
  padding-bottom: 125px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-4-spacing {
    padding-top: 180px;
  }
}
.td-hero-4-shape {
  position: absolute;
  top: -100px;
  left: 245px;
}
.td-hero-5-title {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 140px;
  line-height: 100%;
  color: var(--td-common-black-4);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-hero-5-title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-5-title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .td-hero-5-title {
    font-size: 40px;
  }
}
.td-hero-5-title span {
  color: var(--td-grey-4);
}
.td-hero-5-shape {
  position: absolute;
  right: 125px;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.td-hero-5-bottom-thumb {
  height: 640px;
  overflow: hidden;
  overflow: hidden;
  position: relative;
  width: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-5-bottom-thumb {
    height: 440px;
  }
}
@media (max-width: 575px) {
  .td-hero-5-bottom-thumb {
    height: 140px;
  }
  .td-hero-5-bottom-thumb img {
    height: 400px;
    object-fit: cover;
  }
}
.td-hero-6-title {
  font-family: var(--td-ff-rethink);
  font-weight: 800;
  font-size: 180px;
  line-height: 94%;
  color: var(--td-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-6-title {
    font-size: 145px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-6-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-6-title {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .td-hero-6-title {
    font-size: 50px;
  }
}
.td-hero-6-title video {
  width: 250px;
  height: 126px;
  object-fit: cover;
  border-radius: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-hero-6-title video {
    width: 150px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .td-hero-6-title video {
    width: 100px;
    height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-6-title-wrap {
    margin-left: 0;
  }
}
.td-hero-6-tag {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.td-hero-6-tag ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 25px;
}
.td-hero-6-tag ul li a {
  font-weight: 500;
  font-size: 20px;
  color: var(--td-common-white);
  padding: 10px 20px;
  display: inline-block;
}
.td-hero-6-slider .swiper-slide {
  width: auto;
}
.td-hero-6-slider .swiper-slide img {
  border-radius: 10px;
}
.td-hero-6-spacing {
  padding-top: 220px;
  padding-bottom: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-6-spacing {
    padding-bottom: 80px;
    padding-top: 170px;
  }
}
.td-hero-6-line {
  position: absolute;
  top: -137px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  z-index: -1;
}
.td-hero-6-line span {
  width: 1px;
  height: 556px;
  display: inline-block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(6, 50, 49, 0.1) 100%);
}
.td-hero-7-title {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 200px;
  line-height: 87%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--td-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-7-title {
    font-size: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-7-title {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .td-hero-7-title {
    font-size: 70px;
  }
}
.td-hero-7-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
}
.td-hero-7-subtitle span {
  font-size: 26px;
  color: #e08824;
}
.td-hero-7-text {
  margin-left: -20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-7-text {
    margin-left: 0;
    text-align: center;
  }
}
.td-hero-7-text p {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.65);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-hero-7-top .td-footer-social {
    margin-right: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-hero-7-top .td-footer-social {
    margin-right: -70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-7-top .td-footer-social {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-7-top .td-footer-social a {
    color: var(--td-common-black);
    background: var(--td-common-white);
    border-color: var(--td-common-white);
  }
}
.td-hero-7-top .td-footer-social a:hover {
  background: var(--td-theme-4);
  border-color: var(--td-theme-4);
  color: var(--td-common-white);
}
.td-hero-7-spacing {
  padding-top: 574px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-hero-7-spacing {
    padding-top: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-7-spacing {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-showcase-mains .td-hero-showcase-thumb {
    margin-left: 0;
  }
}
.td-hero-showcase-mains .swiper-slide-active .td-hero-showcase-number {
  -webkit-animation: tdfadeUp 1s 0.2s forwards;
  animation: tdfadeUp 1s 0.2s forwards;
  animation-fill-mode: both;
}
.td-hero-showcase-mains .swiper-slide-active .td-hero-showcase-title {
  -webkit-animation: tdfadeUp 1s 0.3s forwards;
  animation: tdfadeUp 1s 0.3s forwards;
  animation-fill-mode: both;
}
.td-hero-showcase-mains .swiper-slide-active .td-hero-showcase-thumb {
  -webkit-animation: tdfadeUp 1s 0.4s forwards;
  animation: tdfadeUp 1s 0.4s forwards;
  animation-fill-mode: both;
}
.td-hero-showcase-number {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--td-common-white);
}
.td-hero-showcase-slider-wrap {
  padding-top: 35px;
}
.td-hero-showcase-title {
  font-weight: 600;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--td-common-white);
}
.td-hero-showcase-title a:hover {
  color: var(--td-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-hero-showcase-title {
    font-size: 50px;
  }
}
.td-hero-showcase-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-hero-showcase-bottom {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.td-hero-showcase-social span {
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--td-common-white);
}

/*=============================
    	01. about
===============================*/
.td-about-left span {
  font-weight: 600;
  font-size: 18px;
  color: var(--td-common-black);
  margin-bottom: 320px;
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-about-left span {
    margin-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-left span {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-left-thumb {
    margin-left: 0;
  }
}
.td-about-left-thumb img {
  border-radius: 10px;
}
.td-about-title {
  font-weight: 600;
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-title {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .td-about-shape {
    margin-right: 30px;
  }
}
.td-about-thumb img {
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-3-title-wrap {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-3-content {
    margin-right: 0;
  }
}
.td-about-3-content .para {
  color: var(--td-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-3-content .para br {
    display: none;
  }
}
.td-about-3-content .title {
  font-family: var(--td-ff-manrope);
  font-size: 360px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--td-common-black-2);
  margin-left: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-3-content .title {
    margin-left: 0;
    font-size: 250px;
  }
}
.td-about-3-content .title span {
  font-size: 36px;
  letter-spacing: -0.06em;
  width: 100px;
  height: 100px;
  background: var(--td-common-green);
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  position: absolute;
  top: 57px;
  right: -42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-3-content .title span {
    top: 0;
  }
}
.td-about-3-thumb img {
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-3-list {
    margin-left: 0;
  }
}
.td-about-3-list ul li {
  font-weight: 500;
  font-size: 17px;
  color: #141820;
  position: relative;
  padding-left: 20px;
}
.td-about-3-list ul li:not(:last-child) {
  margin-bottom: 12px;
}
.td-about-3-list ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #141820;
  border-radius: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.td-about-3-list .title {
  font-family: var(--td-ff-manrope);
  font-size: 22px;
  color: var(--td-common-black-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-4-content {
    padding-left: 0;
  }
}
.td-about-4-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.td-about-5-text p {
  color: var(--td-grey-4);
}
.td-about-5-user p {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: var(--td-grey-4);
}
.td-about-5-count {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 60px;
  line-height: 0.7;
  margin-bottom: 0;
  color: var(--td-common-black-4);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-5-thumb {
    margin-right: 0;
  }
}
.td-about-5-thumb-2 {
  margin-top: 265px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-5-thumb-2 {
    margin-top: 40px;
  }
}
.td-about-6-thumb img {
  border-radius: 10px;
}
.td-about-6-thumb .shape {
  position: absolute;
  top: -96px;
  left: 100px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-about-6-author {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-6-author {
    margin-left: 0;
  }
}
.td-about-6-author-top {
  border-bottom: 1px solid rgba(187, 177, 177, 0.51);
}
.td-about-6-author-top p {
  color: var(--td-grey-5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-6-author-top p br {
    display: none;
  }
}
.td-about-6-author-single h2 {
  font-family: var(--td-ff-rethink);
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--td-theme-3);
}
.td-about-6-author-single p {
  color: var(--td-grey-5);
  line-height: 26px;
}
.td-about-main-spacing {
  padding-top: 205px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-main-spacing {
    padding-top: 150px;
  }
}
.td-about-main-title {
  font-size: 65px;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-about-main-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .td-about-main-title {
    font-size: 35px;
  }
}
.td-about-main-bigtext h2 {
  font-weight: 300;
  font-size: 200px;
  letter-spacing: -0.06em;
  color: var(--td-grey-1);
  margin-bottom: 0;
}
.td-about-main-bigtext span {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--td-grey-1);
}
.td-about-main-feature-title {
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.04em;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-main-feature-title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .td-about-main-feature-title {
    font-size: 30px;
    line-height: 1.3;
  }
}
.td-about-main-feature-list ul {
  column-count: 2;
}
@media (max-width: 575px) {
  .td-about-main-feature-list ul {
    column-count: 1;
  }
}
.td-about-main-feature-list ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--td-grey-1);
  padding-left: 18px;
  position: relative;
  margin-bottom: 16px;
}
.td-about-main-feature-list ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--td-grey-1);
  border-radius: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-about-main-content {
    margin-left: 0;
  }
}

.swiper-container {
  overflow: hidden;
}

/*=============================
	23. service
===============================*/
.td-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--td-ff-heading);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
  padding: 38px 0px;
  border-bottom: 1px solid rgba(28, 29, 31, 0.15);
  position: relative;
}
@media (max-width: 575px) {
  .td-service-item {
    font-size: 30px;
  }
}
.td-service-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #1c1d1f;
  bottom: 0;
  left: auto;
  right: 0;
  transition: all 0.4s ease;
}
.td-service-item:hover span {
  opacity: 1;
}
.td-service-item:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}
.td-service-item span {
  color: #1c1d1f;
  opacity: 0.4;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-btn {
    margin-left: 0;
  }
}
.td-service-counter-item {
  background: #f5f5f5;
  border-radius: 20px;
  transition: all 0.4s ease;
  padding: 58px 50px 60px 80px;
}
.td-service-counter-item:hover {
  background: var(--td-theme-primary);
}
.td-service-counter-item h2 span {
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -0.02em;
}
.td-service-counter-item span {
  font-weight: 500;
  font-size: 18px;
  color: var(--td-common-black);
}
.td-service-3-ok {
  position: absolute;
  top: 0;
  right: -90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-3-ok {
    right: 0;
    top: -60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-3-title-wrap {
    margin-left: 0;
  }
}
.td-service-3-shape {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}
.td-service-3-wrap {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 30px 40px 25px 35px;
  transition: all 0.4s ease;
}
.td-service-3-wrap:hover {
  background: #ff481f;
}
.td-service-3-wrap:hover .td-service-3-content span {
  background: var(--td-common-black-2);
  color: var(--td-common-white);
}
.td-service-3-wrap:hover .td-service-3-shape {
  color: var(--td-common-black-2);
}
.td-service-3-content h3 {
  font-family: var(--td-ff-manrope);
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--td-common-black-2);
}
.td-service-3-content span {
  font-family: var(--td-ff-manrope);
  font-weight: 500;
  font-size: 17px;
  color: var(--td-common-black-2);
  border-radius: 18px;
  display: inline-block;
  width: 60px;
  height: 36px;
  background: var(--td-common-green);
  text-align: center;
  line-height: 36px;
  transition: all 0.4s ease;
}
.td-service-4-count .count {
  font-family: var(--td-ff-roboto);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--td-common-yellow);
}
.td-service-4-count .title {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: #fff;
}
.td-service-4-text p {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-3);
  line-height: 32px;
}
.td-service-4-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.td-service-4-item {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: -1px;
  padding-top: 45px;
  padding-bottom: 17px;
}
.td-service-4-item:hover .td-service-4-thumb {
  opacity: 1;
  left: 27%;
  visibility: visible;
}
.td-service-4-item:hover .td-service-4-icon-wrap {
  color: var(--td-common-green-2);
}
.td-service-4-item:hover .td-service-4-count .title a {
  color: var(--td-common-green-2);
}
.td-service-4-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.td-service-5-wrapper:hover.border-b::before {
  width: 100%;
  left: 0;
  right: auto;
}
.td-service-5-wrapper:hover .td-service-5-thumb img {
  opacity: 1;
  margin-left: 0;
}
.td-service-5-wrapper.border-b {
  border-bottom: 2px solid rgba(45, 45, 45, 0.2);
  margin-bottom: 18px;
  padding-bottom: 3px;
  position: relative;
}
.td-service-5-wrapper.border-b::before {
  position: absolute;
  width: 0;
  height: 2px;
  left: auto;
  right: 0;
  bottom: -2px;
  background: #2d2d2d;
  content: "";
  transition: all 0.6s ease;
}
.td-service-5-thumb img {
  opacity: 1;
  transition: all 0.4s ease;
}
.td-service-5-content h4 {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--td-common-black-4);
  line-height: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-service-5-content h4 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .td-service-5-content h4 {
    font-size: 22px;
  }
}
.td-service-5-content h4 span {
  margin-right: 105px;
  display: inline-block;
}
@media (max-width: 575px) {
  .td-service-5-content h4 span {
    margin-right: 20px;
  }
}
.td-service-6-item {
  border-top: 1px solid rgba(6, 50, 49, 0.15);
  border-bottom: 1px solid rgba(6, 50, 49, 0.15);
  padding: 43px 0px 20px 60px;
  margin-top: -1px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .td-service-6-item {
    padding: 43px 20px 20px 20px;
  }
}
.td-service-6-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: #ff481f;
  top: auto;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 10px;
}
.td-service-6-item:hover {
  border-radius: 10px;
}
.td-service-6-item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.td-service-6-item:hover .td-service-6-item-title span {
  color: var(--td-common-white);
}
.td-service-6-item:hover .td-service-6-item-title h3 {
  color: #aff172;
}
.td-service-6-item:hover .td-service-6-text p {
  color: rgba(255, 255, 255, 0.7);
}
.td-service-6-item:hover .td-service-6-btn a {
  border: 1px solid #ffbf43;
  background: #ffbf43;
}
.td-service-6-item-title {
  display: flex;
  align-items: center;
}
.td-service-6-item-title h3 {
  font-family: var(--td-ff-rethink);
  font-weight: 700;
  font-size: 30px;
  line-height: 107%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--td-theme-3);
  transition: all 0.4s ease;
}
.td-service-6-item-title span {
  font-weight: 500;
  font-size: 18px;
  color: var(--td-common-black-3);
  transition: all 0.4s ease;
}
.td-service-6-text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: var(--td-grey-5);
  transition: all 0.4s ease;
}
.td-service-6-btn a {
  border: 1px solid rgba(6, 50, 49, 0.15);
  border-radius: 40px;
  width: 64px;
  height: 64px;
  display: inline-block;
  text-align: center;
  line-height: 59px;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-6-title-text {
    margin-right: 0;
  }
}
.td-service-7-bg {
  background: var(--td-common-black-5);
}
.td-service-7-list-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  padding-bottom: 8px;
  padding-left: 60px;
  margin-top: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-7-list-wrap {
    padding-left: 0px;
  }
}
.td-service-7-list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}
.td-service-7-list-title {
  display: flex;
}
.td-service-7-list-title span {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 22px;
  color: var(--td-theme-4);
  margin-right: 65px;
  display: inline-block;
}
.td-service-7-list-title h5 {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 30px;
  line-height: 34px;
  text-transform: uppercase;
  color: var(--td-common-white);
}
.td-service-7-list-title h5 a:hover {
  color: var(--td-common-white);
}
.td-service-7-spacing {
  padding-top: 400px;
  margin-top: -248px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-service-7-spacing {
    margin-top: -224px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-service-7-spacing {
    margin-top: -200px;
    padding-top: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-7-spacing {
    margin-top: 0;
    padding-top: 120px;
  }
}
.td-service-main-bigthumb img {
  border-radius: 10px;
}
.td-service-main-content span {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--td-grey-1);
}
.td-service-main-content h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-service-main-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .td-service-main-content h2 {
    font-size: 35px;
  }
}
.td-service-main-expreance .expreance {
  font-size: 160px;
  letter-spacing: -0.04em;
  color: var(--td-theme-primary);
}
.td-service-main-expreance .year {
  font-weight: 600;
  font-size: 17px;
  color: var(--td-common-black);
  border-radius: 30px;
  background: #f5f5f5;
  padding: 13px 20px;
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-main-strategy-wrap {
    margin-left: 0;
  }
}
.td-service-main-strategy .title {
  font-size: 36px;
  letter-spacing: -0.02em;
}
.td-service-main-strategy .text {
  line-height: 26px;
}
.td-service-pin-subtitle span {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
}
.td-service-pin-subtitle span.number {
  position: relative;
  padding-right: 100px;
}
.td-service-pin-subtitle span.number::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.td-service-pin-title {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--td-common-white);
}
@media (max-width: 575px) {
  .td-service-pin-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-pin-content-inner {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-pin-content-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-pin-content {
    margin-left: 0;
  }
}
.td-service-pin-content p {
  font-weight: 500;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-pin-content p br {
    display: none;
  }
}
.td-service-pin-content ul li {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 15px;
  margin-bottom: 7px;
}
.td-service-pin-content ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-hero-content {
    margin-left: 0;
  }
}
.td-service-hero-border {
  width: 100%;
  height: 1px;
  background: rgba(28, 29, 31, 0.15);
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-hero-thumb {
    padding-top: 40px;
  }
}
.td-service-process-item {
  border: 1px solid rgba(28, 29, 31, 0.12);
  border-radius: 10px;
  padding: 50px 50px 26px 50px;
  margin-left: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-service-process-item {
    padding: 30px 20px 6px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-process-item {
    margin-top: 0;
  }
}
.td-service-process-item .number {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-grey-1);
}
.td-service-process-item .title {
  font-weight: 600;
  font-size: 26px;
}
.td-service-process-item .para {
  line-height: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-replace-shape {
    padding-top: 0;
  }
}
.td-service-replace-thumb img {
  max-width: inherit;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-replace-thumb img {
    max-width: 100%;
  }
}
.td-service-2-wrap .td-service-main-expreance .expreance {
  font-family: var(--td-ff-dm-sans);
  color: var(--td-theme-secondary);
}
.td-service-2-wrap .td-service-main-expreance .year {
  background: #ffeeea;
}
.td-service-2-wrap .td-service-main-strategy .title {
  font-family: var(--td-ff-dm-sans);
  letter-spacing: 0;
}
.td-service-2-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(10, 17, 25, 0.15);
  border-top: 1px solid rgba(10, 17, 25, 0.15);
  padding: 30px 0px 20px 0px;
  position: relative;
  margin-top: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-2-item a {
    padding: 10px 0px 0px 0px;
  }
}
.td-service-2-item a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.td-service-2-item a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: var(--td-common-black);
  bottom: 0;
  left: auto;
  right: 0;
  transition: all 0.4s ease;
}
.td-service-2-item:hover .icon {
  background: var(--td-theme-secondary);
  color: var(--td-common-white);
  border-color: var(--td-theme-secondary);
}
.td-service-2-item .title {
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0a1119;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-2-item .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .td-service-2-item .title {
    font-size: 25px;
  }
}
.td-service-2-item .title span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--td-theme-secondary);
}
@media (max-width: 575px) {
  .td-service-2-item .title span {
    margin-right: 10px;
  }
}
.td-service-2-item .icon {
  border: 1px solid rgba(10, 17, 25, 0.2);
  border-radius: 40px;
  width: 64px;
  height: 64px;
  text-align: center;
  display: inline-block;
  transition: all 0.4s ease;
  line-height: 62px;
}
.td-service-2-item.active .icon {
  background: var(--td-theme-secondary);
  color: var(--td-common-white);
  border-color: var(--td-theme-secondary);
}
.td-service-2-item.active a::before {
  width: 100%;
  left: 0;
  right: auto;
}
.td-service-2-img-wrapper {
  position: relative;
}
.td-service-2-img-wrapper .hover-image {
  display: inline-block;
}
.td-service-2-img-wrapper .hover-image .thumb {
  object-fit: cover;
  opacity: 0;
  transform: rotate(0deg) !important;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 50px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-2-img-wrapper .hover-image .thumb {
    width: 250px;
  }
}
.td-service-2-img-wrapper .hover-image .shape {
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  top: 250px;
  right: 115px;
}
.td-service-2-img-wrapper .hover-image.active .thumb {
  opacity: 1;
  transform: rotate(20deg) !important;
}
.td-service-2-img-wrapper .hover-image.active .shape {
  opacity: 1;
  transform: scale(1);
  top: 219px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-service-2-img-wrapper .hover-image.active .shape {
    top: 119px;
  }
}
.td-service-2-main-wrap .td-service-process-item .number {
  color: var(--td-theme-secondary);
}

/*=============================
	22. project
===============================*/
.td-project-title .subtitle {
  font-weight: 600;
  font-size: 18px;
  color: var(--td-theme-primary);
}
.td-project-title .title {
  font-weight: 800;
  font-size: 80px;
  letter-spacing: -0.03em;
  color: var(--td-common-white);
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-title .title {
    font-size: 40px;
  }
}
.td-project-title .title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.td-project-thumb img {
  border-radius: 10px;
}
.td-project-content a {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--td-common-white);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.td-project-content a:hover {
  opacity: 0.8;
}
.td-project-content a:hover .icon {
  transform: rotate(45deg);
}
.td-project-content a .icon {
  transition: all 0.4s ease;
}
.td-project-item.four {
  margin-left: 225px;
  margin-right: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.four {
    margin-left: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.four {
    padding-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.two {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.two {
    padding-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.three {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.three {
    margin-left: 0;
  }
}
.td-project-item.five {
  padding-top: 276px;
  margin-left: 225px;
  margin-right: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-project-item.five {
    margin-left: 185px;
    margin-right: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.five {
    margin-left: 125px;
    margin-right: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.five {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-project-item.five {
    margin-left: 0;
    margin-right: 0;
  }
}

.td_image_animetion {
  visibility: hidden;
  overflow: hidden;
}

/*=============================
	21. process
===============================*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-thumb {
    padding-top: 20px;
  }
}
.td-process-thumb img {
  border-radius: 10px;
}
.td-process-border {
  border-top: 1px solid rgba(28, 29, 31, 0.2);
  border-bottom: 1px solid rgba(28, 29, 31, 0.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-border {
    border: none;
  }
}
.td-process-count {
  border-right: 1px solid rgba(28, 29, 31, 0.2);
  border-left: 1px solid rgba(28, 29, 31, 0.2);
  border-bottom: 1px solid rgba(28, 29, 31, 0.2);
  height: 100%;
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-count {
    border: none;
    width: auto;
    display: block;
  }
}
.td-process-count.no-border {
  border-bottom: none;
}
.td-process-count span {
  font-family: var(--td-ff-heading);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--td-common-black);
}
.td-process-title {
  border-right: 1px solid rgba(28, 29, 31, 0.2);
  border-bottom: 1px solid rgba(28, 29, 31, 0.2);
  height: 100%;
  padding: 90px 30px 90px 110px;
  width: 500px;
  margin-left: -58px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-title {
    border-right: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-title {
    width: auto;
    padding: 0px 0px 30px 0px;
    border: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-title {
    margin-left: 0;
  }
}
.td-process-title.no-border {
  border-bottom: none;
}
.td-process-title h3 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-title h3 {
    font-size: 30px;
  }
}
.td-process-title h3 span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-process-list {
  border-bottom: 1px solid rgba(28, 29, 31, 0.2);
  margin-left: -65px;
  padding-left: 60px;
  height: 100%;
  padding-top: 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-list {
    margin-left: -25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-process-list {
    margin-left: 0;
    border: none;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 30px;
  }
}
.td-process-list.no-border {
  border-bottom: none;
}
.td-process-list ul li {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-grey-1);
  position: relative;
  padding-left: 20px;
  margin-bottom: 13px;
}
.td-process-list ul li::before {
  position: absolute;
  content: "";
  border: 1px solid rgba(28, 29, 31, 0.2);
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 20px;
}

/*=============================
	26. testimonial
===============================*/
.td-testimonial-title {
  font-weight: 800;
  font-size: 80px;
  letter-spacing: -0.03em;
  color: var(--td-common-black);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-testimonial-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-testimonial-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .td-testimonial-title {
    font-size: 40px;
  }
}
.td-testimonial-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-left .td-section-subtitle {
    margin-bottom: 30px;
  }
}
.td-testimonial-left p {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-testimonial-navigation span {
  transition: all 0.4s ease;
}
.td-testimonial-navigation span:hover {
  color: var(--td-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-slide-content {
    margin-left: 0;
  }
}
.td-testimonial-slide-content h6 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.td-testimonial-slide-content span {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-slider {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-content {
    margin-left: 0;
  }
}
.td-testimonial-2-wrap .td-testimonial-slide-content p {
  font-weight: 500;
}
.td-testimonial-2-wrap .td-testimonial-navigation {
  display: flex;
  height: 100%;
  align-items: end;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-2-wrap .td-testimonial-navigation {
    height: auto;
  }
}
.td-testimonial-2-wrap .td-testimonial-navigation span {
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: inline-block;
  background: var(--td-common-black);
  color: var(--td-common-white);
  text-align: center;
  line-height: 55px;
}
.td-testimonial-2-wrap .td-testimonial-navigation span:hover {
  background: var(--td-theme-secondary);
}
.td-testimonial-3-wrap span {
  font-family: var(--td-ff-manrope);
  font-weight: 400;
  font-size: 18px;
  color: var(--td-common-black-2);
}
.td-testimonial-3-wrap p {
  color: var(--td-common-black-2);
}
.td-testimonial-3-wrap .td-border {
  background: var(--td-common-black-2);
  height: 2px;
  width: 100%;
  display: inline-block;
}
.td-testimonial-3-slider {
  margin-right: -420px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-3-slider {
    margin-right: 0;
  }
}
.td-testimonial-3-slider .swiper-slide {
  opacity: 0.4;
}
.td-testimonial-3-slider .swiper-slide-active {
  opacity: 1;
}
.td-testimonial-3-navigation span {
  border-radius: 15px;
  width: 60px;
  height: 44px;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  background: #77d400;
  color: var(--td-common-black-2);
  margin-right: 6px;
}
.td-testimonial-3-spacing {
  padding-bottom: 245px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-3-spacing {
    padding-bottom: 90px;
  }
}
.td-testimonial-3-bigtext {
  font-family: var(--td-ff-manrope);
  font-weight: 700;
  font-size: 220px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #71cb00;
  position: absolute;
  bottom: -81px;
  right: -550px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-3-bigtext {
    font-size: 170px;
    bottom: -41px;
  }
}
.td-testimonial-5-ratings-wrap .title {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 80px;
  line-height: 100%;
  color: var(--td-common-black-4);
}
.td-testimonial-5-ratings-wrap .ratings {
  background: var(--td-theme-2);
  border-radius: 12px;
  padding: 4px 12px 7px 12px;
  display: inline-block;
  line-height: 1;
}
.td-testimonial-5-ratings-wrap .ratings i {
  font-size: 12px;
  color: var(--td-common-black-4);
}
.td-testimonial-5-ratings-wrap .review {
  font-weight: 400;
  font-size: 16px;
  color: var(--td-grey-4);
  display: block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-5-content {
    margin-right: 0;
  }
}
.td-testimonial-5-content p {
  font-weight: 500;
  font-size: 36px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: var(--td-common-black-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-5-content p {
    font-size: 28px;
  }
}
.td-testimonial-5-content span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-grey-4);
  display: inline-block;
}
.td-testimonial-5-navigation span {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: var(--td-common-black-4);
  background: #cdcdc7;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.td-testimonial-5-navigation span:hover {
  color: #787875;
}
.td-testimonial-6-bg {
  background: var(--td-theme-3);
}
.td-testimonial-6-title-wrap .td-section-6-subtitle {
  color: var(--td-common-green-2);
}
.td-testimonial-6-title-wrap .title {
  font-family: var(--td-ff-rethink);
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  color: var(--td-common-white);
}
.td-testimonial-6-text p {
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 575px) {
  .td-testimonial-6-text p {
    font-size: 20px;
  }
}
.td-testimonial-6-author {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 43px;
}
.td-testimonial-6-author .position {
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: -0.02em;
  color: var(--td-common-green-2);
}
.td-testimonial-6-author .name {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
  font-family: var(--td-ff-body);
}
.td-testimonial-6-thumb-active {
  float: right;
  margin-right: 115px;
  flex: 0 0 auto;
}
.td-testimonial-6-thumb-active .swiper-wrapper {
  flex-direction: column;
  gap: 13px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 128px;
  width: 110px;
  justify-content: center;
  align-items: center;
  padding: 25px 0px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-6-thumb-active .swiper-wrapper {
    margin-top: 40px;
  }
}
.td-testimonial-6-thumb-active .swiper-slide {
  width: auto !important;
}
.td-testimonial-6-thumb-active .swiper-slide .td-testimonial-bottom-thumb img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}
.td-testimonial-6-brands-slider .swiper-slide {
  width: 200px;
}
.td-testimonial-6-brands-slider .swiper-slide .brands-logo {
  opacity: 0.6;
  transition: all 0.4s ease;
}
.td-testimonial-6-brands-slider .swiper-slide .brands-logo:hover {
  opacity: 1;
}

.td-brand-slide-active .swiper-slide {
  width: 280px;
}
@media (max-width: 575px) {
  .td-brand-slide-active .swiper-slide {
    width: 180px;
  }
}

/*=============================
	04. blog
===============================*/
.td-blog-thumb {
  border-radius: 10px;
}
.td-blog-thumb img {
  border-radius: 10px;
  transition: all 0.4s ease;
}
.td-blog-wrap:hover .td-blog-thumb img {
  transform: scale(1.1);
}
.td-blog-title {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-title {
    font-size: 22px;
  }
}
.td-blog-cetagory .cetagory {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 17px;
  display: inline-block;
  padding: 3px 15px;
}
.td-blog-cetagory span {
  font-family: var(--td-ff-heading);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  color: var(--td-grey-1);
}
.td-blog-cetagory .td-border {
  height: 1px;
  background: #6f7071;
  width: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .td-blog-cetagory .td-border {
    width: 20px;
  }
}
.td-blog-cetagory .dates {
  font-family: var(--td-ff-body);
}
.td-blog-2-avatar-thumb img {
  border-radius: 50%;
}
.td-blog-2-avatar-content h6 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-blog-2-avatar-content span {
  font-weight: 400;
  font-size: 16px;
  color: #595c61;
}
.td-blog-2-avatar-date span {
  font-weight: 400;
  font-size: 17px;
  line-height: 165%;
  color: #595c61;
}
.td-blog-2-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-blog-2-thumb img {
  transition: all 0.4s ease;
}
.td-blog-2-wrap:hover .td-blog-2-thumb img {
  transform: scale(1.1);
}
.td-blog-2-btn .td-btn-group {
  width: auto;
  float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-2-btn .td-btn-group {
    float: left;
  }
}
.td-blog-4-date {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-common-green-2);
}
.td-blog-4-thumb img {
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-4-thumb img {
    width: 100%;
  }
}
.td-blog-4-title {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 30px;
  line-height: 107%;
  color: var(--td-common-white);
}
.td-blog-4-title a:hover {
  color: var(--td-common-white);
}
.td-blog-4-content {
  width: 450px;
  border-radius: 10px;
  background: var(--td-theme-1);
  position: absolute;
  right: 0;
  bottom: 50px;
  padding: 55px 60px 50px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-4-content {
    width: 100%;
    bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-4-content {
    position: inherit;
    padding: 25px 20px 30px 20px;
  }
}
.td-blog-4-content .td-btn {
  border: none;
  padding: 0;
}
.td-blog-4-content .td-btn:hover {
  color: var(--td-common-yellow);
}
.td-blog-7-title .titles {
  font-family: var(--td-ff-body);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--td-common-black-5);
}
.td-blog-7-title .dates {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: var(--td-grey-6);
  display: block;
}
.td-blog-7-title .tag {
  font-weight: 400;
  font-size: 14px;
  color: var(--td-common-black-5);
  display: inline-block;
  border: 1px solid rgba(31, 19, 6, 0.15);
  border-radius: 14px;
  padding: 0px 10px;
}
.td-blog-7-title .tag:hover {
  background: var(--td-theme-4);
  color: var(--td-common-white);
  border-color: var(--td-theme-4);
}
.td-blog-7-bigtitle {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 30px;
  line-height: 113%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--td-common-black-5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-7-bigtitle {
    font-size: 26px;
  }
}
.td-blog-7-bigtitle:hover a {
  color: var(--td-theme-4);
}
.td-blog-7-thumb {
  overflow: hidden;
  border-radius: 10px;
  display: inline-block;
}
.td-blog-7-thumb img {
  border-radius: 10px;
}
.td-blog-7-wrap {
  border-top: 1px solid rgba(31, 19, 6, 0.15);
  border-bottom: 1px solid rgba(31, 19, 6, 0.15);
  padding-top: 30px;
}
.td-blog-7-wrap:hover .td-blog-7-thumb img {
  transform: scale(1.1);
}
.td-blog-7-bg {
  background: #f5f5f4;
}
.td-blog-bigthumb-spacing {
  padding-top: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-bigthumb-spacing {
    padding-top: 150px;
  }
}
.td-blog-bigthumb-dates {
  margin-top: 40px;
  margin-left: 40px;
  font-weight: 600;
  font-size: 14px;
  color: var(--td-common-white);
  border-radius: 4px;
  line-height: 1;
  padding-top: 15px;
  width: 50px;
  height: 56px;
  background: var(--td-common-black);
  display: inline-block;
  text-align: center;
}
.td-blog-bigthumb-content {
  margin-top: 550px;
  border-radius: 10px 0;
  width: 720px;
  height: 200px;
  background: var(--td-common-white);
  padding: 54px 40px 30px 60px;
  float: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-blog-bigthumb-content {
    margin-top: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-bigthumb-content {
    margin-top: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-bigthumb-content {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .td-blog-bigthumb-content {
    padding: 54px 40px 30px 20px;
  }
}
.td-blog-bigthumb-bg {
  border-radius: 10px;
}
.td-blog-bigthumb-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .td-blog-bigthumb-title {
    font-size: 25px;
  }
}
.td-blog-details-author img {
  border-radius: 50%;
}
@media (max-width: 575px) {
  .td-blog-details-author img {
    width: 60px;
  }
}
@media (max-width: 575px) {
  .td-blog-details-author-thumb {
    margin-right: 20px;
  }
}
.td-blog-details-author-content span {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-1);
}
.td-blog-details-author-content span.bolds {
  font-weight: 600;
  font-size: 24px;
  color: var(--td-common-black);
  display: block;
}
@media (max-width: 575px) {
  .td-blog-details-author-content span.bolds {
    font-size: 20px;
  }
}
.td-blog-details-author-bottom {
  background: #f7f7f7;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-author-bottom {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-blog-details-author-bottom-thumb img {
  border-radius: 10px 0px 0px 10px;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-author-bottom-thumb img {
    border-radius: 10px;
    width: 100%;
  }
}
.td-blog-details-author-bottom-content {
  padding: 25px 30px 20px 0px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-author-bottom-content {
    padding: 25px 30px 20px 20px;
  }
}
.td-blog-details-author-bottom-content h5 {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-blog-details-author-bottom-content p {
  line-height: 26px;
}
.td-blog-details-author-bottom-social {
  float: right;
}
.td-blog-details-author-bottom-social a {
  color: var(--td-common-black);
  margin-left: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-blog-details-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
}
@media (max-width: 575px) {
  .td-blog-details-title {
    font-size: 26px;
  }
}
.td-blog-details-text {
  line-height: 30px;
}
.td-blog-details-blockquote {
  padding: 0px 70px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-blockquote {
    padding: 0px;
    padding-left: 40px;
  }
}
.td-blog-details-blockquote-icon {
  position: absolute;
  top: -25px;
  left: 37px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-blockquote-icon {
    left: 0;
  }
}
.td-blog-details-blockquote .title {
  font-weight: 500;
  font-size: 44px;
  line-height: 118%;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-blockquote .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .td-blog-details-blockquote .title {
    font-size: 30px;
  }
}
.td-blog-details-blockquote .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--td-grey-1);
}
.td-blog-details-tag-wrap {
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-tag-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-blog-details-tag ul li {
  display: inline-block;
}
.td-blog-details-tag ul li:not(:last-child) {
  margin-right: 40px;
}
@media (max-width: 575px) {
  .td-blog-details-tag ul li:not(:last-child) {
    margin-right: 22px;
  }
}
.td-blog-details-tag ul li a {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--td-common-black);
  display: inline-block;
}
.td-blog-details-tag ul li a svg {
  margin-right: 5px;
}
@media (max-width: 575px) {
  .td-blog-details-share {
    margin-left: 0;
  }
}
.td-blog-details-share a {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--td-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-details-pagenation {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-blog-hero-subtitle {
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.td-blog-hero-subtitle span {
  color: var(--td-common-white);
}
.td-blog-hero-title {
  font-weight: 600;
  font-size: 100px;
  line-height: 90%;
  letter-spacing: -0.04em;
  color: var(--td-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-blog-hero-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-hero-title {
    font-size: 50px;
  }
}
.td-blog-hero-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-blog-hero-author img {
  border-radius: 50%;
  margin-right: 20px;
}
.td-blog-hero-author span {
  font-weight: 500;
  font-size: 20px;
  color: var(--td-common-white);
}
.td-blog-hero-spacing {
  padding-top: 350px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-hero-spacing {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-sidebar-left-content {
    margin-right: 0;
  }
}
.td-blog-sidebar-left-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
}
.td-blog-sidebar-title {
  font-weight: 600;
  font-size: 30px;
}
.td-blog-sidebar-para {
  line-height: 30px;
}
.td-blog-sidebar-para span {
  color: var(--td-common-black);
  font-weight: 600;
}
.td-blog-sidebar-blockquote {
  background: var(--td-grey-2);
  padding: 40px 60px 30px 50px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .td-blog-sidebar-blockquote {
    flex-direction: column;
    padding: 20px 20px 20px 20px;
  }
}
.td-blog-sidebar-blockquote-text h4 {
  font-weight: 500;
  font-size: 30px;
  line-height: 140%;
}
@media (max-width: 575px) {
  .td-blog-sidebar-blockquote-text h4 {
    font-size: 20px;
    margin-top: 15px;
  }
}
.td-blog-sidebar-blockquote-text p {
  font-size: 14px;
  color: var(--td-grey-1);
}
.td-blog-sidebar-blockquote-text p span {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
  position: relative;
  padding-right: 20px;
}
.td-blog-sidebar-blockquote-text p span::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 10px;
  background: var(--td-grey-1);
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.td-blog-sidebar-blockquote-shape {
  position: absolute;
  bottom: 0;
  right: 77px;
}
.td-blog-sidebar-thumb img {
  border-radius: 10px;
}
.td-blog-sidebar-tag {
  flex-wrap: wrap;
  border-top: 1px solid rgba(10, 11, 15, 0.1);
  padding-top: 22px;
}
.td-blog-sidebar-tag-list a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  color: #6f7071;
  border-radius: 4px;
  padding: 2px 18px;
  background: #f5f5f5;
  margin-right: 4px;
  margin-bottom: 5px;
}
.td-blog-sidebar-tag-list a:hover {
  background: var(--td-theme-primary);
  color: var(--td-common-black);
}
.td-blog-sidebar-social a {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  line-height: 34px;
  color: var(--td-common-white);
}
.td-blog-sidebar-social .facebook {
  background: #1877f2;
}
.td-blog-sidebar-social .twitter {
  background: #1da1f2;
}
.td-blog-sidebar-social .instsgram {
  background: radial-gradient(109.62% 117.86% at 0% 108.33%, #fd5 0%, #ff543e 46.39%, #c837ab 100%);
}
.td-blog-comment-title {
  font-size: 34px;
  line-height: 94%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-comment-form-wrap {
    margin-right: 0;
  }
}
.td-blog-postbox-comment ul li {
  display: flex;
}
@media (max-width: 575px) {
  .td-blog-postbox-comment ul li {
    flex-direction: column;
  }
}
.td-blog-postbox-comment ul li.children {
  margin-left: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-blog-postbox-comment ul li.children {
    margin-left: 0;
  }
}
.td-blog-postbox-comment-avater {
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .td-blog-postbox-comment-avater {
    margin-bottom: 10px;
  }
}
.td-blog-postbox-comment-avater img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: cover;
}
.td-blog-postbox-comment-input input {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-common-black);
  border: none;
  border-bottom: 1px solid rgba(28, 29, 31, 0.1);
  padding: 0;
  height: 40px;
}
.td-blog-postbox-comment-input input:focus {
  border-color: var(--td-common-black);
}
.td-blog-postbox-comment-input input::placeholder {
  color: #6f7071;
}
.td-blog-postbox-comment-input textarea {
  height: 160px;
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 10px;
}
.td-blog-postbox-comment-input textarea:focus {
  border-color: var(--td-common-black);
}
.td-blog-postbox-comment-checkbox label {
  font-weight: 400;
  font-size: 14px;
  color: var(--td-grey-1);
}
.td-blog-postbox-comment-checkbox input {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  transform: translateY(2px);
}
.td-blog-postbox-comment-checkbox .td-btn-group span {
  transition: all 0.4s ease;
}
.td-blog-postbox-title {
  font-size: 18px;
  letter-spacing: -0.02em;
}
.td-blog-postbox-date span {
  font-weight: 400;
  font-size: 14px;
  color: var(--td-grey-1);
  display: inline-block;
}
.td-blog-postbox-date span.dvdr {
  position: relative;
  padding-right: 20px;
}
.td-blog-postbox-date span.dvdr::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 10px;
  background: var(--td-grey-1);
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.td-blog-postbox-para {
  line-height: 26px;
}
.td-blog-postbox-btn {
  font-weight: 700;
  font-size: 14px;
  color: var(--td-common-black);
  border: 1px solid #f5f5f5;
  border-radius: 26px;
  padding: 1px 13px;
  display: inline-block;
}
.td-blog-postbox-btn:hover {
  background: var(--td-theme-primary);
  border-color: var(--td-theme-primary);
}
.td-blog-postbox-btn svg {
  transform: translateY(-2px);
}
.td-blog-postbox-user-thumb img {
  border-radius: 50%;
}
.td-blog-postbox-user-profile {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 10px;
  padding: 40px 40px 40px 40px;
}
.td-blog-postbox-user-profile .title {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-blog-postbox-user-profile .para {
  line-height: 22px;
}
.td-blog-postbox-user-profile .td-footer-social a {
  border: 1px solid rgba(28, 29, 31, 0.1);
  color: #6f7071;
}
.td-blog-postbox-cetagory-list {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 10px;
  padding: 38px 40px 40px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .td-blog-postbox-cetagory-list {
    padding: 18px 20px 20px 20px;
  }
}
.td-blog-postbox-cetagory-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.td-blog-postbox-cetagory-list ul li a {
  font-weight: 500;
  font-size: 18px;
  color: var(--td-grey-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 25px;
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 6px;
}
.td-blog-postbox-cetagory-list ul li a:hover .total {
  background: var(--td-theme-primary);
  color: var(--td-common-black);
}
.td-blog-postbox-cetagory-list ul li a .total {
  border-radius: 4px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 44px;
  background: var(--td-grey-2);
  transition: all 0.4s ease;
}
.td-blog-postbox-cetagory-title {
  font-size: 24px;
}
.td-blog-postbox-post-date {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--td-theme-1);
}
.td-blog-postbox-post-thumb img {
  border-radius: 6px;
  width: 100px;
  height: 110px;
  flex: 0 0 auto;
  margin-right: 25px;
}
.td-blog-postbox-post-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--td-common-black);
}
.td-blog-postbox-post-title a:hover {
  color: var(--td-grey-1);
}
.td-blog-postbox-post-border {
  background: #d9d9d9;
  width: 100%;
  height: 1px;
}
.td-blog-postbox-post-banner img {
  border-radius: 10px;
}
.td-blog-postbox-post-tag a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--td-common-black);
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 6px;
  display: inline-block;
  padding: 0px 13px;
  margin-bottom: 12px;
}
.td-blog-postbox-post-tag a:hover {
  background: var(--td-common-black);
  color: var(--td-common-white);
}
.td-blog-pagenation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.td-blog-pagenation ul li {
  margin-right: 3px;
  list-style: none;
}
.td-blog-pagenation ul li a {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #6f7071;
  font-weight: 500;
  transition: all 0.4s ease;
}
.td-blog-pagenation ul li a.active {
  color: var(--td-common-black);
  background: var(--td-theme-primary);
  border-color: var(--td-theme-primary);
}
.td-blog-pagenation ul li a:hover {
  color: var(--td-common-black);
  background: var(--td-theme-primary);
  border-color: var(--td-theme-primary);
}

/*=============================
	09. blog
===============================*/
.td-cta-wrap {
  border-radius: 10px;
  margin-bottom: -160px;
}
.td-cta-wrap .title {
  font-weight: 800;
  font-size: 120px;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-cta-wrap .title {
    font-size: 60px;
  }
}
.td-cta-shape {
  position: absolute;
  bottom: 70px;
  right: 100px;
  z-index: -1;
}
.td-cta-shape-2 {
  position: absolute;
  top: 13px;
  left: -46px;
}

/*=============================
	13. footer
===============================*/
.td-footer-spacing {
  padding-top: 275px;
}
.td-footer-title {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
}
.td-footer-location {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-location br {
    display: none;
  }
}
.td-footer-location:hover {
  color: var(--td-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-widget {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-widget {
    margin-left: 0;
  }
}
.td-footer-widget-list li {
  margin-bottom: 10px;
}
.td-footer-widget-list li a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-widget-list li a:hover {
  color: var(--td-theme-primary);
}
.td-footer-form input {
  font-family: var(--td-ff-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--td-common-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
}
.td-footer-form input::placeholder {
  font-family: var(--td-ff-body);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.td-footer-form input:focus {
  border: 1px solid var(--td-theme-primary);
}
.td-footer-form button {
  border-radius: 40px;
  background: #beff01;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 0;
  right: 0;
}
.td-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 40px 0px 20px 0px;
}
.td-footer-copyright p {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-copyright p a {
  color: var(--td-theme-primary);
}
.td-footer-social a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  transition: all 0.4s ease;
  color: var(--td-common-white);
}
.td-footer-social a:hover {
  background: var(--td-theme-primary);
  border-color: var(--td-theme-primary);
  color: var(--td-common-black);
}
.td-footer-2-bigtitle {
  font-weight: 500;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
  font-family: var(--td-ff-body);
}
@media (max-width: 575px) {
  .td-footer-2-bigtitle {
    font-size: 40px;
  }
  .td-footer-2-bigtitle br {
    display: none;
  }
}
.td-footer-2-border {
  border-top: 1px solid rgba(10, 17, 25, 0.15);
  padding: 28px 0px 16px 0px;
}
.td-footer-2-wrap .td-footer-3-title {
  font-family: var(--td-ff-body);
  color: var(--td-common-black);
}
.td-footer-2-wrap .td-footer-3-widget .links {
  color: #595c61;
}
.td-footer-2-wrap .td-footer-3-widget .links:hover {
  color: var(--td-common-black);
}
.td-footer-2-wrap .td-footer-3-widget .links-2 {
  color: var(--td-common-black);
}
.td-footer-2-wrap .td-footer-3-widget .links-2:hover {
  color: #595c61;
}
.td-footer-2-wrap .td-footer-3-social a {
  border: 1px solid rgba(10, 17, 25, 0.15);
  color: var(--td-common-black);
}
.td-footer-2-wrap .td-footer-3-social a:hover {
  background: var(--td-theme-secondary);
  color: var(--td-common-white);
}
.td-footer-2-wrap .td-footer-3-menu ul li a {
  color: rgba(89, 92, 97, 0.65);
}
.td-footer-2-wrap .td-footer-3-menu ul li a:hover {
  color: var(--td-common-black);
}


/* Adicione essas regras de estilo ao seu arquivo CSS */
.generated-in-time {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
}
.td-footer-2-wrap .td-footer-3-copyright {
  color: #595c61;
}
.td-footer-2-wrap .td-footer-3-copyright a {
  color: var(--td-common-black);
}
.td-footer-3-bigtitle {
  font-family: var(--td-ff-manrope);
  font-size: 60px;
  letter-spacing: -0.03em;
  color: var(--td-common-white);
}
@media (max-width: 575px) {
  .td-footer-3-bigtitle {
    font-size: 40px;
  }
}
.td-footer-3-bigtitle span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-footer-3-bg {
  background: #19191a;
}
.td-footer-3-title {
  font-family: var(--td-ff-manrope);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #f5f7f5;
}
.td-footer-3-widget .links {
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-3-widget .links-3 {
  text-decoration: underline;
}
.td-footer-3-widget .links-2 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
}
.td-footer-3-widget .links:hover {
  color: var(--td-common-white);
}
.td-footer-3-social {
  display: flex;
}
.td-footer-3-social a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  color: var(--td-common-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.td-footer-3-social a:hover {
  background: var(--td-common-green);
  color: var(--td-common-black-2);
}
.td-footer-3-middle-title {
  font-weight: 800;
  font-size: 259px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--td-common-white);
}
@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px) {
  .td-footer-3-middle-title {
    font-size: 230px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .td-footer-3-middle-title {
    font-size: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-3-middle-title {
    font-size: 170px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-footer-3-middle-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-footer-3-middle-title {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .td-footer-3-middle-title {
    font-size: 50px;
  }
}
.td-footer-3-copyright {
  font-weight: 500;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-3-copyright p {
    font-size: 14px;
  }
}
.td-footer-3-copyright a {
  color: #fff;
  font-weight: 400;
    font-size: 12px;
}
.neo {
  font-size: 12px !important;
}
.td-footer-3-menu ul li {
  display: inline-block;
  margin-right: 44px;
}
.td-footer-3-menu ul li a {
  font-weight: 500;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-3-menu ul li a:hover {
  color: var(--td-common-white);
}
.td-footer-4-bg {
  background: var(--td-common-green-2);
  border-radius: 15px;
  padding: 115px 30px 120px 30px;
}
@media (max-width: 575px) {
  .td-footer-4-bg {
    padding: 35px 30px 30px 30px;
  }
}
.td-footer-4-bg .td-portfolio-4-btn {
  color: var(--td-common-black);
}
.td-footer-4-shape {
  position: absolute;
  left: -145px;
  bottom: 41px;
}
.td-footer-4-shape-2 {
  position: absolute;
  right: 80px;
  bottom: 60px;
}
.td-footer-4-bigtitle {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 120px;
  line-height: 83%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--td-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-footer-4-bigtitle {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-footer-4-bigtitle {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .td-footer-4-bigtitle {
    font-size: 30px;
  }
}
.td-footer-4-bottom {
  border: none;
}
.td-footer-4-bottom .td-footer-copyright p {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-4-bottom .td-footer-copyright p a {
  font-weight: 700;
  color: #8bea7c;
}
.td-footer-4-menu ul li:not(:last-child) {
  margin-right: 42px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-4-menu ul li:not(:last-child) {
    margin-right: 18px;
  }
}
.td-footer-5-bigtitle {
  color: var(--td-common-white);
}
.td-footer-5-bigtitle span {
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-5-social a:hover {
  background: var(--td-theme-2);
  border-color: var(--td-theme-2);
}
.td-footer-5-widget .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: #f5f7f5;
}
.td-footer-5-widget .link {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-5-widget .link:hover {
  color: var(--td-common-white);
}
.td-footer-5-widget.td-border {
  position: relative;
}
.td-footer-5-widget.td-border::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.15);
  height: 78px;
  width: 1px;
  top: 10px;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-5-widget.td-border::after {
    display: none;
  }
}
.td-footer-5-form {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-5-form {
    margin-left: 0;
  }
}
.td-footer-5-form input {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--td-common-white);
  background: transparent;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  padding: 0;
  height: 40px;
  padding-right: 40px;
}
.td-footer-5-form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-5-form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.td-footer-5-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 0px 8px 0px;
}
.td-footer-5-bottom .td-footer-copyright p {
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-5-bottom .td-footer-copyright a {
  color: var(--td-theme-2);
}
.td-footer-5-bottom .td-footer-3-menu ul li a {
  font-size: 18px;
}
.td-footer-5-bottom .td-footer-3-menu ul li {
  margin-right: 0;
  margin-left: 46px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-footer-5-bottom .td-footer-3-menu ul li {
    margin-left: 0;
    margin-right: 30px;
  }
}
.td-footer-6-wrap .td-footer-title {
  font-family: var(--td-ff-body);
}
.td-footer-6-wrap .td-footer-widget-list li a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}
.td-footer-6-wrap .td-footer-widget-list li a:hover {
  color: var(--td-common-green-2);
}
.td-footer-6-wrap .td-footer-location {
  font-weight: 500;
}
.td-footer-6-wrap .td-footer-location:hover {
  color: var(--td-common-green-2);
}
.td-footer-6-wrap .td-footer-form input {
  font-weight: 400;
  font-size: 16px;
}
.td-footer-6-wrap .td-footer-form input:focus {
  border-color: var(--td-common-green-2);
}
.td-footer-6-wrap .td-footer-form input::placeholder {
  font-weight: 400;
  font-size: 16px;
}
.td-footer-6-wrap .td-footer-form button {
  background: var(--td-common-green-2);
}
.td-footer-6-wrap .td-footer-copyright p {
  font-weight: 500;
  font-family: var(--td-ff-heading);
}
.td-footer-6-wrap .td-footer-copyright p a {
  color: var(--td-common-green-2);
}
.td-footer-6-wrap .td-footer-social a:hover {
  background: var(--td-common-green-2);
  border-color: var(--td-common-green-2);
  color: var(--td-common-white);
}
.td-footer-6-wrap .td-footer-bottom {
  border-top: none;
  padding: 40px 0px 20px 0px;
}
.td-footer-7-wrap .td-footer-copyright p {
  font-weight: 500;
  color: #756c63;
}
.td-footer-7-wrap .td-footer-copyright p a {
  font-weight: 700;
  color: #1f1306;
}
.td-footer-7-wrap .td-footer-bottom {
  border-top: none;
  padding: 28px 0px 8px 0px;
}
.td-footer-7-wrap .td-footer-social a {
  border: 1px solid rgba(31, 19, 6, 0.1);
  color: var(--td-common-black-5);
}
.td-footer-7-wrap .td-footer-social a:hover {
  background: var(--td-common-black-5);
  border-color: var(--td-common-black-5);
  color: var(--td-common-white);
}

/*=============================
	19. project
===============================*/
.td-portfolio-2-content {
  position: absolute;
  bottom: 25px;
  left: 50px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}
.td-portfolio-2-content .dates {
  font-weight: 400;
  font-size: 16px;
  color: var(--td-common-white);
}
.td-portfolio-2-content .dates.dot {
  border-radius: 5px;
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--td-common-white);
}
.td-portfolio-2-content .title {
  font-family: var(--td-ff-dm-sans);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
}
.td-portfolio-2-thumb {
  position: relative;
  border-radius: 10px;
}
.td-portfolio-2-thumb img {
  border-radius: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-2-thumb img {
    width: 300px;
  }
}
.td-portfolio-2-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 25, 0.65);
  border-radius: 10px;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}
.td-portfolio-2-slider .swiper-slide {
  width: auto;
}
.td-portfolio-2-slider-2 .swiper-slide {
  width: auto;
}
.td-portfolio-2-slider-2 .td-portfolio-2-content {
  text-align: left;
}
.td-portfolio-2-item:hover .td-portfolio-2-content {
  bottom: 45px;
  opacity: 1;
}
.td-portfolio-2-item:hover .td-portfolio-2-thumb::before {
  opacity: 1;
}
.td-portfolio-2-item:hover .td-portfolio-2-thumb img {
  transform: scale(1.05);
}
.td-portfolio-2-bigtitle {
  font-family: var(--td-ff-dm-sans);
  font-weight: 700;
  font-size: 400px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: rgba(10, 17, 25, 0.15);
  margin-bottom: -90px;
  line-height: 0.7;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-2-bigtitle {
    font-size: 200px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-2-bigtitle {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-2-bigtitle {
    font-size: 110px;
  }
}
.td-portfolio-3-bg {
  background: var(--td-common-black-3);
}
.td-portfolio-3-thumb {
  border-radius: 15px;
  overflow: hidden;
}
.td-portfolio-3-thumb img {
  border-radius: 15px;
  transition: all 0.7s ease;
}
.td-portfolio-3-wrap.mt {
  padding-top: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-3-wrap.mt {
    padding-top: 0;
  }
}
.td-portfolio-3-wrap:hover .td-portfolio-3-thumb img {
  transform: scale(1.1);
}
.td-portfolio-3-content .icon {
  color: #85EE00;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  width: 60px;
  height: 44px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
}
.td-portfolio-3-content .icon:hover {
  background: #85EE00;
  color: var(--td-common-white);
}
.td-portfolio-3-title-para {
  color: var(--td-common-white);
}
.td-portfolio-3-title .tag {
  font-family: var(--td-ff-manrope);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--td-common-green);
  display: inline-block;
  margin-bottom: 3px;
}
.td-portfolio-3-title .title {
  font-family: var(--td-ff-manrope);
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
}
.td-portfolio-3-title .title a:hover {
  color: var(--td-common-white);
}
.td-portfolio-3-btn .td-header-2-btn .icon {
  background: var(--td-common-green);
}
.td-portfolio-4-bigtitle {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 220px;
  color: #0d472b;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-portfolio-4-bigtitle {
    font-size: 170px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-portfolio-4-bigtitle {
    font-size: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-4-bigtitle {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-4-bigtitle {
    font-size: 50px;
  }
}
.td-portfolio-4-subtitle {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-common-green-2);
}
.td-portfolio-4-title {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: var(--td-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-4-title br {
    display: none;
  }
}
.td-portfolio-4-thumb img {
  border-radius: 10px;
}
.td-portfolio-4-btn {
  font-family: var(--td-ff-teko);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--td-common-white);
}
.td-portfolio-4-btn:hover {
  color: var(--td-common-white);
}
.td-portfolio-4-btn span {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: var(--td-common-yellow);
  display: inline-block;
  text-align: center;
  line-height: 44px;
  margin-right: 10px;
}
.td-portfolio-4-slider {
  margin-top: -107px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-4-slider-wrap {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-4-slider {
    margin-top: 0;
  }
}
.td-portfolio-5-shape {
  position: absolute;
  top: 0;
  right: 177px;
}
.td-portfolio-5-thumb {
  overflow: hidden;
}
.td-portfolio-5-thumb img {
  transition: all 0.4s ease;
}
.td-portfolio-5-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: var(--td-common-black-4);
  width: 120px;
  height: 120px;
  display: inline-block;
  background: var(--td-common-white);
  border-radius: 50%;
  padding: 30px 10px;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}
.td-portfolio-5-btn:hover {
  background: var(--td-theme-2);
  color: var(--td-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-5-wrap {
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
  }
}
.td-portfolio-5-wrap:hover .td-portfolio-5-btn {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.td-portfolio-5-wrap:hover .td-portfolio-5-thumb img {
  transform: scale(1.1);
}
.td-portfolio-5-title {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 40px;
  color: var(--td-common-black-4);
}
.td-portfolio-5-title span {
  font-family: var(--td-ff-body);
  font-size: 18px;
  color: var(--td-grey-4);
}
@media (max-width: 575px) {
  .td-portfolio-6-thumb {
    margin-left: 50px;
  }
}
.td-portfolio-6-thumb .roun {
  border-radius: 10px;
}
.td-portfolio-6-thumb img {
  border-radius: 10px;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-6-thumb-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-portfolio-6-thumb-wrap.spacing {
  margin-top: 340px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-portfolio-6-thumb-wrap.spacing {
    margin-top: 130px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-6-thumb-wrap.spacing {
    margin-top: 80px;
  }
}
.td-portfolio-6-thumb-wrap.item-3 {
  margin-top: -10px;
  margin-right: -30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-6-thumb-wrap.item-3 {
    margin-top: 130px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .td-portfolio-6-thumb-wrap.item-3 {
    margin-top: 80px;
  }
}
.td-portfolio-6-thumb-wrap.item-4 {
  margin-top: 750px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-6-thumb-wrap.item-4 {
    margin-top: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-portfolio-6-thumb-wrap.item-4 {
    margin-top: 130px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-6-thumb-wrap.item-4 {
    margin-top: 80px;
  }
}
.td-portfolio-6-thumb-wrap.item-5 {
  margin-top: -355px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-portfolio-6-thumb-wrap.item-5 {
    margin-top: 130px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-6-thumb-wrap.item-5 {
    margin-top: 80px;
  }
}
.td-portfolio-6-thumb-wrap:hover .td-portfolio-6-thumb img {
  transform: scale(1.1);
}
.td-portfolio-6-thumb-wrap:hover .td-portfolio-6-transparent {
  -webkit-text-fill-color: rgba(6, 50, 49, 0.1);
  -webkit-text-stroke-color: rgba(6, 50, 49, 0.1);
}
.td-portfolio-6-thumb-wrap:hover .td-portfolio-6-btn {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.td-portfolio-6-content .tag {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-grey-5);
}
.td-portfolio-6-content .title {
  font-family: var(--td-ff-manrope);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-theme-3);
}
.td-portfolio-6-transparent {
  font-family: var(--td-ff-body);
  font-weight: 800;
  font-size: 160px;
  letter-spacing: -0.02em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: rgba(6, 50, 49, 0.3);
  -webkit-text-stroke-width: 2px;
  position: absolute;
  top: -125px;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .td-portfolio-6-transparent {
    font-size: 90px;
    top: -70px;
  }
}
.td-portfolio-6-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 65px;
  background: var(--td-theme-3);
  display: inline-block;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-6-title-wrap {
    margin-left: 0;
  }
}
.td-portfolio-7-thumb {
  overflow: hidden;
  border-radius: 10px;
}
.td-portfolio-7-thumb img {
  border-radius: 10px;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-7-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.td-portfolio-7-wrap:hover .td-portfolio-7-tag {
  opacity: 1;
  visibility: visible;
}
.td-portfolio-7-wrap:hover .td-portfolio-7-thumb img {
  transform: scale(1.1);
}
.td-portfolio-7-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.td-portfolio-7-tag a {
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
  border-radius: 20px;
  padding: 7px 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--td-common-black-5);
  background: var(--td-common-white);
  margin-right: 5px;
}
.td-portfolio-7-tag a:hover {
  background: var(--td-common-black-5);
  color: var(--td-common-white);
}
.td-portfolio-7-title {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--td-common-black-5);
}
.td-portfolio-7-title a:hover {
  color: var(--td-theme-4);
}
.td-portfolio-showcase-inner img {
  border-radius: 10px;
}
.td-portfolio-showcase-slider-spacing {
  padding-top: 255px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-portfolio-showcase-slider-spacing {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-showcase-slider-spacing {
    padding-top: 160px;
  }
}
.td-portfolio-showcase-slider-spacing .swiper-container {
  overflow: visible !important;
}
.td-portfolio-showcase-content {
  margin-top: -43px;
  visibility: hidden;
  opacity: 1;
  transition: all 0.5s ease;
  animation-fill-mode: both;
}
@media (max-width: 575px) {
  .td-portfolio-showcase-content {
    margin-top: -20px;
  }
}
.td-portfolio-showcase-content .title {
  font-weight: 600;
  font-size: 90px;
  line-height: 89%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--td-common-black-2);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-portfolio-showcase-content .title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-portfolio-showcase-content .title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-portfolio-showcase-content .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-showcase-content .title {
    font-size: 40px;
  }
}
.td-portfolio-showcase-content .title span {
  font-style: italic;
  font-weight: 400;
}
.td-portfolio-showcase-content .dates {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #636363;
  display: inline-block;
}
.td-portfolio-showcase-slide-active .swiper-slide.swiper-slide-active .td-portfolio-showcase-content {
  -webkit-animation: tdfadeUp 1s 0.3s forwards;
  animation: tdfadeUp 1s 0.3s forwards;
  animation-fill-mode: both;
  opacity: 1;
  visibility: visible;
}
.td-portfolio-showcase-nav span {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--td-common-black-2);
  border: 1px solid rgba(19, 22, 13, 0.1);
  border-radius: 20px;
  padding: 1px 16px;
  display: inline-block;
}
.td-portfolio-showcase-nav span.td-portfolio-showcase-button-next {
  float: right;
}
.td-portfolio-showcase-pagenation {
  text-align: center;
  margin-bottom: -30px;
}
.td-portfolio-showcase-pagenation-wrap {
  padding-top: 95px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-showcase-pagenation-wrap {
    padding-top: 40px;
  }
}
.td-portfolio-showcase-pagenation span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #dedede;
  opacity: 1;
  margin: 0 5px;
  position: relative;
}
.td-portfolio-showcase-pagenation span.swiper-pagination-bullet-active {
  background: var(--td-common-black-2);
}
.td-portfolio-showcase-pagenation span.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.td-portfolio-showcase-pagenation span::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: -3px;
  left: -3px;
  border: 1px solid var(--td-common-black-2);
  border-radius: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}
.td-portfolio-filter-content {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.td-portfolio-filter-content span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
}
.td-portfolio-filter-content .titles {
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -0.04em;
  color: var(--td-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-filter-content .titles {
    font-size: 40px;
  }
}
.td-portfolio-filter-content .titles a:hover {
  color: var(--td-theme-primary);
}
.td-portfolio-filter-thumb {
  border-radius: 6px;
}
.td-portfolio-filter-thumb img {
  border-radius: 6px;
  transition: all 0.4s ease;
}
.td-portfolio-filter-wrapper:hover .td-portfolio-filter-thumb img {
  transform: scale(1.1);
}
.td-portfolio-filter-btn button {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--td-grey-1);
  border-bottom: 1px solid transparent;
  padding: 0;
  margin: 0 23px;
  margin-bottom: 10px;
}
.td-portfolio-filter-btn button:hover {
  color: var(--td-common-black);
  border-color: var(--td-common-black);
}
.td-portfolio-filter-btn button.active {
  color: var(--td-common-black);
  border-color: var(--td-common-black);
}
.td-portfolio-filter-three .td-portfolio-filter-content .titles {
  font-size: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-filter-three .td-portfolio-filter-content .titles {
    font-size: 35px;
  }
}
.td-portfolio-filter-four .td-portfolio-filter-content .titles {
  font-size: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-filter-four .td-portfolio-filter-content .titles {
    font-size: 30px;
  }
}
.td-portfolio-filter-four .td-portfolio-filter-content {
  left: 50px;
  right: 40px;
  text-align: left;
}
.td-portfolio-details-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .td-portfolio-details-info {
    justify-content: center;
  }
}
.td-portfolio-details-info-item {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}
.td-portfolio-details-info-item .titles {
  font-weight: 600;
  font-size: 24px;
}
.td-portfolio-details-info-item .dates {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-brand-dates {
    margin-bottom: 40px;
  }
}
.td-portfolio-brand-dates p span {
  color: var(--td-common-black);
  font-weight: 600;
}
.td-portfolio-brand-list-title {
  font-weight: 600;
  font-size: 24px;
}
.td-portfolio-brand-list-border {
  width: 100%;
  height: 1px;
  background: rgba(28, 29, 31, 0.1);
}
.td-portfolio-brand-bigtext {
  font-family: var(--td-ff-dm);
  font-weight: 400;
  font-size: 240px;
  line-height: 13%;
  color: rgba(28, 29, 31, 0.1);
  margin-left: -880px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-portfolio-brand-bigtext {
    margin-left: 0;
    font-size: 100px;
    line-height: 1;
  }
}
.td-portfolio-identity-subtitle {
  font-family: var(--td-ff-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: -0.02em;
  color: #1c1d1f;
}
.td-portfolio-identity-content h5 {
  font-weight: 600;
  font-size: 26px;
  line-height: 138%;
}
.td-portfolio-identity-content p {
  line-height: 30px;
}
.td-portfolio-identity-slider-thumb img {
  border-radius: 6px;
}
.td-portfolio-identity-navigation span {
  font-weight: 600;
  font-size: 18px;
  color: var(--td-common-black);
}
.td-portfolio-identity-navigation span i {
  border: 1px solid rgba(28, 29, 31, 0.14);
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  transition: all 0.4s ease;
}
.td-portfolio-identity-navigation span i:hover {
  background: var(--td-common-black);
  color: var(--td-common-white);
}
.td-portfolio-identity-border {
  height: 70px;
  width: 1px;
  background: rgba(28, 29, 31, 0.1);
}

/*=============================
	08. counter
===============================*/
.td-counter-2-wrap .td-counter-4-item .title {
  font-family: var(--td-ff-body);
  font-weight: 700;
  font-size: 60px;
  color: var(--td-theme-secondary);
  display: flex;
  align-items: start;
}
.td-counter-2-wrap .td-counter-4-item .position {
  font-family: var(--td-ff-body);
  color: var(--td-common-black);
}
.td-counter-2-wrap .td-counter-4-item .para {
  color: var(--td-grey-1);
}
.td-counter-2-wrap .td-counter-4-item {
  border: 1px solid rgba(10, 17, 25, 0.1215686275);
}
.td-counter-2-wrap .td-counter-4-item:hover {
  background: var(--td-theme-secondary);
}
.td-counter-2-wrap .td-counter-4-item:hover .title {
  color: var(--td-common-white);
}
.td-counter-2-wrap .td-counter-4-item:hover .para {
  color: var(--td-common-white);
}
.td-counter-2-wrap .td-counter-4-item:hover .position {
  color: var(--td-common-white);
}
.td-counter-3-item {
  background: var(--td-common-white);
  border-radius: 10px;
  padding: 30px 60px 44px 40px;
}
.td-counter-3-item .title {
  font-family: var(--td-ff-manrope);
  font-weight: 700;
  font-size: 90px;
  letter-spacing: -0.04em;
  color: var(--td-theme-primary);
  margin-bottom: 180px;
  display: flex;
  align-items: center;
}
.td-counter-3-item .para {
  font-family: var(--td-ff-manrope);
  font-weight: 500;
  font-size: 20px;
  color: var(--td-common-black);
  display: flex;
  justify-content: end;
}
.td-counter-3-shape {
  left: 0;
  bottom: 0;
  position: absolute;
}
@media (max-width: 575px) {
  .td-counter-3-shape {
    width: 100px;
  }
}
.td-counter-4-item {
  border: 1px solid #457c61;
  padding: 30px 40px 30px 40px;
  margin-right: -1px;
  transition: all 0.4s ease;
}


.ai {
  padding: 30px 40px 39px 40px !important;
}


.autodesk-list {
  text-align: left;
  padding-left: 1.2em;
}


@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-counter-4-item {
    margin-bottom: -1px;
  }
}
.td-counter-4-item:hover {
  background: var(--td-common-green-2);
  transform: scaleY(105%);
  border: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-counter-4-item:hover {
    transform: scaleY(100%);
    border: var(--td-common-green-2);
  }
}
.td-counter-4-item:hover .position {
  color: var(--td-theme-1);
}
.td-counter-4-item:hover .para {
  color: var(--td-theme-1);
}
.td-counter-4-item:hover .title {
  color: var(--td-theme-1);
}
.td-counter-4-item .title {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 70px;
  color: var(--td-common-white);
  transition: all 0.4s ease;
}
.td-counter-4-item .position {
  font-family: var(--td-ff-roboto);
  font-weight: 700;
  font-size: 18px;
  color: var(--td-common-yellow);
  transition: all 0.4s ease;
}
.td-counter-4-item .para {
  line-height: 24px;
  color: var(--td-grey-3);
  transition: all 0.4s ease;
}
.td-counter-6-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.td-counter-6-item {
  text-align: center;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(6, 50, 49, 0.15);
  border-radius: 200px;
  padding-top: 90px;
  transition: all 0.4s ease;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-counter-6-item {
    width: 250px;
    height: 250px;
    padding-top: 70px;
  }
}
.td-counter-6-item:hover {
  background: #ffbf43;
  border-color: #ffbf43;
}
.td-counter-6-item .count {
  font-family: var(--td-ff-rethink);
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--td-theme-3);
  margin-bottom: 0;
}
.td-counter-6-item .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: var(--td-grey-5);
}

/*=============================
	06. chose
===============================*/
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-chose-3-list-wrap {
    margin-right: 0;
  }
}
.td-chose-3-list h6 {
  font-family: var(--td-ff-manrope);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--td-common-black-2);
}
.td-chose-3-list p {
  color: var(--td-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-chose-6-thumb {
    margin-right: 0;
  }
}
.td-chose-6-thumb img {
  border-radius: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-chose-6-list-wrap {
    margin-right: 0;
  }
}
.td-chose-6-list-wrap .td-chose-3-list h6 {
  font-family: var(--td-ff-body);
  color: var(--td-theme-3);
}
.td-chose-6-list-wrap .td-chose-3-list p {
  color: var(--td-grey-5);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-chose-6-list-wrap .td-chose-3-list p br {
    display: none;
  }
}

/*=============================
	28. video
===============================*/
.td-video-play {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: var(--td-common-yellow);
  color: var(--td-common-black);
  display: inline-block;
  text-align: center;
  line-height: 80px;
}
.td-video-4-wrap {
  width: 650px;
  background: var(--td-common-green-2);
  padding: 55px 60px 50px 60px;
  margin-top: 700px;
  float: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-video-4-wrap {
    margin-top: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-video-4-wrap {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .td-video-4-wrap {
    padding: 25px 20px 20px 20px;
  }
}
.td-video-4-title {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--td-theme-1);
}
.td-video-5-title-wrap .td-section-5-bigtitle span {
  margin-left: 370px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-video-5-title-wrap .td-section-5-bigtitle span {
    margin-left: 0;
  }
}
.td-video-5-shape {
  position: absolute;
  left: 170px;
  bottom: 0;
}
.td-video-5-content {
  z-index: 2;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #d8d8d4;
  width: 720px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-video-5-content {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .td-video-5-content {
    flex-direction: column;
  }
  .td-video-5-content img {
    margin-bottom: 30px;
    margin-right: 0;
  }
}
.td-video-5-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--td-common-black-4);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-video-5-content p br {
    display: none;
  }
}
.td-video-5-wrap video {
  width: 100%;
  height: 930px;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-video-5-wrap video {
    height: 600px;
  }
}
@media (max-width: 575px) {
  .td-video-5-wrap video {
    height: 500px;
  }
}
.td-video-6-wrap {
  padding-top: 540px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-video-6-wrap {
    padding-top: 300px;
  }
}
.td-video-6-inner {
  width: 100px;
  height: 100px;
  display: inline-block;
  text-align: center;
  line-height: 100px;
  background: var(--td-common-green-2);
  border-radius: 100px;
}

/*=============================
	03. awards
===============================*/
.td-awards-4-brands {
  column-count: 2;
  padding-left: 110px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-awards-4-brands {
    padding-left: 0;
    margin-top: 30px;
  }
}
.td-awards-4-brands a {
  margin-bottom: 60px;
  display: inline-block;
}
.td-awards-4-para {
  padding-left: 35px;
  padding-right: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-awards-4-para {
    padding: 0;
  }
}
.td-awards-4-para p {
  color: var(--td-grey-3);
}
.td-awards-5-btn {
  font-weight: 500;
  font-size: 18px;
  color: var(--td-common-white);
  background: var(--td-common-black-4);
  display: inline-block;
  padding: 8px 33px;
}
.td-awards-5-btn:hover {
  color: var(--td-common-white);
}
.td-awards-5-list-item {
  border-top: 1px solid var(--td-common-black-4);
  border-bottom: 1px solid var(--td-common-black-4);
  padding: 17px 30px;
  position: relative;
  margin-bottom: -1px;
}
@media (max-width: 575px) {
  .td-awards-5-list-item {
    padding: 17px 0px;
  }
}
.td-awards-5-list-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
  background: #ff481f;
  top: auto;
  bottom: 0;
  z-index: -1;
  left: 0;
}

/* Muda a cor da fonte para branco ao passar o mouse no card de experiência */
.td-awards-5-list-item:hover,
.td-awards-5-list-item:hover .positions {
  color: #fff !important;
}
.td-awards-5-list-item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.td-awards-5-list-item span {
  font-weight: 500;
  font-size: 18px;
  color: var(--td-common-black-4);
  display: inline-block;
}
@media (max-width: 575px) {
  .td-awards-5-text {
    margin-right: 0;
  }
}
.td-awards-about-wrap .td-awards-5-btn {
  border-radius: 10px;
}
.td-awards-about-wrap .td-awards-5-list-item::before {
  background: var(--td-theme-primary);
}
.td-awards-about-wrap .td-awards-5-list-item span {
  color: var(--td-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-awards-about-wrap .td-awards-5-text {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-awards-about-wrap .td-awards-5-thumb {
    padding-top: 0;
  }
}

/*=============================
	25. awards
===============================*/
.td-team-2-subtitle {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: #595c61;
}
.td-team-2-title {
  font-family: var(--td-ff-dm-sans);
  font-weight: 600;
  font-size: 50px;
  line-height: 108%;
  color: var(--td-common-black);
}
.td-team-2-feature-list ul li {
  font-family: var(--td-ff-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 189%;
  color: #595c61;
  position: relative;
  padding-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-2-feature-list ul li {
    font-size: 16px;
  }
}
.td-team-2-feature-list ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 14px;
  border: 1px solid rgba(10, 17, 25, 0.5);
  border-radius: 50px;
}
.td-team-2-social a {
  color: var(--td-common-black);
  margin-right: 10px;
}
.td-team-2-social a:hover {
  color: var(--td-theme-secondary);
}
.td-team-2-thumb img {
  transition: all 0.4s ease;
}
.td-team-2-wrap:hover .td-team-2-thumb img {
  transform: scale(1.05);
}
.td-team-2-btn {
  margin-left: 225px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-2-btn {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-team-2-content {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-2-content {
    margin-left: 0;
  }
}
.td-team-4-title-wrap .second {
  margin-left: 240px;
}
@media (max-width: 575px) {
  .td-team-4-title-wrap .second {
    margin-left: 0;
  }
}
.td-team-4-subtitle {
  font-family: var(--td-ff-roboto);
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
}
.td-team-4-title {
  font-family: var(--td-ff-teko);
  font-weight: 500;
  font-size: 40px;
  color: var(--td-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-4-title {
    font-size: 30px;
  }
}
.td-team-4-title a:hover {
  color: var(--td-grey-1);
}
.td-team-4-wrap:hover .td-team-4-thumb::before {
  opacity: 1;
  visibility: visible;
}
.td-team-4-wrap:hover .td-team-4-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.td-team-4-thumb {
  position: relative;
}
.td-team-4-thumb::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(5, 52, 29, 0) 0%, #05341d 100%);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.td-team-4-content {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.td-team-4-social a {
  width: 17px;
  color: var(--td-common-white);
  margin: 0 17px;
}
.td-team-4-social a:hover {
  color: var(--td-common-yellow);
}
.td-team-5-title {
  font-family: var(--td-ff-bebas);
  font-weight: 400;
  font-size: 26px;
  color: var(--td-common-black);
  margin-bottom: 0;
}
.td-team-5-title a:hover {
  color: var(--td-theme-2);
}
.td-team-5-thumb {
  overflow: hidden;
}
.td-team-5-thumb img {
  transition: all 0.4s ease;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-5-wrap {
    margin-top: 0;
  }
}
.td-team-5-wrap:hover .td-team-5-thumb img {
  transform: scale(1.1);
}
.td-team-5-content span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--td-grey-4);
}
.td-team-6-wrap:hover .td-team-6-thumb img {
  transform: scale(1.1);
}
.td-team-6-thumb {
  overflow: hidden;
}
.td-team-6-content .name {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-theme-3);
}
.td-team-6-content .name:hover {
  color: var(--td-common-green-2);
}
.td-team-6-content .tag {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-5);
}
.td-team-6-slider {
  position: relative;
}
.td-team-6-slider::before {
  position: absolute;
  content: "";
  width: 608px;
  height: 100%;
  background: linear-gradient(90deg, #fff 24.5%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(-180deg);
  top: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-6-slider::before {
    width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-6-slider::before {
    display: none;
  }
}
.td-team-6-slider::after {
  position: absolute;
  content: "";
  width: 608px;
  height: 100%;
  background: linear-gradient(90deg, #fff 24.5%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  left: 0;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-6-slider::after {
    width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-6-slider::after {
    display: none;
  }
}
.td-team-6-slider .swiper-slide {
  width: auto !important;
}
.td-team-about-wrap .td-team-4-thumb::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #1c1d1f 100%);
}
.td-team-about-wrap .td-team-4-social a:hover {
  color: var(--td-theme-primary);
}
.td-team-about-wrap .td-team-4-title {
  font-family: var(--td-ff-heading);
  font-weight: 600;
}
.td-team-about-wrap .td-team-4-title a:hover {
  color: var(--td-theme-primary);
}
.td-team-details-subtitle {
  font-weight: 400;
  font-size: 18px;
  display: inline-block;
  color: var(--td-grey-1);
}
.td-team-details-title {
  font-size: 60px;
}

.azul {
    font-size: 60px;
    background: linear-gradient(135deg, #6b26d9, #f042bc, #ff794d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    }

    .dd {

    font-size: 40px !important;
    font-weight: 300 !important;
    color: #000 !important;


    }


    .mr {
      margin-bottom: 40px !important
    }

 .lif {
  font-weight: 100 !important;
 }   


 .autom {
  font-weight: 300 !important;
 }


@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-team-details-title {
    font-size: 35px;
  }
}
.td-team-details-content p {
  line-height: 26px;
}
.td-team-details-tag-title {
  font-weight: 600;
  font-size: 20px;
}
.td-team-details-tag-list ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.td-team-details-tag-list ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.td-team-details-tag-list ul li a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--td-common-black);
  padding: 3px 26px;
  display: inline-block;
  border: 1.5px solid rgba(28, 29, 31, 0.2);
  border-radius: 40px;
}
.td-team-details-tag-list ul li a:hover {
  background: var(--td-common-black);
  color: var(--td-common-white);
}
.td-team-details-social a {
  border: 1px solid rgba(28, 29, 31, 0.15);
  color: var(--td-common-black);
}
.td-team-details-social a:hover {
  color: var(--td-common-black);
  border-color: var(--td-common-black);
  background: transparent;
}

.fw-600 {
  font-weight: 600;
}

/*=============================
	12. awards
===============================*/
.td-faq-4-wrap p {
  color: var(--td-grey-3);
}
@media (max-width: 575px) {
  .td-faq-4-wrap p br {
    display: none;
  }
}
.td-faq-4-circale {
  position: absolute;
  bottom: -35px;
  right: 70px;
}
.td-faq-4-accordion {
  padding-left: 112px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-faq-4-accordion {
    padding-left: 0;
  }
}
.td-faq-4-accordion .accordion-body {
  padding: 0;
  padding-top: 18px;
}
.td-faq-4-accordion .accordion-body p {
  color: var(--td-grey-3);
  margin-bottom: 0;
}
.td-faq-4-accordion .accordion-items {
  padding: 10px 10px 22px 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.15);
}
.td-faq-4-accordion .accordion-buttons {
  position: relative;
  padding-right: 40px;
  font-weight: 600;
  font-size: 18px;
  color: var(--td-common-white);
  width: 100%;
  text-align: left;
  line-height: 1;
  padding-left: 28px;
}
.td-faq-4-accordion .accordion-buttons:not(.collapsed) .plus-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.td-faq-4-accordion .accordion-buttons .plus-icon {
  position: absolute;
  top: 50%;
  left: 0;
}
.td-faq-4-accordion .accordion-buttons .plus-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--td-common-white);
  border-radius: 2px;
  transition: 0.4s;
}
.td-faq-4-accordion .accordion-buttons .plus-icon::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--td-common-white);
  border-radius: 2px;
}
.td-faq-2-wrap-right .accordion-buttons {
  font-weight: 500;
  font-size: 24px;
  color: var(--td-common-black);
  padding-left: 0;
  padding-right: 100px;
  line-height: 125%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-faq-2-wrap-right .accordion-buttons {
    padding-right: 10px;
  }
}
.td-faq-2-wrap-right .accordion-buttons.collapsed {
  color: var(--td-grey-1);
}
.td-faq-2-wrap-right .td-faq-4-accordion {
  padding-left: 0;
}
.td-faq-2-wrap-right .td-faq-4-accordion .accordion-buttons .plus-icon {
  left: auto;
  right: 0;
}
.td-faq-2-wrap-right .td-faq-4-accordion .accordion-buttons .plus-icon::before {
  background-color: var(--td-grey-1);
}
.td-faq-2-wrap-right .td-faq-4-accordion .accordion-buttons .plus-icon::after {
  background-color: var(--td-grey-1);
}
.td-faq-2-wrap-right .td-faq-4-accordion .accordion-body p {
  color: var(--td-grey-1);
  margin-bottom: 0;
}
.td-faq-2-wrap-right .td-faq-4-accordion .accordion-items {
  border-bottom: 1px solid #d9d9d9;
  padding: 23px 10px 35px 0;
}
.td-faq-main-form .inputs {
  border: none;
  border-bottom: 1px solid rgba(28, 29, 31, 0.15);
  padding: 0;
  height: 40px;
}
.td-faq-main-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.td-faq-main-wrap-right .accordion-buttons.collapsed {
  color: var(--td-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-faq-main-thumb {
    margin-right: 0;
  }
}

/*=============================
	20. pricing
===============================*/
.td-pricing-6-wrap {
  border: 1px solid rgba(6, 50, 49, 0.15);
  border-radius: 15px;
}
.td-pricing-6-wrap .package {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.td-pricing-6-wrap .para {
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: var(--td-theme-3);
}
.td-pricing-6-wrap .price {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--td-theme-3);
}
.td-pricing-6-wrap .price span {
  font-weight: 400;
  font-size: 18px;
}
.td-pricing-6-wrap .price-btn {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--td-theme-3);
  border: 1px solid rgba(28, 29, 31, 0.15);
  border-radius: 10px;
  padding: 13px 31px;
  display: inline-block;
}
.td-pricing-6-wrap .price-btn.greens {
  border-color: var(--td-common-green-2);
  background: var(--td-common-green-2);
}
.td-pricing-6-wrap .price-btn:hover {
  border-color: var(--td-common-green-2);
  background: var(--td-common-green-2);
}
.td-pricing-6-list {
 
  padding: 30px 40px 40px 50px;
    background: linear-gradient(120deg, #6b26d9, #f042bc, #ff794d);
    color: #fff;
    border-radius: 10px;
}



.generated-time {
  font-weight: 200;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #6b26d9, #f042bc, #ff794d);
  -webkit-background-clip: text;

  background-clip: text;
  color: transparent;
}
@media (max-width: 575px) {
  .td-pricing-6-list {
    padding: 25px 20px 20px 20px;
  }
}
.td-pricing-6-list ul li {
  font-weight: 500;
  font-size: 17px;
  color: var(--td-grey-5);
  position: relative;
  padding-left: 20px;
}
.td-pricing-6-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.td-pricing-6-list ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #555855;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.td-pricing-6-top {
  padding: 45px 80px 40px 50px;
  border-bottom: 1px solid rgba(6, 50, 49, 0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-pricing-6-top {
    padding: 45px 40px 40px 50px;
  }
}
@media (max-width: 575px) {
  .td-pricing-6-top {
    padding: 25px 20px 20px 20px;
  }
}
.td-pricing-main-wrap .td-pricing-6-wrap .price {
  color: var(--td-common-black);
}
.td-pricing-main-wrap .td-pricing-6-wrap .para {
  color: var(--td-common-black);
}
.td-pricing-main-wrap .td-pricing-6-wrap .price-btn.greens {
  border-color: var(--td-theme-primary);
  background: var(--td-theme-primary);
}
.td-pricing-main-wrap .td-pricing-6-wrap .price-btn:hover {
  border-color: var(--td-theme-primary);
  background: var(--td-theme-primary);
}
.td-pricing-main-wrap .td-pricing-6-list ul li {
  color: var(--td-grey-1);
}

/*=============================
	05. brands
===============================*/
.td-brands-7-item {
  border: 1px solid rgba(25, 25, 26, 0.1);
  height: 150px;
  line-height: 150px;
  margin-top: -1px;
  margin-right: -1px;
}

/*=============================
	11. expreance
===============================*/
.td-expreance-7-icon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-expreance-7-icon {
    padding-top: 40px;
  }
}
.td-expreance-7-icon-inner {
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 35px;
  width: 138px;
  padding-top: 40px;
  padding-bottom: 30px;
  margin-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-expreance-7-icon-inner {
    margin-right: 10px;
    width: 122px;
  }
}
.td-expreance-7-icon-inner .title {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-common-black-5);
}
.td-expreance-7-icon-inner .skill {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--td-grey-6);
}
.td-expreance-7-content .title {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--td-common-black-5);
}
.td-expreance-7-content .positions {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-6);
}
.td-expreance-7-item {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: -1px;
}
.td-expreance-7-year .year {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-6);
}

/*=============================
	07. contact
===============================*/
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-2-wrap {
    padding-top: 0;
  }
}
.td-contact-2-wrap .td-contact-7-text-btn a span {
  background: var(--td-theme-secondary);
}
.td-contact-2-wrap .td-contact-7-slide-text {
  font-family: var(--td-ff-dm-sans);
  text-transform: uppercase;
}
.td-contact-2-wrap .td-contact-7-slide-text.yellows {
  color: var(--td-theme-secondary);
}
.td-contact-7-slide-text {
  font-family: var(--td-ff-body);
  font-weight: 700;
  font-size: 280px;
  text-transform: uppercase;
  color: var(--td-common-black-5);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .td-contact-7-slide-text {
    font-size: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-7-slide-text {
    font-size: 120px;
  }
}
.td-contact-7-slide-text.yellows {
  color: var(--td-theme-4);
}
.td-contact-7-text-slider .swiper-slide {
  width: auto !important;
}
.td-contact-7-text-btn {
  margin-bottom: -150px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-7-text-btn {
    margin-bottom: 0;
  }
}
.td-contact-7-text-btn a {
  border-radius: 100%;
  background: var(--td-common-white);
  box-shadow: 4px 0 40px 0 rgba(139, 139, 139, 0.35);
  width: 200px;
  height: 200px;
  display: inline-block;
  text-align: center;
  line-height: 200px;
  position: relative;
  z-index: 2;
}
.td-contact-7-text-btn a span {
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  line-height: 80px;
  background: var(--td-common-black-5);
  border-radius: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.td-contact-7-subtitle {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--td-common-black-5);
}
@media (max-width: 575px) {
  .td-contact-7-subtitle br {
    display: none;
  }
}
.td-contact-7-social-item .icon {
  border: 1px solid rgba(31, 19, 6, 0.15);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
}
.td-contact-7-social-item .cetagory {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--td-grey-6);
  display: block;
}
.td-contact-7-social-item .emails {
  text-transform: lowercase !important;
}
.td-contact-7-social-item .emails:hover {
  color: var(--td-theme-4);
}
.td-contact-7-social-item .link {
  font-family: var(--td-ff-bellefair);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: initial;
  color: var(--td-common-black-5);
}
.td-contact-7-social-item .link:hover {
  color: var(--td-theme-4);
}
.td-contact-7-input-item .labels {
  font-weight: 500;
  font-size: 15px;
  color: var(--td-common-black-5);
}
.td-contact-7-input-item .inputs {
  font-weight: 400;
  font-size: 22px;
  color: var(--td-common-black-5);
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(25, 25, 26, 0.24);
  height: 40px;
}
.td-contact-7-input-item .inputs::placeholder {
  font-weight: 400;
  font-size: 22px;
  color: rgba(117, 108, 99, 0.4);
}
.td-contact-7-input-item .textareas {
  height: 90px;
  resize: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-7-form {
    margin-left: 0;
  }
}
.td-contact-7-form p {
  color: #595c61;

}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-7-form p {
    padding-left: 0;
  }
}
.td-contact-7-btn {
  padding: 17px 20px;
  width: 100%;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  color: var(--td-common-white);
  border-radius: 10px;
  background: var(--td-common-black-5);
}
.td-contact-7-btn:hover {
  background: var(--td-theme-4);
}
.td-contact-form-box label {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
  margin-bottom: 10px;
}
.td-contact-form-box .td-input {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 6px;
  width: 100%;
  height: 60px;
}
.td-contact-form-box .td-input:focus {
  border-color: var(--td-theme-primary);
}
.td-contact-form-box .message {
  height: 160px;
}
.td-contact-form-box .td-btn-group span {
  transition: all 0.4s ease;
}
.td-contact-map-inner {
  line-height: 1;
}
.td-contact-map-inner iframe {
  width: 100%;
  height: 800px;
  filter: saturate(0);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-map-inner iframe {
    height: 500px;
  }
}

.td-contact-map-wrap {
  width: 350px;
  border-radius: 10px;
  background: var(--td-theme-primary);
  padding: 60px 30px 50px 60px;
  position: absolute;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-contact-map-wrap {
    right: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-map-wrap {
    right: 100px;
    top: -30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-map-wrap {
    position: inherit;
    right: auto;
    left: 20px;
    top: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .td-contact-map-wrap {
    width: 100%;
    left: 0;
  }
}
.td-contact-map-wrap h6 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-contact-map-wrap a {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: block;
  color: var(--td-common-black);
}
.td-contact-main-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--td-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-main-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .td-contact-main-title {
    font-size: 40px;
  }
}
.td-contact-main-title span {
  font-family: var(--td-ff-dm);
  font-style: italic;
  font-weight: 400;
}
.td-contact-branch-name {
  font-size: 50px;
  letter-spacing: -0.03em;
}
@media (max-width: 575px) {
  .td-contact-branch-name {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-branch-lucation {
    margin-left: 0;
  }
}
.td-contact-branch-lucation-title {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-contact-branch-lucation .lucation {
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--td-grey-1);
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-branch-lucation .lucation {
    margin-bottom: 40px;
  }
}
.td-contact-branch-lucation .lucation:hover {
  color: var(--td-common-black);
}
.td-contact-branch-lucation .map {
  font-weight: 500;
  font-size: 20px;
  color: #6f7071;
  border-bottom: 1px solid #6f7071;
}
.td-contact-branch-lucation .map:hover {
  color: var(--td-common-black);
  border-color: var(--td-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-contact-branch-number {
    margin-left: 0;
  }
}
.td-contact-branch-number a {
  font-weight: 500;
  font-size: 20px;
  color: var(--td-common-black);
  display: block;
}
.td-contact-branch-number a:hover {
  color: #6f7071;
}
.td-contact-branch-number a.link {
  border-bottom: 1px solid #6f7071;
  display: inline-block;
}
.td-contact-branch-number a.link:hover {
  border-color: #6f7071;
}
.td-contact-branch-border {
  border-bottom: 1px solid rgba(28, 29, 31, 0);
  margin-bottom: 0px;
  padding-bottom: 40px;
}

/*=============================
    18. portfolio slicer
===============================*/
#app {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  height: 100%;
  --swiper-theme-color: #fff;
}

.demo-slide-title {
  font-weight: bold;
  font-size: 58px;
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  z-index: 100;
  transform: translate3d(0, 0, 0);
}

.swiper-slicer-image {
  max-width: unset;
}

.td-portfolio-slicer-slider {
  position: relative;
  z-index: 1;
}
.td-portfolio-slicer-slider .nav-icon {
  font-size: 30px;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
  color: var(--td-common-white);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.td-portfolio-slicer-slider .slider-nav {
  display: flex;
  height: 100px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .td-portfolio-slicer-slider .slider-nav {
    height: 80px;
  }
}
.td-portfolio-slicer-slider .slider-nav-box {
  position: absolute;
  bottom: 44%;
  width: 100%;
}
.td-portfolio-slicer-slider .slide-content {
  position: absolute;
  width: 100%;
  bottom: 37%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.td-portfolio-slicer-slider .slide-content .td-portfolio-slicer-title {
  font-family: var(--td-ff-teko);
  font-weight: 400;
  font-size: 180px;
  line-height: 1;
  text-align: center;
  color: var(--td-common-white);
}
.td-portfolio-slicer-slider .slide-content .td-portfolio-slicer-title span {
  font-weight: 600;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-portfolio-slicer-slider .slide-content .td-portfolio-slicer-title {
    font-size: 130px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-portfolio-slicer-slider .slide-content .td-portfolio-slicer-title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-portfolio-slicer-slider .slide-content .td-portfolio-slicer-title {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .td-portfolio-slicer-slider .slide-content .td-portfolio-slicer-title {
    font-size: 50px;
  }
}
.td-portfolio-slicer-slider .swiper-slide-active .slide-content {
  opacity: 1;
  visibility: visible;
}

.td-portfolio-slicer-click {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
  position: absolute;
  bottom: 52px;
  right: 120px;
  z-index: 2;
}

/*=============================
	16. interactive
===============================*/
.td-interactive-links-spacing {
  padding-top: 210px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-interactive-links-spacing {
    padding-top: 130px;
  }
}
.td-interactive-links-item {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-interactive-links-item {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-interactive-links-item {
    margin-right: 10px;
  }
}
.td-interactive-links-item .title {
  font-family: var(--td-ff-teko);
  font-weight: 400;
  font-size: 180px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .td-interactive-links-item .title {
    font-size: 160px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-interactive-links-item .title {
    font-size: 140px;
    padding-top: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-interactive-links-item .title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-interactive-links-item .title {
    font-size: 80px;
    padding-top: 10px;
  }
}
.td-interactive-links-item .title a {
  display: flex;
  align-items: start;
}
.td-interactive-links-item .title span {
  font-size: 20px;
  color: var(--td-common-white);
  margin-top: 2px;
  margin-right: -15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .td-interactive-links-item .title span {
    margin-top: -5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-interactive-links-item .title span {
    margin-top: -10px;
  }
}
.td-interactive-links-item:hover .td-interactive-links-thumb {
  opacity: 1;
}
.td-interactive-links-wrap:not(:last-child) {
  margin-right: 80px;
}
.td-interactive-links-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 200px;
  opacity: 0;
  margin: -150px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-interactive-links-thumb {
    height: 200px;
    width: 200px;
  }
}

/*=============================
	24. shop
===============================*/
.td-shop-breadcrumb-spacing {
  padding-top: 170px;
  padding-bottom: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-shop-breadcrumb-spacing {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 575px) {
  .td-shop-breadcrumb-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.td-shop-breadcrumb-title {
  font-weight: 700;
  font-size: 60px;
  letter-spacing: -0.03em;
  color: var(--td-common-white);
}
@media (max-width: 575px) {
  .td-shop-breadcrumb-title {
    font-size: 35px;
  }
}
.td-shop-breadcrumb-dvdr span {
  font-weight: 600;
  font-size: 18px;
  line-height: 56%;
  color: var(--td-common-white);
}
.td-shop-breadcrumb-dvdr span a {
  color: #beff01;
  margin-right: 4px;
}
.td-shop-widget-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-shop-widget-filter .ui-widget.ui-widget-content {
  height: 3px;
  background-color: #EDEDED;
  border: 0;
}
.td-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
  background-color: var(--td-common-black);
}
.td-shop-widget-filter .ui-slider .ui-slider-handle {
  top: -2px;
  width: 7px;
  height: 7px;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 8;
  background-color: var(--td-common-black);
}
.td-shop-widget-filter-info .input-range input {
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--td-common-black);
  font-weight: 500;
  font-size: 14px;
}
.td-shop-widget-filter-info .td-shop-widget-filter-btn {
  font-weight: 400;
  font-size: 14px;
  color: var(--td-common-black);
  padding: 2px 16px;
  background-color: #F5F5F5;
  border-radius: 15px;
  background-color: var(--td-theme-primary);
}
.td-shop-widget-filter-info .td-shop-widget-filter-btn:hover {
  color: var(--td-common-white);
  background-color: var(--td-common-black);
}
.td-shop-widget-checkbox ul li {
  list-style: none;
}
.td-shop-widget-checkbox ul li:not(:last-child) {
  margin-bottom: 4px;
}
.td-shop-widget-checkbox ul li input {
  display: none;
}
.td-shop-widget-checkbox ul li input .single-widget-category input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.td-shop-widget-checkbox ul li input:checked ~ label::after {
  background-color: var(--td-common-black);
  border-color: var(--td-common-black);
}
.td-shop-widget-checkbox ul li input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.td-shop-widget-checkbox ul li label {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 26px;
  color: #6f7071;
}
.td-shop-widget-checkbox ul li label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 12px;
  text-align: center;
  border: 2px solid rgba(28, 29, 31, 0.15);
  z-index: -1;
  transition: 0.2s;
}
.td-shop-widget-checkbox ul li label::before {
  position: absolute;
  content: url("../img/login/check.svg");
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 11px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--td-common-white);
  transition: 0.2s;
}
.td-shop-widget-checkbox ul li label:hover {
  cursor: pointer;
}
.td-shop-widget-categories ul li {
  list-style: none;
  width: 100%;
}
.td-shop-widget-categories ul li:not(:last-child) {
  margin-bottom: 10px;
}
.td-shop-widget-categories ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #55585B;
  position: relative;
  padding-left: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.td-shop-widget-categories ul li a::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  text-align: center;
  background-color: #E7E7E7;
  border-radius: 50%;
  transition: 0.3s;
}
.td-shop-widget-categories ul li a:hover {
  color: var(--td-common-black);
}
.td-shop-widget-categories ul li a:hover::after {
  background-color: var(--td-common-black);
}
.td-shop-widget-categories ul li a:hover span {
  border-color: var(--td-common-black);
}
.td-shop-widget-categories ul li a span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 5px 6px 3px;
  transition: 0.3s;
}
.td-shop-widget-checkbox-circle {
  position: relative;
}
.td-shop-widget-checkbox-circle span.red {
  background-color: #FF401F;
}
.td-shop-widget-checkbox-circle span.dark_blue {
  background-color: #4666FF;
}
.td-shop-widget-checkbox-circle span.oragnge {
  background-color: #FF9E2C;
}
.td-shop-widget-checkbox-circle span.purple {
  background-color: #B615FD;
}
.td-shop-widget-checkbox-circle span.yellow {
  background-color: #FFD747;
}
.td-shop-widget-checkbox-circle span.green {
  background-color: #41CF0F;
}
.td-shop-widget-checkbox-circle-list ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.td-shop-widget-checkbox-circle-list ul li:not(:last-child) {
  margin-bottom: 5px;
}
.td-shop-widget-checkbox-circle-list ul li:hover .td-shop-widget-checkbox-circle-number {
  border-color: var(--td-common-black);
}
.td-shop-widget-checkbox-circle-number {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border-radius: 8px;
  padding: 5px 6px 3px;
  transition: 0.3s;
  border: 1px solid #EAEAEA;
}
.td-shop-widget-checkbox-circle .td-shop-widget-checkbox-circle-self {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  z-index: -1;
  border-radius: 50%;
  transition: 0.2s;
}
.td-shop-widget-checkbox-circle input {
  display: none;
}
.td-shop-widget-checkbox-circle input .single-widget-category input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.td-shop-widget-checkbox-circle input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.td-shop-widget-checkbox-circle label {
  font-size: 16px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
}
.td-shop-widget-checkbox-circle label:hover {
  cursor: pointer;
}
.td-shop-small-thumb {
  margin-right: 13px;
}
.td-shop-small-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex: 0 0 auto;
}
.td-shop-small-ratings .ratings {
  font-size: 12px;
  color: #ffb21d;
}
.td-shop-small-ratings .total {
  font-weight: 500;
  font-size: 12px;
  line-height: 83%;
  color: #6f7071;
}
.td-shop-small-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--td-common-black);
  margin-bottom: 3px;
}
.td-shop-small .price {
  font-weight: 400;
  font-size: 14px;
  color: var(--td-grey-1);
}
.td-shop-small-social a {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 4px;
  color: var(--td-grey-1);
  margin-right: 3px;
}
.td-shop-small-social a:hover {
  color: var(--td-common-black);
  background: var(--td-theme-primary);
}
.td-shop-sidebar-wrap {
  padding-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-shop-sidebar-wrap {
    padding-left: 0;
  }
}
.td-shop-top-result p {
  font-weight: 400;
  font-size: 16px;
  color: #818487;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 575px) {
  .td-shop-top-result p {
    margin-bottom: 20px;
  }
}
.td-shop-top-select .nice-select {
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  padding: 0 25px;
  min-width: 204px;
  text-transform: capitalize;
  float: none;
  background: #f9f9f9;
  color: var(--td-common-black);
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 6px;
}
.td-shop-top-btn {
  font-weight: 500;
  font-size: 14px;
  color: var(--td-common-white);
  border-radius: 6px;
  padding: 7px 30px;
  background-color: var(--td-common-black);
}
.td-shop-top-btn svg {
  margin-right: 7px;
  transform: translateY(-2px);
}
.td-shop-top-btn:hover {
  color: var(--td-common-black);
  background-color: var(--td-theme-primary);
}

.td-product-action {
  position: absolute;
  right: 0;
  top: 108px;
  z-index: 1;
  left: 30px;
  opacity: 0;
  text-align: center;
  transition: all 0.4s ease;
}
.td-product-action-btn {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--td-common-black);
  background-color: var(--td-common-white);
  border-bottom: 0;
  border-radius: 50%;
  margin-bottom: 6px;
  box-shadow: 0 1px 2px 0 rgba(1, 15, 28, 0.2);
}
.td-product-action-btn:hover {
  color: var(--td-common-white);
  background-color: var(--td-common-black);
  border-color: var(--td-common-black);
}
.td-product-action-btn:hover .td-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(20px) translateY(-50%);
  -moz-transform: translateX(20px) translateY(-50%);
  -ms-transform: translateX(20px) translateY(-50%);
  -o-transform: translateX(20px) translateY(-50%);
  transform: translateX(20px) translateY(-50%);
}
.td-product-thumb {
  border-radius: 10px;
}
.td-product-thumb img {
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  -ms-transition: all 0.9s ease-out 0s;
  -o-transition: all 0.9s ease-out 0s;
  transition: all 0.9s ease-out 0s;
}
.td-product-btn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.td-product-btn a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--td-common-white);
  border-radius: 10px;
  background: var(--td-common-black);
  padding: 13px 42px;
  display: inline-block;
}
.td-product-content {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 7px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .td-product-content {
    padding: 7px 10px;
  }
}
.td-product-category {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--td-grey-1);
  margin-bottom: 3px;
  display: inline-block;
}
.td-product-category-wrap {
  margin-right: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-product-category {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .td-product-category {
    font-size: 12px;
  }
}
.td-product-title {
  font-weight: 600;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .td-product-title {
    font-size: 14px;
  }
}
.td-product-title:hover a {
  color: var(--td-common-black);
}
.td-product-price {
  font-family: var(--td-ff-common);
  font-weight: 700;
  line-height: 1;
  font-size: 21px;
  color: var(--td-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .td-product-price {
    font-size: 17px;
  }
}
.td-product-item:hover .td-product-action {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.td-product-item:hover .td-product-thumb img {
  -webkit-transform: scale(1.1) rotate(-2deg);
  -moz-transform: scale(1.1) rotate(-2deg);
  -ms-transform: scale(1.1) rotate(-2deg);
  -o-transform: scale(1.1) rotate(-2deg);
  transform: scale(1.1) rotate(-2deg);
}
.td-product-item:hover .td-product-btn {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.td-product-tooltip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 35px;
  font-weight: 500;
  font-size: 12px;
  color: var(--td-common-white);
  background-color: var(--td-common-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
}
.td-product-tooltip::before {
  -webkit-transform: translateY(-65%);
  -moz-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  -o-transform: translateY(-65%);
  transform: translateY(-65%);
  position: absolute;
  content: "";
  top: 46%;
  width: 0;
  height: 0;
  transform: rotate(67deg);
  border-left: 8px solid var(--td-common-black);
  border-bottom: 8px solid transparent;
  left: -6px;
}
.td-product-tooltip-right {
  left: 100%;
  right: auto;
}
.td-product-tooltip-right::before {
  left: -4px;
  right: auto;
  border-left: 0;
  border-right: 8px solid var(--td-common-black);
}
.td-product-details-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.td-product-details-nav-link {
  width: 150px;
  height: 150px;
  padding: 0;
  border: none;
  margin: 10px 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-product-details-nav-link {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .td-product-details-nav-link {
    width: 80px;
    height: 80px;
  }
}
.td-product-details-nav-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.td-product-details-nav-link.active {
  border: none;
}
.td-product-details-nav-link:hover {
  border: none;
}
.td-product-details-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: var(--td-grey-1);
  display: inline-block;
}
.td-product-details-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--td-common-black);
}
.td-product-details-price {
  font-weight: 600;
  font-size: 22px;
  font-family: var(--td-ff-heading);
  color: var(--td-common-black);
}
.td-product-details-ratings i {
  color: #ffb21d;
}
.td-product-details-ratings .total {
  font-weight: 400;
  font-size: 15px;
  color: #55585b;
}
.td-product-details-content {
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  color: var(--td-grey-1);
}
.td-product-details-content span {
  font-weight: 500;
  color: var(--td-common-black);
}
.td-product-details-view {
  font-size: 16px;
  font-weight: 400;
  color: var(--td-grey-1);
}
.td-product-details-view span {
  color: var(--td-common-black);
  font-weight: 500;
  margin-right: 4px;
}
.td-product-details-color-title {
  font-weight: 400;
  font-size: 15px;
  color: var(--td-common-black);
}
.td-product-details-color-filter .td-checkbox {
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  border: none;
  outline: none;
  flex: 0 0 auto;
  background: #f26339;
  -webkit-transform: translateY(-2.5px);
  -moz-transform: translateY(-2.5px);
  -ms-transform: translateY(-2.5px);
  -o-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
  padding: 0;
  margin-right: 4px;
  transform: translateY(1px);
  border-radius: 50px;
}
.td-product-details-color-filter .td-checkbox-2 {
  background: #F1B23D;
}
.td-product-details-color-filter .td-checkbox-3 {
  background: rgba(224, 74, 182, 0.94);
}
.td-product-details-color-filter .td-checkbox-4 {
  background: #31bb00;
}
.td-product-details-color-filter .td-checkbox:checked {
  position: relative;
  border-color: transparent;
}
.td-product-details-color-filter .td-checkbox:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--td-ff-fontawesome);
  font-size: 10px;
  color: var(--td-common-white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.td-product-details-color-filter .td-checkbox:hover {
  cursor: pointer;
}
.td-product-details-action-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--td-common-black);
}
.td-product-details-quantity {
  width: 122px;
  position: relative;
  background: var(--td-common-white);
}
.td-product-details-quantity .td-quantity-input {
  height: 44px;
  text-align: center;
  font-size: 14px;
  border: none;
  background-color: var(--td-common-white);
  padding: 0 45px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  color: var(--td-common-black);
}
.td-product-details-quantity span {
  width: 35px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #6f7071;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.4s ease;
  margin: 0 3px !important;
  cursor: pointer;
}
.td-product-details-quantity span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-color: #e1e1e1;
}
.td-product-details-quantity span.decrement {
  right: auto;
  left: 0;
}
.td-product-details-quantity span.decrement::before {
  left: auto;
  right: 0;
}
.td-product-details-cart-btn {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--td-common-black);
  border-radius: 6px;
  padding: 10px 92px;
  display: inline-block;
  background: var(--td-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-product-details-cart-btn {
    padding: 10px 40px;
  }
}
.td-product-details-cart-btn:hover {
  color: var(--td-common-white);
  background: var(--td-common-black);
}
.td-product-details-wishlist-btn {
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: var(--td-common-white);
  border-radius: 6px;
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
}
.td-product-details-wishlist-btn:hover {
  color: var(--td-common-white);
  background: var(--td-common-black);
}
.td-product-details-compare-wrap ul li {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.td-product-details-compare-wrap ul li h5 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  margin-right: 10px;
}
.td-product-details-compare-wrap ul li span {
  font-weight: 400;
  color: var(--td-grey-1);
}
.td-product-details-compare-wrap ul li span.black {
  color: var(--td-common-black);
}
.td-product-details-social a {
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: var(--td-common-white);
  border-radius: 6px;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 35px;
  color: var(--td-common-black);
}
.td-product-details-social a:hover {
  color: var(--td-common-white);
  background: var(--td-common-black);
  border-color: var(--td-common-black);
}
.td-product-details-payment-way {
  border: 1px solid rgba(28, 29, 31, 0.1);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 20px 0px 20px;
}
.td-product-details-payment-text span {
  font-weight: 400;
  font-size: 14px;
  color: var(--td-common-black);
}
.td-product-details-payment-text span.grey {
  color: var(--td-grey-1);
  display: block;
  line-height: 1;
}
.td-product-details-payment-bank a {
  height: 32px;
  box-shadow: 0 1px 3px 0 rgba(1, 15, 28, 0.1);
  background: #fff;
  display: inline-block;
  line-height: 32px;
  padding: 1px 8px;
  border-radius: 6px;
  margin-left: 6px;
}
.td-product-details-tab-line {
  transition: all 0.3s 0s ease-out;
  position: absolute;
  bottom: -3px;
  height: 3px;
  background-color: var(--td-theme-secondary);
  display: block;
}
.td-product-details-tab-nav .nav-tabs {
  border: none;
}
@media (max-width: 575px) {
  .td-product-details-tab-nav .nav-tabs {
    padding-bottom: 0;
  }
}
.td-product-details-tab-nav .nav-tabs .nav-link {
  text-transform: capitalize;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--td-common-black);
  padding: 17px 52px;
  border-radius: 0;
  border-bottom: 1px solid rgba(28, 29, 31, 0.1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-product-details-tab-nav .nav-tabs .nav-link {
    padding-bottom: 10px;
  }
}
.td-product-details-tab-nav .nav-tabs .nav-link:not(:first-child) {
  margin-left: 5px;
}
.td-product-details-tab-nav .nav-tabs .nav-link.active, .td-product-details-tab-nav .nav-tabs .nav-link:hover {
  background: var(--td-theme-primary);
  border-color: var(--td-theme-primary);
}
.td-product-details-tab-nav .nav-tabs .nav-link.active::after, .td-product-details-tab-nav .nav-tabs .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 575px) {
  .td-product-details-tab-nav .nav-tabs span#productTabMarker {
    display: none !important;
  }
}
.td-product-details-desc-wrapper > p {
  line-height: 30px;
  text-transform: capitalize;
  color: var(--td-grey-1);
}
.td-product-details-desc-wrapper ul li {
  font-weight: 400;
  font-size: 18px;
  color: var(--td-grey-1);
  display: flex;
  margin-bottom: 15px;
}
.td-product-details-desc-wrapper ul li i {
  margin-right: 10px;
  transform: translateY(3px);
}
.td-product-details-desc-title {
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.td-product-details-additional-info-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.td-product-details-additional-info.td-table-style-2 table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0 7px;
  width: 100%;
  font-family: var(--td-ff-poppins);
}
.td-product-details-additional-info.td-table-style-2 table tr {
  border: 0;
}
.td-product-details-additional-info.td-table-style-2 table tr:not(:last-child) {
  border: 0;
  margin-bottom: 6px;
}
.td-product-details-additional-info.td-table-style-2 table tr td {
  padding: 7px 24px;
  border: 1px solid #E6E7E8;
}
.td-product-details-additional-info.td-table-style-2 table tr td:first-child {
  padding-left: 24px;
  border-right: 0;
  font-size: 16px;
  color: var(--tp-common-black);
  background-color: #F9F9F9;
  width: 306px;
}
.td-product-details-additional-info.td-table-style-2 table tr td:last-child {
  padding-left: 34px;
}
.td-product-details-review-title-2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 33px;
}
.td-product-details-review-avater-thumb {
  flex: 0 0 auto;
}
.td-product-details-review-avater-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  flex: 0 0 auto;
}
.td-product-details-review-avater-rating span {
  font-size: 13px;
  margin-right: 2px;
  color: #FFB21D;
  font-family: var(--td-ff-poppins);
}
.td-product-details-review-avater-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--td-ff-poppins);
}
.td-product-details-review-avater-meta {
  font-size: 14px;
  line-height: 1.2;
  margin-left: 3px;
  display: inline-block;
  font-family: var(--td-ff-poppins);
}
@media (max-width: 575px) {
  .td-product-details-review-avater-2 {
    flex-direction: column;
  }
}
.td-product-details-review-form-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 4px;
}
.td-product-details-review-form-rating p {
  font-size: 14px;
  margin-right: 8px;
  margin-bottom: 0;
  font-family: var(--td-ff-poppins);
}
.td-product-details-review-form-rating-icon span {
  font-size: 12px;
  color: #FFB21D;
}
.td-product-details-review-form > p {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--td-ff-poppins);
}
.td-product-details-review-item-wrapper-2 {
  padding-bottom: 80px;
  border-bottom: 1px solid #E6E7E8;
  font-family: var(--td-ff-poppins);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-product-details-thumb-wrapper {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-product-details-wrap {
    margin-right: 0;
    margin-left: 0;
  }
}

/*=============================
	10. error
===============================*/
.td-error-bg {
  width: 100%;
  height: 100vh;
}
.td-error-thumb img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-error-thumb img {
    height: 100%;
  }
}
.td-error-content {
  margin-right: 300px;
  margin-left: 65px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .td-error-content {
    margin-right: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-error-content {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-error-content {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-error-content {
    padding-top: 120px;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-error-content .td-btn-group {
    width: auto;
    justify-content: center;
  }
}
.td-error-content h2 {
  font-weight: 800;
  font-size: 240px;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-error-content h2 {
    font-size: 180px;
  }
}
@media (max-width: 575px) {
  .td-error-content h2 {
    font-size: 100px;
  }
}
.td-error-content .sm-title {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  border-bottom: 1px solid #1c1d1f;
  padding-bottom: 55px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-error-content .sm-title {
    font-size: 30px;
  }
}
.td-error-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--td-common-black);
}

/*=============================
	27. text
===============================*/
.td-text-2-home-slider .swiper-slide {
  display: inline-block;
  width: auto;
}
.td-text-home-2 h2 {
  font-family: var(--td-ff-dm-sans);
  font-weight: 500;
  font-size: 200px;
  line-height: 80%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(10, 17, 25, 0.2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-text-home-2 h2 {
    font-size: 100px;
  }
}

.td-feature-2-slider .swiper-slide {
  width: auto;
}
.td-feature-2-spacing {
  background: var(--td-common-black);
  padding: 17px 0px;
}
.td-feature-2-item {
  display: flex;
  align-items: center;
}
.td-feature-2-item span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--td-common-white);
  display: inline-block;
  margin-right: 12px;
}

/*=============================
	02. achievement
===============================*/
.td-achievement-title-wrap .td-section-2-subtitle {
  color: var(--td-theme-secondary);
}
.td-achievement-title-wrap .td-section-2-title {
  color: var(--td-common-white);
}
.td-achievement-title-wrap .td-section-2-title span {
  color: rgba(255, 255, 255, 0.65);
}
.td-achievement-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px 20px 0px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .td-achievement-item {
    padding: 40px 20px 30px 20px;
  }
}
.td-achievement-item:hover p {
  color: var(--td-common-white);
}
.td-achievement-item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: rgb(248 248 248 / 99%);
  transition: all 0.4s ease;
}

.c {

    color: #cccccc;
}


.d {
    color: #565656;
}


li.d {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}
li.d::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: #ff481f;
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1em;
  margin-right: 0.5em;
}

/* Add check icon before all <li class="c"> using Font Awesome */
li.c {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}
li.c::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: #ff481f;
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1em;
  margin-right: 0.5em;
}



.td-achievement-item {
  height: 100%;

  flex-direction: column;
  justify-content: flex-start;
  /* Se quiser alinhar o conteúdo ao centro verticalmente, use: justify-content: center; */
}




@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-achievement-item p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-achievement-item p br {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
