
:root {
  --thm-font: 'Manrope', sans-serif;
  --thm-font-2: 'DM Sans', sans-serif;
  --thm-base: #cf173c;
  --thm-base-rgb: 207, 23, 60;
  --thm-gray: #7f7873;
  --thm-gray-rgb: 127, 120, 115;
  --thm-white: #ffffff;
  --thm-white-rgb: 255, 255, 255;
  --thm-black: #1a1c23;
  --thm-black-rgb: 26, 28, 35;
  --thm-primary: #ffb400;
  --thm-primary-rgb: 255, 180, 0;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

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

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  font-family: var(--thm-font-2);
  font-weight: 500;
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}
cite {
    color: var(--thm-base);
 font-family: 'Playfair Display', serif;

    font-weight: 600
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

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

ol,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}





/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
  border-color: #43c3ea;
  outline: none;
}

#contact-form input[type="text"].error {
  border-color: red;
}

#contact-form input[type="email"].error {
  border-color: red;
}

#contact-form select.error {
  border-color: red;
}

#contact-form textarea.error {
  border-color: red;
}

#contact-form label.error {
  display: none !important;
}


/*== Review Css ======*/
.review-box {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 15px;
}

.review-box ul {
  display: block;
  overflow: hidden;
}

.review-box ul li {
  display: inline-block;
  float: left;
  margin-right: 4px;
  cursor: pointer;
}

.review-box ul li:last-child {
  margin-right: 0px;
}

.review-box ul li i {
  color: #febd2f;
  font-size: 15px;
}



/*== Section Title Css ======*/
.sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 55px;
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 46px;
  line-height: 1.1em;
  font-weight: 500;
  text-transform: capitalize;
}

.sec-title .sub-title {
  position: relative;
  display: block;
  padding-top: 13px;
}

.sec-title .sub-title p {
  font-size: 17px;
  line-height: 30px;
}



/*== Btn One Css ======*/
.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 60px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 0px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--thm-font-2);
  z-index: 2;
}

.btn-one:before {
  position: absolute;
  top: 110px;
  left: -50px;
  right: -50px;
  height: 170px;
  content: "";
  background: var(--thm-base);
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  border-radius: 50%;
  transition-duration: 800ms;
  z-index: 1;
}

.btn-one:hover:before {
  top: 0%;
  left: -70px;
  right: -70px;
}

.btn-one:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 0px;
  background-color: #ffffff;
  opacity: 1;
  transform: scaleX(1.0);
  transition-duration: 800ms;
  z-index: -1;
}

.btn-one:hover:after {
  transform: scaleX(0);
  transition-duration: 1500ms;
}

.btn-one .txt {
  position: relative;
  z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
  color: #ffffff;
}

.btn-one i {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  font-size: 12px;
  font-weight: 700;
}
.owl-theme .owl-dots, .owl-theme .owl-nav {
    margin-top: 25px;
}


/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-fresh .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 50px !important;
  display: block;
}

.owl-carousel.owl-dot-fresh .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 5px;
  background-color: #e7e7e7;
  border: 0px solid #a5a5a5;
  margin: 0px 10px;
  padding: 0px;
  border-radius: 0%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-fresh .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-fresh .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-fresh .owl-dots .owl-dot span {
  display: none;
}



/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-tech .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 30px !important;
  display: block;
}

.owl-carousel.owl-dot-tech .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 5px solid #ffffff;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-tech .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-tech .owl-dots .owl-dot.active {
  border: 5px solid #1a1c23;
  background-color: var(--thm-base);
}

.owl-carousel.owl-dot-tech .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-tech .owl-dots .owl-dot span {
  display: none;
}

.owl-carousel.owl-dot-tech .owl-dots .owl-dot.active span {}








/*== Owl Nav Style One Css ======*/
.owl-nav-style-one {}

.owl-nav-style-one .owl-controls {}

.owl-nav-style-one.owl-theme .owl-stage-outer {
  position: relative;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
  position: relative;
  display: block;
  line-height: 0;
  margin: 0;
  z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #e1e6e4;
  border-radius: 0%;
  margin: 0 0 0 0px;
  padding: 0;
  z-index: 1;
  transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: var(--thm-base);
  z-index: -1;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(0);
  transform: perspective(400px) rotateX(0deg) scale(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
  opacity: 1.0;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .2s;
  transition-property: all;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 48px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(-180deg);
  margin-right: 10px;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  margin-left: 0px;
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
  color: #ffffff
}



/*== Styled Pagination Css ======*/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination.pdtop0 {
  padding-top: 0;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 40px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #f2ece7;
  color: var(--thm-gray);
  font-size: 14px;
  line-height: 38px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.styled-pagination li a span:before {
  position: relative;
  top: 1px;
  font-size: 14px;
}

.styled-pagination li.prev a span:before {
  position: relative;
  display: inline-block;
  padding-right: 8px;
}

.styled-pagination li.next a span:before {
  position: relative;
  display: inline-block;
  padding-left: 8px;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #ffffff;
  border-color: var(--thm-base);
  background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  width: 90px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
}


/*== checked Css Css ======*/
.checked-box1 {
  position: relative;
  display: block;
  min-height: 20px;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #f2ece7;
  cursor: pointer;
  border-radius: 0px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  font-family: 'icomoon' !important;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "\e918";
  color: var(--thm-base);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  margin: 0px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
  border-color: #f2ece7;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
  opacity: 1.0;
}


.features-tech-area {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 100px 0 100px;
}


.features-tech-content {
  position: relative;
  display: block;
}

.features-tech-content ul li {
  border-left: 1px solid #e2deda;
}

.single-features-box-tech {
  position: static;
  display: block;
  width: 100%;
  text-align: center;
  float: left;
  cursor: pointer;
}

.single-features-box-tech .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border: 1px solid #e2deda;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-tech-tab__button .tabs-button-box .tab-btn-item:hover .single-features-box-tech .icon,
.features-tech-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-tech .icon {
  border-color: #ffffff;
  background-color: #ffffff;
}

.single-features-box-tech .icon i {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 45px;
  line-height: 35px;
}

.single-features-box-tech:hover .icon i {}


.features-tech-tab__button .tabs-button-box .tab-btn-item:hover .single-features-box-tech .icon i,
.features-tech-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-tech .icon i {
  background: -webkit-linear-gradient(#8a0f3d, #ce173c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





.single-features-box-tech .title {
  position: relative;
  display: block;
  padding-top: 23px;
}

.single-features-box-tech .title h3 {
  font-size: 18px;
  line-height: 28px;
}

.single-features-box-tech .title h3 a {
  color: var(--thm-black);
}


.single-features-box-tech .arrow-button {
  position: absolute;
  left: 0;
  bottom: -30px;
  right: 0;
  opacity: 0;
  transform: perspective(400px) translateY(-10px) scale(1.0);
  transform-style: preserve-3d;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: right center;
}

.single-features-box-tech .arrow-button a {
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
  color: var(--thm-base);
  font-size: 20px;
}

.single-features-box-tech:hover .arrow-button {}


.features-tech-tab__button .tabs-button-box .tab-btn-item:hover .single-features-box-tech .arrow-button,
.features-tech-tab__button .tabs-button-box .tab-btn-item.active-btn-item .single-features-box-tech .arrow-button {
  opacity: 1;
  transform: perspective(400px) translateY(0px) scale(1);
  transform-origin: left center;
}








.features-tech-carousel {}

.features-tech-carousel.owl-nav-style-one.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: -80px;
  right: -80px;
  display: flex;
  justify-content: space-between;
  height: 0;
  margin-top: -25px;
}

.features-tech-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  background-color: transparent;
  border: 1px solid #e2deda;
  border-radius: 50%;
}

.features-tech-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
  background-color: var(--thm-base);
  border-radius: 50%;
}



.features-tech-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  border-right: 1px solid #e2deda;
}

