/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/



:root {
  --thm-font: 'Barlow', sans-serif;
  --thm-font-2: 'Roboto', sans-serif;
  --thm-font-3: 'Fira Sans', sans-serif;
  --thm-font-4: 'reeyregular';
  --thm-font-5: 'Jost', sans-serif;
  --thm-base: #e12454;
  --thm-base-rgb: 225, 36, 84;
  --thm-gray: #444444;
  --thm-gray-rgb: 68, 68, 68;
  --thm-white: #ffffff;
  --thm-white-rgb: 255, 255, 255;
  --thm-black: #011e45;
  --thm-black-rgb: 1, 30, 69;
  --thm-primary: #0cb2cf;
  --thm-primary-rgb: 12, 178, 207;
  --thm-gray-bg: #f4f5f9;
  --thm-gray-bg-rgb: 244, 245, 249;
  --thm-main-bg: #02142a;
}


.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: 18px;
  line-height: 32px;
  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: 700;
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-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;
}


/** Thm Social Link **/
.thm-social-link {
  position: relative;
  display: block;
  padding-top: 30px;
}

.thm-social-link ul {
  position: relative;
  display: block;
}

.thm-social-link ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.thm-social-link ul li:last-child {
  margin-right: 0;
}

.thm-social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: rgba(var(--thm-black-rgb), 1.0);
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.thm-social-link ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: rgba(var(--thm-base-rgb), 1.0);
  border-radius: 5px;
  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;
}

.thm-social-link ul li:hover a:before {
  opacity: 1.0;
  transform: scale(1.0);
}

.thm-social-link ul li:hover a {
  color: #ffffff;
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.png), pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .9;
  visibility: visible;
  transition-delay: 0.3s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  max-width: 460px;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 700ms ease 100ms;
  visibility: hidden;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
  transition: all 500ms ease 800ms;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 700ms ease 1500ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
  background-color: #000000;
}



.sidebar-textwidget {
  padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--thm-black);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-base);
  border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font-3);
  margin-bottom: 22px;
}

.xs-sidebar-group .content-inner .content-box {
  position: relative;
  display: block;
  padding-top: 33px;
  padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .content-box p {
  color: var(--thm-gray);
}



.xs-sidebar-group .content-inner .sidebar-contact-info {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 27px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
  margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
  position: relative;
  display: block;
  padding-left: 45px;
}

.sidebar-contact-info ul li .inner .icon {
  position: absolute;
  top: 0px;
  left: 0;
}

.sidebar-contact-info ul li .inner .icon span {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 27px;
  line-height: 27px;
  font-weight: 500;
}

.sidebar-contact-info ul li .inner .icon span.map-marker {
  position: relative;
  top: 8px;
  font-size: 32px;
}

.sidebar-contact-info ul li .inner .text {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li .inner .text p {
  line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
  color: var(--thm-base);
  text-shadow: -.45px -.45px 0 var(--thm-base),
    .45px .45px var(--thm-base);
}



.xs-sidebar-group .content-inner .side-content-newsletter-box {
  position: relative;
  display: block;
  padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  background-color: rgb(248, 248, 248);
  border: 1px solid #e3dfdf;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 6px;
  font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
  margin-top: 30px;
}






/*== 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;
}

.sec-title.withtext {
  padding-bottom: 62px;
}

.sec-title .sub-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sec-title .sub-title.center {
  justify-content: center;
}

.sec-title .sub-title.item-center {
  justify-content: center;
}


.sec-title .sub-title .border-left {
  position: relative;
  display: block;
  background-color: #1a6fe1;
  width: 30px;
  height: 2px;
  margin-right: 10px;
}

.sec-title .sub-title .border-right {
  position: relative;
  display: block;
  background-color: #1a6fe1;
  width: 30px;
  height: 2px;
  margin-left: 10px;
}

.sec-title .sub-title h5 {
  color: #1a6fe1;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--thm-font-5);
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 900;
  text-transform: none;
}

.sec-title p {
  line-height: 30px;
  margin: 9px 0 0;
}






/*== Btn One Css ======*/
.btn-box {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-top: 2px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 2px;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  line-height: 56px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--thm-font-5);
  z-index: 2;
}

.btn-one:before {
  position: absolute;
  top: 0px;
  left: 100%;
  right: -50px;
  content: "";
  background: var(--thm-black);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  border-radius: 0%;
  transition-duration: 800ms;
  z-index: 1;
  bottom: 0;
}

.btn-one:hover:before {
  left: 0;
  right: 0px;
}

.btn-one:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 1;
  transform: scaleX(1.0);
  transition-duration: 800ms;
  background-color: var(--thm-base);
  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;
  top: 4px;
  display: inline-block;
  padding-left: 10px;
  font-size: 20px;
}




.btn-two {
  position: relative;
  display: flex;
  align-items: center;
  color: #1a6fe1;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.btn-two span {
  position: relative;
  top: -1px;
  display: inline-block;
  padding-left: 10px;
  color: var(--thm-black);
  font-size: 16px;
}

.btn-two:hover {
  color: var(--thm-black);
  letter-spacing: 0.05em;
}




/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 0px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid #1a6fe1;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
  background-color: #1a6fe1;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: #1a6fe1;
  border-radius: 50%;
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
  display: none;
}



/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 30px !important;
  display: block;
}

.owl-carousel.owl-dot-style2 .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-style2 .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-style2 .owl-dots .owl-dot.active {
  border: 5px solid #1a1c23;
  background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot span {
  display: none;
}

.owl-carousel.owl-dot-style2 .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: 40px;
}

.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: 2px solid #909090;
  border-radius: 50%;
  margin: 0 10px;
  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: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  background-color: var(--thm-base);
  border-radius: 50%;
  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: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.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);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  position: relative;
  display: block;
  color: #909090;
  font-size: 18px;
  line-height: 46px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
  color: #ffffff
}




/*== Scrool To Top Css ======*/
.scroll-to-top {
  position: fixed;
  right: -10px;
  bottom: 80px;
  transform: rotate(90deg);
  z-index: 99999999999;
}

.scroll-to-top .visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.scroll-to-top .scroll-bar {
  width: 50px;
  height: 3px;
  margin-right: 10px;
  position: relative;
}

.scroll-to-top .scroll-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--thm-base);
  opacity: 1.0;
}

.scroll-to-top .scroll-bar .bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #3b3b3b;
}

.scroll-to-top .scroll-bar-text {
  color: #616468;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--thm-font-2);
  transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
  transform: scale(1.0);
}






/*== 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: block;
  float: left;
  margin-right: 10px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--thm-base);
  color: var(--thm-base);
  font-size: 16px;
  line-height: 46px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 500ms ease;
  font-family: var(--thm-font-4);
  z-index: 1;
}

.styled-pagination li a span:before {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 46px;
}

.styled-pagination li.prev a span:before {
  position: relative;
  display: inline-block;
}

.styled-pagination li.next a span:before {
  position: relative;
  display: inline-block;
}

.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: 50px;
}

.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: 20px;
  line-height: 28px;
  font-weight: 500;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--thm-font-3);
}

.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: "\e938";
  color: var(--thm-base);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border: 1px solid #8e8f8f;
  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: #8e8f8f;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
  opacity: 1.0;
}



/*== Accordion Box Css ======*/
.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  padding-top: 9px;
  padding-left: 55px;
  padding-bottom: 9px;
  padding-right: 20px;
  border: 1px solid #d4d4d4;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
  background: #ffffff;
  border-bottom: 1px solid transparent;
}

.accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 19px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
  color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  color: var(--thm-black);
  font-size: 18px;
  text-align: left;
  line-height: 20px;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
  color: var(--thm-base);
  transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
  font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
  content: "\e90b";
}


.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 1px;
  padding-left: 55px;
  padding-bottom: 21px;
  padding-right: 20px;
  border: 1px solid #d4d4d4;
  border-top: 1px solid transparent;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  margin: 0;
}




/* Accordion Box Style1 Css */
.accordion-box-style1 {
  position: relative;
  display: block;
}

.accordion-box-style1 .accordion {
  position: relative;
  display: block;
  background: #ffffff;
  margin-bottom: 47px;
}

.accordion-box-style1 .accordion.mar0 {
  margin: 0;
}

.accordion-box-style1 .accordion .accord-btn {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 30px;
  transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn h4 {
  color: var(--thm-black);
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  transition: all 500ms ease;
  text-shadow: 1px 1px 1px var(--thm-black);
}

.accordion-box-style1 .accordion .accord-btn::after {
  font-family: 'icomoon' !important;
  position: absolute;
  content: "\e90a";
  top: 50%;
  left: 0px;
  margin-top: -1px;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  text-align: left;
  transform: translateY(-50%);
  transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.accordion-box-style1 .accordion .accord-btn.active h4 {
  color: var(--thm-base);
  text-shadow: 0px 0px 0px var(--thm-black);
}

.accordion-box-style1 .accordion .accord-btn.active:after {
  color: var(--thm-base);
  content: "\e90b";
}

.accordion-box-style1 .accordion .accord-content {
  position: relative;
  padding-top: 13px;
  padding-bottom: 1px;
  padding-left: 30px;
  padding-right: 30px;
  display: none;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box-style1 .accordion .accord-content p {
  color: #444444;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}







/*== Search Popup Css ======*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--thm-base);
  border: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.search-popup__content .thm-btn i {
  background-color: transparent;
  margin-left: 0;
}

.search-popup__content .thm-btn:hover {
  color: #ffffff;
  background-color: var(--thm-black);
}




/* Preloader */
.handle-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  z-index: 9999999;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 45px auto;
  animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}


.handle-preloader .animation-preloader .txt-loading .letters-loading {
  position: relative;
  display: inline-block;
  font-family: var(--thm-font-3);
  font-weight: 700;
  letter-spacing: 15px;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
  animation-delay: 0.8s;
}

.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--thm-black);
}



@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 40px;
    letter-spacing: 10px;
  }
}








.footer-social-link-style1 {
  position: relative;
  display: block;
}

.footer-social-link-style1 ul {
  position: relative;
  display: block;
}

.footer-social-link-style1 ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.footer-social-link-style1 ul li:last-child {
  margin-right: 0;
}

.footer-social-link-style1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #ffffff;
  border: 1px solid #f2ece7;
  border-radius: 50%;
  color: #a5a2a0;
  font-size: 14px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.footer-social-link-style1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  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-style1 ul li:hover a:before {
  opacity: 1.0;
  transform: scale(1.0);
}

.footer-social-link-style1 ul li:hover a {
  color: #ffffff;
  border-color: var(--thm-base);
}



@-webkit-keyframes pulse10 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ee212b;
    box-shadow: 0 0 0 0 #ee212b;
  }

  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}

@keyframes pulse10 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ee212b;
    box-shadow: 0 0 0 0 #ee212b;
  }

  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
  }
}






/*------------------------------------------
  Choose Style1 Css
--------------------------------------------*/
.choose-style1 {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  padding: 111px 0 70px;
  overflow: hidden;
  z-index: 10;
}

.choose-style1__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
}

.choose-style1__img-bg:hover {
  transform: scale(1.01);
}

.choose-style1__img-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.10;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.choose-style1__img-bg:hover::before {
  opacity: 0.20;
}



.choose-style1__content {
  position: relative;
  display: block;
  margin-left: 560px;
  z-index: 2;
}

.choose-style1__content .inner-title {
  position: relative;
  display: block;
  padding-bottom: 26px;
}

.choose-style1__content .inner-title h2 {
  color: #ffffff;
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
}

.choose-style1__content .top-text {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.choose-style1__content .top-text p {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.choose-style1__content .bottom-text {
  position: relative;
  display: block;
}

.choose-style1__content .bottom-text p {
  color: #ffffff;
}


.fact-counter-box-style2 {
  position: relative;
  display: flex;
  padding-top: 58px;
}

.fact-counter-box-style2 ul {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.single-fact-counter-style2 {
  position: relative;
  display: block;
  width: 33.3333333333%;
  margin-bottom: 45px;
}

.single-fact-counter-style2 .count-box {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--thm-font-2);
}

.single-fact-counter-style2 .title {
  padding-top: 8px;
}

.single-fact-counter-style2 .title h6 {
  color: #ffffff;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.single-fact-counter-style2 .count-box i {
  position: relative;
  top: 0px;
  padding-left: 5px;
  font-size: 30px;
  font-weight: 700;
}




/*------------------------------------------
  Choose Style1 In style2 Css
--------------------------------------------*/
.choose-style1--in-style2 {
  position: relative;
  display: block;
  background-color: #011e45;
  padding: 111px 0 70px;
  overflow: hidden;
  z-index: 10;
}

.choose-style1--in-style2__img-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
}

.choose-style1--in-style2__img-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #202537;
  opacity: 0.80;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}



.discount-content-box {
  position: relative;
  display: block;
  max-width: 490px;
  float: left;
  padding-top: 13px;
  padding-right: 40px;
  z-index: 10;
}

.discount-content-box .sub-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 17px;
}

.discount-content-box .sub-title h6 {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.discount-content-box .sub-title .border-right {
  position: relative;
  display: block;
  background-color: #ffffff;
  width: 95px;
  height: 1px;
  margin-left: 15px;
  margin-bottom: 8px;
}

.discount-content-box .big-title {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.discount-content-box .big-title h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 40px;
  font-family: var(--thm-font)
}

.discount-content-box .big-title h2 b {
  font-size: 38px;
}

.discount-content-box .big-title h2 span {
  font-size: 34px;
  line-height: 42px;
  font-weight: 400;
}

.discount-content-box .big-title .border-bottom {
  position: relative;
  display: block;
  background-color: #ffffff;
  width: 60px;
  height: 1px;
  margin-top: 20px;
}

.discount-content-box .text {
  position: relative;
  display: block;
}

.discount-content-box .text p {
  color: #ffffff;
}

.discount-content-box .btns-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 36px;
}

.discount-content-box .btns-box .btn-one {
  color: #22242a;
}

.discount-content-box .btns-box .btn-one:before {
  background-color: var(--thm-base);
}

.discount-content-box .btns-box .btn-one:after {
  background-color: #ffffff;
}

.discount-content-box .btns-box .btn-one:hover {
  color: #ffffff;
}



/*------------------------------------------
  Choose Style2 Css
--------------------------------------------*/
.choose-style2 {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 10;
}

.choose-style2__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #08254f;
  background-blend-mode: luminosity;
  z-index: -1;
}

.choose-style2__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #08254f;
  opacity: 0.92;
}

.choose-style2 .container {
  max-width: 1060px;
}

.choose-style2 .container .row {
  --bs-gutter-x: 110px;
}

.choose-style2 .sec-title .sub-title .border-left {
  background-color: var(--thm-base);
}

.choose-style2 .sec-title .sub-title .border-right {
  background-color: var(--thm-base);
}

.choose-style2 .sec-title .sub-title h5 {
  color: #e12454;
}

.choose-style2 .sec-title h2 {
  color: #ffffff;
}

.choose-style2 .sec-title p {
  color: rgba(255, 255, 255, 0.80);
  margin: 19px 0 0;
}


.choose-style2__content {
  position: relative;
  display: block;
}

.choose-style2__content ul {
  position: relative;
  display: block;
}

