/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@font-face {
	font-family: 'futuraMediumBT';
	src: local('futuraMediumBT'), url('./fonts/futuraMediumBT.woff') format('woff');
}

@font-face {
  font-family: 'Gobold Bold';
  src: url('./fonts/Gobold Bold.otf') format('opentype');
}
/* use this class to attach this font to any element i.e. <p class="fontsforweb_fontid_61656">Text with this font applied</p> */
/* .fontsforweb_fontid_61656 {
	font-family: 'futuraMediumBT' !important;
} */

:root {
  --tc-font-main:'Gobold Bold' !important;
  --tc-font: "Montserrat", sans-serif !important;;
  --tc-font-two: "Noto Sans", sans-serif !important;;
  --tc-gray: #28282B;
  --tc-gray-rgb: 65, 70, 81;
  --tc-white: #ffffff;
  --tc-white-rgb: 255, 255, 255;
  --tc-base: #28282B;
  --tc-base-rgb: 28, 116, 233;
  --tc-black: #969489;
  --tc-black-rgb: 13, 18, 30;
  --tc-primary: #ffffff;
  --tc-primary-rgb: 247, 249, 250;
  --tc-bdr-radius: 10px
}
.box::before{
  content: "";
  position: absolute;
  bottom: 3px;
  left: 25.5rem;
  right: 78rem;
  height: 6.5rem;
  background-color: var(--tc-black);
  z-index: -1;
  padding: 0rem;
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--tc-font-two);
  background: #fff;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #000000;
  scroll-behavior: smooth;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--tc-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 {
  font-family: var(--tc-font-two);
  color: var(--tc-gray);
  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;
  top: -7rem;
  overflow: hidden;
  background-color: var(--tc-primary);
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-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;
}

.section-separator {
  border-color: var(--tc-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--tc-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--tc-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--tc-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}


.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--tc-black);
  color: var(--tc-white);
  font-size: 16px;
  /* font-weight: 500; */
  padding: 10px 33px 10px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
}

.thm-btn::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--tc-gray);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.thm-btn:hover:before {
  top: -40%;
}

.thm-btn:hover {
  color: var(--tc-white);
}

.thm-btn-two {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: transparent;
  color: var(--tc-base);
  border: 1px solid var(--tc-base);
  font-size: 16px;
  /* font-weight: 500; */
  padding: 9px 33px 9px;
  border-radius: 26px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
}

.thm-btn-two::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  background-color: var(--tc-gray);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.thm-btn-two:hover:before {
  top: -40%;
}

.thm-btn-two:hover {
  color: var(--tc-white);
  border: 1px solid var(--tc-gray);
}

.section-title {
  position: relative;
  display: block;
  margin-top: -10px;
  margin-bottom: 61px;
}

.section-title__tagline-box {
  position: relative;
  display: inline-block;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  color: var(--tc-base);
  font-weight: 500;
  letter-spacing: 0.16em;
  z-index: 1;
}

.section-title__tagline::before {
  /* content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 8px;
  background-color: rgba(var(--tc-gray-rgb), .15);
  z-index: -1; */
}

.section-title__title {
  margin: 0;
  color: var(--tc-gray);
  font-size: 31px;
  line-height: 47px;
  font-weight: 700;
  margin-top: 9px;
  font-family: var(--tc-font-two);
  text-transform: capitalize;
}

.section-title-three {
  position: relative;
  display: block;
  margin-top: -10px;
  margin-bottom: 60px;
}

.section-title-three__tagline-box {
  position: relative;
  display: inline-block;
}

.section-title-three__tagline {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  color: var(--tc-base);
  font-weight: 500;
  letter-spacing: 1.6px;
  z-index: 1;
}

.section-title-three__title {
  margin: 0;
  color: var(--tc-gray);
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  margin-top: 11px;
  font-family: var(--tc-font-two);
  text-transform: capitalize;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--tc-black);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--tc-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--tc-black);
  color: var(--tc-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  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;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-100%); }
}
/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--tc-base);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transform: rotate(180deg);
}

.scroll-to-top i {
  color: var(--tc-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.scroll-to-top:hover {
  background-color: var(--tc-gray);
}

.scroll-to-top:hover i {
  color: #fff;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: var(--tc-black);
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 0px 7px;
}

.main-header__top-left {
  position: relative;
  display: block;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li+li {
  margin-left: 30px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li .icon i {
  font-size: 14px;
  color: var(--tc-white);
}

.main-header__contact-list li .text {
  margin-left: 10px;
}

.main-header__contact-list li .text p {
  font-size: 13px;
  font-weight: 400;
  color: #978e8e;
}

.main-header__contact-list li .text p a {
  color: #978e8e;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--tc-base);
}

.main-header__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-menu li+li {
  margin-left: 20px;
}

.main-header__top-menu li a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: #978e8e;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-menu li a:hover {
  color: var(--tc-white);
}

.main-header__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 90px;
}

.main-header__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--tc-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__social a+a {
  margin-left: 25px;
}

.main-header__social a:hover {
  color: var(--tc-base);
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
  background: rgba(33, 32, 41, 0);
 
  z-index: -1;
}

.stricky-header .main-menu__wrapper:before {

  background-color: var(--tc-black)  
}

.stricky-header .main-menu__btn::before {
  background-color: var(--tc-black);
 
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu__logo {
  display: block;
  padding: 24.5px 0;
  z-index: 1;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 0;
  z-index: 5;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--tc-primary);
  border-radius: 50%;
  font-size: 15px;
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--tc-base);
  color: var(--tc-white);
}

.main-menu__call-content {
  margin-left: 10px;
  top: 3px;
  position: relative;
}

.main-menu__call-sub-title {
  font-size: 12px;
  line-height: 12px;
  color: var(--tc-white);
  margin-bottom: 4px;
}

.main-menu__call-number {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  /* font-family: 'Roboto'; */
}

.main-menu__call-number a {
  color: var(--tc-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--tc-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
  padding: 19px 0;
}

.main-menu__btn {
  background-color: var(--tc-base);
  color: var(--tc-base);
}

.stricky-header.main-menu {
  background-color: transparent;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 29px;
  padding-bottom: 29px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 40px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--tc-white);
  position: relative;
  /* font-weight: 500; */
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.dropdown-menu>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown-menu>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 11px;
  color: var(--tc-white);
  /* font-weight: 700; */
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--tc-base);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--tc-gray);
  
  /* text-shadow: 0.05px 0 0 rgba(0, 0, 0, 0.8); */
}
.main-menu .main-menu__list>li.current>a.scrolled-color::after,
.main-menu .main-menu__list>li:hover>a.scrolled-color::after,
.stricky-header .main-menu__list>li.current>a.scrolled-color::after,
.stricky-header .main-menu__list>li:hover>a.scrolled-color::after {
  color: var(--tc-white);
}

.main-menu .main-menu__list>li.current>a.scrolled-color,
.main-menu .main-menu__list>li:hover>a.scrolled-color,
.stricky-header .main-menu__list>li.current>a.scrolled-color,
.stricky-header .main-menu__list>li:hover>a.scrolled-color {
  color: var(--tc-base);
  
  /* text-shadow: 0.05px 0 0 rgba(0, 0, 0, 0.8); */
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove the gap so it doesn't close */
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 25px 20px 34px;
  border-bottom-left-radius: var(--tc-bdr-radius);
  border-bottom-right-radius: var(--tc-bdr-radius);
}

.sub-menu {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  top: 99% !important;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 4px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 15px;
  line-height: 30px;
  color: var(--tc-gray);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 20px 6px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--tc-white);
  font-family: var(--tc-font-two);
}

.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
  border-bottom: 0;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--tc-primary);
  color: var(--tc-gray);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  font-size: 14px;
  color: var(--tc-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 108%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--tc-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--tc-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--tc-white);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--tc-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--tc-gray);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--tc-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--tc-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--tc-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--tc-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--tc-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--tc-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--tc-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--tc-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--tc-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--tc-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--tc-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--tc-base);
  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;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

    .site-blocks-cover.overlay:before {
      position: absolute;
      content: "";
      left: 0;
      bottom: 0;
      right: 0;
      top: 0;
      background: rgba(0, 0, 0, 0.4);
      min-height: 600px;
      /* height: calc(100vh); */
  }
