:root {
  --primary-bg-color: #f8efe8;
  --primary-color: #423b4b;
  --secondary-color: #f58f9a;
  --light-color: #ffffff;
  --primary-font: "Baloo Chettan 2", sans-serif;
}
@font-face {
  font-family: bookflu;
  src: url(../fonts/Bookflu-SemiBold.ttf) format("truetype");

}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
}

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

figure {
  margin: 0;
}

svg,
img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

a,
button,
path,
circle,
rect {
  transition: 0.3s;
}

/* ******************************** */
/* ********** Main Stile ********** */
/* ******************************** */
.cc-container {
  width: clamp(320px, 70%, 700px);
  padding: 0 15px;
  margin: 0 auto;
}

.cc-flex {
  display: flex;
}

.cc-align-center {
  align-items: center;
}

.cc-content-between {
  justify-content: space-between;
}

.cc-content-center {
  justify-content: center;
}

@media (max-width: 575px) {
  .cc-container {
    width: 100%;
  }
}

.cc-header {
  padding: 12px 0;
  background-color: var(--light-color);
}

.cc-header__inner {
  gap: 20px;
}

.cc-header__logo a {
  display: inline-block;
  max-width: 125px;
}

.cc-header__menu-trigger {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.cc-header__menu-trigger svg {
  pointer-events: none;
}

.cc-header__menu-trigger:hover path {
  stroke: var(--secondary-color);
}

.cc-main-content {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  background-color: var(--primary-bg-color);
}

.cc-onbording-main-content.cc-main-content {
  height: 100vh;
}

.cc-onbording-main-content .cc-hero,
.cc-start-main-content .cc-hero {
  padding-top: 15px;
}

.cc-hero {
  padding: 25px 0;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cc-user-info-main-content .cc-hero,
.cc-faq-content .cc-hero,
.cc-about-content .cc-hero,
.cc-contact-content .cc-hero,
.cc-team-content .cc-hero,
.cc-testimonials-content .cc-hero {
  flex: none;
}

.cc-hero__water-mark {
  position: absolute;
  max-width: 180px;
  display: inline-block;
  top: 20px;
  right: 15px;
  z-index: 9;
}

.cc-hero__inner {
  text-align: center;
  padding: 50px 30px 10px;
}

@media (max-width: 420px) {
    .cc-hero__inner {
      padding: 50px 20px 10px ;
    }
}

.cc-contact-content .cc-hero__inner,
.cc-about-content .cc-hero__inner,
.cc-faq-content .cc-hero__inner,
.cc-team-content .cc-hero__inner,
.cc-testimonials-content .cc-hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  gap: 16px;
}

.cc-hero__figure {
  max-width: 92px;
  margin: 0 auto;
}

.cc-contact-content .cc-hero__figure,
.cc-about-content .cc-hero__figure,
.cc-faq-content .cc-hero__figure,
.cc-team-content .cc-hero__figure,
.cc-testimonials-content .cc-hero__figure {
  width: 68px;
  margin: 0;
}

.cc-user-info-main-content .cc-hero__figure {
  width: 80px;
}

.cc-hero__badge {
  font-size: 14px;
  line-height: 1.1;
  font-family: var(--primary-font);
  font-weight: 500;
  color: #fde9eb;
  display: inline-block;
  margin: 0 0 5px;
  padding: 4px 10px;
  background-color: var(--primary-color);
  border-radius: 100px;
  text-transform: uppercase;
}

.cc-hero__brand-name {
  font-size: 36px;
  line-height: 1.1;
  font-family: bookflu;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0 0;
}

.cc-contact-content .cc-hero__brand-name,
.cc-about-content .cc-hero__brand-name,
.cc-faq-content .cc-hero__brand-name,
.cc-user-info-main-content .cc-hero__brand-name,
.cc-team-content .cc-hero__brand-name,
.cc-testimonials-content .cc-hero__brand-name {
  font-size: 28px;
}

.cc-user-info-main-content .cc-user-info__btns,
.cc-book-main-content .cc-user-info__btns {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--light-color);
  z-index: 999;
}