.choose-style2__content ul li {
  position: relative;
  display: block;
  padding-left: 40px;
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.choose-style2__content ul li:first-child {
  padding-top: 18px;
}

.choose-style2__content ul li:last-child {
  margin-bottom: 0;
}

.choose-style2__content ul li .icon {
  position: absolute;
  top: 1px;
  left: 0px;
}

.choose-style2__content ul li:first-child .icon {
  top: 19px;
}

.choose-style2__content ul li .icon span {
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
}



/*------------------------------------------
  Choose Style3 Css
--------------------------------------------*/
.choose-style3 {
  position: relative;
  display: block;
  background-color: var(--thm-primary);
  padding: 120px 0 150px;
  overflow: hidden;
  z-index: 10;
}

.choose-style3.pdb120 {
  padding-bottom: 120px;
}

.choose-style3__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: #08254f;
  background-blend-mode: luminosity;
  z-index: -1;
}

.choose-style3 .sec-title {
  padding-bottom: 39px;
}

.choose-style3 .sec-title .sub-title .border-left {
  background-color: var(--thm-base);
}

.choose-style3 .sec-title .sub-title h5 {
  color: #e12454;
}

.choose-style3 .sec-title h2 {
  color: #ffffff;
}

.choose-style3 .sec-title p {
  color: rgba(255, 255, 255, 0.80);
  margin: 19px 0 0;
}



.choose-style3__content {
  position: relative;
  display: block;
}

.choose-style3__content ul {
  position: relative;
  display: block;
}

.choose-style3__content ul li {
  position: relative;
  display: block;
  padding-left: 45px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.choose-style3__content ul li+li {
  margin-top: 14px;
}

.choose-style3__content ul li .icon {
  position: absolute;
  top: 1px;
  left: 0px;
}

.choose-style3__content ul li .icon span {
  color: #2285ff;
  font-size: 30px;
  line-height: 30px;
}



/*------------------------------------------
  Choose Style3 In Style2 Css
--------------------------------------------*/
.choose-style3--in-style2 {
  padding: 120px 0 0px;
}




/*------------------------------------------
  Service style1 Css
-------------------------------------------*/
.service-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.single-service-style1 {
  position: relative;
  display: block;
}

.single-service-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-service-style1 .img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.05;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-service-style1:hover .img-box:before {
  opacity: 0.20;
}

.single-service-style1 .img-box img {
  width: 100%;
  transform: scale(1.0);
}

.single-service-style1:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-service-style1 .img-box .shadow-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 95px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.single-service-style1 .img-box .text-box {
  position: absolute;
  left: 30px;
  bottom: 0px;
  right: 30px;
  height: 35px;
  background-color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
}

.single-service-style1 .img-box .text-box.gray-bg {
  background-color: #f4f5f9;
}

.single-service-style1 .img-box .text-box h3 {
  font-size: 18px;
  line-height: 28px;
}

.single-service-style1 .img-box .text-box h3 a {
  color: var(--thm-black);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-service-style1 .img-box .text-box h3 a:hover {
  color: var(--thm-base);
}

.service-style5-carousel.owl-nav-style-one.owl-theme .owl-nav {
  text-align: left;
  margin-left: -10px;
}




/*------------------------------------------
  Service style2 Css
-------------------------------------------*/
.service-style2 {
  position: relative;
  display: block;
  background-color: #f1f4fb;
  padding: 120px 0 120px;
  z-index: 10;
}

.single-service-style2 {
  position: relative;
  display: block;
  padding: 40px 40px 0px;
  background-color: #ffffff;
  border-radius: 6px;
}

.single-service-style2 .icon-box {
  position: relative;
  display: block;
  padding-left: 15px;
  margin-bottom: 32px;
  z-index: 1;
}

.single-service-style2 .icon-box .round-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-color: #86baff;
  border-radius: 50%;
  z-index: -1;
}

.single-service-style2 .icon-box span {
  color: #000000;
  font-size: 60px;
  line-height: 60px;
}

.single-service-style2 h3 {
  font-size: 23px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.single-service-style2 h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style2 h3 a:hover {
  color: var(--thm-base);
}



.single-service-style2 .btn-box {
  position: relative;
  display: block;
  padding-top: 18px;
  padding-bottom: 17px;
}

.single-service-style2 .btn-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  right: -40px;
  height: 1px;
  background-color: #e2edef;
}

.single-service-style2 .btn-box a {
  position: relative;
  display: inline-block;
  color: #145dd9;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style2 .btn-box a:hover {
  color: var(--thm-base);
}

.single-service-style2 .btn-box a span {
  position: relative;
  display: inline-block;
  top: 2px;
  padding-left: 20px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  z-index: 1;
}

.single-service-style2 .btn-box a span:after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffdc4c;
  z-index: -1;
  transform: scale(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style2:hover .btn-box a span:after {
  transform: scale(1.0);
}



/*------------------------------------------
  Service style2 Gray bg Css
-------------------------------------------*/
.service-style2--gray-bg {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 120px 0 90px;
  z-index: 10;
}

.single-service-style2.marginbtm {
  margin-bottom: 30px;
}



/*------------------------------------------
  Service style3 Css
-------------------------------------------*/
.services-style3 {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 120px 0 70px;
  z-index: 10;
}

.services-style3__top-title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 21px;
}

.services-style3__top-title .sec-title {
  padding: 0;
}

.services-style3__top-title .btn-box {
  position: relative;
  display: block;
  line-height: 20px;
}

.services-style3__top-title .btn-box a {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-style3__top-title .btn-box a .border-line {
  position: relative;
  display: block;
  width: 105px;
  height: 1px;
  bottom: 4px;
  background-color: var(--thm-black);
  margin-left: 10px;
}

.services-style3__top-title .btn-box a:hover {
  color: var(--thm-base);
}

.services-style3__top-title-text {
  position: relative;
  display: block;
  padding-bottom: 53px;
}

.services-style3__top-title-text p {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
}



.single-service-style3 {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.single-service-style3 .img-box {
  position: relative;
  display: block;
  border-bottom: 3px solid #5abfff;
  overflow: hidden;
}

.single-service-style3 .img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.05;
  transition: background-color 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}

.single-service-style3:hover .img-box:before {
  opacity: 0.20;
}

.single-service-style3 .img-box img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-service-style3:hover .img-box img {
  transform: scale(1.02) rotate(0deg);
}


.single-service-style3 .title-box {
  position: relative;
  display: block;
  margin-top: 14px;
}

.single-service-style3 .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  padding-bottom: 13px;
}

.single-service-style3 .title-box h3 a {
  color: var(--thm-black);
  transition: all 0.5s ease;
}

.single-service-style3 .title-box h3 a:hover {
  color: var(--thm-base);
}

.single-service-style3 .title-box .border-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #1a6fe1;
}



/*------------------------------------------
  Video Gallery Style1 Css
--------------------------------------------*/
.video-gallery-style1 {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 120px 0 120px;
  z-index: 10;
}

.video-gallery-style1__content {
  position: relative;
  display: block;
}

.video-gallery-style1__content .top-title {
  position: relative;
  display: block;
  margin-top: -8px;
}

.video-gallery-style1__content .top-title h2 {
  font-size: 45px;
  line-height: 53px;
  margin-bottom: 19px;
}

.video-gallery-style1__content .top-title .border-box {
  position: relative;
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--thm-black);
}

.video-gallery-style1__content .text-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.video-gallery-style1__content .text-box p {
  margin: 0;
}

.video-gallery-style1__content .btns-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 28px;
}



.video-gallery-style1__gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 35px;
  z-index: 1;
}

.video-gallery-style1__gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.20;
  z-index: 1;
}

.video-gallery-style1__gallery img {
  width: 100%;
}

.video-gallery-style1__gallery .icon {
  position: absolute;
  width: 110px;
  height: 110px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-gallery-style1__gallery .icon:after,
.video-gallery-style1__gallery .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.video-gallery-style1__gallery .icon:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-gallery-style1__gallery .icon .border-round {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  border: 10px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
}

.video-gallery-style1__gallery .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-gallery-style1__gallery .icon .video-popup span::before {
  position: relative;
  color: #1a6fe1;
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-gallery-style1__gallery .icon:hover .video-popup span::before {
  color: var(--thm-base);
}



/*------------------------------------------
  Video Gallery Style2 Css
------------------------------------------*/
.video-gallery-style1--instyle2 {
  background-color: #0cb2cf;
}

.video-gallery-style1--instyle2 .video-gallery-style1__content .top-title h2 {
  color: #ffffff;
}

.video-gallery-style1--instyle2 .video-gallery-style1__content .top-title .border-box {
  background-color: #ffffff;
}

.video-gallery-style1--instyle2 .video-gallery-style1__content .text-box p {
  color: #ffffff;
  font-weight: 500;
}

.video-gallery-style1--instyle2 .video-gallery-style1__gallery .icon {
  background-color: #1a6fe1;
}

.video-gallery-style1--instyle2 .video-gallery-style1__gallery .icon .video-popup span::before {
  color: #ffffff;
}



/*** 
=============================================
    Contact Style1 Area
=============================================
***/
.contact-style1-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #f4f5f9;
  padding: 120px 0 120px;
  z-index: 10;
}


.thm-form-box-1 {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.thm-form-box-1 .row {
  --bs-gutter-x: 15px;
}

.thm-form-box-1 form {
  position: relative;
  display: block;
}

.thm-form-box-1 form .form-group {
  position: relative;
  display: block;
  padding-bottom: 33px;
}

.thm-form-box-1 form .input-box {
  position: relative;
  display: block;
}

.thm-form-box-1 form input[type="text"],
.thm-form-box-1 form input[type="email"],
.thm-form-box-1 form textarea {
  position: relative;
  display: block;
  background: transparent;
  border: none;
  border-bottom: 2px solid #dadada;
  width: 100%;
  height: 50px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.thm-form-box-1 form input[type="text"]:focus,
.thm-form-box-1 form input[type="email"]:focus,
.thm-form-box-1 form textarea:focus {
  border-bottom: 2px solid var(--thm-base);
  outline: none;
}

.thm-form-box-1 form textarea {
  height: 120px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 10px;
}

.thm-form-box-1 form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-1 form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-1 form textarea::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form textarea:-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form textarea::-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form textarea:-ms-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form .button-box {
  position: relative;
  display: block;
  padding-top: 7px;
}

.thm-form-box-1 form .button-box button {
  position: relative;
}



.contact-style1__content-box {
  position: relative;
  display: block;
  border-radius: 5px;
  background-color: #1a6fe1;
  padding: 50px 50px 41px;
}

.contact-style1__content-box .inner-title {
  position: relative;
  display: block;
  margin-top: -3px;
  padding-bottom: 46px;
}

.contact-style1__content-box .inner-title h5 {
  color: rgb(255, 255, 255, 0.70);
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.contact-style1__content-box .inner-title h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 42px;
  margin: 0 0 20px;
}

.contact-style1__content-box .inner-title .border-box {
  position: relative;
  display: block;
  width: 70px;
  height: 3px;
  background-color: #ffffff;
}



.contact-style1__content-box--inner {
  position: relative;
  display: block;
}

.contact-style1__content-box--inner .phone-number {
  position: relative;
  display: block;
}

.contact-style1__content-box--inner .phone-number h4 {
  color: rgb(255, 255, 255, 0.70);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--thm-font-3);
  margin: 0 0 18px;
}

.contact-style1__content-box--inner .phone-number h2 {
  font-size: 34px;
  line-height: 40px;
}

.contact-style1__content-box--inner .phone-number h2 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-style1__content-box--inner .phone-number h2 a:hover {
  color: var(--thm-black);
}



/*** 
=============================================
    Approach Style1 Css
=============================================
***/
.approach-style1 {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  z-index: 10;
}

.approach-style1__img {
  position: relative;
  display: block;
  margin-top: -50px;
  z-index: 1;
}

.approach-style1__img img {
  max-width: none !important;
  float: right;
}

.approach-style1__content {
  position: relative;
  display: block;
  padding-bottom: 88px;
  margin-left: 40px;
  border-bottom: 1px solid #c0c3cd;
}


.approach-style1__content ul {
  position: relative;
  display: flex;
  padding: 119px 0px 0px;
}


.approach-icon i {
  position: relative;
  display: block;
  padding-right: 35px;
}

.approach-icon i {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 62px;
}

.approach-style1__content h3 {
  color: #182158;
  font-size: 35px;
  line-height: 45px;
  font-weight: 300;
  font-family: var(--thm-font-3);
  margin: 34px 0px 33px;
}

.approach-style1__content p {
  margin: 0;
}


/*** 
=============================================
    Subscribe Style1 Css
=============================================
***/
.subscribe-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding-bottom: 120px;
  z-index: 10;
}

.subscribe-style1__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f5f9;
  padding: 22px 40px 21px;
  overflow: hidden;
}

.subscribe-style1__inner .icon-box {
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
}

.subscribe-style1__inner .icon-box span {
  position: relative;
  display: inline-block;
  color: rgba(200, 200, 200, 0.20);
  font-size: 200px;
  transform: rotate(-15deg);
  font-weight: 700;
}



.subscribe-style1__title {
  position: relative;
  display: block;
  max-width: 455px;
}

.subscribe-style1__title h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 900;
}

.subscribe-style1__title p {
  margin: 0;
}



.subscribe-style1__form {
  position: relative;
  display: block;
  max-width: 595px;
  width: 100%;
}

.subscribe-style1__form .form-group {
  position: relative;
  display: block;
  margin: 0;
}

.subscribe-style1__form .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  color: #898989;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--thm-font);
  background: #ffffff;
  border: 1px solid rgb(240, 240, 240);
  padding-left: 30px;
  padding-right: 160px;
  border-radius: 25px;
}

.subscribe-style1__form .form-group button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 150px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
  background: var(--thm-base);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  transition: all 300ms ease 100ms;
}



/*------------------------------------------
  Team Style1
--------------------------------------------*/
.team-style1 {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 60px;
  z-index: 10;
}

.team-style1__top-title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 21px;
}

.team-style1__top-title .sec-title {
  padding: 0;
}

.team-btn-item .btn-box {
  position: relative;
  display: block;
  line-height: 20px;
}