.nav-link {
  display: block;
  padding: 0.5rem 1rem; }
  .nav-link:hover, .nav-link:focus {
    text-decoration: none; }
  .nav-link.disabled {
    color: #6c757d; }

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem; }
  .navbar > .container,
  .navbar > .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none; }

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }
  .navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer; }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: #fff; }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: #fff; }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: #fff; }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }
  .tc-navbar-light {
    background: transparent !important;
    z-index: 3;
    padding: 0; }
    @media (max-width: 991.98px) {
      .tc-navbar-light {
        background: #000000 !important;
        position: relative;
        padding: 0 10px; }
        .tc-navbar-light .navbar-brand {
          font-size: 20px; } }
    .tc-navbar-light .navbar-brand {
      color: #fff;
      background: #B1AFA5; }
      @media (min-width: 992px) {
        .tc-navbar-light .navbar-brand {
          padding: 30px 30px 30px 0;
          position: relative; }
          .tc-navbar-light .navbar-brand:after {
            position: absolute;
            top: 0;
            right: 100%;
            bottom: 0;
            content: '';
            width: 360%;
            background: #B1AFA5; } }
      .tc-navbar-light .navbar-brand.navbar-black {
        color: #fff; }
        @media (max-width: 991.98px) {
          .tc-navbar-light .navbar-brand.navbar-black {
            color: #fff;
            font-size: 20px; } }
    @media (max-width: 991.98px) {
      .tc-navbar-light .navbar-nav {
        padding: 15px 0; } }
    .tc-navbar-light .navbar-nav > .nav-item > .nav-link {
      font-size: 16px;
      padding-top: .8rem;
      padding-bottom: .8rem;
      padding-left: 20px;
      padding-right: 20px;
       color: #4d4d4d !important; 
      font-weight: 600 !important;
      position: relative;
      z-index: 0;
      opacity: 1 !important; }
      @media (min-width: 992px) {
        .tc-navbar-light .navbar-nav > .nav-item > .nav-link:after {
         
   
          content: '';
          /* background: var(--tc-base); */
          margin: 0 auto;
          z-index: -1;
          opacity: 0;
          -moz-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          -webkit-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          transition: all 0.3s ease; } }
      @media (max-width: 991.98px) {
        .tc-navbar-light .navbar-nav > .nav-item > .nav-link {
          padding-top: .6rem;
          padding-bottom: .6rem;
          color: #fff;
          padding-left: 0;
          padding-right: 0; } }
      .tc-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
        color: #4d4d4d;
       }
        @media (max-width: 991.98px) {
          .tc-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
            color: #4d4d4d; } }
        .tc-navbar-light .navbar-nav > .nav-item > .nav-link:hover:after {
          opacity: 1; }
    .tc-navbar-light .navbar-nav > .nav-item .dropdown-menu {
      border: none;
      background: #fff;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      border-radius: 0;
      -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
      -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
      box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41); }
      .tc-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item {
        font-size: 13px;
        color: #4d4d4d; }
        .tc-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover, .tc-navbar-light .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
          /* color: #000000; */
          background: transparent; }
    /*.tc-navbar-light .navbar-nav > .nav-item.active > a {*/
    /*  color: #ffffff; */
    /*}*/
      .tc-navbar-light .navbar-nav > .nav-item.active > a:after {
        opacity: 1; }
    @media (max-width: 991.98px) {
      .tc-navbar-light .navbar-nav > .nav-item.active > a {
        color: #4d4d4d; } }
    .tc-navbar-light .navbar-toggler {
      border: none;
      color: rgba(255, 255, 255, 0.5) !important;
      cursor: pointer;
      padding-right: 15px;
      text-transform: uppercase;
      font-size: 16px;
      letter-spacing: .1em;
      padding: 0; }
      .tc-navbar-light .navbar-toggler:hover, .tc-navbar-light .navbar-toggler:focus {
        outline: none !important; }
    .tc-navbar-light.scrolled {
      position: fixed;
      right: 0;
      left: 0;
      top: 0;
      margin-top: -130px;
      background: #fff !important;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      padding: 0; }
      @media (min-width: 992px) {
        .tc-navbar-light.scrolled .nav-item .nav-link:after {
          bottom: 19px !important; } }
      .tc-navbar-light.scrolled .nav-item.active > a {
        color: #000000 !important; }
      @media (max-width: 991.98px) {
        .tc-navbar-light.scrolled .navbar-nav {
          background: none;
          border-radius: 0px;
          padding-left: 0rem !important;
          padding-right: 0rem !important; } }
      @media (max-width: 767.98px) {
        .tc-navbar-light.scrolled .navbar-nav {
          background: none;
          padding-left: 0 !important;
          padding-right: 0 !important; } }
      .tc-navbar-light.scrolled .navbar-toggler {
        border: none;
        color: rgba(0, 0, 0, 0.5) !important;
        border-color: rgba(0, 0, 0, 0.5) !important;
        cursor: pointer;
        padding-right: 0;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: .1em; }
      .tc-navbar-light.scrolled .nav-link {
        padding-top: 0.9rem !important;
        padding-bottom: 0.9rem !important;
        color: #000000 !important; }
        .tc-navbar-light.scrolled .nav-link.active {
          color: #fcd307 !important; }
      .tc-navbar-light.scrolled.awake {
        margin-top: 0px;
        -webkit-transition: .3s all ease-out;
        -o-transition: .3s all ease-out;
        transition: .3s all ease-out; }
      .tc-navbar-light.scrolled.sleep {
        -webkit-transition: .3s all ease-out;
        -o-transition: .3s all ease-out;
        transition: .3s all ease-out; }
      .tc-navbar-light.scrolled .navbar-brand {
        color: #fff;
        font-size: 20px; }
        @media (min-width: 992px) {
          .tc-navbar-light.scrolled .navbar-brand {
            padding: 15px 40px 15px 0; } }
        .tc-navbar-light.scrolled .navbar-brand span {
          color: #fcd307; }
  
  .navbar-brand {
    font-weight: 900;
    font-size: 24px;
    position: relative; }
  
    .ml-auto {
      margin-left: auto !important; }
      hr {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        height: 0;
        overflow: visible; }
      
      h1, h2, h3 {
        margin-top: 0;
        margin-bottom: 0.5rem; }
      
      p {
        margin-top: 0;
        margin-bottom: 1rem; }
      
      address {
        margin-bottom: 1rem;
        font-style: normal;
        line-height: inherit; }
      
      
      ul {
        margin-top: 0;
        margin-bottom: 1rem; }
      
      
      ul ul {
        margin-bottom: 0; }
    
h1, h2, h3,
.h1, .h2, .h3 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit; }

h1, .h1 {
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

h3, .h3 {
  font-size: 1.75rem; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
    @media (min-width: 576px) {
      .container {
        max-width: 540px; } }
    @media (min-width: 768px) {
      .container {
        max-width: 720px; } }
    @media (min-width: 992px) {
      .container {
        max-width: 960px; } }
    @media (min-width: 1200px) {
      .container {
        max-width: 1140px; } }
  
  .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
  
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0; }
    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
      padding-right: 0;
      padding-left: 0; }
  
   .col, .col-sm-12, .col-sm, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-12, .col-md, .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; }
  
  .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  
  @media (min-width: 576px) {
    .col-sm {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%; }
    .col-sm-12 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; } }
  
  @media (min-width: 768px) {
    .col-md {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%; }
    .col-md-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
    .col-md-4 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .col-md-5 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .col-md-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
    .col-md-7 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .col-md-8 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .col-md-12 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
    .order-md-first {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1; }
    .order-md-last {
      -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
      order: 13; } }
  
  @media (min-width: 992px) {
    .col-lg-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
    .col-lg-4 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .col-lg-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
    .col-lg-8 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
      flex: 0 0 66.66667%;
      max-width: 66.66667%; } }
  
  .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent; }
    .table th,
    .table td {
      padding: 0.75rem;
      vertical-align: top;
      border-top: 1px solid #dee2e6; }
    .table thead th {
      vertical-align: bottom;
      border-bottom: 2px solid #dee2e6; }
    .table tbody + tbody {
      border-top: 2px solid #dee2e6; }
    .table .table {
      background-color: #fff; }
  
  .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
    @media screen and (prefers-reduced-motion: reduce) {
      .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
    .form-control::-ms-expand {
      background-color: transparent;
      border: 0; }
    .form-control:focus {
      color: #495057;
      background-color: #fff;
      border-color: #eaf8fd;
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.25);
      box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.25); }
    .form-control::-webkit-input-placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control:-ms-input-placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control::-ms-input-placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control::placeholder {
      color: #6c757d;
      opacity: 1; }
    .form-control:disabled, .form-control[readonly] {
      background-color: #e9ecef;
      opacity: 1; }
  
  select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px); }
  
  select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff; }
  
  .form-group {
    margin-bottom: 1rem; }
  
  .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
    @media screen and (prefers-reduced-motion: reduce) {
      .btn {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
    .btn:hover, .btn:focus {
      text-decoration: none; }
    .btn:focus, .btn.focus {
      outline: 0;
      -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.25);
      box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.25); }
    .btn.disabled, .btn:disabled {
      opacity: 0.65; }
    .btn:not(:disabled):not(.disabled) {
      cursor: pointer; }
    .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
      background-image: none; }
  
  a.btn.disabled,
  fieldset:disabled a.btn {
    pointer-events: none; }
  
  .btn-primary {
    color: #212529;
    background-color: #78d5ef;
    border-color: #78d5ef; }
    .btn-primary:hover {
      color: #212529;
      background-color: #56caeb;
      border-color: #4ac7ea; }
    .btn-primary:focus, .btn-primary.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5);
      box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5); }
    .btn-primary.disabled, .btn-primary:disabled {
      color: #212529;
      background-color: #78d5ef;
      border-color: #78d5ef; }
    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
      color: #212529;
      background-color: #4ac7ea;
      border-color: #3fc3e8; }
      .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
      .show > .btn-primary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5);
        box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5); }
  
  .btn-outline-primary {
    color: #78d5ef;
    background-color: transparent;
    background-image: none;
    border-color: #78d5ef; }
    .btn-outline-primary:hover {
      color: #212529;
      background-color: #78d5ef;
      border-color: #78d5ef; }
    .btn-outline-primary:focus, .btn-outline-primary.focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5);
      box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5); }
    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
      color: #78d5ef;
      background-color: transparent; }
    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
      color: #212529;
      background-color: #78d5ef;
      border-color: #78d5ef; }
      .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
      .show > .btn-outline-primary.dropdown-toggle:focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5);
        box-shadow: 0 0 0 0.2rem rgba(120, 213, 239, 0.5); }
  
  .fade {
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear; }
    @media screen and (prefers-reduced-motion: reduce) {
      .fade {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
    .fade:not(.show) {
      opacity: 0; }
  
  .collapse:not(.show) {
    display: none; }
  
  .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease; }
    @media screen and (prefers-reduced-motion: reduce) {
      .collapsing {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  
  .dropup,
  .dropright,
  .dropdown-menu,
  .dropleft {
    position: relative; }
  
  .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  
  .dropdown-toggle:empty::after {
    margin-left: 0; }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem; }
  
  .dropdown-menu-right {
    right: 0;
    left: auto; }
  
  .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem; }
  
  .dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent; }
  
  .dropup .dropdown-toggle:empty::after {
    margin-left: 0; }
  
  .dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem; }
  
  .dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid; }
  
  .dropright .dropdown-toggle:empty::after {
    margin-left: 0; }
  
  .dropright .dropdown-toggle::after {
    vertical-align: 0; }
  
  .dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem; }
  
  .dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: ""; }
  
  .dropleft .dropdown-toggle::after {
    display: none; }
  
  .dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent; }
  
  .dropleft .dropdown-toggle:empty::after {
    margin-left: 0; }
  
  .dropleft .dropdown-toggle::before {
    vertical-align: 0; }
  
  .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto; }
  
  .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0; }
    .dropdown-item:hover, .dropdown-item:focus {
      color: #16181b;
      text-decoration: none;
      background-color: #f8f9fa; }
    .dropdown-item.active, .dropdown-item:active {
      color: #fff;
      text-decoration: none;
      background-color: #78d5ef; }
    .dropdown-item.disabled, .dropdown-item:disabled {
      color: #6c757d;
      background-color: transparent; }
  
  .dropdown-menu.show {
    display: block; }
    
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #78d5ef;
    border-color: #78d5ef; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    opacity: .75; }
  .close:not(:disabled):not(.disabled) {
    cursor: pointer; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%); }
    @media screen and (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem; }
    .popover .arrow::before, .popover .arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529; }