.features-tech-carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.features-tech-carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}




.features-tech-tab__button {
  position: relative;
  display: block;
  padding-bottom: 70px;
}





.features-tech-tab .tabs-content-box {
  position: relative;
  display: block;
}

.features-tech-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.features-tech-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.features-tech-tab .tab-content-box-item .features-tech-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top bottom;
}

.features-tech-tab .tab-content-box-item.tab-content-box-item-active .features-tech-tab-content-box-item {
  opacity: 1.0;
  transform: scaleY(1);
  transform-origin: bottom top;
}






.features-tech-text-box {
  position: relative;
  display: block;
  background: #ffffff;
}

.features-tech-text-box>ul {
  position: relative;
  display: block;
}

.features-tech-text-box>ul>li {
  position: relative;
  display: block;
  padding-left: 30px;
  border-bottom: 1px solid #f2ece7;
  border-left: none;
}

.features-tech-text-box>ul>li>a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-tech-text-box>ul>li>a span {
  position: relative;
  display: block;
  border-left: 1px solid #f2ece7;
  width: 70px;
  line-height: 70px;
  text-align: center;
  color: #a5a2a0;
  font-size: 16px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-tech-text-box>ul>li>a:hover {
  color: var(--thm-base);
}

.features-tech-text-box>ul>li>a span:hover {
  color: var(--thm-base);
}



.features-tech-banner-box {
  position: relative;
  display: flex;
  background-color: #1a1c23;
  width: 100%;
  height: 100%;
  padding: 50px 0 50px;
    overflow: hidden;
}

.features-tech-banner-box .text-box {
  position: relative;
  display: block;
  width: 70%;
  text-align: left;
    padding-left: 30px;
    padding-right: 10px;
}

.features-tech-banner-box .text-box span {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
}

.features-tech-banner-box .text-box h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin: 12px 0 0;
}

.features-tech-banner-box .text-box h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 24px;
  font-weight: 500;
  margin: 7px 0 24px;
}

.features-tech-banner-box .text-box h2 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
}

.features-tech-banner-box .text-box h2 a {
  color: var(--thm-base);
}




.features-tech-banner-box .img-box {
  position: relative;
  display: block;
  width: 50%;
  z-index: 1;
}

.features-tech-banner-box .img-box:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  bottom: -51px;
  right: 0;
  background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
  z-index: -2;
}

.features-tech-banner-box .img-box .img-box-bg {
  position: absolute;
  top: -50px;
  left: 0;
  bottom: -51px;
  right: -1px;
    transition: 1s;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  background-color: #2e2d2c;
  background-blend-mode: luminosity;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0 50%);
  z-index: 1;
}
.features-tech-banner-box:hover .img-box .img-box-bg {
transition: 1s;
  background-color: #2e2d2c00;
}



.individual-corporate-it-area {
  position: relative;
  display: block;
  z-index: 10;
}

.individual-corporate-it-area .container {
  max-width: 100%;
  padding: 0;
}

.individual-corporate-it-area .container .row {
  --bs-gutter-x: 0px;
}



.individual-it {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 93px 0 70px;
  z-index: 1;
}

.individual-it-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  background-color: #1a1c23;
  background-blend-mode: luminosity;
  z-index: -1;
}

.individual-it-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(26, 28, 35);
  background: linear-gradient(90deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 0) 0%, rgba(26, 28, 35, 0) 40%, rgba(26, 28, 35, 0.3701855742296919) 51%, rgba(26, 28, 35, 0.9472163865546218) 65%, rgba(26, 28, 35, 1) 100%);
}

.individual-it-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #1a1c23;
  opacity: 0.80;
}


.individual-it__inner {
  position: relative;
  display: block;
  max-width: 670px;
  width: 100%;
  float: right;
  padding-right: 100px;
  z-index: 2;
}

.individual-it__inner .sec-title {
  margin-top: 0px;
  padding-bottom: 55px;
}

.individual-it__inner .sec-title h2 {
  color: #ffffff;
}

.individual-it__inner .sec-title .sub-title p {
  color: #a5a6aa;
}


.individual-it__inner-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.individual-it__inner-content ul {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: -15px;
  margin-right: -15px;
}

.individual-it__inner-content ul li {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  padding: 15px 15px;
}

.single-features-of-it {
  position: relative;
  display: block;
  background-color: #272a32;
  border: 1px solid #363a42;
  text-align: center;
  padding: 30px 0px 0;
  width: 100%;
  margin: 0 auto 0px;
  z-index: 1;
}
.single-features-of-it .number {
    position: absolute;
    color: #30343c;
    left: 10px;
    top:20px;
    z-index: -1;
    font-weight: 600;
    font-size: 60px;
    
}
.single-features-of-it:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-right: 25px solid #30343c;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
}

