/* header */
.fixed-nav {
  position: fixed;
  top: 0;
  z-index: 999;
  max-width: 1920px;
  width: 100%;
  background: #fff;
}

.fixed-brick {
  height: 140px;
}

.brick {
  height: 78px;
}

.top-nav-container {
  background: #011e34;
  transition: all 0.8s;
}

.top-nav-content {
  height: 50px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.top-media a {
  margin-right: 30px;
}

.top-media a:hover svg {
  fill: #dd3333;
}

.pc-header .top-nav-right ul li {
  position: relative;
  padding-left: 22px;
}

.pc-header .top-nav-right ul li::before {
  position: absolute;
  top: 0;
  left: 9px;
  width: auto;
  height: 100%;
  content: "/";
}

.pc-header .top-nav-right ul li a:hover {
  color: #dd3333;
}

.pc-header .top-nav-right ul li:first-child {
  padding: 0;
}

.pc-header .top-nav-right ul li:first-child::before {
  content: none;
}

.nav-lang {
  position: relative;
  margin: 0 50px 0 30px;
}

.nav-lang a {
  position: relative;
  align-items: center;
}

.nav-lang a:hover {
  color: #fff;
}

.nav-lang img {
  margin-right: 10px;
}

.nav-lang a::after {
  position: absolute;
  top: 5px;
  right: -20px;
  width: 10px;
  height: 10px;
  content: "";
  transition: all 0.3s;
  background: url(/lib/images/img_nav_down.svg) no-repeat center;
}

.nav-search {
  cursor: pointer;
}

/* 下导航 */
.bottom-nav-container {
  background: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.bottom-nav-content {
  height: 90px;
  justify-content: space-between;
  align-items: center;
  transition: all 1s;
}

/* 一级导航 */
.current-menu-item > a {
  color: #dd3333;
}

.menu-wrapper .menu-item {
  position: relative;
  color: #202020;
  font-size: 18px;
  font-family: "Rajdhani-SemiBold";
  cursor: pointer;
}

.c-breadcrumbs__container svg{
  margin-bottom: -2px;
  margin-right: 0 !important;
}

.pc-header .menu-wrapper > .menu-item {
  /* margin-right: 3.12501vw; */
  margin-right: 60px;
  line-height: 23px;
}

.menu-wrapper .menu-item:hover > a {
  color: #dd3333;
}

.menu-item-has-children {
  position: relative;
}

.pc-header .menu-wrapper .menu-item-has-children > a {
  position: relative;
  line-height: 23px;
}

.pc-header .menu-wrapper .menu-item-has-children > a span{
  line-height: 23px;
}

.pc-header .menu-wrapper .menu-item-has-children > a::after {
  position: absolute;
  top: 7px;
  right: -15px;
  width: 10px;
  height: 10px;
  transform: rotate(0);
  content: "";
  transition: all 0.3s;
  background: url(/lib/images/nav_down.svg) no-repeat center;
}

.pc-header .menu-wrapper .menu-item-has-children:hover > a::after,
.pc-header .menu-wrapper .menu-item-has-children > a.active::after {
  transform: rotate(-90deg);
  transition: all 0.3s;
}

.pc-header .menu-wrapper .menu-item-has-children > a img {
  margin-right: 10px;
}

/* .pc-header .menu-wrapper .menu-item-has-children>a.nav-products::after {
  top: 4px;
} */

/* 二级导航 */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  margin-top: 36px !important;
  height: auto !important;
  padding: 20px 0;
  line-height: 1;
  background-color: #fff;
  display: none;
  list-style: none;
  overflow: inherit !important;
  box-shadow: 0 0 10px rgba(33, 33, 33, 0.2);
}

.sub-menu .menu-item {
  padding: 10px 30px;
}

.sub-menu .menu-item a {
  white-space: nowrap;
}

/* 三级导航 */
.three-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  padding: 12px 0;
  transition: all 1s;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(33, 33, 33, 0.2);
}

.three-menu .menu-item {
  padding: 10px 20px;
}

