/*CSS Table Of Content Ends Here*/
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-color:#00459b;
  --header:#1E2023;
  --text:#555;
  --border:#E6EFFF;
  --ratting:#F8BC26;
  --bg:#f0f7ff;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.10);
}
.blue{color: var(--theme-color);}
.theme-btn {
  background: var(--theme-color);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 35px;
  padding-right: 5px;
  border-radius: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.theme-btn i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme-color);
  margin-left: 35px;
  transition: all 0.4s ease-in-out;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  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;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white);
}
.theme-btn.bg-header {
  background-color: var(--header);
}
.theme-btn.bg-header::before, .theme-btn.bg-header::after {
  background-color: var(--white);
}
.theme-btn.bg-header i {
  background-color: var(--theme-color);
  color: var(--white);
}
.theme-btn.bg-header:hover {
  color: var(--header);
}
.theme-btn.theme-btn-2 {
  background: var(--theme-color-2);
}
.theme-btn.theme-btn-2 i {
  color: var(--theme-color-2);
}
.theme-btn.theme-btn-2:hover::before, .theme-btn.theme-btn-2:hover::after {
  width: 100%;
}
.theme-btn.theme-btn-2:hover i {
  background: var(--theme-color-2);
  color: var(--white);
}

.link-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;
}

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: "Poppins", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

h1 {
  font-size: 150px;
  font-weight: 700;
  line-height: 127%;
}

h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 121%;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 140%;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

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;
}

/*


*/

.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  transition: 0.3s;
}
.header-search-bar.search-open {
  top: 0;
}

.contact-search-form-box {
  margin-top: 50px;
}
.contact-search-form-box form {
  position: relative;
}
.contact-search-form-box form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 18px;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.search-bar .contact-search-form-box input {
  border: none;
  width: 100%;
  outline: none;
  color: var(--header);
  border-bottom: 1px solid var(--border);
  font-size: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .search-bar .contact-search-form-box input {
    font-size: 22px;
  }
}
.search-bar .contact-search-form-box input::placeholder {
  color: var(--header);
}
.search-bar .contact-search-form-box i {
  color: var(--theme-color);
}
.search-bar .contact-search-form-box p {
  color: #666C78;
  padding-top: 15px;
}
.search-bar .search-bar-title {
  font-size: 25px;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}
@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}
.section-title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color);
  display: inline-block;
  position: relative;
  padding-left: 50px;
}
@media (max-width: 575px) {
  .section-title span {
    margin-bottom: 5px;
  }
}
.section-title span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color);
  width: 37px;
  top: 13px;
}
.section-title span.text-white-style {
  color: var(--white);
}
.section-title span.text-white-style::before {
  background-color: var(--white);
}
.section-title.style-2 span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color-2);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
.section-title.style-2 span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color-2);
  width: 37px;
  top: 14px;
}
.section-title.style-2 span.style-2::before {
  background-color: var(--white);
}
.section-title.style-2 h2 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-title p {
    margin-top: 0.5rem !important;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .section-title-area {
    gap: 20px;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .section-title-area .theme-btn {
    display: none;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.sect-bg {
  background-color: rgb(239, 238, 250);
}

.footer-bg {
  background-color: var(--header);
}

.section-bg-2 {
  background: rgba(86, 109, 251, 0.1);
}

.section-padding {
  padding: 120px 0;
}
.section-padding1 {
  padding:60px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes arryUpDown {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.animation__arryUpDown {
  animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }
  20% {
    opacity: 1;
    transform: translateX(-90);
  }
  80% {
    opacity: 1;
    transform: translateX(90);
  }
  100% {
    opacity: 0;
    transform: translateX(150);
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }
  20% {
    opacity: 1;
    transform: translateX(-90);
  }
  80% {
    opacity: 1;
    transform: translateX(90);
  }
  100% {
    opacity: 0;
    transform: translateX(150);
  }
}
/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
@-webkit-keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}
@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  font-family: "Poppins", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}
.header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  padding: 5px 15px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  width: 100%;
  display: block;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.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: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  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;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-color);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  overflow: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme-color);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 50px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-section-3 .header-2 {
  position: static;
}
.header-section-3.style-2 {
  position: static;
}

.header-top-section {
  background: #1E2023;
  padding: 18px 0;
}
@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper.style-2 p a {
  color: var(--theme-color-2);
}
.header-top-wrapper p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.header-top-wrapper p a {
  color: var(--theme-color);
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}
.header-top-wrapper .contact-right {
  display: flex;
  align-items: center;
  gap: 55px;
}
.header-top-wrapper .contact-right li {
  color: var(--white);
}
.header-top-wrapper .contact-right li a {
  color: var(--white);
}
.header-top-wrapper .contact-right li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.header-top-wrapper .social-icon {
  gap: 15px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .header-top-wrapper .social-icon {
    display: none !important;
  }
}
.header-top-wrapper .social-icon a {
  color: var(--white);
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme-color);
}
.header-top-wrapper .right-flag {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1600px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -450px;
  }
}
@media (max-width: 1399px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -560px;
  }
}
.header-1 .header-main {
  padding: 0 0;
}
.header-1 .header-button .theme-btn {
  padding: 35px 70px;
}
@media (max-width: 1399px) {
  .header-1 .header-button .theme-btn {
    display: none;
  }
}
.header-1 .mega-menu-wrapper {
  background-color: var(--white);
  padding-left: 40px;
}
@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding-left: 25px;
  }
}
.header-1 .container-fluid {
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 0;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-2 .header-right .social-icon {
  gap: 20px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .header-2 .header-right .social-icon {
    display: none !important;
  }
}
.header-2 .header-right .social-icon a {
  color: var(--white);
}
.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}
.header-1 .header-left .social-icon {
  gap: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 35px;
}
@media (max-width: 1399px) {
  .header-1 .header-left .social-icon {
    display: none !important;
  }
}
.header-1 .header-left .social-icon a {
  color: var(--header);
}
.header-1 .header-left .social-icon a:hover {
  color: var(--theme-color);
}
.header-1 .sidebar__toggle {
  width: 85px;
  height: 84px;
  line-height: 84px;
  text-align: center;
  background: #1E2023;
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #fff;
}
.header-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .header-logo-2 {
  display: none;
}

@media (max-width: 1199px) {
  .header-2 .header-main {
    padding: 14px 0;
  }
}
.header-2 .header-main .main-menu ul {
  margin-bottom: 0;
}
.header-2 .header-main .main-menu ul li a {
  color: var(--black);
}
.header-2 .header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.header-2 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--white) !important;
  background: var(--theme-color) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color);
}
.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--theme-color);
}
.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-2 .header-right .header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .header-2 .header-right .header-contact {
    display: none;
  }
}
.header-2 .header-right .header-contact .search-toggle {
  color: var(--white);
}
.header-2 .header-right .header-contact .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-2 .header-right .header-contact .info-items .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .content {
    text-align: center;
  }
}
.header-2 .header-right .header-contact .info-items .content span {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 5px;
  font-weight: 500;
}
.header-2 .header-right .header-contact .info-items .content h6 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}
.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--black);
}
.header-middle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 0;
  background: #1E2023;
  margin-bottom: -57px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .header-middle-wrapper {
    display: none;
  }
}
.header-middle-wrapper .left-shape {
  position: absolute;
  top: 1px;
  left: -23px;
}
.header-middle-wrapper .right-shape {
  position: absolute;
  top: 1px;
  right: -23px;
}
.header-middle-wrapper .header-middle-wrapper-info {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}
@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .content {
    text-align: center;
  }
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.69);
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 a {
  color: rgba(255, 255, 255, 0.69);
}
.header-middle-wrapper .theme-btn {
  padding: 40px 50px;
}
.header-middle-wrapper .theme-btn::before, .header-middle-wrapper .theme-btn::after {
  background-color: var(--white);
}
.header-middle-wrapper .theme-btn:hover {
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(---box-shadow);
}