.single-features-of-it::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  border: 1px solid var(--thm-base);
  z-index: -1;
  opacity: 0;
  transform: perspective(400px) scaleX(0.7);
  transform-origin: center;
}

.single-features-of-it:hover::after {
  opacity: 1;
  transform: perspective(400px) scaleX(1.0);
  transition: all 300ms linear;
  transition-delay: 0.1s;
}
.single-features-of-it:hover .number {
color: var(--thm-base);
      transition: all 300ms linear;
  transition-delay: 0.1s;
    z-index: -1;
}


.single-features-of-it .icon-holder {
  font-size: 40px;
}

.single-features-of-it h3 {
  font-size: 20px;
  line-height: 28px;
  margin: 12px 0 11px;
}

.single-features-of-it h3 {
  color: #ffffff;
    z-index: 2;
}

.single-features-of-it .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding-top: 9px;
  z-index: 1;
}

.single-features-of-it .btn-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-bottom: 40px solid #30343c;
  border-left: 85px solid transparent;
  border-right: 85px solid transparent;
}

.single-features-of-it:hover .btn-box:before {
  border-bottom-color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-features-of-it .btn-box span {
  position: relative;
  display: inline-block;
  color: #a5a6aa;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-features-of-it:hover .btn-box span {
  color: #ffffff;
}



.single-features-of-it.more-services {
  background-color: transparent;
  border: none;
  padding: 34px 0px 0;
  box-shadow: none;
  margin-top: 1px;
}

.single-features-of-it.more-services:before {
  display: none;
}

.single-features-of-it.more-services:after {
  display: none;
}


.single-features-of-it .more-service-box {
  position: relative;
  display: block;
  padding: 2px 0 32px;
}

.single-features-of-it .more-service-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 50%;
  color: #747579;
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-features-of-it .more-service-box a:hover {
  color: #ffffff;
  background-color: var(--thm-base);
}

.single-features-of-it .more-service-box h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  margin: 16px 0 0;
}




.corporate-it {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 93px 0 72px;
  z-index: 1;
}

.corporate-it-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  background-color: #1a1c23;
  background-blend-mode: luminosity;
  z-index: -1;
}

.corporate-it-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  background: rgb(26, 28, 35);
  background: linear-gradient(90deg, rgba(26, 28, 35, 1) 0%, rgba(245, 248, 247, 1) 0%, rgba(245, 248, 247, 1) 30%, rgba(245, 248, 247, 1) 40%, rgba(245, 248, 247, 1) 55%, rgba(245, 248, 247, 0) 100%);
}

.corporate-it-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #f5f8f7;
  opacity: 0.80;
}

.corporate-it__inner {
  position: relative;
  display: block;
  max-width: 670px;
  width: 100%;
  float: left;
  padding-left: 100px;
  z-index: 2;
}

.corporate-it__inner .sec-title {
  margin-top: 0px;
  padding-bottom: 55px;
}

.corporate-it__inner .sec-title h2 {
  color: var(--thm-black);
}

.corporate-it__inner .sec-title .sub-title p {
  color: #797c7f;
}

.corporate-it__inner-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.corporate-it__inner-content ul {
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: -15px;
  margin-right: -15px;
}

.corporate-it__inner-content ul li {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  padding: 15px 15px;
}


.single-features-of-it--tech {
  border-color: #e1e6e4;
  background-color: #ffffff;
  box-shadow: 0px 0px 13px 1px rgba(0, 0, 0, 0.04);
}
.single-features-of-it--tech .number{
 color: #e1e6e4;
}

.single-features-of-it--tech h3  {
  color: var(--thm-black);
}

.single-features-of-it--tech:before {
  border-right: 25px solid #f5f8f7;
}

.single-features-of-it--tech .btn-box:before {
  border-bottom: 40px solid #f5f8f7;
}

.single-features-of-it--tech .more-service-box h3 {
  color: var(--thm-black);
}






.intro-fresh-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 100px 0 100px;
  z-index: 1;
}

.intro-fresh-video-gallery {
  position: relative;
  display: block;
  min-height: 720px;
  margin-right: 20px;
}

.intro-fresh-video-gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-blend-mode: luminosity;
}





.intro-fresh-content-box {
  position: relative;
  display: block;
}

.intro-fresh-content-box .sec-title {
  padding-bottom: 33px;
}

.intro-fresh-content-box .text {
  position: relative;
  display: block;
  padding-bottom: 43px;
}

.intro-fresh-content-box .text p {
  margin: 0;
}

.intro-fresh-content-box .text p+p {
  margin-top: 16px;

}


.intro-fresh-single-box {
  position: relative;
  display: block;
  padding-right: 20px;
}

.intro-fresh-single-box .img-box {
  position: relative;
  display: block;
  background-color: #646464;
}

.intro-fresh-single-box .img-box .img-box-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.intro-fresh-single-box .img-box img {
  width: 100%;
  mix-blend-mode: luminosity;
  transform: scale(1.0);
  transition: all 200ms ease;
}

.intro-fresh-single-box:hover .img-box img {
  transform: scale(1.1) rotate(0deg);
      mix-blend-mode: normal;
}

.intro-fresh-single-box .title-box {
  position: relative;
  display: block;
  padding-top: 22px;
}

.intro-fresh-single-box .title-box h3 {
  font-size: 22px;
  line-height: 28px;
}

.intro-fresh-single-box .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.intro-fresh-single-box .title-box h3 a:hover {
  color: var(--thm-base);
}

.intro-fresh-single-box .overlay-text {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  padding: 14px 20px 15px;
  z-index: 2;
}

.intro-fresh-single-box .overlay-text h3 {
  color: var(--thm-base);
  font-size: 18px;
  font-weight: 500;
}





/*** 
=============================================
    Element Page Css
=============================================
***/

.single-item .tabe i {
    font-size: 200px;
    position: absolute;
    bottom: -35px;
    color: var(--thm-base);
    opacity: 0.2;
    left: 20px;
}

#services .sec-title h5 {
      color: var(--thm-base);
 font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 10px
}
.features-tech-banner-box  p{
    color:#919191;
    margin-bottom: 10px;
}
#text-page h2{
    margin-top:30px;
    margin-bottom: 5px;
}