.nav-email a {
  color: #dd3333;
  font-size: 18px;
  font-family: "Rajdhani-SemiBold";
}

.nav-email a:hover {
  text-decoration: underline;
}

.nav-email img {
  margin-right: 10px;
}

.fixed-search {
  display: none;
  margin-left: 30px;
}

/* pc header end */

/* mobile nav start */
.mobile-header {
  position: fixed;
  z-index: 99;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 10, 32, 0.1);
}

.mobile-header-content {
  width: 100%;
}

.mobile-header .content-container {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.04167vw 30px;
}

/* 导航列表 start */
.mobile-menu-container {
  height: 100%;
}

.mobile-nav-bottom {
  background: #fff;
  max-width: 300px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1),
    -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-mobile {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-mobile.active {
  opacity: 1 !important;
  pointer-events: auto;
}

.nav-mobile.active .nav,
.nav-mobile.active .mobile-nav-bottom {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.nav-mobile .nav {
  width: 80%;
  max-width: 300px;
  height: 100%;
  display: block;
  overflow: auto;
  margin: auto 0;
  padding: 0 15px;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.nav-mobile .menu-wrapper {
  min-height: 80%;
  width: 100%;
  display: inline-block;
  height: 80%;
}

.nav-mobile .menu-item:first-child {
  margin-top: 14px;
  border-top: 0;
}

.nav-mobile .menu-wrapper .menu-item a {
  width: 100px;
}

.nav-mobile .menu-wrapper .menu-item a > img {
  margin-right: 10px;
}

/* 手机端一级导航 start */
.nav-mobile .menu-wrapper .menu-item {
  position: relative;
  height: auto;
  padding: 15px 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid #cccccc;
}

.nav-mobile .menu-wrapper .menu-item:first-child {
  border-top: none;
}

/* 手机端一级导航 end */

/* 手机端二级导航 start */
.nav-mobile .sub-menu {
  position: relative;
  box-shadow: none;
  width: 100%;
  min-width: auto;
  margin-top: 0 !important;
  padding: 10px 0 0;
}

.nav-mobile .sub-menu .menu-item {
  padding-left: 10px;
  border-top: none;
  padding-top: 0;
}

/* 手机端二级导航 end */

/* 手机端三级导航 end */
.nav-mobile .three-menu {
  position: relative;
  left: 0;
  transition: none;
  padding-top: 15px;
  min-width: auto;
  box-shadow: none;
}

.nav-mobile .three-menu .menu-item {
  padding: 15px 0 0 10px;
}

.nav-mobile .three-menu .menu-item a {
  color: #666;
}

.nav-mobile .three-menu .menu-item:first-child {
  margin-top: 0;
  padding-top: 5px;
}

/* 手机端三级导航 end */

/* 箭头 */

.nav-mobile .nav .header-nav-arrow::after {
  position: absolute;
  content: "";
  top: 15px;
  right: 2px;
  height: 1rem;
  width: 1rem;
  margin-top: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.3s;
  pointer-events: none;
}

.nav-mobile .nav::-webkit-scrollbar {
  display: none;
}

.nav-mobile .nav .header-nav-arrow.active::after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.3s;
}

.nav-mobile .nav .sub-menu .header-nav-arrow::after {
  top: 0;
}

/* 箭头 end*/

/* 导航图标 start */
.mobile-nav-btn {
  width: 20px;
  height: 18px;
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-shrink: 0;
  cursor: pointer;
}

.mobile-nav-btn span {
  display: inline-block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #dd3333;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1),
    -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1),
    -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1),
    opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1),
    opacity 500ms cubic-bezier(0.2, 0, 0, 1),
    -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}

.mobile-nav-btn.active span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.mobile-nav-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-btn.active span:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(45deg);
  transform: translateY(-8.5px) rotate(45deg);
}

/* 导航图标 end */

.mobile-search {
  margin: 0 15px;
}

.mobile-media a {
  margin-right: 20px;
}