.home-page .cc-user-info__btns{
    flex-wrap: wrap;
    row-gap: 8px;
}

.home-page .cc-user-info__btn{
   white-space: nowrap;
}

.cc-hero__brand-name span {
  display: block;
}

.cc-hero__brand-name span:last-child {
  color: var(--primary-color);
}

.cc-user-info {
  border-radius: 32px 32px 0 0;
  background-color: var(--light-color);
  padding-top: 62px;
  position: relative;
  /* flex: 1; */
}

.home-page .cc-user-info{
    padding-top: 32px;
}

.cc-user-info-main-content .cc-user-info,
.cc-faq-content .cc-faq-area,
.cc-about-content .cc-about-area,
.cc-contact-content .cc-contact-area,
.cc-team-content .cc-contact-area,
.cc-testimonials-content .cc-contact-area {
  flex: 1;
}

.cc-book-main-content form {
  border-top: 1px solid #f58f9a59;
}

.cc-book-main-content .cc-hero {
  display: none;
}


/*********Hero Slider*********/
.cc-hero__slider .slick-dots{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 9px;
}

.cc-hero__slider:not(.slick-initialized) .cc-hero__slide:not(:first-child){
    display: none;
}

.cc-hero__slider .slick-dots li{
    height: 12px;
    width: 12px;
   box-shadow: 0 0 0 1px #f49199;
    border-radius: 50%;
    line-height: 1;
    position: relative;
    display: block;
    opacity: .6;
    transition: .3s;
    cursor: pointer;
}

.cc-hero__slider .slick-dots li.slick-active{
    opacity: 1;
}

.cc-hero__slider .slick-dots li:after{
    content: '';
    height: 8px;
    width: 8px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: .3s;
}

.cc-hero__slider .slick-dots li.slick-active:after{
    background-color: #f49199;
}

.cc-hero__slider .slick-dots li button{
    display: none;

}

.cc-user-info-main-content .cc-user-info,
.cc-book-main-content .cc-user-info {
  padding: 10px 0 60px;
  border-radius: 0;
}

.cc-user-info::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 25px;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}

.cc-user-info-main-content .cc-user-info::after,
.cc-book-main-content .cc-user-info::after {
  display: none;
}

.cc-user-info__text {
  max-width: 320px;
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--primary-font);
  margin: 0 auto 55px;
  text-align: center;
}

.home-page .cc-user-info__text{
    font-size: 17px;
    margin-bottom: 20px;
}

.cc-user-info__text b {
  font-weight: 500;
}

.cc-user-info__check-list {
  margin-bottom: 35px;
}

.cc-user-info__check-item {
  padding-left: 15px;
}

.cc-user-info__check-list__title {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin: 0 0 20px;
}

.cc-user-info__check-item:not(:last-child) {
  margin-bottom: 10px;
}

.cc-user-info__check-item input[type="radio"] {
  display: none;
}

.cc-user-info__check-item input[type="radio"]:checked {
  border-color: transparent;
}

.cc-user-info__check-item__label {
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #8e8993;
  transition: 0.3s;
}

.cc-user-info__check-item__label .circle {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 8px;
  border-radius: 50%;
  border: 2px solid #8e8993;
  background-color: transparent;
  position: relative;
  vertical-align: middle;
}

