 
@import url("css2-Kanititalwght010002000300040005000600070008000900110012001300140015001600170018001900_swap.css");
@import url("css2-DMSansitalopszwght09..4010009..4020009..4030009..4040009..4050009..4060009..4070009..4080009..4090009..40100019..4010019..4020019..4030019..4040019..4050019..4060019..4070019..4080019..4090019..401000_swap.css");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #CA1F27;
  --theme2: #F7C600;
  --theme3: #1f425d;
  --header: #2a2833;
  --base: #00813D;
  --text: #767676;
  --text2: #bfbfbf;
  --border: #D9D9D9;
  --border2: #373737;
  --button: #1C2539;
  --button2: #030734;
  --ratting: #FF9F0D;
  --bg: #f5f5f8;
  --bg2: #DF0A0A0D;
  --color-gradient-1: linear-gradient(309deg, rgba(202,31,39,1) 17%, rgba(247,207,0,1) 70%);
  ---color-gradient-2: linear-gradient(309deg, rgba(247,207,0,1) 14%, rgba(202,31,39,1) 72%);
  ---box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
}

.theme-btn {
    background-color: #EF8201;
    border-radius: 20px !important;
    color: var(--white);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 20px;
    border-radius: 0;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn.hover-white:hover {
  color: var(--header);
}
.theme-btn.hover-white:hover::before, .theme-btn.hover-white:hover::after {
  background-color: var(--white);
}
.theme-btn.header-color {
  background-color: var(--header);
  background-image: inherit;
}
.theme-btn.header-color::before, .theme-btn.header-color::after {
  background-color: #22add6;
}
.theme-btn.header-color-2 {
  background-color: var(--header);
  background-image: inherit;
}
.theme-btn.header-color-2::before, .theme-btn.header-color-2::after {
  background-color: var(--white);
}
.theme-btn.header-color-2:hover {
  color: var(--header);
}
.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
  background-image: initial;
}
.theme-btn.bg-white:hover {
  color: var(--white);
}
.theme-btn.bg-white:hover::before, .theme-btn.bg-white:hover::after {
  background-color: var(--header);
}
.theme-btn.bg-second {
  background-color: var(--theme2);
  color: var(--black);
  background-image: initial;
}
.theme-btn.bg-second:hover {
  color: var(--white);
}
.theme-btn.bg-second:hover::before, .theme-btn.bg-second:hover::after {
  background-color: #22add6;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 14px 32px;
  }
 
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}

.link-btn {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
  display: inline-block;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.link-btn i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.link-btn:hover {
  color: #22add6;
  background-size: 100% 1px;
}
.link-btn:hover i {
  color: #22add6;
  opacity: 1;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  color: var(--text);
     
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Microsoft YaHei", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
 
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
}

h2 {
  font-size: 45px;
  line-height: 110%;
  font-weight: 600;
}
@media (max-width: 991px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 500;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
 
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.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 rgba(0, 0, 0, 0.2);
  border-top-color: #22add6;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

.logo img {
 height: 100px;
}


@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 {
  font: bold 5em "Kanit", sans-serif, "DM Sans", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: #22add6;
  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: var(--theme2);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Kanit", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #22add6;
}
.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: #fff;
  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);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::-moz-placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-moz-placeholder {
    font-size: 18px;
  }
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #22add6;
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: #22add6;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: #22add6;
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #22add6;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: #22add6;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #22add6;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 90px;

}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title span {
  color: #000000;
  font-size: 38px;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
}
.section-title h2 {
  text-transform: capitalize;
  text-align: center;
}
.section-title.style-2 h2 {
  text-transform: capitalize;
}
.section-title.style-2 h2 span {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--header);
  position: relative;
}
.section-title.style-2 h2 span::before {
  position: absolute;
  bottom: 0;
  right: -25px;
  content: "";
  background-image: url(../images/line-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}



.section-padding {
 padding: 100px 0;
    
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 40px 0;
  }
  .project-wrapper .project-details-content{ margin-top:0 !important}
  .project-wrapper .prev-next-btns .prev-button .content h5{ font-size:14px !important}
  .project-wrapper .prev-next-btns .next-button .content h5{ font-size:14px !important}
  .project-wrapper-2 h2{ font-size:20px !important; margin-bottom:30px}
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes rounded-2 {
  50% {
    transform: rotate(5deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation__rotate {
  animation: rotate 40s linear infinite;
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@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 tpswing {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes top-image-bounce {
  0% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    transform: translatey(-8px);
  }
  50% {
    transform: translatey(12px);
  }
  100% {
    transform: translatey(-8px);
  }
}
@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.header-top {
  background-color: #22add6;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header-top {
    display: none;
  }
}
.header-top .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-top .container-fluid {
    padding: 0 15px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper ul {
  display: flex;
  align-items: center;
  gap: 85px;
}
.header-top-wrapper ul li {
  color: var(--white);
}
.header-top-wrapper ul li i {
  color: var(--white);
}
.header-top-wrapper ul li a {
  color: var(--white);
}
.header-top-wrapper .social-icon span {
  color: var(--white);
}
.header-top-wrapper .social-icon i {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.header-top-wrapper .social-icon i:hover {
  color: #22add6;
}

.top-bar-header {
  background: rgba(var(--theme), 0.2);
  padding: 9px 0px;
}
@media (max-width: 767px) {
  .top-bar-header {
    padding: 12px 0px;
  }
  .top-bar-header .d-flex.justify-content-end {
    justify-content: center !important;
  }
}
.top-bar-header .top-welcome-text {
  text-transform: capitalize;
}
.top-bar-header .top-welcome-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-bar-header .top-welcome-text p {
    font-size: 14px;
  }
}
.top-bar-header .social-links {
  margin-left: 30px;
  margin-right: 10px;
}
.top-bar-header .social-links a {
  display: inline-block;
  margin: 0px 6px;
  color: #22add6;
}
.top-bar-header .social-links a:hover {
  color: var(--theme2);
}
.top-bar-header .search-box {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  border: 1px solid #f9f9f9;
  box-sizing: border-box;
}
.top-bar-header .search-box form {
  position: relative;
}
.top-bar-header .search-box form input {
  height: 36px;
  width: 100%;
  padding: 0px 15px;
  font-size: 14px;
  color: #22add6;
}
.top-bar-header .search-box form button {
  background: transparent;
  position: absolute;
  right: 10px;
  color: #22add6;
  border: 0px;
  top: 0;
  line-height: 36px;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.top-bar-header .search-box form button:hover {
  color: var(--theme2);
}

.header-tops-section {
  background-color: var(--theme3);
  padding: 10px 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .header-tops-section {
    display: none;
  }
}
.header-tops-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #22add6;
  z-index: -1;
  left: 81%;
}
@media (max-width: 1899px) {
  .header-tops-section::before {
    display: none;
  }
}
.header-tops-section .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-tops-section .container-fluid {
    padding: 0 50px;
  }
}

.header-tops-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-tops-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-tops-wrapper .contact-list li {
  font-size: 15px;
  color: var(--white);
}
.header-tops-wrapper .contact-list li a {
  color: var(--white);
}
.header-tops-wrapper .contact-list li i {
  color: var(--white);
  margin-right: 10px;
}
.header-tops-wrapper .top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-tops-wrapper .top-right .social-icon {
  gap: 15px;
}
.header-tops-wrapper .top-right .social-icon span {
  color: var(--white);
  font-weight: 500;
}
.header-tops-wrapper .top-right .social-icon a {
  color: var(--white);
}
.header-tops-wrapper .top-right .flag-wrap {
  position: relative;
  width: 160px;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select {
  padding: 0 0 0 60px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select::after {
  right: 23px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  width: 10px;
  height: 10px;
  top: 15px;
  border-bottom: 2px solid transparent;
  border-color: #22add6;
  border-right: 2px solid theme-color;
}
.header-tops-wrapper .top-right .flag-wrap .nice-select span {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}
.header-tops-wrapper .top-right .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}

 

@media (max-width: 767px) {
  .header-tops-wrapper .top-right .flag-wrap .flag {
    display: none;
  }
}
.header-tops-wrapper .top-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}
@media (max-width: 991px) {
  .header-main {
    padding: 15px 0px;
  }
}
 
.header-main .main-menu ul {
 margin-bottom: -40px;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 12px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 30px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
  float: right;
  margin-top: 8px;
}

.header-main .main-menu ul li strong {

  margin-right: 13px;

}

.header-main .main-menu ul li a:hover {
  color: #32a0dd !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
 
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #22add6;
  border-bottom-left-radius: 8px;
  margin-bottom: 5px;
  margin-left: 8px;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 15px;
  padding-bottom: 5px;
  padding-top: 5px;
  width: 100%;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: #ef8201; 
  color: var(--white) !important;
  border-bottom-left-radius: 8px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: #22add6;
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  color: #22add6;
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: #22add6;
}
.main-menu .active {
  color: #22add6 !important ;
  font-weight: bold !important ;
}
.header-main .main-menu ul li:hover > a::after {
  color: #22add6;
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-1 {
  position: absolute;
  z-index: 99;
  overflow-x: clip;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #36343c;
}
.header-1 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-logo-2 {
  display: none;
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li {
    margin-inline-end: 20px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: var(--white);
}
.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header);
}
.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: var(--white);
}
.header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--white);
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
    display: none;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--white);
}

.header-2 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 470px) {
  .header-2 .container-fluid {
    padding: 0 15px;
  }
}




.header-2 .mega-menu-wrapper .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 320px;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-left {
    gap: 35px;
  }
}
@media (max-width: 1199px) {
  .header-2 .mega-menu-wrapper .header-main .header-left {
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-left ul li {
    margin-inline-end: 25px;
  }
}
.header-2 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
  margin-bottom: -40px;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 1600px) {
  .header-2 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }
}

@media (max-width: 750px) {
.header-2 .mega-menu-wrapper .header-main .header-right {
    gap: 30px;
    margin-bottom: -1px;
}
.mean-container .mean-nav ul li strong {
    margin-left: 25px;
	display:none;
}

}

.header-2 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header);
}
.header-2 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}

.header-3 {
  position: relative;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  z-index: 999;
}
.header-3::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 125px;
  content: "";
  background-color: #22add6;
  z-index: -1;
}
@media (max-width: 1899px) {
  .header-3::before {
    display: none !important;
  }
}
.header-3 .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 991px) {
  .header-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .header-3 .container-fluid {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1199px) {
  .header-3 .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-3 .header-main .main-menu ul li .has-homemenu {
  left: -400px;
}
@media (max-width: 1600px) {
  .header-3 .header-main .main-menu ul li .has-homemenu {
    left: -300px;
  }
}
.header-3 .header-main .header-right {
  gap: 50px;
}
@media (max-width: 991px) {
  .header-3 .header-main .header-right {
    gap: 25px;
  }
}
.header-3 .header-main .header-right .search-icon {
  color: var(--header);
}
@media (max-width: 1199px) {
  .header-3 .header-main .header-right .search-icon {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-3 .header-main .header-right .search-icon {
    display: block;
  }
}
.header-3 .header-main .header-right .header-button {
  margin-right: 50px;
}
@media (max-width: 1600px) {
  .header-3 .header-main .header-right .header-button {
    display: none;
  }
}
.header-3 .header-main .header-right .header__hamburger {
  margin-right: -70px;
}
@media (max-width: 1899px) {
  .header-3 .header-main .header-right .header__hamburger {
    margin-right: 0;
  }
}
.header-3 .header-main .header-right .header__hamburger .sidebar__toggle {
  font-size: 24px;
  color: var(--white);
}
@media (max-width: 1899px) {
  .header-3 .header-main .header-right .header__hamburger .sidebar__toggle {
    color: #22add6;
  }
}

.sidebar__toggle {
  cursor: pointer;
}

.sticky {
 
}
.sticky.header-1 {
  border-bottom: none;
}
.sticky.header-1 .mega-menu-wrapper .header-main {
  padding: 0px 0px;
}
@media (max-width: 991px) {
  .sticky.header-1 .mega-menu-wrapper .header-main {
    padding: 12px 0px !important;
  }
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-logo-2 {
  display: block;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-logo {
  display: none;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li a {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper .main-menu li .submenu li a {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right {
  gap: 30px;
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .search-icon {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .cart-icon {
  color: var(--header);
}
.sticky.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
  color: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid #22add6;
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  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;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: #22add6;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: #22add6;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: #22add6;
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.shouji {
    display: none;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  background-position: bottom !important;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.breadcrumb-wrapper .layer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .layer-shape {
    display: none;
  }
}
.breadcrumb-wrapper .layer-shape img {
 /* width: 100%;*/
  height: 100%;
}
.breadcrumb-wrapper .breadcrumb-shape {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 1;
}
.breadcrumb-wrapper .breadcrumb-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-shape {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 30px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 22px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 18px;
  color: #22add6;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

.error-items .error-image {
  margin-bottom: 50px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  position: relative;
}
.hero-1 .array-button {
  position: absolute;
  top: 50%;
  right: 55px;
  display: grid;
  z-index: 9;
  gap: 20px;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .hero-1 .array-button {
    top: 70%;
  }
}
@media (max-width: 767px) {
  .hero-1 .array-button {
    display: none;
  }
  
}
.hero-1 .swiper-slide-active .hero-image {
  transform: scale(1.12);
}
.hero-1 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  transition: all 8s ease-out 0s;
}
.hero-1 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(2, 0, 12);
  opacity: 0.749;
}
.hero-1 .shape-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .hero-1 .shape-image {
    display: none;
  }
}
.hero-1 .hero-content {
  position: relative;
  padding-top: 350px;
  padding-bottom: 330px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content {
    padding-top: 280px;
    padding-bottom: 295px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    padding-top: 200px;
    padding-bottom: 205px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content {
    padding-top: 170px;
    padding-bottom: 185px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content {
    padding-top: 145px;
    padding-bottom: 165px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }
}
.hero-1 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .hero-1 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
.hero-1 .hero-content .hero-button .video-play-btn .play-video {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: var(--theme2);
  line-height: 60px;
  text-align: center;
  display: inline-block;
  margin: 0px auto;
  font-size: 18px;
  border: 1px solid var(--white);
}
.hero-1 .hero-content .hero-button .video-play-btn span {
  color: var(--white);
}

.hero-2 {
  position: relative;
}
.hero-2 .array-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: grid;
  left: 50px;
  gap: 15px;
}
.hero-2 .array-button .array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: #22add6;
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.hero-2 .array-button .array-prev:hover {
  background-color: var(--white);
  color: #22add6;
}
.hero-2 .array-button .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: transparent;
  color: var(--white);
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: all 0.4s ease-in-out;
}
.hero-2 .array-button .array-next:hover {
  background-color: var(--white);
  color: #22add6;
}
@media (max-width: 1600px) {
  .hero-2 .array-button {
    left: initial;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-2 .array-button {
    display: none;
  }
}
.hero-2 .bottom-shape {
  position: absolute;
  bottom: -180px;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 1600px) {
  .hero-2 .bottom-shape {
    bottom: -50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .bottom-shape {
    display: none;
  }
}
.hero-2 .bottom-shape img {
  width: 100%;
  height: 100%;
}
.hero-2 .swiper-slide-active .slider-image {
  transform: scale(1.12);
}
.hero-2 .slider-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  transition: all 8s ease-out 0s;
}
.hero-2 .slider-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.75;
}
.hero-2 .slider-image .mask-shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .hero-2 .slider-image .mask-shape {
    display: none;
  }
}
.hero-2 .slider-image .border-shape {
  position: absolute;
  top: 12%;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-2 .slider-image .border-shape {
    display: none;
  }
}
.hero-2 .slider-image .circle-shape {
  position: absolute;
  right: 10%;
  top: 10%;
}
.hero-2 .hero-content {
  position: relative;
  z-index: 9;
  padding: 165px 0;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content {
    padding: 140px 0;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content {
    padding: 100px 0;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 80px 0;
  }
}
.hero-2 .hero-content h5 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
  display: inline-block;
  font-weight: 500;
}
.hero-2 .hero-content h5::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--white);
}
.hero-2 .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 34px;
  }
}
.hero-2 .hero-content p {
  color: var(--white);
}
.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-2 .hero-content .hero-button {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
  }
}

.hero-3 {
  position: relative;
  padding-top: 340px;
  padding-bottom: 215px;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding-top: 280px;
    padding-bottom: 180px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    padding-top: 250px;
    padding-bottom: 190px;
  }
}
@media (max-width: 575px) {
  .hero-3 {
    padding-top: 180px;
    padding-bottom: 120px;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 5, 29);
  opacity: 0.8;
}
.hero-3 .hero-content {
  position: relative;
  z-index: 9999;
}
.hero-3 .hero-content h5 {
  font-size: 18px;
  color: var(--white);
  font-weight: normal;
  margin-bottom: 10px;
  padding: 8px 25px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-3 .hero-content h5::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  opacity: 0.2;
  z-index: -1;
  filter: blur(1px);
}
.hero-3 .hero-content h1 {
  font-size: 110px;
  color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 66px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.hero-3 .hero-content p {
  color: var(--white);
}
.hero-3 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.hero-3 .hero-content .hero-button .video-play-btn .play-video {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: #22add6;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  margin: 0px auto;
  font-size: 18px;
  border: 1px solid var(--white);
}
.hero-3 .hero-content .hero-button .video-play-btn span {
  color: var(--white);
}
@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}

.hero-section-3 {
  position: relative;
  overflow: hidden;
}
.hero-section-3 .array-button {
  position: initial;
}
@media (max-width: 1199px) {
  .hero-section-3 .array-button {
    display: none;
  }
}
.hero-section-3 .array-button .array-prev {
  width: 300px;
  height: 300px;
  line-height: 300px;
  position: absolute;
  top: 50%;
  left: -1%;
  padding-left: 160px;
  z-index: 9;
  transform: translate(-50%, -50%);
  background-color: #161b2f;
  color: var(--white);
}
.hero-section-3 .array-button .array-next {
  width: 300px;
  height: 300px;
  line-height: 300px;
  position: absolute;
  top: 50%;
  right: -16%;
  padding-right: 160px;
  z-index: 9;
  transform: translate(-50%, -50%);
  background-color: var(--black);
  color: #22add6;
}
@media (max-width: 1399px) {
  .hero-section-3 .array-button .array-next {
    right: -22%;
  }
}
@media (max-width: 1199px) {
  .hero-section-3 .line-area {
    display: none;
  }
}
.hero-section-3 .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 108px;
  left: 26%;
  background-color: #2f3245;
  z-index: 3;
}
.hero-section-3 .line-area span:nth-child(2) {
  left: 50%;
}
.hero-section-3 .line-area span:nth-child(3) {
  left: 80%;
}

.hero-4 {
  position: relative;
}
.hero-4 .array-button {
  position: absolute;
  bottom: 1%;
  display: grid;
  z-index: 9;
  gap: 20px;
  right: 12%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .hero-4 .array-button {
    display: none;
  }
}
.hero-4 .swiper-slide-active .hero-image {
 }
.hero-4 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

}
.hero-4 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(7, 1, 30);
  opacity: 0.8;
  z-index: -1;
}
.hero-4 .hero-content {
  position: relative;
  z-index: 9;
  padding: 474px 0;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content {
    padding: 180px 0;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    padding: 150px 0;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 130px 0;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content {
    padding: 100px 0;
  }
}
.hero-4 .hero-content .video-play-btn .play-video {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #22add6;
  color: var(--white);
  border-radius: 50%;
  display: inline-block;
}
.hero-4 .hero-content .video-play-btn span {
  color: var(--white);
}
.hero-4 .hero-content h1 {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 26px;
  }
  .breadcrumb-wrapper .page-heading .breadcrumb-items{ display:none}
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 26px;
  }
}
.hero-4 .hero-content .hero-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 9;
  position: relative;
}
.hero-4 .hero-content .hero-button .contact-icon i {
  color: #22add6;
  font-size: 18px;
  margin-right: 10px;
}
.hero-4 .hero-content .hero-button .contact-icon a {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.hero-4 .shape-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  bottom: 0;
}
.hero-4 .shape-image img {
  height: 100%;
}
.hero-4 .shape-image-2 {
  position: absolute;
  top: -20%;
  right: 0;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-4 .shape-image-2 {
    display: none;
  }
}
.hero-4 .box-shape {
  position: absolute;
  right: 0;
  bottom: -5px;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-4 .box-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .logo img { height:35px;
  }
}

@media (max-width: 991px) {
  .growth-section {
    padding-top: 60px;
  }
}

.growth-wrapper .growth-content .circle-progress-bar-wrapper {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .growth-wrapper .growth-content .circle-progress-bar-wrapper {
    margin-top: 20px;
  }
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .content h5 {
  display: block;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 120px;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 30px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: var(--bg) !important;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--theme) !important;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: var(--bg) !important;
}
.growth-wrapper .growth-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme) !important;
}
.growth-wrapper .growth-image {
  width: 1027px;
  height: 586px;
  margin-left: 4%;
  position: relative;
}
@media (max-width: 1199px) {
  .growth-wrapper .growth-image {
    margin-left: 10%;
  }
}
@media (max-width: 991px) {
  .growth-wrapper .growth-image {
    margin-left: 0;
    max-width: 1027px;
    width: initial;
  }
}
@media (max-width: 575px) {
  .growth-wrapper .growth-image {
    height: 450px;
  }
}
.growth-wrapper .growth-image .shape-image {
  position: absolute;
  bottom: 0;
  left: -40px;
}

.video-section {
  position: relative;
}
.video-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(13, 6, 44);
  opacity: 0.8;
}

.website-checking {
  position: relative;
  background-attachment: fixed;
}
.website-checking::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(---color-gradient-2);
  opacity: 0.8;
}