.carousel {
  position: relative; }

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px; }
  @media screen and (prefers-reduced-motion: reduce) {
    .carousel-item {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0; }

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }
  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); } }

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }
  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next,
    .active.carousel-item-right {
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0); } }

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }
  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-prev,
    .active.carousel-item-left {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); } }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, 0.5); }
    .carousel-indicators li::before {
      position: absolute;
      top: -10px;
      left: 0;
      display: inline-block;
      width: 100%;
      height: 10px;
      content: ""; }
    .carousel-indicators li::after {
      position: absolute;
      bottom: -10px;
      left: 0;
      display: inline-block;
      width: 100%;
      height: 10px;
      content: ""; }
  .carousel-indicators .active {
    background-color: #fff; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #969489 !important }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.d-block {
  display: block !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important; }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; } }

.position-static {
  position: static !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

.w-100 {
  width: 100% !important; }

.m-1 {
  margin: 0.25rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mr-4 {
  margin-right: 1.5rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.mr-5 {
  margin-right: 3rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }


.px-2 {
  padding-left: 0.5rem !important; }


.py-3 {
  padding-top: 1rem !important; }


.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }


.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }


.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5 {
  padding-top: 3rem !important; }


.px-5 {
  padding-right: 3rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }


.px-5 {
  padding-left: 3rem !important; }

.ml-auto {
  margin-left: auto !important; }

@media (min-width: 768px) {
  .ml-md-4 {
    margin-left: 1.5rem !important; }
  .mr-md-5 {
    margin-right: 3rem !important; }
  .pl-md-0 {
    padding-left: 0 !important; }
  .pr-md-3 {
    padding-right: 1rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5 {
    padding-right: 3rem !important; }
  .pl-md-5 {
    padding-left: 3rem !important; } }

@media (min-width: 992px) {
  .pr-lg-5 {
    padding-right: 3rem !important; } }

.text-center {
  text-align: center !important; }

@media (min-width: 768px) {
  .text-md-right {
    text-align: right !important; } }

.visible {
  visibility: visible !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; } }

body {
  font-family: var(--tc-font-two);
  background: #fff;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #000000; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #fcd307; }
  a:hover, a:focus {
    text-decoration: none;
    color: #fcd307;
    outline: none !important; }

h1, h2, h3,
.h1, .h2, .h3 {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400; }    

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.tc-section {
  padding: 6em 0;
  position: relative;
  background-color: var(--tc-primary); }
  @media (max-width: 767.98px) {
    .tc-section {
      padding: 6em 0; } }
      .services-2 {
        width: 100%;
        display: block;
        padding: 0;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        @media (min-width: 992px) {
          .services-2 {
            margin-top: -15rem;
            z-index: 999; } }
        .services-2 .icon-wrap {
          position: relative;
          width: 170px;
          height: 170px;
          margin: 0 auto;
          margin-bottom: 10px;
          z-index: 0; }
        .services-2 .icon {
          width: 170px;
          height: 170px;
          border-radius: 50%;
          background: #B1AFA5;
          margin: 0 auto;
          margin-bottom: 10px;
          position: relative;
          z-index: 0;
          -moz-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          -webkit-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          transition: all 0.3s ease; }

          .services-2 .icon span {
            font-size: 70px;
            color: #000000; }
        .services-2 h2 {
          font-size: 24px;
          font-weight: 500; }
          .services-2 h2 a {
            color: #000000; }
        .services-2:hover .icon {
          /* background-image:  url(/assets/images/services/core-values.jpg); */
          background-color: #969489;
          -webkit-box-shadow: 0px 4px 15px -6px rgba(0, 0, 0, 0.15);
          -moz-box-shadow: 0px 4px 15px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 15px -6px rgba(0, 0, 0, 0.15); }
          .services-2:hover .icon span{
            color: #ffffff;
            }
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top; }
  .site-blocks-cover.overlay {
    position: relative; }

    .site-blocks-cover.overlay:before {
      position: absolute;
      content: "";
      left: 0;
      bottom: 0;
      right: 0;
      top: 0;
      background: rgba(0, 0, 0, 0.4);

  }
.main-slider {
  position: relative;
  background-color: var(--tc-gray);
  /* z-index: 10; */
}

.main-slider .item {
  /* background-color: var(--tc-gray); */
  position: relative;
  padding-top: 265px;
  padding-bottom: 28.5rem;
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;

}

.main-slider__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(4, 1, 13, .50); */
  z-index: -1;
  min-height: 600px;
  height: calc(100vh);
}

.main-slider__shape-1 {
  position: absolute;
  top: 185px;
  left: 115px;
  z-index: 1;
}

.main-slider__shape-1 img {
  width: auto !important;
}

.main-slider__shape-2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: 1;
}

.main-slider__shape-2 img {
  width: auto !important;
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
  top: 5rem;
  left: 0rem;
}
.owl-carousel .owl-item .img {

  width: 48%;
}
.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--tc-gray);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index: 1;
}