.cc-user-info__check-item__label .circle::after {
  position: absolute;
  height: 8px;
  width: 5px;
  border: solid var(--light-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 3px;
  left: 6px;
}

.cc-user-info__check-item input[type="radio"]:checked + label .circle::after {
  content: "";
}

.cc-user-info__check-item input[type="radio"]:checked + label {
  color: var(--primary-color);
}

.cc-user-info__check-item input[type="radio"]:checked + label .circle {
  background-color: var(--secondary-color);
  border-color: transparent;
}

.cc-user-info__btns {
  padding: 15px;
  border-top: 1px solid #d9d8db;
  gap: 16px;
}

.cc-user-info__btn {
  flex: 1;
  max-width: 330px;
  text-transform: uppercase;
}

.cc-btn-solid {
  font-size: 18px;
  line-height: 1.1;
  font-family: var(--primary-font);
  font-weight: 500;
  color: var(--light-color);
  padding: 7px 18px;
  border-radius: 6px;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.cc-btn-solid:hover {
  color: var(--secondary-color);
}

.cc-btn-transparent {
  font-size: 18px;
  line-height: 1.1;
  font-family: var(--primary-font);
  font-weight: 500;
  color: var(--primary-color);
  padding: 7px 18px;
  border-radius: 6px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.cc-btn-transparent:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
}

.cc-user-info__tab {
  margin: 0 0 40px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  width: calc(100% + 30px);
  margin-left: -15px;
}

.cc-user-info__tab-btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.2;
  font-family: var(--primary-font);
  background-color: transparent;
  border: solid rgba(0, 0, 0, 0);
  border-width: 0 0 2px;
  padding: 6px 16px;
  flex: 1;
}

.cc-user-info__content br {
  display: none;
}

.cc-user-info__tab-btn.deactivate {
  pointer-events: none;
  color: #b3b1b7;
  border-bottom-color: transparent;
}

.cc-user-info__title {
  font-size: 22px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 500;
  color: var(--primary-color);
  margin: 10px 0 15px;
}

.cc-user-info__fields {
  padding: 16px 16px 24px;
  border-radius: 8px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.24);
  margin-bottom: 36px;
}

.cc-user-info__field:not(:last-of-type) {
  margin-bottom: 10px;
}

.cc-form__label {
  font-size: 20px;
  line-height: 1.3;
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 8px;
}

.cc-form__label span {
  color: red;
}

.cc-form__input-wrap {
  position: relative;
}

.cc-form__input,
.cc-form__textarea,
.cc-form__select{
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #b3b1b7;
  outline: none;
}
.cc-form__select {
  background-color: #fff;
}
.cc-form__textarea {
  height: 100px;
  resize: none;
}

.cc-user-info-main-content .iti {
  width: 100%;
}

.cc-user-info-main-content .iti__selected-country-primary {
  display: none;
}

.cc-user-info-main-content .iti__selected-dial-code {
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 400;
  color: #8e8993;
  width: 50px;
  text-align: center;
  border-right: 1px solid #b3b1b7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
}

.iti__search-input {
  padding: 10px;
  border: 1px solid #b3b1b7;
  margin: 15px;
  width: calc(100% - 30px);
}

.iti--fullscreen-popup .iti__dropdown-content {
  margin: 0 auto;
  /* max-height: 320px; */
}

.cc-user-info-main-content .iti__flag {
  display: none;
}

.cc-form__input-wrap .icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 13px;
  border-right: 1px solid #b3b1b7;
}

.cc-form__input-wrap .cc-form__input {
  padding-left: 55px;
}

.cc-aggrement-check-input {
  display: none;
}

.cc-aggrement-check-label {
  gap: 8px;
  margin-bottom: 53px;
}

.cc-aggrement-check-label .cc-checkbox {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  border: 2px solid #b3b1b7;
  display: inline-block;
}

.cc-aggrement-check-input:checked
  + .cc-aggrement-check-label
  .cc-checkbox::after {
  position: absolute;
  content: "";
  height: 9px;
  width: 5px;
  top: 3px;
  left: 6px;
  border: solid #b3b1b7;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cc-aggrement-check-label .cc-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--primary-font);
  font-weight: 400;
  color: #8e8993;
}

.cc-aggrement-check-label .cc-text a {
  font-weight: 500;
  color: var(--primary-color);
}

.cc-agreement-check-label a {
  color: var(--primary-color);
}

.cc-aggrement-check-label .cc-text a:hover {
  text-decoration: underline;
}

.cc-hero__title {
  font-size: 24px;
  line-height: 1.3;
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px;
  text-align: start;
  text-transform: capitalize;
}

