/*== Default Css ======*/

:root {
  --thm-font: 'Barlow', sans-serif;
  --thm-font-2: 'Roboto', sans-serif;
  --thm-font-3: 'Yantramanav', sans-serif;
  --thm-base: #d90429;
  --thm-base-rgb: 217, 4, 41;
  --thm-gray: #444444;
  --thm-gray-rgb: 68, 68, 68;
  --thm-white: #ffffff;
  --thm-white-rgb: 255, 255, 255;
  --thm-black: #111e37;
  --thm-black-rgb: 17, 30, 55;
  --thm-primary: #f6c61d;
  --thm-primary-rgb: 246, 198, 29;
}

.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: 28px;
  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/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: 700;
  text-transform: capitalize;
  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: -2px;
  left: 0;
}

.sidebar-contact-info ul li:first-child .inner .icon {
  top: 7px;
}

.sidebar-contact-info ul li .inner .icon span {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 30px;
  line-height: 30px;
}

.sidebar-contact-info ul li .inner .icon span.map-marker {
  position: relative;
  top: 11px;
  font-size: 34px;
}

.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);
}



.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;
  margin-right: 4px;
  cursor: pointer;
}

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

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



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

.sec-title .sub-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.sec-title .sub-title .border-left {
  position: relative;
  display: block;
  top: -1px;
  background-color: var(--thm-base);
  width: 20px;
  height: 2px;
}

.sec-title .sub-title .border-right {
  position: relative;
  display: block;
  top: -1px;
  background-color: var(--thm-base);
  width: 20px;
  height: 2px;
}


.sec-title .sub-title h5 {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 38px;
  line-height: 1.2em;
  font-weight: 900;
  text-transform: none;
}






/*== Btn One Css ======*/
.btn-box {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
  background-color: transparent;
  color: #ffffff;
  font-size: 15px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--thm-font-2);
  z-index: 2;
}

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

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

.btn-one:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 5px;
  opacity: 1;
  transform: scaleX(1.0);
  transition-duration: 800ms;
  background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  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: 3px;
  display: inline-block;
  padding-left: 5px;
  font-size: 20px;
}



.btn-two {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--thm-base);
  font-size: 14px;
  line-height: 14px;
  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: 50px !important;
  display: block;
}

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

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

.owl-carousel.owl-dot-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 Nav Style One Css ======*/

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

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

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid #a7afb6;
  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: #a7afb6;
  font-size: 20px;
  line-height: 46px;
  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 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: #363636;
  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: inline-block;
  margin-right: 6px;
}

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

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

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

.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: 70px;
}

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




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

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

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

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

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

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

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



/*== 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: 14px;
  padding-left: 55px;
  padding-bottom: 14px;
  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: 18px;
  line-height: 30px;
  font-weight: 500;
  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: right;
  line-height: 20px;
  font-weight: 700;
  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: "\e95d";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 1px;
  padding-left: 55px;
  padding-bottom: 27px;
  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 Css */
.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .accordion {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 0px;
  margin-bottom: 10px;
}

.accordion-box .accordion.mar0 {
  margin: 0;
}

.accordion-box .accordion .accord-btn {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 70px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn h4 {
  color: #0b1953;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn::after {
  font-family: 'FontAwesome';
  position: absolute;
  content: "\f067";
  top: 50%;
  left: 30px;
  color: #00091f;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  transform: translateY(-50%);
  transition: all 500ms ease 0s;
}

.accordion-box .accordion .accord-btn.active {
  background: #025981;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.accordion-box .accordion .accord-btn.active h4 {
  color: #ffffff;
}

.accordion-box .accordion .accord-btn.active:after {
  color: #ffffff;
  content: "\f068";
}

.accordion-box .accordion .accord-content {
  position: relative;
  display: block;
  background: #025981;
  padding-top: 0px;
  padding-bottom: 26px;
  padding-left: 70px;
  padding-right: 30px;
  display: none;
}

.accordion-box .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box .accordion .accord-content p {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  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: 700;
  transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn::after {
  font-family: 'icomoon' !important;
  position: absolute;
  content: "\e95c";
  top: 50%;
  left: 0px;
  margin-top: -1px;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 20px;
  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);
}

.accordion-box-style1 .accordion .accord-btn.active:after {
  color: var(--thm-base);
  content: "\e95d";
}

.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;
}