.sticky.header-2 .header-logo {
  display: none;
}
.sticky.header-2 .header-logo-2 {
  display: block;
}
.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.sticky.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--theme-color);
}
.sticky.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.sticky.header-2 .header-main .sidebar__toggle {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .search-toggle {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .icon {
  background-color: var(--theme-color);
  color: var(--white);
}
.sticky.header-2 .header-right .header-contact .info-items .content span {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .content h6 {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--header);
}
.sticky.header-2 .header-right .flag-wrap {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.sticky.header-2 .header-right .flag-wrap .nice-select span {
  font-weight: 400;
  color: var(--header);
}
.sticky.header-2 .header-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.sticky.header-2 .header-right .flag-wrap .nice-select .option {
  background-color: #fff;
}
.sticky.header-2 .header-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.sticky.header-2 .header-right .flag-wrap .nice-select::after {
  border-bottom: 1px solid transparent;
  border-color: var(--header);
  border-right: 1px solid var(--header);
}
.sticky.header-2 .header-right .flag-wrap .nice-select span {
  color: var(--header);
}
.sticky.header-2 .header-right .social-icon a {
  color: var(--header);
}
.sticky.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}

.header-section-5 {
  position: relative;
  z-index: 9999;
  margin-bottom: -68px;
}
@media (max-width: 1199px) {
  .header-section-5 {
    margin-bottom: 0;
    background-color: var(--theme-color-2);
  }
}
.header-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1E2023;
  z-index: -1;
  height: 59%;
}
@media (max-width: 1199px) {
  .header-section-5::before {
    display: none;
  }
}
.header-section-5 .header-logo-3 {
  padding-top: 25px;
}
@media (max-width: 1199px) {
  .header-section-5 .header-logo-3 {
    padding-top: 10px;
  }
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
  margin-bottom: 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}

.offcanvas__wrapper .offcanvas__content .theme-btn {
  width: 100%;
  padding: 24px 30px;
  text-align: center;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
}
}


.mission_box{background: #fff;padding: 17px 25px;min-height: 216px;border-radius: 10px;margin-bottom: 30px;}
.mission_box h3{font-size: 20px;margin-bottom: 5px;text-transform: uppercase;}
.mission_box ul{margin: 0;padding: 0;list-style: none;}
.mission_box strong {color: var(--theme-color);}


.breadcrumb-section {
  position: relative;
}
.breadcrumb-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(4, 2, 0, 0.73);
}

.page-heading {
  padding: 165px 0 105px;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .page-heading {
    padding: 180px 0 105px;
  }
}
.page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  list-style: none;
}
.page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 400;
  position: relative;
}
.page-heading .breadcrumb-list li a {
  color: var(--white);
}
.page-heading .breadcrumb-list li:not(:last-child)::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 30px;
  background-color: var(--white);
  top: 13px;
  left: 58px;
}
.page-heading h2 {
  color: var(--white);
  font-weight: 700;
}
@media (max-width: 575px) {
  .page-heading h2 {
    font-size:34px;
  }
}

.error-wrapper .error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-wrapper .error-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .error-wrapper .error-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .error-wrapper .error-content {
    text-align: center;
  }
}

.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-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: 15px;
  line-height: 1.5;
  font-weight: 600;
}
.mean-container .mean-nav ul li a.border-none {
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}
.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.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: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  padding: 120px 80px 0;
  position: relative;
  z-index: 9;
  width: calc(100% - 130px);
}
@media (max-width: 1899px) {
  .hero-1 {
    padding: 120px 50px 0;
    width: initial;
  }
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 170px 40px 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 200px 30px 0;
  }
}
.hero-1 .hero-text {
  letter-spacing: -4.8px;
  -webkit-text-stroke: 1px var(--theme-color);
  -webkit-text-fill-color: transparent;
  font-size: 160px;
  font-weight: 700;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.25) 50%, #fff 50%, rgba(255, 255, 255, 0.25) 70%);
  -webkit-mask-size: 200%;
  position: absolute;
  line-height: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  top: 20%;
}
.hero-1 .hero-arrow-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-1 .hero-arrow-shape img {
  width: 100%;
  height: 100%;
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(23, 7, 1, 0.78);
  z-index: -1;
}
.hero-1 .hero-content {
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}
.hero-1 .hero-content h1 {
  color: var(--white);
  line-height: 97%;
}
@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 105px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 130%;
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
.hero-1 .hero-content h1 span {
  font-size: 88px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 span {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 span {
    font-size: 48px;
  }
}
.hero-1 .hero-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content .theme-btn {
    margin-top: 30px;
  }
}
.hero-1 .hero-image {
  text-align: right;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-1 .hero-image {
    text-align: center;
  }
}
@media (max-width: 1600px) {
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.animation-infinite2 {
  animation: ShapeAnim2 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim2 {
  0% {
    background-position: top left;
  }
  100% {
    background-position: 2000px left bottom;
  }
}
.hero-main-section {
  position: relative;
  z-index: 9;
}
.hero-main-section .line-shape {
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.hero-main-section .line-2 {
  position: absolute;
  height: 100%;
  width: 69px;
  background-repeat: repeat;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  animation: ShapeAnim2 80s linear infinite;
}
.hero-main-section .hero-list-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: rotate(-90deg);
  position: absolute;
  top: 46%;
  right: -11%;
  z-index: 99;
}
@media (max-width: 1899px) {
  .hero-main-section .hero-list-contact {
    display: none;
  }
}
.hero-main-section .hero-list-contact li {
  font-size: 18px;
  color: #616161;
  font-weight: 700;
}
.hero-main-section .hero-list-contact li a {
  font-weight: 500;
  color: rgba(97, 97, 97, 0.85);
}

.hero-section-2 {
  position: relative;
}
.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-2 .array-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  right: 50px;
  z-index: 99;
}
@media (max-width: 1199px) {
  .hero-section-2 .array-buttons {
    display: none;
  }
}
.hero-section-2 .array-buttons .array-next, .hero-section-2 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid var(--theme-color);
  color: var(--white);
  background-color: transparent;
}
.hero-section-2 .array-buttons .array-next:hover, .hero-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.hero-section-4 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-4 .array-buttons {
  display: grid;
  align-items: center;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 99;
  gap: 15px;
}
@media (max-width: 1899px) {
  .hero-section-4 .array-buttons {
    display: none;
  }
}
.hero-section-4 .array-buttons .array-next, .hero-section-4 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
  background-color: transparent;
}
.hero-section-4 .array-buttons .array-next:hover, .hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-prev {
  background: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
}
.hero-section-4 .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-2 {
  padding: 180px 0 330px;
  position: relative;
}
.hero-2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-2 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(4, 2, 0, 0.83);
}
.hero-2 .hero-content {
  position: relative;
  z-index: 99;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-2 .hero-content h1 {
  font-size: 96px;
  color: var(--white);
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-2 .hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  max-width: 600px;
  margin: 40px auto 0;
}
@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 18px;
    margin-top: 25px;
  }
}
.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
  }
}
.hero-2 .hero-content .hero-button .theme-btn {
  border: 1px solid var(--theme-color);
}
.hero-2 .hero-content .hero-button .theme-btn:hover {
  border: 1px solid var(--header);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2 {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
	border-width: 1px !important;
}
.hero-2 .hero-content .hero-button .theme-btn.style-2 i {
  background-color: var(--theme-color);
  color: var(--white);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
  border: 1px solid var(--theme-color);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before, .hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--theme-color);
}
.hero-2 .bar-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
@media (max-width: 1399px) {
  .hero-2 .bar-shape {
    display: none;
  }
}
.hero-2 .bar-shape img {
  height: 100%;
}

.hero-3 {
  position: relative;
  padding: 430px 100px 130px;
}
@media (max-width: 1600px) {
  .hero-3 {
    padding: 200px 30px 100px;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-3 .hero-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .hero-3 .hero-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-3 .hero-wrapper .left-content {
  position: relative;
}
.hero-3 .hero-wrapper .left-content h1 {
  color: var(--white);
  font-size: 96px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 42px;
  }
}
.hero-3 .hero-wrapper .right-content {
  position: relative;
}
.hero-3 .hero-wrapper .right-content p {
  color: var(--white);
}
.hero-3 .hero-wrapper .right-content .hero-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn {
    flex-wrap: wrap;
  }
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text .title {
  margin-bottom: 5px;
  color: var(--white);
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
    text-align: left;
  }
}