.team-btn-item .btn-box a {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-btn-item .btn-box a .border-line {
  position: relative;
  display: block;
  width: 105px;
  height: 1px;
  bottom: 4px;
  background-color: var(--thm-black);
  margin-left: 10px;
}

.team-btn-item .btn-box a:hover {
  color: var(--thm-base);
}

.team-style1__top-title-text {
  position: relative;
  display: block;
  padding-bottom: 54px;
}

.team-style1__top-title-text p {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
}



.single-team-style1 {
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.single-team-style1 .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-team-style1 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #000000;
}

.single-team-style1 .img-holder .inner img {
  width: 100%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-team-style1:hover .img-holder .inner img {
  transform: scale(1.05);
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-team-style1 .overlay-content {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: rgba(var(--thm-primary-rgb), .90);
  transform: perspective(400px) rotateX(0deg) translateY(0%);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: 1;
}

.single-team-style1:hover .overlay-content {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) translateY(0%);
  transition: all .4s ease-in-out .1s;
}

.team-social-link {
  position: relative;
  display: block;
  padding-bottom: 40px;
}

.team-social-link ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-social-link ul li {
  position: relative;
  float: left;
  margin-right: 10px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.team-social-link ul li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.team-social-link ul li:nth-child(2n+2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.team-social-link ul li:nth-child(2n+3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.team-social-link ul li:nth-child(2n+4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.single-team-style1:hover .overlay-content .team-social-link ul li {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.team-social-link ul li:last-child {
  margin-right: 0;
}

.team-social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.team-social-link ul li a:before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background: var(--thm-black);
  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;
}

.team-social-link ul li:hover a:before {
  opacity: 1.0;
  transform: scale(1.0);
}

.team-social-link ul li:hover a {
  color: #ffffff;
  border-color: var(--thm-black);
}



.single-team-style1 .title-box {
  position: relative;
  display: block;
  padding-top: 23px;
}

.single-team-style1 .title-box h3 {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 3px;
}

.single-team-style1 .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-team-style1 .title-box h3 a:hover {
  color: var(--thm-vase);
}

.single-team-style1 .title-box h5 {
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--thm-font);
}



/*------------------------------------------
  Team Style1 In style2
--------------------------------------------*/
.team-style1--instyle2 {
  padding-bottom: 40px;
}




/*** 
=============================================
    Slogan Area Css
=============================================
***/
.slogan-area {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 99px 0 100px;
  z-index: 10;
}

.slogan-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}

.slogan-content-box {
  position: relative;
  display: block;
}

.slogan-content-box .inner-title {
  position: relative;
  display: block;
}

.slogan-content-box .inner-title .sub-title {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.slogan-content-box .inner-title .sub-title h5 {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slogan-content-box .inner-title .sub-title .border-box {
  position: relative;
  display: block;
  margin-left: 15px;
  top: -3px;
  width: 45px;
  height: 1px;
  background-color: #ffffff;
}

.slogan-content-box .inner-title h2 {
  color: #ffffff;
  font-size: 55px;
  line-height: 1.2em;
  font-weight: 700;
  margin: 16px 0 0;
}

.slogan-content-box .btns-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 37px;
}

.slogan-content-box .btns-box .left-btn {
  position: relative;
  display: block;
  line-height: 0;
}



.video-gallery-style2 {
  position: relative;
  display: block;
  margin-left: 50px;
}

.video-gallery-style2 .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-gallery-style2 .icon .border-round {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  border: 10px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
}

.video-gallery-style2 .icon:hover {
  background-color: var(--thm-base);
}

.video-gallery-style2 .icon:after,
.video-gallery-style2 .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.video-gallery-style2 .icon:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-gallery-style2 .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-gallery-style2 .icon .video-popup span::before {
  position: relative;
  color: var(--thm-base);
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-gallery-style2 .icon:hover .video-popup span::before {
  color: #ffffff;
}



/*** 
=============================================
    contact style2 Area Css
=============================================
***/
.contact-style2-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 10;
}

.contact-style2-area .container {
  max-width: 100%;
  padding: 0;
}

.contact-style2-area .row {
  --bs-gutter-x: 10px;
}


.contact-style2-form-outer {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 100px 0 100px;
  z-index: 1;
}

.contact-style2-form-outer__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
}

.thm-form-box-5 {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
  float: right;
  padding-right: 80px;
}

.thm-form-box-5 .inner-title {
  position: relative;
  display: block;
  padding-bottom: 35px;
  margin-top: -11px;
}

.thm-form-box-5 .inner-title h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
}

.thm-form-box-5 .inner-title p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin: 10px 0 0;
}



.thm-form-box-5 .row {
  --bs-gutter-x: 15px;
}

.thm-form-box-5 form {
  position: relative;
  display: block;
}

.thm-form-box-5 form .form-group {
  position: relative;
  display: block;
  padding-bottom: 15px;
}

.thm-form-box-5 form .input-box {
  position: relative;
  display: block;
}

.thm-form-box-5 form input[type="text"],
.thm-form-box-5 form input[type="email"],
.thm-form-box-5 form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #e4e6ea;
  width: 100%;
  height: 50px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.thm-form-box-5 form input[type="text"]:focus,
.thm-form-box-5 form input[type="email"]:focus,
.thm-form-box-5 form textarea:focus {
  border: 1px solid var(--thm-base);
  outline: none;
}

.thm-form-box-5 form textarea {
  height: 100px;
  padding-top: 12px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
}

.thm-form-box-5 form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-5 form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-5 form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-5 form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-5 form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-5 form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-5 form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-5 form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-5 form textarea::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-5 form textarea:-moz-placeholder {
  color: #444444;
}

.thm-form-box-5 form textarea::-moz-placeholder {
  color: #444444;
}

.thm-form-box-5 form textarea:-ms-input-placeholder {
  color: #444444;
}

.thm-form-box-5 form .button-box {
  position: relative;
  display: block;
}

.thm-form-box-5 form .button-box button {
  width: 100%;
  border-radius: 4px;
  line-height: 46px;
}



.home-two-google-map {
  position: relative;
  display: block;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.home-google-map-2 {
  position: relative;
  display: block;
  border: none;
  height: 640px;
  width: 100%;
  background-color: #201c22;
  mix-blend-mode: luminosity;
  z-index: 10;
}



/*** 
=============================================
  Doctor Profile Css
=============================================
***/
.doctor-profile {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0px 120px;
  z-index: 10;
}

.doctor-profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: left top;
}

.doctor-profile-content {
  position: relative;
  display: block;
  max-width: 620px;
  float: right;
}

.doctor-profile-content .sec-title {
  padding-bottom: 7px;
}

.doctor-profile-content .top-text {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.doctor-profile-content .top-text p {
  color: #242424;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.doctor-profile-content .text-box {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.doctor-profile-content .text-box p {
  color: #242424;
}

.doctor-profile-content .singnature {
  position: relative;
  display: block;
}



/*** 
=============================================
  Doctor Profile Style2 Css
=============================================
***/
.doctor-profile-style2 {
  position: relative;
  display: block;
  background-color: #06244c;
  padding: 120px 0px 120px;
  z-index: 10;
}


.doctor-profile-style2__box {
  position: relative;
  display: block;
}

.doctor-profile-style2__img-box {
  position: absolute;
  left: -60px;
  bottom: -120px;
  z-index: 1;
}

.doctor-profile-style2__img-box:before {
  content: "";
  position: absolute;
  top: -51px;
  left: -100000px;
  bottom: 0;
  right: 180px;
  background-color: #1a6fe1;
  z-index: -1;
}

.doctor-profile-content--style2 {
  position: relative;
  z-index: 10;
}

.doctor-profile-content--style2 .sec-title h2 {
  color: #ffffff;
}

.doctor-profile-content--style2 .top-text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.doctor-profile-content--style2 .text-box p {
  color: #ffffff;
}

.doctor-profile-content--style2 .singnature img {
  opacity: 0.50;
}



/*** 
=============================================
  Services Style4 Css
=============================================
***/
.services-style4 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.services-style4 .container {
  max-width: 1600px;
}

.service-style4-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
  padding-bottom: 50px;
}

.service-style4-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  border-color: #bfbfbf;
}

.service-style4-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  color: #b3b3b3;
}

.service-style4-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
  color: #ffffff
}


.services-style4 {
  position: relative;
  display: block;
}

.single-service-style4 {
  position: relative;
  display: block;
}

.single-service-style4 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-service-style4 .img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.05;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.single-service-style4:hover .img-box:before {
  opacity: 0.50;
}

.single-service-style4 .img-box img {
  width: 100%;
  transform: scale(1.0);
}

.single-service-style4:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-service-style4 .title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
  margin-top: -15px;
  margin-right: 15px;
  padding: 22px 25px 21px;
  z-index: 2;
}

.single-service-style4 .title-box h3 {
  font-size: 24px;
  line-height: 34px;
}

.single-service-style4 .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4 .title-box h3 a:hover {
  color: var(--thm-base);
}

.single-service-style4 .title-box .btn-right {
  position: relative;
  display: block;
  margin-top: 8px;
}

.single-service-style4 .title-box .btn-right a {
  color: #000000;
}

.single-service-style4 .title-box .btn-right a span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4 .title-box .btn-right a span:hover {
  color: var(--thm-base);
}



/*** 
=============================================
  Services Style5 Css
=============================================
***/
.services-style5 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}


.single-service-style5 {
  position: relative;
  display: block;
}

.single-service-style5 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-service-style5 .img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.05;
  transition: background-color 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}

.single-service-style5:hover .img-box:before {
  opacity: 0.50;
}

.single-service-style5 .img-box img {
  width: 100%;
  transform: scale(1.0);
  transition: background-color 0.2s ease;
  transition: all 0.2s ease;
}

.single-service-style5:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-service-style5 .title-box {
  position: relative;
  display: block;
  padding-top: 27px;
}

.single-service-style5 .title-box h3 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 5px;
}

.single-service-style5 .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style5 .title-box h3 a:hover {
  color: var(--thm-base);
}


.single-service-style5 .btn-box {
  position: relative;
  display: block;
  margin-top: 15px;
}

.single-service-style5 .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--thm-font-5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style5 .btn-box a:hover {
  color: var(--thm-black);
}

.single-service-style5 .btn-box a .border-right {
  position: relative;
  display: block;
  margin-left: 10px;
  bottom: 8px;
  width: 120px;
  height: 1px;
  background-color: #e12454;
}



/*** 
=============================================
  Who We Area Css
=============================================
***/
.who-we-are {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 120px 0px 120px;
  z-index: 10;
}

.who-we-are__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.who-we-are__shape img {
  opacity: 0.25;
}

.who-we-are .img-box {
  position: relative;
  display: block;
  padding-right: 15px;
}


.who-we-are__content {
  position: relative;
  display: block;
}


.accordion-box-style2 .accordion {
  background: transparent;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 23px;
  padding-bottom: 14px;
}

.accordion-box-style2 .accordion:last-child {
  margin-bottom: 0px;
}

.accordion-box-style2 .accordion .accord-btn {
  padding-left: 0px;
}

.accordion-box-style2 .accordion .accord-btn h4 {
  color: var(--thm-black);
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  font-family: var(--thm-font-2);
  transition: all 500ms ease;
}

.accordion-box-style2 .accordion .accord-btn h4 span {
  position: relative;
  color: #747474;
  font-size: 14px;
  font-weight: 500;
  top: -8px;
}

.accordion-box-style2 .accordion .accord-btn::after {
  display: none;
}

.accordion-box-style2 .accordion .accord-content {
  padding-top: 21px;
  padding-bottom: 25px;
  padding-left: 0px;
  padding-right: 0px;
}




.who-we-are__content-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: -5px;
  padding-bottom: 46px;
}

.who-we-are__content-title h6 {
  color: #1a6fe1;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.who-we-are__content-title .border-box {
  position: relative;
  display: block;
  width: 130px;
  height: 2px;
  background-color: #1a6fe1;
  margin-left: 10px;
  top: -7px;
}

.accordion-box-style2.style3 .accordion {
  margin-bottom: 20px;
  padding-bottom: 11px;
}

.accordion-box-style2.style3 .accordion:last-child {
  margin-bottom: 0;
}

.accordion-box-style2.style3 .accordion .accord-content {
  padding-top: 12px;
  padding-bottom: 20px;
}



/*** 
=============================================
    Features Style1 Css
=============================================
***/
.features-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 0px 0px 120px;
}

.features-style1-content-box {
  position: relative;
  display: block;
  padding-top: 160px;
}

.features-style1-content-box__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.features-style1-content-box__top:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1000000px;
  bottom: 0;
  right: -10000000px;
  background-color: #f4f5f9;
  z-index: -1;
}

.features-style1-content-box__top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  height: 1px;
  background-color: #d9d9d9;
  z-index: -1;
}

.features-style1-content-box__top p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--thm-font-2);
}

.features-style1-content-box__top p a {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  color: var(--thm-base);
}

.features-style1-content-box__top p a span:before {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  font-weight: 700;
  top: 2px;
  color: var(--thm-gray);
}

.features-style1-content-box__inner {
  position: relative;
  display: block;
  padding-top: 120px;
}

.features-style1-content-box .sec-title {
  padding-bottom: 38px;
}

.features-style1-content-box .inner-content {
  position: relative;
  display: block;
  max-width: 590px;
}

.features-style1-content-box .inner-content .text {
  position: relative;
  display: block;
  padding-bottom: 30px;
}


.progress-levels {
  position: relative;
  display: block;
  max-width: 500px;
}

.progress-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.progress-box .top {
  position: relative;
  display: block;
  padding-bottom: 2px;
}

.progress-box .top h4 {
  position: relative;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  letter-spacing: 0.1em;
}

.progress-box .skill-percent {
  position: absolute;
  top: -33px;
  right: 0px;
}

.progress-box .count-text {
  position: relative;
  color: #909090;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  display: inline-block;
  float: none;
  font-family: var(--thm-font);
}

.progress-box .percent {
  position: relative;
  color: #909090;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  display: inline-block;
  float: none;
  margin-left: -3px;
  font-family: var(--thm-font);
}

.progress-box .bar {
  position: relative;
  display: block;
}

.progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: #eae5e3;
  border-radius: 5px;
}

.progress-box .bar .bar-fill {
  position: absolute;
  top: 0%;
  left: 0px;
  bottom: 0%;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  transition: all 2000ms ease 300ms;
  background: var(--thm-base);
}



.features-style1-img-box {
  position: relative;
  display: block;
  z-index: 2;
}

.features-style1-img-box img {
  max-width: none !important;
  float: left;
}

.features-style1-img-box .satisfied-patients-box {
  position: absolute;
  left: -40px;
  bottom: -40px;
  right: auto;
  width: 240px;
  border-radius: 0px;
  padding: 40px 0px 36px;
}



/*--------------------------------------------------------------
# Home Google Map Css
--------------------------------------------------------------*/
.home-google-map-area {
  position: relative;
  display: block;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.home-google-map {
  position: relative;
  display: block;
  border: none;
  height: 340px;
  width: 100%;
  background-color: #201c22;
  mix-blend-mode: luminosity;
  z-index: 10;
}


.google-map-content-box {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 100;
}

.map-contact-info-box {
  position: relative;
  display: block;
  max-width: 380px;
  width: 100%;
  background-color: #1a6fe1;
  padding: 43px 45px 38px;
  margin: 40px 0;
  float: right;
}

.map-contact-info-box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 9px;
}

.map-contact-info-box .inner-title::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}

.map-contact-info-box .inner-title h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.map-contact-info-box p {
  color: #ffffff;
  margin: 19px 0 0;
}

.map-contact-info-box h5 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  padding-top: 29px;
  font-weight: 400;
}

.map-contact-info-box h5 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.map-contact-info-box h5 a:hover {
  color: var(--thm-base);
}



/*** 
=============================================
    Patient Style1 Css
=============================================
***/
.patient-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0px 120px;
  z-index: 10;
}

.patient-style1__content {
  position: relative;
  display: block;
}

.patient-style1__content .sec-title {
  padding-bottom: 20px;
}

.patient-style1__content .top-text {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.patient-style1__content .top-text p {
  color: var(--thm-black);
  font-size: 23px;
  line-height: 33px;
  font-weight: 600;
}

.patient-style1__content .text {
  position: relative;
  display: block;
}

.patient-style1__content .top-text p {
  margin: 0;
}

.list-style6 .list-item {
  position: relative;
  display: block;
  margin-top: 22px;
}

.list-style6 .list-item ul {
  position: relative;
  display: block;
}

.list-style6 .list-item ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #444444;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.list-style6 .list-item ul li+li {
  margin-top: 9px;
}

.list-style6 .list-item ul li .icon {
  position: absolute;
  top: 9px;
  left: 0;
  line-height: 0;
}

.list-style6 .list-item ul li .icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 14px;
  line-height: 14px;
}

.list-style6 .list-item ul li a {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.list-style6 .list-item ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 1px;
  background-color: #868e9b;
}

.list-style6 .list-item ul li a:hover {
  color: var(--thm-base);
}

.patient-style1__content .btn-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 38px;
}

.patient-style1__content .btn-box a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  padding: 25px 0 25px;
  padding-left: 40px;
  border-radius: 50px;
  max-width: 360px;
  width: 100%;
  text-align: left;
  background-color: var(--thm-primary);
}

.patient-style1__content .btn-box a+a {
  margin-top: 20px;
}



.patient-style1__sidebar {
  position: relative;
  display: block;
}

.patient-style1__sidebar .special-offer-box {
  position: relative;
  display: block;
  padding: 43px 30px 50px;
  z-index: 1;
}