/* 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 .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-base);
}



@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);
}


/*------------------------------------------
  Choose style1 Area
--------------------------------------------*/
.choose-style1-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #e7edf3;
  padding: 60px 0 60px;
  z-index: 10;
}

.choose-style1-area-img {
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: -1;
}

.choose-style1-content {
  position: relative;
  display: block;
  max-width: 820px;
  width: 100%;
  float: right;
  padding-right: 100px;
}

.choose-style1-content .sec-title {
  padding-bottom: 53px;
}

.choose-style1-content .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}

.choose-style1-content .sec-title .text p {
  color: #494949;
}

.choose-style1-content__inner {
  position: relative;
  display: block;
}

.choose-style1-content__inner ul {
  position: relative;
  display: block;
  margin-left: -20px;
  margin-right: -20px;
}

.choose-style1-content__inner ul li {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  padding: 0 20px 40px;
}



.single-choose-box-style1 {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fdfdfe;
  border-radius: 8px;
  padding: 25px 25px 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-choose-box-style1:hover {
  transform: translateY(-5px);
}

.single-choose-box-style1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 8px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.single-choose-box-style1:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.single-choose-box-style1 .icon {
  position: relative;
  width: 80px;
  line-height: 0;
}

.single-choose-box-style1 .icon span {
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-choose-box-style1:hover .icon span {
  color: #ffffff;
}


.single-choose-box-style1 .title {
  position: relative;
  flex: 1;
}

.single-choose-box-style1 .title h3 {
  font-size: 21px;
  line-height: 26px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-choose-box-style1:hover .title h3 {
  color: #ffffff;
}



/*** 
=============================================
  Cta Style1 Area Css
=============================================
***/
.cta-style1-area {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 10;
}

.cta-style1-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #e4edf6;
  z-index: -1;
}

.cta-style1-area:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background-color: #141e32;
  z-index: -1;
}


.cta-style1-area__inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-base);
  border-radius: 8px;
  padding: 55px 0px 54px;
  padding-left: 90px;
}

.cta-style1-area__inner-img-bg {
  position: absolute;
  top: 0px;
  right: -1px;
  width: calc(50% + 1px);
  height: calc(100% + 1px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 23% 0%);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-style1-area__inner-content {
  position: relative;
  display: block;
}

.cta-style1-area__inner-content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 50px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-style1-area__inner-content h3 {
  color: #fff;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}

.cta-style1-area__inner-content h3 a {
  display: inline-block;
  color: #fff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-style1-area__inner-content h3 a:hover {
  color: var(--thm-black);
}


/*** 
=============================================
  Cta Style2 Area Css
=============================================
***/
.cta-style2-area {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 10;
}

.cta-style2-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #001b3b;
  z-index: -1;
}

.cta-style2-area:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background-color: #ffffff;
  z-index: -1;
}

.cta-style2-area__inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-base);
  border-radius: 8px;
  padding: 46px 0px 46px;
  padding-left: 330px;
  padding-right: 60px;
}

.cta-style2-area__inner-img-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 270px;
  height: calc(100% + 1px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-style2-area__inner:hover .cta-style2-area__inner-img-bg {
  transform: scale(1.02);
  background-color: var(--thm-base);
  background-blend-mode: luminosity;
}


.cta-style2-area__inner-content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-style2-area__inner-content h2 {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}

.cta-style2-area__inner-content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.cta-style2-area__inner-content .btn-box .btn-one {
  color: var(--thm-black);
}

.cta-style2-area__inner-content .btn-box .btn-one:hover {
  color: #ffffff;
}

.cta-style2-area__inner-content .btn-box .btn-one:after {
  background-image: none;
  background-color: #ffffff;
}

.cta-style2-area__inner-content .btn-box .btn-one:before {
  background-color: var(--thm-black);
}



/*** 
=============================================
    Slogan Area Css
=============================================
***/
.slogan-area {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 60px 0 60px;
  z-index: 10;
}

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

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

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

.slogan-content-box .inner-title {
  position: relative;
  display: block;
}

.slogan-content-box .inner-title h2 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.3em;
  font-weight: 900;
  margin: 0 0 9px;
}

.slogan-content-box .inner-title h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--thm-font);
}



.slogan-content-box .btns-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 47px;
}