.hero-4 {
  position: relative;
}
.hero-4 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-4 .left-shape {
    display: none;
  }
}
.hero-4 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-4 .right-shape {
    display: none;
  }
}
.hero-4 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-4 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-4 .hero-content {
  position: relative;
  z-index: 99;
  padding: 210px 0 210px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content {
    padding: 190px 0 190px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    padding: 160px 0 160px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content {
    padding: 130px 0 130px;
  }
}
.hero-4 .hero-content h1 {
  color: var(--white);
  font-size: 96px;
  letter-spacing: -1.92px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 65px;
    line-height: 140%;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-4 .hero-content h1 .client-info {
  display: inline-block;
  border-radius: 101px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(21.8999996185px);
  padding: 0 30px;
  line-height: 1;
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 .client-info {
    padding: 10px 20px;
  }
}
.hero-4 .hero-content h1 .client-info img {
  margin-top: -15px;
}
.hero-4 .hero-content h1 .text-stoke {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
}
.hero-4 .hero-content p {
  font-size: 20px;
  max-width: 620px;
  color: var(--white);
  padding-left: 20px;
  border-left: 5px solid var(--theme-color-2);
  margin-top: 40px;
}
@media (max-width: 575px) {
  .hero-4 .hero-content p {
    font-size: 18px;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 25px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button .theme-btn {
  border: 1px solid transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  color: var(--white);
  background-color: transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2::before, .hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: var(--theme-color-2);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.hero-5 {
  position: relative;
}
.hero-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(205deg, rgba(4, 2, 0, 0) 15.95%, rgba(4, 2, 0, 0.82) 56.25%);
}
.hero-5 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .hero-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-5 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .container-fluid {
    padding: 0 30px;
  }
}
.hero-5 .hero-content {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-5 .hero-content {
    padding-top: 120px;
    margin: 0 auto;
    text-align: center;
  }
}
.hero-5 .hero-content h1 {
  font-size: 96px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 76px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 48px;
  }
}
.hero-5 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .hero-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.hero-5 .hero-content .hero-button p {
  color: var(--white);
  font-weight: 600;
  max-width: 468px;
}
.hero-5 .hero-content .hero-box {
  position: absolute;
  bottom: -90%;
  padding: 30px 50px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-box {
    display: none;
  }
}
.hero-5 .hero-content .hero-box .icon {
  font-size: 89px;
  color: var(--theme-color-2);
}
.hero-5 .hero-content .hero-box .content h2 {
  color: var(--theme-color-2);
}
.hero-5 .hero-content .hero-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.hero-5 .hero-image {
  position: relative;
}
.hero-5 .hero-image img {
  width: 100%;
  height: 100%;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .counter-wrapper {
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper .counter-items {
  max-width: 265px;
}
.counter-wrapper .counter-items h2 {
  font-size: 72px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .counter-wrapper .counter-items h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-items p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 20px;
}
.counter-wrapper .counter-items h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}
.counter-wrapper .counter-items:hover h2 {
  color: var(--theme-color) !important;
  -webkit-text-stroke: initial !important;
}

.boxes {
    background-color: #fff;
    padding: 1rem;
    margin-top: 1rem;
	margin-right: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;box-shadow: 0 0 10px #ccc;
}
.boxes h5 {
    color: var(--theme-color);
    font-weight: 600;
}
.boxes:hover {
    transform: translateY(-5px);
	background: #f7f7f7;
}

.vedio-wrapper {
  padding: 280px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .vedio-wrapper {
    padding: 170px 0;
  }
}
@media (max-width: 767px) {
  .vedio-wrapper {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .vedio-wrapper {
    padding: 120px 0;
  }
}
.vedio-wrapper .video {
  position: relative;
}
.vedio-wrapper .video .video-btn {
  width: 164px;
  height: 164px;
  line-height: 164px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color);
  display: inline-block;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 767px) {
  .vedio-wrapper .video .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
.vedio-wrapper .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}
.vedio-wrapper .video .circle-image img {
  animation: cir36 10s linear infinite;
}
.vedio-wrapper .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .vedio-wrapper .watch-text {
    display: none;
  }
}

.vedio-bg-section {
  position: relative;
  background-attachment: fixed;
}
.vedio-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.26);
}


.work-process-main-item {
  position: relative;
  margin-top: 30px;
}
.work-process-main-item h2 {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 56px;
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 1199px) {
  .work-process-main-item h2 {
    display: none;
  }
}
.work-process-main-item h2.style-2 {
  right: 14px;
  top: 58px;
}
.work-process-main-item .arrow-shape {
  position: absolute;
  right: -145px;
  top: 60px;
}
@media (max-width: 1199px) {
  .work-process-main-item .arrow-shape {
    display: none;
  }
}
.work-process-main-item .arrow-shape.style-3 {
  top: -40px;
  right: -140px;
}
.work-process-main-item .work-process-item {
  text-align: center;
}
.work-process-main-item .work-process-item .icon {
  width: 112px;
  height: 108px;
  line-height: 120px;
  text-align: center;
  background-color: var(--theme-color);
  margin: 0 auto;
  font-size: 55px;
  color: var(--white);
}
.work-process-main-item .work-process-item .icon i {
  display: block;
}
.work-process-main-item .work-process-item .work-process-content {
  margin-top: 40px;
}
.work-process-main-item .work-process-item .work-process-content h3 {
  color: var(--white);
  margin-bottom: 10px;
}
.work-process-main-item .work-process-item .work-process-content p {
  color: var(--white);
}
.work-process-main-item .work-process-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.work-process-main-item.style-2 h2 {
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
}
.work-process-main-item.style-2 .work-process-item .work-process-content h3 {
  color: var(--header);
}
.work-process-main-item.style-2 .work-process-item .work-process-content p {
  color: var(--text);
}

.work-process-section {
  position: relative;
}
.work-process-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

.work-process-wrapper {
  position: relative;
}
.work-process-wrapper .shape-1 {
  position: absolute;
  left: 270px;
  top: -22px;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-1 {
    display: none;
  }
}
.work-process-wrapper .shape-2 {
  position: absolute;
  right: 170px;
  top: -22px;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-2 {
    display: none;
  }
}
.work-process-wrapper .shape-3 {
  position: absolute;
  left: 43%;
  bottom: 37%;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-3 {
    display: none;
  }
}
.work-process-wrapper .work-process-item {
  text-align: center;
  margin-top: 30px;
}
.work-process-wrapper .work-process-item .work-process-image {
  position: relative;
}
.work-process-wrapper .work-process-item .work-process-image img {
  width: 100%;
  height: 100%;
}
.work-process-wrapper .work-process-item .work-process-image .process-number {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color-2);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 1;
}
.work-process-wrapper .work-process-item .content {
  margin-top: 40px;
}
.work-process-wrapper .work-process-item .content h4 {
  margin-bottom: 15px;
}

.work-process-section-2 {
  position: relative;
  padding: 60px 0;
}
.work-process-section-2 .left-shape {
  position: absolute;
  left: -110px;
  top: -180px;
}
@media (max-width: 1199px) {
  .work-process-section-2 .left-shape {
    display: none;
  }
}

.why-choose-us-section .right-shape {
  position: absolute;
  top: -30%;
  right: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section .right-shape {
    display: none;
  }
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 80px;
}
@media (max-width: 1199px) {
  .choose-us-section-2 .right-shape {
    display: none;
  }
}


