* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #f4bd0b;
  --secondary: #0060c8;
  --tertiary: #0052b4;
  --title: #141414;
  --text: #5a6577;
  --bg: #f8f9fa;
  --bg2: #041d45;
  --btn_radius: 0.8rem;
  --shadow: 0 1.5rem 1.5rem rgba(203, 209, 211, 0.55);
  --shadow2: 0 1.5rem 1.5rem rgba(40, 70, 107, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.flex {
  display: flex;
}
.flex_middle {
  align-items: center;
}
body {
  font-size: 1.6rem;
  color: var(--title);
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -2;
}
.head.white {
  color: rgb(255, 255, 255);
}
.head.white p,
.head.white .desc {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 200;
  letter-spacing: 0.011rem;
}
.head.bn p,
.head.bn .desc {
  line-height: 3rem;
}
.head.bn.white p,
.head.bn.white .desc {
  color: rgba(255, 255, 255, 0.85);
}
.head h1 {
  font-size: 6.8rem;
  line-height: 1.08824;
  font-weight: 500;
  text-transform: uppercase;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 300;
  color: var(--text);
}
.page_banner {
  border-bottom: 0.5rem solid var(--primary);
}
.page_banner .flex {
  min-height: 63rem;
  padding: 4rem 0px;
}
.page_banner .head {
  flex: 1 1 0%;
  max-width: 68.4rem;
  width: 100%;
}
.page_banner .breadcrumbs {
  line-height: 2rem;
  min-height: 3rem;
}
.page_banner .breadcrumbs span {
  font-size: 1.535rem;
  color: rgb(0, 93, 195);
}
.page_banner .breadcrumbs span span::before {
  content: "/";
  color: rgb(255, 255, 255);
  display: inline-block;
  margin: 0px 0.9rem 0px 0.5rem;
}
.page_banner .breadcrumbs span span:first-child::before {
  display: none;
}
.page_banner .breadcrumbs span a {
  color: rgb(255, 255, 255);
  transition: 0.3s;
  text-decoration: underline transparent;
}
.page_banner .breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_banner p {
  max-width: 52.2rem;
  margin-top: 2.4rem;
}
.page_banner h1 {
  max-width: 61rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --btn_radius: 4px;
    --shadow: 0 10px 10px rgba(203, 209, 211, 0.55);
    --shadow2: 0 10px 10px rgba(40, 70, 107, 0.55);
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  div.head.white p,
  div.head.white .desc {
    letter-spacing: unset;
  }
  div.head.bn p,
  div.head.bn .desc {
    line-height: 1.5;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 50px 0px;
  }
  .page_banner .flex .head {
    padding: 0px;
    max-width: 400px;
  }
  .page_banner .breadcrumbs {
    line-height: 20px;
    min-height: 30px;
  }
  .page_banner .breadcrumbs span {
    font-size: 14px;
  }
  .page_banner .breadcrumbs span span::before {
    margin: 0px 6px;
  }
}

@media screen and (max-width: 576px) {
  .page_banner::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    content: "";
    background-image: linear-gradient(
      to left,
      rgb(6, 16, 26) -15%,
      transparent
    );
    pointer-events: none;
    z-index: -1;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #f4bd0b;
  --secondary: #0060c8;
  --tertiary: #0052b4;
  --title: #141414;
  --text: #5a6577;
  --bg: #f8f9fa;
  --bg2: #041d45;
  --btn_radius: 0.8rem;
  --shadow: 0 1.5rem 1.5rem rgba(203, 209, 211, 0.55);
  --shadow2: 0 1.5rem 1.5rem rgba(40, 70, 107, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
body {
  font-size: 1.6rem;
  color: var(--title);
}
.head .subtitle {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: var(--tertiary);
  background-color: rgb(235, 241, 249);
  border-radius: 100px;
  padding: 0px 1.6rem;
  margin-bottom: 1.2rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.16667;
  font-weight: 500;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 300;
  color: var(--text);
}
.contact_directly {
  background-color: var(--bg);
  padding: 11rem 0px 11.2rem;
}
.contact_directly p {
  max-width: 64.6rem;
  margin-top: 2.7rem;
}
.contact_directly .items {
  margin-top: 5.3rem;
}
.contact_directly .items ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.39583%;
}
.contact_directly .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: 0.3s;
  border-radius: 1.2rem;
  border: 1px solid rgb(232, 234, 239);
  background-color: rgb(255, 255, 255);
  padding: 10.2845% 8.75274% 10.5033%;
}
.contact_directly .item:hover {
  box-shadow: var(--shadow);
}
.contact_directly .item::before {
  display: block;
  content: "";
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 1.2rem;
  background: no-repeat center / 41.18% var(--secondary);
}
.contact_directly .item .syedittext {
  flex: 1 1 0%;
  margin-top: 2.1rem;
}
.contact_directly .item .syedittext h3 {
  font-size: 2.08rem;
  font-weight: 500;
  color: rgb(10, 22, 40);
}
.contact_directly .item .syedittext p {
  font-size: 1.82rem;
  line-height: 2.95rem;
  color: rgb(90, 98, 116);
  max-width: 30rem;
  margin-top: 0.7rem;
}
.contact_directly .item .link {
  display: inline-flex;
  align-items: center;
  font-size: 1.82rem;
  font-weight: 500;
  color: rgb(0, 26, 64);
  transition: 0.3s;
  margin-top: 1.8rem;
  gap: 0.4rem;
}
.contact_directly .item .link::after {
  display: inline-block;
  content: "→";
  transition: 0.3s;
  font-size: 1.3rem;
}
.contact_directly .item .link:hover {
  color: var(--primary);
}
.contact_directly .item .link:hover::after {
  transform: translateX(20%);
}
.contact_directly .phone::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact2-contact_directly/assets/img/icon-phone-w.svg");
}
.contact_directly .email::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact2-contact_directly/assets/img/icon-email-w.svg");
}
.contact_directly .locate::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact2-contact_directly/assets/img/icon-locate-w.svg");
  background-size: 36.765%;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --btn_radius: 4px;
    --shadow: 0 10px 10px rgba(203, 209, 211, 0.55);
    --shadow2: 0 10px 10px rgba(40, 70, 107, 0.55);
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 8px;
    padding: 0px 12px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  .contact_directly {
    padding: 50px 0px 30px;
  }
  .contact_directly .items {
    margin-top: 10px;
  }
  .contact_directly .items ul {
    display: flex;
    gap: 16px;
    width: calc(100% + 40px);
    padding: 20px;
    margin: 0px -20px;
    overflow-x: auto;
  }
  .contact_directly .items ul::-webkit-scrollbar {
    display: none;
  }
  .contact_directly .items ul li {
    flex: 1 0 230px;
  }
  .contact_directly .item {
    border-radius: 10px;
    padding: 20px;
  }
  .contact_directly .item::before {
    width: 50px;
    height: 50px;
    border-radius: 6px;
  }
  .contact_directly .item .syedittext {
    margin-top: 20px;
  }
  .contact_directly .item .syedittext h3 {
    font-size: 18px;
  }
  .contact_directly .item .syedittext p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .contact_directly .item .link {
    font-size: 14px;
    gap: 5px;
  }
  .contact_directly .item .link::after {
    font-size: 14px;
  }
}