/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: var(--thm-base);
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-black);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
}



.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    color: #ffffff;
    font-size: 15px;
    font-family: var(--thm-font-2);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--thm-black);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-black);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-base);
}


.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}





.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-black);
}

.mobile-nav__contact li>i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
}


.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}



/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
}




/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}


.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 20px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: var(--thm-font-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
    padding-right: 35px;
}

.main-menu .main-menu__list>li.dropdown>a:before {
    position: absolute;
    right: 18px;
    font-family: 'icomoon' !important;
    content: "\e901";
    font-size: 14px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-menu .main-menu__list>li>a::after,
.stricky-header .main-menu__list>li>a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .main-menu__list>li:hover>a::after,
.main-menu .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}



.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    padding: 10px 20px 10px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    transform-origin: top;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    transition: all 300ms ease;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-gray);
    letter-spacing: 0;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 6px 0px;
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
    z-index: 1;
}

.main-menu .main-menu__list>li>ul>li>a:before,
.main-menu .main-menu__list>li>ul>li>ul>li>a:before,
.stricky-header .main-menu__list>li>ul>li>a:before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .main-menu__list>li>ul>li:hover>a:before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a:before,
.stricky-header .main-menu__list>li>ul>li:hover>a:before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: #ffffff;
    padding-left: 15px;
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 115%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}




/*-------------------------------------
  # Mega Menu Css
  --------------------------------------*/
.main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
}

.megamenu-content-box {
    position: relative;
    display: block;
}

.megamenu-content-box .container {
    max-width: 1200px !important;
}

.megamenu-content-box__inner {
    background-color: #fff;
    padding: 40px 35px 40px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
}

.megamenu-content-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}
.mobile-nav__wrapper .home-showcase__title {
    color: #ffffff;
}

.mobile-nav__wrapper .megamenu-content-box .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}



.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 28px;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}



.stricky-header.main-menu {
    background-color: #ffffff;
}

.stricky-header .main-menu-box {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stricky-header .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header .main-menu__wrapper-inner {
    background-color: #ffffff;
}

.stricky-header .main-menu__list>li+li {
    margin-left: 10px;
}



.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.stricky-header .main-menu-fresh-left {
    width: 100%;
}

.stricky-header .main-menu-fresh-left .main-menu-box {
    float: none;
    padding-left: 0px;
}

.stricky-header .main-menu__list>li>a::after {
    background-color: #f7f1eb !important;
}





.main-header-fresh {
    position: relative;
    display: block;
}

.main-header-fresh-top {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 17px 0;
    z-index: 11;
}

.main-header-fresh-top .auto-container {
    max-width: 100%;
    padding: 0 50px;
}

.main-header-fresh-top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-fresh-top__left {
    position: relative;
    display: flex;
    align-items: center;
}

.looking-it-box {
    position: relative;
    display: block;
    padding-left: 100px;
}

.looking-it-box .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.looking-it-box .inner-title span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    padding-right: 8px;
}

.looking-it-box .inner-title p {
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}

.looking-it-box .select-box {
    position: relative;
    display: block;
    width: 170px;
}

.looking-it-box .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 4px;
    border: solid 0px #f6f6f6;
    width: 100%;
    height: 20px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.looking-it-box .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: 'icomoon' !important;
    color: #7f7873;
    font-size: 12px;
    top: 0px;
    right: 0px;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    height: 20px;
    width: 12px;
}

.looking-it-box .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 10px 0 10px;
    margin-top: 10px;
}

.looking-it-box .nice-select .option {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 35px;
    min-height: 35px;
}


.nearest-branch {
    position: relative;
    display: flex;
    margin-left: 30px;
    padding-left: 30px;
}

.nearest-branch:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: #e2deda;
}

.nearest-branch span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    padding-right: 8px;
}

.nearest-branch a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}



.main-header-fresh-top__right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-menu-fresh {
    position: relative;
    display: block;
    overflow: hidden;
}

.header-menu-fresh ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.header-menu-fresh ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 25px;
}

.header-menu-fresh ul li:last-child {
    margin-right: 0;
}

.header-menu-fresh ul li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400;
}



.box-search-fresh {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid #e2deda;
    border-right: 1px solid #e2deda;
    margin-left: 25px;
    margin-right: 13px;
}

.box-search-fresh a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.box-search-fresh a span {
    position: relative;
    display: inline-block;
    padding-right: 3px;
    font-size: 18px;
    top: 2px;
}


.main-menu-fresh {
    position: relative;
    display: block;
    background-color: #f7f1eb;
}

.main-menu-fresh .container {
    max-width: 100%;
    padding: 0 50px;
}

.main-menu-fresh .main-menu__wrapper-inner {
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10;
}



.main-menu-fresh-left {
    display: flex;
    align-items: center;
    padding-left: 250px;
}

.logo-box-fresh {
    position: absolute;
    top: 30px;
    left: 0;
    width: 250px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.logo-box-fresh a {
    position: relative;
    display: inline-block;
}

.main-menu-fresh-left .main-menu-box {
    position: static;
    display: block;
    float: left;
    padding-left: 80px;
}


.main-menu-fresh-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-fresh-bottom {
    position: relative;
    display: block;
    background-color: #f7f1eb;
}

.main-header-fresh-bottom .auto-container {
    max-width: 100%;
    padding: 0 50px;
}

.main-header-fresh-bottom .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 17px 0;
    padding-left: 250px;
    z-index: 1;
}

.main-header-fresh-bottom .outer-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 250px;
    bottom: 0;
    right: 0px;
    background-image: -moz-linear-gradient(180deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    z-index: -1;
}




.main-header-tech {
    position: relative;
    display: block;
}

.main-header-tech__top {
    position: relative;
    display: block;
    padding: 10px 0;
    background-image: -moz-linear-gradient(-180deg, rgb(37, 184, 93) 0%, rgb(2, 136, 53) 100%);
    background-image: -webkit-linear-gradient(-180deg, rgb(37, 184, 93) 0%, rgb(2, 136, 53) 100%);
    background-image: -ms-linear-gradient(-180deg, rgb(37, 184, 93) 0%, rgb(2, 136, 53) 100%);

}


.main-header-tech__top .auto-container {
    max-width: 100%;
    padding: 0 50px;
}

.main-header-tech__top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-tech__top-left {
    position: relative;
    display: block;
}