.cc-hero__steps {
  padding: 22px;
  background-color: var(--light-color);
  border: 1px solid #d9d8db;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
}

.cc-hero__steps::after {
  position: absolute;
  content: "";
  height: 2px;
  width: calc(100% - 44px);
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  z-index: -1;
}

.cc-step {
  background-color: var(--light-color);
  padding: 0 7px;
  list-style: none;
}

.cc-step:first-of-type {
  padding-left: 0;
}

.cc-step:last-of-type {
  padding-right: 0;
}

.cc-step__iocn {
  vertical-align: middle;
  margin-right: 4px;
}

.cc-user-info__check-fields__title,
.cc-user-info__calender-fields__title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0 0 16px;
}

.cc-user-info__check-field {
  margin-bottom: 16px;
}

.cc-user-info__check-field__label {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0 0 14px;
}

.cc-user-info__check-field__row {
  grid-gap: 11px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.week .day.selected span {
  /* background-color: var(--secondary-color) !important; */
}

.cc-user-info__check-field__col.disabled {
  opacity: 0.3;
}

span.month-label {
  text-transform: capitalize;
}

.cc-user-info__check-field__col.disabled label {
  cursor: not-allowed;
}

.cc-user-info__check-label {
  font-size: 14px;
  line-height: 1.3;
  font-family: var(--primary-font);
  font-weight: 400;
  color: #8e8993;
  transition: 0.3s;
  border: 1px solid #68626f;
  border-radius: 6px;
  background-color: transparent;
  display: block;
  text-align: center;
  padding: 7px 9px;
  cursor: pointer;
  transition: 0.3s;
}

.cc-user-info__check-label .icon {
  margin-right: 4px;
  display: none;
}

.cc-user-info__check-field__col input[type="radio"] {
  display: none;
}

.cc-user-info__check-field__col
  input[type="radio"]:checked
  + .cc-user-info__check-label {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.cc-user-info__check-field__col
  input[type="radio"]:checked
  + .cc-user-info__check-label
  .icon {
  display: inline-block;
}

.cc-calendar-wrapper .prev-button,
.cc-calendar-wrapper .next-button,
.cc-calendar-wrapper .special-buttons {
  display: none;
}

.cc-calendar-wrapper .month-container {
  padding-right: 15px;
  text-align: end;
  text-align: end;
  position: relative;
}

.cc-calendar-wrapper .buttons-container {
  border: none;
  margin-top: -30px;
}

.cc-calendar-wrapper .weeks-wrapper:not(.header) {
  border: solid #68626f25;
  border-width: 0 1px 1px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 24px;
}

.cc-calendar-wrapper .weeks-wrapper.header {
  border: solid #68626f25;
  border-width: 1px 1px 0;
  border-radius: 8px 8px 0 0;
}

.cc-calendar-wrapper .weeks-wrapper.header .week {
  margin-bottom: 0;
}

.cc-calendar-wrapper .weeks-wrapper:not(.header) .week:first-of-type {
  margin-top: 0;
  padding-top: 15px;
}

.cc-calendar-wrapper .year-dropdown {
  margin-left: auto;
  display: block;
}

.cc-calendar-wrapper .month-container::after {
  content: "";
  height: 6px;
  width: 6px;
  border: solid var(--primary-color);
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.cc-user-info__calender-fields {
  position: relative;
  padding-top: 15px;
}

.cc-user-info__calender-fields__title .icon,
.cc-user-info__check-fields__title .icon {
  vertical-align: text-top;
  margin-right: 6px;
}

.cc-selected-date {
  /* position: absolute;
  top: 0;
  left: 0;
  visibility: hidden; */
  padding: 11px 16px;
  border: 1px solid #b3b1b7;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 12px;
}

/* Thank You Pop-Up */
.cc-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(13, 12, 15, 0.6);
  z-index: 9999;
  display: none;
}

.cc-popup.cc-active {
  display: flex;
}

.cc-popup__inner {
  padding: 48px 24px;
  background-color: var(--light-color);
  border-radius: 8px;
  text-align: center;
  margin: 32px;
}

.cc-popup__icon {
  margin-bottom: 24px;
}

.cc-popup__title {
  font-size: 26px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--primary-color);
  margin: 0 0 24px;
}

.cc-popup__dsc {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--primary-font);
  color: #8e8993;
  margin: 0;
}