.patient-style1__sidebar .special-offer-box__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.patient-style1__sidebar .special-offer-box__bg::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(26, 111, 225, 0.92);
}

.patient-style1__sidebar .special-offer-box .inner-title {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.patient-style1__sidebar .special-offer-box .inner-title h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 16px;
}

.patient-style1__sidebar .special-offer-box .inner-title h2 span {
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.patient-style1__sidebar .special-offer-box .inner-title .border-box {
  position: relative;
  display: block;
  background-color: #55b6c7;
  width: 50px;
  height: 2px;
  margin-right: 0px;
}

.patient-style1__sidebar .special-offer-box .text {
  position: relative;
  display: block;
}

.patient-style1__sidebar .special-offer-box .text p {
  color: #ffffff;
}

.patient-style1__sidebar .special-offer-box .btns-box {
  position: relative;
  display: block;
  margin-top: 26px;
  line-height: 0;
}

.patient-style1__sidebar .special-offer-box .btns-box .btn-one {
  padding-top: 3px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 1px;
  line-height: 36px;
  border-radius: 30px;
}


.sidebar-contact-info-style1 {
  position: relative;
  display: block;
  margin-top: 43px;
}

.sidebar-contact-info-style1 h2 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 900;
  margin-bottom: 6px;
}

.sidebar-contact-info-style1 p {
  margin: 0;
  line-height: 22px;
}

.sidebar-contact-info-style1 ul {
  position: relative;
  display: block;
  margin-top: 7px;
}

.sidebar-contact-info-style1 ul li {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.sidebar-contact-info-style1 ul li+li {
  margin-top: 2px;
}

.sidebar-contact-info-style1 ul li a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-contact-info-style1 ul li a:hover {
  color: var(--thm-base);
}









/*** 
=============================================
    Shop Features Css
=============================================
***/
.shop-features {
  position: relative;
  display: block;
  background-color: #00baeb;
  padding: 37px 0 36px;
  z-index: 10;
}

.shop-features__content {
  position: relative;
  display: block;
}

.shop-features__content ul {
  position: relative;
  display: flex;
}

.shop-features__content ul li {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 90px;
  padding-right: 20px;
}

.shop-features__content ul li .icon {
  position: absolute;
  top: 10px;
  left: 0;
  line-height: 0;
}

.shop-features__content ul li .icon i {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 65px;
  line-height: 65px;
}

.shop-features__content ul li .text {
  position: relative;
  display: block;
}

.shop-features__content ul li .text h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
}

.shop-features__content ul li .text p {
  color: #ffffff;
}



/*** 
=============================================
    Featured Products Style1 Css
=============================================
***/
.featured-products-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 40px;
  z-index: 10;
}

.featured-products-style1__title {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: -10px;
  margin-bottom: 38px;
}

.featured-products-style1__title h2 {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
}

.featured-products-style1__title .border-right {
  position: relative;
  display: block;
  bottom: 12px;
  background-color: var(--thm-primary);
  width: 50px;
  height: 2px;
  margin-left: 16px;
}



.single-product-item {
  position: relative;
  display: block;
  margin-bottom: 80px;
}

.single-product-item .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-product-item .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.single-product-item:hover .img-box::before {
  opacity: 0.2;
}

.single-product-item .img-box img {
  width: 100%;
  transform: scale(1.0);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-product-item:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-product-item .title-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.single-product-item .title-box .inner-title {
  position: relative;
  display: block;
}

.single-product-item .title-box .inner-title h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 3px;
}

.single-product-item .title-box .inner-title h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-item .title-box .inner-title h3 a:hover {
  color: var(--thm-base);
}

.single-product-item .title-box .inner-title span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.single-product-item .button-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 17px;
}

.single-product-item .button-box .btn-one {
  padding-top: 3px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 3px;
  line-height: 39px;
}

.single-product-item .button-box .btn-one:before {
  background: var(--thm-base);
}

.single-product-item .button-box .btn-one:after {
  background-color: var(--thm-primary);
}




/*** 
=============================================
    Best Product Style1 Css
=============================================
***/
.best-product-style1 {
  position: relative;
  display: block;
  padding: 100px 0 100px;
  z-index: 10;
}

.best-product-style1-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.best-product-style1__products-item {
  position: relative;
  display: block;
}

.single-product-item-style2 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding-bottom: 40px;
}

.single-product-item-style2 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-product-item-style2 .img-box img {
  width: 100%;
  transform: scale(1.0);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-product-item-style2:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}


.single-product-item-style2 .title-box {
  position: relative;
  display: block;
}

.single-product-item-style2 .title-box .inner-title h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 3px;
}

.single-product-item-style2 .title-box .inner-title h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-item-style2 .title-box .inner-title h3 a:hover {
  color: var(--thm-base);
}

.single-product-item-style2 .title-box .inner-title span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.single-product-item-style2 .button-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 17px;
}

.single-product-item-style2 .button-box .btn-one {
  padding-top: 3px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 3px;
  line-height: 39px;
}

.single-product-item-style2 .button-box .btn-one:before {
  background: var(--thm-base);
}

.single-product-item-style2 .button-box .btn-one:after {
  background-color: var(--thm-primary);
}



.best-product-style1__title {
  position: relative;
  display: block;
  margin-left: 40px;
}

.best-product-style1__title h2 {
  color: #ffffff;
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 15px;
}

.best-product-style1__title h2 span {
  color: var(--thm-primary);
}

.best-product-style1__title p {
  color: #ffffff;
}



.best-product-style1__title .button-box {
  position: relative;
  display: block;
  margin-top: 41px;
  line-height: 0;
}

.best-product-style1__title .button-box .btn-one {
  padding-top: 3px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 1px;
  line-height: 46px;
}

.best-product-style1__title .button-box .btn-one:before {
  background: var(--thm-base);
}

.best-product-style1__title .button-box .btn-one:after {
  background-color: var(--thm-primary);
}




/*** 
=============================================
    Info Box Style1 Css
=============================================
***/
.info-box-style1 {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 10;
}

.info-box-style1__content {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 44px 0px 0px;
  margin-right: -80px;
  z-index: 1;
}

.info-box-style1__content::before {
  position: absolute;
  content: '';
  left: -10000000px;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: #d9d9d9;
  z-index: -1;
}

.single-info-box-style1 {
  position: relative;
  display: block;
  padding-left: 80px;
  margin-bottom: 45px;
  padding-bottom: 45px;
}

.single-info-box-style1 .icon {
  position: absolute;
  top: 8px;
  left: 0;
  line-height: 0;
}

.single-info-box-style1 .icon i {
  position: relative;
  display: inline-block;
  color: #d12815;
  font-size: 60px;
  line-height: 60px;
}

.single-info-box-style1 .title-box {
  position: relative;
  display: block;
}

.single-info-box-style1 .title-box h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  font-family: var(--thm-font-3);
  margin: 0 0 3px;
}

.single-info-box-style1 .title-box p {
  line-height: 26px;
  font-weight: 500;
}

.single-info-box-style1 .title-box p+p {
  margin-top: 0px;
}

.single-info-box-style1 .title-box p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-info-box-style1 .title-box p a:hover {
  color: var(--thm-base);
}



.single-info-box-style1__content {
  position: relative;
  display: block;
  background-color: var(--thm-base);
  padding: 35px 40px 41px;
  margin-left: 50px;
  margin-right: -60px;
}

.single-info-box-style1__content .inner {
  position: relative;
  display: block;
  padding-left: 95px;
}

.single-info-box-style1__content .inner .icon {
  position: absolute;
  top: 15px;
  left: 0;
}

.single-info-box-style1__content .inner .icon i {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
}

.single-info-box-style1__content .inner .title-box {
  position: relative;
  display: block;
  padding-left: 30px;
}

.single-info-box-style1__content .inner .title-box:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 3px;
  width: 1px;
  background-color: #ffffff;
  opacity: 0.20;
}

.single-info-box-style1__content .inner .title-box h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  font-family: var(--thm-font-3);
}



/*** 
=============================================
    Team details Style1 Css
=============================================
***/
.team-details-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0px 111px;
  z-index: 10;
}

.team-details-style1__img {
  position: relative;
  display: block;
}

.team-details-style1__img .img-box {
  position: relative;
  display: block;
}

.team-details-style1__img .img-box img {
  width: 100%;
}

.team-details-style1__img .contact-info {
  position: relative;
  display: block;
  margin-top: 50px;
}

.team-details-style1__img .contact-info ul {
  position: relative;
  display: block;
}

.team-details-style1__img .contact-info ul li {
  position: relative;
  display: block;
  background-color: #1057b6;
}

.team-details-style1__img .contact-info ul li {
  margin-top: 20px;
}

.team-details-style1__img .contact-info .inner {
  position: relative;
  display: flex;
  padding: 12px 22px 12px;
  align-items: center;
}

.team-details-style1__img .contact-info .inner .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 20px;
}

.team-details-style1__img .contact-info .inner .icon span {
  color: #1057b6;
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
}

.team-details-style1__img .contact-info .inner a {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--thm-font);
  letter-spacing: 0.03em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-details-style1__img .contact-info .inner a.mail {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
}

.team-details-style1__img .contact-info .inner a:hover {
  color: var(--thm-base);
}



.team-details-style1__img .contact-info .inner .social-links {
  position: relative;
  display: block;
}

.team-details-style1__img .contact-info .inner .social-links a+a {
  margin-left: 20px;
}


.team-details-style1__img .contact-info .inner .social-links a i {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 22px;
}




.team-details-style1__content {
  position: relative;
  display: block;
  margin-left: 70px;
}

.team-details-style1__content .inner-title {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-bottom: 12px;
}

.team-details-style1__content .inner-title h2 {
  font-size: 45px;
  line-height: 55px;

}

.team-details-style1__content .inner-title p {
  font-size: 18px;
  line-height: 28px;

}

.team-details-style1__content .inner-title p span {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #444444;
}

.team-details-style1__content .text {
  position: relative;
  display: block;
}

.team-details-style1__content .text p+p {
  position: relative;
  display: block;
  margin-top: 25px;
}



.education-history {
  position: relative;
  display: block;
  margin-top: 41px;
}

.education-history .top-title {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.education-history .top-title h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
  font-family: var(--thm-font-3);

}

.education-history ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.education-history ul li {
  position: relative;
  display: flex;
}

.education-history ul li+li {
  margin-top: 22px;
}

.education-history .year {
  position: relative;
  display: block;
  width: 110px;
}

.education-history .year h2 {
  color: #1a6fe1;
  font-size: 34px;
  line-height: 44px;
}

.education-history .text {
  position: relative;
  top: 2px;
  display: block;
  flex: 1;
}

.education-history .text h3 {
  font-size: 22px;
  line-height: 32px;
}



/*** 
=============================================
  Parctice Style1 Css
=============================================
***/
.parctice-style1 {
  position: relative;
  display: block;
  background-color: #eff0f5;
  padding: 120px 0px 111px;
  z-index: 10;
}

.parctice-style1__img-box {
  position: relative;
  display: block;
}

.parctice-style1__img-box img {
  width: 100%;
}

.parctice-style1__content-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.parctice-style1__content-box .sec-title {
  padding-bottom: 18px;
}

.parctice-style1__content-box p {
  margin: 0;
}

.parctice-style1__content-box p+p {
  margin-top: 20px;
}



/*** 
=============================================
    Service Style10 Css
=============================================
***/
.service-style10 {
  position: relative;
  display: block;
  background-color: #ffffff;
  z-index: 10;
}

.service-style10 .container {
  max-width: 100%;
  padding: 0;
}

.service-style10-carousel {
  position: relative;
}

.service-style10-carousel.owl-theme .owl-stage-outer {
  padding-top: 0px;
  padding-bottom: 0px;
  border-left: 1px solid #d7dbde;
  border-bottom: 1px solid #d7dbde;
  margin-bottom: 60px;
}

.single-service-style10 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 58px 90px 56px;
  padding-right: 30px;
  border-right: 1px solid #d7dbde;
}

.single-service-style10 .icon-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-bottom: 21px;
}

.single-service-style10 .icon-box span {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 62px;
  line-height: 62px;
}

.single-service-style10 h3 {
  font-size: 24px;
  line-height: 34px;
}

.single-service-style10 h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style10 h3 a:hover {
  color: var(--thm-primary);
}

.single-service-style10 .btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.single-service-style10 .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style10 .btn-box a:hover {
  color: var(--thm-base);
}

.single-service-style10 .btn-box a span {
  position: relative;
  display: inline-block;
  color: #fd6655;
  font-size: 24px;
  font-weight: 600;
  margin-left: 20px;
}


.single-service-style10.gray-bg {
  background-color: #f5f7fa;
}

.single-service-style10.gray-bg .icon-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-bottom: 21px;
}

.single-service-style10.gray-bg .icon-box span {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 62px;
  line-height: 62px;
}

.single-service-style10.gray-bg h3 {
  font-size: 24px;
  line-height: 34px;
}

.single-service-style10.gray-bg h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style10.gray-bg h3 a:hover {
  color: var(--thm-primary);
}

.single-service-style10.gray-bg .btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.single-service-style10.gray-bg .btn-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style10.gray-bg .btn-box a:hover {
  color: var(--thm-base);
}

.single-service-style10.gray-bg .btn-box a span {
  position: relative;
  display: inline-block;
  color: #fd6655;
  font-size: 24px;
  font-weight: 600;
  margin-left: 20px;
}



.service-style10-carousel.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  border: 2px solid var(--thm-black);
}

.service-style10-carousel.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  background: var(--thm-black);
}



/*** 
=============================================
    About Clinic Style2 Css
=============================================
***/
.about-clinic-style2 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.about-clinic-style2__img {
  position: relative;
  display: block;
  margin-right: -30px;
  overflow: hidden;
}

.about-clinic-style2__img img {
  width: 100%;
}

.about-clinic-style2__content {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-clinic-style2__content .sec-title {
  padding-bottom: 15px;
}

.about-clinic-style2__content .top-text {
  position: relative;
  display: block;
}

.about-clinic-style2__content .top-text h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-bottom: 10px;
}

.about-clinic-style2__content .top-text p {
  margin: 0;
}


.about-clinic-style2__content .bottom-text {
  position: relative;
  display: block;
  margin-top: 23px;
}

.about-clinic-style2__content .bottom-text h2 {
  font-size: 24px;
  line-height: 32px;
  font-family: var(--thm-font);
  margin-bottom: 12px;
}

.about-clinic-style2__content .bottom-text p {
  margin: 0;
}



/*** 
=============================================
    About doctor Css
=============================================
***/
.about-doctor {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.about-doctor__img-box {
  position: relative;
  display: block;
  margin-right: -30px;
  overflow: hidden;
}

.about-doctor__img-box img {
  width: 100%;
}

.about-doctor__content-box {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-doctor__content-box .sec-title {
  padding-bottom: 17px;
}

.about-doctor__content-box .sec-title h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin-top: 10px;
}

.about-doctor__content-box .top-text {
  position: relative;
  display: block;
}

.about-doctor__content-box .top-text p {
  margin: 0;
}

.about-doctor__content-box .bottom-text {
  position: relative;
  display: block;
  margin-top: 17px;
}

.about-doctor__content-box .bottom-text p {
  margin: 0;
}

.sig-img .signature {
  position: relative;
  display: block;
  margin-top: 25px;
}

.sig-img .signature img {
  opacity: 0.77;
}



/*** 
=============================================
    About Clinic Css
=============================================
***/
.about-clinic {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.about-clinic__content {
  position: relative;
  display: block;
}

.about-clinic__content .sec-title {
  padding-bottom: 13px;
}

.about-clinic__content .text {
  position: relative;
  display: block;
}

.about-clinic__content .text p {
  margin: 0;
}

.about-clinic__content .text p+p {
  padding-top: 15px;
}

.about-clinic__content .btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
  top: 4px;
}

.about-clinic__content .btn-box a {
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--thm-base);
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.about-clinic__content .btn-box a:hover {
  color: var(--thm-primary);
}

.about-clinic__content .btn-box .border-right {
  position: relative;
  display: block;
  bottom: 3px;
  width: 100px;
  height: 1px;
  background-color: var(--thm-base);
  margin-left: 15px;
}

.about-clinic__img {
  position: relative;
  display: block;
}

.about-clinic__img img {
  width: 100%;
}



/*** 
=============================================
    Contact Style3 Area
=============================================
***/
.contact-style3-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  padding: 120px 0 111px;
  z-index: 10;
}