.notification-box {
    position: relative;
    display: block;
    padding-left: 30px;
}

.notification-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0;
}

.notification-box .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 26px;
}

.notification-box p {
    color: #ffffff;
}

.notification-box p a {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-left: 5px;
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
}


.main-header-tech__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-tech__top-right .header-menu-fresh ul li a {
    color: #ffffff;
}

.main-header-tech__top-right .header-menu-fresh ul li a:hover {
    color: var(--thm-black);
}


.main-header-tech__top-right .box-search-fresh {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3)
}

.main-header-tech__top-right .box-search-fresh a {
    color: #ffffff;
}

.main-header-tech__top-right .language-switcher #polyglotLanguageSwitcher a {
    color: #ffffff;
}

.main-header-tech__top-right .language-switcher #polyglotLanguageSwitcher span.trigger:before {
    color: #ffffff;
}



.main-menu-tech {
    position: relative;
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}


.main-menu-tech .container {
    max-width: 100%;
    padding: 0 50px;
}

.main-menu-tech .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-tech-left {
    position: relative;
    display: flex;
    align-items: center;
}


.logo-box-tech {
    position: relative;
    display: block;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #e1e6e4;
}

.logo-box-tech a {
    position: relative;
    display: inline-block;
}


.looking-it-box--tech {
    position: relative;
    display: block;
    padding-left: 60px;
}

.looking-it-box--tech .icon {
    position: absolute;
    top: 4px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #e1e6e4;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 700;
}

.looking-it-box--tech .select-box p {
    color: var(--thm-black);
    font-weight: 500;
    margin: 0 0 4px;
}



.main-menu-tech-right {
    display: flex;
    align-items: center;
}

.main-menu-tech-right .main-menu-box {
    padding-right: 50px;
}

.main-menu-tech .main-menu__list>li+li {
    margin-left: 0;
}


.header-logon-box {
    position: relative;
    display: block;
    padding-left: 55px;
    min-height: 45px;
    margin-left: 30px;
}

.header-logon-box .icon {
    position: absolute;
    top: 0px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #e1e6e4;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 24px;
    font-weight: 700;
}



.header-logon-box .select-box {
    position: relative;
    display: block;
    width: 70px;
}

.header-logon-box .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 4px;
    border: solid 0px #f6f6f6;
    width: 100%;
    height: 45px;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 45px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font-2);
    padding: 0px 0;
}

.header-logon-box .nice-select:after {
    position: absolute;
    content: "\e901";
    font-family: 'icomoon' !important;
    color: #7f7873;
    font-size: 12px;
    top: 0px;
    right: 0px;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
    height: 20px;
    width: 12px;
}

.header-logon-box .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    width: 140px;
    left: auto !important;
}

.header-logon-box .nice-select .option {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 35px;
    min-height: 35px;
}


.stricky-header--tech .main-menu__wrapper .container {
    max-width: 100%;
    padding: 0 50px;
}


.stricky-header--tech .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stricky-header--tech .header-logon-box {
    display: none;
}



.phone-number-box-fresh {
    position: relative;
    display: block;
    padding-left: 55px;
}

.phone-number-box-fresh .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--thm-base);
    font-size: 40px;
}

.phone-number-box-fresh h5 {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.phone-number-box-fresh h3 {
    font-size: 18px;
    font-weight: 700;
}

.phone-number-box-fresh h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box-fresh h3 a:hover {
    color: var(--thm-base);
}



.box-search-tech {
    position: relative;
    display: block;
    padding-left: 50px;
}

.box-search-tech a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.box-search-tech a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #e6eced;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 24px;
    margin-right: 10px;
}



.stricky-header.dark-home .main-menu__list>li>a {
    color: var(--thm-black);
}
/*Banner*/

.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-fresh {
    background-color: #f7f1eb;

}

.slider-buttom-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 11;
}

.slider-buttom-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    height: 50px;
    background-color: var(--thm-base);
    padding: 0 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.slider-buttom-box a:hover {
    background-color: #8a0f3d;
}

.slider-buttom-box a+a {
    margin-top: 10px;
}



.main-slider .swiper-slide {
    position: relative;
}