/* Side Drawer */
.cc-trigger {
  position: relative;
}

.cc-trigger.cc-active svg {
  opacity: 0;
}

.cc-trigger.cc-active:before,
.cc-trigger.cc-active:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 24px;
  width: 2px;
  background-color: #333;
}

.cc-trigger.cc-active:before {
  transform: rotate(45deg);
}

.cc-trigger.cc-active:after {
  transform: rotate(-45deg);
}

.cc-side-drawer {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(13, 12, 15, 0.4);
  left: 0;
  top: 0;
  z-index: 9999;
  transition: 0.3s;
  visibility: hidden;
}

.cc-side-drawer.cc-active {
  /* display: block; */
  visibility: visible;
}

.cc-side-drawer__inner {
  width: 250px;
  margin-right: -270px;
  margin-left: auto;
  background-color: #f8efe8;
  height: 100%;
  transition: 0.3s;
  opacity: 0;
}

.cc-side-drawer.cc-active .cc-side-drawer__inner {
  opacity: 1;
  margin-right: 0;
}

.cc-side-drawer__header {
  position: relative;
  padding: 12px 16px;
  background-color: var(--light-color);
  text-align: center;
  /*display: none;*/
}

.cc-side-drawer__logo {
  display: inline-block;
  max-width: 125px;
}

.cc-side-drawer__close {
  position: absolute;
  top: 50%;
  left: -17px;
  transform: translateY(-50%) rotate(180deg);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.cc-side-drawer__close:hover path {
  fill: var(--secondary-color);
}

.cc-side-drawer__close svg {
  pointer-events: none;
}

.cc-side-drawer__link {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 500;
  color: #68626f;
  padding: 20px 16px;
  border-bottom: 1px solid #b3b1b7;
}

.cc-side-drawer__link:hover {
  color: var(--secondary-color);
}

.cc-faq-area {
  padding: 25px 0;
  background-color: var(--light-color);
}

.cc-faq-item {
  border-bottom: 1px solid #b3b1b7;
  padding: 10px 0 16px;
}

.cc-faq-item:not(:last-of-type) {
  margin-bottom: 16px;
}

.cc-faq-item:last-of-type {
  border: none;
}

.cc-faq-area__title {
  font-size: 24px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 15px;
}

.cc-faq-item__header {
  gap: 20px;
  cursor: pointer;
}

.cc-faq-item__title {
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
  flex: 1;
}

.cc-faq-item__icon {
  width: 8px;
  height: 8px;
  border: solid #8e8993;
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
  margin-top: 6px;
  transition: 0.3s;
}

.cc-active-faq .cc-faq-item__icon {
  transform: rotate(135deg);
}

.cc-faq-item__body {
  padding: 10px 0 0;
  display: none;
}

.cc-faq-item:last-of-type .cc-faq-item__body {
  border: none;
}

.cc-faq-item__dsc {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  color: #68626f;
  margin: 0;
}

/* Contact */
/* About */
/* Team */
.cc-contact-area,
.cc-about-area,
.cc-team-area,
.cc-testimonials-area {
  flex: 1;
  padding: 25px 0;
  background-color: var(--light-color);
}

.cc-contact-title,
.cc-about-title,
.cc-team-title,
.cc-Testimonials-title {
  font-size: 24px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 10px;
}

.cc-about-title,
.cc-team-title,
.cc-Testimonials-title {
  margin-bottom: 20px;
}

.cc-about-thumb {
  margin: 0 0 15px;
  overflow: hidden;
  border-radius: 12px;
}

.cc-about-thumb img {
  width: 100%;
}

.cc-contact-dsc,
.cc-about-dsc,
.cc-team-dsc {
  font-size: 17px;
  line-height: 1.5;
  font-family: var(--primary-font);
  font-weight: 400;
  color: #68626f;
  margin: 0 0 30px;
}

.cc-team-dsc {
  font-size: 16px;
}

.cc-contact-block-wrap,
.cc-about-block-wrap {
  gap: 15px;
}

.cc-contact-block,
.cc-about-block,
.cc-team-block {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  background-color: #f8efe8;
}

.cc-team-block {
  text-align: start;
  gap: 15px;
  margin-bottom: 15px;
}

.cc-team-block__photo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid var(--light-color);
  overflow: hidden;
}