.contact-style3__content-box {
  position: relative;
  display: block;
  max-width: 500px;
}

.contact-style3__content-box .sec-title {
  padding-bottom: 18px;
}


.contact-style3__content-box--inner {
  position: relative;
  display: block;
}

.contact-style3__content-box--inner p {
  color: #444444;
}

.contact-style3__content-box--inner .phone-number {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 31px;
  margin-bottom: 25px;
}

.contact-style3__content-box--inner .phone-number .img-box {
  position: relative;
  display: block;
  width: 70px;
}

.contact-style3__content-box--inner .phone-number .img-box img {
  border-radius: 50%;
}


.contact-style3__content-box--inner .phone-number .text {
  position: relative;
  flex: 1;
  padding-left: 30px;
}

.contact-style3__content-box--inner .phone-number .text h4 {
  color: #444444;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.contact-style3__content-box--inner .phone-number .text h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin: 0px 0 0;
}

.contact-style3__content-box--inner .phone-number .text h3 a {
  color: #0b1970;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-style3__content-box--inner .phone-number .text h3 a:hover {
  color: var(--thm-base);
}


.contact-style3__content-box--inner .text-box2 {
  position: relative;
  display: block;
  padding-bottom: 18px;
}

.contact-style3__content-box--inner .text-box2 p {
  font-family: var(--thm-font);
}

.contact-style3__content-box--inner .text-box2 p span {
  font-weight: 600;
}

.contact-style3__content-box--inner .text-box-3 p {
  font-family: var(--thm-font);
}

.contact-style3__content-box--inner .text-box-3 p span {
  font-weight: 600;
}


.thm-form-box-2 {
  position: relative;
  display: block;
}

.thm-form-box-2 .row {
  --bs-gutter-x: 15px;
}

.thm-form-box-2 form {
  position: relative;
  display: block;
}

.thm-form-box-2 form .form-group {
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.thm-form-box-2 form .input-box {
  position: relative;
  display: block;
}

.thm-form-box-2 form input[type="text"],
.thm-form-box-2 form input[type="email"],
.thm-form-box-2 form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #e9eaed;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.thm-form-box-2 form input[type="text"]:focus,
.thm-form-box-2 form input[type="email"]:focus,
.thm-form-box-2 form textarea:focus {
  border: 1px solid var(--thm-base);
  outline: none;
}

.thm-form-box-2 form textarea {
  height: 207px;
  padding-top: 12px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
}

.thm-form-box-2 form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-2 form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-2 form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-2 form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-2 form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-2 form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-2 form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-2 form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-2 form textarea::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-2 form textarea:-moz-placeholder {
  color: #444444;
}

.thm-form-box-2 form textarea::-moz-placeholder {
  color: #444444;
}

.thm-form-box-2 form textarea:-ms-input-placeholder {
  color: #444444;
}

.thm-form-box-2 form .form-group .select-box {
  position: relative;
  display: block;
  width: 100%;
}

.thm-form-box-2 form .form-group .nice-select {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 0px;
  border: solid 1px #e9eaed;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  line-height: 58px;
  outline: none;
  padding-left: 25px;
  padding-right: 25px;
  transition: all 0.2s ease-in-out;
  font-family: var(--thm-font);
}

.thm-form-box-2 form .form-group .nice-select:after {
  position: absolute;
  content: "\e932";
  font-family: 'icomoon' !important;
  color: #7f7873;
  font-size: 16px;
  top: 0px;
  right: 30px;
  bottom: 0;
  margin: 0px;
  font-weight: 400;
  border: none !important;
  transform: rotate(0deg) !important;
}

.thm-form-box-2 form .form-group .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;
}

.thm-form-box-2 form .form-group .nice-select .option {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 40px;
  min-height: 40px;
}


.thm-form-box-2 form .button-box {
  position: relative;
  display: block;
  padding-top: 10px;
}

.thm-form-box-2 form .button-box button {
  width: 100%;
  border-radius: 4px;
}



/*** 
=============================================
    Gallery Style1 Area Css
=============================================
***/
.gallery-style1-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  z-index: 10;
}

.gallery-style1-area .container {
  max-width: 100%;
  padding: 0;
}

.gallery-style1-area__inner {
  position: relative;
  display: flex;
}

.single-gallery-box {
  position: relative;
  display: block;
  width: 25%;
  float: left;
}

.single-gallery-box .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-gallery-box .img-holder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-black);
  opacity: 0;
  z-index: 2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.single-gallery-box:hover .img-holder:after {
  opacity: 0.85;
}

.single-gallery-box .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.single-gallery-box:hover .img-holder img {
  transform: scale(1.05) rotate(0deg);
}


.single-gallery-box .img-holder .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transform: perspective(400px) scale(0) translateY(-40px);
  transition: all 500ms ease;
}

.single-gallery-box:hover .img-holder .overlay-icon {
  opacity: 1;
  transform: perspective(400px) scale(1.0) translateY(0px);
  transition-delay: 500ms;
}

.single-gallery-box .img-holder .overlay-icon a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}



/*** 
=============================================
   Features Style2 Css
=============================================
***/
.features-style2 {
  position: relative;
  display: block;
  background-color: #003c80;
  z-index: 10;
}

.features-style2 .auto-container {
  max-width: 100%;
  padding: 0;
}

.features-style2 .row {
  --bs-gutter-x: 0px;
}

.features-style2__content-one {
  position: relative;
  display: block;
}

.features-style2__content-one__img {
  position: relative;
  display: block;
  width: 450px;
  height: 100%;
}

.features-style2__content-one__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}



.features-style2__content-one__text {
  position: relative;
  display: block;
  background-color: #ffffff;
  width: auto;
  height: 100%;
  margin-left: -14px;
  padding: 79px 65px 83px;
}

.features-style2__content-one__text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -24px;
  border-right: 24px solid #ffffff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  width: 24px;
  height: 40px;
  z-index: 10;
  transform: translateY(-50%);
}

.features-style2__content-one__text h5 {
  color: #9a9aa6;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.features-style2__content-one__text h2 {
  font-size: 32px;
  line-height: 55px;
}


.features-style2__content-two {
  position: relative;
  display: block;
  padding: 64px 60px 70px;
  padding-right: 20px;
}

.features-style2__content-two ul {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.features-style2__content-two ul li {
  position: relative;
  display: block;
  color: rgb(255, 255, 255, 0.50);
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.features-style2__content-two h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 45px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.feature-btn .btn-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.feature-btn .btn-box a {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--thm-font);
  text-transform: capitalize;
}

.feature-btn .arrow-btn {
  position: relative;
  display: block;
  padding-top: 42px;
}

.feature-btn .arrow-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 20px;
}



/*** 
=============================================
   Project Style1 Area Css
=============================================
***/
.project-style1-area {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  background-color: #ffffff;
  z-index: 1;
}

.project-style1-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 80px;
  right: 0;
  background-color: #f4f5f9;
  z-index: -1;
}

.project-style1-area .auto-container {
  max-width: 1880px;
  padding: 0 15px;
}

.project-style1-area__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 59px;
}

.project-style1-area__top .sec-title {
  padding-bottom: 0;
}

.project-style1-area__top .btn-box {
  position: relative;
  display: block;
  padding-bottom: 11px;
}

.single-project-item {
  position: relative;
  display: block;
}

.single-project-item .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.single-project-item .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.single-project-item:hover .img-holder img {
  transform: scale(1.05) rotate(1deg);
}

.single-project-item .img-holder-img-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 231px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-10deg);
  -ms-transform: perspective(400px) rotateX(-10deg);
  transform: perspective(400px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  border-radius: 6px;
  z-index: 1;
}

.single-project-item:hover .img-holder-img-bg {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.single-project-item .img-holder .overlay-button {
  position: absolute;
  top: 35px;
  right: 35px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
  -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
  transform: perspective(400px) rotateX(20deg) translateX(100%);
  -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;
  z-index: 2;
}

.single-project-item:hover .img-holder .overlay-button {
  opacity: 1.0;
  -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
  -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
  transform: perspective(400px) rotateX(0deg) translateX(-0%);
  transition-delay: .3s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.single-project-item .img-holder .overlay-button a {
  position: relative;
  display: block;
  background-color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  color: #000000;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-project-item .img-holder .overlay-button a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 5px;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background-color: rgba(var(--thm-base-rgb), .99);
  z-index: -1;
}

.single-project-item .img-holder .overlay-button a:hover::before {
  transform: scaleX(1.0);
}

.single-project-item .img-holder .overlay-button a:hover {
  color: #ffffff;
}

.single-project-item .img-holder .overlay-title {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 40px 42px;
  padding-right: 20px;
  transform: scaleY(0);
  transition: all 300ms ease 100ms;
  z-index: 2;
}

.single-project-item:hover .img-holder .overlay-title {
  transform: scaleY(1.0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-item .img-holder .overlay-title h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.single-project-item .img-holder .overlay-title h4 a {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-item .img-holder .overlay-title h4 a .border-right {
  position: relative;
  display: block;
  bottom: 6px;
  width: 60px;
  height: 1px;
  margin-left: 10px;
  background-color: rgb(255, 255, 255, 0.50);
}

.project-style1-carousel.owl-carousel .owl-dots {
  display: none;
}



/*** 
=============================================
    Service Style9 Css
=============================================
***/
.service-style9 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.single-service-style9 {
  position: relative;
  display: block;
  border: 1px solid #dbdbdb;
  text-align: center;
  padding: 50px 0 46px;
}

.single-service-style9 .icon {
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.single-service-style9 .icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-primary);
  font-size: 60px;
  line-height: 60px;
}

.single-service-style9 .title {
  position: relative;
  display: block;
}

.single-service-style9 .title h3 {
  font-size: 22px;
  line-height: 28px;
}

.single-service-style9 .title h3 a {
  color: var(--thm-black);
}



/*** 
=============================================
  Newsletter style1 Css
=============================================
***/
.newsletter-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 100px 0 100px;
  z-index: 10;
}

.newsletter-style1__content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-style1__content .sec-title {
  padding-bottom: 0;
}

.newsletter-style1__form {
  position: relative;
  display: block;
  width: 100%;
}

.newsletter-style1__form .form-group {
  position: relative;
  display: block;
  margin: 0;
}

.newsletter-style1__form .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 20px;
  font-weight: 400;
  background: transparent;
  border: 0px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid #011e45;
  padding-left: 0px;
  padding-right: 60px;
  border-radius: 0px;
}

.newsletter-style1__form .form-group button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 55px;
  height: 60px;
  line-height: 60px;
  transition: all 300ms ease 100ms;
  font-size: 20px;
  padding: 0;
  background: var(--thm-base);
}

.newsletter-style1__form .form-group button i {
  color: #ffffff;
}


.newsletter-checkbox {
  position: relative;
  display: block;
  padding-top: 30px;
}

.newsletter-checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  margin-right: 0px;
  margin-bottom: 0;
  color: rgba(68, 68, 68, 0.5);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--thm-font);
}

.newsletter-checkbox input[type="checkbox"] {
  display: none;
}

.newsletter-checkbox input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 0px;
  left: 0;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background-color: #ffffff;
  border: 2px solid #e4e4e4;
  cursor: pointer;
  border-radius: 0;
  transition: all 300ms ease;
}

.newsletter-checkbox label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e91d";
  color: #dce3e3;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  border-radius: 0%;
  opacity: 0;
  background-color: transparent;
  transition: all 300ms ease;
}

.newsletter-checkbox input[type="checkbox"]:checked+label span {
  border-color: #e4e4e4;
}

.newsletter-checkbox input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}



/*** 
=============================================
    schedule appointment style1 Css
=============================================
***/
.schedule-appointment-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  z-index: 10;
}

.schedule-appointment-style1::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background-color: #f4f5f9;
  z-index: -1;
}

.schedule-appointment-style1__content {
  position: relative;
  display: flex;
  margin-right: -110px;
  z-index: 1;
}

.schedule-appointment-style1__content::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: -1000000000px;
  background-color: #011e45;
  z-index: -1;
}

.schedule-appointment-style1__content .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.schedule-appointment-style1__content .img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.schedule-appointment-style1__content:hover .img-box:before {
  opacity: 0.20;
}

.schedule-appointment-style1__content .img-box img {
  width: 100%;
  transform: scale(1.0);
}

.schedule-appointment-style1__content:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}



.schedule-appointment-style1__content .title-box {
  position: relative;
  display: block;
  padding: 42px 55px 0px;
  flex: 1;
  padding-right: 0;
}

.schedule-appointment-style1__content .title-box h2 {
  color: #ffffff;
  font-size: 38px;
  line-height: 48px;
}

.schedule-appointment-style1__content .title-box p {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin: 0 0 6px;
}

.schedule-appointment-style1__content .title-box a {
  color: var(--thm-base);
  font-size: 38px;
  line-height: 48px;
  font-weight: 700;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.schedule-appointment-style1__content .title-box a:hover {
  color: #ffffff;
}



/*** 
=============================================
    Testimonial Style3 Css
=============================================
***/
.testimonial-style3 {
  position: relative;
  display: block;
  background-color: #e8f5fd;
  padding: 140px 0 140px;
  z-index: 10;
}

.testimonial-style3__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 830px;
  width: 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  z-index: -1;
}


.testimonial-style3__content {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  float: right;
}

.testimonial-style3__content .inner-title {
  position: relative;
  display: block;
  padding-bottom: 43px;
}

.testimonial-style3__content .inner-title h4 {
  color: #1a6fe1;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.single-testimonial-style3 {
  position: relative;
  display: block;
  padding-left: 160px;
}

.single-testimonial-style3 .img-box {
  position: absolute;
  top: 9px;
  left: 0;
  width: 115px;
  height: 115px;
  border-radius: 50%;
}

.single-testimonial-style3 .img-box .icon {
  position: relative;
  display: block;
  margin-top: 30px;
  text-align: center;
  line-height: 0;
}

.single-testimonial-style3 .img-box .icon span {
  position: relative;
  display: inline-block;
  color: #1a6fe1;
  font-size: 30px;
  line-height: 30px;
}

.single-testimonial-style3 .text-box {
  position: relative;
  display: block;
}

.single-testimonial-style3 .text-box p {
  font-size: 20px;
  line-height: 30px;
}

.single-testimonial-style3 .text-box .name {
  position: relative;
  display: block;
  margin-top: 30px;
}

.single-testimonial-style3 .text-box .name h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.single-testimonial-style3 .text-box .name span {
  color: var(--thm-black);
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-style3-carousel.owl-carousel.owl-dot-style1 .owl-dots {
  position: absolute;
  bottom: 0;
  right: 0;
}



/*** 
=============================================
    Featured Gallery Css
=============================================
***/
.featured-gallery {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}


.single-feaured-gallery {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.single-feaured-gallery .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-feaured-gallery .img-holder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-black);
  opacity: 0;
  z-index: 2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.single-feaured-gallery:hover .img-holder:after {
  opacity: 0.30;
}

.single-feaured-gallery .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.single-feaured-gallery:hover .img-holder img {
  transform: scale(1.05) rotate(0deg);
}


.single-feaured-gallery .img-holder .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transform: perspective(400px) scale(0) translateY(-10%);
  transition: all 300ms ease;
}