.main-slider__sub-title:before {

}

.main-slider__title {
  position: relative;
  display: block;
  font-size: 56px;
  color: var(--tc-gray);
  font-weight: 700;
  line-height: 62px;
  margin-top: 21px;
  margin-bottom: 27px;
  text-transform: capitalize;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__text {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: var(--tc-gray);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.active .main-slider__text {
  visibility: visible;
  opacity: .80;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__btn-and-video-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 46px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__video-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 35px;
}

.main-slider__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 15px;
  color: var(--tc-base);
  background-color: var(--tc-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider__video-icon:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid rgba(var(--tc-white-rgb), .20);
  border-radius: 50%;
}

.main-slider__video-icon:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 4px solid rgba(var(--tc-white-rgb), .10);
  border-radius: 50%;
}

.main-slider__video-icon:hover {
  background-color: var(--tc-base);
  color: var(--tc-white);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--tc-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--tc-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--tc-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--tc-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider__video-text {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--tc-white);
  line-height: 16px;
  margin-left: 20px;
}

.active .main-slider__title,
.active .main-slider__sub-title,
.active .main-slider__btn-and-video-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 145px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  padding: 16px 0;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
  background-color: rgba(var(--tc-white-rgb), .10);
  border-radius: 16px;
}

.main-slider .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-left: 15px;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--tc-white);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--tc-white-rgb), 1);
}



/* Add transition effect to the "Hello" text */
/* Add writing animation */
@keyframes write {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

#helloText {
  overflow: hidden;
}
/* Add smooth transition effect to the text changes */
#helloText {
  transition: all 0.5s ease;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one .section-title__title{
  margin: 0;
  color: var(--tc-gray);
  font-size: 25px;
  line-height: auto;
  /* font-weight: 70; */
  margin-top: 9px;
  font-family: var(--tc-font-two);
  text-transform: capitalize;
}
.feature-one .section-title__tagline-box {
  position: relative;
  display: inline-block;
}

.feature-one .section-title__tagline {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  /* color: var(--tc-base); */
  font-weight: 500;
  letter-spacing: 0.16em;
  z-index: 1;
}

.feature-one .section-title__tagline::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 8px;
  /* background-color: rgba(var(--tc-gray-rgb), .15); */
  background-image: url('../images/services/arrow.png');
  
  z-index: -1;
}
.feature-one {
  position: relative;
  display: block;
  padding: 57px 0 59px;
  z-index: 1;
  background-color: #dddfdf;
}

.feature-one__left {
  position: relative;
  display: block;
}

.feature-one__right {
  position: relative;
  display: block;
}

.feature-one__right .row {
  --bs-gutter-x: 24px;
}

.feature-one__single {
  position: relative;
  display: block;
  background-color: #F7F4F4;
  border-radius: var(--tc-bdr-radius);
  padding: 40px 30px 36px;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-one__single-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--tc-bdr-radius);
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.feature-one__single:hover .feature-one__single-hover-bg {
  transform: scaleY(1.0);
}

.feature-one__single-hover-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(211deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.72) 100%, rgba(255, 255, 255, 0.75) 100%);
  mix-blend-mode: multiply;
  border-radius: var(--tc-bdr-radius);
  z-index: -1;
}

.feature-one__icon {
  position: relative;
  display: inline-block;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--tc-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__icon span {
  color: var(--tc-white);
}

.feature-one__title {
  font-size: 19px;
  /* font-weight: 600; */
  line-height: 32px;
  margin-top: 15px;
  /* margin-bottom: 11px; */
}

.feature-one__title a {
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--tc-white);
}

.feature-one__text {
  font-size: 16px;
  line-height: 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__text {
  color: var(--tc-white);
}




/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  background-color:#dddfdf;
  padding: 120px 0 120px;

    overflow: hidden;
  z-index: 1;
}

.about-one__shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-one__shape-3 img {
  width: auto;
}

.about-one__shape-4 {
  position: absolute;
  right: 90px;
  bottom: 80px;
  z-index: -1;
}

.about-one__shape-4 img {
  width: auto;
}

.about-one__left {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-right: 86px;
}

.about-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.about-one__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(17deg);
  z-index: 1;
}

.about-one__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.about-one__img img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.about-one__img:hover img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.about-one__img-2 {
  position: absolute;
  left: -110px;
  bottom: -60px;
  z-index: 2;
}

.about-one__img-2::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0;
  bottom: 60px;
  background-color: var(--tc-white);
  z-index: -1;
}


.about-one__img-2::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.about-one__img-2:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-one__img-2 img {
  width: auto;
}

.about-one__shape-1 {
  position: absolute;
  top: 91px;
  left: -100px;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__shape-2 {
  position: absolute;
  right: -22px;
  bottom: -24px;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__right {
  position: relative;
  display: block;
  margin-top: 10px;
}

.about-one__right .section-title {
  margin-bottom: 33px;
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 24px;
  margin-bottom: 40px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li+li {
  margin-top: 17px;
}

.about-one__points li .icon {
  position: relative;
  display: inline-block;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--tc-base);
}

.about-one__points li .text {
  margin-left: 10px;
}

.about-one__points li .text p {
  font-weight: 500;
  color: var(--tc-gray);
}

.about-one__btn-box {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/
.why-us {
  position: relative;
  display: block;
  background-color: var(--tc-primary);
  padding: 50px 0 50px;
  overflow: hidden;
  z-index: 1;
}

.why-us__shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.why-us__shape-3 img {
  width: auto;
}

.why-us__shape-4 {
  position: absolute;
  right: 90px;
  bottom: 80px;
  z-index: -1;
}

.why-us__shape-4 img {
  width: auto;
}

.why-us__left {
  position: relative;
  display: block;
  margin-left: 86px;
  margin-right: 220px;
}

.why-us__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.why-us__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.why-us__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(17deg);
  z-index: 1;
}

.why-us__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.why-us__img img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.why-us__img:hover img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.why-us__img-2 {
  position: absolute;
  right: -110px;
  bottom: -60px;
  z-index: 2;
}
.why-us__img-2::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  left: 0;
  bottom: 60px;
  background-color: var(--tc-white);
  z-index: -1;
}

.why-us__img-2::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.why-us__img-2:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.why-us__img-2 img {
  width: auto;
}

.why-us__shape-1 {
  position: absolute;
  top: 91px;
  left: -100px;
  z-index: -1;
}

.why-us__shape-1 img {
  width: auto;
}

.why-us__shape-2 {
  position: absolute;
  left: -22px;
  bottom: -24px;
  z-index: -1;
}

.why-us__shape-2 img {
  width: auto;
}

.why-us__right {
  position: relative;
  display: block;
  margin-top: 10px;
}

.why-us__right .section-title {
  margin-bottom: 33px;
}

.why-us__points {
  position: relative;
  display: block;
  margin-top: 24px;
  margin-bottom: 40px;
}

.why-us__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.why-us__points li+li {
  margin-top: 17px;
}

.why-us__points li .icon {
  position: relative;
  display: inline-block;
}

.why-us__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--tc-base);
}

.why-us__points li .text {
  margin-left: 10px;
}