@media (max-width: 767px) {
  .about-wrapper .section-title {
    text-align: left;
  }
}
.about-wrapper .section-title h2 {
  margin-left: 180px;
}
@media (max-width: 767px) {
  .about-wrapper .section-title h2 {
    margin-left: 0;
  }
}
.about-wrapper .about-image {
  margin-top: 30px;
  margin-left: -30%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image {
    margin-left: 0;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-content {
  margin-top: 30px;
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-box-wrap {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-left: -37%;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-box-wrap {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-box-wrap .about-box-items {
  background-color: var(--header);
  padding: 55px 60px;
  text-align: center;
  max-width: 540px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-box-wrap .about-box-items {
    padding: 30px 20px;
  }
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .client-img {
  border: 2px solid var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .content h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.about-wrapper .about-content .about-box-wrap .about-box-items p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.about-wrapper .about-content .about-box-wrap .medal-content {
  text-align: center;
}
.about-wrapper .about-content .about-box-wrap .medal-content h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}
.about-wrapper .about-content .about-list {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-list {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-list li {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.about-wrapper .about-content .about-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-content .about-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-btn {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-btn .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 22px;
}
.about-wrapper .about-content .about-btn .icon-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-btn .icon-items span {
  font-size: 14px;
  font-weight: 500;
}
.about-wrapper .about-content .about-btn .icon-items h4 {
  font-size: 18px;
  font-weight: 600;
  font-weight: "Poppins", sans-serif;
}

.about-wrapper-2 {
  margin:60px 0 70px;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-top: 55px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-top: 0;
  }
}
.about-wrapper-2 .about-shape {
  position: absolute;
  top: 25px;
  left: 80px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-shape {
    display: none;
  }
}
.about-wrapper-2 .about-image {
  max-width: 555px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: 1000px;
  }
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image .about-image-1 {
  clip-path: polygon(50% 0%, 100% 0, 100% 43%, 100% 81%, 100% 100%, 16% 100%, 0 85%, 0% 43%, 0 0);
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-1 {
    margin-top: 0;
  }
}

.about-wrapper-2 .about-content {
  margin-left: 10px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
  .about-wrapper-2 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-2 .about-content .about-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

.about-wrapper-2 .about-content .about-button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-button {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}
.about_us_page_introduction {
    padding: 5rem 0 3rem;
    background: #f2f8ff;
}
.about_us_page_introduction img {
    padding: .5rem;
    border: 1px solid #ccc;
}
.about_us_page_introduction h6 {
    font-size: 18px;
    font-weight: 600;
}
.about_us_page_introduction h1, .about_us_page_introduction h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.about_us_page_introduction p {
    font-size: 16px;margin-top: 10px;
}

.service-card-items {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 15px;
  margin-top: 30px;
}
.service-card-items .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-items .service-content {
  text-align: center;
  padding: 0px 35px 40px;
}
.service-card-items .service-content .icon {
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 105px;
  background-color: var(--theme-color);
  text-align: center;
  margin: 0 auto;
  margin-top: -40px;
  position: relative;
  margin-bottom: 25px;
  font-size: 41px;
  color: var(--white);
}
.service-card-items .service-content .icon i {
  display: block;
}
.service-card-items .service-content h4 {
  margin-bottom: 10px;
}
.service-card-items .service-content h4 a:hover {
  color: var(--theme-color);
}
.service-card-items .service-content .link-btn {
  margin-top: 30px;
  display: inline-block;
}
.service-card-items:hover .service-content .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section-2 {
  position: relative;
  z-index: 9;
}
.service-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 68%;
  height: initial;
  z-index: -1;
}
.service-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 50px;
}
@media (max-width: 1399px) {
  .service-section-2 .left-shape {
    display: none;
  }
}
.service-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .service-section-2 .right-shape {
    display: none;
  }
}
.service-section-2 .dot-shape {
  position: absolute;
  right: 127px;
  top: 198px;
}
@media (max-width: 1399px) {
  .service-section-2 .dot-shape {
    display: none;
  }
}
.service-section-2 .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 362px;
  z-index: -1;
  height: 70px;
}
@media (max-width: 1399px) {
  .service-section-2 .line-shape {
    display: none;
  }
}

.service-card-items-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 50px;
  margin-top: 30px;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
@media (max-width: 1199px) {
  .service-card-items-2 {
    clip-path: none;
    padding: 25px;
  }
}
.service-card-items-2 .service-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-items-2 .service-icon img {
  display: block;
}
.service-card-items-2 .service-icon .text h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.service-card-items-2 .service-content {
  margin-top: 50px;
}
.service-card-items-2 .service-content h3 {
  margin-bottom: 15px;
}
.service-card-items-2 .service-content h3 a:hover {
  color: var(--theme-color);
}
.service-card-items-2 .service-content .link-btn {
  display: inline-block;
  margin-top: 40px;
}
.service-card-items-2 .service-content .link-btn i {
  margin-left: 10px;
}
.service-card-items-2:hover .service-icon img {
  animation: icon-bounce 0.8s 1;
}

.service-card-items-3 {
  background: #f8f7f7;
  margin-top: 30px;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
  padding:30px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .service-card-items-3 {
    text-align: center;
  }
}
.service-card-items-3 .icon {
  margin-bottom: 25px;
}
.service-card-items-3 .icon i {
  display: block;
}
.service-card-items-3 .service-content h5 {
  margin-bottom: 15px;
}
.service-card-items-3 .service-content h5 a:hover {
  color: var(--theme-color);
}
.service-card-items-3 .service-content .link-btn {
  display: inline-block;
  margin-top: 30px;
}
.service-card-items-3:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section {
  position: relative;
  z-index: 9;
}
.service-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 60%;
  height: initial;
  z-index: -1;
}
.service-section .right-shape {
  position: absolute;
  top: 40px;
  right: 127px;
  z-index: -1;
}

.service-section-3 {
  position: relative;
}
.service-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.service-box-item {
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(4, 7, 56, 0.12);
    margin: 20px 5px;
}
.service-box-item .service-header {
  padding: 10px 50px;
}
@media (max-width: 1399px) {
  .service-box-item .service-header {
    padding: 10px 35px;
  }
}
@media (max-width: 575px) {
  .service-box-item .service-header {
    padding: 10px 25px;
  }
}
.service-box-item .service-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-box-item .service-header .header .icon {
  width: 88px;
  height: 88px;
  line-height: 97px;
  text-align: center;
  background-color: var(--theme-color);
  margin-bottom: 28px;
  margin-top: -20px;
  font-size: 40px;
  color: var(--white);
}
.service-box-item .service-header .header .icon i {
  display: block;
}
.service-box-item .service-header .header h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0 72 152 / 26%);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(0 72 152 / 26%);
  -webkit-text-fill-color: transparent;
}
.service-box-item .service-header h4 {
  margin-bottom: 10px;
}
.service-box-item .service-header h4 a:hover {
  color: var(--theme-color);
}
.service-box-item .service-image img {
  width: 100%;
  height: 100%;
}
.service-box-item .service-content {
  padding:20px 30px;
}
@media (max-width: 1399px) {
  .service-box-item .service-content {
    padding: 30px 35px;
  }
}
@media (max-width: 575px) {
  .service-box-item .service-content {
    padding: 20px 25px;
  }
}
.service-box-item .service-content .service-list {
  margin-top: 30px;
  margin-bottom: 40px;
}
.service-box-item .service-content .service-list li {
  font-size: 16px;
  font-weight: 500;
}
.service-box-item .service-content .service-list li i {
  color: var(--theme-color);
  margin-right: 6px;
}
.service-box-item .service-content .service-list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-box-item:hover .service-header .header .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section-4 .service-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .service-section-4 .service-btn {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
  }
}
.service-section-4 .service-btn span {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  max-width: 340px;
  display: inline-block;
}
.service-section-4 .section-title h2 {
  line-height: 1.4;font-size: 42px;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title h2 {
    margin-left: 0;
    line-height: initial;
  }
}

.service-wrapper {
  margin-top: -210px;
  position: relative;
  z-index: 9;
}

.service-top-wrapper {
  margin-right: -37%;
}
@media (max-width: 1199px) {
  .service-top-wrapper {
    margin-right: 0;
  }
}
.service-top-wrapper .service-top-box {
  padding: 20px;
  background-color: var(--white);
  margin-top: 30px;
}
.service-top-wrapper .service-top-box .service-content {
  padding: 10px 20px;
}
.service-top-wrapper .service-top-box .service-content h4 {
  margin-bottom: 15px;
}
.service-top-wrapper .service-top-box .service-content h4 a:hover {
  color: var(--theme-color);
}
.service-top-wrapper .service-top-box .service-content .link-btn {
  display: inline-block;
  margin-top: 20px;
}
.service-top-wrapper .service-top-box .service-image {
  margin-top: 30px;
  position: relative;
}
.service-top-wrapper .service-top-box .service-image img {
  width: 100%;
  height: 100%;
}
.service-top-wrapper .service-top-box .service-image .icon {
  position: absolute;
  width: 88px;
  height: 88px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme-color);
  top: -36px;
  right: 25px;
  font-size: 41px;
  color: var(--white);
}
.service-top-wrapper .service-top-box .service-image .icon img {
  width: initial;
  height: initial;
}