.single-feaured-gallery:hover .img-holder .overlay-icon {
  opacity: 1;
  transform: perspective(400px) scale(1.0) translateY(0px);
  transition-delay: 700ms;
}

.single-feaured-gallery .img-holder .overlay-icon a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}


.featured-gallery__btns-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 30px;
}




/*** 
=============================================
    Gallery Page1 Css
=============================================
***/
.gallary-page1 {
  position: relative;
  display: block;
  padding: 112px 0px 90px;
  background-color: #ffffff;
  z-index: 10;
}


.project-menu-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 45px;
}

.project-filter {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-filter li {
  position: relative;
  display: inline-block;
  float: none;
  margin: 0 18px 10px;
}

.project-filter li .filter-text {
  position: relative;
  display: block;
  color: #242424;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
  text-transform: capitalize;
  cursor: pointer;
  transition: all .4s ease;
  z-index: 1;
}

.project-filter li .filter-text:before {
  position: absolute;
  left: -1px;
  bottom: 5px;
  right: -1px;
  height: 1px;
  content: "";
  background: var(--thm-base);
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
  transform: scaleX(1.0);
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
  color: var(--thm-base);
}

.project-filter li .count {
  display: none;
}


.single-gallery-item-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.single-gallery-item-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-gallery-item-style1 .img-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-primary);
  opacity: 0;
  z-index: 2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.single-gallery-item-style1:hover .img-box:before {
  opacity: 0.80;
}

.single-gallery-item-style1 .img-box img {
  width: 100%;
  transform: scale(1.0);
}

.single-gallery-item-style1:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}

.single-gallery-item-style1 .img-box .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(-50px);
  transform-origin: top;
  transition: all 500ms ease;
  z-index: 5;
}

.single-gallery-item-style1:hover .img-box .overlay-icon {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 500ms;
}

.single-gallery-item-style1 .img-box .overlay-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  font-size: 32px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-gallery-item-style1 .img-box .overlay-icon a:hover {
  color: var(--thm-base);
}



/*** 
=============================================
    Gallery Page2 Css
=============================================
***/
.gallery-page2 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 112px 0px 90px;
  z-index: 10;
}

.gallery-page2 .container {
  max-width: 1890px;
}

.gallery-page2_colum {
  flex: 0 0 auto;
  width: 20%;
}



/*** 
=============================================
    Appointment Form Style1 Css
=============================================
***/
.appointment-form-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 11;
}

.appointment-form__box {
  position: relative;
  display: block;
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}

.appointment-form__box {
  position: relative;
  display: block;
}

.appointment-form__box form {
  position: relative;
  display: block;
}

.appointment-form__box form .form-group {
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.appointment-form__box form .input-box {
  position: relative;
  display: block;
}

.appointment-form__box form input[type="text"],
.appointment-form__box form input[type="email"],
.appointment-form__box form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #dadada;
  width: 100%;
  height: 55px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.appointment-form__box form input[type="text"]:focus,
.appointment-form__box form input[type="email"]:focus,
.appointment-form__box form textarea:focus {
  border: 1px solid var(--thm-base);
  outline: none;
}

.appointment-form__box form .input-box .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: #dadada;
  font-size: 16px;
}

.appointment-form__box form .input-box .icon span:before {
  position: relative;
  top: 0px;
}



.appointment-form__box .select-box {
  position: relative;
  display: block;
  width: 100%;
}

.appointment-form__box .nice-select {
  position: relative;
  display: block;
  background-color: #ffffff;
  border-radius: 0px;
  border: solid 1px #dadada;
  width: 100%;
  height: 55px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  line-height: 53px;
  outline: none;
  padding-left: 25px;
  padding-right: 25px;
  transition: all 0.2s ease-in-out;
  font-family: var(--thm-font);
}

.appointment-form__box .nice-select:after {
  position: absolute;
  content: "\e932";
  font-family: 'icomoon' !important;
  color: #aeaeae;
  font-size: 16px;
  top: 0px;
  right: 32px;
  bottom: 0;
  margin: 0px;
  font-weight: 400;
  border: none !important;
  transform: rotate(0deg) !important;
}

.appointment-form__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;
}

.appointment-form__box .nice-select .option {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 40px;
  min-height: 40px;
}


.appointment-form__box form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.appointment-form__box form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.appointment-form__box form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.appointment-form__box form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.appointment-form__box form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.appointment-form__box form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.appointment-form__box form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.appointment-form__box form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}

.appointment-form__box form .button-box {
  position: relative;
  display: block;
  padding-top: 30px;
}



/*** 
=============================================
    Consultation Style1 Css
=============================================
***/
.consultation-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 112px;
  z-index: 10;
}

.consultation-style1 .sec-title {
  padding-bottom: 18px;
}

.consultation-style1 .text-box {
  position: relative;
  display: block;
  margin-bottom: 71px;
}

.consultation-style1 .text-box p {
  margin: 0;
}

.single-consultation-box {
  position: relative;
  display: block;
}

.single-consultation-box .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 123px;
  height: 123px;
  border-radius: 50%;
  background-color: #f4f5f9;
}

.single-consultation-box .icon-box i {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
}

.single-consultation-box .title-box {
  position: relative;
  display: block;
  margin-top: 33px;
}

.single-consultation-box .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 6px;
}

.single-consultation-box .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-consultation-box .title-box h3 a:hover {
  color: var(--thm-base);
}

.single-consultation-box .title-box p {
  margin: 0;
}



/*** 
=============================================
    Service page One Css
=============================================
***/
.services-page-one {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 40px;
  z-index: 10;
}

.services-page-one .single-service-style5 {
  margin-bottom: 72px;
}



/*** 
=============================================
    Service page Two Css
=============================================
***/
.services-page-two {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 120px 0 90px;
  z-index: 10;
}

.services-page-two .single-service-style2 {
  margin-bottom: 30px;
}



/*** 
=============================================
    Service Details Page Css
=============================================
***/
.service-details-page {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}


.service-details-page-links {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.service-details-page-links ul {
  position: relative;
  display: block;
}

.service-details-page-links ul li {
  position: relative;
  display: block;
}

.service-details-page-links ul li+li {
  margin-top: 3px;
}

.service-details-page-links ul li a {
  position: relative;
  display: block;
  background-color: #f1f1f1;
  padding: 12px 25px 12px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.service-details-page-links ul li.current a,
.service-details-page-links ul li:hover a {
  color: #ffffff;
  padding-left: 30px;
}

.service-details-page-links ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background-color: #d2d2d2;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details-page-links ul li:hover a:before,
.service-details-page-links ul li.current a:before {
  width: 0px;
}

.service-details-page-links ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-base);
  border-left: 4px solid #ab173c;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease,
    -webkit-transform 0.4s ease;
  transform-origin: left right;
  -webkit-transform: scale(1, 0);
  transform: scale(0, 1);
  z-index: -1;
}

.service-details-page-links ul li.current a::after,
.service-details-page-links ul li:hover a::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: right center;
}



.sidebar-download-box {
  position: relative;
  display: block;
}

.sidebar-download-box .dwn-btn {
  position: relative;
  display: block;
}

.sidebar-download-box .dwn-btn a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 19px;
  line-height: 65px;
  font-weight: 700;
  font-family: var(--thm-font-2);
  background-color: var(--thm-black);
  padding-left: 80px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-download-box .dwn-btn a:hover {
  color: var(--thm-base);
}

.sidebar-download-box .dwn-btn a .icon {
  position: absolute;
  top: 13px;
  left: 20px;
  line-height: 0;
}

.sidebar-download-box .dwn-btn a .icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
}



.sidebar-contact-info-2 {
  position: relative;
  display: block;
  margin-top: 31px;
}

.sidebar-contact-info-2 ul {
  position: relative;
  display: block;
}

.sidebar-contact-info-2 ul li {
  position: relative;
  display: block;
  padding-left: 45px;
}

.sidebar-contact-info-2 ul li+li {
  margin-top: 7px;
}

.sidebar-contact-info-2 ul li .icon {
  position: absolute;
  top: 4px;
  left: 0;
}

.sidebar-contact-info-2 ul li .icon span {
  position: relative;
  display: inline-block;
  color: #1c70e1;
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
}

.sidebar-contact-info-2 ul li a {
  color: var(--thm-black);
}

.sidebar-contact-info-2 ul li a.phone-number {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--thm-font);
}

.sidebar-contact-info-2 ul li a {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-contact-info-2 ul li a:hover {
  color: var(--thm-base);
}



.service-details-content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.service-details-img-box {
  position: relative;
  display: block;
}

.service-details-img-box img {
  width: 100%;
}


.service-details-img-box--style2 {
  position: relative;
  display: block;
}

.service-details-img-box--style2 .row {
  --bs-gutter-x: 10px;
}

.service-details-img-box--style2 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}


.service-details-img-box--style2 .img-box.left {
  margin-right: 16.677px;
}

.service-details-img-box--style2 .img-box.right {
  margin-left: -16.677px;
}




.service-details-text-1 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.service-details-text-1 h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 900;
  margin-bottom: 13px;
}

.service-details-text-1 p {
  margin: 0;
}

.service-details-text-1 p+p {
  margin-top: 25px;
}




.service-details-text-2 {
  position: relative;
  display: block;
  margin-top: 50px;
}

.service-details-text-2 .text {
  position: relative;
  display: block;
  margin-top: -7px;
}

.service-details-text-2 .text.text-style2 {
  margin-left: -10px;
}

.service-details-text-2 .text h3 {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 11px;
}

.service-details-text-2 .text p {
  margin: 0;
}

.service-details-text-2 .text ul {
  position: relative;
  display: block;
  margin-top: 9px;
}

.service-details-text-2 .text ul li {
  position: relative;
  display: block;
  padding-left: 35px;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.service-details-text-2 .text ul li+li {
  margin-top: 8px;
}

.service-details-text-2 .text ul li .icon {
  position: absolute;
  top: 9px;
  left: 0;
  line-height: 0;
}

.service-details-text-2 .text ul li .icon span {
  position: relative;
  display: block;
  color: var(--thm-primary);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.service-details-text-2 .image {
  position: relative;
  display: block;
  margin-left: 35px;
}

.service-details-text-2 .image.image--style2 {
  margin-left: 0;
  margin-right: 35px;
}

.service-details-text-2 .image img {
  width: 100%;
}




.service-details-text-3 {
  position: relative;
  display: block;
  margin-top: 60px;
}

.service-details-text-3 .inner-title {
  position: relative;
  display: block;
  margin-top: -4px;
  padding-bottom: 29px;
}

.service-details-text-3 .inner-title h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
}

.service-details-choose-box {
  position: relative;
  display: block;
}

.service-details-choose-box .accordion-box {
  position: relative;
  display: block;
}


.visit-box {
  position: relative;
  display: block;
}

.visit-box .title-box {
  position: relative;
  display: block;
  background-color: var(--thm-base);
  padding: 53px 25px 60px;
  z-index: 10;
}

.visit-box .title-box h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 11px;
}

.visit-box .title-box .border-bottom {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255, 0.40);
  border-bottom: none !important;
}

.visit-box .title-box .text {
  position: relative;
  display: block;
  margin-top: 22px;
}

.visit-box .title-box .text p {
  color: #ffffff;
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
}

.visit-box .title-box .btns-box {
  position: relative;
  display: block;
  margin-top: 32px;
  line-height: 0;
}

.visit-box .title-box .btns-box .btn-one {
  padding-top: 3px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 1px;
  line-height: 41px;
}

.visit-box .title-box .btns-box .btn-one:before {
  background: var(--thm-primary);
}

.visit-box .title-box .btns-box .btn-one:after {
  background-color: var(--thm-black);
}



/*** 
=============================================
    Patient Special Offer Css
=============================================
***/
.patient-special-offer {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0px 120px;
  z-index: 10;
}

.patient-special-offer__form {
  position: relative;
  display: block;
  max-width: 770px;
}

.patient-special-offer__form .inner-title {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-bottom: 53px;
}

.patient-special-offer__form .inner-title h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
  margin-bottom: 19px;
}

.patient-special-offer__form .inner-title p {
  font-size: 20px;
  line-height: 30px;
  font-family: 500;
}


#offer-form {
  position: relative;
  display: block;
}

#offer-form .form-group {
  position: relative;
  display: block;
  padding-bottom: 20px;
}

#offer-form .form-group .input-box {
  position: relative;
  display: block;
}


#offer-form input[type="text"],
#offer-form input[type="email"],
#offer-form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  width: 100%;
  height: 55px;
  color: #797979;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--thm-font);
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
}

#offer-form textarea {
  height: 154px;
  padding-top: 8px;
}

#offer-form .button-box {
  position: relative;
  display: block;
  margin-top: 20px;
}


.sideber-contact-info-style1 {
  position: relative;
  display: block;
}

.sideber-contact-info-style1 .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.sideber-contact-info-style1 .img-box img {
  width: 100%;
}

.sideber-contact-info-style1 .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-black);
  opacity: 0;
  z-index: 2;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sideber-contact-info-style1:hover .img-box::before {
  opacity: 0.60;
}

.single-blog-style1 .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.sideber-contact-info-style1:hover .img-box img {
  transform: scale(1.05) rotate(0deg);
}



.sideber-contact-info-style1 .text-box {
  position: relative;
  display: block;
  margin-top: 32px;
}

.sideber-contact-info-style1 .text-box h2 {
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 5px;
}

.sideber-contact-info-style1 .text-box p {
  margin: 0;
  line-height: 22px;
}

.sideber-contact-info-style1 .text-box ul {
  position: relative;
  display: block;
  margin-top: 7px;
}

.sideber-contact-info-style1 .text-box ul li {
  position: relative;
  display: block;
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.sideber-contact-info-style1 .text-box ul li+li {
  margin-top: 2px;
}

.sideber-contact-info-style1 .text-box ul li a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sideber-contact-info-style1 .text-box ul li a:hover {
  color: var(--thm-base);
}






/*** 
=============================================
    Page Title Box Css
=============================================
***/
.page-title-box {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 93px 0 91px;
  z-index: 10;
}

.page-title-box .title {
  position: relative;
  display: block;
}

.page-title-box .title h2 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 500;
  font-family: var(--thm-font-3);
}



/*** 
=============================================
    Product Details Area Css
=============================================
***/
.product-details-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.product-details-image-box {
  position: relative;
  display: block;
  max-width: 525px;
  width: 100%;
}

.product-details-main-image {
  position: relative;
  display: block;
}

.product-details-main-image img {
  width: 100%;
}

.product-details-image-box .overlay-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.product-details-image-box .overlay-icon a {
  position: relative;
  display: block;
  background: #ffffff;
  width: 50px;
  height: 50px;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 25px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
}

.product-details-image-box .overlay-icon a span {
  position: relative;
  top: 4px;
}


.product-details-content-box {
  position: relative;
  display: block;
  padding-top: 10px;
}

.product-details-content-box .product-title {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-bottom: 21px;
  border-bottom: 1px solid #eaeaea;
}

.product-details-content-box .product-title h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  font-family: var(--thm-font-3);
}


.product-details-rate-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0 25px;
}

.product-details-rate-box .current-rate {
  position: relative;
  display: block;
}