.cc-about-content .cc-about-block {
  margin-bottom: 20px;
}

.cc-about-block__row {
  gap: 10px;
}

.cc-contact-block-wrap .cc-contact-block,
.cc-about-block-wrap .cc-about-block {
  flex: 1;
}

.cc-contact-block__icon,
.cc-about-block__icon {
  margin-bottom: 10px;
}

.cc-team-block__content {
  flex: 1;
}

.cc-contact-block__title,
.cc-about-block__title,
.cc-team-block__label,
.cc-team-block__name {
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #423b4b;
  margin: 0 0 10px;
}

.cc-about-block__title {
  text-align: start;
}

.cc-team-block__label {
  font-size: 17px;
  margin: 0 0 6px;
}

.cc-team-block__name {
  font-size: 21px;
  margin: 0 0 6px;
}

.cc-contact-block__text,
.cc-about-block__text {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #68626f;
  margin: 0 0 5px;
}

.cc-about-block__text {
  display: block;
  font-size: 17px;
}

.cc-about-block__text-label {
  font-weight: 600;
}

.cc-team-block__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #68626f;
  margin: 0;
}

.cc-about-block__text {
  text-align: start;
}

.cc-contact-block__text .icon,
.cc-about-block__text .icon {
  width: 16px;
}

.cc-contact-block__text .text,
.cc-about-block__text .text {
  flex: 1;
  text-align: start;
}

.cc-contact-block__text:last-child,
.cc-about-block__text:last-child {
  margin: 0;
}

.cc-contact-social {
  margin: 40px 0;
}

.cc-contact-social__label {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: #717171;
  margin: 0 0 8px;
}

.cc-contact-social-links {
  gap: 20px;
}

.cc-contact-social-link {
  display: inline-block;
}

@media (max-height: 850px) {
  /*.cc-hero__inner:not(.home-page .cc-hero__inner, .step-2 .cc-hero__inner) {*/
  /*  display: flex;*/
  /*  align-items: center;*/
  /*  justify-content: center;*/
  /*  text-align: start;*/
  /*  gap: 10px;*/
  /*}*/

  .cc-hero__figure:not(.home-page .cc-hero__figure, .step-2 .cc-hero__figure) {
    max-width: 65px;
    /*margin: 0;*/
  }

  .home-page .cc-hero__figure {
    max-width: 70px;
  }

  .step-2 .cc-hero__figure {
    max-width: 60px;
  }

  .cc-hero__water-mark {
    max-width: 110px;
  }

  .cc-user-info__check-item__label {
    font-size: 15px;
  }

  .cc-user-info__check-item:not(:last-child) {
    margin-bottom: 5px;
  }

  .cc-user-info__text,
  .cc-user-info__check-list {
    margin-bottom: 15px;
  }

  .cc-user-info__btns {
    padding: 10px;
  }

  .cc-user-info {
    padding-top: 30px;
  }

  .cc-user-info__check-list__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cc-hero__brand-name {
    font-size: 22px !important;
  }

  .cc-user-info::after {
    height: 3px;
    border-radius: 2px;
  }
}

.cc-user-info__content {
  display: none;
}

.cc-user-info__content.active {
  display: block;
}

.cc-user-info__tab-btn.active {
  border: solid #423b4b;
  border-width: 0 0 2px;
}

.cc-contact-content .cc-agreement-check-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* .cc-agreement-check-label a {
  color: var(--secondary-color);
} */