.service-section-4 {
  position: relative;
  z-index: 9;
}
.service-section-4 .top-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.service-section-5 {
  position: relative;
}
.service-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.service-section-5 .section-title-area .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .service-section-5 .section-title-area .array-buttons {
    display: none;
  }
}
.service-section-5 .section-title-area .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.service-section-5 .section-title-area .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.service-section-5 .section-title-area .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.service-section-5 .section-title-area .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.service-wrapper-2 {
  position: relative;
  z-index: 9;
}
.service-wrapper-2 .service-box-items-2 {
  text-align: center;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.service-wrapper-2 .service-box-items-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color-2);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.service-wrapper-2 .service-box-items-2 .icon {
  color: var(--theme-color-2);
  font-size: 47px;
  margin-bottom: 20px;
}
.service-wrapper-2 .service-box-items-2 .icon i {
  display: block;
}
.service-wrapper-2 .service-box-items-2 .content h6 {
  font-weight: 600;
  line-height: 175%;
}
.service-wrapper-2 .service-box-items-2 .content h6 a {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2 .content h6 a:hover {
  color: var(--theme-color);
}
.service-wrapper-2 .service-box-items-2:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-wrapper-2 .service-box-items-2:hover .icon {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.service-wrapper-2 .service-box-items-2:hover .content h6 a {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2:hover .content p {
  color: var(--white);
}
.service-wrapper-2 .service-pagi-items {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .service-wrapper-2 .service-pagi-items {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-wrapper-2 .service-pagi-items {
    justify-content: center;
    margin-top: 20px;
  }
}
.service-wrapper-2 .service-pagi-items .service-dot .swiper-pagination-bullet {
  width: 218px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: 0.6s;
  margin: 0 !important;
  margin-top: 10px;
}
.service-wrapper-2 .service-pagi-items .service-dot .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color-2);
  width: 200px;
  height: 3px;
}
@media (max-width: 767px) {
  .service-wrapper-2 .service-pagi-items .service-dot {
    display: none;
  }
}

.services-bg-section {
  position: relative;
  margin: 0 100px;
  background-attachment: fixed;
}
@media (max-width: 1600px) {
  .services-bg-section {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .services-bg-section {
    margin: 0;
  }
}
.services-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.68);
}

.service-bg-main-section {
  position: relative;
}
.service-bg-main-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(86, 109, 251, 0.1);
  height: 50%;
}

.service-left-content {
  position: relative;
}
.service-left-content .service-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-left-content .service-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.service-left-content .service-button .video-button {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 575px) {
  .service-left-content .service-button .video-button {
    justify-content: center;
    display: grid;
    text-align: center;
  }
}
.service-left-content .service-button .video-button .video-btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color-2);
  display: inline-block;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 575px) {
  .service-left-content .service-button .video-button .video-btn {
    margin: 0 auto;
  }
}
.service-left-content .service-button .video-button h6 {
  color: var(--white);
  font-weight: 600;
  line-height: 163%;
}

.service-card-item-4 {
  margin-top: 30px;
}
.service-card-item-4 .service-image {
  position: relative;
}
.service-card-item-4 .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-item-4 .service-image .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 41px;
  color: var(--white);
  position: absolute;
  left: 10px;
  top: -12px;
}
.service-card-item-4 .service-image .icon i {
  display: block;
}
.service-card-item-4 .service-content {
  margin-top: 30px;
}
.service-card-item-4 .service-content h4 {
  margin-bottom: 15px;
}
.service-card-item-4 .service-content h4 a:hover {
  color: var(--theme-color-2);
}
.service-card-item-4 .service-content .link-btn {
  color: var(--theme-color-2);
  margin-top: 20px;
  display: inline-block;
}
.service-card-item-4:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-bg-section-2 {
  position: relative;
}
.service-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(231deg, rgba(4, 2, 0, 0) 27.51%, rgba(4, 2, 0, 0.83) 67.94%);
}

.service-bg-wrapper {
  position: relative;
}
.service-bg-wrapper .service-content .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-bg-wrapper .service-content .icon-wrapper {
    display: grid;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .service-bg-wrapper .service-content .icon-wrapper .icon-item {
    display: grid;
    text-align: center;
    justify-content: center;
  }
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item .icon {
  color: var(--theme-color-2);
  font-size: 60px;
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.service-bg-wrapper .service-white-box {
  padding: 60px 0px;
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
}
.service-bg-wrapper .service-white-box .icon-image {
  margin-bottom: 20px;
}
.service-bg-wrapper .service-white-box h5 {
  font-weight: 600;
}
.service-bg-wrapper .service-white-box .service-counter {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-top: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .service-bg-wrapper .service-white-box .service-counter {
    display: grid;
    text-align: center;
  }
}
.service-bg-wrapper .service-white-box .service-counter .icon {
  font-size: 83px;
  color: var(--theme-color-2);
}
.service-bg-wrapper .service-white-box .service-counter .content {
  text-align: left;
}
@media (max-width: 1199px) {
  .service-bg-wrapper .service-white-box .service-counter .content {
    text-align: center;
  }
}
.service-bg-wrapper .service-white-box .service-counter .content h2 {
  color: var(--theme-color-2);
}
.service-bg-wrapper .service-white-box .service-counter .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.service-bg-wrapper.style-2 .service-content .icon-wrapper .icon-item .icon {
  color: var(--theme-color);
  font-size: 60px;
}
.service-bg-wrapper.style-2 .service-content .icon-wrapper .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.service-bg-wrapper.style-2 .service-white-box {
  padding: 60px 0px;
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
}
.service-bg-wrapper.style-2 .service-white-box .icon-image {
  margin-bottom: 20px;
}
.service-bg-wrapper.style-2 .service-white-box h5 {
  font-weight: 600;
}
.service-bg-wrapper.style-2 .service-white-box .service-counter .icon {
  color: var(--theme-color);
}
.service-bg-wrapper.style-2 .service-white-box .service-counter .content h2 {
  color: var(--theme-color);
}

.service-details-wrapper .details-image {
  margin-bottom: 30px;
}
.service-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .details-content h3 {
  font-size: 36px;
  margin-bottom: 15px;
}
.service-details-wrapper .details-content h4 {
  margin-top: 50px;
  margin-bottom: 15px;
}
.service-details-wrapper .details-content .details-item {
  margin-top: 30px;
  margin-bottom: 50px;
}
.service-details-wrapper .details-content .details-item .thumb img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .details-content .details-item .content {
  margin-left: 10px;
}
.service-details-wrapper .details-content .details-item .content .list {
  margin-top: 18px;
  margin-bottom: 30px;
}
.service-details-wrapper .details-content .details-item .content .list li {
  font-weight: 500;
  color: var(--header);
  font-size: 15px;
}
.service-details-wrapper .details-content .details-item .content .list li i {
  color: var(--theme-color);
  margin-right: 5px;
}
.service-details-wrapper .details-content .details-item .content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .details-content .details-item .content .icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.service-details-wrapper .details-content .details-item .content .icon-item .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.service-details-wrapper .details-content .details-item .content .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget {
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 30px 30px 0px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li {
  background-color: var(--bg);
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li:not(:last-child) {
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a i{transition: .3s;}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a:hover i{padding-right: 15px;}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a:hover{color: var(--theme-color);}
.active{color: var(--theme-color);padding-right: 15px;}
.active i{padding-right: 15px;}

.service-section-6 .section-title h2 {
  margin-left: 215px;
}
@media (max-width: 1199px) {
  .service-section-6 .section-title h2 {
    margin-left: 0;
  }
}

.shop-box-items {
  text-align: center;
  margin-top: 30px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  padding: 55px 40px;
}
@media (max-width: 1399px) {
  .shop-box-items {
    padding: 30px 10px;
  }
}
@media (max-width: 991px) {
  .shop-box-items {
    padding: 30px 20px;
  }
}
.shop-box-items .thumb {
  position: relative;
}
.shop-box-items .thumb .theme-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.shop-box-items .content {
  margin-top: 40px;
}

.shop-box-items .content h4 {
  font-size: 18px;
  font-weight: 600;
}
.shop-box-items .content h4 a:hover {
  color: var(--theme-color);
}
.shop-box-items .content .price-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}
.shop-box-items .content .price-list li {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}
.shop-box-items .content .price-list li del {
  font-weight: 500;
  color: rgba(100, 105, 112, 0.47);
}
.shop-box-items:hover .thumb .theme-btn {
  opacity: 1;
  visibility: visible;
}

.product-details-wrapper .shop-details-image {
  position: relative;
}
.product-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.product-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  max-width: 115px;
}
.product-details-wrapper .shop-details-image .shop-thumb 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 h2 {
  font-size: 49px;
}
@media (max-width: 767px) {
  .product-details-wrapper .product-details-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .product-details-wrapper .product-details-content h2 {
    font-size: 32px;
  }
}

.product-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.product-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
}
.product-details-wrapper .product-details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .product-details-wrapper .product-details-content .cart-quantity {
    flex-wrap: wrap;
  }
}
.product-details-wrapper .product-details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  line-height: 1;
  justify-content: space-between;
}
.product-details-wrapper .product-details-content .cart-quantity .qty button,
.product-details-wrapper .product-details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 24px;
}
.product-details-wrapper .product-details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--theme-color);
  color: var(--white);
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-transform: capitalize;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn:hover {
  background-color: var(--header);
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item .icon {
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item .icon:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.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: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
}
.product-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}
.product-details-wrapper .single-tab {
  padding-top: 60px;
}
.product-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.product-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.product-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme-color);
  transition: 0.3s;
}
@media (max-width: 470px) {
  .product-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}