.why-us__points li .text p {
  font-weight: 500;
  color: var(--tc-gray);
}

.why-us__btn-box {
  position: relative;
  display: block;
}


/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: var(--tc-base);
  overflow: hidden;
  z-index: 1;
}

.cta-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.cta-one__shape-1 img {
  width: auto;
}

.cta-one__shape-2 {
  position: absolute;
  top: 0;
  left: 240px;
  opacity: .10;
  z-index: -1;
}

.cta-one__shape-2 img {
  width: auto;
}

.cta-one__shape-3 {
  position: absolute;
  bottom: 17px;
  left: 325px;
  opacity: .10;
  z-index: -1;
}

.cta-one__shape-3 img {
  width: auto;
}

.cta-one__shape-4 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.cta-one__shape-4 img {
  width: auto;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 0 80px;
}

.cta-one__title-box {
  position: relative;
  display: block;
}

.cta-one__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
  color: var(--tc-white);
}

.cta-one__text {
  color: #EAECF0;
  margin-top: 24px;
}

.cta-one__btn-box {
  position: relative;
  display: block;
}

.cta-one__btn {
  background-color: var(--tc-white);
  color: var(--tc-base);
  font-size: 18px;
  font-weight: 500;
  padding: 17px 33px 17px;
}

.cta-one__btn::before {
  background-color: var(--tc-base);
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.why-choose-one__shape-3 {
  position: absolute;
  top: 270px;
  left: 97px;
  z-index: -1;
}

.why-choose-one__shape-3 img {
  width: auto;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 25px;
}

.why-choose-one__points {
  position: relative;
  display: block;
  margin-top: 49px;
  margin-bottom: 50px;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
}

.why-choose-one__points li+li {
  margin-top: 39px;
}

.why-choose-one__points li .icon {
  position: relative;
  display: inline-block;
}

.why-choose-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--tc-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.why-choose-one__points li:hover .icon span {
  transform: scale(.9);
}

.why-choose-one__points li .content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.why-choose-one__points li .content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.why-choose-one__points li .content p {
  font-size: 16px;
  line-height: 28px;
  margin-top: 11px;
}

.why-choose-one__btn-box {
  position: relative;
  display: block;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-left: 110px;
}

.why-choose-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.why-choose-one__img img {
  width: 100%;
}

.why-choose-one__shape-1 {
  position: absolute;
  bottom: -79px;
  right: -106px;
  z-index: -1;
}

.why-choose-one__shape-1 img {
  width: auto;
}

.why-choose-one__shape-2 {
  position: absolute;
  top: -32px;
  left: -37px;
  z-index: -1;
}

.why-choose-one__shape-2 img {
  width: auto;
}


/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: #dddfdf;
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one__left {
  position: relative;
  display: block;
  margin-top: 35px;
}

.testimonial-one__left .section-title__tagline {
  color: var(--tc-white);
}

.testimonial-one__left .section-title__tagline::before {
  background-color: rgba(255, 255, 255, 0.16);
}

.testimonial-one__left .section-title__title {
  color: var(--tc-white);
}

.testimonial-one__right {
  position: relative;
  display: block;
  margin-right: -312px;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: var(--tc-white);
  box-shadow: 0px 4px 10px 0px rgba(33, 40, 51, 0.08);
  padding: 50px 49px 50px;
  border-radius: var(--tc-bdr-radius);
}

.testimonial-one__text {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: -0.4px;
  color: var(--tc-gray);
}

.testimonial-one__client-info-and-img {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 46px;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
}

.testimonial-one__client-img img {
  width: auto;
  border-radius: 50%;
}

.testimonial-one__client-info {
  position: relative;
  display: block;
  margin-left: 20px;
}

.testimonial-one__client-info h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  font-family: var(--tc-font);
}

.testimonial-one__client-info p {
  font-size: 14px;
  line-height: 24px;
  color: #505050;
  margin-top: 3px;
}

.testimonial-one__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 52px;
  left: -549px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  z-index: 100;
}

.testimonial-one__carousel .owl-nav .owl-next,
.testimonial-one__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px !important;
  color: var(--tc-white) !important;
  background-color: rgba(var(--tc-black-rgb), .10) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 8px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 8px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--tc-white) !important;
  color: var(--tc-base) !important;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  border-radius: var(--tc-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.team-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--tc-black-rgb), .40);
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.team-one__img img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
  border-radius: var(--tc-bdr-radius);
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05);
}

.team-one__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
  border-radius: 5px;
  background-color: rgba(26, 115, 233, 0.80);
  padding: 9px 10px 7px;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.team-one__single:hover .team-one__content {
  transform: scaleY(1.0);
}

.team-one__name {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.team-one__name a {
  color: var(--tc-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--tc-gray);
}

.team-one__sub-title {
  font-size: 16px;
  line-height: 26px;
  color: var(--tc-white);
}

.team-one__social {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-position: center right;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: right;
  transform-style: preserve-3d;
  transform: scalex(0);
}

.team-one__single:hover .team-one__social {
  transform: scalex(1.0);
}

.team-one__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  border-radius: 50%;
  color: var(--tc-gray);
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social a:hover {
  background-color: var(--tc-base);
  color: var(--tc-white);
}

.team-one__social a+a {
  margin-top: 8px;
}

.team-one__btn-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.team-one__btn {
  border: 1px solid var(--tc-black);
  background-color: transparent;
  color: var(--tc-gray);
}

.team-one__btn span {
  position: relative;
  margin-left: 10px;
  top: 1px;
}

.team-one__shape-1 {
  position: absolute;
  bottom: 55px;
  left: 0;
  z-index: -1;
}

.team-one__shape-1 img {
  width: auto;
}

.team-one__shape-2 {
  position: absolute;
  top: 155px;
  right: 73px;
  z-index: -1;
}

.team-one__shape-2 img {
  width: auto;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.accordion-button {
  font-family: var(--tc-font) !important;
  color: var(--tc-gray);
}
.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  color: var(--tc-white);
  border-color: transparent;
  box-shadow: none;
  background-color: var(--tc-black);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;

}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;
}


/*--------------------------------------------------------------
# Appointment One
--------------------------------------------------------------*/
.appointment-one {
  position: relative;
  display: block;
}

.appointment-one__inner {
  position: relative;
  display: block;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  /* border: 1px solid #EAECF0; */
  border-bottom: 0;
  background-color: #ffffff;
  /* border-top-left-radius: var(--tc-bdr-radius); */
  /* border-top-right-radius: var(--tc-bdr-radius); */
  padding: 100px 0 60px;
}

.appointment-one__left {
  position: relative;
  display: block;
  margin-right: 58px;
}

.appointment-one__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.appointment-one__text {
  font-size: 16px;
  line-height: 28px;
  margin-top: 30px;
}

.appointment-one__right {
  position: relative;
  display: block;
}

.appointment-one__form-box {
  position: relative;
  display: block;
}

.appointment-one__form {
  position: relative;
  display: block;
}

.appointment-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.appointment-one__input-title {
  color: var(--tc-gray);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-family: var(--tc-font);
  margin-bottom: 2px;
}

.appointment-one__input-title span {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: lowercase;
}

.appointment-one__input-box input[type="text"],
.appointment-one__input-box input[type="email"] {
  height: 38px;
  width: 100%;
  border: none;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--tc-gray);
  display: block;
  font-weight: 400;
  background-color: transparent;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.appointment-one__input-box input[type="text"]:focus,
.appointment-one__input-box input[type="email"]:focus {
  border-bottom: 1px solid var(--tc-black);
}

.appointment-one__showing-sort {
  position: relative;
  display: block;
  width: 100%;
}

.appointment-one__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;

}

.appointment-one__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.appointment-one__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 38px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
  color: var(--tc-gray) !important;
  font-size: 14px;
  line-height: 38px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.appointment-one__showing-sort .bootstrap-select>.dropdown-toggle:focus {
  border-bottom: 1px solid var(--tc-black);
}

.appointment-one__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--tc-gray);
}

.appointment-one__showing-sort .dropdown-menu {
  border-radius: 0;
}