.main-slider .container {
    position: relative;
    padding-top: 128px;
    padding-bottom: 140px;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.main-slider .image-layer:before {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 100%;
    content: "";
    z-index: -1;
    background: rgb(26, 28, 35);
    background: linear-gradient(270deg, rgba(26, 28, 35, 1) 0%, rgba(26, 28, 35, 0.9500175070028011) 12%, rgba(26, 28, 35, 0.865983893557423) 29%, rgba(26, 28, 35, 0) 100%);
}

.main-slider-fresh__shape1 {
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    max-width: 470px;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right center;
    background-size: cover;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .main-slider-fresh__shape1 {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}


.main-slider .main-slider-content {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
    float: left;
}

.main-slider .main-slider-content__inner {
    position: relative;
    display: block;
    overflow: hidden;
}
.main-slider .main-slider-content__inner .big-title h1{
color: #fff;    font-weight: 800;    font-size: 70px;
}
.main-slider .main-slider-content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .big-title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: inherit;
}


.main-slider .main-slider-content .text {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 16px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .text p {
    color: #ede7e2;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}



.main-slider .main-slider-content .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 43px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .main-slider-content .btns-box a {}








.main-slider__nav {
    position: absolute;
    left: 270px;
    bottom: 20px;
    transform: translateY(0%) translateX(0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    width: 140px;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--thm-black);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0%;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background-color: var(--thm-base);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    transform: rotate(-180deg);
}

.main-slider__nav .swiper-button-prev .angle-left {
    position: relative;
    transform: rotate(0deg);
}


.main-slider .main-slider-content .bottom-text {
    position: relative;
    display: block;
    padding-top: 14px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .bottom-text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .main-slider-content .bottom-text p {
    color: var(--thm-black);
    line-height: 20px;
}

.main-slider .main-slider-content .bottom-text p span {
    color: var(--thm-base);
}


.slide-single-features {
    position: absolute;
    top: 40%;
    left: -85px;
    display: inline-flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.09);
    padding: 20px 20px 20px;
    z-index: 11;
}

.slide-single-features.two {
    top: auto;
    left: -40px;
    bottom: 30%;
}

.slide-single-features span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
    padding-right: 6px;
}

.slide-single-features h3 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
}

.slide-single-features.one {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-80px);
    transform: perspective(400px) rotateY(0deg) translateX(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .slide-single-features.one {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.slide-single-features.two {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .slide-single-features.two {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
/*About*/

.about-fresh-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.about-fresh-img-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
}

.about-fresh-img-box .round-box {
    position: absolute;
    left: 0px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border: 2px dashed #e7e7e7;
    border-radius: 50%;
}


.about-fresh-img-box .shape1 {
    position: absolute;
    top: -80px;
    left: -50px;
}

.about-fresh-img-box .shape2 {
    position: absolute;
    right: -100px;
    bottom: 80px;
}


.about-fresh-img-box .experience-box {
    position: absolute;
    top: 80px;
    right: -30px;
    width: 245px;
    height: 245px;
    background-color: var(--thm-base);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 900ms linear;
    transition-delay: 0.1s;
    z-index: 3;
}

.about-fresh-img-box:hover .experience-box {
    background-color: var(--thm-black);
}

.about-fresh-img-box .experience-box:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.20);
    border-radius: 50%;
}

.about-fresh-img-box .experience-box .counting {
    position: relative;
    display: block;
    top: -4px;
    z-index: 2;
}

.about-fresh-img-box .experience-box .counting h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 44px;
    font-weight: 300;
}

.about-fresh-img-box .experience-box .counting .plus {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    line-height: 35px;
    top: 9px;
}

.about-fresh-img-box .experience-box h4 {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 6px 0 0;
    z-index: 2;
}


.about-fresh-img-box__top {
    position: relative;
    display: block;
    max-width: 470px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.about-fresh-img-box__top img {
    width: 100%;
}

.about-fresh-img-box__top:hover img {
    transform: scale(1.05) rotate(-1deg);
}


.about-fresh-img-box__bottom {
    position: relative;
    display: block;
    padding-left: 100px;
    margin-top: -80px;
}

.about-fresh-img-box__bottom--inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 7px;
}

.about-fresh-img-box__bottom--inner img {
    width: 100%;
}

.about-fresh-img-box__bottom--inner:hover img {
    transform: scale(1.05) rotate(1deg);
}


.about-fresh-text-box {
    position: relative;
    display: block;
    padding-top: 60px;
}

.about-fresh-text-box .title-box {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.about-fresh-text-box .title-box .sub-title {
    position: relative;
    display: inline-flex;
    background-color: rgba(var(--thm-base-rgb), .07);
    border-radius: 4px;
    padding: 7px 15px;
}

.about-fresh-text-box .title-box .sub-title h6 {
    color: var(--thm-base);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.about-fresh-text-box .title-box h2 {
    font-size: 48px;
    line-height: 72px;
    font-weight: 400;
    margin: 15px 0 0;
}

.about-fresh-text-box .inner-text {
    position: relative;
    display: block;
}



.about-tech-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.about-tech-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

.about-tech-area-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #ffffff;
    opacity: 0.80;
    z-index: -1;
}

.about-tech-area .video-gallery-fresh {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.about-tech-content-box {
    position: relative;
    display: block;
}

.about-tech-content-box .title-box {
    position: relative;
    display: block;
    padding-bottom: 40px;
}

.about-tech-content-box .title-box .sub-title {
    position: relative;
    display: inline-flex;
    background-color: rgba(var(--thm-base-rgb), .07);
    border-radius: 4px;
    padding: 7px 15px;
}

.about-tech-content-box .title-box .sub-title h6 {
    color: var(--thm-base);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.about-tech-content-box .title-box h2 {
    font-size: 48px;
    line-height: 72px;
    font-weight: 600;
    margin: 15px 0 0;
}

.about-tech-content-box__bottom {
    position: relative;
    display: flex;
    align-items: center;
}

.about-tech-content-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 15px;
}

.about-tech-content-box ul li {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    padding: 2px;
    border-radius: 50%;
    margin: 0 -15px;
}

.about-tech-content-box ul li .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 50%;
}

.about-tech-content-box ul li .img-box img {
    width: 100%;
}

.about-tech-content-box__bottom .signature {
    position: relative;
    display: block;
    padding-left: 40px;
}



/*footer*/

.footer-area {
    position: relative;
    display: block;
    background: #1a1c23;
    z-index: 10;
}




.footer {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 70px;
    z-index: 9;
}



.footer-logo-fresh a {
    position: relative;
    display: inline-block;
}



.footer-bottom {
    position: relative;
    display: block;
    background: #121419;
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0px 20px;
}

.footer-menu {
    position: relative;
    display: block;
}

.footer-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-menu ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-menu ul li a {
    color: #b8b4b1;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-menu ul li a:hover {
    color: #ffffff;
}



.footer-social-link {
    position: relative;
    display: block;
}

.footer-social-link ul {
    position: relative;
    display: block;
}

.footer-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.footer-social-link ul li:last-child {
    margin-right: 0;
}

.footer-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #ffffff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-social-link ul li:hover a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.footer-social-link ul li:hover a {
    color: var(--thm-base);
    border-color: var(--thm-base);
}



/*** 
=============================================
    Footer Style2 Area Css
=============================================
***/
.footer-area--tech {
    background: #1a1c23;
}

.footer-top-tech {
    position: relative;
    display: block;
    padding: 100px 0 93px;
}

.footer-top-tech__left-content {
    position: relative;
    display: block;
    padding-right: 100px;
}

.footer-top-tech__left-content .our-company-info .bottom-text2 {
    position: relative;
    display: block;
    padding-top: 5px;
}

.footer-top-tech__left-content .our-company-info .bottom-text2 p {
    color: #a5a6aa;
}

.footer-top-tech__left-content .our-company-info .bottom-text2 .btn-box {
    position: relative;
    display: block;
    padding-top: 17px;
}

.footer-top-tech__left-content .our-company-info .bottom-text2 .btn-box a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.footer-top-tech__left-content .our-company-info .bottom-text2 .btn-box a span {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}



.footer-top-tech__left-content-inner {
    position: relative;
    display: block;
    padding-top: 36px;
}

.footer-top-tech__left-content-inner .row {
    --bs-gutter-x: 0px;
}

.footer-top-tech__left-content-inner>ul>li {
    position: relative;
}

.footer-top-tech__left-content-inner>ul>li:before {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #2f3139;
}

.footer-top-tech__left-content-inner>ul>li:last-child::before {
    display: none;
}

.footer-top-tech__left-content-inner>ul>li+li {
    padding-left: 30px;
}

.footer-top-tech__left-content-inner>ul>li:last-child {
    border-right: none;
}

.footer-top-tech__left-content-inner .footer-widget-links {
    padding-top: 0;
}



.footer-top-tech__right-content {
    position: relative;
    display: block;
}

.footer-contact-info-style {
    position: relative;
    display: block;
}

.footer-contact-info-style ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-contact-info-style ul li {
    position: relative;
    display: block;
    padding-left: 80px;
}

.footer-contact-info-style ul li+li {
    margin-top: 21px;
}

.footer-contact-info-style ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #2f3139;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5a6aa;
    font-size: 20px;
}