.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;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@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;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.product-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) {
  .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: 14px;
  margin-left: 30px;
}

.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: capitalize;
}
.product-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: var(--theme-color);
}
.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;
  text-transform: capitalize;
}
@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: 16px;
  border: none;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

@media (max-width: 1199px) {
  .shop-section .section-title-area .theme-btn {
    display: none;
  }
}

.common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.common-table .cart-item-thumb {
  width: 86px;
}
@media (max-width: 1399px) {
  .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}
.common-table .cart-item-thumb .head {
  color: #1B1F2A;
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}
.common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead,
.common-table tbody {
  width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
}

.common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.quantity button i {
  font-size: 16px;
}

.quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

@media (max-width: 767px) {
  .cart-list-area .table-responsive {
    overflow-x: scroll;
  }
}
@media (max-width: 991px) {
  .cart-list-area .table-responsive .table {
    width: 900px;
  }
}
.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
}
.cart-list-area .theme-btn {
  transition: all 0.4s ease-in-out;
  padding: 18px 30px;
  line-height: 1;
}

.cart-total-area {
  margin-top: -10px;
}
.cart-total-area h3 {
  font-size: 40px;
  margin-bottom: 5px;
}
.cart-total-area ul {
  margin-bottom: 50px;
}
.cart-total-area ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 220px;
  border-bottom: 1px solid #E4E4E5;
  padding-bottom: 25px;
  padding-top: 25px;
}
.cart-total-area ul li .subtotal {
  color: #666C78;
  font-weight: 400;
  margin-left: -30px;
}
.cart-total-area ul li .price {
  font-weight: 700;
  font-size: 22px;
  flex-basis: 30%;
}
.cart-total-area .theme-btn {
  transition: all 0.4s ease-in-out;
  padding: 22px 30px;
  line-height: 1;
}

.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);
  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 ::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 .input-single .nice-select .list {
  width: 100%;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .option {
  background-color: var(--bg);
  border: none;
}
.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);
  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);
  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: 1px solid var(--border);
  background-color: var(--theme-color);
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.checkout-single-wrapper .theme-btn {
  padding: 22px 40px;
}

.project-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: -210px;
}
@media (max-width: 1199px) {
  .project-section-5 .right-shape {
    display: none;
  }
}

.main-sidebar .single-sideber-widget .contact-bg-image {
  position: relative;
  height: 553px;
}
.main-sidebar .single-sideber-widget .contact-bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.87) 72.69%);
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content {
  position: absolute;
  bottom: 40px;
  top: initial;
  left: 20px;
  right: 20px;
  text-align: center;
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content h4 {
  color: var(--white);
  margin-bottom: 5px;
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content p {
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-box-items {
  margin-top: 30px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  padding: 50px 40px;
}
@media (max-width: 1399px) {
  .pricing-box-items {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .pricing-box-items {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .pricing-box-items {
    padding: 30px 20px;
  }
}
.pricing-box-items .pricing-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-box-items .pricing-header h2 {
  color: var(--theme-color);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin-top: 30px;
}
.pricing-box-items .pricing-header h2 sup {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  top: -1.5em;
  margin-right: -10px;
}
.pricing-box-items .pricing-header h2 sub {
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  font-weight: "Poppins", sans-serif;
  margin-left: -10px;
}
.pricing-box-items .pricing-btn {
  margin-top: 40px;
  margin-bottom: 40px;
}
.pricing-box-items .pricing-btn .theme-btn {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--header);
  width: 100%;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-box-items .pricing-btn .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.pricing-box-items .pricing-btn .theme-btn::before, .pricing-box-items .pricing-btn .theme-btn::after {
  background-color: var(--theme-color);
}
.pricing-box-items .pricing-btn .theme-btn:hover {
  color: var(--white);
}
.pricing-box-items .pricing-btn .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}
.pricing-box-items h5 {
  font-size: 16px;
  font-weight: 600;
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list li {
  color: rgba(30, 32, 35, 0.8);
}
.pricing-box-items .pricing-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-box-items.active {
  border: 2px solid #1E2023;
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  position: relative;
}
.pricing-box-items.active .professional {
  background: #FF792D;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 9px 20px;
  position: absolute;
  right: 47px;
  top: -18px;
  z-index: 9;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-color);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: var(--theme-color);
  opacity: 1;
  border-radius: 7px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  content: "";
}

.swiper-dot3 {
  text-align: center;
}
.swiper-dot3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  border: 1px solid var(--text);
  border-radius: 0;
  opacity: 1;
  position: relative;
}
.swiper-dot3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 0;
}
.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-color);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.array-button {
  display: flex;
  align-items: center;
  gap: 18px;
}
.array-button .array-prev, .array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.array-button.style-2 .array-prev {
  border: 1px solid var(--border);
}
.array-button.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}
.array-button.style-2 .array-next:hover {
  background-color: var(--header);
}

/*
@media (max-width: 575px) {
  br {
    display: none;
  }
}
*/

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.custom-container {
  max-width: 1560px;
  margin: 0 auto;
}

.custom-container-33 {
  max-width: 1319px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1568px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.footer-info-container {
  max-width: 1436px;
}

@media (max-width: 991px) {
  .lg-center {
    justify-content: center;
    text-align: center;
  }
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background-color: rgb(129, 129, 129);
  opacity: 1;
  border-radius: 100%;
  position: relative;
}
.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 30px;
  border-radius: 30px;
}

.custom-container-3 {
  max-width: 1768px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .style-center {
    text-align: center;
  }
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.array-buttons .array-prev, .array-buttons .array-next {
  width: 55px;
  height: 55px;
  height: 55px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover, .array-buttons .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.array-buttons.style-2 .array-prev {
  border: 1px solid var(--border);
}
.array-buttons.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}
.array-buttons.style-2 .array-next:hover {
  background-color: var(--header);
}
.array-buttons.news-buttons .array-prev {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background-color: transparent;
  color: var(--theme-color-2);
}
.array-buttons.news-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}
.array-buttons.news-buttons .array-next {
  background-color: var(--header);
  color: var(--white);
}
.array-buttons.news-buttons .array-next:hover {
  background-color: var(--theme-color-2);
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 54px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--header);
  background: transparent;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}