.appointment-one__input-box textarea {
  width: 100%;
  height: 127px;
  margin-bottom: 0px;
  outline: none;
  border: none;
  font-size: 14px;
  color: var(--tc-gray);
  display: block;
  font-weight: 400;
  background-color: transparent;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.appointment-one__input-box textarea:focus {
  border-bottom: 1px solid var(--tc-black);
}

.appointment-one__btn-box {
  position: relative;
  display: block;
}

.appointment-one__btn {
  border: none;
}

.appointment-one__input-box.text-message-box {
  height: 127px;
}

.appointment-one__input-box-2 {
  margin-top: -58px;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  background-color: #414651;
}

.brand-one__inner {
  position: relative;
  display: block;
  padding: 80px 0 70px;
}

.brand-one__carousel {
  position: relative;
  display: block;
}

.brand-one__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.brand-one__img {
  position: relative;
  display: inline-block;
  z-index: 10;
}

.brand-one__img>img {
  position: relative;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.brand-one__single:hover .brand-one__img>img {
  opacity: 0.60;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color:#dddfdf;
  overflow: hidden;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  left: 0;
  bottom: -30px;
  opacity: .30;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__shape-2 {
  position: absolute;
  right: 0;
  top: 40px;
  opacity: .20;
  z-index: -1;
}

.site-footer__shape-2 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 130px 0 98px;
  border-bottom: 1px solid rgba(var(--tc-black-rgb), .10);
}

.footer-widget__about {
  position: relative;
  display: block;
}

.footer-widget__logo {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 20px;
  margin-bottom: 43px;
}

.site-footer__social {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer__social a {
  position: relative;
  font-size: 24px;
  color: #475467;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__social a:hover {
  color: var(--tc-base);
}

.site-footer__social a+a {
  margin-left: 17px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.footer-widget__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
}

.footer-widget__company {
  position: relative;
  display: block;
  margin-left: 95px;
}

.footer-widget__company:before {
  content: "";
  position: absolute;
  top: -8px;
  left: -60px;
  bottom: -116px;
  width: 1px;
  background-color: rgba(var(--tc-black-rgb), .10);
}

.footer-widget__company-list {
  position: relative;
  display: block;
}

.footer-widget__company-list li {
  position: relative;
  display: block;
}

.footer-widget__company-list li+li {
  margin-top: 12px;
}

.footer-widget__company-list li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__company-list li a:hover {
  color: var(--tc-base);
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 30px;
}

.footer-widget__contact:before {
  content: "";
  position: absolute;
  top: -8px;
  left: -60px;
  bottom: -99px;
  width: 1px;
  background-color: rgba(var(--tc-black-rgb), .10);
}

.footer-widget__contact .footer-widget__title-box {
  margin-bottom: 23px;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
}

.footer-widget__contact-list li+li {
  margin-top: 16px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: inline-block;
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--tc-base);
}

.footer-widget__contact-list li .content {
  position: relative;
  display: block;
  margin-left: 12px;
}

.footer-widget__contact-list li .content h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--tc-font);
  line-height: 26px;
}

.footer-widget__contact-list li .content p {
  font-size: 16px;
  line-height: 22px;
}

.footer-widget__contact-list li .content p a {
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .content p a:hover {
  color: var(--tc-base);
}

.footer-widget__newsletter {
  position: relative;
  display: block;
}

.footer-widget__newsletter:before {
  content: "";
  position: absolute;
  top: -8px;
  left: -60px;
  bottom: -142px;
  width: 1px;
  background-color: rgba(var(--tc-black-rgb), .10);
}

.footer-widget__newsletter .footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.footer-widget__newsletter-text {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}

.footer-widget__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
  height: 56px;
  width: 100%;
  background-color: transparent;
  outline: none;
  font-size: 14px;
  color: #667085;
  font-weight: 400;
  border: none;
  padding-right: 70px;
  padding-left: 20px;
  border-radius: 6px;
  border: 1px solid rgba(34, 40, 49, 0.20);
}

.footer-widget__newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  width: 56px;
  background-color: var(--tc-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.footer-widget__newsletter-btn:hover {
  background-color: var(--tc-gray);
}

.footer-widget__newsletter-btn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--tc-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 35px 0 33px;
}

.site-footer__bottom-text {
  color: #ececec;
  font-size: 14px;
}



















/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  background-color: var(--tc-base);
}








/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }

  .sidebar--two {
    margin-top: 0;
    margin-bottom: 50px;
  }

}

.sidebar__single+.sidebar__single {
  margin-top: 40px;
}

.sidebar {
  position: relative;
  display: block;
  margin-left: 35px;
}