.footer-contact-info-style ul li .text {
    position: relative;
    display: block;
    top: -2px;
}

.footer-contact-info-style ul li .text h3 {
    color: #eae0e4;
    font-size: 22px;
    line-height: 22px;
    margin: 0 0 14px;
}

.footer-contact-info-style ul li .text p {
    color: #a5a6aa;
}

.footer-contact-info-style ul li .text p a {
    color: #a5a6aa;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-contact-info-style ul li .text p a:hover {
    color: #ffffff;
}


.find-nearest-branch-box {
    position: relative;
    display: block;
    border: 1px solid #2f3139;
    padding: 26px 0 0;
    margin-top: 41px;
}

.find-nearest-branch-box .top-outer {
    position: relative;
    display: block;
    padding: 0 30px 28px;
}

.find-nearest-branch-box .top {
    position: relative;
    display: block;
    padding-left: 70px;
}

.find-nearest-branch-box .top .icon {
    position: absolute;
    top: 4px;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: var(--thm-base);
    border-radius: 50%;
    color: #ffffff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-nearest-branch-box .top .inner-title {
    position: relative;
    display: block;
}

.find-nearest-branch-box .top .inner-title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
}

.find-nearest-branch-box .form-box1 {
    position: relative;
    display: block;
}

.find-nearest-branch-box .form-box1 .zip-form {
    position: relative;
    display: block;
}

.find-nearest-branch-box .form-box1 input[type="number"] {
    position: relative;
    display: block;
    width: 100%;
    height: 51px;
    border: none;
    border-top: 1px solid #2f3139;
    background-color: transparent;
    color: #a5a6aa;
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 100px;
    border-radius: 0px;
    transition: all 500ms ease 0s;
}

.find-nearest-branch-box .form-box1 .zip-form button {
    position: absolute;
    top: 1px;
    right: 0px;
    width: 110px;
    height: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.find-nearest-branch-box .form-box1 .zip-form button i {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 7px;
    color: var(--thm-base);
    font-size: 16px;
}



.footer-bottom-tech {
    position: relative;
    display: block;
    background: #272a32;
}

.footer-bottom-tech .bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 0px 22px;
}


.scrool-top-btn-tech {
    position: relative;
    display: block;
}
.scrool-top-btn-tech a:before {
content: '.';
margin-right: 3px;
       color: var(--thm-base);
}


.scrool-top-btn-tech a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.scrool-top-btn-tech a:hover {
    color: var(--thm-base);
}

.scrool-top-btn-tech a i {
    position: relative;
    top: 0px;
    display: inline-block;
    padding-right: 9px;
    color: var(--thm-base);
    font-size: 12px;
}


/*contact*/
/*** 
=============================================
    Main Contact Form Area Css
=============================================
***/
.main-contact-form-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0px 140px;
    z-index: 10;
}

.main-contact-form-area.pdb100 {
    padding-bottom: 100px;
}


.contact-info-box-fresh {
    position: relative;
    display: block;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 41px 50px 1px;
    margin-right: -30px;
    height: 100%;
}

.contact-info-box-fresh .box1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 330px;
    height: 310px;
    background-color: var(--thm-base);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: -1;
}


.contact-info-box-fresh .title {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.contact-info-box-fresh .title h2 {
    font-size: 36px;
    line-height: 46px;
}

.contact-info-box-fresh .title p {
    font-size: 18px;
    line-height: 28px;
    margin: 11px 0 0;
}


.contact-info-1 {
    position: relative;
    display: block;
    border: 1px solid #f2ece7;
    padding: 50px 40px 43px;
    margin-right: -100px;
    background: #fff;
    z-index: 2;
}

.contact-info-1 li {
    position: relative;
    display: block;
    padding-left: 90px;
}

.contact-info-1 li+li {
    margin-top: 32px;
}

.contact-info-1 li .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #f7f1eb;
    border: 1px solid #f7f1eb;
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li:hover .icon {
    color: var(--thm-base);
    background-color: #ffffff;
}

.contact-info-1 li .text {
    position: relative;
    display: block;
}

.contact-info-1 li .text p {
    font-size: 16px;
    line-height: 16px;
    margin: 0 0 7px;
}

.contact-info-1 li .text h3 {
    font-size: 22px;
    line-height: 30px;
}

.contact-info-1 li .text h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li .text h3 a:hover {
    color: var(--thm-base);
}



.contact-info-box-fresh .bottom-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 40px;
}

.contact-info-box-fresh .bottom-box .btn-box {
    position: relative;
    display: block;
}

.contact-info-box-fresh .bottom-box .btn-box a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.contact-info-box-fresh .bottom-box .btn-box a i {
    position: relative;
    display: inline-block;
    padding-right: 5px;
    top: 1px;
}


.contact-info-box-fresh__single .social-link {
    position: relative;
    display: block;
}

.contact-info-box-fresh__single .social-link li {
    position: relative;
    display: inline-block;
    margin-right: 16px;
}

.contact-info-box-fresh__single .social-link li:last-child {
    margin-right: 0px;
}

.contact-info-box-fresh__single .social-link li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-box-fresh__single .social-link li a:hover {
    color: var(--thm-base);
}