.tools_part_vendor .tools_part_box{
  padding: 4rem 0px;
  text-align: center;
}
.tools_part_vendor .tools_part_box input{
  padding: .8rem 1rem;
  border-radius: 5px;
  min-width: 300px;
  border: 1px #ddd solid ;
}
.tools_part_vendor .tools_part_box button{
  background: white;
  border: 1px solid #f8f8f8;
  color: #4c4c4c;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  font-weight: 500;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  background-color: #33bde9;
  border: 1px solid #33bde9;
  color: white;
  padding: 0.8rem 1.5rem;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #f4bd0b;
  --secondary: #0060c8;
  --tertiary: #0052b4;
  --title: #141414;
  --text: #5a6577;
  --bg: #f8f9fa;
  --bg2: #041d45;
  --btn_radius: 0.8rem;
  --shadow: 0 1.5rem 1.5rem rgba(203, 209, 211, 0.55);
  --shadow2: 0 1.5rem 1.5rem rgba(40, 70, 107, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  color: var(--title);
}
.head .subtitle {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: var(--tertiary);
  background-color: rgb(235, 241, 249);
  border-radius: 100px;
  padding: 0px 1.6rem;
  margin-bottom: 1.2rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.16667;
  font-weight: 500;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 300;
  color: var(--text);
}
.contact_presence {
  background-color: var(--bg);
  padding: 11.2rem 0px 5.5rem;
}
.contact_presence p {
  max-width: 64.6rem;
  margin: 2.6rem auto 0px;
}
.contact_presence .items {
  margin-top: 5.2rem;
}
.contact_presence .items > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.08333%;
}
.contact_presence .items .active .item,
.contact_presence .items .item:hover {
  box-shadow: var(--shadow);
}
.contact_presence .items .active .item .info,
.contact_presence .items .item:hover .info {
  background-color: var(--secondary);
}
.contact_presence .items .active .item .info .continent,
.contact_presence .items .item:hover .info .continent {
  color: rgb(255, 255, 255);
}
.contact_presence .item {
  display: block;
  height: 100%;
  transition: 0.3s;
  border-radius: 1.2rem;
  border: 1px solid rgb(232, 234, 239);
  background-color: rgb(255, 255, 255);
}
.contact_presence .item .info {
  border-radius: 1.2rem;
  background-color: rgb(0, 26, 64);
  transition: 0.3s;
  color: rgb(255, 255, 255);
  padding: 6.33188% 8.51528% 5.24017%;
}
.contact_presence .item .info .continent {
  font-size: 1.388rem;
  font-weight: 500;
  color: rgb(244, 189, 11);
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.255rem;
}
.contact_presence .item .info .country {
  font-size: 2.524rem;
  font-weight: 500;
  margin-top: 0.4rem;
}
.contact_presence .item .desc {
  padding: 5.24017% 8.51528% 9.82533%;
}
.contact_presence .item .desc li + li {
  margin-top: 2rem;
}
.contact_presence .item .desc li {
  position: relative;
  padding-left: 3.3rem;
}
.contact_presence .item .desc li::before {
  position: absolute;
  width: 1.9rem;
  height: 1.9rem;
  left: 0px;
  top: 0.5rem;
  content: "";
  background: left center / 89.5% no-repeat;
}
.contact_presence .item .desc li a,
.contact_presence .item .desc li p {
  font-size: 1.696rem;
  line-height: 2.7rem;
  color: rgb(90, 98, 116);
  margin: 0px;
}
.contact_presence .item .desc li a {
  vertical-align: top;
  transition: 0.3s;
  text-decoration: underline transparent;
}
.contact_presence .item .desc li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.contact_presence .item .desc .email {
  margin-top: 1.9rem;
}
.contact_presence .item .desc .locate::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact4-contact_presence/assets/img/icon-locate-line.svg");
  background-size: contain;
}
.contact_presence .item .desc .phone::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact4-contact_presence/assets/img/icon-phone-line.svg");
}
.contact_presence .item .desc .email::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact4-contact_presence/assets/img/icon-email-line.svg");
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --btn_radius: 4px;
    --shadow: 0 10px 10px rgba(203, 209, 211, 0.55);
    --shadow2: 0 10px 10px rgba(40, 70, 107, 0.55);
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 8px;
    padding: 0px 12px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  .contact_presence {
    padding: 50px 0px 30px;
  }
  .contact_presence .items {
    margin-top: 10px;
  }
  .contact_presence .items > ul {
    display: flex;
    gap: 16px;
    width: calc(100% + 40px);
    padding: 20px;
    margin: 0px -20px;
    overflow-x: auto;
  }
  .contact_presence .items > ul::-webkit-scrollbar {
    display: none;
  }
  .contact_presence .items > ul li {
    flex: 1 0 230px;
  }
  .contact_presence .item {
    border-radius: 10px;
  }
  .contact_presence .item .info {
    border-radius: 10px;
    padding: 14px 20px;
  }
  .contact_presence .item .info .continent {
    font-size: 14px;
    letter-spacing: unset;
  }
  .contact_presence .item .info .country {
    font-size: 18px;
    margin-top: 5px;
  }
  .contact_presence .item .desc {
    padding: 14px 20px;
  }
  .contact_presence .item .desc li + li {
    margin-top: 12px;
  }
  .contact_presence .item .desc .email {
    margin-top: 12px;
  }
  .contact_presence .item .desc li {
    padding-left: 25px;
  }
  .contact_presence .item .desc li::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
  .contact_presence .item .desc li a,
  .contact_presence .item .desc li p {
    font-size: 14px;
    line-height: 1.5;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #f4bd0b;
  --secondary: #0060c8;
  --tertiary: #0052b4;
  --title: #141414;
  --text: #5a6577;
  --bg: #f8f9fa;
  --bg2: #041d45;
  --btn_radius: 0.8rem;
  --shadow: 0 1.5rem 1.5rem rgba(203, 209, 211, 0.55);
  --shadow2: 0 1.5rem 1.5rem rgba(40, 70, 107, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  color: var(--title);
}
.head .subtitle {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: var(--tertiary);
  background-color: rgb(235, 241, 249);
  border-radius: 100px;
  padding: 0px 1.6rem;
  margin-bottom: 1.2rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.16667;
  font-weight: 500;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 300;
  color: var(--text);
}
.contact_follow {
  background-color: var(--bg);
  padding: 5.5rem 0px 10.9rem;
}
.contact_follow .head .subtitle {
  margin-bottom: 1.1rem;
}
.contact_follow p {
  max-width: 64.6rem;
  margin: 2.7rem auto 0px;
}
.contact_follow .items {
  margin-top: 5rem;
}
.contact_follow .items ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem 2.57109%;
}
.contact_follow .items a {
  display: block;
  height: 100%;
  transition: 0.3s;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 234, 239);
  text-align: center;
  border-radius: 1.2rem;
  padding: 22.0605% 11.6108% 22.4476%;
}
.contact_follow .items a:hover {
  box-shadow: var(--shadow);
}
.contact_follow .items a::before {
  display: block;
  width: 7.7rem;
  height: 7.7rem;
  border-radius: 50%;
  background: center center / 41.558% no-repeat;
  margin: 0px auto;
  content: "";
}
.contact_follow .items a .title {
  font-size: 1.913rem;
  font-weight: 500;
  color: rgb(10, 22, 40);
  margin-top: 1.3rem;
}
.contact_follow .items a .link {
  font-size: 1.639rem;
  color: rgb(138, 143, 156);
  margin-top: 1px;
}
.contact_follow .items .facebook a::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact5-contact_follow/assets/img/contact-facebook.svg");
  background-color: rgba(24, 119, 242, 0.1);
}
.contact_follow .items .twitter a::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact5-contact_follow/assets/img/contact-twitter.svg");
  background-color: rgba(29, 161, 242, 0.1);
}
.contact_follow .items .linkedin a::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact5-contact_follow/assets/img/contact-linkedin.svg");
  background-color: rgba(0, 119, 181, 0.1);
}
.contact_follow .items .instagram a::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact5-contact_follow/assets/img/contact-instagram.svg");
  background-color: rgba(225, 48, 108, 0.1);
}
.contact_follow .items .youtube a::before {
  background-image: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact5-contact_follow/assets/img/contact-youtube.svg");
  background-color: rgba(255, 0, 0, 0.1);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --btn_radius: 4px;
    --shadow: 0 10px 10px rgba(203, 209, 211, 0.55);
    --shadow2: 0 10px 10px rgba(40, 70, 107, 0.55);
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 8px;
    padding: 0px 12px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  .contact_follow {
    padding: 50px 0px 30px;
  }
  .contact_follow .head .subtitle {
    margin-bottom: 8px;
  }
  .contact_follow .items {
    margin-top: 10px;
  }
  .contact_follow .items ul {
    display: flex;
    gap: 16px;
    width: calc(100% + 40px);
    padding: 20px;
    margin: 0px -20px;
    overflow-x: auto;
  }
  .contact_follow .items ul::-webkit-scrollbar {
    display: none;
  }
  .contact_follow .items ul li {
    flex: 1 0 170px;
  }
  .contact_follow .items a {
    border-radius: 10px;
    padding: 20px;
  }
  .contact_follow .items a::before {
    width: 50px;
    height: 50px;
  }
  .contact_follow .items a .title {
    font-size: 16px;
    margin-top: 10px;
  }
  .contact_follow .items a .link {
    margin-top: 0px;
    font-size: 14px;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #f4bd0b;
  --secondary: #0060c8;
  --tertiary: #0052b4;
  --title: #141414;
  --text: #5a6577;
  --bg: #f8f9fa;
  --bg2: #041d45;
  --btn_radius: 0.8rem;
  --shadow: 0 1.5rem 1.5rem rgba(203, 209, 211, 0.55);
  --shadow2: 0 1.5rem 1.5rem rgba(40, 70, 107, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0px auto;
  position: relative;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  color: var(--title);
}
.head .subtitle {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: var(--tertiary);
  background-color: rgb(235, 241, 249);
  border-radius: 100px;
  padding: 0px 1.6rem;
  margin-bottom: 1.2rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.16667;
  font-weight: 500;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 300;
  color: var(--text);
}
.contact_faqs {
  padding: 11.2rem 0px 14rem;
}
.contact_faqs .head .subtitle {
  margin-bottom: 1.1rem;
}
.contact_faqs p {
  max-width: 64.6rem;
  margin: 2.7rem auto 0px;
}
.contact_faqs .faqs {
  max-width: 103.5rem;
  margin: 5.1rem auto 0px;
}
.contact_faqs .faq_item {
  position: relative;
  --radius: 1.2rem;
  border: 1px solid rgb(232, 234, 239);
  background-color: rgb(255, 255, 255);
  border-radius: var(--radius);
  margin-bottom: 1.3rem;
  transition: margin-bottom 0.3s;
}
.contact_faqs .faq_item:last-child {
  margin-bottom: 0px;
}
.contact_faqs .faq_item::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: calc(100% - 1px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid rgb(0, 94, 197);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.contact_faqs .faq_item.active {
  margin-bottom: 3.2rem;
}
.contact_faqs .faq_item.active::after {
  opacity: 1;
}
.contact_faqs .faq_item.active .question {
  padding-top: 2.1rem;
  padding-bottom: 2.9rem;
}
.contact_faqs .faq_item.active .question::before {
  background-color: rgb(0, 94, 197);
}
.contact_faqs .faq_item.active .question::after {
  filter: contrast(0) brightness(2);
}
.contact_faqs .faq_item .question {
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  color: rgb(10, 22, 40);
  transition: 0.3s;
  padding: 2.4rem 7rem 2.5rem 2.8rem;
}
.contact_faqs .faq_item .question::before,
.contact_faqs .faq_item .question::after {
  position: absolute;
  top: 50%;
  right: 2.9rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--primary);
  content: "";
  transition: 0.3s;
  transform: translateY(-50%);
}
.contact_faqs .faq_item .question::after {
  background: url("https://nexxustires.com//wp-content/plugins/sytech-fronteditor/sytpl/contact6-contact_faqs/assets/img/icon-select.svg") center center / 29.6875% no-repeat;
}
.contact_faqs .faq_item .answer {
  display: none;
  font-size: 1.608rem;
  line-height: 2.75rem;
  color: var(--text);
  padding: 0px 5rem 2.6rem 2.8rem;
  margin-top: -0.3rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --btn_radius: 4px;
    --shadow: 0 10px 10px rgba(203, 209, 211, 0.55);
    --shadow2: 0 10px 10px rgba(40, 70, 107, 0.55);
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 8px;
    padding: 0px 12px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  .contact_faqs {
    padding: 50px 0px;
  }
  .contact_faqs .head .subtitle {
    margin-bottom: 8px;
  }
  .contact_faqs .faqs {
    margin-top: 30px;
  }
  .contact_faqs .faq_item {
    --radius: 10px;
    margin-bottom: 12px;
  }
  .contact_faqs .faq_item.active {
    margin-bottom: 20px;
  }
  .contact_faqs .faq_item.active .question {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .contact_faqs .faq_item .question {
    font-size: 18px;
    padding: 14px 60px 14px 20px;
  }
  .contact_faqs .faq_item .question::before,
  .contact_faqs .faq_item .question::after {
    right: 20px;
    height: 26px;
    width: 26px;
  }
  .contact_faqs .faq_item .answer {
    font-size: 14px;
    line-height: 1.5;
    padding: 0px 20px 20px;
    margin-top: 0px;
  }
}
