
/*------------------- 2.6. Date & Time Picker -------------------*/
.xdsoft_datetimepicker {
    z-index: 1080;
  }
  
  .xdsoft_datetimepicker .xdsoft_datepicker {
    width: 300px;
  }
  
  .xdsoft_datetimepicker .xdsoft_current {
    color: var(--theme-color);
  }
  
  .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
  .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
  .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .xdsoft_datetimepicker .xdsoft_calendar td:hover,
  .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  
  /*=================================
      03. Utilities
  ==================================*/
  /*------------------- 3.1. Preloader -------------------*/
  .preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--body-bg);
  }
  
  .preloader .vs-btn {
    padding: 15px 20px;
    border-radius: 0;
    font-size: 14px;
  }
  
  .preloader-inner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 0;
  }
  
  .preloader-inner img {
    display: block;
    margin: 0 auto 10px auto;
  }
  
  .loader {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: var(--theme-color) var(--theme-color) transparent transparent;
    box-sizing: border-box;
    animation: rotationloader 1.5s linear infinite;
  }
  
  .loader::after,
  .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent var(--title-color) var(--title-color);
    width: 102px;
    height: 102px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBackloader 0.7s linear infinite;
    transform-origin: center center;
  }
  
  .loader::before {
    width: 92px;
    height: 92px;
    border-color: var(--theme-color) var(--theme-color) transparent transparent;
    animation: rotationloader 2s linear infinite;
  }
  
  @keyframes rotationloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotationBackloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(-360deg);
    }
  }
  
  /*------------------- 3.2. Buttons -------------------*/
  .vs-btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.7;
    text-transform: uppercase;
    display: inline-block;
    padding: 17px 28px;
    border: none;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  
  .vs-btn:after,
  .vs-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--title-color);
    z-index: -1;
    width: 53%;
    height: 0;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
  }
  
  .vs-btn:after {
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
  }
  
  .vs-btn:hover {
    color: var(--white-color);
  }
  
  .vs-btn:hover:before,
  .vs-btn:hover:after {
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .vs-btn.style2 {
    padding: 17px 36px;
  }
  
  .vs-btn.style4,
  .vs-btn.style3 {
    font-weight: 500;
    letter-spacing: 0.22em;
    margin: 7px 0;
    padding: 17px 36.5px;
    background-color: transparent;
  }
  
  .vs-btn.style4:before,
  .vs-btn.style4:after,
  .vs-btn.style3:before,
  .vs-btn.style3:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all ease 0.4s;
    background-color: transparent;
  }
  
  .vs-btn.style4:before,
  .vs-btn.style3:before {
    transform: scaleY(1.3) scaleX(0.81);
    border: 1px solid rgba(19, 43, 51, 0.25);
    z-index: -2;
  }
  
  .vs-btn.style4:after,
  .vs-btn.style3:after {
    transform: scale(1);
    z-index: -1;
    background-color: var(--primary-color);
    opacity: 1;
    visibility: visible;
  }
  
  .vs-btn.style4:hover,
  .vs-btn.style3:hover {
    color: var(--title-color);
  }
  
  .vs-btn.style4:hover::before,
  .vs-btn.style3:hover::before {
    border-color: var(--theme-color);
    transform: scaleY(1) scaleX(1);
  }
  
  .vs-btn.style4:hover::after,
  .vs-btn.style3:hover::after {
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.3) scaleX(0.58);
  }
  
  .vs-btn.style4 {
    color: var(--theme-color);
  }
  
  .vs-btn.style4:before {
    border-color: var(--white-color);
  }
  
  .vs-btn.style4:after {
    background-color: var(--white-color);
  }
  
  .vs-btn.style4:hover {
    color: var(--theme-color);
  }
  
  .vs-btn.style4:hover:before {
    border-color: var(--white-color);
  }
  
  .vs-btn.style4:hover:after {
    transform: scaleY(0.8) scaleX(0.95);
    opacity: 1;
    visibility: visible;
  }
  
  .vs-btn.style5:hover {
    color: var(--theme-color);
  }
  
  .vs-btn.style5:after,
  .vs-btn.style5:before {
    background-color: var(--white-color);
  }
  
  .vs-btn.style6 {
    background-color: var(--white-color);
    color: var(--theme-color);
    font-size: 16px;
    /* padding: 5px 20px 5px 5px; */
  }
  
  .vs-btn.style6 i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--theme-color);
    color: var(--white-color);
    margin-right: 10px;
    font-size: 18px;
    text-align: center;
  }
  
  .vs-btn.style6:hover {
    color: var(--white-color);
  }
  
  .vs-btn.style7 {
    padding: 23px 37px;
  }
  
  .vs-btn.style8 {
    background-color: #313c45;
    font-weight: 500;
  }
  
  .vs-btn.style8::after,
  .vs-btn.style8::before {
    background-color: var(--theme-color);
  }
  
  .vs-btn.style8:hover {
    color: var(--white-color);
  }
  
  .vs-btn.style10,
  .vs-btn.style9 {
    padding: 10px 10px 10px 25px;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 16px;
    background-color: var(--white-color);
    color: var(--theme-color);
    text-transform: capitalize;
  }
  
  .vs-btn.style10 i,
  .vs-btn.style9 i {
    width: var(--icon-size, 50px);
    height: var(--icon-size, 50px);
    line-height: var(--icon-size, 50px);
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    margin-left: 15px;
    font-size: 18px;
    vertical-align: middle;
  }
  
  .vs-btn.style10:hover,
  .vs-btn.style9:hover {
    color: var(--white-color);
  }
  
  .vs-btn.style10 {
    box-shadow: 0 5px 30px 0 rgba(154, 86, 58, 0.12);
  }
  
  .vs-btn.style14,
  .vs-btn.style11 {
    padding: 25px 35px;
    letter-spacing: 0;
    text-transform: capitalize;
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--title-color);
    font-size: 16px;
    font-weight: 500;
  }
  
  .vs-btn.style14 i,
  .vs-btn.style11 i {
    margin-right: 10px;
  }
  
  .vs-btn.style14:hover,
  .vs-btn.style11:hover {
    border-color: transparent;
    color: var(--white-color);
  }
  
  .vs-btn.style13,
  .vs-btn.style12 {
    padding: 22px 37px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    font-family: var(--title-font);
    font-size: 16px;
  }
  
  .vs-btn.style13 {
    background-color: transparent;
    color: var(--theme-color);
  }
  
  .vs-btn.style13 i {
    margin-right: 10px;
  }
  
  .vs-btn.style13:hover {
    color: var(--white-color);
  }
  
  .vs-btn.style14 {
    padding: 21px 37px;
  }
  
  .vs-btn-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px 0 30px 0;
  }
  
  .icon-btn {
    border: none;
    width: var(--icon-size, 40px);
    height: var(--icon-size, 40px);
    line-height: var(--icon-size, 40px);
    font-size: var(--icon-font-size, 14px);
    background-color: var(--white-color);
    color: var(--theme-color);
    display: inline-block;
    text-align: center;
    padding: 0;
    vertical-align: middle;
    transition: all ease 0.4s;
  }
  
  .icon-btn:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .icon-btn.style3,
  .icon-btn.style2 {
    --icon-size: 50px;
    background-color: var(--title-color);
    color: var(--white-color);
    font-size: 18px;
  }
  
  .icon-btn.style3:hover,
  .icon-btn.style2:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .icon-btn.style3 {
    border-radius: 50%;
  }
  
  .icon-btn.style4 {
    background-color: var(--theme-color);
    border-radius: 50%;
    color: var(--white-color);
    --icon-size: 50px;
    --icon-font-size: 18px;
  }
  
  .icon-btn.style4:hover {
    color: var(--white-color);
    background-color: var(--title-color);
  }
  
  .play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  
  .play-btn>i {
    display: inline-block;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: var(--icon-font-size, 1.5em);
    border-radius: 50%;
    z-index: 1;
    transition: all ease 0.4s;
  }
  
  .play-btn:after,
  .play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
  }
  
  .play-btn:after {
    animation-delay: 2s;
  }
  
  .play-btn:hover:after,
  .play-btn:hover::before,
  .play-btn:hover i {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  
  .play-btn.style2:after,
  .play-btn.style2::before,
  .play-btn.style2 i {
    border: 2px solid var(--white-color);
    background-color: transparent;
  }
  
  .play-btn.style3 {
    --icon-size: 80px;
  }
  
  .play-btn.style4:after,
  .play-btn.style4::before,
  .play-btn.style4 i {
    background-color: var(--white-color);
    color: var(--theme-color);
  }
  
  .play-btn.style4:hover:after,
  .play-btn.style4:hover::before,
  .play-btn.style4:hover i {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .watch-btn {
    display: inline-block;
    border: none;
    background-color: transparent;
    text-align: center;
  }
  
  .watch-btn .play-btn {
    --icon-size: 80px;
    --icon-font-size: 24px;
    margin-bottom: 20px;
  }
  
  .watch-btn .btn-text {
    text-transform: uppercase;
    font-family: var(--title-font);
    font-size: 30px;
    display: block;
    line-height: 1;
    color: var(--title-color);
    width: -moz-max-content;
    width: max-content;
  }
  
  .watch-btn:hover .btn-text {
    color: var(--theme-color);
  }
  
  .watch-btn.style2 .btn-text {
    color: var(--white-color);
  }
  
  .watch-btn.style2:hover .btn-text {
    color: var(--white-color);
    text-decoration: underline;
  }
  
  .link-btn {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: capitalize;
  }
  
  .link-btn i {
    margin-left: 7px;
    font-size: 0.9rem;
  }
  
  .link-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--theme-color);
    transition: all ease 0.4s;
  }
  
  .link-btn:hover {
    color: var(--theme-color);
  }
  
  .link-btn:hover::before {
    width: 100%;
  }
  
  .link-btn.style2 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.07em;
  }
  
  .user-id-link {
    font-size: 26px;
    color: #7d858c;
    font-family: var(--title-font);
    display: inline-block;
    line-height: 1;
  }
  
  .user-id-link:hover {
    color: var(--theme-color);
  }
  
  .scroll-btn {
    position: fixed;
    bottom: 300px;
    right: 30px;
    z-index: 94;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    border-radius: 50%;
    /* Small devices */
  }
  
  .scroll-btn i {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    z-index: 2;
    border-radius: inherit;
    position: relative;
    transition: all ease 0.8s;
  }
  
  .scroll-btn:before {
    content: "";
    position: absolute;
    left: var(--extra-shape, -6px);
    top: var(--extra-shape, -6px);
    right: var(--extra-shape, -6px);
    bottom: var(--extra-shape, -6px);
    background-color: var(--body-bg);
    border-radius: inherit;
    z-index: 1;
    transition: all ease 0.4s;
  }
  
  .scroll-btn:focus i,
  .scroll-btn:hover i {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  
  .scroll-btn.show {
    bottom: 120px;
    opacity: 1;
    visibility: visible;
  }
  
  @media (max-width: 767px) {
    .scroll-btn {
      --btn-size: 40px;
      --extra-shape: -4px;
      right: 15px;
      bottom: 50px;
    }
  
    .scroll-btn.show {
      bottom: 15px;
    }
  }
  
  .scrollToTop {
    position: fixed;
    right: 60px;
    bottom: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    z-index: 96;
  }
  
  .scrollToTop.show {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
  }
  
  .vs-icon {
    display: flex;
    width: var(--icon-size, 100px);
    height: var(--icon-size, 100px);
    line-height: var(--icon-size, 100px);
    background-color: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    margin: var(--border-gap, 5px);
    transition: all ease 0.4s;
  }
  
  .vs-icon:before {
    content: "";
    position: absolute;
    top: calc(var(--border-gap, 5px) / -1);
    right: calc(var(--border-gap, 5px) / -1);
    bottom: calc(var(--border-gap, 5px) / -1);
    left: calc(var(--border-gap, 5px) / -1);
    border: 1px dashed var(--theme-color);
    border-radius: inherit;
    transition: all ease 0.4s;
    animation: spin 30s linear infinite;
  }
  
  .vs-icon.style2 {
    background-color: #fde7da;
    box-shadow: 0 0 0 8px var(--white-color);
    margin: 8px;
  }
  
  .vs-icon.style2:before {
    display: none;
  }
  
  .vs-icon.style3 {
    background-color: #fde7da;
  }
  
  .circle-btn {
    width: var(--btn-size, 100px);
    height: var(--btn-size, 100px);
    position: relative;
    font-size: 1.66em;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--theme-color);
    transition: all ease 0.4s;
  }
  
  .circle-btn .btn-icon {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    width: 53%;
    height: 53%;
    line-height: 1;
    text-align: center;
    border: 1px solid rgba(154, 86, 58, 0.4);
    border-radius: inherit;
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.4s;
    z-index: 1;
  }
  
  .circle-btn .btn-icon:hover {
    border-color: transparent;
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .circle-btn .btn-text {
    width: 71%;
    height: 71%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .circle-btn svg {
    overflow: initial;
    animation: spin 27s infinite linear;
  }
  
  .circle-btn path {
    fill: none;
  }
  
  .circle-btn text {
    fill: currentColor;
  }
  
  .circle-btn.style2 {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .circle-btn.style2 .btn-icon {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white-color);
  }
  
  .circle-btn.style2 .btn-icon:hover {
    background-color: var(--white-color);
    border-color: transparent;
    color: var(--theme-color);
  }
  
  .circle-btn.style3 {
    --btn-size: 80px;
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .circle-btn.style3 .btn-icon {
    font-size: 16px;
    border-color: var(--white-color);
    color: var(--white-color);
    border-style: dashed;
  }
  
  .circle-btn.style3 .btn-icon:hover {
    background-color: var(--white-color);
    color: var(--theme-color);
    border-color: transparent;
  }
  
  .circle-btn:hover svg {
    animation-play-state: paused;
  }
  
  .bar-btn {
    border: none;
    display: inline-block;
    padding: 0;
    line-height: 1;
    font-size: 25px;
    vertical-align: middle;
    background-color: transparent;
    width: 40px;
    height: 26px;
    position: relative;
    overflow: hidden;
  }
  
  .bar-btn .bar:after,
  .bar-btn .bar:before {
    content: "";
    width: 100%;
    height: 2px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    transition: all ease 0.4s;
    background-color: var(--title-color);
  }
  
  .bar-btn .bar:after {
    left: -140%;
    right: auto;
    background-color: var(--theme-color);
  }
  
  .bar-btn .bar:nth-child(2):before,
  .bar-btn .bar:nth-child(2):after {
    top: 50%;
    margin-top: -1px;
  }
  
  .bar-btn .bar:nth-child(3):after,
  .bar-btn .bar:nth-child(3):before {
    top: auto;
    bottom: 0;
    width: 30px;
  }
  
  .bar-btn .bar:nth-child(3):after {
    left: auto;
    right: -120%;
  }
  
  .bar-btn:hover {
    color: var(--theme-color);
  }
  
  .bar-btn:hover .bar:after {
    left: 0;
  }
  
  .bar-btn:hover .bar:before {
    right: -110%;
  }
  
  .bar-btn:hover .bar:nth-child(3):before {
    right: 110%;
  }
  
  .bar-btn:hover .bar:nth-child(3)::after {
    left: auto;
    right: 0;
  }
  
  .bar-btn.style2 .bar:before {
    background-color: var(--white-color);
  }
  
  .bar-btn.style2:hover .bar:before {
    background-color: var(--theme-color);
  }
  
  /* Small devices */
  @media (max-width: 767px) {
    .play-btn {
      --icon-size: 60px;
    }
  
    .watch-btn .play-btn {
      --icon-size: 50px;
      --icon-font-size: 16px;
    }
  
    .watch-btn .btn-text {
      font-size: 18px;
    }
  
    .scrollToTop {
      right: 20px;
    }
  
    .scrollToTop.show {
      bottom: 20px;
    }
  
    .user-id-link {
      font-size: 18px;
    }
  }
  
  /*------------------- 3.3. Titles -------------------*/
  .sec-btns {
    margin-bottom: calc(var(--section-title-space));
    display: inline-flex;
    gap: 10px;
  }
  
  .title-area {
    margin-bottom: calc(var(--section-title-space) - 15px);
    position: relative;
  }
  
  .sec-subtitle2,
  .sec-subtitle {
    display: block;
    text-transform: uppercase;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-weight: bold;
    letter-spacing: 0.22em;
    line-height: 1;
    margin-top: -0.1em;
    margin-bottom: 18px;
  }
  
  .sec-subtitle4 {
    font-family: var(--title-font);
    font-weight: 400;
    color: var(--title-color);
    text-transform: uppercase;
    font-size: 24px;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(154, 86, 58, 0.22);
    margin-bottom: 20px;
    display: block;
    text-align: center;
  }
  
  .sec-subtitle5 {
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-bottom: 30px;
  }
  
  .sec-subtitle5 .inner-text {
    color: var(--white-color);
    background-color: var(--theme-color);
    padding: 5px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
  }
  
  .sec-subtitle2 {
    font-size: 18px;
  }
  
  .sec-title {
    font-size: 55px;
    margin-top: -0.25em;
  }
  
  .sec-title2 {
    font-size: 60px;
    margin-top: -0.22em;
  }
  
  .sec-title3 {
    margin-top: -0.22em;
  }
  
  .sec-title4 {
    font-size: 50px;
    margin-top: -0.13em;
    line-height: 1;
    margin-bottom: 17px;
  }
  
  .sec-title4 .inner-text {
    font-size: 24px;
    display: inline-block;
    color: var(--theme-color);
    max-width: 70px;
    text-align: left;
  }
  
  .sec-subtitle3 {
    font-size: 26px;
    text-transform: uppercase;
    line-height: 1;
    margin: -0.13em 0 40px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 21px;
  }
  
  .sec-shape {
    margin: 33px 0 60px 0;
    display: flex;
    justify-content: center;
  }
  
  .sec-subtext {
    background-color: #fde6d8;
    display: inline-block;
    padding: 6px 17px 6px 20px;
    margin-left: 5px;
  }
  
  .sec-line {
    border-top: 1px solid rgba(101, 117, 130, 0.35);
  }
  
  .sec-text {
    margin: 0 0 20px 0;
    padding-bottom: 7px;
  }
  
  .sec-text2 {
    font-size: 20px;
    font-family: var(--title-font);
  }
  
  .sec-shape2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -17%;
    opacity: 0.13;
  }
  
  .sec-shape2 img {
    animation: moving-x 8s linear infinite;
  }
  
  /* Extra large devices */
  @media (max-width: 1500px) {
  
    .sec-title4,
    .sec-title2 {
      font-size: 48px;
    }
  
    .sec-title {
      font-size: 40px;
    }
  
    .sec-subtitle2,
    .sec-subtitle {
      margin-bottom: 25px;
    }
  
    .sec-shape {
      margin: 18px 0 45px 0;
    }
  
    .sec-subtitle5 {
      font-size: 20px;
      margin-bottom: 25px;
    }
  }
  
  /* Large devices */
  @media (max-width: 1199px) {
    .sec-title2 {
      font-size: 42px;
    }
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .sec-title4 {
      font-size: 36px;
      margin-bottom: 13px;
    }
  
    .sec-title2,
    .sec-title {
      font-size: 36px;
    }
  
    .sec-subtitle2,
    .sec-subtitle {
      letter-spacing: 0.1em;
    }
  
    .sec-title4 .inner-text {
      font-size: 20px;
      max-width: 70px;
    }
  }
  
  /* Small devices */
  @media (max-width: 767px) {
    .sec-title4 {
      font-size: 32px;
      margin-bottom: 10px;
    }
  
    .sec-text {
      font-size: 14px;
    }
  
    .sec-title2,
    .sec-title {
      font-size: 28px;
    }
  
    .sec-subtitle2,
    .sec-subtitle {
      letter-spacing: 0.05em;
      font-size: 14px;
      margin-bottom: 18px;
    }
  
    .sec-subtitle3 {
      font-size: 22px;
      margin: -0.13em 0 30px 0;
      padding-bottom: 21px;
    }
  
    .sec-text2 {
      font-size: 16px;
    }
  }
  
  /* Small devices */
  @media (max-width: 767px) {
    .title-area {
      margin-bottom: 40px;
    }
  }
  
  /*------------------- 3.4. Common -------------------*/
  .parallax__container {
    clip: rect(0, auto, auto, 0);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
  }
  
  .parallax {
    position: fixed;
    top: 0;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    width: 100%;
    /* BG behaviour */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .link-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
  }
  
  .image-scale-hover {
    overflow: hidden;
  }
  
  .image-scale-hover img {
    transition: all ease 0.4s;
    transform: scale(1.008);
  }
  
  .image-scale-hover:hover img {
    transform: scale(1.2);
  }
  
  .image-box-hover .box-img {
    overflow: hidden;
    position: relative;
  }
  
  .image-box-hover .box-img:before {
    content: "";
    position: absolute;
    left: 150%;
    top: -50%;
    height: 200%;
    width: 100px;
    background-color: var(--white-color);
    z-index: 1;
    opacity: 0.3;
    transform: rotate(-40deg);
    transition: all ease 0.8s;
  }
  
  .image-box-hover .box-img img {
    transition: all ease 0.4s;
    transform: scale(1);
  }
  
  .image-box-hover:hover .box-img:before {
    animation: boxHover 1s;
  }
  
  .image-box-hover:hover .box-img img {
    transform: scale(1.2);
  }
  
  @keyframes boxHover {
    to {
      left: -120%;
    }
  }
  
  .mega-hover {
    position: relative;
    overflow: hidden;
  }
  
  .mega-hover img {
    transition: all 2s ease;
    transform: scale(1);
  }
  
  .mega-hover:after,
  .mega-hover:before {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 3;
    transform: rotate(5deg);
  }
  
  .mega-hover:before {
    top: -10%;
    right: 51%;
    bottom: -10%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .mega-hover:after {
    top: 50%;
    right: -10%;
    bottom: 50%;
    left: -10%;
    background: rgba(255, 255, 255, 0.6);
  }
  
  .mega-hover:hover:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear;
  }
  
  .mega-hover:hover:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear;
  }
  
  .mega-hover:hover img {
    transform: scale(1.05);
  }
  
  .new-label {
    font-size: 12px;
    background-color: var(--error-color);
    color: var(--white-color);
    line-height: 1;
    padding: 3px 5px 3px 5px;
    text-transform: capitalize;
    position: relative;
    top: -1px;
    font-weight: 500;
    margin-left: 5px;
    border-radius: 4px;
  }
  
  .inner-wrap1 {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    margin: 50px 0;
  }
  
  .shape-mockup-wrap {
    position: relative;
  }
  
  .shape-mockup-wrap .container-fluid,
  .shape-mockup-wrap .container {
    z-index: 1;
    position: relative;
  }
  
  .shape-mockup {
    position: absolute;
    z-index: 1;
  }
  
  .z-index-step1 {
    position: relative;
    z-index: 4 !important;
  }
  
  .z-index-common {
    position: relative;
    z-index: 3;
  }
  
  .z-index-n1 {
    z-index: -1;
  }
  
  .media-body {
    flex: 1;
  }
  
  .badge {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 0.35em 0.55em;
    border-radius: 50%;
  }
  
  .social-style4 a,
  .social-style1 a {
    display: inline-block;
    color: var(--white-color);
    line-height: 1;
    margin-right: 12px;
    font-size: 14px;
  }
  
  .social-style4 a:last-child,
  .social-style1 a:last-child {
    margin-right: 0;
  }
  
  .social-style4 a:hover,
  .social-style1 a:hover {
    color: var(--title-color);
  }
  
  .social-style4 .social-title,
  .social-style1 .social-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-color);
    display: inline-block;
    margin-right: 15px;
    letter-spacing: 0.03em;
  }
  
  .social-style1 {
    background-color: #2d353c;
    padding: 10px 25px;
  }
  
  .social-style1 a:hover {
    color: var(--theme-color);
  }
  
  .social-style5 a,
  .social-style3 a,
  .social-style2 a {
    display: inline-block;
    width: var(--icon-size, 55px);
    height: var(--icon-size, 55px);
    line-height: var(--icon-size, 55px);
    text-align: center;
    font-size: 18px;
    color: var(--body-color);
    border: 1px solid currentColor;
    margin-right: 8px;
    border-radius: 50%;
    transition: all ease 0.4s;
  }
  
  .social-style5 a:last-child,
  .social-style3 a:last-child,
  .social-style2 a:last-child {
    margin-right: 0;
  }
  
  .social-style5 a:hover,
  .social-style3 a:hover,
  .social-style2 a:hover {
    border-color: var(--theme-color);
  }
  
  .social-style5 a,
  .social-style3 a {
    --icon-size: 50px;
    font-size: 16px;
    border-color: var(--border-color);
  }
  
  .social-style5 a:hover,
  .social-style3 a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: transparent;
  }
  
  .social-style5 a {
    --icon-size: 40px;
    font-size: 14px;
  }
  
  .curb-shape1 {
    -webkit-clip-path: path("M 41 63.997 C 41 63.997 329.963 -55.313 388 32.998 C 409.037 70.308 447.963 105.687 549 150.998 C 610.037 178.308 670.963 244.686 539 308.998 C 487.037 333.308 447.963 369.687 428 416.997 C 408.037 464.308 320.963 561.687 158 607.998 C 98.037 623.309 21 643.687 1 507.997 C -7.963 417.308 84.963 195.686 39 68.998");
    clip-path: path("M 41 63.997 C 41 63.997 329.963 -55.313 388 32.998 C 409.037 70.308 447.963 105.687 549 150.998 C 610.037 178.308 670.963 244.686 539 308.998 C 487.037 333.308 447.963 369.687 428 416.997 C 408.037 464.308 320.963 561.687 158 607.998 C 98.037 623.309 21 643.687 1 507.997 C -7.963 417.308 84.963 195.686 39 68.998");
    width: 618px;
    height: 620px;
    background-color: rgba(252, 222, 204, 0.35);
    z-index: 1;
    position: relative;
  }
  
  .arrow-shape {
    line-height: 1;
    color: var(--theme-color);
  }
  
  .arrow-shape .arrow {
    display: inline-block;
    width: var(--arrow-size, 14px);
    height: var(--arrow-size, 14px);
    background-color: currentColor;
    -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%, 50% 55%);
    clip-path: polygon(0 100%, 50% 0, 100% 100%, 50% 55%);
    margin-right: 4px;
    opacity: 1;
    transition: all ease 0.4s;
  }
  
  .arrow-shape .arrow:last-child {
    margin-right: 0;
  }
  
  .big-letter {
    font-size: 300px;
    color: var(--title-color);
    font-family: var(--title-font);
    opacity: 0.06;
    line-height: 1;
    display: block;
  }
  
  .body-gradient-1 {
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    bottom: 0;
    background-image: linear-gradient(to bottom, transparent 0%, rgba(252, 242, 238, 0.7) 10%, transparent 100%);
    z-index: -1;
  }
  
  .svg-hidden {
    position: absolute;
    width: 0;
    height: 0;
  }
  
  .divider-style1 {
    position: relative;
    max-width: var(--main-container);
    margin-left: auto;
    margin-right: auto;
  }
  
  .divider-style1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    width: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, var(--theme-color) 50%, rgba(255, 255, 255, 0) 100%);
  }
  
  .divider-style1 .divider-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
    margin: 0 auto;
    display: block;
  }
  
  .divider-style2 {
    border-top: 1px solid #e9e9e9;
    max-width: var(--main-container);
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 1921px) {
    .d-hd-none {
      display: none !important;
    }
  }
  
  @media (min-width: 1500px) {
    .d-xxxl-block {
      display: block !important;
    }
  }
  
  /*------------------- 3.6. Font -------------------*/
  .font-icon {
    font-family: var(--icon-font);
  }
  
  .font-title {
    font-family: var(--title-font);
  }
  
  .font-body {
    font-family: var(--body-font);
  }
  
  .fw-light {
    font-weight: 300;
  }
  
  .fw-normal {
    font-weight: 400;
  }
  
  .fw-medium {
    font-weight: 500;
  }
  
  .fw-semibold {
    font-weight: 600;
  }
  
  .fw-bold {
    font-weight: 700;
  }
  
  .fw-extrabold {
    font-weight: 800;
  }
  
  .fs-md {
    font-size: 18px;
  }
  
  .fs-xs {
    font-size: 14px;
  }
  
  .fs-20 {
    font-size: 20px;
  }
  
  .fs-22 {
    font-size: 22px;
  }
  
  .fs-26 {
    font-size: 26px;
  }
  
  /* Small devices */
  @media (max-width: 767px) {
    .fs-26 {
      font-size: 22px;
    }
  
    .fs-22 {
      font-size: 20px;
    }
  
    .fs-20 {
      font-size: 18px;
    }
  
    .fs-md {
      font-size: 16px;
    }
  }
  
  /*------------------- 3.7. Background -------------------*/
  .bg-theme {
    background-color: var(--theme-color) !important;
  }
  
  .bg-vs-secondary {
    background-color: var(--secondary-color) !important;
  }
  
  .bg-smoke {
    background-color: var(--smoke-color) !important;
  }
  
  .bg-vs-light {
    background-color: var(--light-color) !important;
  }
  
  .bg-white {
    background-color: var(--white-color) !important;
  }
  
  .bg-black {
    background-color: var(--black-color) !important;
  }
  
  .bg-title {
    background-color: var(--title-color) !important;
  }
  
  .background-image,
  [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .bg-fluid {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
  }
  
  .bg-light-2 {
    background-color: #fde5d7;
  }
  
  .bg-light-3 {
    background-color: rgba(253, 235, 224, 0.36);
  }
  
  .bg-light-4 {
    background-color: rgba(253, 235, 224, 0.5);
  }
  
  .bg-light-5 {
    background-color: #fcf2ee;
  }
  
  .bg-auto {
    background-size: auto auto;
  }
  
  .bg-gradient-2 {
    background-image: linear-gradient(to bottom, transparent 0%, rgba(252, 242, 238, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
  }
  
  .bg-gradient-3 {
    background-image: linear-gradient(to bottom, #fcf2ee 0%, rgba(0, 0, 0, 0) 20%);
  }
  
  /*------------------- 3.8. Text Color -------------------*/
  .text-theme {
    color: var(--theme-color) !important;
  }
  
  .text-title {
    color: var(--title-color) !important;
  }
  
  .text-body {
    color: var(--body-color) !important;
  }
  
  .text-white {
    color: var(--white-color) !important;
  }
  
  .text-yellow {
    color: var(--yellow-color) !important;
  }
  
  .text-success {
    color: var(--success-color) !important;
  }
  
  .text-error {
    color: var(--error-color) !important;
  }
  
  .text-inherit {
    color: inherit;
  }
  
  .text-inherit:hover {
    color: var(--theme-color);
  }
  
  a.text-theme:hover,
  .text-reset:hover {
    text-decoration: underline;
  }
  
  .text-light-white {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /*------------------- 3.9. Overlay -------------------*/
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  
  .position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  [data-overlay] {
    position: relative;
  }
  
  [data-overlay] [class^=col-],
  [data-overlay] [class*=col-] {
    z-index: 1;
  }
  
  [data-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  [data-overlay=theme]:before {
    background-color: var(--theme-color);
  }
  
  [data-overlay=title]:before {
    background-color: var(--title-color);
  }
  
  [data-overlay=white]:before {
    background-color: var(--white-color);
  }
  
  [data-overlay=black]:before {
    background-color: var(--black-color);
  }
  
  [data-opacity="1"]:before {
    opacity: 0.1;
  }
  
  [data-opacity="2"]:before {
    opacity: 0.2;
  }
  
  [data-opacity="3"]:before {
    opacity: 0.3;
  }
  
  [data-opacity="4"]:before {
    opacity: 0.4;
  }
  
  [data-opacity="5"]:before {
    opacity: 0.5;
  }
  
  [data-opacity="6"]:before {
    opacity: 0.6;
  }
  
  [data-opacity="7"]:before {
    opacity: 0.7;
  }
  
  [data-opacity="8"]:before {
    opacity: 0.8;
  }
  
  [data-opacity="9"]:before {
    opacity: 0.9;
  }
  
  [data-opacity="10"]:before {
    opacity: 1;
  }
  
  /*------------------- 3.10. Animation -------------------*/
  .ani-moving-x,
  .ani-moving {
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .ani-moving {
    animation-name: moving;
  }
  
  .ani-moving-x {
    animation-name: moving-x;
  }
  
  .jump-reverse-img,
  .jump-img,
  .jump-reverse,
  .jump {
    animation: jumpping var(--duration, 6s) infinite linear;
  }
  
  .jump-reverse-img,
  .jump-img {
    --duration: 5s;
  }
  
  .jump-reverse-img,
  .jump-reverse {
    --jump-y: -20px;
  }
  
  .rotate-reverse-img,
  .rotate-img,
  .rotate-reverse,
  .rotate {
    animation: rotate var(--duration, 12s) infinite linear;
  }
  
  .rotate-reverse-img,
  .rotate-img {
    --duration: 40s;
  }
  
  .rotate-reverse-img,
  .rotate-reverse {
    --rotate-angle: -360deg;
  }
  
  .fadeInUp {
    animation-name: fadeInUp;
  }
  
  .scaleinright {
    animation-name: scaleinright;
    transform-origin: 0 50%;
  }
  
  .wow-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  
  .fadein {
    --animation-name: fadein-custom;
  }
  
  .slideinup {
    --animation-name: slideinup;
  }
  
  .slideindown {
    --animation-name: slideindown;
  }
  
  .slideinleft {
    --animation-name: slideinleft;
  }
  
  .slideinright {
    --animation-name: slideinright;
  }
  
  .animated,
  .hero-layout1 .vs-btn,
  .hero-layout1 .hero-title,
  .hero-layout1 .hero-subtitle {
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
  }
  
  .ripple-animation,
  .hero-ripple:after,
  .hero-ripple:before,
  .play-btn:after,
  .play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(1);
      opacity: 0;
    }
  
    30% {
      opacity: 0.4;
    }
  
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0);
    }
  
    100% {
      transform: rotate(var(--rotate-angle, 360deg));
    }
  }
  
  @keyframes slideinup {
    0% {
      opacity: 0;
      transform: translateY(70px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes slideindown {
    0% {
      opacity: 0;
      transform: translateY(-70px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes slideinleft {
    0% {
      opacity: 0;
      transform: translateX(-70px);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slideinright {
    0% {
      opacity: 0;
      transform: translateX(70px);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes scaleinright {
    0% {
      opacity: 0;
      transform: scaleX(0);
    }
  
    100% {
      transform: scaleX(1);
    }
  }
  
  @keyframes fadein-custom {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes jumpping {
  
    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }
  
    40% {
      transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
    }
  }
  
  @keyframes moving-x {
    0% {
      transform: translate(0px, 0px);
    }
  
    50% {
      transform: translate(-60px, 0);
    }
  
    100% {
      transform: translate(0px, 0px);
    }
  }
  
  @keyframes moving {
    0% {
      transform: translate(0px, 0px);
    }
  
    20% {
      transform: translate(0px, -60px);
    }
  
    50% {
      transform: translate(-60px, -60px);
    }
  
    70% {
      transform: translate(-60px, 0px);
    }
  
    100% {
      transform: translate(0px, 0px);
    }
  }
  
  /* Large devices */
  @media (max-width: 1199px) {
    .widget_title {
      font-size: 22px;
    }
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .sidebar-area {
      margin-top: 40px;
    }
  }
  
  .footer-widget {
    margin-bottom: 45px;
  }
  
  .footer-widget .widget_title {
    margin-bottom: 36px;
    padding-bottom: 15px;
    border: none;
    text-transform: uppercase;
  }
  
  .footer-widget .widget_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--theme-color);
  }
  
  .footer-widget .recent-post {
    align-items: center;
    border-bottom: 1px solid rgba(154, 86, 58, 0.38);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .footer-widget .recent-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  
  .footer-widget .recent-post .media-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .footer-widget .recent-post .media-img img {
    transform: scale(1);
    transition: all ease 0.4s;
  }
  
  .footer-widget .recent-post .media-body {
    border: none;
    padding: 0;
  }
  
  .footer-widget .recent-post .post-title {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 400;
    letter-spacing: 0;
    padding-top: 0.3em;
    font-family: var(--title-font);
  }
  
  .footer-widget .recent-post:hover .media-img img {
    transform: scale(1.15);
  }
  
  .footer-widget .recent-post-meta a {
    color: var(--body-color);
    font-weight: 500;
    font-size: 14px;
  }
  
  .footer-widget .recent-post-meta a i {
    position: relative;
    top: -1px;
  }
  
  .footer-widget .recent-post-meta a:hover {
    color: var(--theme-color);
  }
  
  .footer-widget.widget_nav_menu {
    margin-bottom: 55px;
  }
  
  .footer-widget.widget_nav_menu ul {
    margin-top: -0.13em;
  }
  
  .footer-widget.widget_nav_menu ul ul {
    margin-top: 0;
  }
  
  .footer-widget.widget_nav_menu a {
    width: -moz-max-content;
    width: max-content;
    display: block;
    border: none;
    max-width: 100%;
    padding: 0 0 0 13px;
    color: var(--body-color);
    margin-bottom: 23px;
    text-transform: uppercase;
  }
  
  .footer-widget.widget_nav_menu a:before {
    content: "\f054";
    top: 2px;
    font-size: 11px;
    font-weight: 700;
    color: var(--theme-color);
  }
  
  .footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--theme-color);
  }
  
  .footer-widget.widget_nav_menu li>span {
    width: auto;
    height: auto;
    position: relative;
    background-color: transparent;
    color: var(--body-color);
    line-height: 1;
  }
  
  .footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0;
  }
  
  .footer-info {
    color: #a3a2a2;
    font-weight: 500;
    margin-top: -0.3em;
    line-height: 32px;
  }
  
  .footer-number {
    font-weight: 500;
    font-size: 16px;
    color: #717070;
  }
  
  .footer-number a {
    color: #a3a2a2;
  }
  
  .footer-number a:hover {
    color: var(--theme-color);
  }
  
  .footer-time {
    font-size: 18px;
    font-weight: 500;
    color: #a3a2a2;
    margin: 0;
  }
  
  .footer-time .time {
    color: var(--title-color);
  }
  
  .footer-media {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
  }
  
  .footer-media .media-icon {
    width: var(--icon-size, 40px);
    height: var(--icon-size, 40px);
    line-height: var(--icon-size, 40px);
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 14px;
  }
  
  .footer-media .media-title {
    font-size: 16px;
    line-height: 1;
  }
  
  .footer-media .media-info {
    margin: 0;
  }
  
  /* Medium Large devices */
  @media (max-width: 1399px) {
    .footer-widget {
      margin-bottom: 60px;
    }
  
    .footer-widget .widget_title {
      font-size: 20px;
      margin-bottom: 30px;
    }
  
    .footer-widget .fs-22 {
      font-size: 18px;
    }
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .footer-widget .widget_title {
      font-size: 22px;
    }
  }
  
  /*------------------- 4.2. Header  -------------------*/
  .vs-header {
    position: relative;
    z-index: 41;
  }
  
  .header-logo {
    max-width: 155px;
    padding: 10px 0;
  }
  
  .will-sticky .sticky-active {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    transition: all ease 0.8s;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  }
  
  .will-sticky .sticky-active.active {
    top: 0;
  }
  
  .main-menu a {
    /* display: block; */
    position: relative;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    color: var(--title-color);
    text-transform: uppercase;
    /* Extra large devices */
  }
  
  @media (max-width: 1500px) {
    .main-menu a {
      font-size: 16px;
    }
  }
  
  .main-menu a:hover {
    color: var(--theme-color);
  }
  
  .main-menu>ul>li {
    margin: 0 18px;
  }
  
  .main-menu ul {
    margin: 0;
    padding: 0;
  }
  
  .main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
  }
  
  .main-menu ul li.menu-item-has-children>a:after {
    content: "\f078";
    position: relative;
    font-family: var(--icon-font);
    margin-left: 5px;
    top: -0.8px;
    font-size: 0.8rem;
  }
  
  .main-menu ul li:last-child {
    margin-right: 0;
  }
  
  .main-menu ul li:first-child {
    margin-left: 0;
  }
  
  .main-menu ul li:hover .active-menu,
  .main-menu ul li:hover>ul.sub-menu.active-menu,
  .main-menu ul li:hover ul.mega-menu.active-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 9;
  }
  
  .main-menu ul.sub-menu,
  .main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--body-bg);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    min-width: 190px;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    margin-top: 50px;
    opacity: 0;
    z-index: -1;
    border-bottom: 3px solid var(--theme-color);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  }
  
  .main-menu ul.sub-menu a,
  .main-menu ul.mega-menu a {
    font-size: 16px;
    line-height: 30px;
  }
  
  .main-menu ul.sub-menu {
    padding: 18px 20px;
    left: -27px;
  }
  
  .main-menu ul.sub-menu:before {
    content: "";
    position: absolute;
    left: 34px;
    top: 30px;
    width: 1px;
    background-color: var(--border-color);
    height: calc(100% - 65px);
  }
  
  .main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 3px 9px;
  }
  
  .main-menu ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f105";
    float: right;
    top: 3px;
  }
  
  .main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 21px;
  }
  
  .main-menu ul.sub-menu li a:before {
    content: "\f111";
    position: absolute;
    top: 2.8em;
    left: 0;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 0.2em;
    line-height: 11.5px;
    color: var(--theme-color);
    font-weight: 700;
    background-color: var(--body-bg);
    box-shadow: inset 0px 2px 4px 0px rgba(154, 86, 58, 0.4);
  }
  
  .main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 20px;
  }
  
  .main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
  }
  
  .main-menu .mega-menu-wrap {
    position: static;
  }
  
  .main-menu ul.mega-menu {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: var(--main-container);
    padding: 20px 15px 23px 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main-menu ul.mega-menu li {
    display: block;
    width: 100%;
    padding: 0 15px;
  }
  
  .main-menu ul.mega-menu li li {
    padding: 4px 0;
  }
  
  .main-menu ul.mega-menu li a {
    display: inline-block;
  }
  
  .main-menu ul.mega-menu>li>a {
    display: block;
    padding: 0;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--title-color);
    border-color: var(--theme-color);
  }
  
  .main-menu ul.mega-menu>li>a::after,
  .main-menu ul.mega-menu>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: var(--theme-color);
  }
  
  .main-menu ul.mega-menu>li>a::after {
    width: calc(100% - 20px);
    left: 20px;
  }
  
  .main-menu ul.mega-menu>li>a:hover {
    padding-left: 0;
  }
  
  
  
  .menu-style1>ul>li>a {
    padding: 37px 0;
  }
  
  .header-text {
    font-size: 12px;
    font-weight: 500;
    color: #e5e4e4;
    margin: 0;
    padding: 12px 0;
  }
  
  .header-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-end;
  }
  
  .header-icons button:not([class*=vs-]),
  .header-icons a:not([class*=vs-]) {
    border: none;
    padding: 0;
    line-height: 1;
    font-size: 24px;
    color: var(--title-color);
    background-color: transparent;
  }
  
  .header-icons button:not([class*=vs-]):hover,
  .header-icons a:not([class*=vs-]):hover {
    color: var(--theme-color);
  }
  
  .header-btns {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .header-links li {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color);
    font-family: var(--title-font);
    padding: 0 30px 0 0;
    margin: 0 26px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 23px;
    line-height: 1;
  }
  
  .header-links li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  
  .header-links i {
    color: var(--theme-color);
    margin: 0 10px 0 0;
  }
  
  .header-links a {
    color: inherit;
  }
  
  .header-links a:hover {
    color: var(--theme-color);
  }
  
  .header-links.style-white li {
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .header-links.style-white li a:hover {
    color: var(--white-color);
    text-decoration: underline;
  }
  
  .header-links.style-white li i {
    color: var(--white-color);
  }
  
  .header-links.style2 li {
    border-right-color: var(--title-color);
  }
  
  .header-call {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-left: 20px;
    line-height: 1;
    position: relative;
  }
  
  .header-call::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 30px;
    margin-top: -15px;
    background-color: var(--theme-color);
    opacity: 0.3;
  }
  
  .header-call .icon-btn {
    margin-right: 15px;
  }
  
  .header-call .media-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    font-family: var(--title-font);
  }
  
  .header-call .media-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
  }
  
  .header-call .media-number:hover {
    color: var(--theme-color);
  }
  
  .header-layout6 .header-top,
  .header-layout3 .header-top,
  .header-layout2 .header-top,
  .header-layout1 .header-top {
    background-color: #313c45;
  }
  
  @media (min-width: 1500px) {
  
    .header-layout6,
    .header-layout5,
    .header-layout2,
    .header-layout1 {
      --main-container: 1700px;
    }
  }
  
  .header-layout2 .menu-area {
    position: relative;
  }
  
  @media (min-width: 1399px) {
    .header-layout2 .menu-area .menu-inner {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
    }
  }
  
  .header-layout2 .will-sticky .menu-inner {
    background-color: var(--white-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  }
  
  .header-layout4 .header-top {
    background-color: var(--theme-color);
    padding: 10px 0;
  }
  
  @media (min-width: 1199px) {
    .header-layout5 {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
    }
  }
  
  .header-layout6 .header-top {
    padding: 10px 0;
  }
  
  .header-layout8,
  .header-layout7 {
    --main-container: 1660px;
  }
  
  .header-layout9 .header-top {
    border-bottom: 1px solid rgba(154, 86, 58, 0.2);
    padding: 10px 0;
  }
  
  @media (min-width: 1500px) {
    .header-layout9 {
      --main-container: 1400px;
    }
  }
  
  @media (max-width: 1800px) {
    .header-layout8 .main-menu>ul>li {
      margin: 0 8px;
    }
  
    .header-layout8 .main-menu>ul>li>a {
      font-size: 14px;
    }
  }
  
  /* Extra large devices */
  @media (max-width: 1500px) {
    .header-layout9 .header-call {
      display: none;
    }
  }
  
  /* Medium Large devices */
  @media (max-width: 1399px) {
    .main-menu>ul>li {
      margin: 0 14px;
    }
  
    .main-menu>ul>li>a {
      font-size: 14px;
    }
  
    .main-menu .menu-pages a {
      line-height: 1;
      padding: 0 0 7px 0;
      font-size: 13px;
    }
  }
  
  /* Large devices */
  @media (max-width: 1199px) {
    .header-logo {
      max-width: 200px;
    }
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .header-logo {
      max-width: 157px;
    }
  }
  
  /* Small devices */
  @media (max-width: 767px) {
    .header-icons {
      gap: 10px;
    }
  
    .header-icons button:not([class*=vs-]),
    .header-icons a:not([class*=vs-]) {
      font-size: 18px;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 575px) {
    .header-links li {
      font-size: 12px;
      padding: 0;
      margin: 0 16px 0 0;
      border-right: none;
      line-height: 1;
    }
  }
  
  /*------------------- 4.3. Footer  -------------------*/
  .widget-area {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  
  .footer-logo {
    margin-bottom: 28px;
  }
  
  .copyright-text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
  }
  
  .copyright-text a {
    color: var(--theme-color);
    text-transform: uppercase;
  }
  
  .copyright-text a:hover {
    color: var(--title-color);
  }
  
  .footer-layout4 {
    background-color: #232b31;
    --body-color: #bebebe;
    --title-color: #ffffff;
  }
  
  /*------------------- 4.4. Breadcumb  -------------------*/
  .breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 14px 0 -0.55em 0;
    list-style-type: none;
    position: relative;
  }
  
  .breadcumb-menu li {
    display: inline-block;
    list-style: none;
    position: relative;
  }
  
  .breadcumb-menu li:after {
    content: "\f101";
    font-family: var(--icon-font);
    font-weight: 400;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-left: 10px;
    margin-right: 5px;
  }
  
  .breadcumb-menu li:last-child {
    color: var(--title-color);
  }
  
  .breadcumb-menu li:last-child:after {
    display: none;
  }
  
  .breadcumb-menu li,
  .breadcumb-menu a {
    word-break: break-word;
    white-space: normal;
    font-weight: 700;
    font-size: 14px;
    color: var(--body-color);
    font-family: var(--body-font);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .breadcumb-menu a:hover {
    color: var(--theme-color);
  }
  
  .breadcumb-title {
    color: var(--title-color);
    margin: -0.22em 0 -0.22em 0;
    font-size: 60px;
    text-transform: uppercase;
  }
  
  .breadcumb-title .inner-text {
    color: var(--theme-color);
  }
  
  .breadcumb-content {
    padding: 200px 0 200px 0;
  }
  
  .breadcumb-wrapper {
    padding-bottom: 0.1px;
    overflow: hidden;
    position: relative;
    background-color: var(--smoke-color);
    background-size: 100% auto;
    background-position: top center;
    /* Hight Resoulation devices */
  }
  
  @media (min-width: 1922px) {
    .breadcumb-wrapper {
      background-size: cover;
      background-position: center center;
    }
  }
  
  @media (max-width: 1850px) {
    .breadcumb-wrapper {
      background-size: cover;
      background-position: center center;
    }
  }
  
  /* Medium Large devices */
  @media (max-width: 1399px) {
    .breadcumb-content {
      padding: 130px 0 130px 0;
    }
  }
  
  /* Large devices */
  @media (max-width: 1199px) {
    .breadcumb-title {
      font-size: 46px;
    }
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .breadcumb-title {
      font-size: 36px;
    }
  }
  
  /* Small devices */
  @media (max-width: 767px) {
  
    .breadcumb-menu li,
    .breadcumb-menu a {
      font-size: 12px;
      letter-spacing: 0;
    }
  
    .breadcumb-content {
      padding: 80px 0 80px 0;
    }
  
    .breadcumb-wrapper {
      background-position: left center;
    }
  }
  