.sidebar__title-box {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.sidebar__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.sidebar__search {
  position: relative;
  display: block;
  padding: 30px 30px 30px;
  border-radius: var(--tc-bdr-radius);
  background-color: var(--tc-white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__search-form {
  position: relative;
  display: block;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: var(--tc-primary);
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
  height: 48px;
  width: 100%;
  padding-right: 20px;
  border: 1px solid #EAECF0;
  color: #667085;
  border-radius: 6px;
}

.sidebar__search-form button[type="submit"] {
  color: var(--tc-white);
  font-size: 19px;
  position: absolute;
  top: 0;
  right: -5px;
  max-width: 48px;
  width: 100%;
  bottom: 0;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
  background-color: var(--tc-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
  background-color: var(--tc-gray);
}

.sidebar__category {
  position: relative;
  display: block;
  padding: 30px 30px 30px;
  border-radius: var(--tc-bdr-radius);
  background-color: var(--tc-white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__category-list {
  position: relative;
  display: block;
}

.sidebar__category-list li {
  position: relative;
  display: block;
}

.sidebar__category-list li+li {
  margin-top: 10px;
}

.sidebar__category-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F8F9FA;
  color: var(--tc-gray);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 17px 7px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__category-list li a:hover {
  color: var(--tc-base);
  background-color: rgba(217, 43, 59, 0.10);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 30px 30px 30px;
  border-radius: var(--tc-bdr-radius);
  background-color: var(--tc-white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__post .sidebar__title-box {
  margin-bottom: 17px;
}

.sidebar__post-list {
  position: relative;
  display: block;
}

.sidebar__post-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar__post-list li+li {
  margin-top: 13px;
}

.sidebar__post-image {
  position: relative;
  display: block;
  max-width: 75px;
  width: 100%;
}

.sidebar__post-image img {
  width: 100%;
  border-radius: 4px;
}

.sidebar__post-content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.sidebar__post-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: var(--tc-font);
}

.sidebar__post-title a {
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-title a:hover {
  color: var(--tc-base);
}

.sidebar__post-date {
  font-size: 14px;
  margin-top: 6px;
}

.sidebar__post-date span {
  position: relative;
  margin-right: 10px;
  font-weight: 900;
}

.sidebar__tag {
  position: relative;
  display: block;
  padding: 30px 30px 30px;
  border-radius: var(--tc-bdr-radius);
  background-color: var(--tc-white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}

.sidebar__tag .sidebar__title-box {
  margin-bottom: 11px;
}

.sidebar__tag-list a {
  font-size: 14px;
  color: var(--tc-gray);
  background-color: #F2F4F7;
  display: inline-block;
  padding: 4px 16px 2px;
  margin-left: 7px;
  letter-spacing: 0.056em;
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 4px;
}

.sidebar__tag-list a+a {
  margin-left: 6px;
  margin-top: 10px;
}

.sidebar__tag-list a:hover {
  background-color: var(--tc-base);
  color: var(--tc-white);
}

.sidebar__gallery {
  position: relative;
  display: block;
  padding: 30px 30px 20px;
  border-radius: var(--tc-bdr-radius);
  background-color: var(--tc-white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.08);
}


.sidebar__gallery-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.sidebar__gallery-list li {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.sidebar__gallery-img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 98px;
  border-radius: 5px;
  z-index: 1;
}

.sidebar__gallery-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 5px;
  background-color: rgba(var(--tc-black-rgb), .30);
  transition: all 700ms ease;
  transform: translateY(-100%);
  z-index: 1;
}

.sidebar__gallery-list li:hover .sidebar__gallery-img:before {
  transform: translateY(0%);
}

.sidebar__gallery-img img {
  width: 100%;
  border-radius: 5px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.sidebar__gallery-list li:hover .sidebar__gallery-img img {
  transform: scale(1.1) rotate(2deg);
}

.sidebar__gallery-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--tc-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.sidebar__gallery-list li:hover .sidebar__gallery-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.sidebar__gallery-list li .sidebar__gallery-img a:hover {
  color: var(--tc-base);
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.contact-page .row {
  --bs-gutter-x: 0px;
}

.contact-page__left {
  position: relative;
  display: block;
  border-top-left-radius: var(--tc-bdr-radius);
  border-bottom-left-radius: var(--tc-bdr-radius);
  border: 1px solid #EAECF0;
  background: var(--tc-white);
  padding: 60px 50px 60px;
}

.contact-page__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.contact-page__sub-title {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #26292E;
  margin-top: 14px;
  margin-bottom: 51px;
}

.contact-page__form-box {
  position: relative;
  display: block;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.contact-page__input-title {
  color: var(--tc-gray);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  font-family: var(--tc-font);
  margin-bottom: 2px;
}

.contact-page__input-title span {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: lowercase;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
  height: 38px;
  width: 100%;
  border: none;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--tc-gray);
  display: block;
  font-weight: 400;
  background-color: transparent;
  border-bottom: 1px solid #EAECF0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__input-box input[type="text"]:focus,
.contact-page__input-box input[type="email"]:focus {
  border-bottom: 1px solid var(--tc-black);
}

.contact-page__showing-sort {
  position: relative;
  display: block;
  width: 100%;
}

.contact-page__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;

}

.contact-page__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.contact-page__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 38px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
  color: var(--tc-gray) !important;
  font-size: 14px;
  line-height: 38px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__showing-sort .bootstrap-select>.dropdown-toggle:focus {
  border-bottom: 1px solid var(--tc-black);
}

.contact-page__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--tc-gray);
}

.contact-page__showing-sort .dropdown-menu {
  border-radius: 0;
}

.contact-page__input-box textarea {
  width: 100%;
  height: 108px;
  margin-bottom: 0px;
  outline: none;
  border: none;
  font-size: 14px;
  color: var(--tc-gray);
  display: block;
  font-weight: 400;
  background-color: transparent;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__input-box textarea:focus {
  border-bottom: 1px solid var(--tc-black);
}

.contact-page__btn-box {
  position: relative;
  display: block;
  padding-top: 16px;
}

.contact-page__btn {
  border: none;
  padding: 11px 35px 12px;
}

.contact-page__btn span {
  position: relative;
  transform: rotate(45deg);
  margin-right: 13px;
}

.contact-page__input-box.text-message-box {
  height: 108px;
}

.contact-page__right {
  position: relative;
  display: block;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 746px;
  width: 100%;
  border-top-right-radius: var(--tc-bdr-radius);
  border-bottom-right-radius: var(--tc-bdr-radius);
}

/*--------------------------------------------------------------
# Appointment Page
--------------------------------------------------------------*/
.appointment-page {
  position: relative;
  display: block;
  background-color: #f8f9fb;
  padding: 110px 0 120px;
  z-index: 1;
}

.appointment-page__top {
  position: relative;
  display: block;
  padding-bottom: 110px;
}

.appointment-page__top-left {
  position: relative;
  display: block;
}

.appointment-page__top-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 54px;
}

.appointment-page__top-right {
  position: relative;
  display: block;
}

.appointment-page__bottom {
  position: relative;
  display: block;
}

.appointment-page__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.appointment-page__img {
  position: relative;
  display: block;
}

.appointment-page__img img {
  width: 100%;
}

.appointment-page__right {
  position: relative;
  display: block;
  margin-left: -60px;
}

.appointment-page__form-box {
  position: relative;
  display: block;
  background-color: var(--tc-white);
  padding: 70px 60px 70px;
  border-top-right-radius: var(--tc-bdr-radius);
  border-bottom-right-radius: var(--tc-bdr-radius);
  filter: drop-shadow(0px 2px 8px rgba(16, 24, 40, 0.10));
}

.appointment-page__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 13px;
}

.appointment-page__text {
  font-size: 16px;
}

.appointment-page__form {
  position: relative;
  display: block;
  margin-top: 42px;
}

.appointment-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.appointment-page__input-title {
  color: var(--tc-gray);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-family: var(--tc-font);
  margin-bottom: 2px;
}

.appointment-page__input-title span {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: lowercase;
}

.appointment-page__input-box input[type="text"],
.appointment-page__input-box input[type="email"] {
  height: 38px;
  width: 100%;
  border: none;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--tc-gray);
  display: block;
  font-weight: 400;
  background-color: transparent;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.appointment-page__input-box input[type="text"]:focus,
.appointment-page__input-box input[type="email"]:focus {
  border-bottom: 1px solid var(--tc-black);
}

.appointment-page__showing-sort {
  position: relative;
  display: block;
  width: 100%;
}

.appointment-page__showing-sort .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;

}

.appointment-page__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.appointment-page__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 38px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
  color: var(--tc-gray) !important;
  font-size: 14px;
  line-height: 38px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.appointment-page__showing-sort .bootstrap-select>.dropdown-toggle:focus {
  border-bottom: 1px solid var(--tc-black);
}

.appointment-page__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--tc-gray);
}

.appointment-page__showing-sort .dropdown-menu {
  border-radius: 0;
}

.appointment-page__input-box textarea {
  width: 100%;
  height: 100%;
  margin-bottom: 0px;
  outline: none;
  border: none;
  font-size: 14px;
  color: var(--tc-gray);
  display: block;
  font-weight: 400;
  background-color: transparent;
  border-bottom: 1px solid #D0D5DD;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.appointment-page__input-box textarea:focus {
  border-bottom: 1px solid var(--tc-black);
}

.appointment-page__btn-box {
  position: relative;
  display: block;
  margin-top: 55px;
}

.appointment-page__btn {
  border: none;
}

.appointment-page__input-box.text-message-box {
  height: 127px;
  margin-bottom: 0;
}




#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--tc-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--tc-base) none repeat scroll 0 0;
  border: 2px solid var(--tc-primary);
  border-radius: 0;
  color: var(--tc-white);
  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;
}

#ui-datepicker-div.ui-widget {
  font-family: var(--tc-font);
}

#ptTimeSelectCntr .ui-widget {
  font-family: var(--tc-font);
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
  position: relative;
  display: block;
  padding: 10px 0 0px;
  background-color: var(--tc-primary);
}

.services-four__top {
  position: relative;
  display: block;
}

.services-four__left {
  position: relative;
  display: block;
}

.services-four__right {
  position: relative;
  display: block;
}

.services-four__bottom {
  position: relative;
  display: block;
}

.services-four__main-tab {
  position: relative;
  display: block;
}

.services-four__main-tab .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.services-four__main-tab .tab-buttons .tab-btn {
  position: relative;
  flex: 0 0 16.66666666666667%;
  max-width: 16.66666666666667%;
  width: 100%;
  padding: 0 3px;
}

.services-four__tab-buttons-single {
  position: relative;
  display: block;
  background-color: #B1AFA5;
  text-align: center;
  padding: 9px 0 9px;
  cursor: pointer;
  z-index: 1;
}

.services-four__tab-buttons-single:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--tc-black);
  /* background-image: url(../images/services/core-values.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-four__tab-buttons-single:hover:after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-four__main-tab .tab-buttons .tab-btn.active-btn .services-four__tab-buttons-single:after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-four__tab-buttons-single:before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%) translateY(-15px);
  border-top: 15px solid #B1AFA5;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-four__tab-buttons-single:hover:before {
  transform: translateX(-50%) translateY(-5px);
  border-top: 15px solid var(--tc-black);
}

.services-four__main-tab .tab-buttons .tab-btn.active-btn .services-four__tab-buttons-single:before {
  transform: translateX(-50%) translateY(-5px);
  border-top: 15px solid var(--tc-black);
}

.services-four__tab-buttons-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.services-four__tab-buttons-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--tc-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-four__tab-buttons-single:hover .services-four__tab-buttons-icon span {
  color: var(--tc-white);
}

.services-four__main-tab .tab-buttons .tab-btn.active-btn .services-four__tab-buttons-icon span {
  color: var(--tc-white);
}

.services-four__tab-buttons-title {
  font-size: 15px;
  /* font-weight: 600; */
  /* line-height: 28px; */
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-four__tab-buttons-single:hover .services-four__tab-buttons-title {
  color: var(--tc-white);
}