/* 下拉导航 */
.fixed-nav.active .pc-header .top-nav-container {
  display: none;
  transition: all 0.8s;
}

.fixed-nav.active .pc-header .bottom-nav-content {
  height: 76.5px;
  transition: all 1s;
}

.fixed-nav.active .fixed-search {
  display: block;
}

.fixed-nav.active .pc-header .logo img {
  width: 85%;
}

@media (max-width: 767px) {
  .footer{
    margin-bottom: 48px;
  }
  .mobile-header .content-container,
  .brick {
    height: 60px;
  }

  .mobile-header .content-container {
    padding: 0 15px;
  }

  .mobile-header .logo img {
    width: 80%;
  }
  
}

/* header end */

/* footer */
.footer-link-part .footer-item:last-child .footer-title::after,
.footer-link-part .footer-item:last-child .footer-title::before{
content: '';
background: unset!important;

}

.footer form input {
  /* width: 280px; */
  height: 40px;
  padding-left: 16px;
  border: none;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 8px;
  /* word-wrap: break-word; */
  word-break: break-all;
}
.footer form textarea{
  height: 40px;
  color: white;padding-left: 16px!important;
  margin-bottom: 8px;
  border: none;
  padding: 10px;background: rgba(255, 255, 255, 0.15);
}
.footer form button {
  padding: 15px 120px;
  color: white;
  width: 100%;
  margin-bottom: 20px;
  background: #dd3333;
}
.footer {
  background: #011e34;
}

.footer-container {
  padding: 70px 0 0;
  background: url(/lib/images/index/img_footer_bg.jpg) right bottom no-repeat;
}

.pc-footer-content {
  justify-content: space-between;
}

.footer-contact-part {
  flex-shrink: 0;
}

.footer-contact-part ul li {
  color: #fff;
  font-family: "Barlow-Medium";
  margin-bottom: 40px;
}

.footer-contact-part li .left {
  margin-right: 20px;
}