.product-details-rate-box .current-rate h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.product-description {
  position: relative;
  display: block;
  padding-bottom: 32px;
}


.product-quantity-box {
  position: relative;
  display: flex;
  align-items: center;
}

.product-quantity-box .inner-title {
  position: relative;
  display: block;
  width: 105px;
}

.product-quantity-box .inner-title h5 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.product-quantity-box .input-group.bootstrap-touchspin {
  position: relative;
  display: block;
  width: 110px;
  height: 55px;
}

.product-quantity-box input.quantity-spinner.form-control {
  position: relative;
  display: block !important;
  padding: 0;
  width: 110px;
  flex: none;
  height: 55px;
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  border: 0px solid #e6e6e6;
  outline: none;
  margin: 0 auto;
  margin-left: 0 !important;
  text-align: center;
  font-family: var(--thm-font-2);
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.product-quantity-box .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
}

.product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn {
  position: relative;
  display: block;
  margin-left: 0px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  color: var(--thm-black);
  cursor: pointer;
  height: 55px;
  width: 30px;
  margin: 0;
  padding: 0;
}

.product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  float: right;
}

.product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  float: left;
}

.product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e932";
  color: var(--thm-black);
  font-size: 12px;
  padding: 0;
  line-height: 53px;
  transform: rotate(180deg);
}

.product-quantity-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e932";
  color: var(--thm-black);
  font-size: 12px;
  padding: 0;
  line-height: 53px;
}


.cart-btn-box {
  position: relative;
  display: inline-block;
}




.product-tab-box {
  position: relative;
  display: block;
  margin-top: 80px;
}

.product-tab-box .tab-btns {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.product-tab-box .tab-btns::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: #e2e2e2;
  z-index: -1;
}

.product-tab-box .tab-btns .tab-btn {
  position: relative;
  display: block;
  float: left;
  border-top: 3px solid #55b6c7;
  border-left: 1px solid #55b6c7;
  border-right: 1px solid #55b6c7;
}

.product-tab-box .tab-btns .tab-btn.active-btn,
.product-tab-box .tab-btns .tab-btn:hover {
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}

.product-tab-box .tab-btns .tab-btn+.tab-btn {
  margin-left: 10px;
}

.product-tab-box .tab-btns .tab-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #55b6c7;
  width: 155px;
  height: 50px;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--thm-font-2);
  z-index: 1;
}

.product-tab-box .tab-btns .tab-btn.active-btn span,
.product-tab-box .tab-btns .tab-btn:hover span {
  color: #000000;
  background-color: #ffffff;
}

.product-tab-box .tab-btns .tab-btn span:before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 0;
  content: "";
  opacity: 1;
  background: #55b6c7;
  transition: all 200ms ease;
  transition-delay: .1s;
  z-index: 2;
}

.product-tab-box .tab-btns .tab-btn.active-btn span:before,
.product-tab-box .tab-btns .tab-btn:hover span:before {
  height: 3px;
}

.product-tab-box .tabs-content {
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  border-top: none;
  padding: 34px 30px 41px;
}

.product-tab-box .tabs-content .tab {
  position: relative;
  display: none;
}

.product-tab-box .tabs-content .tab.active-tab {
  display: block;
}

.product-details-tab-content {
  position: relative;
  display: block;
}

.product-description-content {
  position: relative;
  display: block;
}

.product-description-content .text {
  position: relative;
  display: block;
}



.review-box-holder {
  position: relative;
  display: block;
}

.review-box-holder ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-review-box {
  position: relative;
  display: block;
  padding-left: 70px;
  min-height: 70px;
  margin-bottom: 44px;
}

.single-review-box:last-child {
  margin-bottom: 0;
}

.single-review-box .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.single-review-box .img-box img {
  width: 100%;
  border-radius: 50%;
}

.single-review-box .text-box {
  position: relative;
  display: block;
  padding-left: 30px;
}

.single-review-box .text-box h5 {
  position: relative;
  top: -2px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  font-family: var(--thm-font-3);
  text-transform: capitalize;
}

.single-review-box .text-box h5 span {
  color: var(--thm-gray);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.single-review-box .text-box .review-box {
  padding: 8px 0 16px;
}




.review-form {
  position: relative;
  display: block;
}

.review-form .title-box {
  position: relative;
  display: block;
  padding-bottom: 24px;
  margin-top: -5px;
}

.review-form .title-box h2 {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--thm-font-3);
}


.review-form .add-rating-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}

.review-form .add-rating-box .add-rating-title {
  position: relative;
  display: inline-block;
  float: left;
}

.review-form .add-rating-box .add-rating-title p {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 20px;
  margin: 0;
  text-transform: capitalize;
}

.review-form .add-rating-box .review-box {
  position: relative;
  display: inline-block;
  float: left;
  padding-left: 20px;
}

.review-form .add-rating-box .review-box ul li {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 20px;
  margin-right: 5px;
}

.review-form .add-rating-box .review-box ul li:last-child {
  margin-right: 0px;
}

.review-form .add-rating-box .review-box ul li i {
  font-size: 14px;
  line-height: 20px;
  opacity: 1;
  transition: all 500ms ease 0s;
}


.product-tab-box .review-form form input[type="text"],
.product-tab-box .review-form form input[type="email"],
.product-tab-box .review-form form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 55px;
  border: 1px solid #e2e2e2;
  color: #585858;
  font-size: 16px;
  padding: 0 20px;
  margin-bottom: 20px;
  border-radius: 0px;
  transition: all 500ms ease;
}

.product-tab-box .review-form form textarea {
  height: 120px;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.product-tab-box .review-form form button {
  padding: 0 60px;
  margin-top: 20px;
}

.product-tab-box .review-form form button:hover {
  color: #ffffff;
  background: #222222;
}

.product-tab-box .review-form form input[type="text"]:focus {
  border-color: #e1dddd;
}

.product-tab-box .review-form form input[type="email"]:focus {
  border-color: #e1dddd;
}

.product-tab-box .review-form form textarea:focus {
  border-color: #e1dddd;
}




/*** 
=============================================
    Similar Products Style1 Css
=============================================
***/
.similar-products-style1 {
  position: relative;
  display: block;
  background-color: #f6f6f6;
  padding-top: 120px;
  padding-bottom: 40px;
  z-index: 10;
}

.similar-products-style1 .top-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: -3px;
  padding-bottom: 54px;
}

.similar-products-style1 .top-title h2 {
  font-size: 42px;
  line-height: 40px;
  font-weight: 700;
}

.similar-products-style1 .top-title .border-box {
  position: relative;
  display: block;
  top: -6px;
  width: 50px;
  height: 2px;
  margin-left: 10px;
  background-color: #55b6c7;
}



/*** 
=============================================
    Video Gallery Style5 Css
=============================================
***/
.video-gallery-style5 {
  position: relative;
  display: block;
  background-color: #f4f5f9;
  padding: 120px 0px 120px;
  z-index: 10;
}

.video-gallery-style5__content {
  position: relative;
  display: block;
}

.video-gallery-style5__content .top-title {
  position: relative;
  display: block;
  margin-top: -9px;
}

.video-gallery-style5__content .top-title h2 {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 54px;
  font-weight: 900;
  margin-bottom: 19px;
}

.video-gallery-style5__content .top-title .border-box {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  width: 70px;
  height: 4px;
}

.video-gallery-style5__content .text-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.video-gallery-style5__content .text-box p {
  margin: 0;
}

.video-gallery-style5__content .btns-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 30px;
}




.video-gallery-style5__gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 35px;
  z-index: 1;
}

.video-gallery-style5__gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.20;
  z-index: 1;
}

.video-gallery-style5__gallery img {
  width: 100%;
}

.video-gallery-style5__gallery .icon {
  position: absolute;
  width: 110px;
  height: 110px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-gallery-style5__gallery .icon:after,
.video-gallery-style5__gallery .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.video-gallery-style5__gallery .icon:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-gallery-style5__gallery .icon .border-round {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  border: 10px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
}

.video-gallery-style5__gallery .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-gallery-style5__gallery .icon .video-popup span::before {
  position: relative;
  color: #1a6fe1;
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-gallery-style5__gallery .icon:hover .video-popup span::before {
  color: var(--thm-base);
}



/*** 
=============================================
   Cart area  style
=============================================
***/
.cart-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 10;
}

.cart-table-box .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.cart-table-box .cart-table {
  min-width: 1024px;
  width: 100%;
}

.cart-table-box .cart-table .cart-header {
  position: relative;
  width: 100%;
  background: #f9f9f9;
}

.cart-table-box .cart-table tbody {
  position: relative;
}

.cart-table-box .cart-table thead tr {}

.cart-table-box .cart-table thead tr th {
  color: #000000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  text-transform: capitalize;
  min-width: 160px;
  padding: 18px 40px;
  font-family: var(--thm-font);
  text-align: center;
  border: 1px solid #ebebeb;
  border-bottom: none;
}


.cart-table-box .cart-table tbody tr {
  border-bottom: 1px solid #ebebeb;
}

.cart-table-box .cart-table tbody tr td {
  min-width: 160px;
  padding: 30px 40px;
  border: 1px solid #ebebeb;
}

.cart-table-box .cart-table tbody tr td.prod-img {
  position: relative;
  text-align: center;
}

.cart-table-box .cart-table tbody tr td.prod-img a {
  position: relative;
  display: inline-block;
}



.cart-table-box .cart-table tbody tr td.prod-name {
  position: relative;
}

.cart-table-box .cart-table tbody tr td.prod-name .title {
  position: relative;
  display: block;
  text-align: center;
}

.cart-table-box .cart-table tbody tr td.prod-name .title h3 {
  color: #444444;
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font);
}

.cart-table-box .cart-table tbody tr td.price {
  color: #444444;
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  font-family: var(--thm-font);
}




.cart-table-box .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
  position: relative;
  display: block;
  width: 110px;
  height: 55px;
  margin: 0 auto;
}

.cart-table-box .cart-table tbody tr .qty input.quantity-spinner.form-control {
  position: relative;
  display: block !important;
  padding: 0;
  width: 110px;
  flex: none;
  height: 55px;
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  border: 0px solid #e6e6e6;
  outline: none;
  margin: 0 auto;
  margin-left: 0 !important;
  text-align: center;
  font-family: var(--thm-font-2);
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.cart-table-box .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
}

.cart-table-box .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .btn {
  position: relative;
  display: block;
  margin-left: 0px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  color: var(--thm-black);
  cursor: pointer;
  height: 55px;
  width: 30px;
  margin: 0;
  padding: 0;
}

.cart-table-box .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  float: right;
}

.cart-table-box .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  float: left;
}

.cart-table-box .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e932";
  color: var(--thm-black);
  font-size: 12px;
  padding: 0;
  line-height: 53px;
  transform: rotate(180deg);
}

.cart-table-box .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e932";
  color: var(--thm-black);
  font-size: 12px;
  padding: 0;
  line-height: 53px;
}

.cart-table-box .cart-table tbody tr .sub-total {
  color: #444444;
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  font-family: var(--thm-font);
}



.cart-table-box .cart-table tbody tr td .remove {
  position: relative;
  display: block;
  text-align: center;
}

.cart-table-box .cart-table tbody tr td .remove span {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  color: #909090;
  font-size: 24px;
  line-height: 53px;
  text-align: center;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.cart-table-box .cart-table tbody tr td .remove:hover span {
  color: #000000;
}

.cart-table-box .cart-table tbody tr td .remove span::after {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background: var(--thm-base);
}

.cart-table-box .cart-table tbody tr td .remove:hover span::after {
  transform: scaleX(1.0);
}



.cart-button-box {
  position: relative;
  margin-top: 0px;
  background-color: #f9f9f9;
  padding: 20px 40px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cart-button-box .apply-coupon {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
  min-height: 55px;
}

.cart-button-box .apply-coupon .inner {
  position: relative;
  display: block;
  padding-left: 205px;
  min-height: 55px;
}

.cart-button-box .apply-coupon input[type="text"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 55px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #444444;
  font-size: 19px;
  font-weight: 400;
  padding: 0 20px;
  padding-right: 20px;
  text-transform: capitalize;
  transition: all 500ms ease 0s;
  border-radius: 0px;
  font-family: var(--thm-font);
}

.cart-button-box .apply-coupon input[type="text"]:focus {
  border: 1px solid #222222
}

.cart-button-box .apply-coupon .apply-coupon-button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 170px;
}

.cart-button-box .apply-coupon .apply-coupon-button button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  line-height: 51px;
}

.cart-button-box .apply-coupon .apply-coupon-button button:after {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cart-button-box .apply-coupon .apply-coupon-button button:before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}


.cart-button-box .update-cart {
  position: relative;
  display: block;
}

.cart-button-box .update-cart button {
  color: #ffffff;
  line-height: 51px;
}

.cart-button-box .update-cart button:hover {
  color: #ffffff;
}

.cart-button-box .update-cart button:after {
  background: var(--thm-base);
  border: 2px solid var(--thm-base);
}

.cart-button-box .update-cart button::before {
  background-color: #000000;
}



.cart-totals-form {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  float: right;
  margin-top: 50px;
  border: 1px solid #ebebeb;
  padding-bottom: 30px;
}

.cart-totals-form .inner-title {
  position: relative;
  display: block;
  background: #f9f9f9;
  padding: 18px 30px;
}

.cart-totals-form h3 {
  color: #000000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.cart-totals-form ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.cart-totals-form ul li {
  position: relative;
  display: block;
  padding: 0 30px;
  border-top: 1px solid #ebebeb;
  color: #444444;
  font-size: 19px;
  font-weight: 400;
  line-height: 59px;
  font-family: var(--thm-font);
}

.cart-totals-form ul li:last-child {
  border-bottom: 1px solid #ebebeb;
}

.cart-totals-form ul li span {
  position: relative;
  display: block;
  float: right;
}

.cart-totals-form ul li span.total {
  color: #444444;
}

.cart-totals-form button {
  float: right;
  margin-top: 20px;
  margin-right: 30px;
  line-height: 51px;
  padding-left: 30px;
  padding-right: 30px;
  color: #ffffff;
}

.cart-totals-form button:hover {
  color: #ffffff;
}

.cart-totals-form button:after {
  background-color: var(--thm-base);
}

.cart-totals-form button:before {
  background-color: #000000;
}




/*** 
=============================================
    Checkout Area Css
=============================================
***/
.checkout-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 10;
}

.checkout-area .returning-customer {
  position: relative;
  display: block;
  background: #f9f9f9;
  padding: 19px 30px 19px;
  border: 1px solid #ebebeb;
  margin-bottom: 49px;
}

.checkout-area .returning-customer p {
  color: #797979;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.checkout-area .returning-customer p a {
  color: #1a6fe1;
  display: inline-block;
  padding-left: 10px;
  text-decoration: underline;
}


.checkout-area .form .title {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 34px;
}

.checkout-area .form .title h3 {
  color: var(--thm-black);
  font-size: 35px;
  line-height: 30px;
  font-weight: 700;
}

.checkout-area .form .title .border-right {
  position: relative;
  display: block;
  top: -3px;
  background-color: var(--thm-black);
  width: 50px;
  height: 2px;
  margin-left: 10px;
}



.checkout-area .form form .field-label {
  color: var(--thm-black);
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: capitalize;
  font-family: var(--thm-font-2);
}

.checkout-area .form form .field-input input[type="text"],
.checkout-area .form form .field-input input[type="email"],
.checkout-area .form form .field-input input[type="tel"] {
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  color: #939292;
  font-size: 18px;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  margin-bottom: 25px;
  font-family: var(--thm-font);
  transition: all 500ms ease;
}

.checkout-area .form form .field-input input[type="text"]:focus {
  border-color: #1d1d1d;
}