.services-four__main-tab .tab-buttons .tab-btn.active-btn .services-four__tab-buttons-title {
  color: var(--tc-white);
}

.services-four__main-tab .tabs-content {
  position: relative;
  display: block;
  margin-top: 80px;
}

.services-four__main-tab .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.services-four__main-tab .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.services-four__tab-content-box {
  position: relative;
  display: block;
}

.services-four__tab-content-left {
  position: relative;
  display: block;
}

.services-four__tab-content-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-four__tab-content-img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}

.services-four__tab-content-img:hover:before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

.services-four__tab-content-img img {
  width: 100%;
}

.services-four__tab-content-right {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-left: 70px;
}

.services-four__tab-content-title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}


/*--------------------------------------------------------------
# News Page Two
--------------------------------------------------------------*/
.news-page-two {
  position: relative;
  display: block;
  background-color: #f8f9fb;
  padding: 120px 0 120px;
  z-index: 1;
}

.news-page-two__left {
  position: relative;
  display: block;
}

.news-page-two__content-box {
  position: relative;
  display: block;
}

.news-page-two__single {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.news-page-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 1;
}

.news-page-two__img img {
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-two__single:hover .news-page-two__img img {
  transform: scale(1.05);
}

.news-page-two__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--tc-black-rgb), .30);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-transform: perspective(400px) rotateY(90deg) scaleX(0.5);
  -ms-transform: perspective(400px) rotateY(90deg) scaleX(0.5);
  transform: perspective(400px) rotateY(90deg) scaleX(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.news-page-two__single:hover .news-page-two__img:after {
  -webkit-transform: perspective(400px) rotateY(0deg) scaleX(1.0);
  -ms-transform: perspective(400px) rotateY(0deg) scaleX(1.0);
  transform: perspective(400px) rotateY(0deg) scaleX(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.news-page-two__content {
  position: relative;
  display: block;
  max-width: 450px;
  width: 100%;
  min-height: 330px;
  padding: 40px 60px 40px;
  background-color: var(--tc-white);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.news-page-two__user {
  position: absolute;
  top: 40px;
  right: 60px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  z-index: 2;
}

.news-page-two__user img {
  width: 100%;
  border-radius: 50%;
}

.news-page-two__user-title {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  pointer-events: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  padding: 0px 11px;
  border-radius: 6px;
  background: #F52549;
  color: var(--tc-white);
}

.news-page-two__user-title::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 13px;
  height: 7px;
  bottom: -6px;
  -webkit-clip-path: polygon(100% 0px, 50% 100%, 0px 0px);
  clip-path: polygon(100% 0px, 50% 100%, 0px 0px);
  background: #F52549;
}

.news-page-two__user:hover .news-page-two__user-title {
  opacity: 1;
}

.news-page-two__date-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news-page-two__date-box h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}

.news-page-two__date-box p {
  font-size: 20px;
  line-height: 28px;
  color: var(--tc-gray);
  margin-left: 20px;
}

.news-page-two__category {
  position: relative;
  display: block;
  margin-top: 18px;
  margin-bottom: 22px;
}

.news-page-two__category a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tc-white);
  background-color: var(--tc-base);
  padding: 9px 20px 7px;
  border-radius: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-two__category a:hover {
  background-color: var(--tc-gray);
}

.news-page-two__title-box {
  position: relative;
  display: block;
  border-bottom: 2px dashed #ddd;
  padding-bottom: 13px;
  margin-bottom: 11px;
}

.news-page-two__title-box h3 {
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
  font-weight: 700;
}

.news-page-two__title-box h3 a {
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-two__title-box h3 a:hover {
  color: var(--tc-base);
}

.news-page-two__read-more {
  position: relative;
  display: block;
}

.news-page-two__read-more a {
  position: relative;
  display: inline-block;
  color: var(--tc-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-two__read-more a:hover {
  color: var(--tc-base);
}

/*--------------------------------------------------------------
# News Page Three
--------------------------------------------------------------*/
.news-page-three {
  position: relative;
  display: block;
  background-color: #f8f9fb;
  padding: 120px 0 120px;
  z-index: 1;
}

.news-page-three__left {
  position: relative;
  display: block;
}

.news-page-three__content-box {
  position: relative;
  display: block;
  z-index: 2;
}

.news-page-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-page-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--tc-bdr-radius);
  z-index: 1;
}

.news-page-three__img img {
  width: 100%;
  border-radius: var(--tc-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-three__single:hover .news-page-three__img img {
  transform: scale(1.05);
}

.news-page-three__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--tc-black-rgb), .30);
  border-radius: var(--tc-bdr-radius);
  -webkit-transform: perspective(400px) rotateY(90deg) scaleX(0.5);
  -ms-transform: perspective(400px) rotateY(90deg) scaleX(0.5);
  transform: perspective(400px) rotateY(90deg) scaleX(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.news-page-three__single:hover .news-page-three__img:after {
  -webkit-transform: perspective(400px) rotateY(0deg) scaleX(1.0);
  -ms-transform: perspective(400px) rotateY(0deg) scaleX(1.0);
  transform: perspective(400px) rotateY(0deg) scaleX(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.news-page-three__content {
  position: relative;
  display: block;
  background-color: var(--tc-white);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 51px 60px 60px;
  margin: -50px 30px 0;
  border-radius: var(--tc-bdr-radius);
  z-index: 2;
}

.news-page-three__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.news-page-three__meta li+li {
  margin-left: 15px;
}

.news-page-three__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-three__meta li a:hover {
  color: var(--tc-base);
}

.news-page-three__meta li a span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--tc-base);
  padding-right: 10px;
}

.news-page-three__title-box {
  position: relative;
  display: block;
  border-bottom: 2px dashed #ddd;
  padding-bottom: 23px;
  margin-bottom: 23px;
}

.news-page-three__title-box h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.news-page-three__title-box h3 a {
  color: var(--tc-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-page-three__title-box h3 a:hover {
  color: var(--tc-base);
}

.news-page-three__text {
  font-size: 16px;
  line-height: 28px;
}

.news-page-three__btn-and-post-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 29px;
}

.news-page-three__post-share {
  position: relative;
  display: block;
}

.news-page-three__post-share-icon {
  position: relative;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #84859c;
  font-size: 20px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
  border: 1px solid #e1e5e9;
}

.news-page-three__post-share-icon:hover {
  background-color: var(--tc-base);
  color: var(--tc-white);
}

.news-page-three__social {
  position: absolute;
  top: 0;
  right: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.news-page-three__btn-and-post-share:hover .news-page-three__social {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.news-page-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #84859c;
  font-size: 20px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: 1px solid #e1e5e9;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.news-page-three__social a+a {
  margin-left: 10px;
}

.news-page-three__social a:hover {
  background-color: var(--tc-base);
  color: var(--tc-white);
}







.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tc-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--tc-gray);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}









/*--------------------------------------------------------------
# Testimonials Carousel Page
--------------------------------------------------------------*/

.testimonials-carousel-page {
  position: relative;
  display: block;
  padding: 152px 0 170px;
  background-color: #F7F9FA;
}

.testimonials-carousel-page .container {
  max-width: 1200px;
}




/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  background-color: #FAFAFA;
  padding: 152px 0 55px;
  z-index: 1;
}

.testimonials-page .testimonial-two__single {
  margin-bottom: 65px;
}



/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 73px 0 120px;
  z-index: 1;
}

.error-page-shape-one {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -1;
}

.error-page-shape-one img {
  width: auto;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 500;
  color: var(--tc-base);
  z-index: 2;
}

.error-page__tagline {
  font-size: 40px;
  line-height: 49px;
  font-weight: 400;
  color: var(--tc-gray);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.error-page__text {
  font-size: 20px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 47px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 52px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--tc-primary);
  border: 0;
  font-size: 14px;
  color: var(--tc-gray);
  font-weight: 500;
  padding-left: 50px;
  padding-right: 75px;
  border-radius: 0;
}

.error-page__form button[type="submit"] {
  background-color: transparent;
  color: var(--tc-gray);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

.error-page__btn {
  background-color: var(--tc-base);
}

.error-page__btn:before {
  background-color: var(--tc-gray);
}

/*--------------------------------------------------------------
# Portfolio Two
--------------------------------------------------------------*/