.faq-wrapper .faq-image {
  max-width: 570px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    max-width: 800px;
  }
}
.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 0 99%, 0 77%, 0 12%, 14% 0);
}
.faq-wrapper .faq-content .section-title {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .faq-wrapper .faq-content .section-title {
    text-align: left;
  }
}
.faq-wrapper .faq-content .faq-items {
  position: relative;
  z-index: 9;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(30, 32, 35, 0.12);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 29px 30px;
  font-family: "Poppins", sans-serif;
  color: var(--header);
  cursor: pointer;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 29px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme-color);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f067";
}
.faq-wrapper.style-faq-page {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .faq-wrapper.style-faq-page {
    margin-top: 30px;
  }
}

.faq-section {
  position: relative;
  z-index: 9;
}
.faq-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
.faq-section .dot-shape {
  position: absolute;
  top: 108px;
  left: 268px;
  z-index: -1;
}
.cta-wrapper .cta-content p {
  max-width: 435px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  margin-bottom: 30px;
}
.cta-wrapper{padding: 90px 0;}


.counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper-2 {
    justify-content: center;
  }
}
.counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .counter-wrapper-2 .counter-item {
    display: grid;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper-2 .counter-item h2 {
  color: var(--theme-color);
  font-size: 55px;
}
.counter-wrapper-2 .counter-item h5 {
  font-size: 16px;
  font-weight: 600;
}

.cta-bg-section {
  position: relative;
}
.cta-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: -50%;
}

.cta-bg-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper {
    padding: 40px 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.cta-bg-wrapper .content {
  z-index: 1;
}
.cta-bg-wrapper .content h2 {
  color: var(--theme-color);
  font-size: 56px;
}
.cta-bg-wrapper .content p {
  color: var(--white);
}
.cta-bg-wrapper h4 {
  color: var(--white);
  z-index: 1;
}

.cta-bg-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 {
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper-2 .cta-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 .cta-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 .cta-item {
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper-2 .cta-item .cta-image {
  border: 4px solid var(--white);
}
.cta-bg-wrapper-2 .cta-item .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-bg-wrapper-2 .cta-item .content h4 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-bg-wrapper-2 .cta-item .content p {
  color: var(--white);
}

.cta-bg-section-2 {
  position: relative;
}
.cta-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-3 {
    padding: 120px 0;
  }
}
@media (max-width: 1199px) {
  .cta-bg-wrapper-3 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .cta-bg-wrapper-3 {
    padding: 80px 0;
  }
}
.cta-bg-wrapper-3 .cta-image {
  margin-left: -310px;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-3 .cta-image {
    display: none;
  }
}
.cta-bg-wrapper-3 .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-bg-wrapper-3 .cta-content {
  margin-left: 50px;
  max-width: 640px;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-3 .cta-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .section-title {
    text-align: left;
  }
}
.cta-bg-wrapper-3 .cta-content h4 {
  margin-bottom: 15px;
}
.cta-bg-wrapper-3 .cta-content .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .cta-bg-wrapper-3 .cta-content .list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .list-item {
    margin-top: 30px;
    display: grid;
  }
}
.cta-bg-wrapper-3 .cta-content .list-item ul li {
  font-weight: 500;
  color: var(--header);
}
.cta-bg-wrapper-3 .cta-content .list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cta-bg-wrapper-3 .cta-content .list-item ul li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.cta-bg-wrapper-3 .cta-content .list-item .icon-item {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .list-item .icon-item {
    display: grid;
  }
}
.cta-bg-wrapper-3 .cta-content .list-item .icon-item h6 {
  line-height: 175%;
}
.cta-bg-wrapper-3 .cta-right .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.cta-bg-wrapper-3 .cta-right .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.cta-bg-wrapper-3 .cta-right .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.cta-bg-wrapper-3 .cta-right .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.counter-box-item {
  position: relative;
  padding: 60px 0;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
  z-index: 9;
}
.counter-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/hover-bg.jpg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.counter-box-item .icon {
  font-size: 62px;
  color: var(--theme-color-2);
  margin-bottom: 10px;
}
.counter-box-item .icon i {
  display: block;
}
.counter-box-item .content h2 {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color-2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .counter-box-item .content h2 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .counter-box-item .content h2 {
    font-size: 42px;
  }
}
.counter-box-item .content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
.counter-box-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.counter-box-item:hover::before {
  opacity: 1;
  visibility: visible;
}
.counter-box-item:hover .content h2 {
  color: var(--theme-color-2) !important;
  -webkit-text-stroke: initial !important;
}
.counter-box-item:hover .content p {
  color: var(--white);
}

.counter-section-5 {
  position: relative;
}
.counter-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(86, 109, 251, 0.1);
  top: 77%;
}

.testimonial-box-items {
  margin-top: 30px;
  padding: 0 70px;
  position: relative;
  z-index: 9;
  text-align: center;
  clip-path: polygon(0 0, 84% 0, 100% 22%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.testimonial-box-items .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme-color);
  margin: 0 auto 30px;
}
.testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  top: 45px;
  height: initial;
  bottom: 28px;
}

.testimonial-box-items h4 {
  margin-bottom: 10px;
}
.testimonial-box-items .client-info {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 30px;
}
.testimonial-box-items .client-info h5 {
  font-size: 18px;
  font-weight: 600;
}
.testimonial-box-items .client-info .client-img {
  margin-top: 20px;
}

.testimonial-section {
  position: relative;
  z-index: 9;
  margin: 0 100px;
}
@media (max-width: 1600px) {
  .testimonial-section {
    margin: 0;
  }
}
.testimonial-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(30, 32, 35, 0.96);
}
.testimonial-section .line-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.testimonial-section .line-shape img {
  width: 100%;
  height: 100%;
}
.testimonial-section .circle-shape {
  position: absolute;
  right: 0;
  top: 0;
}
.testimonial-section .dot-shape {
  position: absolute;
  top: 160px;
  right: 160px;
}
.testimonial-section .array-buttons {
  position: initial;
}
@media (max-width: 1199px) {
  .testimonial-section .array-buttons {
    display: none;
  }
}
.testimonial-section .array-buttons .array-prev {
  position: absolute;
  bottom: 36%;
  left: 7%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.testimonial-section .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section .array-buttons .array-next {
  position: absolute;
  bottom: 36%;
  right: 7%;
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.testimonial-box-item-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #fdfdfd;
  padding: 50px 50px 15px 108px;
  position: relative;
  margin-left: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .testimonial-box-item-2 {
    margin-left: 0;
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-box-item-2 {
    text-align: center;
    padding: 30px;
  }
}
.testimonial-box-item-2 .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  left: -20px;
  top: 10px;
}
@media (max-width: 1199px) {
  .testimonial-box-item-2 .icon {
    position: static;
  }
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .icon {
    margin: 0 auto 25px;
  }
}
.testimonial-box-item-2 .test-content .star {
  color: var(--theme-color);
  margin-bottom: 5px;
}
.testimonial-box-item-2 .test-content h5 {
  margin-bottom: 10px;
}
.testimonial-box-item-2 .test-content p {
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.testimonial-box-item-2 .test-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item {
    display: grid;
    gap: 20px;
    justify-content: center;
  }
}
.testimonial-box-item-2 .test-content .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item .client-info {
    display: grid;
  }
}

.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .left-shape {
  position: absolute;
  left: -20;
  bottom: -144px;
}
.testimonial-section-2 .array-buttons {
  position: initial;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .array-buttons {
    display: none;
  }
}
.testimonial-section-2 .array-buttons .array-prev {
  position: absolute;
  bottom: 34%;
  left: 13%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.testimonial-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section-2 .array-buttons .array-next {
  position: absolute;
  bottom: 34%;
  right: 12%;
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section-2 .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
@media (max-width: 991px) {
  .testimonial-section-2 .section-title-area {
    text-align: left;
  }
}
.testimonial-section-2 .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-section-2 .section-title-area .client-info .text .title {
  margin-bottom: 5px;
}
.testimonial-section-2 .section-title-area .client-info .text h6 {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-bg-section {
  position: relative;
}
.testimonial-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.testimonial-bg-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 84%;
}

.testimonial-wrapper {
  position: relative;
  margin-right: -44%;
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    margin-right: 0;
  }
}
.testimonial-wrapper .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-wrapper .array-buttons {
    display: none;
  }
}
.testimonial-wrapper .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.testimonial-wrapper .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme-color-2);
}