.slogan-content-box .btns-box .left-btn {
  position: relative;
  display: block;
  line-height: 0;
}

.slogan-content-box .btns-box .left-btn a {
  color: var(--thm-black);
}

.slogan-content-box .btns-box .left-btn a:hover {
  color: #ffffff;
}

.slogan-content-box .btns-box .left-btn a:after {
  background-image: none;
  background-color: #ffffff;
}


/*** 
=============================================
    Features Style1 Area Style      
=============================================
***/
.features-style1-area {
  position: relative;
  display: block;
  background-color: #05213d;
  padding: 60px 0 60px;
  overflow: hidden;
  z-index: 10;
}

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

.features-style1-content-box .sec-title {
  padding-bottom: 30px;
}

.features-style1-content-box .sec-title h2 {
  color: #ffffff;
}

.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: 48px;
}

.features-style1-content-box .inner-content .text p {
  color: #ffffff;
}

.features-style1-list-item {
  position: relative;
  display: block;
}

.features-style1-list-item ul {
  position: relative;
  display: block;
}

.features-style1-list-item ul li {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.features-style1-list-item ul li+li {
  margin-top: 12px;
}

.features-style1-list-item ul li .icon {
position: absolute;
    top: 10px;
    left: 0;
    font-size: 26px;
    font-weight: 700;
    /* background: #00B1E6; */
    /* background: repeating-linear-gradient(to top, #00B1E6 0%, #00e8d4 100%); */
    -webkit-text-fill-color: transparent;
    height: 8px;
    width: 8px;
    background-color: #fff;
    border-radius: 100px;
}

.features-style1-list-item ul li .icon span {
  font-weight: 700;
}


.progress-levels {
  position: relative;
  display: block;
  margin-top: 51px;
  max-width: 570px;
}

.progress-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.progress-box .top {
  position: relative;
  display: block;
  padding-bottom: 12px;
}

.progress-box .top h4 {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font)
}


.progress-box .skill-percent {
  position: absolute;
  top: -36px;
  right: -15px;
}

.progress-box .count-text {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  display: inline-block;
  float: none;
  font-family: var(--thm-font);
}

.progress-box .percent {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  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);
}



.booking-form-box {
  position: relative;
  display: block;
  background-color: #e7edf3;
  border-radius: 10px;
  overflow: hidden;
}

.booking-form-box .top-title {
  position: relative;
  display: block;
  text-align: center;
  padding: 26px 0 42px;
  z-index: 1;
}

.booking-form-box .top-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -1px;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.booking-form-box .top-title h6 {
  color: #fdc1cc;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-form-box .top-title h2 {
  color: #ffffff;
  font-size: 35px;
  line-height: 40px;
  font-weight: 900;
  margin: 4px 0 0;
}




.booking-form-box form {
  position: relative;
  display: block;
  padding: 30px 35px 40px;
}

.booking-form-box form .row {
  --bs-gutter-x: 10px;
}

.booking-form-box form .form-group {
  position: relative;
  display: block;
  padding-bottom: 10px;
}

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

.booking-form-box form input[type="text"],
.booking-form-box form input[type="email"],
.booking-form-box form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #ffffff;
  width: 100%;
  height: 50px;
  color: #868686;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 7px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

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


.booking-form-box form input[type="text"]::-webkit-input-placeholder {
  color: #868686;
}

.booking-form-box form input[type="text"]:-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="text"]::-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="text"]:-ms-input-placeholder {
  color: #868686;
}


.booking-form-box form input[type="email"]::-webkit-input-placeholder {
  color: #868686;
}

.booking-form-box form input[type="email"]:-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="email"]::-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="email"]:-ms-input-placeholder {
  color: #868686;
}

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

.booking-form-box form .button-box button {
  width: 100%;
}



/*---------------------------------------
  Faq Page One Css
-----------------------------------------*/
.faq-page-one {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 60px 0 60px;
  z-index: 10;
}

.faq-page-one .sec-title {
  padding-bottom: 43px;
}

.faq-page-one .sec-title .text {
  position: relative;
  display: block;
  padding-top: 10px;
}

.faq-page-one .sec-title .text p {
  color: #444444;
}


.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: 2px;
  color: var(--thm-black);
  font-size: 20px;
}

.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: #edf1f4;
  padding: 60px 0 60px;
  overflow: hidden;
  z-index: 10;
}