.contact-form {
    position: relative;
    display: block;
    background: #f7f1eb;
    padding-top: 43px;
    padding-left: 100px;
    padding-bottom: 50px;
    padding-right: 50px;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .form-group {
    position: relative;
    display: block;
    padding-bottom: 19px;
}

.contact-form form .form-group label {
    position: relative;
    top: 0px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-family: var(--thm-font-2);
    margin: 0 0 12px;
}

.contact-form form .input-box {
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e2deda;
    width: 100%;
    height: 52px;
    color: #7f7873;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 21px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.contact-form form input[type="text"]:focus,
.contact-form form input[type="email"]:focus,
.contact-form form textarea:focus {
    border: 1px solid var(--thm-base);
    outline: none;
}

.contact-form form textarea {
    height: 108px;
    padding-top: 12px;
    padding-left: 21px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #7f7873;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #7f7873;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #7f7873;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #7f7873;
}


.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #7f7873;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #7f7873;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #7f7873;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #7f7873;
}


.contact-form form textarea::-webkit-input-placeholder {
    color: #7f7873;
}

.contact-form form textarea:-moz-placeholder {
    color: #7f7873;
}

.contact-form form textarea::-moz-placeholder {
    color: #7f7873;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #7f7873;
}

.contact-form form .button-box {
    position: relative;
    display: block;
    padding-top: 6px;
}

.contact-form form .button-box button {
    color: #ffffff;
}

.contact-form form .button-box button:after {
    background-color: var(--thm-base);
}

.contact-form form .button-box button:before {
    background-color: var(--thm-black);
}



/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
    background: #ffffff;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 680px;
    width: 100%;
    mix-blend-mode: luminosity;
}


.google-map-content-box {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 100;
}

.branch-atm-tab {
    position: relative;
    display: block;
}

.branch-atm-tab__button {
    position: relative;
    display: flex;
    align-items: center;
    background: #1a1c23;
    padding: 20px 40px 20px;
    margin-bottom: 100px;
}

.branch-atm-tab__button .tabs-button-box {
    position: relative;
    display: block;
    width: 200px;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    float: left;
    margin-right: 25px;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item:last-child {
    margin-right: 0;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item h5 {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item h5:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #b8b4b1;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item:hover h5:before,
.branch-atm-tab__button .tabs-button-box .tab-btn-item.active-btn-item h5:before {
    border-color: var(--thm-base);
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item h5:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 5px;
    height: 5px;
    background: var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab__button .tabs-button-box .tab-btn-item:hover h5:after,
.branch-atm-tab__button .tabs-button-box .tab-btn-item.active-btn-item h5:after {
    transform: scale(1.0);
}



.branch-atm-tab__button .location-search-box {
    position: relative;
    flex: 1;
}

.location-search-box {
    position: relative;
    display: block;
}

.location-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.location-search-box form.search-form .input-box {
    position: relative;
    display: block;
}

.location-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    background-color: #1a1c23;
    border: 1px solid #1a1c23;
    border-left: 1px solid #3c3d43;
    color: #b8b4b1;
    font-size: 16px;
    font-weight: 400;
    padding-left: 45px;
    padding-right: 130px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.location-search-box form.search-form .input-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: #b8b4b1;
    font-size: 18px;
}

.location-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 120px;
    height: 45px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 45px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    background: #ffffff;
    text-align: center;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.location-search-box .search-form input[type="text"]:focus {
    color: #ffffff;
}

.location-search-box .search-form input[type="text"]:focus+button,
.location-search-box .search-form button:hover {
    color: var(--thm-base);
}

.location-search-box .search-form input::-webkit-input-placeholder {
    color: #b8b4b1;
}

.location-search-box .search-form input:-moz-placeholder {
    color: #b8b4b1;
}

.location-search-box .search-form input::-moz-placeholder {
    color: #b8b4b1;
}

.location-search-box .search-form input:-ms-input-placeholder {
    color: #b8b4b1;
}



.branch-atm-tab .tabs-content-box {
    position: relative;
    display: block;
}

.branch-atm-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.branch-atm-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.branch-atm-tab .tab-content-box-item .branch-atm-tab-content-box-item {
    opacity: 0;
    transform: scaleY(1.0) translateY(-10px);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab .tab-content-box-item.tab-content-box-item-active .branch-atm-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1) translateY(0px);
}



.branch-atm-tab-content-box-item {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 38px 40px 33px;
    z-index: 1;
}

.branch-atm-tab-content-box-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    z-index: -1;
}

.branch-atm-tab-content-box-item .inner-title {
    position: relative;
    display: block;
    padding-bottom: 22px;
    border-bottom: 1px solid #f2ece7;
}

.branch-atm-tab-content-box-item .inner-title h3 {
    font-size: 22px;
    line-height: 30px;
}

.branch-atm-tab-content-box-item ul {
    position: relative;
    display: block;
    padding-top: 26px;
}

.branch-atm-tab-content-box-item ul li {
    position: relative;
    display: block;
    margin-bottom: 19px;
}

.branch-atm-tab-content-box-item ul li:last-child {
    margin-bottom: 0;
}

.branch-atm-tab-content-box-item ul li h3 {
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0 0 9px;
}

.branch-atm-tab-content-box-item ul li p {
    color: #7f7873;
}

.branch-atm-tab-content-box-item ul li p a {
    color: #7f7873;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.branch-atm-tab-content-box-item ul li p a:hover {
    color: var(--thm-base);
}

.breadcrumb-area {
    position: relative;
    display: block;
    background-color: #f7f1eb;
    padding: 50px;
    padding-top: 0;
    z-index: 11;
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #646464a8;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-blend-mode: luminosity;
    z-index: -1;
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.15;
}


.breadcrumb-area .inner-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 360px 0 0px;
    z-index: 10;
}

.breadcrumb-area .title {
    position: absolute;
    left: 0;
    bottom: -50px;
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.12);
    padding: 22px 30px 22px;
}

.breadcrumb-area .title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.breadcrumb-area .title h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}



.breadcrumb-menu {
    position: absolute;
    bottom: -37px;
    right: 0;
}

.breadcrumb-menu ul {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-menu ul li {
    position: relative;
    display: block;
    float: left;
    color: #dedede;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    padding-right: 24px;
    margin-right: 13px;
    font-family: var(--thm-font);
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
  
    margin-right: 0;
}

.breadcrumb-menu ul li:before {
    font-family: 'icomoon' !important;
    content: "\e909";
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0px;
    font-size: 12px;
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li a {
    color: #fff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
     color: #dedede;
}