.testimonial-wrapper-2 {
  margin-top: 60px;
}
.testimonial-wrapper-2 .testimonial-item {
  max-width: 569px;
}
.testimonial-wrapper-2 .testimonial-item .image-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 100px;
    height: 100px;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-button {
    display: none;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons {
  position: relative;
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-content .star {
  color: var(--theme-color-2);
  margin-bottom: 15px;
}
.testimonial-wrapper-2 .testimonial-content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: "Poppins", sans-serif;
}
.testimonial-wrapper-2 .testimonial-content .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.testimonial-wrapper-2 .testimonial-content .info-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.news-section-3 .right-shape {
  position: absolute;
  right: 122px;
  top: 152px;
}
@media (max-width: 1199px) {
  .news-section-3 .right-shape {
    display: none;
  }
}

.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}
.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
}
.popular-posts .single-post-item:not(:last-child), .popular_posts .single-post-item:not(:last-child) {
  margin-bottom: 35px;
}
.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: 14px;
  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: var(--theme-color);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme-color);
  font-weight: 400;
  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(--white);
  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: var(--theme-color);
}
.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: var(--theme-color);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.tagcloud a:last-child {
  margin-right: 0;
}
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme-color);
  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: var(--theme-color);
  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: var(--theme-color);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.social-share a:hover {
  color: var(--theme-color);
}

.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: 10px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--text);
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  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: 10px;
  margin-left: 0px !important;
  transition: all 0.4s ease-in-out;
  width: initial;
  height: initial;
  line-height: initial;
}
.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: var(--theme-color);
  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 .theme-btn:hover i {
  transform: translate(0);
  width: initial;
  height: initial;
  line-height: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
@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: var(--theme-color);
  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: 400;
  text-transform: capitalize;
  color: var(--text);
  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.2;
  padding: 24px 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;
  width: initial;
  height: initial;
  line-height: initial;
  background-color: transparent;
  color: var(--white);
  margin-left: 0;
  margin-right: 10px;
}
.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.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: var(--theme-color);
}
.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme-color);
  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: var(--theme-color);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme-color);
}
.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;
  z-index: 9;
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.96);
  z-index: -1;
}

.contact-wrapper {
  padding-bottom: 200px;
}
.contact-wrapper .contact-text {
  margin-top: 35px;
  color: var(--white);
}
.contact-wrapper .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-items {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.contact-wrapper .contact-items .icon {
  width: 60px;
  height: 60px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 25px;
}
.contact-wrapper .contact-items .content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-wrapper .contact-items .content p {
  color: var(--white);
}
.contact-wrapper .contact-items .content p a {
  color: var(--white);
}
.contact-wrapper .contact-form-items {
  background-color: var(--theme-color);
  padding: 35px;
}
.contact-wrapper .contact-form-items h3 {
  color: var(--white);
}
.contact-wrapper .contact-form-items .contact-form {
  margin-top: 30px;
}
.contact-wrapper .contact-form-items .contact-form .form-clt input, .contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
}
.contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  padding-bottom: 245px;
}
@media (max-width: 767px) {
  .contact-wrapper .section-title {
    text-align: left;
  }
}

.contact-wrapper-3 .man-image {
  margin-bottom: -140px;
  text-align: center;
  max-width: 460px;
}
@media (max-width: 1199px) {
  .contact-wrapper-3 .man-image {
    margin-bottom: 0;
  }
}
.contact-wrapper-3 .man-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper-3 .contact-form-items {
  padding: 35px;
  background-color: var(--theme-color);
}
.contact-wrapper-3 .contact-form-items .section-title span {
  color: var(--white);
}
.contact-wrapper-3 .contact-form-items .section-title span::before {
  background-color: var(--white);
}
.contact-wrapper-3 .contact-form-items .section-title h2 {
  color: var(--white);
}
@media (max-width: 767px) {
  .contact-wrapper-3 .contact-form {
    margin-top: 30px;
  }
}
.contact-wrapper-3 .contact-form .form-clt input, .contact-wrapper-3 .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
  text-transform: capitalize;
}
.contact-wrapper-3 .contact-form .form-clt textarea {
  padding-bottom: 145px;
}

@media (max-width: 767px) {
  .contact-wrapper-2 .contact-left-item .section-title {
    text-align: left;
  }
}
.contact-wrapper-2 .contact-left-item .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-item .contact-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contact-icon {
  width: 60px;
  height: 60px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 32px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content span {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  font-family: "Poppins", sans-serif;
  display: inline-block;
  margin-bottom: 5px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 {
  font-weight: 400;
  color: #555;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 a {
  color: #555;
}
.contact-wrapper-2 .contact-content {
  padding: 34px;
  background-color: var(--theme-color);
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-2 .contact-content h3 {
  margin-bottom: 30px;
  color: var(--white);
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: #555;
  border: 1px solid #D1D1D1;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: #555;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom:90px;
  resize: none;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 450px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 300px;
  }
}

.contact-section-21{padding:80px 0;}



.footer-widget-wrapper {
  padding: 40px 0;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.widget-head.logo, .footer-content{text-align: right;}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 20px;
}
.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--text);
  position: relative;
  padding-left: 20px;
}
.footer-widget-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: var(--white);
}
.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .footer-contact li a {
  color: var(--text);
}
.footer-widget-wrapper .single-footer-widget .footer-contact li span {
  display: block;
}
.footer-widget-wrapper .single-footer-widget .footer-contact li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .social-list {
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .social-list h4 {
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .social-list .social-icon {
  gap: 20px;
  font-size: 24px;
  color: var(--header);
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .social-list .social-icon a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a::before {
  background-color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a:hover {
  color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn {
  background-color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn i {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn:hover i {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a:hover {
  color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .icon {
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 25px;
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content span {
  color: #fff;
  font-weight: 500;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.theme-color-2 .contact-list-2 li .icon {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget {
  margin-top: 30px;
}
.single-footer-widget .list-area{margin: 0;padding: 0;list-style: none;}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li {
  position: relative;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a {
  color: var(--white);
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a:hover {
  color: #ccc;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content p {
  color: var(--white);font-size: 14px;line-height: 22px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon {
  gap: 20px;
  font-size: 20px;
  margin-top: 10px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--white);font-size: 14px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: #ccc;
}

.footer-info-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-info-area.style-new {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-content .info-items {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right:20px;
  height: 60px;
}
@media (max-width: 991px) {
  .footer-content .info-items {
    height: initial;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .footer-content .info-items {
    display: flex;
    justify-content: start;
    text-align: left;
    gap: 0;
  }
}
.footer-content .info-items.border-none {
  border-right: none;
  padding-right: 0;
}
.footer-content .info-items .icon {
  width:40px;
  height:40px;
  line-height:45px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 18px;
}
@media (max-width: 575px) {
  .footer-content .info-items .icon {
    margin: 0 15px 15px 0;
    text-align: center;
  }
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
   margin-bottom:0px;
}
.ft_logo h3{display: none;}
.widget-head.logo, .footer-content {text-align:left;}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon{justify-content: flex-start !important;}
}
@media (max-width: 575px) {
  .footer-content .info-items .content {
    text-align: center;
  }
}
.footer-content .info-items .content h5 {
  font-size: 16px;
  color: var(--white);
  margin-bottom:0px;
}
.footer-content .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: var(--white);
}
.footer-content .info-items .content h6 a {
  color: var(--white);
}

@media (max-width: 575px) {
  .footer-content .info-items .content {
    text-align: center;
  }
}

.footer-content .info-items .content h6 {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: var(--white);
}
.footer-content .info-items .content h6 a {
  color: var(--white);
}

.footer-section {
  position: relative;
}
.footer-section .frame-shape {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 70px;
}
@media (max-width: 1399px) {
  .footer-section .frame-shape {
    display: none;
  }
}
@media only screen and (max-width:479px) {
.boxes {margin-right: 0rem;}
.service-section-4 .section-title h2 {font-size: 26px;}
}

.tax_img{border: 1px solid #d9d9d9;padding: 7px;margin-bottom: 25px;}