.faq-form-area-img {
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
}

.faq-form-area-img img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}


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

.faq-form-box .top-title {
  position: relative;
  display: block;
  margin-top: -9px;
  padding-bottom: 24px;
}

.faq-form-box .top-title h2 {
  font-size: 45px;
  line-height: 55px;
  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 #e3e3e3;
  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);
}

.faq-form-box form textarea {
  height: 170px;
}

.faq-form-box form input[type="text"]:focus {
  color: #000000;
  border-color: var(--thm-base);
}

.faq-form-box form input[type="email"]:focus {
  color: #000000;
  border-color: var(--thm-base);
}

.faq-form-box form textarea:focus {
  color: #000000;
  border-color: var(--thm-base);
}


.faq-form-box form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.faq-form-box form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.faq-form-box form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.faq-form-box form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}


.faq-form-box form textarea::-webkit-input-placeholder {
  color: #444444;
}

.faq-form-box form textarea:-moz-placeholder {
  color: #444444;
}

.faq-form-box form textarea::-moz-placeholder {
  color: #444444;
}

.faq-form-box form textarea:-ms-input-placeholder {
  color: #444444;
}


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



/* 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;
  font-family: var(--thm-font);
}

.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;
}


/*------------------------------------------
  Service style1 Area
--------------------------------------------*/
.service-style1-area {
  position: relative;
  display: block;
  padding: 60px 0 60px;
  background: #222431;
  z-index: 10;
}

.service-style1-area-image {
  position: absolute;
  right: 0;
  bottom: -140px;
  background-color: #222431;
  z-index: -1;
}

.service-style1-area-image img {
  mix-blend-mode: lighten;
  opacity: 0.15;
}

.service-style1-title {
  position: relative;
  display: block;
  padding-bottom: 53px;
}

.service-style1-title .sec-title {
  padding-bottom: 0;
}

.service-style1-title .sec-title h2 {
  color: #ffffff;
}

.service-style1-title .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}

.service-style1-title .sec-title .text p {
  color: #ffffff;
}



.service-style1-tab {
  position: relative;
  display: block;
}

.service-style1-tab__button {
  position: relative;
  display: block;
  padding-bottom: 0px;
}

.service-style1-tab__button .tabs-button-box {
  position: relative;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item {
  position: relative;
  display: block;
  float: left;
  width: 33.33%;
  padding: 0 10px;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0px;
  background-color: var(--thm-base);
  padding: 26px 0px 26px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}
.service-style1-tab__button .tabs-button-box .tab-btn-item .inner h2{
  color: #fff;
}


.service-style1-tab__button .tabs-button-box .tab-btn-item .inner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  width: 30px;
  height: 10px;
  margin: 0 auto;
  border-top: 10px solid var(--thm-base);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  z-index: -1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner:before,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner:after,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}


.service-style1-tab__button .tabs-button-box .tab-btn-item .inner span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner span,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner span {
  color: #ffffff;
  transform: scale(1.05);
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner h3 {
  color: var(--thm-white);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin: 16px 0 0;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner h3,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner h3 {
  color: #ffffff;
}



.service-style1-tab .tabs-content-box {
  position: relative;
  display: block;
}

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

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

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

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


.service-style1-content-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  padding-right: 20px;
  border-radius: 0px;
  text-align: center;
  min-height: 200px;
}

.service-style1-content-box .text-box {
  position: relative;
  display: block;
  max-width: inherit;
  width: 100%;
  padding-right: 0;
  font-size: 22px;
}

.service-style1-content-box .text-box h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
  margin-bottom: 15px;
}

.service-style1-content-box .text-box .bottom-box {
  position: relative;
  display: block;
  padding-top: 16px;
}

.service-style1-content-box .text-box ul {
  position: relative;
  display: flex;
}

.service-style1-content-box .text-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  margin-top: 7px;
}

.service-style1-content-box .text-box ul li span {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #0787d9;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
}

.service-style1-content-box .text-box ul li p {
  font-weight: 500;
  margin-left: 10px;
}

.service-style1-content-box .text-box .btn-box {
  position: relative;
  display: block;
  padding-top: 26px;
}

.service-style1-content-box .text-box .btn-box a {
  color: var(--thm-base);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
}