.checkout-area .form form .field-input textarea {
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  color: #939292;
  font-size: 19px;
  width: 100%;
  height: 110px;
  padding: 10px 20px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.checkout-area .form form .field-input textarea:focus {
  border-color: #1d1d1d;
}


.checkout-area .form form .field-input .nice-select {
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  border: solid 1px #e2e2e2;
  text-align: left;
  font-family: var(--thm-font);
  color: #939292;
  font-size: 18px;
  font-weight: 400;
  height: 40px;
  line-height: 38px;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}

.checkout-area .form form .field-input .nice-select:after {
  position: absolute;
  right: 20px;
  top: 50%;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  width: 8px;
  height: 8px;
  margin-top: -7px;
  pointer-events: none;
}




.checkout-area .create-acc {
  position: relative;
  display: block;
}

.checkout-area .create-acc label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--thm-font-2);
}

.checkout-area .create-acc input[type="checkbox"] {
  display: none;
}

.checkout-area .create-acc input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #8e8f8f;
  cursor: pointer;
  border-radius: 0;
  transition: all 300ms ease;
}

.checkout-area .create-acc label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e91d";
  color: #000000;
  font-size: 10px;
  line-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  background-color: transparent;
  transition: all 300ms ease;
}

.checkout-area .create-acc input[type="checkbox"]:checked+label span {
  border-color: #16232a;
}

.checkout-area .create-acc input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}



.ship-different-address {
  position: relative;
  display: block;
  padding-top: 57px;
}

.ship-different-address .inner-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}

.ship-different-address .inner-title .checkbox {
  position: relative;
  display: block;
}

.ship-different-address label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: #000000;
  font-size: 35px;
  line-height: 40px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--thm-font-2);
}

.ship-different-address input[type="checkbox"] {
  display: none;
}

.ship-different-address input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 13px;
  left: 0;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #8e8f8f;
  cursor: pointer;
  border-radius: 0;
  transition: all 300ms ease;
}

.ship-different-address label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: 'icomoon' !important;
  content: "\e91d";
  color: #000000;
  font-size: 10px;
  line-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  background-color: transparent;
  transition: all 300ms ease;
}

.ship-different-address input[type="checkbox"]:checked+label span {
  border-color: #16232a;
}

.ship-different-address input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}


.ship-different-address .inner-title .title {
  margin-bottom: 2px;
}






.order-info {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  float: right;
}

.checkout-area .form.order-info .title {
  position: relative;
  margin-bottom: 37px;
}

.order-info-table-box {
  position: relative;
  display: block;
  border: 1px solid #d9d9d9;
  padding: 25px 30px 40px;
}

.order-info-table-box .table-outer {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.order-info-table-box .order-table {
  min-width: 400px;
  width: 100%;
}

.order-info-table-box .order-table .order-header {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.order-info-table-box .order-table tbody {
  position: relative;
}

.order-info-table-box .order-table thead tr {
  border-bottom: 0px solid #e6e6e6;
}

.order-info-table-box .order-table thead tr th {
  color: #444444;
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0px 0px 10px;
  border: 0px solid #ededed;
  font-family: var(--thm-font-4);
}

.order-info-table-box .order-table tbody tr {
  border-bottom: 0px solid #e6e6e6;
}

.order-info-table-box .order-table tbody tr.last {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}


.order-info-table-box .order-table tbody tr td {
  padding: 0px 0px;
  border: 0px solid #ededed;
  color: #797979;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--thm-font);
  padding: 8px 0 8px;
}

.order-info-table-box .order-table tbody tr td.pdb18 {
  padding-bottom: 18px;
}

.order-info-table-box .order-table tbody tr .inner-title {
  position: relative;
  color: #444444;
  font-size: 19px;
  font-weight: 500;
  font-family: var(--thm-font);
}

.order-info-table-box .order-table tbody tr .inner-title--style2 {
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-4);
}

.order-info-table-box .order-table tbody tr td.total-value {
  color: #242424;
}



.payment-options {
  position: relative;
  display: block;
  margin-top: 70px;
}

.payment-options .inner {
  position: relative;
  display: block;
  padding: 23px 30px 40px;
  border: 1px solid #f8f5ee;
}

.payment-options .option-block {
  margin-bottom: 14px
}

.payment-options .option-block .checkbox {
  margin: 0 0 5px;
}

.payment-options .option-block .checkbox label {
  display: block;
  font-weight: 500;
  min-height: 20px;
  padding-left: 0px;
  margin: 0;
}

.payment-options .option-block .checkbox label input {
  position: relative;
  top: 1px;
  cursor: pointer;
}

.payment-options .option-block .checkbox label span {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  padding-left: 10px;
  font-family: var(--thm-font-2);
  cursor: pointer;
}

.payment-options .option-block .checkbox label span b {
  color: var(--thm-black);
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding-left: 25px;
  text-decoration: underline;
}

.payment-options .option-block .text {
  padding-left: 30px;
}

.payment-options .option-block .text p {
  margin: 0;
  line-height: 28px;
}

.placeorder-button button {
  margin-top: 20px;
  cursor: pointer;
}

.placeorder-button button:hover {}



/*** 
=============================================
  Login Register Area style
=============================================
***/
.login-register-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding-top: 120px;
  padding-bottom: 110px;
  z-index: 10;
}

.login-register-area .form .inner-title {
  margin-top: -6px;
  padding-bottom: 33px;
}

.login-register-area .form .inner-title h3 {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.login-register-area .form form {
  width: 100%;
}

.login-register-area .form .input-field {
  position: relative;
}

.login-register-area .form .input-field input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #ededed;
  color: #7e7e7e;
  font-size: 16px;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 50px;
  transition: all 700ms ease 0s;
}

.login-register-area .form .input-field .icon-holder {
  position: absolute;
  top: 15px;
  right: 20px;
}

.login-register-area .form .input-field .icon-holder i {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
}

.login-register-area .form button {
  line-height: 50px;
  padding: 0 40px;
}

.login-register-area .form button:hover {}

.login-register-area .form .remember-text {
  margin-top: 19px;
}

.login-register-area .form .remember-text .checkbox label {
  margin: 0;
  cursor: pointer;
}

.login-register-area .form .remember-text .checkbox input {
  position: relative;
  top: 1px;
}

.login-register-area .form .remember-text .checkbox span {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--thm-font-2);
}


.login-register-area .form .social-icon {
  position: relative;
  float: right;
  margin-right: -8px;
}

.login-register-area .form .social-icon .login-with {
  position: absolute;
  left: -110px;
  top: 11px;
  margin: 0;
}

.login-register-area .form .social-icon li {
  display: inline-block;
  margin: 0 8px;
}

.login-register-area .form .social-icon li a i {
  position: relative;
  display: block;
  background: #ffffff;
  width: 50px;
  height: 50px;
  border: 1px solid #e7e7e7;
  color: #9c9c9c;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  transition: all 700ms ease 0s;
}

.login-register-area .form .social-icon li a:hover i {
  color: #ffffff;
  border-color: var(--thm-base);
  background: var(--thm-base);
}

.login-register-area .form .right-button {
  align-items: center;
}

.login-register-area .form .right {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: right;
}

.login-register-area .form .right h6 {
  color: var(--thm-gray);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.login-register-area .form .input-field input[type="text"]:focus {
  border: 1px solid #1d1d1d;
}



/*---------------------------------------
  Faq Page One Css
-----------------------------------------*/
.faq-page-one {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.faq-page-one .sec-title {
  padding-bottom: 51px;
  margin-top: -8px;
}

.faq-page-one .sec-title .text {
  position: relative;
  display: block;
  padding-top: 12px;
}

.faq-page-one .sec-title .text p {
  color: #444444;
  margin: 0;
}


.faq-search-box {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 60px;
}

.faq-search-box__inner {
  position: relative;
  display: block;
}

.faq-search-box form.search-form {
  position: relative;
  display: block;
  width: 100%;
}

.faq-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 60px;
  border-radius: 7px;
  font-family: var(--thm-font);
  transition: all 500ms ease 0s;
}

.faq-search-box .search-form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  display: block;
  text-align: center;
  border-radius: 0%;
  border: 0px solid #e7e7e8;
  transition: all 500ms ease 0s;
}

.faq-search-box .search-form button i {
  position: relative;
  top: 4px;
  color: var(--thm-black);
  font-size: 25px;
}

.faq-search-box .search-form input[type="text"]:focus {
  color: #000;
}


.faq-content-box {
  position: relative;
  display: block;
}



/*** 
=============================================
    Faq Form Area Style      
=============================================
***/
.faq-form-area {
  position: relative;
  display: block;
  background-color: #1a6fe1;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 10;
}

.faq-form-box {
  position: relative;
  display: block;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

.faq-form-box .top-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 24px;
  text-align: center;
}

.faq-form-box .top-title h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 52px;
  font-weight: 900;
}


.faq-form-box form {
  position: relative;
  display: block;
  max-width: 950px;
}

.faq-form-box form .input-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.faq-form-box form input[type="text"],
.faq-form-box form input[type="email"],
.faq-form-box form textarea {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  height: 60px;
  border: 0px solid #e3e3e3;
  border-bottom: 2px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.faq-form-box form textarea {
  height: 170px;
}

.faq-form-box form input[type="text"]:focus {
  color: #ffffff;
  border-color: #ffffff;
}

.faq-form-box form input[type="email"]:focus {
  color: #ffffff;
  border-color: #ffffff;
}

.faq-form-box form textarea:focus {
  color: #ffffff;
  border-color: #ffffff;
}


.faq-form-box form input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form input[type="text"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
}


.faq-form-box form input[type="email"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form input[type="email"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form input[type="email"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
}


.faq-form-box form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.faq-form-box form .button-box {
  position: relative;
  display: block;
  padding-top: 5px;
}

.faq-form-box form .button-box button {}





/*** 
=============================================
    Error Page Style      
=============================================
***/
.error-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 10;
}

.error-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.error-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-content .big-title {
  position: relative;
  display: block;
  z-index: 1;
}

.error-content .big-title h2 {
  color: #ffffff;
  font-size: 200px;
  line-height: 150px;
  font-weight: 900;
  text-transform: uppercase;
}

.error-content .title {
  position: relative;
  display: block;
  padding-top: 31px;
  padding-bottom: 17px;
}

.error-content .title h2 {
  color: #ffffff;
  font-size: 60px;
  line-height: 70px;
  font-weight: 900;
}

.error-content .text {
  position: relative;
  display: block;
  padding-bottom: 31px;
}

.error-content .text p {
  color: #ffffff;
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  margin: 0;
}

.error-content .btns-box {
  line-height: 0;
  padding-top: 20px;
}

.error-content .btns-box a {
  padding-left: 50px;
  padding-right: 50px;
  line-height: 70px;
  letter-spacing: 0.15em;
  border-radius: 50px;
}



/*** 
=============================================
    Coming Soon Page Style1      
=============================================
***/
.coming-soon-page-style1 {
  position: relative;
  display: block;
  z-index: 10;
}

.coming-soon-page-style1__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.coming-soon-page-style1__content {
  position: relative;
  display: block;
  max-width: 805px;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.coming-soon-page-style1__content .inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.coming-soon-page-style1__content .big-title {
  position: relative;
  color: #ffffff;
  font-size: 90px;
  line-height: 104px;
  font-weight: 900;
  font-family: var(--thm-font-2);
  z-index: 2;
}


.timer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 51px 0 42px;
  z-index: 2;
}

.timer-box .countdown-timer li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 170px;
  height: 170px;
  margin: 0px 15px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.timer-box .countdown-timer li span.days,
.timer-box .countdown-timer li span.hours,
.timer-box .countdown-timer li span.minutes,
.timer-box .countdown-timer li span.seconds {
  color: #ffffff;
  font-size: 60px;
  line-height: 50px;
  font-weight: 700;
  font-family: var(--thm-font-2);
}

.timer-box .countdown-timer li span.hours {}

.timer-box .countdown-timer li span.minutes {}

.timer-box .countdown-timer li span.seconds {}

.timer-box .countdown-timer li span.timeRef {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 18px;
  font-family: var(--thm-font-2);
}

.coming-soon-page-style1__content .inner .text {
  position: relative;
  display: block;
  padding-bottom: 64px;
}

.coming-soon-page-style1__content .inner .text p {
  color: #ffffff;
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
}


.subscribe-box-style1 {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}

.subscribe-box-style1 form {
  position: relative;
  display: block;
  width: 100%;
}

.subscribe-box-style1 form input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #ffffff !important;
  color: var(--thm-gray);
  font-size: 18px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 200px;
  transition: all 500ms ease 0s;
  font-family: var(--thm-font);
}

.subscribe-box-style1 form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 195px;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  border: 0px solid #e1e1e1 !important;
  transition: all 500ms ease 0s;
}

.subscribe-box-style1 form input[type="email"]:focus {
  color: var(--thm-black);
}

.subscribe-box-style1 form input[type="email"]:focus+button,
.subscribe-box-style1 form button:hover {
  color: var(--thm-black);
}

.subscribe-box-style1 form input::-webkit-input-placeholder {
  color: #444444;
}

.subscribe-box-style1 form input:-moz-placeholder {
  color: #444444;
}

.subscribe-box-style1 form input::-moz-placeholder {
  color: #444444;
}

.subscribe-box-style1 form input:-ms-input-placeholder {
  color: #444444;
}





/* Hidden Bar */
.hidden-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  direction: rtl;
  z-index: 99999;
}

.hidden-sidebar .wrapper-box {
  height: 100%;
}

.hidden-sidebar .content-wrapper {
  position: relative;
  display: block;
  direction: ltr;
  padding: 80px 40px;
  background-color: #0a1222;
}

.hidden-sidebar-close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.10);
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.hidden-sidebar-close:hover {
  color: var(--thm-base);
  background-color: #ffffff;
}

.hidden-sidebar .logo {
  margin-bottom: 35px;
}

.hidden-sidebar .logo a {
  position: relative;
  display: inline-block;
}

.hidden-sidebar .text-widget .text {
  color: #909398;
  font-size: 18px;
  margin-bottom: 0;
}

.hidden-sidebar .sidebar-widget {
  margin-bottom: 40px;
}

.pdf-widget {
  position: relative;
}

.pdf-widget .row {
  margin: 0 -7.5px;
}

.pdf-widget .column {
  padding: 0 7.5px;
}

.pdf-widget .content {
  position: relative;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 30px 10px;
  margin-bottom: 20px;
}

.pdf-widget .content .icon {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.pdf-widget .content .icon i {
  color: var(--thm-base);
  font-size: 40px;
  line-height: 40px;
}

.pdf-widget .content h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}



.contact-widget {
  position: relative;
}

.contact-widget .icon-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-widget .icon {
  position: relative;
  display: block;
  width: 40px;
  color: var(--thm-base);
  font-size: 20px;
  margin-top: 5px;
}

.contact-widget .icon.margintop {
  margin-top: 9px;
}

.contact-widget .text {
  color: #909398;
  line-height: 28px;
}

.contact-widget .text a {
  color: #909398;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-widget .text a:hover {
  color: #ffffff;
}

.contact-widget .text strong {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 700;
  font-family: var(--thm-font-2);
}

.hidden-sidebar .link-btn {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 30px;
}



/* Cursor Style */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
  background-color: rgba(var(--thm-base-rgb), .80);
  overflow: hidden;
  cursor: none;
  z-index: 999;
}

.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -o-transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.7;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




#ui-datepicker-div.ui-widget-content {
  border: 1px solid #c5c5c5;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #777;
  color: #252525;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
  z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}






/*--------------------------------------------------------------
# End Css 
--------------------------------------------------------------*/