.website-checking-wrapper {
  position: relative;
  z-index: 9;
}
.website-checking-wrapper .checking-area {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .website-checking-wrapper .checking-area {
    flex-wrap: wrap;
  }
}
.website-checking-wrapper .checking-area .check-items {
  justify-content: center;
}
.website-checking-wrapper .checking-area .check-items .check-input:not(:last-child) {
  border-right: 1px solid var(--border);
}
.website-checking-wrapper .checking-area .check-items .check-input input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 18px 40px;
  width: 415px;
  color: var(--text);
}
@media (max-width: 1199px) {
  .website-checking-wrapper .checking-area .check-items .check-input input {
    width: initial;
    max-width: 415px;
  }
}
@media (max-width: 575px) {
  .website-checking-wrapper .checking-area .check-items .check-input input {
    padding: 16px 20px;
  }
}
@media screen and (max-width: 430px) {
  .website-checking-wrapper .checking-area .check-items .check-input input {
    width: 170px;
  }
}
.website-checking-wrapper h6 {
  font-size: 18px;
  color: var(--white);
  text-align: center;
  font-weight: normal;
  margin-top: 50px;
}
.website-checking-wrapper h6 a {
  color: var(--header);
}
.website-checking-wrapper .counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -18px;
}
@media (max-width: 1199px) {
  .website-checking-wrapper .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.website-checking-wrapper .counter-wrapper .counter-items h2 {
  font-size: 60px;
  color: var(--white);
}
@media (max-width: 575px) {
  .website-checking-wrapper .counter-wrapper .counter-items h2 {
    font-size: 48px;
  }
}
.website-checking-wrapper .counter-wrapper .counter-items p {
  font-size: 18px;
  color: var(--white);
}
.website-checking-wrapper .icon-area {
  padding-top: 120px;
  margin-bottom: -200px;
}
@media (max-width: 1199px) {
  .website-checking-wrapper .icon-area {
    margin-bottom: -230px;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .website-checking-wrapper .icon-area {
    margin-bottom: -160px;
    padding-top: 80px;
  }
}
.website-checking-wrapper .icon-area .icon-items {
  padding: 30px 40px;
  background-color: var(--white);
  display: flex;
  gap: 30px;
  box-shadow: var(---box-shadow);
}
@media (max-width: 575px) {
  .website-checking-wrapper .icon-area .icon-items {
    gap: 15px;
  }
}
.website-checking-wrapper .icon-area .icon-items .icon {
  font-size: 42px;
  color: #22add6;
}
.website-checking-wrapper .icon-area .icon-items .content h5 {
  margin-bottom: 10px;
}
.website-checking-wrapper .icon-area .icon-items.style-2 {
  background-color: var(--header);
}
.website-checking-wrapper .icon-area .icon-items.style-2 .content h5 {
  color: var(--white);
}
.website-checking-wrapper .icon-area .icon-items.style-2 .content p {
  color: var(--border);
}

.choose-us-section {
  position: relative;
}
.choose-us-section .shape-image {
  position: absolute;
  right: 0;
  top: 10%;
}
@media (max-width: 1199px) {
  .choose-us-section .shape-image {
    display: none;
  }
}
@media (max-width: 1199px) {
  .choose-us-section .line-area {
    display: none;
  }
}
.choose-us-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.choose-us-section .line-area span:nth-child(2) {
  left: 50%;
}
.choose-us-section .line-area span:nth-child(3) {
  left: 80%;
}
.choose-us-section .left-shape {
  position: absolute;
  top: 25%;
  left: 3%;
}

@media (max-width: 991px) {
  .choose-wrapper {
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .choose-wrapper {
    margin-bottom: -80px;
  }
}
.choose-wrapper .choose-content ul {
  margin-top: 30px;
}
.choose-wrapper .choose-content ul li {
  font-weight: 500;
  color: var(--header);
}
.choose-wrapper .choose-content ul li:not(:last-child) {
  margin-bottom: 10px;
}
.choose-wrapper .choose-content ul li i {
  color: #22add6;
  margin-right: 5px;
}
.choose-wrapper .choose-content .icon-area {
  margin-top: 40px;
}
.choose-wrapper .choose-content .icon-area .icon-items {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .choose-wrapper .choose-content .icon-area .icon-items {
    gap: 15px;
  }
}
.choose-wrapper .choose-content .icon-area .icon-items:not(:last-child) {
  margin-bottom: 30px;
}
.choose-wrapper .choose-content .icon-area .icon-items .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-size: 42px;
  color: var(--white);
  background-color: var(--header);
  text-align: center;
  padding: 25px;
}
.choose-wrapper .choose-content .icon-area .icon-items .content {
  border-left: 2px solid var(--header);
  padding-left: 30px;
}
.choose-wrapper .choose-content .icon-area .icon-items .content h5 {
  margin-bottom: 5px;
}
.choose-wrapper .choose-content .icon-area .icon-items.style-2 .icon {
  background-color: #22add6;
}
.choose-wrapper .choose-content .icon-area .icon-items.style-2 .content {
  border-left: 2px solid var(--border);
}
.choose-wrapper .choose-image-items {
  position: relative;
}
.choose-wrapper .choose-image-items .choose-image {

  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .choose-wrapper .choose-image-items .choose-image {
 
  }
}
.choose-wrapper .choose-image-items .choose-image-2 {
  max-width: 370px;
  position: absolute;
  bottom: -44%;
  right: 0;
}
@media (max-width: 991px) {
  .choose-wrapper .choose-image-items .choose-image-2 {
    bottom: -21%;
  }
}
.choose-wrapper .choose-image-items .choose-image-2 img {
  width: 100%;
}
@media (max-width: 575px) {
  .choose-wrapper .choose-image-items .choose-image-2 {
    width: 210px;
    height: 210px;
    bottom: 0;
  }
}
.choose-wrapper .choose-image-items .circle-shape {
  position: absolute;
  left: 5%;
  bottom: -40%;
  z-index: -1;
}
.choose-wrapper .choose-image-items .circle-shape .text-circle {
  animation: cir36 10s linear infinite;
}
@media (max-width: 1199px) {
  .choose-wrapper .choose-image-items .circle-shape {
    display: none;
  }
}
.choose-wrapper.style-2 .choose-image-items {
  position: relative;
}
.choose-wrapper.style-2 .choose-image-items .choose-image {

  z-index: initial;
  position: relative;
}
@media (max-width: 1199px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image {

  }
}
@media (max-width: 991px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image {

  }
}
@media (max-width: 575px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image {
  
  }
}
.choose-wrapper.style-2 .choose-image-items .choose-image .box-shape {
  position: absolute;
  right: -33%;
  top: 24%;
}
@media (max-width: 1199px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image .box-shape {
    display: none;
  }
}
.choose-wrapper.style-2 .choose-image-items .choose-image-2 {
  max-width: 300px;
  bottom: -41%;
  right: 10%;
}
@media (max-width: 991px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image-2 {
    bottom: 10%;
    right: 10%;
  }
}
@media (max-width: 767px) {
  .choose-wrapper.style-2 .choose-image-items .choose-image-2 {
    max-width: 200px;
    bottom: -5%;
  }
}
.choose-wrapper.style-2 .choose-image-items .icon-box {
  width: 170px;
  height: 170px;
  line-height: 180px;
  border-radius: 50%;
  text-align: center;
  color: #22add6;
  font-size: 28px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  position: absolute;
  bottom: -25%;
  left: 40%;
  transform: translateX(-50%);
}
.choose-wrapper.style-2 .choose-image-items .icon-box .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.choose-wrapper.style-2 .choose-image-items .icon-box .text-circle {
  animation: cir36 10s linear infinite;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 30px;
  align-items: initial;
  transition: all 0.4s ease-in-out;
  border-bottom: 3px solid var(--white);
}
@media (max-width: 585px) {
  .choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items {
    padding: 20px 15px;
  }
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items:not(:last-child) {
  margin-bottom: 20px;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items .icon {
  width: initial;
  height: initial;
  border-radius: initial;
  font-size: 66px;
  color: #22add6;
  background-color: initial;
  text-align: initial;
  padding: 0;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items .icon {
    font-size: 48px;
  }
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items .content {
  padding: 0;
  border: none;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items:hover {
  border-bottom: 3px solid #22add6;
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items:hover .icon {
  transform: scaleX(-1);
}
.choose-wrapper.style-2 .choose-content .icon-area.style-2 .icon-items.active {
  border-bottom: 3px solid #22add6;
}
.choose-wrapper.style-2 .choose-content .about-author {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .choose-wrapper.style-2 .choose-content .about-author {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .choose-wrapper.style-2 .choose-content .about-author {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.choose-wrapper.style-2 .choose-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 20px;
}

.transforming-wrapper {
  margin-bottom: -100px;
  position: relative;
  z-index: 9;
}
.transforming-wrapper .transforming-area {
  background-color: rgb(25, 24, 32);
  padding: 60px 40px;
  border: 20px solid var(--white);
}
@media (max-width: 991px) {
  .transforming-wrapper .transforming-area {
    border: none;
  }
}
@media (max-width: 575px) {
  .transforming-wrapper .transforming-area br {
    display: initial;
  }
}
.transforming-wrapper .transforming-area .transforming-items {
  display: flex;
  align-items: center;
  gap: 25px;
}
.transforming-wrapper .transforming-area .transforming-items:not(:last-child) {
  margin-bottom: 40px;
}
.transforming-wrapper .transforming-area .transforming-items .icon {
  width: 50px;
  height: 50px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background-image: var(--color-gradient-1);
  font-size: 18px;
}
.transforming-wrapper .transforming-area .transforming-items .content h5 {
  color: var(--white);
}
.transforming-wrapper .transforming-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .transforming-wrapper .transforming-content {
    margin-left: 10px;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .transforming-wrapper .transforming-content {
    margin-left: 0;
    margin-bottom: 170px;
  }
}

.transforming-ideas {
  position: relative;
}
@media (max-width: 1199px) {
  .transforming-ideas .line-area {
    display: none;
  }
}
.transforming-ideas .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.transforming-ideas .line-area span:nth-child(2) {
  left: 50%;
}
.transforming-ideas .line-area span:nth-child(3) {
  left: 80%;
}

.counter-section {
  position: relative;
}
.counter-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
 
  top: 50%;
}

.counter-wrapper-area .counter-items {
  text-align: center;

  padding: 45px 30px;
  position: relative;
  z-index: 9;
}
.counter-wrapper-area .counter-items::before {
 
}
.counter-wrapper-area .counter-items::after {
  position: absolute;
  top: -50%;
  right: 0;
  content: "";
  width: 95px;
  height: 92px;
  background-repeat: no-repeat;
  background-size: cover;
 
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.counter-wrapper-area .counter-items h2 span {
  font-size: 45px;
  margin-bottom: 5px;
  color: #595656;
  position: relative;
  z-index: 9;
}
.counter-wrapper-area .counter-items h2 {
  font-size: 45px;
  margin-bottom: 5px;
  color: #22add6;
  position: relative;
  z-index: 9;
}

.counter-wrapper-area .counter-items p {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.counter-wrapper-area .counter-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.counter-wrapper-area .counter-items:hover::after {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.counter-wrapper-area .counter-items:hover h2, .counter-wrapper-area .counter-items:hover p {
  
}
.counter-wrapper-area .counter-items.active::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.counter-wrapper-area .counter-items.active::after {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.counter-wrapper-area .counter-items.active h2, .counter-wrapper-area .counter-items.active p {
  color: var(--white);
}

.feature-wrapper .feature-content .feature-button {
  margin-top: 40px;
}
.feature-wrapper .feature-image img {
  width: 100%;
  height: 100%;
}

.clear-post-wrapper .post-content {
  padding: 50px;
  background-color: var(--bg);
  position: relative;
  z-index: 9;
}
.clear-post-wrapper .post-content::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/post-shape.png);
  z-index: -1;
}
@media (max-width: 575px) {
  .clear-post-wrapper .post-content {
    padding: 40px 30px;
  }
}
.clear-post-wrapper .post-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .clear-post-wrapper .post-content h3 {
    font-size: 28px;
  }
}
.clear-post-wrapper .post-content p {
  margin-bottom: 30px;
}
.clear-post-wrapper .post-image {
  height: 560px;
  width: 400px;
  margin-left: -55%;
  margin-top: -58%;
}
@media (max-width: 1199px) {
  .clear-post-wrapper .post-image {
    width: initial;
    height: 455px;
    max-width: 470px;
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .clear-post-wrapper .post-image {
    max-width: 700px;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .clear-post-wrapper .post-image {
    height: 450px;
    max-width: 540px;
  }
}
.clear-post-wrapper .progress-content {
  position: relative;
  z-index: 9;
}
.clear-post-wrapper .progress-content h2 {
  margin-bottom: 20px;
}
.clear-post-wrapper .progress-content .progress-wrap {
  margin-top: 30px;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--text);
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .progress {
  background: #ebebeb;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px var(--white);
  border-radius: 0;
  background: #22add6;
  height: 6px;
  width: 0;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.clear-post-wrapper .progress-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.single-request-element {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .single-request-element {
    text-align: center;
    margin-top: 30px;
  }
}
.single-request-element .icon {
  font-size: 40px;
}
.single-request-element h6 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 17px;
  text-transform: capitalize;
  color: var(--white);
}

.about-wrapper .about-image {
  position: relative;
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image .video-box {
  position: absolute;
  bottom: 65px;
  right: -200px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .video-box {
    width: 480px;
    right: -100px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-image .video-box {
    bottom: 0;
    right: 0;
    width: initial;
  }
}
.about-wrapper .about-image .video-box .video-btn {
  background-color: var(--white);
  color: var(--header);
  font-size: 25px;
  height: 70px;
  width: 70px;
  line-height: 75px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-wrapper .about-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content br {
    display: none;
  }
}
.about-wrapper .about-content .about-list {
  margin-left: 200px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-list {
    margin-left: 100px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content .about-list {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-list li {
  font-size: 18px;
  color: var(--header);
  background-color: var(--bg);
  width: 300px;
  padding: 15px 20px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-list li {
    width: 100%;
  }
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-content .about-list li i {
  color: #22add6;
  margin-right: 5px;
}
.about-wrapper .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 150px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-author {
    gap: 30px;
    margin-top: 80px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content .about-author {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-author {
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .about-wrapper br {
    display: none;
  }
}

.about-wrapper-2 {
  position: relative;
}
.about-wrapper-2 .arrow-shape {
  position: absolute;
  top: -2px;
  left: -10px;
}
@media (max-width: 1600px) {
  .about-wrapper-2 .arrow-shape {
    display: none;
  }
}
.about-wrapper-2 .about-image-area .about-image {
  height: 631px;
  max-width: 458px;
  border-right: 10px solid #22add6;
  position: relative;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-area .about-image {
    height: 420px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-area .about-image {
    height: 320px;
  }
}
.about-wrapper-2 .about-image-area .about-image .about-image-2 {
  max-width: 370px;
  height: 498px;
  right: -40%;
  top: 70px;
  position: absolute;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    right: -20%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    right: -40%;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    height: 320px;
    right: -15%;
  }
  .about-wrapper-2 .about-image-area .about-image .about-image-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-image-area .about-image .about-image-2 {
    height: 210px;
    width: 210px;
    right: 0;
    top: initial;
    bottom: 0;
  }
}
.about-wrapper-2 .about-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-content .about-icon-items {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  padding: 25px 35px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}
.about-wrapper-2 .about-content .about-icon-items .icon {
  font-size: 42px;
  color: #22add6;
}
.about-wrapper-2 .about-content .about-icon-items .content h5 {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-list {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-wrapper-2 .about-content .about-list li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-2 .about-content .about-list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-list li i {
  color: #22add6;
  margin-right: 5px;
}

.about-wrapper-3 .about-image {
  position: relative;
  width: 400px;
  height: 560px;
  margin-left: 130px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image {
    margin-left: 50px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image {
    margin-bottom: 0;
    margin-left: 240px;
    width: 400px;
    height: 560px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-image {
    margin-left: 130px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-image {
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
    margin: 0 auto;
    width: initial;
    max-width: 400px;
    height: 350px;
  }
}
.about-wrapper-3 .about-image .about-image-2 {
  width: 390px;
  height: 360px;
  position: absolute;
  bottom: -20px;
  left: -57%;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-image .about-image-2 {
    left: -35%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 {
    width: 330px;
    height: 280px;
    left: -10%;
  }
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image .about-image-2 {
    width: 390px;
    height: 360px;
    left: -57%;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-image .about-image-2 {
    bottom: 30px;
    left: -30%;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-image .about-image-2 {
    width: 210px;
    height: 210px;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content {
    text-align: center;
    margin: 0 auto;
  }
}
.about-wrapper-3 .about-content h5 {
  color: #22add6;
}
.about-wrapper-3 .about-content p {
  margin-top: 30px;
}
.about-wrapper-3 .about-content .author-items {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-content .author-items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

.about-section {
  position: relative;
}
.about-section .shape-image {
  position: absolute;
  top: 0;
  left: 0;
}
.about-section .shape-image-2 {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-section .line-area {
    display: none;
  }
}
.about-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.about-section .line-area span:nth-child(2) {
  left: 50%;
}
.about-section .line-area span:nth-child(3) {
  left: 80%;
}

.service-section {
  position: relative;
}
.service-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 40%;
  z-index: -1;
}

.servie-card-image-items {
  padding: 70px 45px;
  background-color: #22add6;
  position: relative;
  height: 100%;
}
@media (max-width: 575px) {
  .servie-card-image-items {
    padding: 50px 30px;
  }
}
.servie-card-image-items .content p {
  color: var(--white);
  font-weight: 500;
}
.servie-card-image-items .content h3 {
  font-size: 26px;
  color: var(--white);
  margin-top: 20px;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .servie-card-image-items .content h3 {
    margin-top: 15px;
  }
}

.service-card-items {
  padding: 50px 20px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  height: 100%;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .service-card-items {
    padding: 40px 20px;
  }
}
.service-card-items .icon {
  width: 120px;
  height: 120px;
  line-height: 130px;
  border-radius: 50%;
  background-color: var(--bg);
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .service-card-items .icon {
    width: 90px;
    height: 90px;
    line-height: 100px;
  }
}
.service-card-items .icon::before {
  background-color: #22add6;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.service-card-items .icon i {
  font-size: 60px;
  color: #22add6;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .service-card-items .icon i {
    font-size: 48px;
  }
}
.service-card-items .content {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .service-card-items .content {
    margin-top: 20px;
  }
}
.service-card-items .content h5 a:hover {
  color: #22add6;
}
.service-card-items:hover .icon {
  transform: scaleX(-1);
}
.service-card-items:hover .icon::before {
  visibility: visible;
  opacity: 1;
}
.service-card-items:hover .icon i {
  color: var(--white);
  position: relative;
  z-index: 9;
}
.service-card-items.active .icon::before {
  visibility: visible;
  opacity: 1;
}
.service-card-items.active .icon i {
  color: var(--white);
  position: relative;
  z-index: 9;
}
.service-card-items.style-2 {
  position: relative;
  overflow: hidden;
}
.service-card-items.style-2 .icon, .service-card-items.style-2 .content {
  position: relative;
  z-index: 9;
}
.service-card-items.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/034.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-card-items.style-2::after {
  position: absolute;
  top: 10%;
  left: 17%;
  background-image: url(../images/shape-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 94px;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-card-items.style-2::after {
    left: 12%;
  }
}
@media (max-width: 1199px) {
  .service-card-items.style-2::after {
    left: 17%;
  }
}
@media (max-width: 767px) {
  .service-card-items.style-2::after {
    display: none;
  }
}
.service-card-items.style-2:hover .icon::before {
  background-color: var(--white);
  background-image: initial;
}
.service-card-items.style-2:hover .icon i {
  color: #22add6;
}
.service-card-items.style-2:hover::before {
  opacity: 1;
  visibility: visible;
}
.service-card-items.style-2:hover::after {
  opacity: 1;
  visibility: visible;
  top: 37%;
}
.service-card-items.style-2:hover .content h5 a {
  color: var(--white);
}
.service-card-items.style-2.active .icon::before {
  background-color: var(--white);
  background-image: initial;
}
.service-card-items.style-2.active .icon i {
  color: #22add6;
}
.service-card-items.style-2.active::before {
  opacity: 1;
  visibility: visible;
}
.service-card-items.style-2.active::after {
  opacity: 1;
  visibility: visible;
  top: 37%;
}
.service-card-items.style-2.active .content h5 a {
  color: var(--white);
}

.service-provide {
  position: relative;
}
@media (max-width: 1600px) {
  .service-provide {
    overflow: hidden;
  }
}
.service-provide .shape-image {
  position: absolute;
  right: 0;
  top: -70%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .service-provide .shape-image {
    display: none;
  }
}

.service-provide-items {
  position: relative;
  padding: 50px 50px;
  box-shadow: var(---box-shadow);
  margin-top: 60px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.service-provide-items .icon {
  width: 120px;
  height: 120px;
  line-height: 130px;
  border-radius: 50%;
  background-color: #22add6;
  text-align: center;
  margin: 0 auto;
  font-size: 60px;
  color: var(--white);
  margin-top: -100px;
  transition: all 0.4s ease-in-out;
  transition: transform 500ms ease;
}
@media (max-width: 575px) {
  .service-provide-items .icon {
    width: 90px;
    height: 90px;
    line-height: 100px;
    font-size: 42px;
  }
}
.service-provide-items .content {
  margin-top: 25px;
}
@media (max-width: 575px) {
  .service-provide-items .content {
    margin-top: 20px;
  }
}
.service-provide-items .content h5 {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .service-provide-items .content h5 {
    margin-bottom: 10px;
  }
}
.service-provide-items .content h5 a:hover {
  color: #22add6;
}
.service-provide-items .arrow-icon {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .service-provide-items .arrow-icon {
    margin-top: 20px;
  }
}
.service-provide-items .arrow-icon a i {
  font-size: 28px;
  color: #22add6;
  transition: all 0.4s ease-in-out;
}
.service-provide-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #22add6;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.service-provide-items::after {
  position: absolute;
  top: 0px;
  right: -120px;
  width: 100%;
  height: 100%;
  background-image: url(../images/shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.service-provide-items:hover {
  background-color: initial;
}
.service-provide-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-provide-items:hover::after {
  right: -80px;
  background-color: initial;
}
.service-provide-items:hover .icon {
  color: #22add6;
  background-color: var(--white);
  background-image: var(--white);
  transform: scaleX(-1);
}
.service-provide-items:hover .content h5 a {
  color: var(--white);
}
.service-provide-items:hover .content p {
  color: var(--white);
}
.service-provide-items:hover .content .arrow-icon a i {
  color: var(--white);
}
.service-provide-items.active {
  background-color: initial;
}
.service-provide-items.active::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-provide-items.active .icon {
  color: #22add6;
  background-color: var(--white);
  background-image: var(--white);
}
.service-provide-items.active .content h5 a {
  color: var(--white);
}
.service-provide-items.active .content p {
  color: var(--white);
}
.service-provide-items.active .content .arrow-icon a i {
  color: var(--white);
}

.service-productive-wrapper {
  position: relative;
}
.service-productive-wrapper .service-productive-image {
  width: 500px;
  height: 751px;
  position: absolute;
  top: -248px;
  left: 0;
}
@media (max-width: 1600px) {
  .service-productive-wrapper .service-productive-image {
    position: initial;
    top: initial;
  }
}
@media (max-width: 991px) {
  .service-productive-wrapper .service-productive-image {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .service-productive-wrapper .service-productive-image {
    height: 520px;
  }
}
@media (max-width: 575px) {
  .service-productive-wrapper .service-productive-image {
    height: 400px;
  }
}
.service-productive-wrapper .icon-items-area {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 90px;
}
@media (max-width: 767px) {
  .service-productive-wrapper .icon-items-area {
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .service-productive-wrapper .icon-items-area {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-productive-wrapper .icon-items-area .icon-item {
  gap: 25px;
}
.service-productive-wrapper .icon-items-area .icon-item .icon {
  font-size: 42px;
  color: #22add6;
  padding: 15px 20px;
  background-color: var(--bg);
  transition: all 0.4s ease-in-out;
}
.service-productive-wrapper .icon-items-area .icon-item:hover .icon {
  background-color: #22add6;
  color: var(--white);
}
.service-productive-wrapper .icon-items-area .icon-item.active .icon {
  background-color: #22add6;
  color: var(--white);
}
.service-productive-wrapper h6 {
  margin-top: 40px;
  font-size: 20px;
  color: #22add6;
}
@media (max-width: 575px) {
  .service-productive-wrapper h6 {
    margin-top: 20px;
  }
}
.service-productive-wrapper .author-items {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .service-productive-wrapper .author-items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-productive-wrapper.style-2 {
  position: relative;
  padding-top: 80px;
}
.service-productive-wrapper.style-2 .circle-shape {
  top: 25%;
}
.service-productive-wrapper.style-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: -28%;
  width: 32%;
  height: 80%;
}
.service-productive-wrapper.style-2 .productive-image-2 {
  margin-right: 60px;
  position: relative;
  z-index: 9;
}
.service-productive-wrapper.style-2 .productive-image-2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .service-productive-wrapper.style-2 .productive-image-2 {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .service-productive-wrapper.style-2 .productive-image-2 {
    margin-right: 0;
  }
}

.service-productive {
  position: relative;
}
.service-productive .circle-shape {
  position: absolute;
  top: 10%;
  right: 5%;
}
.service-productive .circle-shape .text-circle {
  animation: cir36 10s linear infinite;
}
@media (max-width: 1600px) {
  .service-productive .circle-shape {
    right: 0;
    top: 4%;
  }
}
@media (max-width: 1199px) {
  .service-productive .circle-shape {
    display: none;
  }
}

.service-details-wrapper .service-details-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .service-details-wrapper .service-details-content h2 {
    font-size: 32px;
  }
}
.service-details-wrapper .service-details-content .details-image {
  height: 400px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .details-image {
    margin-bottom: 20px;
  }
}
.service-details-wrapper .service-details-content .details-title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .details-title {
    font-size: 28px;
  }
}
.service-details-wrapper .service-details-content .service-details-list .goal-list ul li {
  color: var(--header);
  font-weight: 500;
}
.service-details-wrapper .service-details-content .service-details-list .goal-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-content .service-details-list .goal-list ul li i {
  color: #22add6;
  font-size: 18px;
}

.project-section {
  position: relative;
}
.project-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 0;
  z-index: -1;
  height: 30%;
}
.project-section .shape-left {
  position: absolute;
  left: 0;
  top: -19%;
}
@media (max-width: 1199px) {
  .project-section .shape-left {
    display: none;
  }
}
.project-section .right-shape {
  position: absolute;
  top: -19.4%;
  right: 0;
  z-index: -1;
  overflow: hidden;
  animation: top-image-bounce 3s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .project-section .right-shape {
    display: none;
  }
}

.project-items {
  margin-top: 30px;
}
.project-items .project-image {
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  display: block;
}
@media (max-width: 575px) {
  .project-items .project-image {
    height: 450px;
  }
}
.project-items .project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-items .project-image::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 0%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.9s;
}
.project-items .project-image .project-content-area {
  position: absolute;
  bottom: 0;
  background-color: #22add6;
  padding: 30px 25px;
  left: 40px;
  right: 40px;
  bottom: -320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.9s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .project-items .project-image .project-content-area {
    left: 20px;
    right: 20px;
  }
}
.project-items .project-image .project-content-area.style-2 {
  left: 135px;
  right: 135px;
  padding: 30px 40px;
}
@media (max-width: 575px) {
  .project-items .project-image .project-content-area.style-2 {
    padding: 30px 25px;
    left: 20px;
    right: 20px;
  }
}
.project-items .project-image .project-content-area .content p {
  color: var(--white);
}
.project-items .project-image .project-content-area .content h4 a {
  color: var(--white);
}
.project-items .project-image .project-content-area .icon {
  width: 55px;
  height: 55px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  color: #22add6;
  display: inline-block;
  text-align: center;
  font-size: 18px;
}
.project-items:hover .project-image::before {
  height: 100%;
}
.project-items:hover .project-image .project-content-area {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .project-items:hover .project-image .project-content-area {
    bottom: 20px;
  }
}

.project-wrapper .swiper-slide.swiper-slide-active .project-items-2 .project-image::after {
  opacity: 0.702;
  visibility: visible;
  transform: scale(1);
}
.project-wrapper .swiper-slide.swiper-slide-active .project-items-2 .project-image .project-content, .project-wrapper .swiper-slide.swiper-slide-active .project-items-2 .project-image .icon {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.project-wrapper .swiper-slide.swiper-slide-active .project-items-2.style-2 .project-content {
  bottom: 10px;
}

.project-items-2 {
  overflow: hidden;
}
.project-items-2 .project-image {
  position: relative;
}
.project-items-2 .project-image img {
  width: 100%;
  height: 100%;
}
.project-items-2 .project-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
  background-color: rgb(0, 5, 28);
}
@media (max-width: 767px) {
  .project-items-2 .project-image {
    height: 380px;
  }
  .project-items-2 .project-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .project-items-2 .project-image {
    height: 300px;
  }
}
.project-items-2 .project-image .icon {
  width: 55px;
  height: 55px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #22add6;
  color: var(--white);
  font-size: 22px;
  position: absolute;
  right: 40px;
  text-align: center;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  bottom: -100px;
  transition: all 0.4s ease-in-out;
}
.project-items-2 .project-image .project-content {
  position: absolute;
  left: 40px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  bottom: -100px;
  transition: all 0.4s ease-in-out;
}
.project-items-2 .project-image .project-content p {
  color: var(--white);
}
.project-items-2 .project-image .project-content h4 a {
  color: var(--white);
}
.project-items-2:hover .project-image::after {
  opacity: 0.702;
  visibility: visible;
  transform: scale(1);
}
.project-items-2:hover .project-image .project-content, .project-items-2:hover .project-image .icon {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
.project-items-2.style-2 {
  margin-top: 30px;
}
.project-items-2.style-2 .project-content {
  padding: 30px;
  width: 96%;
  background-color: #22add6;
  left: 10px;
  -webkit-clip-path: polygon(70% 0, 100% 100%, 99% 100%, 0 96%, 0 0);
          clip-path: polygon(70% 0, 100% 100%, 99% 100%, 0 96%, 0 0);
}
.project-items-2.style-2 .icon {
  background-color: var(--white);
  background-image: none;
  z-index: 999;
}
.project-items-2.style-2 .icon i {
  color: #22add6;
}
.project-items-2.style-2:hover .project-content {
  bottom: 10px;
}

.project-successful-items {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.project-successful-items::before {
  background-color: #22add6;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.project-successful-items .icon {
  font-size: 28px;
  color: #22add6;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.project-successful-items .content {
  margin-top: 15px;
  position: relative;
  z-index: 9;
}
.project-successful-items .counter-text {
  position: absolute;
  bottom: -20%;
  left: 40%;
}
@media (max-width: 575px) {
  .project-successful-items .counter-text {
    bottom: -15%;
  }
}
.project-successful-items .counter-text h2 {
  font-size: 100px;
  color: var(--header);
  opacity: 0.5;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 575px) {
  .project-successful-items .counter-text h2 {
    font-size: 80px;
  }
}
.project-successful-items:hover::before {
  visibility: visible;
  opacity: 1;
}
.project-successful-items:hover .icon {
  color: var(--white);
}
.project-successful-items:hover .content h5 {
  color: var(--white);
}
.project-successful-items:hover .counter-text h2 {
  color: var(--white);
}
.project-successful-items.active::before {
  visibility: visible;
  opacity: 1;
}
.project-successful-items.active .icon {
  color: var(--white);
}
.project-successful-items.active .content h5 {
  color: var(--white);
}
.project-successful-items.active .counter-text h2 {
  color: var(--white);
}

.project-section-3 {
  position: relative;
}
.project-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}
.project-section-3 .shape-image {
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 9;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1199px) {
  .project-section-3 .shape-image {
    display: none;
  }
}
.project-section-3 .shape-image-2 {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .project-section-3 .shape-image-2 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .project-section-3 .line-area {
    display: none;
  }
}
.project-section-3 .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.project-section-3 .line-area span:nth-child(2) {
  left: 50%;
}
.project-section-3 .line-area span:nth-child(3) {
  left: 80%;
}

.project-section-4 {
  position: relative;
}
.project-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";

  height: 60%;
}
.project-section-4 .shape-image {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .project-section-4 .shape-image {
    display: none;
  }
}

.project-wrapper-2 {
  padding: 0 170px;
}
@media (max-width: 1600px) {
  .project-wrapper-2 {
    padding: 0;
  }
}
.project-wrapper-2 .project-items-3 {
  margin-top: 30px;
  overflow: hidden;
  height: 532px;
    width: 407px;
}
.project-wrapper-2 .project-items-3 .project-image {
  
  position: relative;
  z-index: 9;
}
.project-wrapper-2 .project-items-3 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1, 0);
  transition: transform 800ms ease;
  transform-origin: bottom center;
  z-index: 99;
}
@media (max-width: 575px) {
  .project-wrapper-2 .project-items-3 .project-image {
    height: 350px;
  }
}
.project-wrapper-2 .project-items-3 .project-image .project-content {
  position: absolute;
  bottom: -60px;
  left: 45px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-wrapper-2 .project-items-3 .project-image .project-content::before {
  position: absolute;
  bottom: -50px;
  left: -50px;
  content: "";
  width: 370px;
  height: 281px;
  z-index: -1;
}
.project-wrapper-2 .project-items-3 .project-image .project-content .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--header);
  display: inline-block;
  color: var(--white);
  margin-bottom: 20px;
}
.project-wrapper-2 .project-items-3 .project-image .project-content p {
  color: var(--white);
  margin-bottom: 5px;
}
.project-wrapper-2 .project-items-3 .project-image .project-content h4 a {
  color: var(--white);
}
.project-wrapper-2 .project-items-3:hover .project-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.project-wrapper-2 .project-items-3:hover .project-image .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 45px;
}

.project-wrapper .project-details-image {
  height: 540px;
}
.project-wrapper .catagory-wrapper {
  display: flex;
  align-items: center;
  gap: 170px;
  justify-content: center;
  margin-top: 30px;
}
.project-wrapper .catagory-wrapper .catagory-content p {
  text-transform: uppercase;
}
.project-wrapper .catagory-wrapper .catagory-content h5 {
  font-size: 18px;
  margin-top: 10px;
}
.project-wrapper .catagory-wrapper .social-icon {
  gap: 15px;
}
.project-wrapper .catagory-wrapper .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.project-wrapper .catagory-wrapper .social-icon a.color-1 {
  background-color: rgb(70, 97, 197);
}
.project-wrapper .catagory-wrapper .social-icon a.color-2 {
  background-color: rgb(29, 161, 242);
}
.project-wrapper .catagory-wrapper .social-icon a.color-3 {
  background-color: rgb(255, 46, 46);
}
.project-wrapper .catagory-wrapper .social-icon a.color-4 {
  background-color: rgb(0, 115, 176);
}
.project-wrapper .project-details-content {
  margin-top: 50px;
  border-bottom: 1px solid var(--border);
}
.project-wrapper .project-details-content h2 {
  font-size: 30px; text-align:center;
}
.project-wrapper-2 h2{ font-size:30px}
.project-wrapper .project-details-content .tag-share-wrap {
  margin-top: 40px;
  padding-bottom: 30px;
}
.project-wrapper .prev-next-btns {
  margin-top: 30px;
}
.project-wrapper .prev-next-btns .prev-button {
  display: flex;
  align-items: center;
  gap: 25px;
}
.project-wrapper .prev-next-btns .prev-button .icon {
  color: #22add6;
  font-size: 18px;
}
.project-wrapper .prev-next-btns .prev-button .content h5 {
  font-size: 18px;
}
.project-wrapper .prev-next-btns .next-button {
  display: flex;
  align-items: center;
  gap: 25px;
}
.project-wrapper .prev-next-btns .next-button .icon {
  color: #22add6;
  font-size: 18px;
}
.project-wrapper .prev-next-btns .next-button .content {
  text-align: right;
}
.project-wrapper .prev-next-btns .next-button .content h5 {
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #22add6;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #22add6;
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-100 {
  margin-left: 100px;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot {
  margin-bottom: -7px;
}
.swiper-dot .swiper-pagination-bullet {
  border: 2px solid var(--header);
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 0px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #22add6;
  transition: 0.6s;
  position: relative;
  border: 2px solid #22add6;
}
.swiper-dot.style-2 .swiper-pagination-bullet {
  border: none;
  width: 20px;
  height: 20px;
  background-color: var(--header);
  border-radius: 50%;
  opacity: 1;
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #22add6;
  border: none;
}

.array-button {
  position: relative;
  z-index: 99;
}
.array-button .array-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme2);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-prev:hover {
  background-color: #22add6;
  color: var(--white);
}
.array-button .array-next {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #22add6;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-next:hover {
  background-color: var(--white);
  color: #22add6;
}

.mt-10 {
  margin-top: 10px;
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.bg-cover a img:hover {
transform: rotateX(0deg) scale(1, 1);
    transition: all 1s cubic-bezier(.23, 1, .38, 1) 0s;
   box-shadow: 10px 10px 5px 0px rgb(191 191 191 / 75%);
}

.nice-select {
  color: var(--text);
    background-color: #ffffff;
  font-size: 16px;
  width: unset;
  outline: none;
  padding: 18px 20px;
  border: none;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .nice-select {
    padding: 15px 20px;
  }
}
.nice-select span {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 0 !important;
}
.nice-select:hover::after {
  border-bottom: 1px solid #22add6;
  border-right: 1px solid #22add6;
}

.nice-select option {
  color: var(--text);
}

.nice-select .current {
  margin-right: 12px;
}

.nice-select:after {
  right: 23px;
  border-bottom: 1px solid var(--header);
  border-right: 1px solid var(--header);
  width: 10px;
  height: 10px;
}

.nice-select.open .list {
  background: var(--bg);
  margin-top: 16px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.nice-select .option.selected.focus {
  background: var(--bg);
  outline: none;
  color: #22add6;
  text-transform: capitalize;
  font-size: 16px;
  display:none;
}

.nice-select .option {
  border: none;
  text-align: center;
}

.nice-select .option:hover {
  background: transparent;
}

.head-color {
  color: var(--header);
}

.footer-bg {
  background-color: #4d4d4d;
}

.border-none {
  border-top: none !important;
}

.overlay-color {
  position: relative;
}
.overlay-color::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0.3;
}

.single-team-items {
  margin-top: 30px;
  overflow: hidden;
}
.single-team-items .team-image {
  position: relative;
}
.single-team-items .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .single-team-items .team-image {
    height: 300px;
  }
}
.single-team-items .team-image::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  content: "";
}
.single-team-items .team-image .team-content {
  position: absolute;
  bottom: -100px;
  left: 40px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
}
.single-team-items .team-image .team-content h4 a {
  color: var(--white);
}
.single-team-items .team-image .team-content h4 a:hover {
  color: #22add6;
}
.single-team-items .team-image .team-content p {
  color: var(--white);
}
.single-team-items .team-image .team-content .social-icon {
  gap: 15px;
  margin-top: 20px;
}
.single-team-items .team-image .team-content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--header);
}
.single-team-items .team-image .team-content .social-icon a:hover {
  background-color: #22add6;
  color: var(--white);
}
.single-team-items:hover .team-image::before {
  visibility: visible;
  opacity: 1;
}
.single-team-items:hover .team-content {
  bottom: 40px;
  visibility: visible;
  opacity: 1;
}
.single-team-items.active .team-image::before {
  visibility: visible;
  opacity: 1;
}
.single-team-items.active .team-content {
  bottom: 40px;
  visibility: visible;
  opacity: 1;
}
.single-team-items.active .team-content .social-icon a.active {
  background-color: #22add6;
  color: var(--white);
}

.text-area {
  padding: 15px 30px;
  background-color: var(--bg);
  max-width: 520px;
  margin: 0 auto;
}
.text-area a {
  font-weight: 500;
  color: #22add6;
  text-decoration: underline;
}

.team-card-items {
  margin-top: 30px;
  overflow: hidden;
}
.team-card-items .team-image {
  position: relative;
 
}
@media (max-width: 575px) {
  .team-card-items .team-image {
    
  }
}
.team-card-items .team-image::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  content: "";
}
.team-card-items .team-image .team-content {
  padding: 30px 20px;
  background-color: var(--white);
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 81%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-card-items .team-image .team-content h4 {
  margin-bottom: 5px;
}
.team-card-items .team-image .team-content h4 a:hover {
  color: #22add6;
}
.team-card-items:hover .team-image::before {
  visibility: visible;
  opacity: 1;
}
.team-card-items:hover .team-content {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
}
.team-card-items.active .team-image::before {
  visibility: visible;
  opacity: 1;
}
.team-card-items.active .team-content {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
}
.team-card-items.style-2 .team-image .team-content {
  display: none;
}
.team-card-items.style-2 .team-image .team-content-2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 9;
}
.team-card-items.style-2 .team-image .team-content-2 h4 a {
  color: var(--white);
}
.team-card-items.style-2 .team-image .team-content-2 h4 a:hover {
  color: #22add6;
}
.team-card-items.style-2 .team-image .team-content-2 p {
  color: var(--white);
}
.team-card-items.style-2 .team-image .social-profile {
  position: absolute;
  right: 40px;
  bottom: 40px;
  content: "";
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
}
.team-card-items.style-2 .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-card-items.style-2 .team-image .social-profile ul li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
}
.team-card-items.style-2 .team-image .social-profile ul li a:hover {
  color: #22add6;
}
.team-card-items.style-2 .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  background: #22add6;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.team-card-items.style-2 .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-items.style-2 .team-image .social-profile.active a {
  opacity: 1;
  visibility: visible;
}
.team-card-items.style-2.active .team-image .social-profile ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-image-area {
  position: relative;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area {
    padding-top: 0;
  }
}
.team-details-wrapper .team-details-image-area::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 85%;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area::before {
    display: none;
  }
}
.team-details-wrapper .team-details-image-area .text {
  font-size: 120px;
  text-transform: uppercase;
  color: #22add6;
  position: relative;
  z-index: 1;
  transform: rotate(-90deg);
  position: absolute;
  top: 25%;
  left: -8px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-image-area .text {
    left: -70px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .text {
    display: none;
  }
}
.team-details-wrapper .team-details-image-area .details-iamge {
  height: 502px;
  position: relative;
  z-index: 9;
}
.team-details-wrapper .team-details-image-area .right-content {
  position: relative;
  z-index: 9;
}
.team-details-wrapper .team-details-image-area .right-content h2 {
  font-size: 40px;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content h2 {
    font-size: 32px;
  }
}
.team-details-wrapper .team-details-image-area .right-content p {
  color: #22add6;
}
.team-details-wrapper .team-details-image-area .right-content .list {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content .list {
    margin-top: 20px;
  }
}
.team-details-wrapper .team-details-image-area .right-content .list h5 {
  font-size: 18px;
  font-weight: 500;
}
.team-details-wrapper .team-details-image-area .right-content .list h5 a, .team-details-wrapper .team-details-image-area .right-content .list h5 span {
  color: var(--text);
  font-weight: normal;
}
.team-details-wrapper .team-details-image-area .right-content .social-icon {
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content .social-icon {
    margin-top: 30px;
  }
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-1 {
  background-color: rgb(70, 97, 197);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-2 {
  background-color: rgb(29, 161, 242);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-3 {
  background-color: rgb(255, 46, 46);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-4 {
  background-color: rgb(0, 115, 176);
}
.team-details-wrapper .team-details-content {
  margin-top: -7px;
  margin-bottom: -5px;
}
.team-details-wrapper .team-details-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-content h2 {
    font-size: 28px;
  }
}
.team-details-wrapper .team-details-content .details-information-area {
  margin-top: 40px;
  margin-bottom: 40px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head .point {
  font-size: 14px;
  color: var(--text);
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .progress {
  background: var(--bg);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: #22add6;
  height: 6px;
  width: 0;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
.team-details-wrapper .team-details-content .details-information-area .information-content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-details-wrapper .team-details-content .details-information-area .information-content-items .content-box-area .content h3 {
  margin-bottom: 10px;
}

.single-shop-items {
  overflow: hidden;
  margin-top: 30px;
}
.single-shop-items .shop-image {
  position: relative;
}
.single-shop-items .shop-image img {
  width: 100%;
  height: 100%;
}
.single-shop-items .shop-image .shop-button {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.single-shop-items .shop-content {
  padding: 20px 30px;
}
.single-shop-items .shop-content h4 a:hover {
  color: #22add6;
}
.single-shop-items .shop-content .price {
  margin-top: 15px;
}
.single-shop-items .shop-content .price p {
  color: var(--theme2);
}
.single-shop-items .shop-content .price .star {
  color: #22add6;
}
.single-shop-items:hover .shop-image .shop-button {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.single-shop-items.active .shop-image .shop-button {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.woocommerce-notices-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .woocommerce-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.woocommerce-notices-wrapper .product-showing {
  font-size: 16px;
}
.woocommerce-notices-wrapper .woocommerce-right {
  gap: 30px;
}
.woocommerce-notices-wrapper .woocommerce-right .form-clt {
  width: 210px;
}
.woocommerce-notices-wrapper .woocommerce-right .form-clt .nice-select {
  padding: 18px 20px;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--border);
}
.woocommerce-notices-wrapper .woocommerce-right .form-clt.style-2 {
  width: 260px;
}

.main-cart-wrapper {
  border-radius: 5px;
}
.main-cart-wrapper .cart-wrapper {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 40px 40px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table {
  width: 100%;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead {
  border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table thead tr th {
  padding-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item td {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-price {
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg);
  width: 100px;
  border-radius: 5px;
  padding: 2px 20px;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity span {
  display: block;
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a {
  display: block;
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-quantity .cart-item-quantity-controller a i {
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper .cart-items-wrapper table tbody .cart-item .cart-item-remove a i {
  color: var(--header);
}
.main-cart-wrapper .cart-wrapper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.main-cart-wrapper .cart-wrapper-footer form {
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-cart-wrapper .cart-wrapper-footer form input {
  padding: 5px 5px;
  border: none;
  text-transform: capitalize;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--text);
}
.main-cart-wrapper .cart-wrapper-footer form button {
  outline: none;
  border: none;
}
.main-cart-wrapper .cart-pragh-box {
  margin-top: 24px;
  padding-right: 30px;
  padding-bottom: 30px;
}
.main-cart-wrapper .cart-graph {
  border: 1px solid var(--border);
  padding: 30px 30px;
  border-radius: 5px;
}
.main-cart-wrapper .cart-graph h4 {
  text-align: center;
  color: var(--header);
  margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul {
  margin-bottom: 30px;
}
.main-cart-wrapper .cart-graph ul li {
  display: flex;
}
.main-cart-wrapper .cart-graph ul li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.main-cart-wrapper .cart-graph ul li span {
  width: 50%;
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  padding: 16px 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cart-wrapper {
    overflow-x: scroll;
  }
  .cart-wrapper .cart-items-wrapper {
    width: 700px;
  }
  .cart-wrapper .cart-wrapper-footer {
    width: 700px;
  }
}
.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}
.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border);
  font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::-moz-placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: #22add6;
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}
.shop-details-wrapper .shop-details-image img {
  width: 100%;
  height: 100%;
}
.shop-details-wrapper .shop-details-image .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  background-color: #e9e9ea;
  color: var(--header);
  display: inline-block;
  position: absolute;
  top: 40px;
  right: 40px;
}
.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.shop-details-wrapper .product-details-content .star a {
  color: #22add6;
  font-size: 16px;
  font-weight: 600;
}
.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}
.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.shop-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
  line-height: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
  padding: 16px 45px;
}
.shop-details-wrapper .product-details-content .details-info {
  position: relative;
}
.shop-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.shop-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
}
.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab {
    padding-top: 50px;
  }
}
.shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: #22add6;
}
.shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: #22add6;
  transition: 0.3s;
}
@media (max-width: 470px) {
  .shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}
.shop-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.shop-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .shop-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.shop-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 14px;
  margin-left: 30px;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: #22add6;
}
.shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #22add6;
}
.shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.shop-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: var(--bg);
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.faq-section {
  position: relative;
}
@media (max-width: 1199px) {
  .faq-section .line-area {
    display: none;
  }
}
.faq-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.faq-section .line-area span:nth-child(2) {
  left: 50%;
}
.faq-section .line-area span:nth-child(3) {
  left: 80%;
}

.faq-wrapper .faq-image {
  height: 710px;
  width: 893px;
  margin-left: -50%;
  position: relative;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-image {
    margin-left: -70%;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    width: initial;
    max-width: 890px;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .faq-wrapper .faq-image {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image {
    height: 400px;
  }
}
.faq-wrapper .faq-image .counter-area {
  position: absolute;
  bottom: 10%;
  right: -4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .faq-wrapper .faq-image .counter-area {
    right: 0;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items {
  padding: 40px 90px 40px 40px;
  background-color: var(--header);
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image .counter-area .counter-items {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image .counter-area .counter-items {
    padding: 25px;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image .counter-area .counter-items h2 {
    font-size: 42px;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items p {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image .counter-area .counter-items p {
    font-size: 16px;
  }
}
.faq-wrapper .faq-image .counter-area .counter-items.style-2 {
  background-color: #22add6;
}
.faq-wrapper .faq-image-items {
  position: relative;
}
.faq-wrapper .faq-image-items .faq-image-1 {
  max-width: 350px;
  height: 380px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items .faq-image-1 {
    max-width: 320px;
    height: 350px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image-items .faq-image-1 {
    max-width: 460px;
    height: 400px;
  }
}
.faq-wrapper .faq-image-items .faq-image-2 {
  max-width: 350px;
  position: absolute;
  top: 28%;
  right: 18%;
  z-index: -1;
}
.faq-wrapper .faq-image-items .faq-image-2 img {
  width: 100%;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    right: 10%;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    max-width: 320px;
    right: 4%;
  }
}
@media (max-width: 991px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    max-width: 275px;
    right: 0;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-image-items .faq-image-2 {
    width: 210px;
    height: 210px;
    right: 0;
    top: initial;
    bottom: 0;
    z-index: 99;
  }
}
.faq-wrapper .faq-image-items::before {
  position: absolute;
  top: 15px;
  right: 28%;
  width: 65px;
  height: 65px;
  content: "";
  background-color: #22add6;
  animation: top-image-bounce 3s infinite ease-in-out;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-image-items::before {
    right: 20%;
  }
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items::before {
    display: none;
  }
}
.faq-wrapper .faq-image-items::after {
  position: absolute;
  bottom: -23%;
  left: 8%;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--theme2);
  animation: top-image-bounce-2 3s infinite ease-in-out;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image-items::after {
    display: none;
  }
}

.faq-content .accordion-item {
  border: 0;
  margin-top: 20px;
  border-radius: 10px;
  background-color: var(--white);
}
@media (max-width: 575px) {
  .faq-content .accordion-item {
    margin-top: 10px;
  }
}
.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--header);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 10px 0;
}
.faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #22add6;
  text-align: center;
  font-size: 14px;
  color: var(--white);
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  background-color: var(--header);
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 100px;
  padding-left: 0;
  padding-top: 5px;
  color: var(--text);
}
@media (max-width: 1199px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 0;
  }
}
.faq-content.style-2 .accordion-item {
  margin-top: 10px;
}
.faq-content.style-3 {
  margin-top: 50px;
}
.faq-content.style-3 .collapse {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 20px;
}
.faq-content.style-3 .accordion-item {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 18px 30px;
  border-radius: 0;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button {
  padding: 10px 45px;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-color: #22add6;
}

.faq-wrapper-2 .faq-items {
  padding: 80px 100px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .faq-wrapper-2 .faq-items {
    padding: 80px 30px;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
  }
}
.faq-wrapper-2 .faq-items .faq-image {
  margin-bottom: -80px;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.faq-wrapper-2 .faq-sidebar .search-widget form {
  width: 100%;
  position: relative;
}
.faq-wrapper-2 .faq-sidebar .search-widget form input {
  background-color: transparent;
  font-size: 16px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border: 1px solid var(--border);
}
.faq-wrapper-2 .faq-sidebar .search-widget form button {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 18px;
  height: 100%;
  color: var(--header);
}
.faq-wrapper-2 .faq-sidebar .side-post {
  height: 218px;
  margin-top: 40px;
  position: relative;
}
.faq-wrapper-2 .faq-sidebar .side-post::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(42, 40, 51);
  opacity: 0.451;
}
.faq-wrapper-2 .faq-sidebar .side-post h3 {
  position: relative;
  z-index: 9;
  color: var(--white);
  padding: 40px;
  font-size: 30px;
}

.main-sidebar .service-sidebar-widget {
  margin-bottom: 35px;
  padding: 40px;
  background-color: var(--bg);
}
.main-sidebar .service-sidebar-widget .wid-title {
  margin-bottom: 30px;
}
.main-sidebar .service-sidebar-widget .service-category a {
  position: relative;
  display: inline-block;
  padding: 18px 20px;
  background-color: var(--white);
  width: 100%;
  font-weight: 600;
  z-index: 9;
}
.main-sidebar .service-sidebar-widget .service-category a:not(:last-child) {
  margin-bottom: 10px;
}
.main-sidebar .service-sidebar-widget .service-category a i {
  font-size: 18px;
  color: var(--header);
  position: absolute;
  top: 25px;
  right: 20px;
}
.main-sidebar .service-sidebar-widget .service-category a::before {
  background-color: #22add6;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.main-sidebar .service-sidebar-widget .service-category a:hover {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a:hover i {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-sidebar .service-sidebar-widget .service-category a.active {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a.active i {
  color: var(--white);
}
.main-sidebar .service-sidebar-widget .service-category a.active::before {
  visibility: visible;
  opacity: 1;
}
.main-sidebar .service-sidebar-widget .service-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-sidebar .service-sidebar-widget .service-info .icon {
  font-size: 42px;
  color: #22add6;
}
.main-sidebar .service-sidebar-widget .service-info .content h5 {
  font-size: 18px;
  margin-top: 5px;
  font-weight: 500;
}
.main-sidebar .service-post {
  padding: 90px 40px;
  position: relative;
}
.main-sidebar .service-post .content {
  text-align: center;
  z-index: 9;
  position: relative;
}
.main-sidebar .service-post .content h3 {
  font-size: 28x;
  color: var(--white);
  margin-bottom: 30px;
}

.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image {
  position: relative;
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image img {
  width: 100%;
  height: 100%;
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  background-color: var(--theme3);
  text-align: center;
}
@media (max-width: 991px) {
  .product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 15px;
  }
}
.product-details-wrapper .product-image-items .tab-content .tab-pane .product-image .icon i {
  color: var(--header);
  font-size: 24px;
}
.product-details-wrapper .product-image-items .nav {
  border: unset;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.product-details-wrapper .product-image-items .nav .nav-link {
  padding: 0;
  border: unset;
  background: none;
}
.product-details-wrapper .product-image-items .nav .nav-link .image-tab img {
  width: 100%;
  height: 100%;
}
.product-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.product-details-wrapper .product-details-content .star a {
  color: var(--theme3);
  font-size: 16px;
  font-weight: 600;
}
.product-details-wrapper .product-details-content .star span {
  background-color: var(--theme3);
  font-weight: 600;
  color: var(--header);
  padding: 5px 6px;
  border-radius: 3px;
  margin-right: 10px;
}
.product-details-wrapper .product-details-content .price-list {
  gap: 20px;
}
.product-details-wrapper .product-details-content .price-list span {
  font-weight: 600;
  font-size: 28px;
  color: var(--header);
}
.product-details-wrapper .product-details-content .price-list del {
  font-size: 20px;
  color: var(--theme2);
  font-weight: 500;
}
.product-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
  color: var(--theme2);
}
.product-details-wrapper .product-details-content .cart-wrp {
  margin-top: 30px;
  margin-bottom: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity h5 {
  font-weight: 700;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity {
  width: 190px;
  border: 1px solid var(--header);
  border-radius: 6px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity input {
  width: 60px;
  height: 55px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border2);
  color: var(--header);
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .minus {
  color: var(--header);
  font-size: 32px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .plus {
  color: var(--header);
  font-size: 32px;
}
.product-details-wrapper .product-details-content .cart-wrp .cart-quantity .quantity .qty {
  color: var(--header);
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button {
  justify-content: space-between;
  gap: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .theme-btn {
  width: 88%;
  border-radius: 30px;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 36px;
  background-color: var(--white);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  font-size: 20px;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon i {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon:hover {
  background-color: #22add6;
}
.product-details-wrapper .product-details-content .cart-wrp .shop-button .star-icon:hover i {
  color: var(--white);
}
.product-details-wrapper .product-details-content .shop-text {
  font-weight: 500;
  margin-bottom: 20px;
}
.product-details-wrapper .product-details-content .shop-text span {
  font-weight: 600;
}
.product-details-wrapper .product-details-content .details-info {
  position: relative;
}
.product-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.product-details-wrapper .product-details-content .details-info span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 2px;
}
.product-details-wrapper .product-details-content .details-info a {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  margin-left: 100px;
  text-transform: uppercase;
}
.product-details-wrapper .single-tab {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab {
    padding-top: 50px;
  }
}
.product-details-wrapper .single-tab .nav {
  border-bottom: 1px solid var(--border2);
  padding-bottom: 20px;
}
.product-details-wrapper .single-tab .nav .nav-link {
  text-align: center;
  padding: 20px 50px;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--header);
}
.product-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
  background-color: var(--theme3);
  text-align: center;
  padding: 20px 50px;
}
.product-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--header);
}
.product-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.product-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
  font-size: 28px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 20px;
  gap: 200px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  font-weight: 400;
  font-weight: 500;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li:not(:last-child) {
  margin-bottom: 15px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li i {
  color: #22add6;
  margin-right: 10px;
  font-weight: 600;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .product-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.product-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.product-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 16px;
  margin-left: 30px;
}
.product-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: #ff9200;
}
.product-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.product-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase;
}
.product-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200;
}
.product-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.product-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.cta-section {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.cta-wrapper .cta-left {
  padding: 40px 50px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}
@media (max-width: 991px) {
  .cta-wrapper .cta-left {
    padding: 30px 25px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-left {
    text-align: center;
    padding: 30px 30px;
  }
}
.cta-wrapper .cta-left h2 {
  font-size: 90px;
  color: #22add6;
}
@media (max-width: 991px) {
  .cta-wrapper .cta-left h2 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-left h2 {
    font-size: 48px;
  }
}
.cta-wrapper .cta-left p {
  font-size: 18px;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-left p {
    font-size: 16px;
  }
}
.cta-wrapper .cta-right {
  box-shadow: var(---box-shadow);
  background-color: var(--white);
  padding: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cta-wrapper .cta-right {
    padding: 45px 30px;
    height: initial;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right {
    flex-direction: column;
    gap: 30px;
    padding: 50px 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-wrapper .cta-right .shape-image {
  background-image: url(../images/shape1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cta-wrapper .cta-right .shape-image {
    left: -150px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper .cta-right .shape-image {
    left: -100px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .shape-image {
    background-size: cover;
    left: 0;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .cta-content h3, .cta-wrapper .cta-right .cta-content span {
    color: var(--white);
  }
}
.cta-wrapper .cta-right .cta-content span {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .cta-content span span {
    color: var(--white);
  }
}
.cta-wrapper .cta-right .cta-content h3 {
  font-size: 26px;
  color: var(--white);
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .call-area {
    text-align: center;
  }
}
.cta-wrapper .cta-right .call-area p {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: right;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .call-area p {
    text-align: center;
    color: var(--white);
  }
}
.cta-wrapper .cta-right .call-area a {
  font-size: 26px;
  color: var(--header);
  font-weight: 700;
}
@media (max-width: 767px) {
  .cta-wrapper .cta-right .call-area a {
    color: var(--white);
  }
}

.cta-section-2 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.cta-section-2 .cta-content {
  position: absolute;
margin-top: 200px;
    margin-left: 160px;
}
.cta-section-2 .shape-image {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .cta-section-2 .shape-image {
    display: none;
  }
}
.cta-section-2.style-2 {
  background-attachment: fixed;
}
.cta-section-2.style-2::before {
  opacity: 0.8;
}
.cta-section-2.style-2 .video-icon {
  margin-top: 50px;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--white);
  display: inline-block;
  font-size: 22px;
  color: #22add6;
}
@media (max-width: 575px) {
  .cta-section-2.style-2 .video-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-top: 30px;
  }
}

.cta-wrapper-2 {
  position: relative;
}
.cta-wrapper-2 .cta-content {
  margin: 0 auto;
  text-align: center;
}
.cta-wrapper-2 .cta-content h2 {
  color: var(--white);
  font-size: 60px;
}
@media (max-width: 1199px) {
  .cta-wrapper-2 .cta-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-2 .cta-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-2 .cta-content h2 {
    font-size: 34px;
  }
}

.cta-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .cta-wrapper-3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }
}

.video-section {
  position: relative;
  padding: 230px 0;
}
.video-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 5, 28);
  opacity: 0.8;
}
@media (max-width: 575px) {
  .video-section {
    padding: 130px 0;
  }
}
@media (max-width: 991px) {
  .video-section {
    padding: 200px 0;
  }
}

.video-box {
  display: block;
}
.video-box .video-btn {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  line-height: 150px;
  font-size: 24px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1490196078);
  border-radius: 50%;
}
@media (max-width: 575px) {
  .video-box .video-btn {
    width: 100px;
    height: 100px;
    line-height: 110px;
  }
}
.video-box .ripple::before, .video-box .ripple::after {
  width: 140px;
  height: 140px;
}
@media (max-width: 575px) {
  .video-box .ripple::before, .video-box .ripple::after {
    width: 100px;
    height: 100px;
  }
}

.cta-wrapper-4 {
  
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .cta-wrapper-4 {
    
  }
}
.cta-wrapper-4 .cta-content h1 {
  font-size: 20px;
  color: var(--white); line-height: 50px;
  width: 80px;
      margin-left: 412px;
}
.cta-wrapper-4 .cta-content h2 {
  font-size: 60px;
  color: var(--white); line-height: 50px;
}
@media (max-width: 1399px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 1199px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper-4 .cta-content h2 {
    font-size: 32px;
  }
}

.cta-image img {
  border-radius: 50px;
}

.cta-section-3 {
  position: relative;
  z-index: 1;
}
.cta-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(---color-gradient-2);
  opacity: 0.8;
}

.marque-section {
  position: relative;
}
@media (max-width: 1199px) {
  .marque-section .line-area {
    display: none;
  }
}
.marque-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.marque-section .line-area span:nth-child(2) {
  left: 50%;
}
.marque-section .line-area span:nth-child(3) {
  left: 80%;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 45px;
  margin-top: -2px;
}
@media (max-width: 575px) {
  .marquee-wrapper {
    margin-top: -25px;
  }
}
.marquee-wrapper.style-2 {
  line-height: 40px;
}
@media (max-width: 575px) {
  .marquee-wrapper.style-2 {
    line-height: 75px;
  }
}
.marquee-wrapper.style-2 .text-slider {
  font-size: 24px;
  color: var(--header);
  margin-right: 40px;
}

.text-slider {
  font-size: 120px;
  height: 100px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 20px;
  color: #e1e1de;
}
@media (max-width: 575px) {
  .text-slider {
    font-size: 50px;
    height: 70px;
    line-height: 65px;
  }
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.testimonial-section {
  position: relative;
}
.testimonial-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  animation: top-image-bounce 3s infinite ease-in-out;
}
.testimonial-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.testimonial-card-items {
  background-color: var(--white);
  padding: 40px;
  position: relative;
  margin-top: 30px;
  display: inline-block;
}
.testimonial-card-items::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  background-image: url(../images/shape2.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 115px;
  height: 160px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.2;
}
.testimonial-card-items .testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonial-card-items .icon {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 48px;
  transition: all 0.4s ease-in-out;
}
.testimonial-card-items .testimonial-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}
.testimonial-card-items .testimonial-content h4 {
  margin-top: 20px;
  margin-bottom: 5px;
}
.testimonial-card-items:hover::before {
  filter: initial;
  opacity: 1;
}
.testimonial-card-items:hover .icon {
  color: #22add6;
}
.testimonial-card-items.active::before {
  filter: initial;
  opacity: 1;
}
.testimonial-card-items.active .icon {
  color: #22add6;
}

.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .shape-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .shape-left {
    display: none;
  }
}
.testimonial-section-2 .right-shape {
  position: absolute;
  top: -37%;
  right: 0;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .right-shape {
    display: none;
  }
}

.testimonial-wrapper {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .testimonial-wrapper {
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial-wrapper .testimonial-items {
  max-width: 580px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items {
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial-wrapper .testimonial-items .client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .client-image {
    text-align: center;
    margin: 0 auto 20px;
  }
}
.testimonial-wrapper .testimonial-items .testiminial-content p {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .testiminial-content p {
    margin-bottom: 20px;
  }
}
.testimonial-wrapper .array-button {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 575px) {
  .testimonial-wrapper .array-button {
    justify-content: center;
  }
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3 .shape-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.testimonial-right {
  width: 860px;
}
@media (max-width: 1600px) {
  .testimonial-right {
    width: initial;
    max-width: 860px;
  }
}
.testimonial-right .testimonial-card-items-2 .testimonial-content {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 40px;
  position: relative;
  border-bottom: 4px solid #22add6;
}
.testimonial-right .testimonial-card-items-2 .testimonial-content::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background-image: url(../images/shape-21.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 73px;
  height: 101px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
  opacity: 0.2;
}
.testimonial-right .testimonial-card-items-2 .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-right .testimonial-card-items-2 .client-info .client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonial-right .testimonial-card-items-2 .client-info .client-content h4 {
  margin-bottom: 5px;
}
.testimonial-right .testimonial-card-items-2:hover .testimonial-content::before {
  filter: initial;
  opacity: 1;
}
.testimonial-right .testimonial-card-items-2.active .testimonial-content::before {
  filter: initial;
  opacity: 1;
}

.brand-wrapper .brand-image {
  margin: 0 auto;
  text-align: center;
  padding: 30px 10px;
  background-color: var(--bg);
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
.brand-wrapper .brand-image:hover {
  filter: initial;
}
.brand-wrapper.style-2 .brand-image {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
}
.brand-wrapper.style-3 {
  margin-bottom: 55px;
}
@media (max-width: 1399px) {
  .brand-wrapper.style-3 {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .brand-wrapper.style-3 {
    margin-bottom: 0;
  }
}
.brand-wrapper.style-3 .brand-image {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.brand-wrapper .swiper-slide.swiper-slide-active .brand-image {
  filter: initial;
}

.brand-section-2 {
  position: relative;
}
.brand-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: 20%;
}

.brand-section-3 {
  background-color: #1c1b23;
  position: relative;
}
.brand-section-3 .layer-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.pricing-section {
  position: relative;
}
.pricing-section .shape-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.pricing-section .shape-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1399px) {
  .pricing-section .shape-image {
    display: none;
  }
}

.single-pricing-items {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 15px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.single-pricing-items .pricing-header {
  padding: 45px;
  background-color: var(--white);
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .single-pricing-items .pricing-header {
    padding: 40px;
  }
}
.single-pricing-items .pricing-header h2 {
  margin-bottom: 10px;
}
.single-pricing-items .pricing-header h2 sub {
  font-size: 18px;
  margin-left: -10px;
}
.single-pricing-items .pricing-header span {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}
.single-pricing-items .pricing-header .icon-area {
  position: relative;
  margin-top: 40px;
}
.single-pricing-items .pricing-header .icon-area img {
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .single-pricing-items .pricing-header .icon-area {
    margin-top: 20px;
  }
}
.single-pricing-items .pricing-header .icon-area .content {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  text-align: center;
  padding: 5px 15px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.single-pricing-items ul {
  padding: 40px 45px 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .single-pricing-items ul {
    padding: 40px 40px 30px;
  }
}
.single-pricing-items ul li {
  position: relative;
}
.single-pricing-items ul li:not(:last-child) {
  margin-bottom: 10px;
}
.single-pricing-items ul li i {
  color: #22add6;
  margin-right: 5px;
}
.single-pricing-items ul .last-list {
  opacity: 0;
}
@media (max-width: 1399px) {
  .single-pricing-items ul .last-list {
    opacity: 1;
  }
}
.single-pricing-items .pricing-button {
  padding: 0 45px 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .single-pricing-items .pricing-button {
    padding: 0 40px 40px;
  }
}
.single-pricing-items.active {
  border: 1px solid #22add6;
}
.single-pricing-items .shape-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.single-pricing-items .shape-image img {
  width: 100%;
  height: 100%;
}
.single-pricing-items:hover {
  transform: translateY(-15px);
}
.single-pricing-items:hover .pricing-header .icon-area img {
  transform: scaleX(-1);
}

.news-section {
  position: relative;
}
.news-section .swiper-slide.swiper-slide-active .single-news-items .news-image .icon {
  transform: scale(1) translate(-50%, -50%);
  transition-delay: 300ms;
  opacity: 1;
  visibility: visible;
}
.news-section .swiper-slide.swiper-slide-active .single-news-items .news-image::after {
  opacity: 0.6;
  visibility: visible;
  transform: scale(1);
}
@media (max-width: 1199px) {
  .news-section .line-area {
    display: none;
  }
}
.news-section .line-area span {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 26%;
  background-color: #efefef;
  z-index: -1;
}
.news-section .line-area span:nth-child(2) {
  left: 50%;
}
.news-section .line-area span:nth-child(3) {
  left: 80%;
}
.news-section.style-2 {
  position: relative;
}
.news-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}
.news-section.style-2 .shape-image {
  position: absolute;
  top: 0;
  left: 0;
}

.single-news-items {
  margin-top: 30px;
  overflow: hidden;
}
.single-news-items .news-image {
  height: 280px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.single-news-items .news-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  z-index: 9;
  transition: all 300ms ease;
  transition-delay: 0s;
  transition-delay: 0s;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
}
.single-news-items .news-image .icon i {
  color: var(--white);
}
.single-news-items .news-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
  background-color: rgb(0, 5, 28);
}
.single-news-items .news-content {
  padding-top: 25px;
}
@media (max-width: 575px) {
  .single-news-items .news-content {
    padding-top: 15px;
  }
}
.single-news-items .news-content h3 {
  line-height: 1.3;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .single-news-items .news-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .single-news-items .news-content h3 {
    font-size: 20px;
  }
}
.single-news-items .news-content h3 a:hover {
  color: #22add6;
}
.single-news-items:hover .news-image .icon {
  transform: scale(1) translate(-50%, -50%);
  transition-delay: 300ms;
  opacity: 1;
  visibility: visible;
}
.single-news-items:hover .news-image::after {
  opacity: 0.6;
  visibility: visible;
  transform: scale(1);
}

.single-news-items-2 {
  margin-bottom: 50px;
    margin-top: 20px;
}
.single-news-items-2 .news-image {
  height: 260px;
  position: relative;
}
@media (max-width: 575px) {
  .single-news-items-2 .news-image {
    height: 400px;
  }
}
.single-news-items-2 .news-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
}
.single-news-items-2 .news-image .post-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffffff59;
    padding: 2px 10px;
    border-radius: 20px;
    display:none;
}
.single-news-items-2 .news-image .post-date span {
  color: var(--header);
  font-weight: 600;
  font-size: 13px;
}
.single-news-items-2 .news-image .news-content {
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.single-news-items-2 .news-image .news-content .icon {
  margin-bottom: 2px;
}
.single-news-items-2 .news-image .news-content .icon span {
  color: var(--white);
}
.single-news-items-2 .news-image .news-content .icon i {
  color: var(--white);
  margin-right: 5px;
}
.single-news-items-2 .news-image .news-content h4 a {
  color: var(--white);
   font-size: 16px;
}
.single-news-items-2 .news-image .news-content h4 a:hover {
  color: #22add6;
     
}
.single-news-items-2 .news-image .news-content .post-list {
    background-color: rgba(255, 255, 255, 0.0784313725);
    padding: 8px 10px;
    display: flex;
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .single-news-items-2 .news-image .news-content .post-list {
    padding: 14px 20px;
  }
}
.single-news-items-2 .news-image .news-content .post-list li {
  color: var(--white);
}
.single-news-items-2 .news-image .news-content .post-list li span {
  margin-left: 5px;
}
.single-news-items-2 .news-image .news-content .post-list li a i {
  color: var(--white);
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.single-news-items-2:hover .news-image .news-content .post-list {
  background-color: #22add6;
}
.single-news-items-2.active .news-image .news-content .post-list {
 background-color: #22add670;
     border-radius: 20px;
}

.single-news-items-3 {
  margin-top: 30px;
}
.single-news-items-3 .news-image {
  height: 240px;
  position: relative;
}
.single-news-items-3 .news-image .post-date {
  position: absolute;
  left: 60px;
  bottom: 50px;
  color: var(--white);
  z-index: 1;
}
.single-news-items-3 .news-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(3, 5, 26);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  opacity: 0.6;
}
.single-news-items-3 .news-content {
  padding: 30px;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  margin-left: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 575px) {
  .single-news-items-3 .news-content {
    margin-left: 0;
  }
}
.single-news-items-3 .news-content span {
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.single-news-items-3 .news-content h3 {
  font-size: 26px;
}
.single-news-items-3 .news-content .news-btn {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.single-news-items-3 .news-content .news-btn a {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}
.single-news-items-3 .news-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #22add6;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: -1;
}
.single-news-items-3 .news-content::after {
  position: absolute;
  bottom: 0;
  right: -70px;
  content: "";
  width: 140px;
  height: 125px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/shape3.png);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.single-news-items-3:hover .news-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.single-news-items-3:hover .news-content::before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.single-news-items-3:hover .news-content::after {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.single-news-items-3:hover .news-content span {
  color: var(--white);
}
.single-news-items-3:hover .news-content h3 a {
  color: var(--white);
}
.single-news-items-3:hover .news-content .news-btn a {
  color: var(--white);
}
.single-news-items-3.active .news-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.single-news-items-3.active .news-content::before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.single-news-items-3.active .news-content::after {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.single-news-items-3.active .news-content span {
  color: var(--white);
}
.single-news-items-3.active .news-content h3 a {
  color: var(--white);
}
.single-news-items-3.active .news-content .news-btn a {
  color: var(--white);
}

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
  font-weight: 600;
}
.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}
.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
  width: 100%;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: #22add6;
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: #22add6;
  border: none;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 30px;
  color: var(--white);
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}
.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: #22add6;
}
.blog-wrapper .single-blog-post .post-content p {
  font-size: 26px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}
@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: #22add6;
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Kanit", sans-serif;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: #22add6;
}
.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
  margin-top: 5px;
 
}
.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: #22add6;
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: #22add6;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: #22add6;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}
.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #ededed;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}
.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: #22add6;
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: #22add6;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: #22add6;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: #22add6;
  color: var(--white);
}

.single-sidebar-widget {
 width: 100%;
 float:right;
}
.search_widget form {
  width: 40%;
  position: relative;
  float: right;
}
.search_widget form input {
  background-color: var(--bg);
  font-size: 15px;
  padding: 10px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
  border-radius: 20px;
}
.search_widget form button {
 position: absolute;
    right: 12px;
    top: 10px;
    width: 70px;
    font-size: 13px;
    /* height: 100%; */
    background-color: #f08300;
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}
.search_widget form button:hover {
  background-color: var(--header);
}

.search_widgett form {
  width: 100%;
  position: relative;
  float: right;
}
.search_widgett form input {
  background-color: var(--bg);
  font-size: 15px;
  padding: 5px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
  border-radius: 20px;
}
.search_widgett form button {
 position: absolute;
    right: 12px;
    top: 5px;
    width: 40px;
    font-size: 13px;
    /* height: 100%; */
    background-color: #f08300;
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}
.search_widgett form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}
.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: #22add6;
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: #22add6;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}
.widget_categories ul li:last-child a {
  margin-bottom: 0;
}
.widget_categories ul li a {
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.widget_categories ul li a:hover {
  color: #22add6;
}
.widget_categories ul li a i {
  margin-right: 10px;
}
.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: #22add6;
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 11px 26px;
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
  background: var(--bg);
  margin-right: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.tagcloud a:last-child {
  margin-right: 0;
}
.tagcloud a:hover {
  background-color: #22add6;
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: #22add6;
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: #22add6;
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: #22add6;
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.social-share a:hover {
  color: #22add6;
}

.tag-share-wrap {
  padding-bottom: 50px;
}
.tag-share-wrap h4 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}
.comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
  font-size: 16px;
}
.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}
@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #727475;
  border: 1px solid #ebebeb;
  background: transparent;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: #22add6;
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}
.comments-item-list .single-comment-item .author-info-comment span {
  color: #22add6;
  font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}
@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}
.comment-form label {
  margin-bottom: 4px;
}
.comment-form input, .comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
  background-color: var(--bg);
}
@media (max-width: 585px) {
  .comment-form input, .comment-form textarea {
    padding: 15px;
  }
}
.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}
@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}
.comment-form .theme-btn {
  display: inline-block;
  line-height: 1;
  padding: 20px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}
@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}
.comment-form .theme-btn i {
  margin-right: 10px;
}

.comment ul {
  list-style-type: disc;
}
.comment ul ol {
  margin-bottom: 0;
}
.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}
.comment ol ul {
  margin-bottom: 0;
}
.comment ol ol {
  margin-bottom: 0;
}
.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
  display: block;
  color: #22add6;
}
.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: #22add6;
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: #22add6;
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: #22add6;
}
.site_info_widget .social-link {
  margin-top: 35px;
}
.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.contact-section {
  position: relative;
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  z-index: -1;
  height: 70.1%;
}
.contact-section .contact-image {
  position: absolute;
  bottom: 30%;
  right: -2%;
}
@media (max-width: 1399px) {
  .contact-section .contact-image {
    display: none;
  }
}
.contact-section .contact-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .contact-section .contact-shape {
    display: none;
  }
}

.contact-wrapper .contact-left-image {
  width: 915px;
  height: 600px;
  left: -50%;
  position: relative;
}
@media (max-width: 1399px) {
  .contact-wrapper .contact-left-image {
    width: 890px;
    left: -60%;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-left-image {
    max-width: 915px;
    left: 0;
    width: initial;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image {
    height: 500px;
  }
}
.contact-wrapper .contact-left-image .counter-area {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-wrapper .contact-left-image .counter-area .counter-items {
  padding: 40px 90px 40px 40px;
  background-color: var(--header);
}
@media (max-width: 767px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items {
    padding: 35px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items {
    padding: 25px;
  }
}
.contact-wrapper .contact-left-image .counter-area .counter-items h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items h2 {
    font-size: 42px;
  }
}
.contact-wrapper .contact-left-image .counter-area .counter-items p {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 575px) {
  .contact-wrapper .contact-left-image .counter-area .counter-items p {
    font-size: 16px;
  }
}
.contact-wrapper .contact-left-image .counter-area .counter-items.style-2 {
  background-color: #22add6;
}

.contact-area {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .contact-area {
    margin-left: 0;
  }
}
.contact-area .contact-box {
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  padding: 80px;
}
@media (max-width: 767px) {
  .contact-area .contact-box {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .contact-area .contact-box {
    padding: 40px;
  }
}
.contact-area .contact-box .contact-title {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .contact-area .contact-box .contact-title {
    margin-bottom: 20px;
  }
}
.contact-area .contact-box .contact-title span {
  color: #22add6;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.contact-area .contact-box .contact-title h3 {
  font-size: 30px;
}
.contact-area .contact-box .form-clt input, .contact-area .contact-box .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 30px;
  color: var(--header);
  background-color: var(--bg);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .contact-area .contact-box .form-clt input, .contact-area .contact-box .form-clt textarea {
    padding: 14px 30px;
  }
}
.contact-area .contact-box .form-clt textarea {
  padding: 18px 30px 110px;
}
@media (max-width: 575px) {
  .contact-area .contact-box .form-clt textarea {
    padding: 14px 30px 70px;
  }
}

.contact-form-items {
  padding: 70px;
}
@media (max-width: 767px) {
  .contact-form-items {
    padding: 60px 40px;
  }
}
@media (max-width: 575px) {
  .contact-form-items {
    padding: 50px 3px;
  }
}
.contact-form-items .title {
  margin-bottom: 40px;
}
.contact-form-items .title h2 {
  font-size: 36px;
  margin-bottom: 5px;
}
.contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
  padding: 18px 30px;
  border: none;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.contact-form-items .form-clt select, .contact-form-items .form-clt textarea {
  padding: 18px 30px;
  border: none;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 575px) {
  .contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
    padding: 12px 20px;
  }
}
.contact-form-items .form-clt textarea {
  padding: 18px 30px 310px;
}
@media (max-width: 575px) {
  .contact-form-items .form-clt textarea {
    padding: 12px 20px 90px;
  }
}
.contact-form-items .form-clt::-moz-placeholder {
  color: var(--text);
}
.contact-form-items .form-clt::placeholder {
  color: var(--text);
}

.request-a-quote-section {
  position: relative;
  z-index: 2;
}
.request-a-quote-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(---color-gradient-2);
  opacity: 0.8;
  z-index: -1;
}

.request-quote-form-wrapper {
  padding: 40px 50px;
  background-color: #fff;
  box-shadow: 0px 15px 40px 0px rgba(109, 109, 109, 0.06);
}
@media (max-width: 767px) {
  .request-quote-form-wrapper {
    padding: 40px 30px;
  }
}
.request-quote-form-wrapper h4,
.request-quote-form-wrapper h3 {
  margin-bottom: 25px;
  text-transform: capitalize;
}
.request-quote-form-wrapper .request-quote-form input,
.request-quote-form-wrapper .request-quote-form select {
  width: 100%;
  font-size: 15px;
  border: 1px solid #e2e2e2;
  padding: 14px 20px;
  border-radius: 0;
}
.request-quote-form-wrapper .request-quote-form label {
  font-size: 15px;
  text-transform: capitalize;
}
.request-quote-form-wrapper .request-quote-form input[type=checkbox],
.request-quote-form-wrapper .request-quote-form input[type=radio] {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 0;
  border-color: #22add6;
}
.request-quote-form-wrapper .request-quote-form input[type=submit],
.request-quote-form-wrapper .request-quote-form .submit-btn {
  border: 0px;
  margin-top: 30px;
  margin-bottom: 10px;
  height: 60px;
  font-size: 16px;
  background-color: #22add6;
}
@media (max-width: 767px) {
  .request-quote-form-wrapper .request-quote-form input[type=submit],
  .request-quote-form-wrapper .request-quote-form .submit-btn {
    height: 50px;
    font-size: 14px;
  }
}
.request-quote-form-wrapper .request-quote-form input[type=submit]:hover,
.request-quote-form-wrapper .request-quote-form .submit-btn:hover {
  background: var(--header);
}
.request-quote-form-wrapper .request-quote-form .nice-select {
  background-color: transparent;
  width: 100%;
  font-size: 15px;
  border: 1px solid #e2e2e2;
  padding: 14px 20px;
  border-radius: 0;
}

.single-contact-card {
  background-color: #f8f8f8;
  padding: 40px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 585px) {
  .single-contact-card {
    padding: 30px;
  }
}
.single-contact-card:hover {
  background-color: #22add6;
}
.single-contact-card:hover .icon {
  color: #fff !important;
  background-color: var(--theme2) !important;
}
.single-contact-card:hover .bottom-part .icon {
  color: var(--theme) !important;
  background-color: #fff !important;
}
.single-contact-card:hover p,
.single-contact-card:hover span, .single-contact-card:hover h4 {
  color: #fff;
}
.single-contact-card .top-part {
  overflow: hidden;
}
.single-contact-card .top-part .icon {
  width: 70px;
  height: 70px;
  font-size: 20px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  float: left;
  color: #22add6;
  overflow: hidden;
  margin-right: 20px;
}
.single-contact-card .top-part .title {
  overflow: hidden;
}
.single-contact-card .bottom-part {
  margin-top: 25px;
  overflow: hidden;
}
.single-contact-card .bottom-part .icon {
  width: 50px;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  float: right;
  overflow: hidden;
  margin-left: 20px;
}
.single-contact-card .bottom-part .info {
  display: inline-block;
  overflow: hidden;
}

.single-branch-card {
  padding: 40px;
  padding-top: 0;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1019607843);
  position: relative;
  margin-top: 90px;
}
.single-branch-card .country-flag {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  display: inline-block;
  margin-bottom: 20px;
  margin-top: -60px;
}
.single-branch-card .content h4 {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 5px;
  margin-bottom: 20px;
  font-size: 25px;
}
.single-branch-card .content h4::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 14px;
  background-color: rgba(198, 245, 255, 0.8509803922);
  left: 0;
  bottom: 2px;
  z-index: -1;
}
.single-branch-card .content p {
  margin-bottom: 10px;
}
.single-branch-card .content p a {
  font-size: inherit;
  color: #22add6;
}
.single-branch-card .content .branch-links {
  margin-top: 15px;
}
.single-branch-card .content .branch-links a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}
.single-branch-card .content .branch-links a:hover {
  padding-left: 5px;
  color: var(--theme3);
}
.single-branch-card .content .branch-links a i {
  margin-left: 5px;
}

.our-branch-wrapper {
  position: relative;
  z-index: 1;
}
.our-branch-wrapper .office-google-map-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: -1;
}
.our-branch-wrapper .office-google-map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.footer-section {
  position: relative;
}
.footer-section.style-2 {
  position: relative;
}
.footer-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 5, 28);
  opacity: 0.9;
}

.footer-widgets-wrapper {
  padding: 10px 0 1px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 60px 0 90px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 70px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 3px;
}
.footer-widgets-wrapper .single-footer-widget  p1 {
  float:left;
  color: #fff;
}

.footer-widgets-wrapper .single-footer-widget  p1 a {
  color: #fff;
}

.footer-widgets-wrapper .single-footer-widget  p1 strong {
    margin-left: 20px;
    margin-right:20px
}


.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head1 {
 margin-bottom: 2px;
  text-align: right;
  color: #fff;
}

.footer-widgets-wrapper .single-footer-widget .footer-content1 {

 text-align: right;
}

.footer-widgets-wrapper .single-footer-widget .widget-head1 h3 {

  color: #fff;
}

.footer-widgets-wrapper .single-footer-widget .widget-head1 h13 {
text-align: center;
  color: #fff;
  margin-right: 2px;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  text-transform: capitalize;
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .widget-head h13 {
  text-transform: capitalize;
  color: var(--white);
  font-size: 14px;
    margin-top: 10px;
    text-align: right;
}


.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--text2);
}
.footer-widgets-wrapper .single-footer-widget .footer-content h6 {
  margin-top: 2px;     color: #858282;font-size: 13px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content h6 a {
  color: #858282;     margin-right: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: rgba(92, 92, 91, 0.1);
  color: var(--text2);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: #22add6;
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-bottom: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  border: none;
  background-color: transparent;
  color: var(--text2);
  position: relative;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::-moz-placeholder {
  color: var(--text2);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--text2);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-button {
  position: absolute;
  right: 0;
  top: 0;
  color: #22add6;
}
.footer-widgets-wrapper .single-footer-widget .list-area li {
  font-weight: 500;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: var(--text2);
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: #22add6;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
  padding-left: 20px;
  color: #22add6;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.footer-bottom {
  padding: 3px 0;
  position: relative;
  z-index: 9;
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
}


.footer-bottom .footer-bottom-wrapper p {
      color: #858282;
    font-size: 12px;
}
.footer-bottom .footer-bottom-wrapper p a {
  color: #858282;
}
.footer-bottom .footer-bottom-wrapper p a:hover {
  color: #858282;
}

#ab_img img{ max-width:100% !important; height:auto !important;display:inline-block;}
#ab_img p span{text-wrap: inherit !important;}
.breadcrumb-wrapper{ padding:400px 0;
}


.pagebar { margin-top: 70px; padding:10px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
      height: 32px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0}

 <!---->
 .tab-group {
  position: relative;
  margin-top: 2.9em;
  border-radius: 0 0 10px 10px;
}
.tab-group section {
  opacity: 0;
  height: 0;
  padding: 0 1em;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease;
}
.tab-group section.active {
  opacity: 1;
  height: auto;
  overflow: visible;
}
 
.tab-nav {
  list-style: none;
  margin: -1.9em -1px 0 400px;
  padding: 0;
  overflow: hidden;
}
.tab-nav li {
  display: inline;
}
.tab-nav li a {
  top: 1px;
  position: relative;
  display: block;
  float: left;
  padding: 0 1em;
  text-decoration: none;
  color: #fff;
background: #22add6;
    border-bottom-left-radius: 8px;
  margin-top: .5em;
  font-size:15px;
  line-height:43px;
  margin-right: 23px;
  transition: background .2s ease, line-height .2s ease, margin .2s ease;
 width: 10%; height:43px;; text-align:center
}
.tab-nav li.active a {
  line-height: 2.5em;
   color:#fff;
   border:0; background:#ef8201; line-height:37px; text-align:center
}
<!---->
.top3 {
    padding-top: 0.8rem;
    padding-bottom: .8rem;
	height: 583px;
    width: 47%;
    background-image: url(/skin/images/c11.png);
}

.top3>h3 {
    font-size: .42rem;
    text-align: center;
}

.top3>b {
    font-size: .3rem;
    color: #138F99;
    margin-top: .1rem;
    margin-bottom: .35rem;
    text-align: center;
}

.top3>div {
  
}

.top3>div>ul {
    width: 98%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.top3>div>ul>li {
    height: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.top3>div ul>li>div {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #257297;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top3>div ul>li:hover>div {
    opacity: 1;
}

.top3>div ul>li>div>i {
    width: .26rem;
    margin: 0 auto;
}

.top3>div ul>li>div>b {
    font-size: .18rem;
    margin: .2rem 0 .15rem 0;
    font-weight: bold;
    color: #fff;
}

.top3>div ul>li>div>p {
    line-height: 1.8;
    font-size: .14rem;
    color: #fff;
    text-align: center;
}

.top3>div span>img {
    width: 100%;
}

.top3>div span {
    width: .11rem;
    margin: 0 auto;
    margin-bottom: .3rem;
}

.top3>div u {
    padding: .15rem 0;
    font-size: .0rem;
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-weight: 700;
}

.top3>div>div {
    width: 98%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top3>div>div>span {
    margin-bottom: .15rem;
}

.top3>div>div>ul {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    opacity: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.top3>div>div:hover>ul{
    opacity: 1;
}
.top3>div>div>ul>li {
    position: absolute;
    cursor: pointer;
    top: 40%;
    left: 40%;
    opacity: 1;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
@keyframes zhuan {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
}
}
.top3>div>div>ul>li>img{
    animation-duration: 36s;
    animation-name: zhuan;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: zhuan;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}
.top3>div>div>ul>li>p {
    font-size: .16rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.top3>div>div>ul>li:nth-child(1) {
    opacity: 1;
    top: 14px;
    left: 14.52rem;
 }

.top3>div>div>ul>li:nth-child(2) {
    opacity: 1;
    top: 161px;
    left: 1.86rem;
}
.top3>div>div>ul>li:nth-child(3){
    top: 160px;
    right: 3.10%;
    left: auto;
}

.top3>div>div>ul>li:nth-child(4) {
   top: 399px;
    left: 18%;
    
}


.top3>div>div>ul>li:nth-child(5) {
   top: 399px;
    right: 16.2%;
    left: auto;
    
}
.top3>div>div>ul>li:nth-child(1):hover {
    background-image: url(/static/images/ye-1.png);
    top: 14px;
    left: 14.52rem;
    height: 141px;
    width: 141px;
}

.top3>div>div>ul>li:nth-child(2):hover {
    background-image: url(/static/images/ye-2.png);
    top: 161px;
    left: 1.86rem;
    height: 141px;
    width: 141px;
}

.top3>div>div>ul>li:nth-child(3):hover {
    background-image: url(/static/images/ye-3.png);
     top: 160px;
     right: 3.10%;
    height: 141px;
    width: 141px;
}

.top3>div>div>ul>li:nth-child(4):hover {
    background-image: url(/static/images/ye-4.png);
top: 399px;
    left: 18%;
    height: 141px;
    width: 141px;
}
.top3>div>div>ul>li:nth-child(5):hover {
    background-image: url(/static/images/ye-5.png);
 top: 399px;
    right: 16.2%;
    height: 141px;
    width: 141px;
}
.news .news-box .news-list li .info .title {
    line-height: 24px;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #ffffff;
}

.tab-links a {
    top: 1px;
    position: relative;
    display: block;
    float: left;
   
    text-decoration: none;
    color: #fff;
    background: #22add6;
    border-bottom-left-radius: 8px;
    margin-top: 0.5em;
    font-size: 15px;
    line-height: 43px;
    margin-right: 2px;
    transition: background .2s ease, line-height .2s ease, margin .2s ease;
    width: 10%;
    height: 43px;
    text-align: center;
}

.tab-links a.active {
    line-height: 2.5em;
    color: #fff;
    border: 0;
    background: #ef8201;
    line-height: 37px;
    text-align: center;
}

.tab-content .tab {
    display: none;
    padding: 20px;
 }

.tab-content .active-content {
    display: block;
}

<!---->
.news {
  margin-top: 0px; margin-bottom:0px;
  padding-bottom: 100px;
}

.common-title {
    text-align: right;
	padding-top: 100px;
}
.common-title .title {
font-size: 45px;
    line-height: 110%;
    font-weight: 600;
	color: #ffffff;
}
.common-title .text {
color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 400;
    text-transform: capitalize;
}
.news .news-box {
  margin-top: 20px;
height: 380px;
}

.news .news-box .news-hot {
  float: left;
  margin-right: 30px;
  width: 580px;

  box-sizing: border-box;
  transition: box-shadow 0.3s, border 0.3s, background-color 0.3s, color 0.3s,
    transform 0.3s;
}
.common-title .text img {
      margin-right: 10px;
    width: 15%;
    border-radius: 0px;
    height: 30px;
 }

.news .news-box .news-hot:hover {
  transform: translateY(-3px);
  border: none;
  box-sizing: border-box;
 
  transition: box-shadow 0.3s, border 0.3s, background-color 0.3s, color 0.3s,
    transform 0.3s;
}

.news .news-box .news-hot .pic {
padding: 5px;
    width: 96%;
    margin: 0 auto;
}

.news img {
  width: 100%;
  border-radius: 10px;
  height: 310px;
}

.news .news-box .news-hot .title {
  padding: 30px 30px 9px 30px;
  font-size: 22px;
  color: #404040;
  line-height: 28px;
}

.news .news-box .news-hot .desc {
  padding: 0 30px 30px 30px;
  line-height: 22px;
  color: #999;
}

.news .news-box .news-list {
  float: left;
  width: 590px;
  margin-top: 10px;
}

.news .news-box .news-list li {
    width: 590px;
    height: 90px;
    background-color: #fafafa26;
    margin-bottom: 15px;
    padding: 20px 20px 0px;
    box-sizing: border-box;
}

.news .news-box .news-list li:hover {
  transform: translateY(-3px);
  background-color: #22add6;
  transition: box-shadow 0.3s, border 0.3s, background-color 0.3s, color 0.3s,
    transform 0.3s;
}

.news .news-box .news-list li:hover .date .date-years,
.news .news-box .news-list li:hover .date .date-month,
.news .news-box .news-list li:hover .info .title a,
.news .news-box .news-list li:hover .info .desc {
  color: #fff;
}

.news .news-box .news-list li .date {
  float: left;
  width: 76px;
  text-align: right;
  margin-right: 20px;
}

.news .news-box .news-list li .date .date-years {
  font-size: 14px;
  color: #fff;
}

.news .news-box .news-list li .date .date-month {
  font-size: 24px;
  line-height: 38px;
  color: #fff;
  font-weight: bold;
}

.news .news-box .news-list li .info {
  float: left;
  width: 454px;
}

.news .news-box .news-list li .info .title {
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news .news-box .news-list li .info .title a {
 color: #fff;
}

.news .news-box .news-list li .info .desc {
  margin-top: 5px;
  font-size: 12px;
 color: #fff;
  line-height: 18px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

.common-bnt {
    height: 34px;
    font-size: 14px;
    width: 100%;
    /* margin: 0 auto; */
    margin-left: 0px;
    background-image: url(/skin/nn-2.png);
    background-repeat: no-repeat;
}

.common-bnt img {
width: 167px;
     height: 33px;
	 margin-top: 15px;
	 float: left;

}
.common-bnt span {
    margin-right: 6px;
}

.common-bnt h1 {
    color: #000000;
    font-size: 22px;
    margin-left: 35px;
    text-align: left;
    line-height: 120%;
   
}
.common-bnt p {
    color: #22add6;
	border-top: 1px solid #707070;
    margin-bottom: 20px;
    margin-left: 190px;
}






.common-bntt {
    height: 34px;
    font-size: 14px;
    width: 100%;
    /* margin: 0 auto; */
    margin-left: 0px;
    background-image: url(/skin/n-1.png);
    background-repeat: no-repeat;
}

.common-bntt img {
width: 167px;
     height: 33px;
	 margin-top: 15px;
	 float: left;

}
.common-bntt span {
    margin-right: 6px;
}

.common-bntt h1 {
    color: #ffffff;
    font-size: 22px;
    margin-left: 45px;
    text-align: left;
    line-height: 110%;
   
}
.common-bntt p {
    color: #22add6;
	border-top: 1px solid #ffffff;
    margin-bottom: 20px;
    margin-left: 190px;
}

<!---->
.fl {
    float: left;
}
.left-nav .itemm
{
	background: #efefef;
	padding-left: 10px;
	font-size: 14px;
	color: #cbcbcb;
}
.left-nav {
    width: 25%;
    margin-right: 8%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    /* border-bottom: 1px #e1e1e1 solid; */
}
.left-nav .item {
	display: none;

}

.left-nav h3 {
    padding: 0 22px;
    line-height: 58px;
    height: 58px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    /* font-weight: 400; */
    margin-bottom: 5px;
    border-bottom: none;
    background: #efefef url(../images/nlb1.png) no-repeat right 50%;
}

.left-nav h3:hover {
background: #28abd5;
color: #28abd5;
background: #efefef url(../images/nlb1.png) no-repeat right 50%;
}

.left-nav h3.on {
	background: #28abd5 url(../images/nlb2.png) no-repeat right 50%;
	color: #fff;
}

.left-nav .item li {
	height: 58px;
	line-height: 58px;
	background: #EF8201;
    margin-bottom: 5px;
}

.left-nav .item li a {
	display: block;
	padding-left: 10px;
	font-size: 14px;
	color: #fff;
	 font-weight: bold;
}



.left-nav .item li a:hover,
.left-nav .item li.on a {
	background: #dbecff;
	color: #005bc1;
}

.Ny_left {
    width: 23%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    float: left;
}

.Ny_right {
    width: 73.5%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    float: right;
}

/*产品分类*/
.cp_type {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}

.cp_type .hd {
    text-align: right;
    margin-bottom: 18px;
}

.cp_type .hd p {
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.cp_type .hd p:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: rgba(255,255,255,.25);
    float: right;
    margin-top: 18px;
}

.cp_type .hd span {
 background: #124b53;
    display: block;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
	font-weight: bold;
	padding-right: 15px;
}

.cp_type .bd {
   
    overflow: hidden;
    padding: 20px 0px;
}

.cp_type .bd ul {
    width: 100%;
    border-top: 0;
    overflow: hidden;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.cp_type .bd ul li {
    margin-bottom: 15px;
    background: #efefef ;
}

.cp_type .bd ul li:last-child {
    border: 0;
}

.cp_type .bd ul li.on {
}

.cp_type .bd ul li p {
    height: 58px;
    line-height: 58px;
   background: url(/skin/images/nlb1.png) center right no-repeat;
}

.cp_type .bd ul li p a {
    display: block;
    width: 80%;
    padding: 0 0 0 20px;
    overflow: hidden;
    line-height: 58px;
    color: #333;
    font-size: 17px;
    white-space: nowrap;
    text-overflow: ellipsis;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_type .bd ul li p span {
    display: block;
    width: 100%;
    height: 100%;
      
    cursor: pointer;
    float: left;
}

.cp_type .bd ul li div {
    display: none;
}

.cp_type .bd ul li div a {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #999;
    font-size: 15px;
    border-bottom: 1px solid #e9e9e9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 30px 0 40px;
    background: url(../images/jt2.png) no-repeat 25px 15px;
}

.cp_type .bd ul li div a.active {
    color: #124b53;
    background: url(../images/jt3.png) no-repeat 25px 15px;
}

.cp_type .bd ul li div a:last-child {
    border-bottom: 0;
}

.cp_type .bd ul li p:hover, .cp_type .bd ul li.on p {
    background: #28abd5 url(/skin/images/nlb2.png) center right no-repeat;
}

.cp_type .bd ul li p:hover a, .cp_type .bd ul li.on p a {
    color: #fff;
    font-weight: bold;
}

.cp_type .bd ul li p:hover span {
   
}

.cp_type .bd ul li.on p span {
   
}

.cp_type .bd ul li div a:hover {
    color: #fff;
    background: #F4A000 url(/skin/images/jt3.png) no-repeat 25px 15px;
}

.cp_type .ckgd {
    height: 40px;
    background: #124b53;
    text-align: center;
}

.cp_type .ckgd a {
    line-height: 40px;
    font-size: 15px;
    color: #fff;
}
@media (max-width: 750px) {
.abGsjj_main .abGsjj_img {
    margin-top: 15px;
    display: none;
}

  .breadcrumb-wrapper {
    padding: 110px 0;
   
}
.left-nav {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px #e1e1e1 solid;
}
}
.section {
    padding: 80px 0;
}

.about-1 {margin: 0;}
.about-1 .text {margin-top: 50px;text-align: justify;font-size: 16px;line-height: 2.8;}
.about-1 .text p {margin: 0;;}
.about-1 .in-total {margin-top: 50px;background: none;color: #333;}
.about-1 .in-total li {padding: 0;}

.about-2 {background-image: url(../images/xuanzebg.jpg);}
.about-2 .logo {margin-bottom: -80px;}
.about-2 .logo img {-webkit-animation: none;animation: none;}

.about-3 {margin: 0 auto;margin: 50px 0 0 -20px;}
.about-3 li {float: left;width: 25%;text-align: center;}
.about-3 li a {display: block;border: 1px solid #eaeaea;padding: 20px;margin: 20px 0 0 20px;}
.about-3 li h4 {font-size: 20px;margin: 0;font-weight: normal;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.about-3 li p {margin: 1px 0 0;height: 21px;overflow: hidden;}
.about-3 li a:hover {box-shadow: 0 0 30px #eeeeee;}

.about-3-more {margin-top: 40px;text-align: center;font-size: 0;}
.about-3-more a {display: inline-block;background-color: #e62022;color: #fff;border-radius: 50px;font-size: 22px;line-height: 45px;width: 400px;vertical-align: middle;margin: 0 20px;}
.about-3-more a:last-child {background-color: #000;}

.table-1 img {display: inline-block;vertical-align: middle;}
.table-1 table {width: 100%;border-collapse: collapse;background-color: #fff;font-size: 16px;}
.table-1 tr:nth-child(odd) {background-color: #eee;}
.table-1 th,.table-1 td {border: 1px solid #ddd;padding: 15px 20px;}
.table-1 th {text-align: center;font-weight: normal;font-size: 18px;color: #fff;}
.table-1 th:first-child {width: 180px;background-color: #474747;}
.table-1 th:nth-child(2) {background-color: #e62022;}
.table-1 th:last-child {background-color: #8e8e8e;}
.table-1 td:first-child {color: #888;}

.in-partone {margin-left: -30px;}
.in-partone li {float: left;width: 33%;}
.in-partone li .wrap {margin-left: 30px;text-align: center;background: url(../images/part_05.png) no-repeat center / cover;padding: 70px 0;color: #fff;}
.in-partone li h4 {margin: 0;font-weight: normal;font-size: 32px;}
.in-partone li a {display: block;margin: 30px auto 0;border: 1px #fff solid;border-radius: 6px;font-size: 18px;line-height: 35px;width: 140px;color: #fff;-webkit-transition: all 0.5s;transition: all 0.5s;}
.in-partone li a:hover {background-color: #fff;color: #333;}
.in-partone li:last-child .wrap {background-image: url(../images/part_07.png);}


.in-desc {height: 442px;overflow: hidden;background: url(/skin/images/a-1.jpg) no-repeat center / cover;color: #fff;}
.in-desc .logo {float: left;width: 500px;text-align: left;}
.in-desc .logo img {-webkit-animation: 2s scale linear infinite;animation: 2s scale linear infinite;}
.in-desc .text {margin-left: 500px;}
.in-desc .text h4 {margin: 0;font-size: 30px;}
.in-desc .text h5 {font-size: 18px;margin: 20px 0 10px;}
.in-desc .text p {margin: 0;font-size: 16px;line-height: 1.8;text-align: justify;}
.in-desc .text a {display: inline-block;background: url(../images/mbtxindex.png) no-repeat 0 0;width: 236px;line-height: 42px;padding-right: 40px;text-align: center;font-size: 18px;margin: 30px 30px 0 0;}

.in-partners {text-align: center;font-size: 0;margin: -15px 0 0 -15px;}
.in-partners li {display: inline-block;vertical-align: middle;}
.in-partners li a {display: block;margin: 15px 0 0 15px;}
.in-partners li .img-center {height: 65px;line-height: 65px;}

.in-process {}
.in-process li {float: left;width: 16.666666%;}
.in-process li a {display: block;text-align: center;}
.in-process li .img-center {height: 60px;line-height: 60px;-webkit-transition: all 0.5s;transition: all 0.5s;}
.in-process li h4 {margin: 15px 0 0;font-size: 18px;font-weight: normal;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.in-process li p {margin: 10px 0 0;font-size: 12px;font-weight: normal;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;color: #888;}
.in-process li a:hover .img-center {-webkit-transform: rotateY(360deg);transform: rotateY(360deg);}

.in-dynamic {margin: -30px 0 0 -30px;}
.in-dynamic li {float: left;width: 33.333333%;}
.in-dynamic li a {display: block;background-color: #fff;-webkit-transition: all 0.5s;transition: all 0.5s;padding: 30px;margin: 30px 0 0 30px;}
.in-dynamic li h4 {margin: 0;font-weight: normal;font-size: 18px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.in-dynamic li p {margin: 15px 0 0;color: #888;height: 40px;overflow: hidden;}
.in-dynamic li a:hover {box-shadow: 0px 5px 20px rgba(0,0,0,0.2);}

.more-big {margin: 40px auto 0;display: block;text-align: center;border: 1px solid #dbdbdb;line-height: 48px;width: 150px;-webkit-transition: all 0.5s;transition: all 0.5s;}
.more-big:hover {color: #fff;background-color: #e62022;border-color: #e62022;}

.in-partone {margin-left: -30px;}
.in-partone li {float: left; width: 100%;}
.in-partone li .wrap {margin-left: 30px;text-align: center;background: url(../images/part_05.png) no-repeat center / cover;padding: 10px 0;color: #fff;}
.in-partone li h4 {margin: 0;font-weight: normal;font-size: 32px;}
.in-partone li a {display: block;margin: 30px auto 0;border: 1px #fff solid;border-radius: 6px;font-size: 18px;line-height: 35px;width: 140px;color: #fff;-webkit-transition: all 0.5s;transition: all 0.5s;}
.in-partone li a:hover {background-color: #fff;color: #333;}
.in-partone li:last-child .wrap {background-image: url(../images/part_07.png);}

.in-ready {text-align: center;}
.in-ready h4 {margin-left: 15px;margin: 0;font-weight: normal;font-size: 24px;text-align: left;}
.in-ready .btnn { font-size: 24px; color: #b1a28e;  width: 100%; text-align: left;}
 <!---->
 /*NyAboutus 开始*/
.NyAboutus { width: 100%; height: auto; min-height: 320px; margin: 0 auto; padding: 0; }
.NyTitle { width: 100%; height: auto; margin: 0 auto 40px; padding: 0; }
.NyTitle p { width: 100%; height: 40px; overflow: hidden; line-height: 40px; color: #333; font-size: 36px; font-weight: bold; text-align: center; margin: 0 auto 10px; padding: 0; }
.NyTitle i { display: block; width: 143px; height: 13px; overflow: hidden; margin: 0 auto; padding: 0; background: url(../images/line04.png) center center no-repeat; }
.NyTitle1 p { color: #fff; }
.NyAboutus .NyAboutus_Profile { width: 100%; height: auto; margin: 0 auto; padding: 80px 0; background-color: #f9f9f9;  }
.abGsjj_main { width: 1400px; overflow: hidden;margin: 60px auto; padding: 0; }
.abGsjj_main .abGsjj_img { width: 30%; overflow: hidden; margin: 0; padding: 0; float: left; }
.abGsjj_img img { display: block; width: auto!important; height: auto!important; max-width: 100%; margin: 0 auto; padding: 0; }
.abGsjj_main .abGsjj_con { width: 66%; overflow: hidden; margin: 0; padding: 0; float: right; }
.abGsjj_con .abGsjj_name {text-align: right; width: 100%; overflow: hidden; margin: 0 auto; padding: 0; }
.abGsjj_name p { width: 100%; overflow: hidden; line-height: 40px; color: #333; font-size: 30px; margin: 0 auto; padding: 0; }
.abGsjj_name i { display: block; width: 80px; height: 3px; overflow: hidden; margin: 10px 0 30px; padding: 0; background-color: #4789d4; }
.abGsjj_con .abGsjj_ms { width: 100%; margin: 0 auto; padding: 0 20px 0 0;  }
.abGsjj_con .abGsjj_ms::-webkit-scrollbar {
width:3px;
}
.abGsjj_ms p { width: 100%; overflow: hidden; line-height: 30px; color: #666; font-size: 16px; text-align: justify; word-break: break-all; margin: 0 auto; padding: 0; }
.abGsjj_ms p span, .abGsjj_ms p em { color: #666!important; font-family: Arial, \5FAE\8F6F\96C5\9ED1, Helvetica, sans-serif!important; font-size: 15px!important; font-style: normal!important; font-weight: normal!important; }
.abGsjj_ms p br { display: none; }
.abGsjj_con ul { margin: 45px 0 0; }
.abGsjj_con ul li { width: 33.333333%; overflow: hidden; margin: 0; padding: 0 10px; float: left; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box; }
.abGsjj_con ul li p { width: 100%; height: 60px; overflow: hidden; line-height: 60px; color: #4789d4; font-size: 56px; font-weight: bold; text-align: center; margin: 0 auto; padding: 0; font-family: Arial, Helvetica, sans-serif; }
.abGsjj_con ul li span { display: block; width: 100%; overflow: hidden; line-height: 30px; color: #666; font-size: 16px; text-align: center; margin: 0 auto; padding: 0; }
.NyAboutus .NyAboutus_Culture { width: 100%; height: auto; margin: 0 auto; padding: 80px 0; background: #313131 url(../images/nyabbg1.png) center center no-repeat; background-size: cover;  }
.NyAboutus_Culture .NyAbCulture_Main { width: 1400px; height: auto; margin: 0 auto; padding: 0; }
.NyAbCulture_Main ul li { width: 23.5%; height: auto; margin: 0 2% 0 0; padding: 60px 40px; background-color: #fff; float: left; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;  }
.NyAbCulture_Main ul li:nth-child(4) { margin: 0; }
.NyAbCulture_Main ul li:hover { background-color: #4789d4; }
.NyAbCulture_Main ul li i { display: block; width: 90px; height: 90px; overflow: hidden; margin: 0 auto 20px; padding: 0; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; }
.NyAbCulture_Main ul li i.AbIco1 { background: url(../images/abico1.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li i.AbIco2 { background: url(../images/abico2.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li i.AbIco3 { background: url(../images/abico3.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li i.AbIco4 { background: url(../images/abico4.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li:hover i.AbIco1 { background: url(../images/abico01.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li:hover i.AbIco2 { background: url(../images/abico02.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li:hover i.AbIco3 { background: url(../images/abico03.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li:hover i.AbIco4 { background: url(../images/abico04.png) center center no-repeat; background-size: 100% 100%; }
.NyAbCulture_Main ul li p { width: 100%; height: auto; line-height: 30px; color: #333; font-size: 24px; text-align: center; margin: 0 auto; padding: 0; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; }
.NyAbCulture_Main ul li:hover p { color: #fff; }
.NyAbCulture_Main ul li em { display: block; width: 50px; height: 2px; margin: 10px auto 20px; padding: 0; background: url(../images/line05.png) center center no-repeat; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; }
.NyAbCulture_Main ul li:hover em { background: url(../images/line06.png) center center no-repeat; }
.NyAbCulture_Main ul li span { display: block; width: 100%; height: 50px; overflow: hidden; line-height: 25px; color: #999; font-size: 15px; text-align: center; margin: 0 auto; padding: 0; display: -webkit-box; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; }
.NyAbCulture_Main ul li:hover span { color: rgba(255,255,255,0.65); }
.NyAboutus .NyAboutus_Honor { width: 100%; height: auto; margin: 0 auto; padding: 80px 0; background-color: #f9f9f9;  }
.NyAboutus_Honor .NyAboutusHonor_Main { width:100%; height: auto; margin: 0 auto; padding: 0;  }
.NyAboutusHonor_Main .NyAboutusHonor_List { width: 99%; height: auto; min-height: 240px; margin: 0 0 0 -90px; padding: 0 90px; position: relative; overflow: hidden;box-sizing: content-box;-moz-box-sizing: content-box;-webkit-box-sizing: content-box; }
.NyAboutusHonor_List .swiper-container04 { width: 100%; height: 100%; padding: 0 35px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box; overflow: hidden; position: relative; }
.NyAboutusHonor_List .swiper-slide { text-align: center; background: #fff; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; transition: 300ms; transform: scale(0.8); position: relative; box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.NyAboutusHonor_List .swiper-slide img { display: block; max-width: 90%; max-height: 90%; margin: auto; padding: 0;  }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img { height: 460px; width: 100%; position: relative; }
.NyAboutusHonor_List .swiper-slide a.NyAboutusHonor_Name { width: 100%; height: 48px; overflow: hidden; line-height: 48px; color: #fff; font-size: 18px; text-align: center; text-overflow: ellipsis; white-space: nowrap; margin: 0; padding: 0 20px; background-color: rgba(71, 137, 212,0.88); position: absolute; left: 0; bottom: 0;  }
.NyAboutusHonor_List .swiper-slide-active, .NyAboutusHonor_List .swiper-slide-duplicate-active { transform: scale(1); }
.NyAboutusHonor_List .swiper-button-prev, .NyAboutusHonor_List .swiper-button-next { width: 40px!important; height: 40px!important; margin: -20px 0 0!important; border-radius: 50%; position: absolute; top: 50%!important; bottom: 0!important; opacity: 1; cursor: pointer; }
.NyAboutusHonor_List .swiper-button-prev { background: url(/static/images/prev01.png) center center no-repeat; left: 0; }
.NyAboutusHonor_List .swiper-button-next { background: url(/static/images/next01.png) center center no-repeat; right: 0; }
.NyAboutusHonor_List .swiper-button-prev:hover { background: url(/static/images/prev02.png) center center no-repeat; }
.NyAboutusHonor_List .swiper-button-next:hover { background: url(/static/images/next02.png) center center no-repeat; }
 @media (max-width:1680px) {
}
@media (max-width:1600px) {

}
@media (max-width:1560px) {
}
@media (max-width:1440px) {
.NyAboutus_Profile { padding: 60px; }
.abGsjj_main { width: 100%; }
.NyAboutus_Culture { padding: 60px; }
.NyAboutus_Culture .NyAbCulture_Main { width: 100%; }
.NyAbCulture_Main ul li { padding: 60px 30px; }
.NyAboutus_Honor { padding: 60px; }
.NyAboutus_Honor .NyAboutusHonor_Main { width: 100%; }
.NyAboutusHonor_Main .NyAboutusHonor_List { margin: 0 0 0 -60px; padding: 0 60px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:420px;}
.abGsjj_con ul li span{ font-size:15px;}
}
@media (max-width:1366px) {
.abGsjj_con .abGsjj_ms { height: 270px; }
.abGsjj_con ul li p { font-size: 48px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:400px;}
}
@media (max-width:1280px) {
.abGsjj_con ul { margin: 35px 0 0; }
.NyAbCulture_Main ul li { padding: 50px 25px; }
}
@media (max-width:1200px) {
.NyAboutus .NyAboutus_Profile { padding: 60px 40px; }
.abGsjj_con .abGsjj_ms { height: 240px; }
.abGsjj_con ul li p { font-size: 44px; }
.NyAboutus .NyAboutus_Culture { padding: 60px 40px; }
.NyAbCulture_Main ul li { padding: 40px 20px; }
.NyAbCulture_Main ul li span { height: 48px; line-height: 24px; font-size: 14px; }
.NyAboutus .NyAboutus_Honor { padding: 60px 40px; }
.NyAboutusHonor_Main .NyAboutusHonor_List { min-height: 180px; margin: 0 0 0 -40px; padding: 0 40px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:380px;}
}
@media (max-width:1080px) {
.abGsjj_name p { font-size: 24px; }
.abGsjj_name i { margin: 10px 0 20px; }
.abGsjj_con ul { margin: 25px 0 0; }
.abGsjj_con ul li p { font-size: 40px; }
.abGsjj_con .abGsjj_ms { height: 175px; }
.NyAbCulture_Main ul li { padding: 30px 20px; }
.NyAbCulture_Main ul li i { width: 80px; height: 80px; }
.NyAbCulture_Main ul li p { font-size: 22px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:360px;}

}
@media (max-width:1024px) {
.NyAboutus .NyAboutus_Profile { padding: 40px; }
.NyAboutus .NyAboutus_Culture { padding: 40px; }
.NyAbCulture_Main ul li { padding: 30px 15px; }
.NyAbCulture_Main ul li i { width: 70px; height: 70px; }
.NyAbCulture_Main ul li p { font-size: 20px; }
.NyAbCulture_Main ul li span { height: 44px; line-height: 22px; }
.NyAboutus .NyAboutus_Honor { padding: 40px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:320px;}
.abGsjj_con ul li span{ font-size:14px;}
}
@media (max-width:880px) {
.NyAboutus .NyAboutus_Profile { padding: 40px 20px; }
.abGsjj_main .abGsjj_con { width: 100%; }
.abGsjj_main .abGsjj_img { width: 100%; margin-top: 25px; }
.abGsjj_con .abGsjj_ms { height: auto; overflow:inherit; padding:0; }
.NyAboutus .NyAboutus_Culture { padding: 40px 20px; }
.NyAbCulture_Main ul li { width: 48.5%; height: auto; margin: 0 3% 12px 0; padding: 40px 12px 20px; }
.NyAbCulture_Main ul li:nth-child(4) { margin: 0 3% 12px 0; }
.NyAbCulture_Main ul li:nth-child(2n+2) { margin: 0 0 12px 0; }
.NyAbCulture_Main ul li i { width: 60px; height: 60px; }
.NyAbCulture_Main ul li p { font-size: 18px; }
.NyAbCulture_Main ul li span { height: 60px; line-height: 20px; -webkit-line-clamp: 3; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:280px;}
.NyAboutusHonor_List .swiper-slide-active, .NyAboutusHonor_List .swiper-slide-duplicate-active { transform: scale(1.2); }
.NyAboutusHonor_List .swiper-slide-active a.NyAboutusHonor_Name,.NyAboutusHonor_List .swiper-slide-duplicate-active a.NyAboutusHonor_Name{ font-size:14px; margin-bottom:22px; height:35px; line-height:35px;}

}
@media (max-width:767px) {
.NyAboutus .NyAboutus_Profile { padding: 20px 12px; }
.abGsjj_main .abGsjj_img { margin-top: 15px; }
.abGsjj_name p { font-size: 22px; }
.abGsjj_name i { margin: 5px 0 15px; }
.abGsjj_ms p { font-size: 15px; }
.abGsjj_con ul { margin: 15px 0 0; display:none; }
.abGsjj_con ul li p { font-size: 35px; }
.abGsjj_con ul li span { font-size: 15px; line-height: 25px; }
.NyAboutus .NyAboutus_Culture { padding: 20px 12px; }
.NyAboutus .NyAboutus_Honor { padding: 20px 12px; }
.NyAboutusHonor_Main .NyAboutusHonor_List { margin: 0 auto; padding: 0; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:240px;}
.NyAboutusHonor_List .swiper-slide-active, .NyAboutusHonor_List .swiper-slide-duplicate-active { transform: scale(1); }
.NyAboutusHonor_List .swiper-slide-active a.NyAboutusHonor_Name,.NyAboutusHonor_List .swiper-slide-duplicate-active a.NyAboutusHonor_Name{ font-size:14px; margin-bottom:0; height:35px; line-height:35px;}
}
@media (max-width:375px) {

}
@media (max-width:320px) {
.NyAbCulture_Main ul li { width: 100%; height: auto; margin: 0 auto 12px; padding: 20px 12px; }
.NyAbCulture_Main ul li:nth-child(2n+2), .NyAbCulture_Main ul li:nth-child(4) { margin: 0 auto 12px; }
.NyAbCulture_Main ul li span { height: 40px; line-height: 20px; -webkit-line-clamp: 2; }

}
/*NyAboutus 结束*/
/*ab_Title1 开始*/
.ab_Title1 {    border-top: 1px solid #616768; width: 100%; overflow: hidden; margin: 0 auto 10px; padding: 0; margin-top: 10px;}
.ab_Title1 p {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #22ADD6;
    font-size: 26px;
    font-weight: bold;
    text-align: left;
    margin: 0 auto;
    padding: 0;
}
.ab_Title2 p { color: #fff; }
.ab_Title1 span { display:none;  width: 144px; height: 13px; margin: 17px auto 0; padding: 0; background: url(../images/line01.png) center center repeat-x; }
.ab_Title1 span i { display: block; width: 13px; height: 13px; margin: 0 auto; padding: 0; background-color: #fe5a0e; }

 @media (max-width:1680px) {
}
@media (max-width:1600px) {
}
@media (max-width:1560px) {
}
@media (max-width:1440px) {
.ab_Title1 { margin: 0 auto 30px; }
.ab_Title1 p { height: 36px; line-height: 36px; font-size: 32px; }
.ab_Title1 span { width: 128px; height: 9px; margin: 15px auto 0; }
.ab_Title1 span i { width: 9px; height: 9px; }
}
@media (max-width:1366px) {
}
@media (max-width:1280px) {
.ab_Title1 p { height: 32px; line-height: 32px; font-size: 30px; }
.ab_Title1 span { width: 120px; }
}
@media (max-width:1200px) {
.ab_Title1 p { font-size: 28px; }
.abIdx_Products { padding: 60px 40px; }
.abIdxPro_List ul li .abIdxPro_Img { height: 172px; }
}
@media (max-width:1080px) {
.ab_Title1 p { height: 30px; line-height: 30px; font-size: 26px; }
.ab_Title1 span { margin: 10px auto 0; }
}
@media (max-width:1024px) {
}
@media (max-width:800px) {
}
@media (max-width:767px) {
.ab_Title1 { margin: 0 auto 20px; }
.ab_Title1 p { height: 30px; line-height: 30px; font-size: 24px; }
.ab_Title1 span { width: 96px; height: 5px; margin: 5px auto 0; }
.ab_Title1 span i { width: 5px; height: 5px; }
}
@media (max-width:375px) {
}
@media (max-width:320px) {
.ab_Title1 p { font-size: 22px; }
}
/*ly_Title1 结束*/
/*******************************å…³äºŽæˆ‘ä»¬******************/
.ab_ss {
    margin-top: .8rem;
}

.ab_ss>li {
    width: 20%;
}

.ab_ss>li>b {
    font-size: .6rem;
    color: #239099;
    font-weight: bold;
    text-align: center;
}

.ab_ss>li>p {
    font-size: .18rem;
    margin-top: .3rem;
    text-align: center;
}

.ab_lb1 {
    position: relative;
}

.ab_lb1 .swiper-slide {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ab_lb1 .swiper-slide>span {
    width: 49%;
}

.ab_lb1 .swiper-slide>div {
    width: 49%;
    padding-top: .47rem;
}

.ab_lb1 .swiper-slide>div>b {
    margin-bottom: .4rem;
    font-size: .24rem;
    color: #239099;
    font-weight: bold;
}

.ab_lb1 .swiper-slide>div>p {
    font-size: .18rem;
    text-align: justify;
    line-height: 1.8;
}

.ab_lb1_an {
    padding: 0 1.5rem;
    position: absolute;
    top: 51%;
    left: 0%;
    width: 100%;
    z-index: 25;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ab_lb1_an>.lb_lf {}

.ab_lb1_an>.lb_rt {}

.ab_lb1_an>.lb_rt,
.ab_lb1_an>.lb_lf {
    position: relative;
    width: .48rem;
    height: .48rem;
    cursor: pointer;
}

.ab_lb1_an>.lb_rt>img,
.ab_lb1_an>.lb_lf>img {
    position: relative;
    opacity: 1;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.ab_lb1_an>.lb_rt>img:last-child,
.ab_lb1_an>.lb_lf>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.ab_lb1_an>.lb_rt:hover>img,
.ab_lb1_an>.lb_lf:hover>img {
    opacity: 0;
}

.ab_lb1_an>.lb_rt:hover>img:last-child,
.ab_lb1_an>.lb_lf:hover>img:last-child {
    opacity: 1;
}

.ab_lb2 {
    position: relative;
    /* padding-top: .1rem; */
    padding-bottom: .8rem;
}

.ab_lb2::after {
    position: absolute;
    top: .05rem;
    border-top: 1px dashed #239099;
    width: 100%;
    left: 0;
}

.nr1.bdn {
    border-bottom: none;
}

.ab_lb2 .swiper-container {}
.ab_lb2 .swiper-wrapper {
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
}

.ab_lb2 .swiper-slide {
    font-size: .18rem;
    padding-top: .25rem;
    position: relative;
    transition: .5s;
    cursor: pointer;
    text-align: center;
}

.ab_lb2 .swiper-slide::before {
    width: .1rem;
    height: .1rem;
    top: 0rem;
    left: 48%;
    background: #FFFFFF;
    border: 1px solid #239099;
    border-radius: 50%;
    background-color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    text-align: center;
}

/* .ab_lb2 .swiper-slide-active, */
.ab_lb2 .swiper-slide.on {
    color: #239099;
}

/* .ab_lb2 .swiper-slide-active::before, */
.ab_lb2 .swiper-slide.on::before {
    background-color: #239099;
}

.ab_qywh {
    margin-top: .6rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ab_qywh>li {
    width: 25%;
}

.ab_qywh>li>span {
    width: .8rem;
    margin: 0 auto;
}

.ab_qywh>li>b {
    font-size: .24rem;
    margin: .8rem 0 .4rem 0;
    text-align: center;
}

.ab_qywh>li>p {
    font-size: .18rem;
    text-align: center;
    line-height: 1.5;
    padding: 0 5%;
}

.ab_shzr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ab_shzr>span {
    width: 49%;
}

.ab_shzr>div {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ab_shzr>div>p {
    font-size: .18rem;
    line-height: 1.8;
    text-align: justify;
}

@media screen and (max-width:1460px) {

    .ab_lb1 .swiper-slide>div>p,
    .ab_lb2 .swiper-slide,
    .ab_qywh>li>p,
    .ab_shzr>div>p,
    .ab_ss>li>p {
        font-size: 16px;
    }

    .ab_lb1 .swiper-slide>div>b {
        font-size: 20px;
    }
}

@media screen and (max-width:1366px) {

    .ab_lb1 .swiper-slide>div>p,
    .ab_lb2 .swiper-slide,
    .ab_qywh>li>p,
    .ab_shzr>div>p,
    .ab_ss>li>p {
        font-size: 14px;
    }

    .ab_lb1 .swiper-slide>div>b,
    .dh>div>a.on,
    .dh>div>p.on,
    .ab_qywh>li>b {
        font-size: 18px;
    }
}

@media screen and (max-width:1034px) {

    .ab_lb1_an>.lb_rt,
    .ab_lb1_an>.lb_lf {
        width: 35px;
        height: 35px;
    }

    .ab_lb2 .swiper-slide::before {
        width: 6px;
        height: 6px;
    }

    .ab_lb2::after {
        top: 3px;
    }
}

@media screen and (max-width:778px) {

    .ab_shzr>span,
    .ab_shzr>div {
        width: 100%;
    }

    .ab_shzr>span {
        margin-bottom: .5rem;
    }
}

@media screen and (max-width:550px) {

    .ab_lb1 .swiper-slide>span{
        width: 50%;
        margin: 0 auto;
    }
    .ab_lb1 .swiper-slide>div {
        width: 100%;
    }

    .ab_lb1_an {
        position: relative;
        top: auto;
        margin-top: 15px;
        padding: 0 37%;
    }

    .ab_lb1_an>.lb_rt,
    .ab_lb1_an>.lb_lf {
        width: 25px;
        height: 25px;
    }

    .ab_lb2 .swiper-slide {
        padding-top: 15px;
    }

    .ab_qywh>li {
        width: 50%;
        margin-bottom: 15px;
    }

  }
  
  .nr1.bdn {
    border-bottom: none;
}
.nr1 {
    padding-top: .5rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid #DBDBDB;
}

.bt1 {
    font-size: .24rem;
    padding: .12rem .26rem;
    margin-bottom: .4rem;
    display: table;
    color: #EDF5F7;
    background: linear-gradient(90deg, #09458C, #2571B7);
}

.nr1>p {
    font-size: .18rem;
    text-align: justify;
    line-height: 1.8;
}

.lf_dh {
    position: fixed;
    left: .5rem;
    bottom: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}


/***关于我们***/
.about{ position: relative;     height: auto; background-color: #f2f2f2;}
.about .wrap{ display: flex; position: relative; z-index:1; background-color: #f2f2f2;}
.about .wrap .slide{ width:55%;     height: auto; }
.about .wrap .slide .swiper-slide img{display: block; width:100%; height:100%; object-fit: cover;}
.about .wrap .slide .slide-text{ height:113px; width:100%; color:#fff; flex-direction: column; align-items:flex-start; padding-left:27px;  background:#0157a9; position: absolute; left:0; bottom:0; z-index:1; }
.about .wrap .slide .slide-text h1{ font-size:24px; padding-bottom:12px;}
.about .wrap .slide .slide-text .tel{ font-size:24px; font-weight: bold;}
.about .wrap .slide .slide-text .tel img{margin-right:14px;}
.about .wrap .slide .swiper-pagination{bottom:1px; text-align: center; padding-right:13px;}
.about .wrap .slide .swiper-pagination-bullet{ width:15px; height:15px; background:none; border:2px solid #6ACAF2; margin:0 7px; opacity:1; cursor:pointer;}
.about .wrap .slide .swiper-pagination-bullet.swiper-pagination-bullet-active{ opacity:1; background:#AAE0F8;}

.about .abg{height:359px; position: absolute; background:#f4f5f9; width:100%; bottom:0;}
.about .wrap .about-txt{ width:50%; height:720px; position: relative;}
.about .wrap .about-txt .info{ height:360px; padding-left:59px;}
.about .wrap .about-txt .info h1{font-size:24px; color:#0157a9;}
.about .wrap .about-txt .info .text{ height:180px; overflow: hidden; color:#555; font-size:16px; line-height:35px; margin-top:30px;}
.more a{ display: flex; justify-content: center; align-items:center; font-size:14px; width: 175px; height:42px; background:#0157a9; color:#fff; margin-top:12px;}
.more a img{margin-left:33px;}
.about-num{ width:100%; height:152px; position: absolute; bottom:97px; padding-left:60px; display: flex;}
.about-num li{ padding-left:25px; display:flex; flex-direction: column; justify-content:space-between; flex:1; height:152px; border-left:1px solid #ddd; padding-left:25px;}
.about-num li .p1 span{ position: relative;}
.about-num li .p1 b{ font-family: HELVETICANEUELTPRO-THEX; font-size:44px; color:#444;}
.about-num li .p1 em{ font-size:30px; color:#888888; position: absolute; top:-35px; left:105%;}
.about-num li:nth-child(1) .p1 em{ font-size:18px; top:-24px;}
.about-num li .p2 { font-size:16px; color:#888888;}




.f_30 {
    font-size: 30px;
}
.ab4{text-align: center; color: #999;}

.ab4 .tt {
    color: #22ADD6;
    padding-top: 68px;
    font-size: 48px;
    font-weight: bold;
}

.ab4 .en{margin: 14px 0 46px;}

.ab4 .dl1{position: relative;padding: 0 0%;height: 160px;}

.ab4 .dl1 dt{position: absolute;width: 100%; height: 1px;background: #999;top:40px ;left: 0;}

.ab4 .dl1 dt s{display: block;width: 0%;height: 1px;background: #EC6D00;top: 0;left: 0;}

.ab4 .dl1 dd{width: 11%;float: left;text-align: center;position: relative;z-index: 3;cursor: pointer;}

.ab4 .dl1 dd .yuan{width: 12px;height: 12px;background: #999;border-radius: 50%;margin: 14px auto 30px;position: relative;}

.ab4 .dl1 dd .yuan s{display: block;width: 20px;height: 20px;border: 1px solid #EC6D00;position: absolute;top: 50%;left: 50%;margin-left: -10px;margin-top: -10px;border-radius: 50%;opacity: 0;}


.ab4 .dl1.act0 dt s{width: 11%;}

.ab4 .dl1.act0 dd:nth-child(1) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act0 dd:nth-child(1) .yuan s{opacity: 1;}

.ab4 .dl1.act0 dd:nth-child(1) .jd,.ab4 .dl1.act0 dd:nth-child(1) .year{color: #EC6D00;}


.ab4 .dl1.act1 dt s{width: 22%;}

.ab4 .dl1.act1 dd:nth-child(1) 
.yuan,.ab4 .dl1.act1 dd:nth-child(2) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act1 dd:nth-child(2) .yuan s{opacity: 1;}

.ab4 .dl1.act1 dd:nth-child(2) .jd,.ab4 .dl1.act1 dd:nth-child(2) .year{color: #EC6D00;}


.ab4 .dl1.act2 dt s{width: 32%;}

.ab4 .dl1.act2 dd:nth-child(1) 
.yuan,.ab4 .dl1.act2 dd:nth-child(2) 
.yuan,.ab4 .dl1.act2 dd:nth-child(3) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act2 dd:nth-child(3) .yuan s{opacity: 1;}

.ab4 .dl1.act2 dd:nth-child(3) .jd,.ab4 .dl1.act2 dd:nth-child(3) .year{color: #EC6D00;}


.ab4 .dl1.act3 dt s{width: 43%;}

.ab4 .dl1.act3 dd:nth-child(1) 
.yuan,.ab4 .dl1.act3 dd:nth-child(2) 
.yuan,.ab4 .dl1.act3 dd:nth-child(3) 
.yuan,.ab4 .dl1.act3 dd:nth-child(4) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act3 dd:nth-child(4) .yuan s{opacity: 1;}

.ab4 .dl1.act3 dd:nth-child(4) .jd,.ab4 .dl1.act3 dd:nth-child(4) .year{color: #EC6D00;}


.ab4 .dl1.act4 dt s{width: 54%;}

.ab4 .dl1.act4 dd:nth-child(1) 
.yuan,.ab4 .dl1.act4 dd:nth-child(2) 
.yuan,.ab4 .dl1.act4 dd:nth-child(3) 
.yuan,.ab4 .dl1.act4 dd:nth-child(4) 
.yuan,.ab4 .dl1.act4 dd:nth-child(5) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act4 dd:nth-child(5) .yuan s{opacity: 1;}

.ab4 .dl1.act4 dd:nth-child(5) .jd,.ab4 .dl1.act4 dd:nth-child(5) .year{color: #EC6D00;}

.ab4 .dl1.act5 dt s{width: 65%;}

.ab4 .dl1.act5 dd:nth-child(1) 
.yuan,.ab4 .dl1.act5 dd:nth-child(2) 
.yuan,.ab4 .dl1.act5 dd:nth-child(3) 
.yuan,.ab4 .dl1.act5 dd:nth-child(4) 
.yuan,.ab4 .dl1.act5 dd:nth-child(5) 
.yuan,.ab4 .dl1.act5 dd:nth-child(6) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act5 dd:nth-child(6) .yuan s{opacity: 1;}

.ab4 .dl1.act5 dd:nth-child(6) .jd,.ab4 .dl1.act5 dd:nth-child(6) .year{color: #EC6D00;}


.ab4 .dl1.act6 dt s{width: 76%;}

.ab4 .dl1.act6 dd:nth-child(1) 
.yuan,.ab4 .dl1.act6 dd:nth-child(2) 
.yuan,.ab4 .dl1.act6 dd:nth-child(3) 
.yuan,.ab4 .dl1.act6 dd:nth-child(4) 
.yuan,.ab4 .dl1.act6 dd:nth-child(5) 
.yuan,.ab4 .dl1.act6 dd:nth-child(6) 
.yuan,.ab4 .dl1.act6 dd:nth-child(7) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act6 dd:nth-child(7) .yuan s{opacity: 1;}

.ab4 .dl1.act6 dd:nth-child(7) .jd,.ab4 .dl1.act6 dd:nth-child(7) .year{color: #EC6D00;}





.ab4 .dl1.act7 dt s{width: 87%;}

.ab4 .dl1.act7 dd:nth-child(1) 
.yuan,.ab4 .dl1.act7 dd:nth-child(2) 
.yuan,.ab4 .dl1.act7 dd:nth-child(3) 
.yuan,.ab4 .dl1.act7 dd:nth-child(4) 
.yuan,.ab4 .dl1.act7 dd:nth-child(5) 
.yuan,.ab4 .dl1.act7 dd:nth-child(6) 
.yuan,.ab4 .dl1.act7 dd:nth-child(7) 
.yuan,.ab4 .dl1.act7 dd:nth-child(8) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act7 dd:nth-child(8) .yuan s{opacity: 1;}

.ab4 .dl1.act7 dd:nth-child(8) .jd,.ab4 .dl1.act7 dd:nth-child(8) .year{color: #EC6D00;}



.ab4 .dl1.act8 dt s{width: 100%;}

.ab4 .dl1.act8 dd:nth-child(1) 
.yuan,.ab4 .dl1.act8 dd:nth-child(2) 
.yuan,.ab4 .dl1.act8 dd:nth-child(3) 
.yuan,.ab4 .dl1.act8 dd:nth-child(4) 
.yuan,.ab4 .dl1.act8 dd:nth-child(5) 
.yuan,.ab4 .dl1.act8 dd:nth-child(6) 
.yuan,.ab4 .dl1.act8 dd:nth-child(7) 
.yuan,.ab4 .dl1.act8 dd:nth-child(8) 
.yuan,.ab4 .dl1.act8 dd:nth-child(9) 
.yuan{background: #EC6D00;}

.ab4 .dl1.act8 dd:nth-child(9) .yuan s{opacity: 1;}

.ab4 .dl1.act8 dd:nth-child(9) .jd,.ab4 .dl1.act8 dd:nth-child(9) .year{color: #EC6D00;}









.ab4 .ul1 {
    width: 80%;
    height: 500px;
    margin: 50px 0;
    position: relative;
    margin: 0 auto;
}

.ab4 .ul1 li{display: none;width: 100%;height: 100%;}

.ab4 .ul1 li:nth-child(1){display: block;}

.ab4 .ul1 li .img{width: 41%;overflow: hidden; position: absolute;right: 0;z-index: 2;top: 70%;transform: translateY(-50%);-webkit-transform: translateY(-50%);}

.ab4 .ul1 li .img img{display: block;width: 100%;     height: 310px;}

.ab4 .ul1 li .llt{width: 94%;height: 100%;text-align: justify;position: relative; background: url(/static/image/bb.png) center no-repeat;background-size: cover;padding: 60px 25% 60px 60px;}

.ab4 .ul1 li .llt .year{position: absolute;left: 0;bottom: -25px;color: #fff;font-size: 160px;font-weight: bold;line-height: 1;}

.ab4 .ul1 li .llt .txt{position: relative;overflow: auto;width: 85%;height: 100%;padding-right: 20px;color: #444;line-height: 1.6;}

.ab4 .ul1 li .llt .txt .y{color: #d9251c;}

.ab4 .ul1 li .llt .txt .ltc{margin: 15px 0 ;}

.ab4 .ul1 li .llt .txt .xian{display: block;width: 20px;height: 2px;background: #ddd;margin-bottom: 15px;}



/* 侧边栏 */

*{margin: 0; padding: 0;box-sizing: border-box;}


.right{width:70px;height: auto;position: fixed; right: 5px; top: 30%; z-index: 1000;}

.right ul{  display: block; border-radius:10px ; -webkit-border-radius:10px ; -moz-border-radius:10px ; -ms-border-radius:10px ; -o-border-radius:10px ; }

.right li,.but{background: #E6E6E8; cursor:pointer; list-style: none; display: block; font-size: 12px;text-align: center;height:70px;padding: 10px; }

.right li{border-radius: 10px; position: relative;}

.right li .lo{width: 30px; height: 30px;margin: 0 auto; }

.right .but .lo{margin: 0 auto; padding-bottom: 10px;}

.right li p{margin-top: 5px; color: #0E97CC;}

.right .li1,.li2,.li3{margin-bottom: 2px;}

.right li .hov{background: #E6E6E8;}

.right .but{ margin-top: 10px;  color: #0092CA; border-radius:5px ; -webkit-border-radius:5px ; -moz-border-radius:5px ; -ms-border-radius:5px ; -o-border-radius:5px ; }

.right .but img{margin-bottom: 5px;}

.right li:hover p{color: #F4A000;}

.right li .li1_hov {
    width: 230px;
    height: auto;
    position: absolute;
    left: -240px;
    top: 26%;
    display: block;
    height: 40px;
    line-height: 40px;
    display: block;
    pointer-events: none;
    color: #F4A000;
    font-size: 26px;
}

.right li .li3_hov,.right li .li4_hov{ width: 100px; height: 100px; position: absolute; left: -120px; top:-20%;  pointer-events: none; }
.right li .li2_hov{ width: 140px;  position: absolute; left: -140px; top:-20%; background-color:transparent;height:300px;display: none;}
.right li .li2_hov .li2_hov_inn{ width: 120px;  margin-right:20px;background-color:#fff; position: relative;padding:10px 0 ; }
.right li .li2_hov.act{ display: block;animation: bounceInLefts 1s cubic-bezier(0.215, 0.610, 0.355, 1.000); -webkit-animation: bounceInLefts 1s cubic-bezier(0.215, 0.610, 0.355, 1.000); }


.right li .li2_hov a{ height:26px;line-height:26px;font-size:14px; }
.right li .li2_hov a:hover{ color: #F4A000; }

.right li .li3_hov,.right li .li4_hov,.right li .li1_hov{ display: none;}
.right li .li2_hov:hover{ display:block !important; }


.right .li1_hov{color: #183884;}

.right li:hover .li3_hov,.right li:hover .li4_hov,.right li:hover .li1_hov{ display: block; animation: bounceInLefts 1s cubic-bezier(0.215, 0.610, 0.355, 1.000); -webkit-animation: bounceInLefts 1s cubic-bezier(0.215, 0.610, 0.355, 1.000); }
.right li .li2_hov:hover .li2_hov_inn{ display:block !important; }
.right li .hov img{width: 100px; height: 100px;}



/* 产品中心 */

.prdoc1{}

.prdoc1 .nav{line-height: 140px;}

.prdoc1 .stop{}

.prdoc1 .stop .plt{width: 28%;float: left;margin-right: 5%;}

.prdoc1 .stop .plt .dl1{cursor: pointer;margin-bottom: 4px; }
.prdoc1 .stop .plt .dl1 dt:hover {
   color: #fff; background: #28abd5 url(/skin/images/nlb3.png) center right no-repeat;
}


.prdoc1 .stop .plt .dl1 dt{line-height: 56px;border:1px solid #ddd;padding: 0 20px 0 30px;background: #efefef url(/skin/images/nlb1.png) no-repeat right 50%; color: #444;margin-bottom: 4px;}

.prdoc1 .stop .plt .dl1 dt .img {
    display: block;
    float: left;
    margin-top: 18px;
    margin-right: 10px;
    position: relative;
}

.prdoc1 .stop .plt .dl1 dt .img img{display: block;}

.prdoc1 .stop .plt .dl1 dt .img img:nth-child(2){position: absolute;top: 0;left: 0;z-index: 2;opacity: 0;}

.prdoc1 .stop .plt .dl1 dt.act{background: #28abd5 url(/skin/images/nlb2.png) no-repeat right 50%; color: #fff;}

.prdoc1 .stop .plt .dl1 dt.act .img img:nth-child(1){opacity: 0;}

.prdoc1 .stop .plt .dl1 dt.act .img img:nth-child(2){opacity: 1;}

.prdoc1 .stop .plt .dl1 dd{margin-bottom: 4px;display: none;}

.prdoc1 .stop .plt .dl1 dd .dtt {
    line-height: 40px;
    padding: 0 20px 0 20px;
    color: #fff;
    background: #efefef;
    background-size: 18px;
        font-size: 15px;
}
.prdoc1 .stop .plt .dl1 dd .dtt.act{background: #F4A000 ; background-size: 18px;color: #fff;}
.prdoc1 .stop .plt .dl1 dd .dtt.act a{color: #fff;}


.prdoc1 .stop .plt .dl1 dd .dtp {
    line-height: 40px;
    padding: 0 20px 0 20px;
    color: #fff;
    background: #A5BBC6 url(/skin/images/nlb3.png) 97% center no-repeat;
    background-size: 18px;
}
.prdoc1 .stop .plt .dl1 dd .dtp:hover {
     background: #F4A000 url(/skin/images/nlb3.png) 97% center no-repeat;
     background-size: 18px;
}
.prdoc1 .stop .plt .dl1 dd .act{background: #F4A000 url(/skin/images/nlb2.png) 97% center no-repeat; background-size: 18px; color: #fff;}
.prdoc1 .stop .plt .dl1 dd .act a{color: #fff;}

}
.prdoc1 .stop .plt .dl1 dd .dtp.act{background: #F4A000 url(/skin/images/nlb2.png) 95% center no-repeat;background-size: 18px;color: #fff;}
.prdoc1 .stop .plt .dl1 dd .dtp a{color: #000;}
.prdoc1 .stop .plt .dl1 dd .dbt li {
    background: #efefef;
    padding-left: 10px;
    font-size: 14px;
    color: #cbcbcb;
}

.prdoc1 .stop .plt .dl1 dd .dtpp {
    line-height: 40px;
   
    color: #fff;
    background: #efefef;
    background-size: 18px;
}
.prdoc1 .stop .plt .dl1 dd .dtpp a:hover {
     background: #F4A000;
     background-size: 18px;
}
.prdoc1 .stop .plt .dl1 dd .dtpp a:hover{color: #fff;}

}
.prdoc1 .stop .plt .dl1 dd .dtpp.act{background: #F4A000 url(/skin/images/nlb2.png) 95% center no-repeat;background-size: 18px;color: #fff;}
.prdoc1 .stop .plt .dl1 dd .dtpp a{ color: #000;
    background: #efefef;
    line-height: 40px;
    display: block;
    line-height: 40px;
    margin-top: 5px;
    padding: 0 20px 0 5px;
    
    
}


.prdoc1 .stop .plt .dl1 dd .dbt{display:none ;}

.prdoc1 .stop .plt .dl1 dd .dbt.act{display:block ;}

.prdoc1 .stop .plt .dl1 dd .dbt a{display: block;line-height: 40px;margin-top: 5px;padding: 0 20px 0 5px;background: #efefef;color: #999;}

.prdoc1 .stop .plt .dl1 dd .dbt a:hover,.prdoc1 .stop .plt .dl1 dd .dbt a.act{background:#3babe1;color: #fff;}

.prdoc1 .stop .prt{width: calc(100% - 330px);float: right;}

.prdoc1 .stop .prt .nday{padding-top: 0;}

.prdoc1 .stop .prt li{width: 32%;float: left;margin-right: 2%;margin-bottom: 2%;background: #fff;border:1px solid #e5e5e5;position: relative;overflow: hidden;}

.prdoc1 .stop .prt li a{display: block;}

.prdoc1 .stop .prt li:nth-child(3n){margin-right: 0;}

.prdoc1 .stop .prt li:nth-child(3n+1){clear:both;}

.prdoc1 .stop .prt li .img{overflow: hidden;padding: 10px 0;width: 100%;padding-bottom: 71.8%;height: 0;}

.prdoc1 .stop .prt li .img img{margin: 0 auto;display: block; width: 75%;}

.prdoc1 .stop .prt li .txt{padding: 20px 30px 0px;}

.prdoc1 .stop .prt li .txt .ltt{overflow: hidden;text-overflow:ellipsis;white-space: nowrap;text-align: center;font-weight: bold;line-height: 1.5;}

.prdoc1 .stop .prt li .txt .ltc{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;color: #999;line-height: 1.8;margin: 10px 0 20px;height: 50px;}

.prdoc1 .stop .prt li .txt .xian{width: 100%;height: 1px;background: #ddd;}

.prdoc1 .stop .prt li .txt .more{position: relative;width: 100px;text-align: center;line-height: 54px;background: #fff url(/static/image/1_9_3.png) 95% center no-repeat;margin: 0 auto ;}

.prdoc1 .stop .prt li .txt .more s{display: none;position: absolute;top: 0;left: 0;width: 100%;height: 100%;border:1px solid #ddd;}

.prdoc1 .stop .prt li:hover .img img{transform: scale(1.05);-webkit-transform: scale(1.05);}

.prdoc1 .stop .prt li:hover .txt .ltt{color: #d9251c;}

.prdoc1 .stop .prt li:hover .txt .ltc{color: #000;}

.prdoc1 .stop .prt li:hover .txt .more{color: #d9251c;background: #fff url(/static/image/1_9_4.png) 95% center no-repeat;}

.prdoc1 .stop .prt li::before{content: '';display: block;width: 0;height: 3px;background: #d9251c;position: absolute;left: 0;bottom: 0;z-index: 3;-webkit-transition: all .5s;-moz-transition: all .5s;transition: all .5s;}

.prdoc1 .stop .prt li:hover::before{width: 100%;}

.prdoc1 .stop .prt li:hover{-moz-box-shadow:0px 2px 10px #ccc; -webkit-box-shadow:0px 2px 10px #ccc; box-shadow:0px 2px 10px #ccc;}


.NyAboutus .NyAboutus_Honor { width: 100%; height: auto; margin: 0 auto; padding: 80px 0; background-color: #f9f9f9;  }
.NyAboutus_Honor .NyAboutusHonor_Main { width: 100%; height: auto; margin: 0 auto; padding: 0;  }
.NyAboutusHonor_Main .NyAboutusHonor_List { width: 99%; height: auto; min-height: 240px; margin: 0 0 0 -90px; padding: 0 90px; position: relative; overflow: hidden;box-sizing: content-box;-moz-box-sizing: content-box;-webkit-box-sizing: content-box; }
.NyAboutusHonor_List .swiper-container04 { width: 100%; height: 100%;min-height: 440px; padding: 0 35px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box; overflow: hidden; position: relative; }
.NyAboutusHonor_List .swiper-slide {    margin-right: 65px !important;
    margin-left: -30px !important; text-align: center; background: #fff; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; transition: 300ms; transform: scale(0.8); position: relative; box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.NyAboutusHonor_List .swiper-slide img { display: block; max-width: 90%; max-height: 90%; margin: auto; padding: 0;  }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img { height: 460px; width: 100%; position: relative; }
.NyAboutusHonor_List .swiper-slide a.NyAboutusHonor_Name { width: 100%; height: 48px; overflow: hidden; line-height: 48px; color: #fff; font-size: 18px; text-align: center; text-overflow: ellipsis; white-space: nowrap; margin: 0; padding: 0 20px; background-color: rgba(71, 137, 212,0.88); position: absolute; left: 0; bottom: 0;  }
.NyAboutusHonor_List .swiper-slide-active, .NyAboutusHonor_List .swiper-slide-duplicate-active {    transform: scale(1.3); }
.NyAboutusHonor_List .swiper-button-prev, .NyAboutusHonor_List .swiper-button-next { width: 40px!important; height: 40px!important; margin: -20px 0 0!important; border-radius: 50%; position: absolute; top: 50%!important; bottom: 0!important; opacity: 1; cursor: pointer; }
.NyAboutusHonor_List .swiper-button-prev { background: url(/static/image/prev01.png) center center no-repeat; left: 0; }
.NyAboutusHonor_List .swiper-button-next { background: url(/static/image/next01.png) center center no-repeat; right: 0; }
.NyAboutusHonor_List .swiper-button-prev:hover { background: url(/static/image/prev02.png) center center no-repeat; }
.NyAboutusHonor_List .swiper-button-next:hover { background: url(/static/image/next02.png) center center no-repeat; }
 @media (max-width:1680px) {
}
@media (max-width:1600px) {

}
@media (max-width:1560px) {
}
@media (max-width:1440px) {
.NyAboutus .NyAboutus_Profile { padding: 60px; }
.abGsjj_main { width: 100%; }
.NyAboutus .NyAboutus_Culture { padding: 60px; }
.NyAboutus_Culture .NyAbCulture_Main { width: 100%; }
.NyAbCulture_Main ul li { padding: 60px 30px; }
.NyAboutus .NyAboutus_Honor { padding: 60px; }
.NyAboutus_Honor .NyAboutusHonor_Main { width: 100%; }
.NyAboutusHonor_Main .NyAboutusHonor_List { margin: 0 0 0 -60px; padding: 0 60px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:420px;}
.abGsjj_con ul li span{ font-size:15px;}
}
@media (max-width:1366px) {
.abGsjj_con .abGsjj_ms { height: 270px; }
.abGsjj_con ul li p { font-size: 48px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:400px;}
}
@media (max-width:1280px) {
.abGsjj_con ul { margin: 35px 0 0; }
.NyAbCulture_Main ul li { padding: 50px 25px; }
}
@media (max-width:1200px) {
.NyAboutus .NyAboutus_Profile { padding: 60px 40px; }
.abGsjj_con .abGsjj_ms { height: 240px; }
.abGsjj_con ul li p { font-size: 44px; }
.NyAboutus .NyAboutus_Culture { padding: 60px 40px; }
.NyAbCulture_Main ul li { padding: 40px 20px; }
.NyAbCulture_Main ul li span { height: 48px; line-height: 24px; font-size: 14px; }
.NyAboutus .NyAboutus_Honor { padding: 60px 40px; }
.NyAboutusHonor_Main .NyAboutusHonor_List { min-height: 180px; margin: 0 0 0 -40px; padding: 0 40px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:380px;}
}
@media (max-width:1080px) {
.abGsjj_name p { font-size: 24px; }
.abGsjj_name i { margin: 10px 0 20px; }
.abGsjj_con ul { margin: 25px 0 0; }
.abGsjj_con ul li p { font-size: 40px; }
.abGsjj_con .abGsjj_ms { height: 175px; }
.NyAbCulture_Main ul li { padding: 30px 20px; }
.NyAbCulture_Main ul li i { width: 80px; height: 80px; }
.NyAbCulture_Main ul li p { font-size: 22px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:360px;}

}
@media (max-width:1024px) {
.NyAboutus .NyAboutus_Profile { padding: 40px; }
.NyAboutus .NyAboutus_Culture { padding: 40px; }
.NyAbCulture_Main ul li { padding: 30px 15px; }
.NyAbCulture_Main ul li i { width: 70px; height: 70px; }
.NyAbCulture_Main ul li p { font-size: 20px; }
.NyAbCulture_Main ul li span { height: 44px; line-height: 22px; }
.NyAboutus .NyAboutus_Honor { padding: 40px; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:320px;}
.abGsjj_con ul li span{ font-size:14px;}
}
@media (max-width:880px) {
.NyAboutus .NyAboutus_Profile { padding: 40px 20px; }
.abGsjj_main .abGsjj_con { width: 100%; }
.abGsjj_main .abGsjj_img { width: 100%; margin-top: 25px; }
.abGsjj_con .abGsjj_ms img { width: 100%;  }

.abGsjj_con .abGsjj_ms { height: auto; overflow:inherit; padding:0; }
.NyAboutus .NyAboutus_Culture { padding: 40px 20px; }
.NyAbCulture_Main ul li { width: 48.5%; height: auto; margin: 0 3% 12px 0; padding: 40px 12px 20px; }
.NyAbCulture_Main ul li:nth-child(4) { margin: 0 3% 12px 0; }
.NyAbCulture_Main ul li:nth-child(2n+2) { margin: 0 0 12px 0; }
.NyAbCulture_Main ul li i { width: 60px; height: 60px; }
.NyAbCulture_Main ul li p { font-size: 18px; }
.NyAbCulture_Main ul li span { height: 60px; line-height: 20px; -webkit-line-clamp: 3; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:280px;}
.NyAboutusHonor_List .swiper-slide-active, .NyAboutusHonor_List .swiper-slide-duplicate-active { transform: scale(1.2); }
.NyAboutusHonor_List .swiper-slide-active a.NyAboutusHonor_Name,.NyAboutusHonor_List .swiper-slide-duplicate-active a.NyAboutusHonor_Name{ font-size:14px; margin-bottom:22px; height:35px; line-height:35px;}

}
@media (max-width:767px) {
.NyAboutus .NyAboutus_Profile { padding: 20px 12px; }
.abGsjj_main .abGsjj_img { margin-top: 15px; }
.abGsjj_name p { font-size: 22px; }
.abGsjj_name i { margin: 5px 0 15px; }
.abGsjj_ms p { font-size: 15px; }
.abGsjj_con ul { margin: 15px 0 0; display:none; }
.abGsjj_con ul li p { font-size: 35px; }
.abGsjj_con ul li span { font-size: 15px; line-height: 25px; }
.NyAboutus .NyAboutus_Culture { padding: 20px 12px; }
.NyAboutus .NyAboutus_Honor { padding: 20px 12px; }
.NyAboutusHonor_Main .NyAboutusHonor_List { margin: 0 auto; padding: 0; }
.NyAboutusHonor_List .swiper-slide .NyAboutusHonor_Img{ height:240px;}
.NyAboutusHonor_List .swiper-slide-active, .NyAboutusHonor_List .swiper-slide-duplicate-active { transform: scale(1); }
.NyAboutusHonor_List .swiper-slide-active a.NyAboutusHonor_Name,.NyAboutusHonor_List .swiper-slide-duplicate-active a.NyAboutusHonor_Name{ font-size:14px; margin-bottom:0; height:35px; line-height:35px;}
}




.abidx_ban {
	width: 100%;
	height: 920px;
	overflow: hidden;
	margin: 0;
	padding: 0
}
.abidx_ban .swiper-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	position: relative
}
.abidx_ban .swiper-container .swiper-slide {
	height: 100%;
	overflow: hidden;
	margin-right: 0px;
	position: relative
}
.abidx_ban .swiper-container .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;

	padding: 0;
	position: absolute;

}
.abidx_ban .swiper-container .swiper-pagination {
	width: 100%;
	height: 6px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	left: 0;
	bottom: 30px!important
}
.abidx_ban .swiper-container .swiper-pagination .swiper-pagination-bullet {
	width: 20px;
	height: 25px;
	border-radius: 3px;
	opacity: 1;
	background-color: rgba(255,255,255,0.45);
	margin: 0 3px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s
}
.abidx_ban .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
	width: 35px;
	background-color: #EF3B1B
}
.abidx_ban .swiper-container .swiper-button-prev, .abidx_ban .swiper-container .swiper-button-next {
	width: 60px!important;
	height: 60px!important;
	margin: -30px 0 0!important;
	position: absolute;
	top: 50%!important;
	opacity: 1;
	border-radius: 50%
}
.abidx_ban .swiper-container .swiper-button-prev {
	left: 30px;
	background: rgba(255,255,255,0.1) url(/skin/gd/baprev.png) center center no-repeat;
	background-size: 40px 40px
}
.abidx_ban .swiper-container .swiper-button-next {
	right: 30px;
	background: rgba(255,255,255,0.1) url(/skin/gd/banext.png) center center no-repeat;
	background-size: 40px 40px
}
.abidx_ban .swiper-container .swiper-button-prev:hover {
	background: #EF3B1B url(/skin/gd/baprev.png) center center no-repeat;
	background-size: 40px 40px
}
.abidx_ban .swiper-container .swiper-button-next:hover {
	background: #EF3B1B url(/skin/gd/banext.png) center center no-repeat;
	background-size: 40px 40px
}
@media (max-width:1600px) {
.abidx_ban {
	height: 640px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1632px;
	    height: auto;
	margin: -320px 0 0 -816px
}
}
@media (max-width:1560px) {
.abidx_ban {
	height: 620px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1584px;
	    height: auto;
	margin: -310px 0 0 -792px
}
.abidx_ban .swiper-container .swiper-button-prev {
	left: 40px
}
.abidx_ban .swiper-container .swiper-button-next {
	right: 40px
}
}
@media (max-width:1440px) {
.abidx_ban {
	height: 580px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1488px;
	height: 580px;
	margin: -290px 0 0 -744px
}
}
@media (max-width:1366px) {
.abidx_ban {
	height: 540px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1392px;
	height: 540px;
	margin: -270px 0 0 -696px
}
}
@media (max-width:1280px) {
.abidx_ban {
	height: 500px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1296px;
	height: 500px;
	margin: -250px 0 0 -648px
}
.abidx_ban .swiper-container .swiper-button-prev, .abidx_ban .swiper-container .swiper-button-next, .abidx_ban .swiper-container .swiper-pagination {
	bottom: 20px!important
}
}
@media (max-width:1200px) {
.abidx_ban {
	height: 480px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1248px;
	height: 480px;
	margin: -240px 0 0 -624px
}
}
@media (max-width:1080px) {
.abidx_ban {
	height: 420px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1100px;
	height: 420px;
	margin: -210px 0 0 -550px
}
}
@media (max-width:1024px) {
.abidx_ban {
	height: 400px;
	margin-top: 82px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 1056px;
	height: 400px;
	margin: -200px 0 0 -528px
}
}
@media (max-width:800px) {
.abidx_ban {
	height: 300px;
	margin: 80px auto 0
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 816px;
	height: 300px;
	margin: -150px 0 0 -408px
}
.abidx_ban .swiper-container .swiper-button-prev {
	left: 10px
}
.abidx_ban .swiper-container .swiper-button-next {
	right: 10px
}
}
.shouji1 {
    display: block;
}


@media (max-width:767px) {
    
    .right li .li1_hov {
      left: -20px;  
            top: -66%;
    }
.nav, .prdoc1 .nav, .cas1 .nav{display: none;}.prdoc1 .stop .prt{width: 100%;float: none;}
.right {
    width: 100%;
    height: auto;
    position: fixed;
    right: 0px;
    bottom: 0%;
    z-index: 1000;
    height: 70px;
        top: auto;
}
.right li {
    /* border-radius: 10px; */
    position: relative;
    width: 25%;
    float: left;
    border-right: 1px solid #fff;
}
.right .but {
    margin-top: 0px;
    color: #0092CA;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.right .but .lo {
    margin: 0 auto;
    padding-bottom: 10px;
    padding-top: 4px;
}
.right li .li3_hov, .right li .li4_hov {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 10%;
    bottom: 100%;
    top: auto;
    pointer-events: none;
}
.header-main {
    padding: 5px 0px;
}
.search_widgett form {
    width: 88%;
    position: relative;
    float: right;
}
.search_widgett form input {
    background-color: var(--bg);
    font-size: 12px;
    padding: 5px;
    width: 100%;
    border: none;
    text-transform: capitalize;
    color: var(--header);
    border-radius: 20px;
}
.ab4 .ul1 li .img img {
    display: block;
    width: 100%;
    height: 110px;
}
.shouji1 {
   display: none;
}
  
  
.shouji {
    display: block;
}
    .prdoc1 .stop .prt li{width: 100%;float: none;}

    .prdoc1{padding: 30px 0;}

    .prdoc1 .stop .plt{width: 100%;margin-bottom: 20px;float: none;height: 260px;overflow: auto;padding-right: 10px;}

    .prdoc1 .stop .plt::-webkit-scrollbar{ width:4px;}

    .prdoc1 .stop .plt::-webkit-scrollbar-thumb{ background:#2778A8;}

    .prdoc1 .stop .plt::-webkit-scrollbar-track{ background:#d8d8d8;} 

    .prdoc1 .stop .plt .dl1 dt{display: none;}

    .prdoc1 .stop .plt .dl1 dd{display: block;}

    .prdoc1 .stop .plt .dl1{display: none;}

    .prdoc1 .stop .pltm{margin-bottom: 20px;}

    .prdoc1 .stop .pltm span{display: block;width: 50%;line-height: 20px;text-align: center;float: left;line-height: 50px;background: #ddd;color: #666; border-right: 1px solid #fff;border-bottom: 1px solid #fff;}

    .prdoc1 .stop .pltm span:nth-child(2n){border-right: 0;}

    .prdoc1 .stop .pltm span.act{background: #2778A8;color: #fff;}

    .prdoc1 .stop .prt{padding-bottom: 0px;}
    
     .fadeInLeft img{width: 100%;}
    
    
 .prdoc1 .stop .prt{width: 100%;float: none;}

    .prdoc1 .stop .prt li{width: 100%;float: none;}

    .prdoc1{padding: 0px 0;}

    .prdoc1 .stop .plt{width: 100%;margin-bottom: 20px;float: none;height: 260px;overflow: auto;padding-right: 10px;}

    .prdoc1 .stop .plt::-webkit-scrollbar{ width:4px;}

    .prdoc1 .stop .plt::-webkit-scrollbar-thumb{ background:#2778A8;}

    .prdoc1 .stop .plt::-webkit-scrollbar-track{ background:#d8d8d8;} 

    .prdoc1 .stop .plt .dl1 dt{display: none;}

    .prdoc1 .stop .plt .dl1 dd{display: block;}
.prdoc1 .stop .plt .dl1 dd .dtp {
    line-height: 50px;
    padding: 0 20px 0 20px;
    color: #fff;
    background: #A5BBC6 url(/skin/images/nlb3.png) 97% center no-repeat;
    background-size: 18px;
}
    .prdoc1 .stop .plt .dl1{display: none;}

    .prdoc1 .stop .pltm{padding: 0 5%;margin-bottom: 20px;}

    .prdoc1 .stop .pltm span{display: block;width: 50%;line-height: 20px; font-size: 13px;text-align: center;float: left;line-height: 50px;background: #ddd;color: #666; border-right: 1px solid #fff;border-bottom: 1px solid #fff;}

    .prdoc1 .stop .pltm span:nth-child(2n){border-right: 0;}

    .prdoc1 .stop .pltm span.act{background: #2778A8;color: #fff;}

    .prdoc1 .stop .prt{padding-bottom: 0px;}
    .prdoc1 .stop .prt li .img{padding: 0;}

.abidx_ban {
    height: 250px;
    margin: 1px auto 0;
}
.ab4 .dl1 dd {
    width: 11%;
    float: left;
    text-align: center;
    position: relative;
    z-index: 3;
    cursor: pointer;
    font-size: 9px;
}
.ab4 .dl1 {
    position: relative;
    padding: 0 0%;
    height: 80px;
}
.breadcrumb-wrapper {
    padding: 110px 0;
    padding: 90px 0 !important;
}
.section-padding {
    padding: 40px 0;
}
.NyAboutus_Profile {
    padding: 6px;
}
.about-3 li {
    float: left;
    width: 50%;
    height: 200px;
    text-align: center;
}
.ab4 .tt {
    color: #22ADD6;
    padding-top: 68px;
    font-size: 22px;
    font-weight: bold;
}
.ab4 .ul1 {
    width: 100%;
    height: 500px;
    margin: 50px 0;
    position: relative;
    margin: 0 auto;
}
.ab4 .ul1 li .llt {
    width: 100%;
    height: 100%;
    text-align: justify;
    position: relative;
    background: url(/static/image/bb.png) center no-repeat;
    background-size: cover;
    padding: 60px 25% 60px 6px;
}
.col-xl-4 {
    flex: 0 0 auto;
    width: 100%;
}
.row {
   width: auto;
   
}
.abGsjj_main {
    width: 100%;
    overflow: hidden;
    margin: 6px auto;
    padding: 0;
}
.in-desc {
    height: 142px;
    overflow: hidden;
    background: url(/skin/images/a-1.jpg) no-repeat center / cover;
    color: #fff;
}
.section {
    padding: 10px 0;
}
.abidx_ban .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    margin: 0px 0 0 0px;
}
.abidx_ban .swiper-container .swiper-button-prev, .abidx_ban .swiper-container .swiper-button-next {
	display: none
}
.abidx_ban .swiper-container .swiper-pagination {
	bottom: 10px!important
}
  .prdoc1 .stop .plt {
    width: 100%;
    padding: 0 5%;
    float: left;
    margin-right: 0%;
}
.search_widget form {
    width: 100%;
    position: relative;
    float: right;
}
.col-xl-31 {
    flex: 0 0 auto;
    width: 33%;
}
.counter-wrapper-area .counter-items p {
    font-size: 18px;
    color: var(--header);
    font-weight: 400;
    position: relative;
    z-index: 9;
}
.counter-wrapper-area .counter-items h2 {
    font-size: 35px;
    margin-bottom: 5px;
    color: #22add6;
    position: relative;
    z-index: 9;
}
.counter-wrapper-area .counter-items h2 span {
    font-size: 32px;
    margin-bottom: 5px;
    color: #595656;
    position: relative;
    z-index: 9;
}
.counter-wrapper-area .counter-items {
    text-align: center;
    padding: 5px 3px;
    position: relative;
    z-index: 9;
}

.choose-content p {
   font-size:14px !important ;
}
.counter-section {
    position: inherit;
}

.cta-section-2 .cta-content {
    position: initial;
    margin-top: 20px;
    margin-left: 10px;
}
.cta-wrapper-4 .cta-content h1 {
    font-size: 20px;
    color: var(--white);
    line-height: 50px;
    width: 80px;
    margin-left: 12px;
}
.top3 {
    margin-top: 180px;
    padding-top: 2.8rem;
    padding-bottom: 1.8rem;
    height: 413px;
    width: 97%;
    background-image: url(/skin/images/c11.png);
    background-size: 519px;
    background-size: auto 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.top3>div>div>ul>li:nth-child(1) {
    opacity: 1;
top: -56px;
    left: 6.79rem;
 }

.top3>div>div>ul>li:nth-child(2) {
    opacity: 1;
    top: 32px;
    left: -0.74rem;
}
.top3>div>div>ul>li:nth-child(3){
    top: 32px;
    right: -18px;
    left: auto;
}

.top3>div>div>ul>li:nth-child(4) {
top: 175px;
    left: 9.8%;
    
}


.top3>div>div>ul>li:nth-child(5) {
top: 176px;
    right: 8.2%;
    left: auto;
    
}
.top3>div>div>ul>li:nth-child(1):hover {
    background-image: url(/static/images/ye-1.png);
top: -56px;
       left: 6.79rem;
    height: 141px;
    width: 141px;
    background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(2):hover {
    background-image: url(/static/images/ye-2.png);
    top: 32px;
    left: -0.74rem;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(3):hover {
    background-image: url(/static/images/ye-3.png);
    top: 32px;
    right: -18px;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(4):hover {
    background-image: url(/static/images/ye-4.png);
top: 175px;
    left: 9.8%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.top3>div>div>ul>li:nth-child(5):hover {
    background-image: url(/static/images/ye-5.png);
top: 176px;
    right: 8.2%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.h3  {
     color: #ffffff;
}
 

.common-bntt h1 {
    color: #ffffff;
    font-size: 22px;
    margin-left: 45px;
    text-align: left;
    line-height: 110%;
}
.news .news-box {
    margin-top: 20px;
    height: 560px;
}
.common-bntt h1 {
    color: #ffffff;
    font-size: 21px;
    margin-left: 45px;
    text-align: left;
    line-height: 110%;
}

.tab-nav {
    list-style: none;
    margin: 1.9em -1px 0 10px;
    padding: 0;
    overflow: hidden;
}
.tab-links a {
    top: 1px;
    position: relative;
    display: block;
    float: left;
    text-decoration: none;
    color: #fff;
    background: #22add6;
    border-bottom-left-radius: 8px;
    margin-top: 0.5em;
    font-size: 15px;
    line-height: 43px;
    margin-right: 2px;
    transition: background .2s ease, line-height .2s ease, margin .2s ease;
    width: 32%;
    height: 43px;
    text-align: center;
}
.swiper-slide {
    flex-shrink: 0;
    width: 48%;
    height: 100%;
    margin-right: 20px;
    position: relative;
    transition-property: transform;
}
.project-wrapper-2 .project-items-3 {
    margin-top: 30px;
    overflow: hidden;
    height: 532px;
    width: auto;
}
.section-title {
    margin-top: 10px;
    margin-bottom: 1px;
}
.section-title span {
    color: #000000;
    font-size: 28px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 400;
    text-transform: capitalize;
}
.news .news-box .news-hot .pic {
    padding: 1px;
    width: 96%;
    margin: 0 auto;
}
.news img {
    width: 94%;
    border-radius: 10px;
    height: 210px;
}
.news .news-box .news-hot {
    float: left;
    margin-right: 10px;
    width: 380px;
    box-sizing: border-box;
    transition: box-shadow 0.3s, border 0.3s, background-color 0.3s, color 0.3s, transform 0.3s;
}
.news .news-box .news-list {
    float: left;
    width: 100%;
    margin-top: 10px;
}
.news .news-box .news-list li {
    width: 100%;
    height: 90px;
    background-color: #fafafa26;
    margin-bottom: 15px;
    padding: 20px 20px 0px;
    box-sizing: border-box;
}
.news .news-box .news-list li .date .date-month {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: bold;
}
.news .news-box .news-list li .date {
    float: left;
    width: 22%;
    text-align: right;
    margin-right: 10px;
}
.news .news-box .news-list li .info {
    float: left;
    width: 74%;
}
.news .news-box .news-list li .info .title a {
    color: #ffffff !important ;
}
.footer-widgets-wrapper .single-footer-widget p1 {
    float: inherit;
    color: #fff;
    line-height: 32px;
    font-size: 20px;
}

.footer-widgets-wrapper {
    padding: 50px 0 7px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head img {
   width: 100%;
}
.common-bnt img {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    margin-bottom: 40px;
    width: 50%;
    /* margin: 0 auto; */
    margin-left: 0px;
}
.project-wrapper-2 .project-items-3 .project-image {
    height: 220px;
}
.project-wrapper-2 .project-items-3 .project-image .project-content {
    position: absolute;
    /* bottom: 60px; */
    left: 5px;
    /* width: 20%; */
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.project-wrapper-2 .project-items-3 .project-image .project-content h4  {

font-size: 12px;
}
.tab-content .active-content {
    display: block;
    height: 320px;
}
.common-title {
    text-align: right;
    padding-top: 20px;
}
.common-title .title {
    font-size: 35px;
    line-height: 90%;
    font-weight: 600;
    color: #ffffff;
}
.common-title .text {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 400;
    text-transform: capitalize;
}
.common-title .text img {
    margin-right: 10px;
    width: 12%;
    border-radius: 0px;
    height: 20px;
}
.col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-xl-6  img {
        width: 100%;
     
}

}


 



@media (max-width:375px) {
.abidx_ban {
	height: 160px
}
.abidx_ban .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    margin: 0px 0 0 1px;
}

top3>div>div>ul>li:nth-child(1) {
    opacity: 1;
top: -59px;
      left: 6.29rem;
 }

.top3>div>div>ul>li:nth-child(2) {
    opacity: 1;
top: 22px;
    left: -0.84rem;
}
.top3>div>div>ul>li:nth-child(3){
top: 22px;
    right: -20px;
    left: auto;
}

.top3>div>div>ul>li:nth-child(4) {
top: 158px;
    left: 8.8%;
    
}


.top3>div>div>ul>li:nth-child(5) {
top: 157px;
    right: 6.6%;
    left: auto;
    
}
.top3>div>div>ul>li:nth-child(1):hover {
    background-image: url(/static/images/ye-1.png);
top: -59px;
      left: 6.29rem;
    height: 141px;
    width: 141px;
    background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(2):hover {
    background-image: url(/static/images/ye-2.png);
top: 22px;
    left: -0.84rem;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(3):hover {
    background-image: url(/static/images/ye-3.png);
top: 22px;
    right: -20px;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(4):hover {
    background-image: url(/static/images/ye-4.png);
top: 158px;
    left: 8.8%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.top3>div>div>ul>li:nth-child(5):hover {
    background-image: url(/static/images/ye-5.png);
top: 157px;
    right: 6.6%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
}
@media (max-width:320px) {
.abidx_ban {
	height: 140px
}
.abidx_ban .swiper-container .swiper-slide img {
	width: 384px;
	height: 140px;
	margin: -70px 0 0 -192px
}
.webaboutus {
	width: 100%;
	height: auto;
	min-height: 320px;
	margin: 0 auto;
	padding: 0
}
.webaboutus .webaboutus_profile {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 80px 0;
	background-color: #f9f9f9;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutus_profile .webaboutus_con {
	width: 1400px;
	height: auto;
	margin: 0 auto;
	padding: 0
}
.webaboutus_con .webaboutus_img {
	width: 100%;
	height: auto;
	margin: 0 0 40px;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutus_img p img {
	display: block;
	max-width: 100%;
	max-height: 100%
}
.webaboutus_con .webaboutus_text {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutus_text .webab_ms {
	width: 100%;
	height: auto;
	line-height: 30px;
	color: #666;
	font-size: 16px;
	word-break: break-all;
	text-align: justify;
	margin: 0 auto;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutus_text .webab_ms p {
	width: 100%;
	height: auto;
	line-height: 30px;
	color: #666;
	font-size: 16px;
	word-break: break-all;
	text-align: justify;
	margin: 0 auto;
	padding: 0
}
.inab-main-data {
	margin-top: 20px
}
.inab-main-data .nums {
	transition: 0.3s;
	overflow: hidden
}
.inab-main-data .num {
	width: 33.3333%;
	float: left;
	padding: 30px 60px;
	height: 200px;
	color: #f9f9f9;
	position: relative;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	transition: 0.3s
}
.inab-main-data .num1 {
	background: #EF3B1B url(../image/abicon1.png) no-repeat center 115px
}
.inab-main-data .num2 {
	background: #fd6044 url(../image/abicon2.png) no-repeat center 115px
}
.inab-main-data .num3 {
	background: #EF3B1B url(../image/abicon3.png) no-repeat center 115px
}
.inab-main-data .num span {
	font-size: 58px;
	line-height: 1;
	float: left;
	letter-spacing: -2px;
	font-family: Arial
}
.inab-main-data .num span sub {
	font-size: 26px
}
.inab-main-data .num3 span sub {
	font-size: 16px
}
.inab-main-data .num p {
	font-size: 16px;
	line-height: 24px;
	position: absolute;
	left: 215px;
	top: 33px;
	padding-bottom: 12px;
	width: 180px;
	border-bottom: 1px solid rgba(255,255,255,.35)
}
.webaboutus .webaboutus_culture {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 80px 0 90px;
	background: #313131 url(../image/nyabbg1.png) center center no-repeat;
	background-size: cover;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutus_culture .webculture_main {
	width: 1400px;
	height: auto;
	margin: 0 auto;
	padding: 0
}
.webculture_main ul {
	width: 100%;
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap
}
.webculture_main ul li {
	width: 23.5%;
	float: left;
	margin-right: 2%;
	background: #fff;
	position: relative
}
.webculture_main ul li:nth-child(4n) {
	margin-right: 0
}
.webculture_main ul li .line {
	width: 100%;
	height: 80px;
	border-bottom: solid 1px #e1e1e1
}
.webculture_main ul li .text {
	padding: 70px 30px 50px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}
.webculture_main ul li p {
	font-size: 28px;
	font-weight: bold
}
.webculture_main ul li .ms {
	font-size: 16px;
	color: #666;
	line-height: 28px;
	margin-top: 30px
}
.webculture_main ul li em {
	position: absolute;
	top: 47px;
	left: 30px;
	transition: all 0.5s
}
.webculture_main ul li:hover em {
	transform: rotatab(180deg)
}
.webaboutus .webaboutus_honor {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 80px 0;
	background-color: #f9f9f9;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutus_honor .webaboutushonor_main {
	width: 1400px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutushonor_main .webaboutushonor_list {
	width: 100%;
	height: auto;
	min-height: 240px;
	margin: 0 0 0 -70px;
	padding: 0 70px;
	position: relative
}
.webaboutushonor_list .swiper-container03 {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	position: relative
}
.webaboutushonor_list .swiper-container03 .swiper-slide {
	height: auto;
	padding: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	width: 100%;
	height: 240px;
	overflow: hidden;
	margin: 0 auto 10px;
	padding: 0;
	background-color: #fff;
	box-shadow: 0 0 0 rgba(0,0,0,0.06);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.webaboutushonor_list .swiper-container03 .swiper-slide:hover .webahonor_img {
	box-shadow: 0 0 10px rgba(0,0,0,0.06)
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	position: relative
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img a img {
	display: block;
	max-width: 90%;
	max-height: 90%;
	margin: auto;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s
}
.webaboutushonor_list .swiper-container03 .swiper-slide:hover .webahonor_img a img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1)
}
.webaboutushonor_list .swiper-container03 .swiper-slide a.webaboutushonor_name {
	display: block;
	width: 100%;
	height: 30px;
	overflow: hidden;
	line-height: 30px;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0 auto;
	padding: 10px 0;
	border-bottom: 1px solid #e6e6e6
}
.webaboutushonor_list .swiper-container03 .swiper-slide:hover a.webaboutushonor_name {
	color: #EF3B1B;
	border-bottom: 1px solid #EF3B1B
}
.webaboutushonor_list .swiper-button-prev3, .webaboutushonor_list .swiper-button-next3 {
	width: 40px!important;
	height: 40px!important;
	margin: -20px 0 0!important;
	border-radius: 50%;
	position: absolute;
	top: 50%!important;
	bottom: 0!important;
	opacity: 1;
	cursor: pointer
}
.webaboutushonor_list .swiper-button-prev3 {
	background: url(../image/prev01.png) center center no-repeat;
	left: 0
}
.webaboutushonor_list .swiper-button-next3 {
	background: url(../image/next01.png) center center no-repeat;
	right: 0
}
.webaboutushonor_list .swiper-button-prev3:hover {
	background: url(../image/prev02.png) center center no-repeat
}
.webaboutushonor_list .swiper-button-next3:hover {
	background: url(../image/next02.png) center center no-repeat
}
@media (max-width:1440px) {
.inab-main-data .num {
	padding: 30px 40px
}
.inab-main-data .num p {
	left: 173px
}
.inab-main-data .num span {
	font-size: 50px
}
.webaboutus .webaboutus_profile {
	padding: 60px
}
.webaboutus_profile .webaboutus_con {
	width: 100%
}
.webaboutus .webaboutus_culture {
	padding: 60px
}
.webaboutus_culture .webculture_main {
	width: 100%
}
.webaboutus .webaboutus_honor {
	padding: 60px
}
.webaboutus_honor .webaboutushonor_main {
	width: 100%
}
.webaboutushonor_main .webaboutushonor_list {
	margin: 0 0 0 -60px;
	padding: 0 60px
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 240px
}
}
@media (max-width:1366px) {
.webaboutus_text .webab_ms {
	font-size: 15px
}
}
@media (max-width:1280px) {
.inab-main-data, .in-more {
	margin-top: 30px
}
.inab-main-data .num {
	padding: 25px
}
.inab-main-data .num1 {
	background: #EF3B1B url(../image/abicon1.png) no-repeat center 115px
}
.inab-main-data .num2 {
	background: #1d9055 url(../image/abicon2.png) no-repeat center 115px
}
.inab-main-data .num3 {
	background: #0a8a48 url(../image/abicon3.png) no-repeat center 115px
}
.inab-main-data .num span {
	font-size: 45px
}
.inab-main-data .num p {
	left: 140px;
	top: 26px
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 200px
}
}
@media (max-width:1200px) {
.webaboutus .webaboutus_profile {
	padding: 60px 40px
}
.webaboutus_text .webab_ms {
	line-height: 26px;
	font-size: 14px
}
.webaboutus .webaboutus_culture {
	padding: 60px 40px
}
.webculture_main ul li .text {
	padding: 50px 20px 30px
}
.webculture_main ul li p {
	font-size: 21px
}
.webculture_main ul li .ms {
	margin-top: 15px;
	font-size: 15px
}
.webaboutus .webaboutus_honor {
	padding: 60px 40px
}
.webaboutushonor_main .webaboutushonor_list {
	min-height: 180px;
	margin: 0 0 0 -40px;
	padding: 0 40px
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 200px
}
}
@media (max-width:1080px) {
.webaboutus_text .webab_ms {
	line-height: 24px
}
.inab-main-data .num p {
	width: 140px;
	left: 123px
}
.inab-main-data .num span {
	font-size: 40px
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 240px
}
.webaboutushonor_list .swiper-container03 .swiper-slide a.webaboutushonor_name {
	font-size: 18px
}
}
@media (max-width:1024px) {
.webaboutus_con .webaboutus_img {
	margin: 0 0 30px
}
.inab-main-data .num p {
	width: 120px;
	font-size: 15px
}
.webaboutus_text .webab_ms p {
	font-size: 15px;
	line-height: 26px
}
.webaboutus .webaboutus_profile {
	padding: 40px
}
.webaboutus .webaboutus_culture {
	padding: 40px
}
.webculture_main {
	padding: 40px 0
}
.webculture_main ul li .line {
	height: 60px
}
.webculture_main ul li em {
	top: 27px;
	left: 20px
}
.webaboutus .webaboutus_honor {
	padding: 40px
}
}
@media (max-width:992px) {
.inab-main-data .num p {
	width: auto
}
}
@media (max-width:800px) {
.inab-main-data .num p {
	top: 23px
}
.inab-main-data .num span {
	font-size: 36px
}
.webaboutus .webaboutus_profile {
	padding: 40px 20px
}
.webaboutus .webaboutus_culture {
	padding: 40px 20px
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 180px;
	margin: 0 auto
}
}

 
 
@media (max-width:767px) {

.webaboutus_con .webaboutus_img {
	margin: 0 0 20px
}
.webaboutus_text .webab_ms p {
	font-size: 14px;
	line-height: 24px
}
.inab-main-data .num {
	display: none
}
.webaboutus .webaboutus_profile {
	padding: 20px 12px
}
.webaboutus .webaboutus_culture {
	padding: 20px 12px
}
.webculture_main {
	padding: 40px 0 25px
}
.webculture_main ul li {
	width: 49%;
	margin-bottom: 15px
}
.webculture_main ul li:nth-child(2n+2) {
	margin-right: 0
}
.webaboutus .webaboutus_honor {
	padding: 20px 12px
}
.webaboutushonor_main .webaboutushonor_list {
	margin: 0 auto;
	padding: 0
}
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 140px
}
.webaboutushonor_list .swiper-container03 .swiper-slide a.webaboutushonor_name {
	font-size: 16px
}
.webaboutushonor_list .swiper-button-prev3, .webaboutushonor_list .swiper-button-next3 {
	display: none
}
}
@media (max-width:450px) {
.webculture_main ul li {
	width: 100%
}
}
@media (max-width:375px) {
.webaboutushonor_list .swiper-container03 .swiper-slide a.webaboutushonor_name {
	padding: 5px 0;
	font-size: 15px
}
.webculture_main ul li .text {
	padding: 50px 20px 30px
}
.webculture_main ul li p {
	font-size: 18px
}
.webculture_main ul li .ms {
	margin-top: 5px
}
}
@media (max-width:320px) {
.webaboutushonor_list .swiper-container03 .swiper-slide .webahonor_img {
	height: 220px
}
.webaboutushonor_list .swiper-container03 .swiper-slide a.webaboutushonor_name {
	padding: 10px 0;
	font-size: 18px
}

@media (max-width:414px) {

 .top3>div>div>ul>li:nth-child(1) {
    opacity: 1;
top: -56px;
  left: 6.71rem;
 }

.top3>div>div>ul>li:nth-child(2) {
    opacity: 1;
       top: 28px;
    left: -0.74rem;
}
.top3>div>div>ul>li:nth-child(3){
    top: 28px;
    right: -18px;
    left: auto;
}

.top3>div>div>ul>li:nth-child(4) {
    top: 169px;
    left: 9.8%;
    
}


.top3>div>div>ul>li:nth-child(5) {
top: 169px;
    right: 8.2%;
    left: auto;
    
}
1
.top3>div>div>ul>li:nth-child(1):hover {
    background-image: url(/static/images/ye-1.png);
top: -56px;
   left: 6.71rem;
    height: 141px;
    width: 141px;
    background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(2):hover {
    background-image: url(/static/images/ye-2.png);
    top: 28px;
    left: -0.74rem;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(3):hover {
    background-image: url(/static/images/ye-3.png);
    top: 28px;
    right: -18px;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(4):hover {
    background-image: url(/static/images/ye-4.png);
    top: 169px;
    left: 9.8%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.top3>div>div>ul>li:nth-child(5):hover {
    background-image: url(/static/images/ye-5.png);
top: 169px;
    right: 8.2%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
}

 @media (max-width:390px) {
 .top3>div>div>ul>li:nth-child(1) {
    opacity: 1;
top: -56px;
  left: 6.71rem;
 }

.top3>div>div>ul>li:nth-child(2) {
    opacity: 1;
       top: 28px;
    left: -0.74rem;
}
.top3>div>div>ul>li:nth-child(3){
    top: 28px;
    right: -18px;
    left: auto;
}

.top3>div>div>ul>li:nth-child(4) {
    top: 169px;
    left: 9.8%;
    
}


.top3>div>div>ul>li:nth-child(5) {
top: 169px;
    right: 8.2%;
    left: auto;
    
}
1
.top3>div>div>ul>li:nth-child(1):hover {
    background-image: url(/static/images/ye-1.png);
top: -56px;
   left: 6.71rem;
    height: 141px;
    width: 141px;
    background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(2):hover {
    background-image: url(/static/images/ye-2.png);
    top: 28px;
    left: -0.74rem;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(3):hover {
    background-image: url(/static/images/ye-3.png);
    top: 28px;
    right: -18px;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.top3>div>div>ul>li:nth-child(4):hover {
    background-image: url(/static/images/ye-4.png);
    top: 169px;
    left: 9.8%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.top3>div>div>ul>li:nth-child(5):hover {
    background-image: url(/static/images/ye-5.png);
top: 169px;
    right: 8.2%;
    height: 141px;
    width: 141px;
     background-size: 68% auto;
    background-position: center;
    background-repeat: no-repeat;
}

}