.cc-agreement-check-label #agreement {
  margin-top: 6px;
  margin-right: 10px;
}

.cc-agreement-check-label {
  align-items: flex-start;
}

.cc-user-info__check-fields {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 30px;
}

.cc-user-info__check-fields p {
  white-space: nowrap;
}

/* *********** **** ************* */
/* ******** Testimonials ******** */
/* *********** **** ************* */
.cc-testimonials__card {
  margin: 0 1px;
}

.cc-testimonials__card {
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 30px 25px;
  background-color: var(--primary-bg-color);
}

.cc-testimonials__card__author-photo {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--light-color);
  margin: 0 auto 15px;
}

.cc-testimonials__card__icon {
  margin: 0 0 15px;
}

.cc-testimonials__card__author-photo img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.cc-testimonials__card__title,
.cc-testimonials__card__review-text {
  font: 700 24px/1.2 var(--primary-font);
  color: var(--primary-color);
  margin: 0 0 15px;
}

.cc-testimonials__card__dsc,
.cc-testimonials__card__review-text span {
  font: 400 17px/1.5 var(--primary-font);
  color: #68626f;
  margin: 0 0 15px;
}

.cc-testimonials__card__review {
  gap: 24px;
  justify-content: center;
}

.cc-testimonials__card__review-text,
.cc-testimonials__card__review-text span {
  margin: 0;
}

.cc-testimonials__card__rating-wrap {
  position: relative;
  width: max-content;
}

.cc-testimonials__card__rating {
  display: grid;
  grid-template-columns: repeat(5, 24px);
}

.actual-rating {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}

.default-rating svg path {
  fill: #00000011;
}

.cc-testimonials__slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.cc-testimonials__slider .slick-dots li {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #e8e7e7;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.cc-testimonials__slider .slick-dots li.slick-active {
  background-color: #68626f;
}

.cc-testimonials__slider .slick-dots li button {
  display: none !important;
}


/**********Page Footer**********/
.cc-footer{
    text-align: center;
}

.cc-footer > div:first-child{
    padding: 20px 0;
}
.cc-footer__label,
.cc-footer__mail{
    font-size: 16px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin: 15px 0 5px;
    color: #fff;
}

.cc-footer__label:first-child{
    margin-top: 0;
}

.cc-footer__mail{
    margin: 0;
}

.cc-footer__link{
    font-size: 15px;
    font-weight: 400;
    font-family: var(--primary-font);
    margin: 0 0 10px;
     color: #fff;
    transition: .3s;
}

.cc-footer__link:hover,
.cc-footer__mail:hover{
     color:var(--primary-color);
}

.cc-footer__socials{
    gap: 8px;
    justify-content: center;
}


.cc-footer__socials a{
    transition: .3s;
    display: inline-block;
}

.cc-footer__socials a:hover{
    transform: scale(1.08);
}

.cc-footer__socials a svg,
.cc-footer__socials a path{
    fill: #fff;
    transition: .3s ease;
}

.cc-footer__socials a:hover svg,
.cc-footer__socials a:hover path{
    fill: var(--primary-color);
}



.cc-footer__logo-wrap{
    gap: 24px;
    margin: 24px 0 0;
    align-items: center;
    justify-content: center;
}


.cc-footer__logo-wrap li{
    flex: 1;
    max-width: 80px;
}

.cc-footer__logo-wrap li img{
    width: 100%;
}

/*.cc-footer__copywrite{*/
/*    margin-top: 20px;*/
/*}*/

.cc-footer__copywrite-text{
    padding: 10px 0;
    border-top: 1px solid #d9d8db;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--primary-font);
    color: var(--primary-color);
    text-align: center;
}

.jquery-datepicker.theme-light .datepicker-box .box-row.row-week .box-cell.cell-selected,
.jquery-datepicker.theme-light .datepicker-box .box-row.row-week .box-cell.cell-selected:hover{
    background-color: var(--secondary-color);
}
.mt-20 {
    margin-top: 20px !important;
}