.service-style1-content-box .text-box .btn-box a span {
  position: relative;
  top: 3px;
  display: inline-block;
  margin-left: 10px;
  color: var(--thm-black);
  font-size: 18px;
}

.service-style1-content-box .img-box {
  position: relative;
  display: block;
  width: 325px;
}

.service-style1-content-box .img-box img {
  width: 100%;
  border-radius: 10px;
}

/*------------------------------------------
  Choose style3 Area
--------------------------------------------*/
.choose-style3-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  padding: 120px 0 100px;
  z-index: 10;
}

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

.choose-style3-content-box .sec-title {
  padding-bottom: 52px;
}

.choose-style3-content-box .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}


.choose-style3-content-box__inner {
  position: relative;
  display: block;
}

.choose-style3-content-box__inner ul {
  position: relative;
  display: flex;
  max-width: 480px;
}

.choose-style3-content-box__inner ul li {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  margin-bottom: 40px;
}

.choose-style3-content-box__inner ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 6px;
  width: 1px;
  background: #e4e4e4;
}

.choose-style3-content-box__inner ul li:first-child:before {
  display: none;
}

.choose-style3-content-box__inner ul li:last-child {
  padding-left: 70px;
}

.choose-style3-content-box__inner ul li span {
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
}

.choose-style3-content-box__inner ul li h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  margin: 9px 0 0;
}

.choose-style3-content-box__inner ul li h3 a {
  color: var(--thm-black);
}



.choose-style3-img-box {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  float: right;
  padding-left: 100px;
  padding-right: 0;
  padding-bottom: 0;
}

.choose-style3-img-box .inner::before {
  display: none;
}

.choose-style3-img-box .overlay-box {
  position: absolute;
  left: 0;
  bottom: 40px;
  right: auto;
}


/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 119px 0 128px;
    z-index: 10;
}

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

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000000;
    opacity: 0.20;
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
}

.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 72px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
}


.breadcrumb-menu {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 4px;
    z-index: 1;
}

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

.breadcrumb-menu ul li {
    position: relative;
    float: left;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 12px;
    margin-right: 12px;
}

.breadcrumb-menu ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #ffffff;
    transform: rotate(12deg);
}

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

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

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

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

/*** 
=============================================
    Vision Style1 Area Style      
=============================================
***/
.vision-style1-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 60px 0px;
  z-index: 10;
}

.vision-style1__content-box {
  position: relative;
  display: block;
  padding-right: 50px;
}

.vision-style1__content-box .sec-title {
  padding-bottom: 30px;
}


.vision-style1__content-box__inner {
  position: relative;
  display: block;
}

.vision-style1__content-box__inner .top-text {
  position: relative;
  display: block;
}

.vision-style1__content-box__inner .bottom-text {
  position: relative;
  display: block;
  padding: 24px 0 59px;
}

.vision-style1__content-box__inner .bottom-text p {
  color: #0e2a4e;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.vision-style1__content-box__inner .bottom-text p a {
  color: var(--thm-base);
  text-decoration: underline;
}

.vision-style1-area .about-style3-img-box {
  float: right;
}



.mission-content-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #e0e0e0;
  margin-top: 100px;
  padding-top: 100px;
}

.mission-content-box .img-box {
  position: relative;
  display: block;
  width: 370px;
  overflow: hidden;
  border-radius: 8px;
}

.mission-content-box .img-box img {
  width: 100%;
}

.mission-content-box .text-box {
  position: relative;
  flex: 1;
  margin-left: 50px;
  margin-right: 50px;
}

.mission-content-box .text-box p {
  color: #0e2a4e;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}



.vision-style1-area.about-page .vision-style1__content-box {
  padding-right: 0px;
}

.vision-style1-area.about-page .vision-style1__content-box .sec-title {
  padding-bottom: 20px;
}

.vision-style1-area.about-page .vision-style1__content-box__inner .bottom-text {
  padding: 23px 0 33px;
}

.vision-style1__content-box__inner .top-text h2{
 font-size: 22px;
    line-height: 30px;
    padding: 15px 0 10px;
}
.vision-style1__content-box__inner .top-text ul{padding-left: 25px; list-style: disc; font-size: 20px; line-height: 30px; padding-bottom: 15px;}
.vision-style1__content-box__inner .top-text ul li{list-style: disc; padding-bottom: 15px;}
.vision-style1__content-box__inner .top-text p{padding-bottom: 15px;}