.footer-contact-part li .left img {
  margin-right: 10px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.footer-contact-part li .center-item .item:first-child {
  margin-right: 30px;
}

.footer-contact-part li p {
  max-width: 280px;
  line-height: 1.5;
  margin-top: -3px;
}

.footer-contact-part li a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-logo {
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .home-logo {
  margin-right: 2.604175vw;
}

.footer-link-part {
  width: 100%;
  /* margin-left: 7.812525vw; */
  margin-left: 50px;
  justify-content: space-between;
}

.footer-item {
  /* flex: 1; */
  margin-right: 30px;
  max-width: 150px;
}

.footer-item:last-child {
  margin-right: 0;
  max-width: none;
}

.footer-title {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-family: "Rajdhani-Bold";
  margin-bottom: 40px;
}

.footer-item ul li {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-item ul li a:hover {
  color: #fff;
}

.copyright {
  margin-top: 46px;
  padding: 36.5px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: #fff;
  margin-right: 30px;
  font-family: "Barlow-Medium";
}

.copyright-link a {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 20px;
}

.copyright-link a:hover {
  color: #fff;
}

.footer-media a {
  margin-left: 30px;
  flex-shrink: 0;
}

.footer-media a:first-child {
  margin-left: 20px;
}

.footer-media a:hover {
  opacity: 0.5;
}

@media (max-width: 1440px) {
  .pc-header .menu-wrapper > .menu-item {
    margin-right: 30px;
  }
}

@media (max-width: 1279px) {
  .footer{
    margin-bottom: 48px;
  }
  .pc-footer-content {
    flex-wrap: wrap-reverse;
  }

  .footer-link-part {
    margin-left: 0;
    margin-bottom: 60px;
  }

  .copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright p {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .footer{
    margin-bottom: 48px;
  }
  .footer-contact-part li p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-container {
    padding: 50px 0 0;
  }

  .footer-link-part {
    margin-bottom: 40px;
  }

  .footer .center-item {
    flex-direction: column;
  }

  .footer-logo {
    flex-wrap: wrap;
  }

  .footer-logo .home-logo {
    /* margin-right: 0; */
    margin-bottom: 30px;
  }

  .footer-contact-part {
    width: 100%;
  }

  .footer-contact-part li .center-item .item:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .footer-contact-part li p {
    margin-top: -10px;
    line-height: 2;
  }

  .copyright p {
    line-height: 1.7;
  }

  .copyright .right {
    flex-direction: column-reverse;
  }

  .footer-media a:first-child {
    margin-left: 0;
  }

  .footer-media {
    margin-bottom: 20px;
  }

  .footer-link-part {
    flex-direction: column-reverse;
  }

  .footer-item {
    margin-right: 0;
  }

  .footer-title {
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-item ul {
    display: none;
  }

  .footer-title::before {
    position: absolute;
    top: 12px;
    right: 0;
    width: 15px;
    height: 2px;
    background: #fff;
    content: "";
    cursor: pointer;
  }

  .footer-title::after {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 2px;
    height: 15px;
    background: #fff;
    content: "";
    cursor: pointer;
  }

  .footer-title.active::after {
    display: none;
  }

  .footer-item ul li {
    margin-bottom: 20px;
  }

  .footer-item ul {
    margin-bottom: 40px;
  }
}

/* footer  end */

@font-face {
  font-family: "Barlow-Bold";
  src: url("/lib/fonts/Barlow-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Medium";
  src: url("/lib/fonts/Barlow-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-Regular";
  src: url("/lib/fonts/Barlow-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Barlow-SemiBold";
  src: url("/lib/fonts/Barlow-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani-Regular";
  src: url("/lib/fonts/Rajdhani-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani-Bold";
  src: url("/lib/fonts/Rajdhani-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani-Medium";
  src: url("/lib/fonts/Rajdhani-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani-SemiBold";
  src: url("/lib/fonts/Rajdhani-SemiBold.ttf");
  font-display: swap;
}

body {
  color: #404040;
  font-size: 16px;
  font-family: "Barlow-Regular";
}

.flex {
  display: flex;
}

.com-container {
  max-width: 1480px;
  width: 100%;
  margin: auto;
  padding: 0 40px;
}
.title {
  color: #202020;
  font-size: 40px;
  font-family: "Rajdhani-Bold";
  line-height: 1.3;
}

.text {
  line-height: 1.5;
}

.text-overflow {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.regular-btn p,
.regular-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 56px;
  color: #fff;
  font-family: "Barlow-Bold";
  background: #011e34;
  transition: all 0.5s;
  cursor: pointer;
}

.regular-btn p img,
.regular-btn a img {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.regular-btn p:hover,
.regular-btn a:hover {
  background: #dd3333;
  transition: all 0.5s;
}

.strong-btn {
  width: fit-content;
}

.strong-btn p {
  width: 200px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  font-family: "Barlow-Bold";
  background: #dd3333;
  transition: all 0.8s;
}

.strong-btn p img {
  margin-left: 10px;
}

.strong-btn p:hover {
  background: #011e34;
  transition: all 0.8s;
}

/* 面包屑导航 */
.breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumbs .content {
  padding: 20px 0;
  margin-left: -15px;
}

.breadcrumbs .content span {
  margin: 0 5px;
  color: #999;
}

.breadcrumbs .content a:hover span,
.breadcrumbs .content a:hover {
  color: #dd3333;
}

/* 附加信息 */
.addtion-content {
  padding: 60px 40px;
  margin: 100px 0;
  box-shadow: 0 0 40px rgb(17 2 19 / 10%);
}

.addtion .title {
  text-align: center;
  margin-bottom: 40px;
}

.addtion-content .wrap p {
  margin-bottom: 30px;
}

.addtion-content .wrap ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.addtion-content .wrap ul li {
  line-height: 1.5;
  margin-bottom: 10px;
}

.addtion-content .wrap ol li p{
    display: inline;
}

.addtion-content .wrap ul li p{
    display: inline;
}

.addtion-content .wrap h3 {
  color: #202020;
  font-size: 24px;
  margin-bottom: 30px;
  font-family: "Rajdhani-Medium";
}

.addtion-content .wrap img {
  margin-bottom: 30px;
}

.addtion-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  margin: 50px auto 0;
  border-radius: 2px;
  background: #dd3333;
  transition: all 0.8s;
}

.addtion-more a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addtion-more a:focus,
.addtion-more a:hover {
  color: #fff;
}

.addtion-more:hover {
  background: #011e34;
  transition: all 0.8s;
}

/* faqs侧边栏 */
/* 侧边栏 */

.flex-col-reverse{
    flex-direction: column-reverse;
}
.aside {
  position: sticky;
  top: 110px;
  width: 320px;
  flex-shrink: 0;
  margin-right: 40px;
  padding-bottom: 80px;
}

.aside-title {
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.recent-aside-title h4,
.aside-title h4 {
  font-size: 16px;
  font-family: "Barlow-SemiBold";
}

.aside-title img {
  width: 10px;
  height: 10px;
  transition: all 1s;
  transform: rotate(0);
}

.aside-title img.active {
  transition: all 1s;
  transform: rotate(-180deg);
}

.addtion-content .item.active .aside-title img {
  transform: rotate(180deg);
  transition: all 1s;
}

.aside-xian::before {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100px;
  height: 2px;
  background: #dd3333;
  content: "";
}

.aside-content .item {
  padding: 30px 20px;
  border: 1px solid #e5e5e5;
}

.aside-link ul {
  padding-top: 20px;
}

.aside-link li a {
  align-items: center;
}

.aside-link li a span {
  line-height: 1.3;
}

.aside-link li {
  color: #666;
  font-size: 16px;
  padding: 6px 0;
}

.aside-link li:last-child {
  padding: 0;
}

.aside-link li.active span,
.aside-link li:hover span {
  color: #dd3333;
  font-family: "Barlow-Medium";
}

/* 最近更新 */
.recent-aside-title {
  color: #202020;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "Rajdhani-Medium";
}

.recent-update {
  position: relative;
  padding: 30px 20px 15px;
  border: 1px solid #e5e5e5;
  border-top: none;
}

.recent-update-btn {
  position: relative;
  top: -36px;
  height: 12px;
  width: 40px;
  margin-left: auto;
}

.recent-update-prev::after,
.recent-update-next::after {
  content: none !important;
  /* display: none; */
}

.recent-update-prev,
.recent-update-next {
  width: 10px;
  height: 10px;
  background: url(/lib/images/nav_down.svg) no-repeat center;
}

.recent-update-prev {
  left: -10px !important;
  transform: rotate(90deg) !important;
}

.recent-update-next {
  right: -10px !important;
  transform: rotate(-90deg) !important;
}

.recent-update-item a {
  align-items: center;
  margin-bottom: 20px;
}

.recent-update-item a .img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  margin-right: 20px;
}

.recent-update-item .desc {
  line-height: 1.3;
  -webkit-line-clamp: 4;
  max-width: 160px;
  font-family: "Rajdhani-Medium";
}

.recent-update-item:hover .desc {
  color: #dd3333;
}

.common-fixed-contact-form__input,
.common-fixed-contact-form__textarea {
  font-size: 14px;
}
.common-fixed-contact-form .common-btn {
  font-size: 16px;
}
.common-fixed-contact__close span:nth-child(2) {
  transform: translateY(-13px) rotate(45deg);
}

@media (max-width: 1279px) {
  .com-container {
    padding: 0 30px;
  }

  .title {
    font-size: 36px;
  }
  .grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .title {
    font-size: 28px;
  }

  .com-container {
    padding: 0 15px;
  }

  .regular-btn p,
  .regular-btn a {
    width: 100%;
  }

  .breadcrumbs {
    margin-bottom: 10px;
  }

  .addtion-content {
    padding: 40px 15px;
    margin: 40px 0;
  }
}
