<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-color:#6ab43e;
  --theme-color-2:#6ab43e;
  --header:#11221C;
  --text:#555;
  --border:#E6EFFF;
  --ratting:#F8BC26;
  --bg:#FFF3ED;
  --body-font: "Rubik", sans-serif;
  --title-font: "Nunito Sans", sans-serif;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--theme-color-2);
}

body {
    position: relative;
    background: white;
    font-size: 15px;
    font-family: var(--body-font);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


.clrblack {
    color: black !important;
}

.cleblue {
    color: var(--theme-color-2);
}
/*! #######################################################################

    MeanMenu 2.0.7
    --------

    To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */

a.meanmenu-reveal {
    display: none
}

.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: relative;
    background: #070337;
    padding: 4px 0;
    min-height: 42px;
    z-index: 999999
}

.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 13px 13px 11px 13px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 3px;
    margin-top: 3px
}

.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: #070337;
    margin-top: 44px
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    max-height: 400px;
    overflow: auto;
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 10px 5%;
    margin: 0;
    text-align: left;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize
}
.mean-container .mean-nav ul li li a{
    border-top: 1px solid #e0e3ed;
}
.mean-container .mean-nav ul li li a {
    width: 80%;
    padding: 10px 10%;
    text-shadow: none !important;
    visibility: visible
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: 0;
    margin-bottom: 0
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 10px 15%
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 10px 20%
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 10px 25%
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 26px;
    height: 32px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: transparent;
    border: none !important;
    font-size: 14px
}

.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.mean-remove {
    display: none !important
}
.loganame {
    font-size: 40px;
    color: #fff;
}


.btn-theme {
  background: var(--theme-color);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 35px;
  padding-right: 5px;
  border-radius: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.btn-theme i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme-color);
  margin-left: 35px;
  transition: all 0.4s ease-in-out;
}
.btn-theme::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.btn-theme::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.btn-theme:hover::before, .btn-theme:hover::after {
  width: 100%;
}
.btn-theme:hover i {
  background-color: var(--theme-color);
  color: var(--white);
}

.margintop1 {
    margin-top: -13px;
    color: #fff;
    font-size: 25px;
}

.fw-medium {
    font-weight: 500 !important;
}

.text-primary {
    color: var(--theme-color-2) !important;
}

.text-theme {
    color: var(--theme-color-2) !important;
}

.bg-primary {
    background-color: var(--theme-color-2) !important;
}

.bg-theme {
    background-color: var(--theme-color-2) !important;
}

.clrw {
    color: white;
}

.theme-color {
    color: var(--theme-color-2);
}

.text-block {
    position: absolute;
    border: 2px solid white;
    width: 90%;
    height: 90%;
    bottom: 20px;
    right: 20px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: rgb(220, 219, 216);
    text-align: left;
}

/*slider caption*/

.slider-caption {
    position: absolute;
    top: 24%;
    color: #fff;
    width: 85%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

.slider-caption .h2 {
    font-size: 85px;
    font-weight: 600;
    line-height: 1.1;
    font-family: "Playfair Display", serif;
}

.slider-caption .h2 span {
    color: #fff;
    -webkit-text-stroke: 2px var(--theme-color-2);
    font-family: "Playfair Display", serif;
}

@media only screen and (max-width: 600px) {
    .slider-caption {
        width: 100%;
        padding: 10px;
        top: 13%;
    }
    .slider-caption .h2 {
        font-size: 32px;
    }
    .vtin-txt {
        margin: 0 0 50px 0px !important;
        padding: 25px 15px 30px 20px !important;
    }
    .slider-caption .h2 span {
        -webkit-text-stroke: 1px var(--theme-color-2);
    }
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.03em;
}

p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    letter-spacing: 0.03em;
}

a {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    letter-spacing: 0.03em;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

a:focus {
    outline: none;
}

label {
    letter-spacing: 0.03em;
}

button:focus,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section_space {
    padding-top: calc(30px + (100 - 30) * ((100vw - 320px) / (1920 - 320)));
}

.section-b-space {
    padding-bottom: 50px;
}

.medium-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.small-section {
    padding-top: 35px;
    padding-bottom: 35px;
}

.xs-section {
    padding: 30px 0;
}

.parallax-img {
    background-attachment: fixed;
}

.radius-cls {
    border-radius: 20px;
}

.radius-cls .social-box {
    border-radius: 6px;
}

/*.bg-inner {
    background-color: #f9f9f9;
}*/

.lh-cls {
    line-height: 1 !important;
}

.w-80 {
    width: 80%;
}

.mb-down {
    margin-bottom: -30px;
}

.form-control {
    height: auto;
}

.section-row {
    margin-bottom: 30px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: end;
}

.section-title-content p {
    margin: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    position: relative;
    font-weight: 600;
    display: inline-block;
    color: var(--theme-color-2);
    font-size: 16px;
    text-transform: uppercase;
}

.section-title h1 {
    font-size: 40px;
    line-height: 46px;
    text-transform: capitalize;
    margin-top: 15px;
}

.section-title h2 {
    font-size: 50px;
    line-height: 46px;
    text-transform: capitalize;
    margin-top: 15px;
}

.section-title h1 span,
.section-title h2 span {
    color: var(--theme-color);
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.light-bg-section {
    background-color: #cfe0ff69;
}


.dark-section {
    background-color: var(--theme-color);
}

.dark-section .section-title p,
.dark-section .section-title h1,
.dark-section .section-title h2 {
    color: var(--white);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

.section-title {
    margin-bottom: 40px;
}

.form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media .media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.radio_animated {
    cursor: pointer;
    margin-left: 0;
    position: relative;
    margin-right: 12px;
}

.radio_animated:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    content: "";
    position: absolute;
    top: 0;
    left: 0.125rem;
    z-index: 1;
    width: 0.75rem;
    height: 0.75rem;
    background: var(--theme-color-2);
    border-radius: 50%;
}

.radio_animated:after {
    content: "";
    position: absolute;
    top: -0.25rem;
    left: -0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background: white;
    border: 2px solid #e8ebf2;
    border-radius: 50%;
}


.index_form_title {
    position: relative;
    border-radius: 15px 15px 0 0;
    width: max-content;
    background-color: #fff;
    color: #222;
    font-weight: 600;
    font-size: 31px;
    margin-bottom: 0;
    letter-spacing: 1;
    padding: 10px 50px;
}


.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px;
  box-shadow: 0 1px 20px 1px var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  z-index: 10000;
}/* Keep this part */
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px;
  box-shadow: 0 1px 20px 1px var(--color-primary);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  z-index: 10000;
}

/* WhatsApp Button */
.buy-now-btn.btn-2 {
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
  padding: 10px;
  font-size: 50px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  box-shadow: 0 1px 8px 1px #f2f2f2;
}

/* Call Button */
.buy-now-btn.btn-3 {
  top: auto;
  bottom: 20px;
  right: auto;
  left: 20px;
  padding: 10px;
  font-size: 35px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  box-shadow: 0 1px 8px 1px #f2f2f2;
}

.buy-now-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}

/* Updated Animation */
@keyframes rubberBand2 {
  0%   { transform: translateY(-50%) scale(1); }
  30%  { transform: translateY(-50%) scale3d(1.25, 0.75, 1); }
  40%  { transform: translateY(-50%) scale3d(0.75, 1.25, 1); }
  50%  { transform: translateY(-50%) scale3d(1.15, 0.85, 1); }
  65%  { transform: translateY(-50%) scale3d(0.95, 1.05, 1); }
  75%  { transform: translateY(-50%) scale3d(1.05, 0.95, 1); }
  100% { transform: translateY(-50%) scale(1); }
}
@keyframes rubberBand3 {
  0%   { transform: scale(1); }
  30%  { transform: scale3d(1.25, 0.75, 1); }
  40%  { transform: scale3d(0.75, 1.25, 1); }
  50%  { transform: scale3d(1.15, 0.85, 1); }
  65%  { transform: scale3d(0.95, 1.05, 1); }
  75%  { transform: scale3d(1.05, 0.95, 1); }
  100% { transform: scale(1); }
}

/* Animation trigger */
.buy-now-btn.animate {
  animation: rubberBand2 1s ease-in-out;
}

.buy-now-btn.animate.btn-3,
.buy-now-btn.animate.btn-2 {
  animation: rubberBand3 1s ease-in-out;
}
@media(max-width:768px){

  .buy-now-btn{
    padding: 6px 8px;
    font-size: 11px;
    right: 7px;
  }
  .buy-now-btn.btn-3{
    width: 55px;
    height: 55px;
    font-size: 27px;
  }
  .buy-now-btn.btn-2{
    width: 55px;
    height: 55px;
    font-size: 40px;
  }
}

.form-title {
    font-size: 20px;
    line-height: 26px;
    color: #fff;
    background-color: var(--theme-color);
    font-family: var(--title-font);
    font-weight: 600;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 9px 36px;
    margin-top: -23px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    margin-bottom: 5px;
    width: max-content;
    border-radius: 10px;
}
.form_section{
    position: relative;
    z-index: 3;
    display: block;
    border-radius: 10px;
    border: 5px solid #fff;
}
.form_section button{
    padding: 10px 30px;
}
.form_inner{
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 0 5px 5px 5px;
    background-color: #303442;
    border-radius: 10px 10px 6px  6px;
}
.form_section .form-group label {
    text-transform: capitalize;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    display: none;
}

.form_section .form-heading {
    background-color: var(--theme-color-2);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.single-section .common-booking-form .form_section{
    border-color: var(--theme-color-2);
}
.form_section .form-control {
    background: #fff;
    font-size: 16px;
    line-height: 25px;
    border: 1px solid transparent;
    color: #888;
    padding: 13px 12px 12px 15px;
    box-shadow: none;
    outline: 0;
    transition: all .3s;
    box-shadow: none;
    border-radius: 5px;
    height: 55px;
}
.form_section .form-control::placeholder{
    color: #767676;
}

.form_section .form-control:focus {
    border-color: var(--theme-color);
    background-color: rgba(51, 51, 51, 0.6);
    box-shadow: none;
}

.form_section .form-group i,
.form_section .input-group i {
    position: absolute;
    right: 17px;
    top: calc(50% - -1px);
    transform: translateY(-50%);
    border-radius: 0;
    background: transparent;
    display: grid;
    color: var(--theme-color);
    place-content: center;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group {
    position: relative;
    margin-bottom: 10px;
}

.form-btn {
    width: 48%;
    margin: 0px 26%;
    border-radius: 30px;
}

.input-group&gt;.form-control:focus,
.input-group&gt;.form-select:focus {
    z-index: 0;
    box-shadow: none;
}

.form_section .input-group-text {
    padding: 7px;
    background-color: var(--theme-color-2);
    border: none;
}

.form_section .input-group-text i {
    font-size: 20px;
    color: #fff;
}
.radio_animated:checked:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.checkbox_animated {
    cursor: pointer;
    margin-left: -1.25rem;
    position: relative;
    margin-right: 12px;
    border: none;
}

.checkbox_animated:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 0.25rem;
    top: 0.225rem;
    z-index: 1;
    width: 0.75rem;
    height: 0.375rem;
    border: 2px solid var(--theme-color-2);
    border-top-style: none;
    border-right-style: none;
}

.checkbox_animated:after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    background: white;
    border: 2px solid #e8ebf2;
    cursor: pointer;
}

.checkbox_animated:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}

.form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-prepend,
.input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mrg-cls {
    margin-bottom: -3px;
}
/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 */.slicknav_btn,.slicknav_nav .slicknav_item{cursor:pointer}.slicknav_menu,.slicknav_menu *{box-sizing:border-box}.slicknav_btn{position:relative;display:block;vertical-align:middle;float:right;padding:.438em .625em;line-height:1.125em}.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar{margin-top:.188em}.slicknav_menu .slicknav_menutxt{display:block;line-height:1.188em;float:left;color:#fff;font-weight:700;text-shadow:0 1px 3px #000}.slicknav_menu .slicknav_icon{float:left;width:1.125em;height:.875em;margin:.188em 0 0 .438em}.slicknav_menu .slicknav_icon:before{background:0 0;width:1.125em;height:.875em;display:block;content:"";position:absolute}.slicknav_menu .slicknav_no-text{margin:0}.slicknav_menu .slicknav_icon-bar{display:block;width:1.125em;height:.125em;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(0,0,0,.25)}.slicknav_menu:after,.slicknav_menu:before{content:" ";display:table}.slicknav_menu:after{clear:both}.slicknav_nav li,.slicknav_nav ul{display:block}.slicknav_nav .slicknav_arrow{font-size:.8em;margin:0 0 0 .4em}.slicknav_nav .slicknav_item a{display:inline}.slicknav_nav .slicknav_row,.slicknav_nav a{display:block}.slicknav_nav .slicknav_parent-link a{display:inline}.slicknav_menu{*zoom:1;font-size:16px;background:#4c4c4c;padding:5px}.slicknav_nav,.slicknav_nav ul{list-style:none;overflow:hidden;padding:0}.slicknav_menu .slicknav_icon-bar{background-color:#fff}.slicknav_btn{margin:5px 5px 6px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,.75);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#222}.slicknav_nav{clear:both;color:#fff;margin:0;font-size:.875em}.slicknav_nav ul{margin:0 0 0 20px}.slicknav_nav .slicknav_row,.slicknav_nav a{padding:5px 10px;margin:2px 5px}.slicknav_nav .slicknav_row:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#fff}.slicknav_nav a{text-decoration:none;color:#fff}.slicknav_nav a:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#222}.slicknav_nav .slicknav_txtnode{margin-left:15px}.slicknav_nav .slicknav_item a,.slicknav_nav .slicknav_parent-link a{padding:0;margin:0}.slicknav_brand{float:left;color:#fff;font-size:18px;line-height:30px;padding:7px 12px;height:44px}
.rounded5 {
    border-radius: 5px !important;
}

.rounded10 {
    border-radius: 10px !important;
}

.rounded15 {
    border-radius: 15px !important;
}

.rounded20 {
    border-radius: 20px !important;
}

.rounded25 {
    border-radius: 25px !important;
}

.breadcrumb {
    padding: 0.75rem 1rem;
}

.zindex-1 {
    z-index: 1;
}

.row div[class*="col-"],
.row .col {
    position: relative;
}

/*Lazy load */

.blur-up {}

.blur-up.lazyloaded {}

/*=====================
1.1. Button start
==========================*/

.btn-group-showcase {
    margin-bottom: -20px;
}

.btn-group-showcase h3 {
    margin-bottom: 15px;
}

.btn-group-showcase .btn {
    margin-bottom: 20px;
}

.btn-group-showcase .btn+.btn {
    margin-left: 15px;
}

.btn-cards .card {
    margin-bottom: 30px;
}

.btn {
    line-height: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn.btn-lower {
    text-transform: capitalize;
}

.btn.btn-sm {
    padding: 8px 24px !important;
    text-transform: capitalize;
}

.btn.white-btn {
    background-color: white !important;
    color: #ba8a04 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn.black-btn {
    background-color: black !important;
    color: white !important;
    -webkit-box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.12) !important;
    box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.12) !important;
}

.btn.black-btn:hover {
    -webkit-box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.22);
    box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.22);
    border: 1px solid var(--theme-color-2);
    background-color: white !important;
    color: black !important;
}

.btn.btn-solid {
    background-color: var(--theme-color-2);
    color: #fff;
    padding: 9px 20px;
    -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
    box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
    border-radius: 5px;
}

.btn.btn-solid:hover {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background-color: white;
    color: var(--theme-color-2);
    border: 1px solid var(--theme-color-2);
    -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
    box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
}

.btn.btn-solid.btn-outline {
    background-color: transparent;
    border: 1px solid var(--theme-color-2);
    color: var(--theme-color-2);
}

.btn.btn-solid.btn-outline:hover {
    color: white;
    background-color: var(--theme-color-2);
}

.btn.btn-solid.color2 {
    background-color: #ef3f3e;
    -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
    box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
}

.btn.btn-solid.color2:hover {
    background-color: white;
    color: #ef3f3e;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #ef3f3e;
    -webkit-box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
    box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
}

.btn.btn-curve {
    border-radius: 5px;
    background-color: var(--theme-color-2);
    color: white;
    padding: 9px 20px;
    -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
    box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
}

.btn.btn-curve.btn-lower {
    text-transform: capitalize;
}

.btn.btn-rounded {
    border-radius: 100px;
    color: white;
    padding: 10px 20px;
}

.btn.btn-rounded.color1 {
    background-color: var(--theme-color-2);
    -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
    box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
}

.btn.btn-rounded.color1:hover {
    background-color: white;
    color: var(--theme-color-2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid var(--theme-color-2);
    -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
    box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
}

.btn.btn-rounded.color2 {
    background-color: #ef3f3e;
    -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
    box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
}

.btn.btn-rounded.color2:hover {
    background-color: white;
    color: #ef3f3e;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #ef3f3e;
    -webkit-box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
    box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-outline {
    background-color: white;
    border: 1px solid var(--theme-color-2);
    color: var(--theme-color-2);
}

.btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*=====================
1.2. Title css start
==========================*/

.title-area {
    margin-bottom: 40px;
    line-height: 100%;
}

.title-area .sec-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-color-2);
    line-height: 100%;
    display: inline-block;
    position: relative;
    margin: 0 50px 10px;
}

.title-area .sec-subtitle::before {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background-color: var(--theme-color-2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
}

.title-area .sec-subtitle::after {
    content: "";
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background-color: var(--theme-color-2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

.title-area .sec-subtitle.right-shape {
    margin-left: 0;
}

.title-area .sec-subtitle.right-shape::before {
    display: none;
}

.title-area .sec-subtitle.left-shape {
    margin-right: 0;
}

.title-area .sec-subtitle.left-shape::after {
    display: none;
}

/* Small devices */

@media (max-width: 767px) {
    .title-arraw {
        display: none;
    }
}

/*=====================
1.3. Image-ratio start
==========================*/

.ratio_40 .bg-size:before {
    padding-top: 40%;
    content: "";
    display: block;
}

.ratio_45 .bg-size:before {
    padding-top: 45%;
    content: "";
    display: block;
}

.ratio2_1 .bg-size:before {
    padding-top: 50%;
    content: "";
    display: block;
}

.ratio_55 .bg-size:before {
    padding-top: 55%;
    content: "";
    display: block;
}

.ratio_59 .bg-size:before {
    padding-top: 59%;
    content: "";
    display: block;
}

.ratio2_3 .bg-size:before {
    padding-top: 60%;
    content: "";
    display: block;
}

.ratio3_2 .bg-size:before {
    padding-top: 66.66%;
    content: "";
    display: block;
}

.ratio_90 .bg-size:before {
    padding-top: 93%;
    content: "";
    display: block;
}

.ratio_landscape .bg-size:before {
    padding-top: 75%;
    content: "";
    display: block;
}

.ratio_square .bg-size:before {
    padding-top: 100%;
    content: "";
    display: block;
}

.ratio_asos .bg-size:before {
    padding-top: 127.7777778%;
    content: "";
    display: block;
}

.ratio_portrait .bg-size:before {
    padding-top: 150%;
    content: "";
    display: block;
}

.ratio1_2 .bg-size:before {
    padding-top: 200%;
    content: "";
    display: block;
}

.b-top {
    background-position: top !important;
}

.b-bottom {
    background-position: bottom !important;
}

.b-center {
    background-position: center !important;
}

.b-left {
    background-position: left !important;
}

.b-right {
    background-position: right !important;
}

.b_size_content {
    background-size: contain !important;
}

.shadow-cls {
    -webkit-box-shadow: 0px 1px 9px 0px rgba(228, 228, 228, 0.7);
    box-shadow: 0px 1px 9px 0px rgba(228, 228, 228, 0.7);
}



/*=====================
17. full banner section css
==========================*/

/*=====================
18. other section css
==========================*/

.about-text p {
    line-height: 28px;
    letter-spacing: 0.06em;
    text-align: left;
    margin-bottom: -7px;
    color: rgba(0, 0, 0, 0.68);
}

.deals {
    overflow: hidden;
}

.deals .slick-slider {
    margin: 0 16px;
}

.deals .slick-slider .slick-slide&gt;div {
    margin: 0 40px;
}

.deals .slick-slider .slick-list {
    margin-left: -40px;
    margin-right: -40px;
}

.deals .deals-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.deals .deals-box .deals-img {
    padding: 0;
}

.deals .deals-box .left-portion {
    background-color: white;
    position: relative;
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.deals .deals-box .left-portion:after {
    content: "";
    position: absolute;
    background-image: url(../images/zig-zag.png);
    right: -10px;
    height: 100%;
    width: 10px;
    top: 0;
}

.deals .deals-box .left-portion:before {
    content: "";
    position: absolute;
    background-image: url(../images/zig-zag.png);
    left: -10px;
    height: 100%;
    width: 10px;
    top: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.deals .deals-box .left-portion .deals-content .detail {
    position: absolute;
    left: 0;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 18px 0;
}

.deals .deals-box .left-portion .deals-content .detail h2 {
    font-size: calc(17px + (27 - 17) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
    color: var(--theme-color-2);
    margin-bottom: 0;
}

.deals .deals-box .left-portion .deals-content .detail h2 span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.38);
}

.deals .deals-box .left-portion .deals-content .detail h3 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
}

.deals .deals-box .left-portion .deals-content img {
    margin-left: 80px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.detail-section {
    background-size: cover;
    background-position: center center;
}

.detail-section .detail-box {
    text-align: center;
    color: white;
    padding: 0 55px;
}

.detail-section .detail-box .upper-part {
    margin-bottom: 40px;
    min-height: 180px;
}

.detail-section .detail-box .upper-part h6 {
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.detail-section .detail-box .upper-part h2 {
    font-size: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
    color: white;
    text-transform: capitalize;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.detail-section .detail-box .upper-part h2:after {
    position: absolute;
    width: 90px;
    height: 3px;
    background-color: var(--theme-color-2);
    content: "";
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.detail-section .detail-box .upper-part h5 {
    text-transform: capitalize;
    margin-bottom: 0;
}

.detail-section .detail-box .upper-part:after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.23);
    top: 24%;
}

.detail-section .row&gt;div:last-child .upper-part:after {
    display: none;
}

.detail-section.no-bg-detail {
    background-image: none;
    position: relative;
    overflow: hidden;
}

.detail-section.no-bg-detail .detail-box {
    padding: 30px;
    -webkit-box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: white;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 15px 0;
}

.detail-section.no-bg-detail .detail-box .upper-part {
    margin-bottom: 15px;
    min-height: 120px;
}

.detail-section.no-bg-detail .detail-box .upper-part h2 {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.detail-section.no-bg-detail .detail-box .upper-part h5 {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.detail-section.no-bg-detail .detail-box .upper-part h6,
.detail-section.no-bg-detail .detail-box .upper-part h2,
.detail-section.no-bg-detail .detail-box .upper-part h5 {
    color: var(--theme-color-2);
}

.detail-section.no-bg-detail .detail-box:hover {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.detail-section.no-bg-detail .slick-slide&gt;div {
    margin: 0 15px !important;
}

.detail-section.no-bg-detail .slick-list {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.detail-section.no-bg-detail .slick-prev {
    top: -25px;
    right: 30px;
    left: unset;
}

.detail-section.no-bg-detail .slick-prev:before {
    opacity: 1;
    color: rgba(233, 179, 14, 0.3);
    content: "\f053";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
}

.detail-section.no-bg-detail .slick-prev:hover:before {
    color: rgba(233, 179, 14, 0.7);
}

.detail-section.no-bg-detail .slick-next {
    top: -25px;
    right: 0;
    left: unset;
}

.detail-section.no-bg-detail .slick-next:before {
    opacity: 1;
    color: rgba(233, 179, 14, 0.3);
    content: "\f054";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
}

.detail-section.no-bg-detail .slick-next:hover:before {
    color: rgba(233, 179, 14, 0.7);
}

.cloud {
    -webkit-animation: slide 50s linear infinite;
    animation: slide 50s linear infinite;
    background-repeat: repeat !important;
}

.price-section .container-fluid {
    padding-left: 90px;
    padding-right: 90px;
}

.price-section .price-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.price-section .price-box .price-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
    max-width: 42%;
    overflow: hidden;
    border-radius: 25px 0 0 25px;
    position: relative;
}

.price-section .price-box .price-img .bg-size {
    height: 100%;
}

.price-section .price-box .price-img img {
    border-radius: 25px 0 0 25px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
}

.price-section .price-box .price-img .label {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    padding: 1px 12px;
    background-color: var(--theme-color-2);
    border-radius: 25px;
    color: white;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 700;
}

.price-section .price-box .price-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
    padding: calc(10px + (34 - 10) * ((100vw - 320px) / (1920 - 320)));
    background-color: white;
    -webkit-box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0 25px 25px 0;
}

.price-section .price-box .price-content .price-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: calc(5px + (15 - 5) * ((100vw - 320px) / (1920 - 320)));
    margin-top: -4px;
    position: relative;
}

.price-section .price-box .price-content .price-title h3 {
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #333333;
    letter-spacing: 0.001em;
}

.price-section .price-box .price-content .price-title h3:hover {
    color: #ef3f3e;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.price-section .price-box .price-content .price-title h6 {
    font-size: 14px;
    color: #9a9a9a;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    padding: 7px 10px;
    margin-left: 10px;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.price-section .price-box .price-content .price-title .like-cls i {
    position: absolute;
    font-size: 16px;
    right: 0;
    top: -3px;
    color: #e1002c;
    background-color: rgba(225, 0, 44, 0.05);
    padding: 6px;
    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;
    border-radius: 100%;
}

.price-section .price-box .price-content .rating {
    margin-bottom: calc(8px + (25 - 8) * ((100vw - 320px) / (1920 - 320)));
}

.price-section .price-box .price-content .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.price-section .price-box .price-content .price a {
    margin-right: auto;
}

.price-section .price-box .price-content .price a h6 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 800;
    margin-right: auto;
    color: #565656;
    text-transform: capitalize;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.price-section .price-box .price-content .price a h6:hover {
    color: #ef3f3e;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.price-section .price-box .price-content .price span {
    margin: 0 auto;
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    text-transform: uppercase;
    color: var(--theme-color-2);
    font-weight: 800;
}

.price-section .price-box .price-content .price h5 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    margin-left: auto;
    color: #ef3f3e;
    margin-bottom: 0;
}

.price-section .price-box .price-content .price h5 span {
    color: #9a9a9a;
    margin-right: 10px;
    font-weight: 700;
    text-transform: capitalize;
}

.price-section .price-box:hover .price-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

opacity: 0.3;
}

.price-section .slick-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.price-section .slick-slider .slick-slide {
    margin: 0 15px;
}

.menu-section {
    overflow: hidden;
}

.menu-section .menu-box {
    border-radius: 25px;
    overflow: hidden;
    border: 1px dashed #e8e8e8;
}

.menu-section .menu-box .top-bar {
    position: relative;
    overflow: hidden;
}

.menu-section .menu-box .top-bar img {
    width: 100%;
}

.menu-section .menu-box .top-bar h2 {
    font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    color: white;
    font-weight: 800;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 30px;
}

.menu-section .menu-box .top-bar .decorate {
    position: absolute;
    font-size: calc(25px + (120 - 25) * ((100vw - 320px) / (1920 - 320)));
    color: rgba(255, 255, 255, 0.3);
    top: 50px;
    font-weight: 900;
    left: 0;
    text-transform: capitalize;
}

.menu-section .menu-box .top-bar .overlay {
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(231, 56, 39, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(231, 56, 39, 0) 100%);
    top: 0;
    width: 100%;
    height: 100%;
}

.menu-section .menu-box .bottom-bar {
    background-color: white;
    padding: 40px;
}

.menu-section .menu-box .bottom-bar .menu-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}

.menu-section .menu-box .bottom-bar .menu-bar:after {
    content: "";
    border-bottom: 1px dashed #e8e8e8;
    position: absolute;
    bottom: 0;
    width: 78%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.menu-section .menu-box .bottom-bar .menu-bar img {
    border-radius: 15px;
    margin-right: 30px;
    width: 90px;
}

.menu-section .menu-box .bottom-bar .menu-bar .content {
    min-width: 65%;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h5 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: var(--theme-color-2);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.menu-section .menu-box .bottom-bar .menu-bar .content .rating {
    margin-bottom: 12px;
}

.menu-section .menu-box .bottom-bar .menu-bar .content .rating span {
    color: #ffcc33;
    margin-right: 8px;
    font-weight: 800;
}

.menu-section .menu-box .bottom-bar .menu-bar .content p {
    color: rgba(0, 0, 0, 0.68);
    text-transform: capitalize;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 {
    font-size: 14px;
    color: #343434;
    font-weight: 800;
    position: relative;
    margin-bottom: 0;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 del {
    color: #717171;
    margin-right: 5px;
    font-weight: 400;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 label {
    position: absolute;
    right: 0px;
    background-color: #3db137;
    color: white;
    padding: 3px 10px 2px;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    top: -2px;
    margin-bottom: 0;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 label.red {
    background-color: #e02d22;
    -webkit-box-shadow: 1px 11px 20px 0px rgba(193, 0, 38, 0.12);
    box-shadow: 1px 11px 20px 0px rgba(193, 0, 38, 0.12);
}

.menu-section .menu-box .bottom-bar .menu-bar:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-section .menu-box .bottom-bar .menu-bar:last-child:after {
    display: none;
}

.menu-section .slick-list {
    margin-left: -20px;
    margin-right: -20px;
}

.menu-section .slick-slide {
    margin: 0 20px;
}

.book-table {
    position: relative;
    background-image: url("../images/restaurant/table-bg.html");
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
}

.book-table .table-form {
    background-color: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.book-table .table-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.book-table .table-form form .row {
    margin: 0;
}

.book-table .table-form form .form-group {
    margin-bottom: 0;
    margin-right: 40px;
    position: relative;
}

.book-table .table-form form .form-group input {
    background-color: #f9f9f9;
    border: none;
    border-radius: 35px;
    padding: 20px 20px 18px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 700;
}

.book-table .table-form form .form-group img {
    position: absolute;
    right: 20px;
    top: 20px;
}

.book-table .table-form form .form-control {
    background-color: #f9f9f9;
    border: none;
    border-radius: 35px;
    padding: 20px 20px 18px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 700;
}

.book-table .table-form form .form-control:focus {
    z-index: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.book-table .table-form form .input-group-append {
    position: absolute;
    right: 12px;
    top: 12px;
}

.book-table .table-form form .input-group-append .btn {
    border: none;
    background-color: transparent;
    padding: 0;
}

.book-table .table-form form .input-group-append .btn i {
    color: rgba(197, 197, 197, 0.6);
}

.book-table .table-form:after {
    content: "";
    position: absolute;
    width: calc(100% + 12px);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    height: 100%;
    left: -6px;
    top: 0;
    z-index: -1;
}

.book-table .table-form:before {
    content: "";
    position: absolute;
    width: calc(100% + 24px);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    height: 100%;
    left: -12px;
    top: 0;
    z-index: -1;
}

.book-table .detail {
    font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-family: Pacifico, cursive;
    color: white;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.book-table.single-table {
    background-image: none;
    overflow: visible;
}

.book-table.single-table .table-form {
    margin-bottom: 0;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
    margin-top: -75px;
}

.book-table.single-table .table-form.classic-form {
    border-radius: 0;
    padding: 25px;
    margin-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.book-table.single-table .table-form.classic-form form .form-group input {
    border-radius: 0;
    padding: 15px 15px 13px 25px;
}

.book-table.single-table .table-form.classic-form form .form-group img {
    right: 15px;
    top: 15px;
}

.book-table.single-table .table-form.classic-form form .form-control {
    border-radius: 0;
    padding: 15px 15px 13px;
}

.book-table.single-table .table-form.classic-form form .input-group-append .btn i {
    top: 4px;
    left: 15px;
}

.book-table.single-table .table-form.classic-form form .btn-rounded {
    border-radius: 0;
    margin-left: 0;
}

.book-table.single-table .table-form.classic-form:after,
.book-table.single-table .table-form.classic-form:before {
    display: none;
}

.book-table.input-radius-cls .table-form.classic-form form .form-group input {
    background-color: rgba(233, 179, 14, 0.1);
    border-radius: 25px;
}

.book-table.input-radius-cls .table-form.classic-form form .btn-rounded {
    border-radius: 100px;
}

.car-type-section {
    margin-top: calc(0px + (40 - 0) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: -20px;
}

.car-type-section .slick-slide {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.car-type-section .slick-slide.slick-center {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.car-type-section .slick-slide.slick-center .type-box .img-part img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.car-type-section .slick-slide.slick-center .type-box:hover .img-part img {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.car-type-section .type-box {
    padding: 25px;
    -webkit-box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
    box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
    margin: 20px 0;
}

.car-type-section .type-box .img-part {
    text-align: center;
}

.car-type-section .type-box .img-part img {
    margin: 0 auto;
}

.car-type-section .type-box .content {
    text-align: center;
}

.car-type-section .type-box .content h5 {
    text-transform: capitalize;
    margin-top: 15px;
    font-weight: 700;
}

.car-type-section .type-box .content h6 {
    margin-bottom: 10px;
    text-transform: capitalize;
}

.car-type-section .type-box .content p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

.car-type-section .type-box .content ul li img {
    opacity: 0.7;
}

.cab-slider .image-section:before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.63)), to(rgba(231, 56, 39, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.63) 0%, rgba(231, 56, 39, 0) 100%);
}

.topTour {
    margin-top: calc(0px + (40 - 0) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: -20px;
}

.topTour .slick-slide {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.topTour .slick-slide.slick-center {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.topTour .slick-slide.slick-center .topTour_box .content {
    opacity: 1;
}

.topTour .topTour_box {
    padding: 0;
    -webkit-box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
    box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.topTour .topTour_box .content {
    opacity: 0;
    position: absolute;
    bottom: 22px;
    width: 100%;
    text-align: center;
    padding: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(111, 111, 111, 0.8)), to(rgba(231, 56, 39, 0)));
    background: linear-gradient(to top, rgba(111, 111, 111, 0.8) 0%, rgba(231, 56, 39, 0) 100%);
    border-radius: 0 0 10px 10px;
}

.topTour .topTour_box .content h6 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    margin-bottom: -4px;
}

.topTour .topTour_box .content h5 {
    font-size: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
    color: white;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: -7px;
    text-transform: capitalize;
}

.cab-full {
    padding-top: 68px;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
}

.cab-full ::-webkit-scrollbar {
    width: 4px;
}

.cab-full ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cab-full ::-webkit-scrollbar-thumb {
    background: rgba(233, 179, 14, 0.5);
    border-radius: 3px;
}

.cab-full ::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 179, 14, 0.8);
}

.cab-full iframe,
.cab-full .map-cls {
    width: 100%;
    height: calc(100vh - 68px);
    border: none;
    margin-bottom: -6px;
}

.cab-full .left-bar {
    height: calc(100vh - 68px);
    overflow: auto;
}

.cab-full .left-bar.fixed-cls {
    position: fixed;
    width: 400px;
    -webkit-box-shadow: 3px 0px 4px 0 #dedede;
    box-shadow: 3px 0px 4px 0 #dedede;
    z-index: 1;
}

font-weight: 700;
}

margin-top: 20px;
}

margin-top: 0;
}

.cab-full .location-option [type="radio"]:checked+label:before,
.cab-full .location-option [type="radio"]:not(:checked)+label:before {
    border-color: #ececec;
    top: 2px;
}

.cab-full .location-option [type="radio"]:checked+label:before {
    background-color: #ececec;
    border-color: var(--theme-color-2);
}

.cab-full .cab-search-section {
    padding: 0 15px 15px;
}

.cab-full .cab-search-section .cab-search-box {
    background-color: #f9f9f9;
    padding: 10px;
}

.cab-full .cab-search-section .cab-search-box .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.cab-full .cab-search-section .cab-search-box .cab-img img {
    width: 90px;
    height: auto;
}

.cab-full .cab-search-section .cab-search-box .cab_detail li {
    display: block;
    text-transform: capitalize;
    font-weight: 600;
}

.cab-full .cab-search-section .cab-search-box .btn-solid {
    font-size: 14px;
    padding: 4px 10px;
    text-transform: capitalize;
}

.cab-full .cab-search-section .cab-search-box+.cab-search-box {
    margin-top: 20px;
}

.scroll-body {
    padding-left: 400px;
}

.top-banner {
    width: 100%;
    position: relative;
}

.top-banner .top-banner-content {
    color: white;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    right: 25%;
    width: auto;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.top-banner .flip {
    height: 50px;
    overflow: hidden;
}

.top-banner .flip&gt;div&gt;div {
    color: white;
    padding: 4px 12px;
    height: 40px;
    margin-bottom: 45px;
    display: inline-block;
    line-height: 1;
}

.top-banner .flip div:first-child {
    -webkit-animation: show 5s linear infinite;
    animation: show 5s linear infinite;
}

.top-banner .flip div:first-child div {
    background: #4ac6da;
}

.top-banner .flip div:last-child div {
    background: #dc143c;
}

.top-banner .flip div div {
    background: #f4c789;
}

@-webkit-keyframes show {
    0% {
        margin-top: -270px;
    }
    5% {
        margin-top: -180px;
    }
    33% {
        margin-top: -180px;
    }
    38% {
        margin-top: -90px;
    }
    66% {
        margin-top: -90px;
    }
    71% {
        margin-top: 0;
    }
    99.99% {
        margin-top: 0;
    }
    100% {
        margin-top: -270px;
    }
}

@keyframes show {
    0% {
        margin-top: -270px;
    }
    5% {
        margin-top: -180px;
    }
    33% {
        margin-top: -180px;
    }
    38% {
        margin-top: -90px;
    }
    66% {
        margin-top: -90px;
    }
    71% {
        margin-top: 0;
    }
    99.99% {
        margin-top: 0;
    }
    100% {
        margin-top: -270px;
    }
}
.single-section {
    position: relative;
    img {
        max-height: 350px;
        object-fit: cover;
        border-radius: 15px;
    }
}

.single-section .image_section {
    position: relative;
}

.single-section .image_section .view-all {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
    margin-bottom: 0;
    padding: 10px;
    text-transform: capitalize;
    color: white;
    font-weight: 800;
    line-height: 1;
}

.single-section .image_section .slider-thumbnail {
    margin-top: 5px;
    overflow: hidden;
}

.single-section .image_section .slider-thumbnail .slick-slide&gt;div {
    margin: 0 5px;
}

.single-section .image_section .slider-thumbnail .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.single-section .facility_sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    margin-top: 20px;
}

.single-section .facility_sec .icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 50px;
    position: relative;
}

.single-section .facility_sec .icon-box svg {
    width: 30px;
    height: auto;
    fill: var(--theme-color-2);
}

.single-section .facility_sec .icon-box .content {
    margin-left: 15px;
}

.single-section .facility_sec .icon-box .content h5 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
}

.single-section .facility_sec .icon-box .content h6 {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
    margin-bottom: 0;
}

.single-section .facility_sec .icon-box:after {
    content: "";
    width: 1px;
    height: 25px;
    background-color: var(--theme-color-2);
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-section .facility_sec .icon-box:last-child:after {
    display: none;
}

.single-section .description-section .menu-top {
    margin-top: 30px;
    padding: 12px 0;
    background-color: white;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .menu-top li a {
    color: var(--theme-color-2);
    text-transform: uppercase;
    font-weight: 700;
    padding: 17px 30px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.active a {
    color: var(--theme-color-2);
    border-bottom: 2px solid var(--theme-color-2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.mobile-menu {
    display: none;
}

.single-section .description-section .menu-top.sticky {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    padding: 16px 0;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
}

.single-section .description-section .menu-top.sticky li a {
    padding: 15px 30px;
}

.single-section .description-section .menu-top.menu-up {
    margin-top: 0;
    margin-bottom: 30px;
}

.single-section .description-section .description-details .content-title {
    text-transform: uppercase;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
}

.single-section .description-section .description-details .menu-part {
    margin-top: 20px;
    padding: 30px;
    background-color: white;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .description-details .menu-part.page-section .zoom-gallery&gt;div:nth-child(-n+3) {
    margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part .list-view {
    margin-top: 0;
}

.single-section .description-section .description-details .menu-part .list-view .list-img {
    width: 30%;
}

.single-section .description-section .description-details .menu-part .list-view .facility-icon {
    margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .list-view .list-box {
    padding: 0;
}

.single-section .description-section .description-details .menu-part .list-view+.list-view {
    margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay {
    position: relative;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 22px;
    display: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery&gt;div:nth-child(-n+3) {
    margin-bottom: 30px;
}

.single-section .description-section .description-details .menu-part.facility h6 {
    text-transform: capitalize;
    font-weight: 700;
    color: #222222;
}

.single-section .description-section .description-details .menu-part.facility h6 img {
    margin-right: 5px;
    width: 20px;
}

.single-section .description-section .description-details .menu-part.facility ul {
    margin-left: 10px;
}

.single-section .description-section .description-details .menu-part.facility ul li {
    display: block;
    text-transform: capitalize;
    line-height: 1.9;
}

.single-section .description-section .description-details .menu-part.facility ul li i {
    font-size: 8px;
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part.map iframe {
    width: 100%;
    height: 420px;
    margin-bottom: -5px;
}

.single-section .description-section .description-details .menu-part.review .review-box .rating span {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-left: 10px;
    font-weight: 700;
}

.single-section .description-section .description-details .menu-part.review .review-box h6 {
    font-size: 14px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

.single-section .description-section .description-details .menu-part.review .review-box p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.review .review-box+.review-box {
    border-top: 1px solid #f9f9f9;
    padding-top: 12px;
    margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.policy p {
    color: #212121;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.6;
}

.single-section .description-section .description-details.full-slider .menu-part {
    margin-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 70px;
}

.single-section .description-section .description-details.full-slider .menu-part .row {
    margin-bottom: 20px;
}

.single-section .description-section.tab-section .menu-top {
    padding: 0;
    background-color: transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs {
    margin-bottom: 15px;
    background-color: white;
    border-bottom: none;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item.active {
    border: none;
    border-bottom: 2px solid var(--theme-color-2);
    color: var(--theme-color-2);
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-bottom: 2px solid var(--theme-color-2);
    color: var(--theme-color-2);
}

.single-section .description-section.tab-section .menu-top.sticky {
    background-color: white;
    margin-bottom: 0;
}

.single-section .description-section.tab-section .menu-top.sticky .nav-tabs {
    margin-bottom: 0;
}

.single-section .description-section.tab-section .description-details .menu-part {
    margin-top: 0;
}

.single-section .single-sidebar {
    background-color: white;
    padding: 20px;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar h4.title {
    text-transform: capitalize;
    font-weight: 700;
    margin-top: -4px;
}

.single-section .single-sidebar p {
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .single-sidebar p i {
    font-size: 13px;
    margin-right: 10px;
    color: rgba(0, 0, 0, 0.59);
}


.single-section .single-sidebar .newsletter-sec {
    padding: 20px;
}

.single-section .single-sidebar .newsletter-sec .button {
    margin-top: 15px;
    text-align: right;
}

.single-section .single-sidebar .newsletter-sec .button .btn {
    padding: 6px 14px;
    font-size: 14px;
    text-transform: capitalize;
}

.single-section .single-sidebar .overlay-map {
    position: relative;
    margin-bottom: 10px;
}

.single-section .single-sidebar .overlay-map img {
    height: 100px;
    width: 100%;
}

.single-section .single-sidebar .overlay-map iframe,
.single-section .single-sidebar .overlay-map .map {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.0001;
    z-index: 1;
}

.single-section .single-sidebar .overlay-map h6 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--theme-color-2);
    text-transform: capitalize;
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    z-index: 0;
    font-weight: 600;
    margin-bottom: 0;
}

.single-section .single-sidebar .price-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single-section .single-sidebar .price-part .left-part a {
    color: var(--theme-color-2);
    font-weight: 700;
    text-transform: capitalize;
}

.single-section .single-sidebar .price-part .left-part span {
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 24px;
}

.single-section .single-sidebar .price-part .left-part span i {
    font-size: 10px;
    margin-right: 5px;
    color: green;
}

.single-section .single-sidebar .price-part .left-part span.red {
    color: darkred;
}

.single-section .single-sidebar .price-part .right-part {
    margin-left: auto;
    text-align: right;
}

.single-section .single-sidebar .price-part .right-part span {
    color: rgba(0, 0, 0, 0.4);
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 700;
}

.single-section .single-sidebar .price-part .right-part p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme-color-2);
}

.single-section .single-sidebar .book-btn-section .btn-rounded {
    padding: 6px 14px;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 0;
}

.single-section .single-sidebar .contact-title {
    color: var(--theme-color-2);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.single-section .single-sidebar .bottom_sec {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .bottom_sec h6 {
    text-transform: capitalize;
    color: var(--theme-color-2);
    font-size: 14px;
    font-weight: 700;
}

.single-section .single-sidebar .bottom_sec h6:last-child {
    margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    margin-top: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-section .single-sidebar .weather-sec li svg {
    width: 40px;
    margin: 0;
}

.single-section .single-sidebar .weather-sec li h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-section .single-sidebar .weather-sec li h6 {
    font-size: 12px;
    margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec li+li {
    margin-left: 20px;
}

.single-section .single-sidebar .social-box {
    margin-top: 18px;
}

.single-section .single-sidebar .social-box i {
    font-size: 14px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: white;
    padding: 9px;
    background-color: var(--theme-color-2);
    border-radius: 100%;
    width: 32px;
    height: 32px;
    text-align: center;
    margin-right: 3px;
}

.single-section .single-sidebar+.single-sidebar {
    margin-top: 30px;
}

.single-section .single-sidebar .order-cart .cart-items {
    margin-top: 20px;
}

.single-section .single-sidebar .order-cart .cart-items .items {
    position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items h6 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items h5 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: var(--theme-color-2);
    font-weight: 500;
    margin-bottom: 0;
}

.single-section .single-sidebar .order-cart .cart-items .items+.items {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box {
    width: 120px;
    margin-top: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group {
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .btn {
    padding: 5px 10px;
    font-size: 10px;
    line-height: 1;
    background-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .form-control {
    padding: 2px;
    width: 50px;
    text-align: center;
    border-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .price {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6 {
    padding-left: 25px;
    position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:after {
    content: "";
    left: 0;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid green;
    top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:before {
    content: "";
    left: 3px;
    width: 8px;
    height: 8px;
    background-color: green;
    position: absolute;
    border-radius: 100%;
    top: 5px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6 {
    padding-left: 25px;
    position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:after {
    content: "";
    left: 0;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid red;
    top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:before {
    content: "";
    left: 3px;
    width: 8px;
    height: 8px;
    background-color: red;
    position: absolute;
    border-radius: 100%;
    top: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total span {
    float: right;
}

.single-section .single-sidebar .order-cart .cart-bottom p {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    max-width: 70%;
}

.single-section .single-sidebar .order-cart .cart-bottom .checkout {
    margin-top: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart {
    text-align: center;
    margin-top: 50px;
}

.single-section .single-sidebar .order-cart .empty-cart h5 {
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    margin-bottom: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart img {
    margin-bottom: 20px;
    opacity: 0.5;
}

.single-section .single-sidebar .order-cart .empty-cart p {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    color: rgba(0, 0, 0, 0.64);
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    background-color: var(--theme-color-2);
}


/*float  buttons*/

.fixed__btns {
    position: fixed;
    right: 0;
    left: 50%;
    bottom: 6px;
    background-color: transparent;
    width: 94%;
    height: 50px;
    z-index: 99;
    padding: 0;
    gap: 11px;
    overflow: hidden;
    display: flex;
    transform: translateX(-50%);
}

.float {
    position: relative;
    width: 100%;
    height: 100%;
    color: #FFF;
    border-radius: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 35px;
    border-radius: 30px;
    letter-spacing: -0.02em;
    img {
        width: 23px;
        margin-right: 5px;
    }
    span {
        font-weight: 600;
    }
}

.float_whatsapp {
    background-color: #25D366;
}

.float-popup {
    background-color: var(--theme-color-2);
    color: #fff;
}

.float:hover {
    color: #000;
}

.float-call {
    background-color: orange;
    font-size: 15px;
    font-weight: 100 !important;
}

.float-mail {
    background-color: var(--theme-color-2);
    font-size: 15px;
    font-weight: 100 !important;
}

.my-float {
    margin-top: 5px;
    color: #25d366;
}

.my-call {
    margin-top: 5px;
}

@media(min-width:768px) {
    .float_whatsapp {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 175px !important;
        height: 40px;
        border-radius: 10px;
        animation: float 1s ease-in-out infinite;
    }
    .fixed__btns {
        background-color: transparent;
        height: 0;
        transform: none;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
        /* Moves up */
    }
    100% {
        transform: translateY(0);
    }
}

.phone_res-float-btn {
    width: 100%;
    display: flex;
    position: fixed;
    bottom: 0 !important;
    z-index: 111;
}

.phone_res-float-btn a {
    width: 50% !important;
    border-radius: 0;
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    border: 1px solid #bababa;
    font-size: 17px;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    color: #000;
}

.phone_res-float-btn .button__1 {
    position: relative;
    left: 0 !important;
    border-top-left-radius: 20px;
}

.phone_res-float-btn .button__2 {
    position: relative;
    border-top-right-radius: 20px;
    right: 0 !important;
}

.phone_res-float-btn img {
    width: 25px;
    height: 25px;
}

.terms-content h3 {
    font-weight: 600;
    font-size: 30px;
}

.terms-list li {
    list-style: auto !important;
    display: block !important;
}

.sidebar-item {
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-item&gt;h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    color: #000;
    border-bottom: 2px solid var(--theme-color-2);
}

.title-1 h4,
.title-1 h3 {
    font-weight: 600;
    font-size: 30px;
    position: relative;
    margin-bottom: 45px;
}

.title-1 h4:before,
.title-1 h3:before {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    content: "";
    background-color: var(--theme-color-2);
}

.sidebar-category {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.sidebar-category li {
    list-style: none;
    margin-bottom: 1px;
    width: 100%;
}

.sidebar-category li .active {
    background: var(--theme-color-2);
    color: #FFF;
}

.sidebar-category li a {
    background: #ffffff none repeat scroll 0 0;
    color: #000;
    display: block;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: capitalize;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    border-radius: 6px;
}

.sidebar-category li a:hover {
    background: var(--theme-color-2);
    color: #fff;
}

.sidebar-category li a:after {
    content: "\f061";
    font-family: FontAwesome;
    float: right;
}

.bg-banner {
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.same-section-spacing {
    padding: 100px 0 100px;
}

.bg-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.banner-box {
    .breadcrumb {
        background-color: transparent;
    }
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.breadcrumb {
    display: inherit !important;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    color: var(--white);
    padding: 10px 0;
}

.breadcrumb {
    background: transparent;
    color: var(--white);
    padding: 10px 0;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb-item a {
    font-weight: 600;
    color: var(--white);
}

.banner-box {
    .breadcrumb-item.active {
        color: #fff;
    }
}

.banner-box {
    .breadcrumb-item+.breadcrumb-item::before {
        color: #fff;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

.banner-box h2 {
    color: var(--white);
    margin-bottom: 0 !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
}

@media(max-width:768px) {
    .banner-box h2 {
        font-size: 30px;
    }
}

.forum-main-image {
    padding: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
    box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid var(--theme-color-2);
}

.forum-main-image img {
    width: 100%;
}

.forum-main-image img {
    border-radius: 5px;
    margin-bottom: 0;
}

.forum-details h3 {
    font-size: 35px;
    margin-bottom: 30px;
}
.spad {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
@media(max-width:768px){
    .spad{
        padding: 80px 0 80px;
    }
}
.breadcrumb__text {
    text-align: center;
}

.breadcrumb__links {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
}

.breadcrumb__links a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links a::after {
    position: absolute;
    right: -18px;
    top: 0px;
    font-family: FontAwesome;
    content: "\f105";
    font-size: 20px;
    font-weight: 400;
}

.breadcrumb__links span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 0;
    display: inline-block;
    position: relative;
}

.breadcrumb__links span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-right: 26px;
    position: relative;
}

.breadcrumb__text h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}

/*.footer-links li a:before {
    font-family: FontAwesome;
    content: "\f101";
    padding-right: 10px;
    color: var(--theme-color-2);
}*/

/*.animated{
      animation-fill-mode: inherit!important;
}*/

.List-items li:not(:last-child) {
    padding-bottom: calc(11px/2);
}

.List-items li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: inherit;
    display: block;
}

.List-items i {
    color: var(--theme-color-2);
    width: 1.25em;
    font-size: 14px;
}

.List-items span {
    color: var(--theme-color-2);
    padding-left: 8px;
}

.main-box {
    background-color: #ffffff !important;
    border-radius: 6px;
    border-style: solid;
    border-width: 0px 0px 5px 0px;
    border-color: var(--theme-color-2);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 0px 0px 6px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 6px;
    padding: 35px 35px 13px 36px;
}

.main-box .box-icon img {
    width: 75px;
}

/*OUR GALLERY*/

#our_gallery {
    position: relative;
}

.bgimage {
    background-color: var(--theme-color-2) !important;
    background-image: url('../images/bgimg.png');
    background-size: contain;
    background-position: center center;
    position: absolute;
    height: 510px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
    margin-bottom: 10px;
}

@media(max-width:768px){
    .breadcrumb__links a{
        font-size: 15px;
    }
    .breadcrumb__links a::after{
        font-size: 15px;
    }
    .breadcrumb__links span:last-child{
        font-size: 15px;
    }
}
/*OUR DESTINATION*/

.booking-one__single {
    margin-bottom: 30px;
    -webkit-transition: all .35s;
    transition: all .35s;
    border-radius: 10px
}

.booking-one__image {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    min-height: 90px;
    background: #ccc
}

.booking-one__image img {
    height: 250px;
}

.booking-one__content {
    padding: 10px 30px 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #fff;
    position: relative;
    margin-top: -16px;
    text-align: center;
}

@media (max-width: 1024px) {
    .booking-one__content {
        padding: 10px 20px 0
    }
}

.booking-one__content:after {
    content: '';
    width: 100%;
    height: 20px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 9;
    background: #fff;
    margin-bottom: -1px
}

.booking-one__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.booking-one__content-top .booking__rating {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 66px);
    flex: 0 0 calc(100% - 66px)
}

.booking-one__media {
    background: #fff;
    padding: 7px 18px 5px;
    position: absolute;
    top: -35px;
    right: 30px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    border-radius: 8px;
    z-index: 11;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66px;
    flex: 0 0 66px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.booking-one__title {
    font-size: 20px;
    margin: 10px 0 10px;
    font-weight: 600
}

.booking-one__address {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400
}

.booking-one__address i {
    margin-right: 10px;
    color: var(--e-global-color-primary)
}

.booking-one__price .item_info_price_new {
    color: var(--e-global-color-secondary)
}

.booking-one__meta {
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid #e2dfeb
}

.booking-one__item-meta i {
    margin-right: 4px;
    font-size: 20px;
    position: relative;
    top: 2px;
    color: var(--e-global-color-primary)
}

.booking-one__meta-left&gt;span:not(:last-child) {
    margin-right: 18px
}

.booking-one__meta-right a {
    display: inline-block;
    position: relative;
    padding-right: 20px
}

.booking-one__meta-right a:after {
    content: '\f061';
    font-family: 'Line Awesome Free';
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 14px;
    z-index: 1;
    line-height: 1;
    font-weight: 900
}

/*DESTINATION*/

.single_package {
    margin: 0 15px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
}

.package-hover {}

.single_package .package-hover {
    padding: 30px;
}

.package-hover p {
    margin-bottom: 20px;
}

.package-hover i {
    color: #fec42d;
}

.time_zone {}

.team .position-center-center {
    width: 100%;
    padding: 0 20px;
}

.single_package img {
    width: 100%;
    position: relative;
    height: 200px;
}

.pack_price {
    font-weight: 700;
    color: #f05942;
}

.single_package h5 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 700;
}

.single_package .rating {
    margin-bottom: 3px;
}

.single_package .time_zone {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-transform: capitalize;
    width: 100%;
    color: #333;
    margin-bottom: 12px;
}

.package-name {
    font-size: 16px;
    font-weight: 700;
    padding: 25px 20px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out 0s;
    width: 100%;
}

.pack_image {
    position: relative;
    transition: .5s;
    overflow: hidden;
}

.pack_image:before,
.single_gallery:before,
.blog_image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: .5s;
}

.gallery_enlarge_icon,
.pack_image .btn-bg {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .5s;
}

.pack_image .btn-bg {
    color: #fff;
    font-size: 13px;
    background: #f05942;
    border-radius: 30px;
    padding: 5px 20px;
}

.single_package:hover .btn-bg,
.single_gallery:hover .gallery_enlarge_icon {
    opacity: 1;
}

.single-deal figure p a:hover,
.single-deal figure p a:focus {
    background: #e1330b;
    color: #fff;
}

.single_package:hover .pack_image:before,
.single_gallery:hover:before {
    opacity: 1;
}

#package-slider .owl-controls {
    margin-top: 15px;
}

#package-slider .owl-dots .owl-dot span {
    color: #333;
    width: 12px;
    height: 12px;
    opacity: 1;
}

#package-slider .owl-dots .owl-dot.active span {
    background-color: #f05942;
}

.spacer {
    border: 0;
    border-bottom: 1px solid rgba(11, 22, 63, 0.07);
}

.card-feature-box {
    justify-content: space-between;
}

.card-feature-box .icon-box {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.card-feature-box .icon-box span {
    line-height: 0;
}

.card-feature-box .icon-box i {
    color: var(--theme-color-2);
}

.zoom-gallery .gallery_img {
    position: relative;
    overflow: hidden;
}

.zoom-gallery .gallery_img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*========form booking index==========*/




.homesection {
    background: var(--theme-color-2);
}

/*    phone toggle bar*/

.overlay_bg #myNav {
    border-right: 2px solid var(--theme-color-2);
}

#myNav {
    position: relative;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay_bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: 10;
    transition: 0.5s linear;
}

.overlay-content {
    position: relative;
    left: 0;
    width: 100%;
}

#myNav .overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    color: #000;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #fff;
}

#myNav .overlay-content .dropdown-menu {
    background-color: var(--theme-color-2);
}

#myNav .overlay-content .dropdown-menu a {
    border: none;
}

#myNav .overlay-content .dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

#myNav a:hover,
.overlay a:focus {
    color: var(--theme-color-2);
}

#myNav .closebtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 35px;
    color: #fff;
    z-index: 1;
    background: red;
    padding-left: 3px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.toggle-icon {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    z-index: 11;
    top: 17px;
    right: 11px;
    color: var(--theme-color-2);
    background: #fff;
    padding: 1px 10px;
    border-radius: 5px;
}

.overlay-content .phone-site-logo {
    font-size: 30px;
    font-weight: 500;
    background: var(--theme-color-2);
    padding: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    gap: 10px;
}

.overlay-content .phone-site-logo img {
    width: 100px;
    background-color: var(--theme-color-2);
    border-radius: 6px;
}

#myNav .overlay-content .dropdown ul {
    padding-left: 12px;
}

#myNav .overlay-content .dropdown ul a {
    font-size: 14px;
    padding: 5px 10px;
    border-bottom: 1px solid #d9d9d9;
}

@media only screen and (max-width: 600px) {
    .brand-logo a h3 {
        font-size: 26px;
    }
}

@media screen and (max-height: 450px) {
    ##myNav a {
        font-size: 20px
    }
    #myNav .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}


/*our destination*/

.packages-section {
    position: relative;
    background: #fafaee;
}

.packages-section .bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: left top;
}

.package-block .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

.package-block .image-box {
    position: relative;
}

.package-block .image-box .image {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.package-block .image-box .image img {
    position: relative;
    width: 100%;
    height: 210px;
    border-radius: 10px 10px 0 0;
    transition: all 0.5s ease;
}

.package-block .lower-box {
    position: relative;
    display: block;
    padding: 10px;
}

.package-block .lower-box .p-icon {
    position: absolute;
    top: -36px;
    right: 30px;
    width: 72px;
    height: 72px;
    z-index: 5;
}

.package-block .lower-box .location {
    position: relative;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    padding-top: 10px;
}

.package-block .lower-box p {
    position: relative;
    font-weight: 400;
    color: #2d3434;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.package-block h5 a {
    color: #2d3434;
}

.package-block .lower-box .info {
    position: relative;
    font-size: 14px;
    line-height: 20px;
}

.package-block .lower-box .info .duration {
    position: relative;
    color: #000;
}

.package-block .lower-box .info .duration i,
.package-block .lower-box .info .persons i {
    position: relative;
    padding-right: 5px;
}

.package-block .lower-box .info .persons {
    position: relative;
    float: right;
}

.package-block .bottom-box {
    position: relative;
    margin-top: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.package-block .lower-box .p-icon img {
    max-height: 72px;
}

.package-block .lower-box .p-icon .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    line-height: 72px;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
}

.offer-action {
    text-align: center;
    background: var(--theme-color-2) none repeat scroll 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    margin: 25px auto 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.offer-action a {
    display: inline-block;
    text-transform: uppercase;
    padding: 7px 15px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    width: 47%;
}

.offer-action:after {
    position: absolute;
    content: "";
    width: 66%;
    height: 100%;
    background: #000 none repeat scroll 0 0;
    right: -36px;
    z-index: -1;
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/*GALLERY*/

.gallery-section {
    position: relative;
}

.gallery-section:before {
    content: '';
    background: #162241;
    position: absolute;
    top: 0;
    left: 0;
    height: 75%;
    width: 100%;
}

.gallery-section .desti-inner {
    position: relative;
    z-index: 1;
}

.gallery-section .desti-image {
    position: relative;
    overflow: hidden;
    border: 6px solid #ffffff1a;
}

.gallery-section .desti-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.gallery-section .desti-image .desti-overlay {
    opacity: 0;
    background: #2e3d626b;
    position: absolute;
    bottom: 100%;
    left: 0;
    transition: all ease-in-out 0.5s;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.gallery-section .desti-image .desti-overlay a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.nir-btn,
.nir-btn-black {
    position: relative;
    z-index: 1;
    font-size: 20px;
    text-align: center;
    padding: 12px 24px;
    text-transform: capitalize;
    transition: all ease-in-out 0.5s;
    background: var(--theme-color-2);
    color: #fff;
    display: inline-block;
    border-radius: 43px;
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.1);
}

.gallery-section .desti-image:hover .desti-overlay {
    opacity: 1;
    bottom: 0;
    transition: all ease-in-out 0.5s;
}

/* js particle*/

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* ---- stats.js ---- */

.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

.text-justify {
    text-align: justify !important;
}

/*  end cab service*/

.section-title.style-two p {
    color: #fff;
}

.org-bd {
    border-radius: 3px;
    border: solid 1px var(--theme-color-2);
    text-align: center;
    margin-top: 20px;
    min-height: 100px;
}

.online-icon {
    width: 75px;
    height: 75px;
    background: var(--theme-color-2);
    border-radius: 50%;
    margin: auto;
    margin-top: -40px;
    border: 3px solid #fbfbfb;
}

.online-icon i {
    font-size: 35px;
    padding: 18px;
    color: #fff;
}

.org-txt {
    font-size: 24px;
    color: var(--theme-color-2);
    font-weight: bold;
    margin-top: 15px;
}

.achievement-card {
    padding: 20px;
    text-align: center;
    background: var(--theme-color-2);
    color: #fff;
    -webkit-box-shadow: 0 0 64px rgba(17, 17, 17, .1);
    box-shadow: 0 0 64px rgba(17, 17, 17, .1);
    border-radius: 5px;
}

.achievement-card .achievement-icon {
    margin-bottom: 20px;
}

.achievement-card .achievement-icon i {
    color: #fff;
    font-size: 70px;
}

.achievement-card h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
}

/*============cars section===========*/

.cars-section .card {
    border: none;
    box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.cars-section .card-image {
    text-align: center;
}

.cars-section img {
    width: 80%;
    margin: auto;
    /*-webkit-mask-image: url(../images/footer-bg.png);
  mask-image: url(../images/footer-bg.png);
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;*/
}

.cars-section .card .card-title {
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.cars-section .card ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}

.cars-section .card ul li strong {
    display: block;
}

.multi-button {
    padding: 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--theme-color-2) 50%, var(--theme-color-2) 50%);
    transition: 0.3s linear;
}

.multi-button:hover {
    background: linear-gradient(135deg, var(--theme-color-2) 50%, var(--theme-color-2) 50%);
}

.multi-button a {
    width: 100%;
    padding: 10px;
    border-radius: 0;
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.multi-button a:last-child {
    color: var(--theme-color-2);
}

.multi-button:hover a {
    color: var(--theme-color-2);
}

.multi-button:hover a:last-child {
    color: #fff;
}

/* button */

.middle-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.contact_button {
    padding: 16px 42px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s;
    border-radius: 10px;
    display: inline-block;
    font-family: var(--title-font);
    line-height: 16px;
}

.contact_button:hover {
    background-color: var(--theme-color-2);
    border-color: var(--theme-color-2);
    color: var(--theme-color-2);
}
.custom-arraw .icon-btn2 {
    width: 50px;
}

.custom-arraw .icon-arraw {
    border: 2px dashed #27565C;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    transition: all 0.5s ease;
}

.custom-arraw .icon-arraw:not(:last-child) {
    margin-right: 7px;
}

.custom-arraw .icon-arraw:hover {
    border-color: var(--theme-color-2);
}

.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.play-btn&gt;i {
    display: inline-block;
    width: var(--icon-size, 104px);
    height: var(--icon-size, 104px);
    line-height: var(--icon-size, 104px);
    text-align: center;
    background-color: var(--theme-color-2);
    color: var(--white);
    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-2);
    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(--white);
    color: var(--title-color);
}

.link-btn {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    position: relative;
    text-transform: capitalize;
    transition: all ease 0.3s;
}

.link-btn i {
    margin-right: 7px;
}

.link-btn:hover {
    color: var(--theme-color-2);
}

.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-2);
    color: var(--white);
    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(--white);
    border-radius: inherit;
    z-index: 1;
    transition: all ease 0.4s;
}

.scroll-btn:focus i,
.scroll-btn:hover i {
    background-color: var(--theme-color-2);
    color: var(--white);
}

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

.bar-btn {
    border: none;
    display: inline-block;
    padding: 0;
    line-height: 1;
    font-size: 25px;
    vertical-align: middle;
    background-color: transparent;
    width: 25px;
    height: 18px;
    position: relative;
}

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

.bar-btn .bar:nth-child(2):before {
    top: 50%;
    margin-top: -1.5px;
    width: 25px;
    right: -6px;
}

.bar-btn .bar:nth-child(3):before {
    top: auto;
    bottom: 0;
}

/* Small devices */

@media (max-width: 767px) {
    .play-btn {
        --icon-size: 60px;
    }
}

/* Small devices */


/*================Destination section=================*/

.destinations-section .card {
    position: relative;
    height: 400px;
    width: 100%;
    margin: 10px 0;
    transition: ease all 2.3s;
    perspective: 1200px;
}

.destinations-section .card:hover .cover {
    transform: rotateX(0deg) rotateY(-180deg);
}

.destinations-section .card:hover .cover:before {
    transform: translateZ(30px);
}

.destinations-section .card:hover .cover:after {
    background-color: black;
}

.destinations-section .card:hover .cover h1 {
    transform: translateZ(100px);
}

.destinations-section .card:hover .cover .price {
    transform: translateZ(60px);
}

.destinations-section .card:hover .cover a {
    transform: translateZ(-60px) rotatey(-180deg);
}

.destinations-section .card .cover {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.destinations-section .card .cover:before {
    content: "";
    position: absolute;
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    transition: ease all 2.3s;
    transform-style: preserve-3d;
    transform: translateZ(0px);
}

.destinations-section .card .cover:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    transition: ease all 1.3s;
    background: rgba(0, 0, 0, 0.4);
}

.destinations-section .card .cover h1 {
    font-weight: 600;
    position: absolute;
    bottom: 55px;
    left: 50px;
    color: white;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    z-index: 3;
    font-size: 3em;
    transform: translateZ(0px);
}

.destinations-section .card .cover .price {
    font-weight: 200;
    position: absolute;
    top: 55px;
    right: 50px;
    color: white;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    z-index: 4;
    font-size: 2em;
    transform: translateZ(0px);
}

.destinations-section .card .card-back {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #0b0f08;
    transform-style: preserve-3d;
    transition: ease all 2.3s;
    transform: translateZ(-1px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.destinations-section .card .card-back a {
    transform-style: preserve-3d;
    transition: ease transform 2.3s, ease background 0.5s;
    transform: translateZ(-1px) rotatey(-180deg);
    background: transparent;
    border: 1px solid white;
    font-weight: 200;
    font-size: 1.3em;
    color: white;
    padding: 14px 32px;
    outline: none;
    text-decoration: none;
}

.destinations-section .card .card-back a:hover {
    background-color: white;
    color: #0b0f08;
}

.bg-light-primary {
    background-color: var(--theme-color-2);
}

.square--40 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.square--40 i {
    color: #fff;
}

.fill-primary {
    fill: var(--theme-color-2) !important;
}

.z-1 {
    z-index: 1 !important;
}

.opacity-25 {
    opacity: .25 !important;
}

.square--70 {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.square--70.bg-light-primary {
    background-color: #ffe6e5;
}

.bg-light-info {
    background-color: #cfe1f8;
}

.bg-light-success {
    background-color: #d4eee3;
}

.bg-light-warning {
    background-color: #fff3cd;
}

.single-section ul {
    display: block;
    margin-bottom: 20px;
    padding-left: 0;
}

.single-section ul li {
    display: block;
    padding: 5px;
    font-size: 16px;
    color: #000;
}

.single-section .h2,
.single-section .h3 {
    color: #000;
    font-weight: 600;
}

/*service pages*/

.single-section .detail {
    margin-bottom: 40px;
    padding: 20px 0;
    align-items: center;
    --bs-gutter-y: 1.5rem;
}

.single-section .detail:nth-child(even) {
    background-color: #f4f8fb;
}

.single-section .detail img {
    border-radius: 10px;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.single-section .detail .h3,
.single-section .detail h3 {
    color: #000;
    font-weight: 600;
}

/*sidelist*/

.single-section .sidebar-item {
    margin-bottom: 30px;
    position: relative;
    background-color: #eeeeee;
    border-radius: 10px;
}

/*book now*/

.booking-page .card {
    border: none;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
}

.booking-page .card-header {
    background-color: var(--theme-color-2);
    text-align: center;
    border: 0;
}

.booking-page .card-header .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 15px 0;
    color: #fff;
}

.booking-page .row&gt;* {
    margin-top: 12px;
}

.booking-page label {
    color: #000;
    margin-bottom: 5px;
    font-weight: 600;
}

.booking-page label span {
    color: #ff0000;
    padding-left: 5px;
}

.mb-30 {
    margin-bottom: 30px;
}


.bg-light-dark {
    background-image: linear-gradient(180deg, rgba(var(--white-rgb), 0.07) 42.67%, #f8ffe8 89.38%);
}

.single-service-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.single-service-wrap .destination {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 157.143%;
    letter-spacing: 0.42px;
    margin-top: -7px;
    i {
        font-size: 18px;
        color: var(--theme-color-2);
    }
}

.single-service-wrap:hover img {
    transform: scale(1.1);
    transition: 0.4s;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
    background: #fff;
    color: #fa4318;
    color: var(--theme-color-2);
}

.single-service-wrap .thumb {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    transition: 0.3s;
    margin-inline: auto;
}

.single-service-wrap:hover .thumb {
    border-color: var(--theme-color-2);
}

.single-service-wrap:hover .thumb img {
    transition: 0.3s;
}

.single-service-wrap .thumb:after {
    left: -30px;
}

.single-service-wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-service-wrap .details .icon {
    background: #fff;
    height: 39px;
    line-height: 50px;
    margin-left: auto;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    width: 40px;
    top: 0px;
    right: 15px;
    font-size: 20px;
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid var(--theme-color-2);
}

.single-service-wrap .details {    
    position: relative;
    margin-left: 136px;
    padding: 35px 25px;
    margin-top: -120px;
    z-index: 1;
}
@media(max-width:768px){
    .single-service-wrap .details{
        margin-left: 20px;
    }
}
.single-service-wrap .details:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 0px;
    background-color: #ffffff;
    -ms-transform: skewY(2deg);
    transform: skewY(2deg);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    z-index: -1;
}
.single-service-wrap .detailes_top {
    margin-bottom: 12px;
}

.single-service-wrap .border-layer{
    position:absolute;
    left:-12px;
    top:-30px;
    z-index:-2;
    width:32px;
    bottom:-10px;
    border:4px solid var(--theme-color-2);
    -ms-transform: skewY(20deg);
    transform: skewY(20deg);
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}

.single-service-wrap:hover .border-layer{
    -ms-transform: skewY(-20deg);
    transform: skewY(-20deg);
}
.single-service-wrap h5 {
    transition: all 0.3s ease-in;
    font-family: var(--title-font);
    position: relative;
    color: #222;
    font-size: 24px;
    margin-top: -10px;
    line-height: 0.9;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 00;
    font-weight: 600;
}

.single-service-wrap .details p {
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    text-align: left;
}

.single-service-wrap .details .btn-wrap .read-more-text {
    color: #080c24;
    color: #222;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease-in;
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
    display: none;
}

.single-service-wrap .details .btn-wrap .read-more-text span {
    color: #fff;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    transition: all 0.3s ease-in;
    width: 26px;
}

.service-details-wrap .thumb .icon,
.single-service-wrap .details .btn-wrap .read-more-text span {
    background: #fa4318;
    background: var(--theme-color-2);
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
}

.service-details-wrap .thumb .icon {
    height: 70px;
    line-height: 68px;
    margin-bottom: -70px;
    position: relative;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
}

.service-details-wrap .thumb .icon img {
    width: auto;
}

/*header*/

/*header top*/

.top-one {
    background-color: #1D231F;
}

@media (max-width: 991px) {
    .top-one {
        display: none;
    }
}

.top-one__inner {
    max-width: 1775px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.top-one__info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
    padding-left: 0;
}

.top-one__info__item {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    color: #fff;
}

.top-one__info__item i {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

.top-one__info__item a {
    color: inherit;
}

.top-one__info__item a:hover {
    color: var(--theme-color-2);
}

.top-one__right {
    display: flex;
    align-items: center;
}

.top-one__social {
    line-height: 1;
}

.top-one__social a {
    font-size: 16px;
    color: #fff;
    line-height: 1;
}

.top-one__social a:hover {
    color: var(--theme-color-2);
}

.top-one__social a+a {
    margin-left: 28px;
}

.top-one__language-sort+.top-one__social {
    padding-left: 20px;
    border-left: 1px solid #E5E5E5;
    margin-left: 20px;
}

.top-one__language-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 90px;
}

.top-one__language-sort .bootstrap-select&gt;.dropdown-toggle {
    background: transparent;
    border: none;
    border-color: transparent;
    padding: 0px 0px;
    outline: none;
}

.top-one__language-sort .bootstrap-select&gt;.dropdown-toggle:focus {
    outline: none;
}

.top-one__language-sort .btn-check:checked+.btn:focus-visible,
.top-one__language-sort .btn.active:focus-visible,
.top-one__language-sort .btn.show:focus-visible,
.top-one__language-sort .btn:first-child:active:focus-visible,
.top-one__language-sort :not(.btn-check)+.btn:active:focus-visible {
    box-shadow: none;
    outline: none;
}

.top-one__language-sort .bootstrap-select .dropdown-toggle:focus,
.top-one__language-sort .bootstrap-select&gt;select.mobile-device:focus+.dropdown-toggle {
    outline: 0 dotted transparent !important;
    outline: 0px auto transparent !important;
    outline-offset: -2px;
}

.top-one__language-sort .filter-option-inner-inner {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.top-one__language-sort .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    vertical-align: auto;
    content: "\e920";
    font-family: var(--title-font) !important;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
}

.top-one--two {
    background-color: #F3F8F6;
}

@media (max-width: 991px) {
    .top-one--two {
        display: none;
    }
}

.top-one--two .container-fluid {
    max-width: 1830px;
    margin-left: auto;
    margin-right: auto;
}

.top-one--two .top-one__inner {
    background-color: var(--theme-color-2);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0px;
    max-width: 100%;
}

.top-one--two .top-one__info__item+.top-one__social {
    margin-left: 60px;
}

.top-one--two .top-one__info__item i {
    margin-right: 8px;
}

.site-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff !important;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    span {
        font-size: 18px;
    }
}

.site-logo img {
    border-radius: 10px;
    width: 87px;
    background-color: var(--theme-color-2);
}

.site_name {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 21px;
    font-family: var(--title-font);
    text-align: center;
    color: var(--theme-color-2);
}

.site_name span {
    font-size: 24px;
    color: #222;
}

footer .site-logo {
    justify-content: center;
    background: none;
    padding: 0;
    margin: 0;
    .site_name {
        text-align: left;
    }
}

footer .site-logo img {
    width: 145px;
    background-color: #fff;
}

footer .site_name span {
    color: #c9c9c9;
}

.cs_service_card.cs_style_2 {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .cs_service_card.cs_style_2 {
        height: 208px;
    }
}

@media (max-width: 767px) {
    .cs_service_card.cs_style_2 {
        height: 208px;
    }
}

.cs_service_card.cs_style_2 .cs_service_card_in {
    position: relative;
    z-index: 1;
}

.cs_service_card.cs_style_2 .cs_service_card_bg {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .cs_service_card.cs_style_2 .cs_service_card_bg svg {
        width: 257px;
        height: 208px;
    }
}

@media (max-width: 767px) {
    .cs_service_card.cs_style_2 .cs_service_card_bg svg {
        width: 257px;
        height: 208px;
    }
}

.cs_service_card.cs_style_2 .cs_service_card_shape_1 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.16;
}

.cs_service_card.cs_style_2 .cs_service_card_shape_2 {
    position: absolute;
    bottom: 30px;
    left: 0;
    opacity: 0.16;
}

.cs_service_card.cs_style_2 img {
    display: inline-block;
}

.cs_service_card.cs_style_2 .cs_service_card_icon img,
.cs_service_card.cs_style_2 .cs_service_card_title,
.cs_service_card.cs_style_2 .cs_service_card_bg svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cs_service_card.cs_style_2 .cs_service_card_icon img {
    height: 60px;
}

.cs_service_card_icon svg {
    width: 70px;
    fill: var(--theme-color-2);
}

.cs_mb_20 {
    margin-bottom: 20px;
}

.cs_service_card_title {
    font-size: 23px;
    font-weight: 800;
    font-family: var(--title-font);
}

/*services pages*/

.single-service-details {
    padding: 20px;
    background-color: #eeeeee;
    border-radius: 10px;
}

.single-service-details img {
    width: 100%;
    margin-bottom: 20px;
}

.single-service-details h3,
.single-service-details .h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/*=================about us section=============*/

.content-area .content-box {
    border-radius: 20px;
    padding: 0px;
    padding: 10px 20px;
    position: relative;
}

.content-area .content-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 7px 0px rgb(22 22 22 / 19%);
    border-radius: 10px;
    padding: 10px;
}

.appoinment-form-wrap input.form-control.style,
.appoinment-form-wrap select.form-select.style,
.appoinment-form-wrap textarea.form-control.style {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    background: #f6f6f6;
    border: 0;
    outline: 0;
    width: 100%;
}

.appoinment-form-wrap {
    background: #fff;
    padding: 55px;
}

.popular-routes {
    padding: 6px 0;
    border-top: 2px solid #fff;
    color: #fff;
}

.popular-routes .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.popular-routes ul li {
    width: auto;
    padding-inline: 5px;
}

.popular-routes ul li a {
    color: #fff;
    display: block;
    padding: 1px 0;
    text-transform: capitalize;
    font-size: 12px;
    position: relative;
}

.popular-routes ul li a:after {
    content: '|';
    position: absolute;
    right: -9px;
    font-size: 80%;
    top: 50%;
    transform: translateY(-50%);
}

.popular-routes .title:before,
.popular-routes .title:after {
    content: '';
    height: 3px;
    width: 60px;
    background-color: #fff;
    font-weight: 550;
    position: absolute;
    bottom: 0;
    left: 0;
}

.popular-routes .title:after {
    left: 65px;
    width: 10px;
}

/*exclusive-area*/

.table-borderless,
.table-borderless tbody,
.table-borderless tr,
.table-borderless th,
.table-borderless td {
    border: none;
    padding: 5px 0;
}

.exclusive-area .card {
    border: none;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.exclusive-area .card .card-header {
    text-align: center;
}

.exclusive-area .card .card-title {
    background: var(--theme-color-2);
    display: inline-block;
    padding: 12px 30px;
    margin: 0;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 0 40px 40px 0;
    font-family: var(--title-font);
}

.exclusive-area .card b {
    color: #000;
}

/*******************************
********************************
******Cab Service Section*******
********************************
********************************
********************************/

.cab-service-section {
    position: relative;
    display: flex;
}

.guide-box {
    position: relative;
    display: flex;
    padding: 10px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 13px;
    flex-direction: column;
    border: 1px solid #d1d1d1;
}

.guide-box .guide-thumb {
    border-radius: 60px 60px 0 30px;
    overflow: hidden;
    width: 100%;
    height: 171px;
    margin-bottom: 0;
    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.guide-box .guide-thumb img {
    transition: transform 1s cubic-bezier(0.33, 0.02, 0, 0.93);
}

.guide-box .guide-content {
    position: relative;
    z-index: 1;
    background: transparent;
    width: 100%;
    padding: 23.5px 0px 0px;
}

.guide-box .guide-name {
    font-size: 24px;
    font-family: var(--title-font);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 130%;
    transition: all 0.3s ease-in-out;
}

.about-img-01 img {
    object-fit: cover;
}

.guide-box .guide-designation {
    font-size: 16px;
    font-weight: 600;
    line-height: 137.5%;
    letter-spacing: 0.48px;
}

.guide-box:hover .guide-thumb img {
    transform: scale(1.03) translateX(-2%);
}

.guide-box:hover .guide-name {
    color: var(--theme-color-2);
}

@media(max-width:767px) {
    .guide-box {
        flex-direction: column;
    }
    .guide-box .guide-thumb {
        width: 100%;
        max-width: 100%;
    }
    .guide-box .guide-content {
        max-width: 100%;
        padding-bottom: 0;
        padding-top: 12px;
    }
    .guide-box .guide-name {
        font-size: 21px;
        font-weight: 600;
    }
}

@media (max-width: 991px) {
    .faq-section-three {
        padding: 50px 0;
        background: #2f2f2f;
        /* Darker background for smaller screens */
    }
}

.plan-sec {
    margin-right: 60px;
    position: relative;
}

@media (max-width: 1200px) {
    .plan-sec {
        margin-right: 90px;
    }
}

@media (max-width: 992px) {
    .plan-sec {
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .plan-sec {
        margin-right: 0;
    }
}

.plan-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.plan-card:last-child {
    margin-bottom: 0;
}

.plan-card.active {
    background: var(--theme-color-2);
}

.plan-card.active h2 {
    color: #fff;
}

.plan-card.active h2 span {
    color: rgba(255, 255, 255, 0.7);
}

.plan-card.active h5 {
    color: #fff;
}

.plan-card.active p {
    color: rgba(255, 255, 255, 0.7);
}

.plan-card.active .btn {
    background: #fff;
    border-color: #fff;
    color: var(--theme-color-2);
}

.plan-card.active .btn:hover {
    background: var(--theme-color-2);
    border-color: var(--theme-color-2);
}

/*********About_section*********/

.service-thumb-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
    z-index: 1;
    padding-left: 15px;
    padding-bottom: 15px;
}

@media (max-width: 991px) {
    .service-thumb-box {
        padding-left: 7.5px;
        padding-bottom: 7.5px;
    }
}

.service-thumb-box::before {
    position: absolute;
    content: "";
    width: 353px;
    height: 330px;
    border-radius: 20px;
    background: var(--theme-color-2);
    z-index: -1;
    left: 0;
    bottom: 0;
}

.service-thumb-box img {
    border-radius: 20px;
}

.service-content-box {
    padding-left: 40px;
}

@media (max-width: 1199px) {
    .service-content-box {
        padding-left: 0px;
    }
}

.service-content-box .nav-pills {
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 991px) {
    .service-content-box .nav-pills {
        gap: 10px;
    }
}

.service-content-box .nav-pills li {
    width: calc((100% - 40px) / 3);
}

@media (max-width: 991px) {
    .service-content-box .nav-pills li {
        width: calc((100% - 20px) / 3);
    }
}

.service-content-box .nav-pills li .nav-link {
    position: relative;
    border-radius: 100px 100px 10px 10px;
    color: var(--white);
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    padding: 20px 10px 19px;
    margin-bottom: 11px;
}

@media (max-width: 1199px) {
    .service-content-box .nav-pills li .nav-link {
        margin-bottom: 8px;
        padding: 15px 10px 10px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .service-content-box .nav-pills li .nav-link {
        font-size: 12px;
        border-radius: 50px 50px 10px 10px;
    }
}

@media (max-width: 424px) {
    .service-content-box .nav-pills li .nav-link {
        font-size: 11px;
        padding: 8px 2px 8px;
        border-radius: 5px;
    }
}

.service-content-box .nav-pills li .nav-link::after {
    position: absolute;
    content: "";
    height: 5px;
    left: 0;
    right: 0;
    bottom: -11px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .service-content-box .nav-pills li .nav-link::after {
        height: 4px;
        bottom: -8px;
    }
}

.service-content-box .nav-pills li .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
}

.service-content-box .nav-pills li .nav-link.active:hover {
    background: #f8ffe8;
}

.service-content-box .nav-pills li .nav-link.active::after {
    background-color: var(--theme-color-2);
}

.service-content-box .nav-pills li .nav-link:hover {
    background: #f8ffe8;
}

.service-content-box .service-title {
    margin-bottom: 18px;
}

@media (min-width: 1400px) {
    .service-content-box .service-title {
        font-size: 36px;
    }
}

.service-content-box p {
    color: #e3e3e3;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 162.5%;
    letter-spacing: 0.32px;
    text-transform: capitalize;
}

.service-content-box .service-info {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 1199px) {
    .service-content-box .service-info {
        gap: 20px;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .service-content-box .service-info {
        flex-direction: column;
    }
}

.service-content-box .service-info .jurny-info {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 370px;
}

@media (max-width: 991px) {
    .service-content-box .service-info .jurny-info {
        gap: 10px;
    }
}

.service-content-box .service-info .jurny-info .jurny-number {
    color: var(--theme-color-2);
    font-weight: 600;
    line-height: 53.333%;
    text-transform: capitalize;
    font-family: var(--body-font);
    display: flex;
    align-items: center;
}

.service-content-box .service-info .jurny-info .jurny-number em {
    font-style: normal;
}

@media (min-width: 1400px) {
    .service-content-box .service-info .jurny-info .jurny-number {
        font-size: 45px;
    }
}

.service-content-box .service-info .jurny-info .jurny-number .odometer-inside {
    display: flex;
    align-items: center;
}

.service-content-box .service-info .jurny-info .title {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.6px;
    text-transform: capitalize;
}

@media (min-width: 1400px) {
    .service-content-box .service-info .jurny-info .title {
        font-size: 20px;
    }
}

.service-content-box .service-info .info-download-area {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 22px;
}

@media (max-width: 991px) {
    .service-content-box .service-info .info-download-area {
        margin-top: 15px;
        gap: 15px;
    }
}

.service-content-box .service-info .info-download-area .download-img {
    padding-left: 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-content-box .service-info .info-download-area .download-img img {
    overflow: hidden;
    border-radius: 19px;
    border: 4px solid rgba(255, 255, 255, 0.7);
}

.service-content-box .service-info .info-download-area .download-img::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 40px;
    background: var(--theme-color-2);
    border-radius: 50%;
    z-index: -1;
}

.service-content-box .service-info .info-download-area .download-info h6 {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 155.556%;
    font-family: var(--body-font);
}

.service-content-box .service-info .info-download-area .download-info a {
    display: inline-grid;
    margin-top: 10px;
    place-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    color: #222;
}

.service-content-box .service-img {
    position: relative;
    border-radius: 19px;
    background: var(--theme-color-2);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
    max-width: 230px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .service-content-box .service-img {
        max-width: 100%;
    }
}

.service-content-box .service-img img {
    object-fit: cover;
}

.service-content-box .service-img img:nth-child(1) {
    height: 100%;
}

@media (max-width: 575px) {
    .service-content-box .service-img img:nth-child(1) {
        width: 100%;
    }
}

.service-content-box .service-img img:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title-area {
    margin-bottom: 40px;
}

.sec-subtitle {
    text-transform: uppercase;
    display: block;
    color: var(--theme-color-2);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px 0;
}

.text-white-color {
    color: var(--white);
}

.animate-parachute {
    transform-origin: center top;
    animation: parachuteFloat3D 5s infinite ease-in-out;
}

@keyframes parachuteFloat3D {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    }
    20% {
        transform: translate3d(-8px, -8px, 5px) rotateX(5deg) rotateY(-5deg);
    }
    40% {
        transform: translate3d(8px, -4px, -5px) rotateX(-5deg) rotateY(5deg);
    }
    60% {
        transform: translate3d(-6px, 6px, 3px) rotateX(3deg) rotateY(-3deg);
    }
    80% {
        transform: translate3d(6px, 4px, -3px) rotateX(-3deg) rotateY(3deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    }
}

.about-section-three {
    background-color: rgba(29, 146, 205, 0.1019607843);
    .row.align-items-center{
        align-items: normal !important;
    }
}
.about-car{
    height: 100%;
    max-height: 700px;
}
.about-img-01{
    height: 100%;
}

.main_part {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #d1d1d1;
    img {
        border-radius: 10px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    p{
        font-weight: 500;
        strong{
            font-weight: 800;
            display: inline-block;
        }
        line-height: 1.3;
    }
    ul{
        padding-left: 1.8rem;
        margin-bottom: 1rem;
        li{
            display: list-item;
            font-weight: 600;
            list-style: disc;
        }
    }
}

.slicknav_menu{
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--theme-color);
}

.slicknav_menu ul{
    margin: 5px 0;
}

.slicknav_menu ul ul{
    margin: 0;
    max-height: 400px;
    overflow: auto;
    background: #005306;
    width: 90%;
    margin-inline: auto;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    padding: 6px 20px;
    color: var(--white);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
    background-color: transparent;
    color: var(--theme-color);
}

.slicknav_menu ul ul li a{
    padding: 6px 20px 6px 30px;
}

.slicknav_arrow{
    font-size: 0 !important;
}

.slicknav_arrow:after{
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open &gt; a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
    color: var(--theme-color);
}
/*************************************
New Css
*************************************/

.theme-btn {
  background: var(--theme-color);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 35px;
  padding-right: 5px;
  border-radius: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.theme-btn i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme-color);
  margin-left: 35px;
  transition: all 0.4s ease-in-out;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover{
    color: #Fff;
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white);
}
.theme-btn.bg-header {
  background-color: var(--header);
}
.theme-btn.bg-header::before, .theme-btn.bg-header::after {
  background-color: var(--white);
}
.theme-btn.bg-header i {
  background-color: var(--theme-color);
  color: var(--white);
}
.theme-btn.bg-header:hover {
  color: var(--header);
}
.theme-btn.theme-btn-2 {
  background: var(--theme-color-2);
}
.theme-btn.theme-btn-2 i {
  color: var(--theme-color-2);
}
.theme-btn.theme-btn-2:hover::before, .theme-btn.theme-btn-2:hover::after {
  width: 100%;
}
.theme-btn.theme-btn-2:hover i {
  background: var(--theme-color-2);
  color: var(--white);
}

.link-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
}

/* --------------------------------------------
    Template Default Fonts &amp; Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

h1 {
  font-size: 150px;
  font-weight: 700;
  line-height: 127%;
}

h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 121%;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 140%;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme-color);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em var(--careox-heading-font, "Nunito Sans", sans-serif), "Rubik", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme-color);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  transition: 0.3s;
}
.header-search-bar.search-open {
  top: 0;
}

.contact-search-form-box {
  margin-top: 50px;
}
.contact-search-form-box form {
  position: relative;
}
.contact-search-form-box form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 18px;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.search-bar .contact-search-form-box input {
  border: none;
  width: 100%;
  outline: none;
  color: var(--header);
  border-bottom: 1px solid var(--border);
  font-size: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .search-bar .contact-search-form-box input {
    font-size: 22px;
  }
}
.search-bar .contact-search-form-box input::placeholder {
  color: var(--header);
}
.search-bar .contact-search-form-box i {
  color: var(--theme-color);
}
.search-bar .contact-search-form-box p {
  color: #666C78;
  padding-top: 15px;
}
.search-bar .search-bar-title {
  font-size: 25px;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}
@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}
.section-title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .section-title span {
    margin-bottom: 5px;
  }
}
.section-title span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color);
  width: 37px;
  top: 13px;
}
.section-title span.text-white-style {
  color: var(--white);
}
.section-title span.text-white-style::before {
  background-color: var(--white);
}
.section-title.style-2 span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color-2);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
.section-title.style-2 span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color-2);
  width: 37px;
  top: 14px;
}
.section-title.style-2 span.style-2::before {
  background-color: var(--white);
}
.section-title.style-2 h2 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-title p {
    margin-top: 0.5rem !important;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .section-title-area {
    gap: 20px;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .section-title-area .theme-btn {
    display: none;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.sect-bg {
  background-color: rgb(239, 238, 250);
}

.footer-bg {
  background-color: var(--header);
}

.section-bg-2 {
  background: rgba(86, 109, 251, 0.1);
}

.section-padding {
  padding: 40px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 38px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 35px 0;
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes arryUpDown {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.animation__arryUpDown {
  animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }
  20% {
    opacity: 1;
    transform: translateX(-90);
  }
  80% {
    opacity: 1;
    transform: translateX(90);
  }
  100% {
    opacity: 0;
    transform: translateX(150);
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }
  20% {
    opacity: 1;
    transform: translateX(-90);
  }
  80% {
    opacity: 1;
    transform: translateX(90);
  }
  100% {
    opacity: 0;
    transform: translateX(150);
  }
}
/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
@-webkit-keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}
@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  font-family: "Rubik", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}
.header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 280px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  padding: 30px 30px;
  max-height: 400px;
  overflow: auto;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 15px;
  font-weight: 500;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: capitalize;
  font-family: "Rubik", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover &gt; a {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li .submenu li:hover &gt; a::after {
  color: var(--theme-color);
}
.header-main .main-menu ul li .submenu li:hover &gt; .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown &gt; a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-color);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  overflow: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li:hover &gt; a {
  color: var(--theme-color);
}
.header-main .main-menu ul li:hover &gt; a::after {
  color: var(--theme-color);
}
.header-main .main-menu ul li:hover &gt; .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 50px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 25px;
  color: var(--header);
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-section-3 .header-2 {
  position: static;
}
.header-section-3.style-2 {
  position: static;
}

.header-top-section {
  background: #1E2023;
  padding: 8px 0;
}
@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper.style-2 p a {
  color: var(--theme-color-2);
}
.header-top-wrapper p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.header-top-wrapper p a {
  color: var(--theme-color);
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}
.header-top-wrapper .contact-right {
  display: flex;
  align-items: center;
  gap: 55px;
}
.header-top-wrapper .contact-right li {
  color: var(--white);
}
.header-top-wrapper .contact-right li a {
  color: var(--white);
}
.header-top-wrapper .contact-right li i {
  margin-right: 5px;
  color: var(--theme-color);
}
.header-top-wrapper .flag-wrap {
  position: relative;
  max-width: 106px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .header-top-wrapper .flag-wrap {
    display: none;
  }
}
.header-top-wrapper .flag-wrap .nice-select {
  padding: 0 0 0 45px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
}
.header-top-wrapper .flag-wrap .nice-select span {
  font-weight: 400;
}
.header-top-wrapper .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.header-top-wrapper .flag-wrap .nice-select .option {
  border: none;
  background-color: #fff;
}
.header-top-wrapper .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.header-top-wrapper .flag-wrap .nice-select::after {
  right: 75px;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 8px;
  height: 8px;
  top: 17px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}
.header-top-wrapper .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
.header-top-wrapper .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-top-wrapper .flag-wrap .flag {
    display: none;
  }
}
.header-top-wrapper .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}
.header-top-wrapper .social-icon {
  gap: 15px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .header-top-wrapper .social-icon {
    display: none !important;
  }
}
.header-top-wrapper .social-icon a {
  color: var(--white);
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme-color);
}
.header-top-wrapper .right-flag {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1600px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -450px;
  }
}
@media (max-width: 1399px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -560px;
  }
}
.header-1 .header-main {
  padding: 0 0;
}
.header-1 .header-button .theme-btn {
  padding: 35px 70px;
}
@media (max-width: 1399px) {
  .header-1 .header-button .theme-btn {
    display: none;
  }
}
.header-1 .mega-menu-wrapper {
  background-color: var(--white);
  padding-left: 40px;
}
@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding-left: 25px;
  }
}
.header-1 .container-fluid {
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 0;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-1 .header-left .social-icon {
  gap: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 35px;
}
@media (max-width: 1399px) {
  .header-1 .header-left .social-icon {
    display: none !important;
  }
}
.header-1 .header-left .social-icon a {
  color: var(--header);
}
.header-1 .header-left .social-icon a:hover {
  color: var(--theme-color);
}
.header-1 .sidebar__toggle {
  width: 85px;
  height: 84px;
  line-height: 84px;
  text-align: center;
  background: #1E2023;
}

.header-2 {    
    position: relative;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: #fff;
    border-bottom: 2px solid var(--theme-color);
}
.header-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .header-logo-2 {
  display: none;
}
.header-2 .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
}
@media (max-width: 1199px) {
  .header-2 .header-main {
    padding: 5px 0;
  }
}
.header-2 .header-main .main-menu ul {
  margin-bottom: 0;
}
/*.header-2 .header-main .main-menu ul li a {
  color: var(--white);
}*/
.header-2 .header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.header-2 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover &gt; a {
  color: var(--theme-color) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover &gt; a::after {
  color: var(--theme-color);
}
.header-2 .header-main .main-menu ul li:hover &gt; a {
  color: var(--theme-color);
}
.header-2 .header-main .main-menu ul li:hover &gt; a::after {
  color: var(--theme-color);
}
/*.header-2 .header-main .sidebar__toggle {
  color: var(--white);
}*/
.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-2 .header-right .header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .header-2 .header-right .header-contact {
    display: none;
  }
}
.header-2 .header-right .header-contact .search-toggle {
  color: var(--white);
}
.header-2 .header-right .header-contact .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-2 .header-right .header-contact .info-items .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .content {
    text-align: center;
  }
}
.header-2 .header-right .header-contact .info-items .content span {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 500;
}
.header-2 .header-right .header-contact .info-items .content h6 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  color: var(--white);
}
.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--white);
}
.header-2 .header-right .flag-wrap {
  position: relative;
  max-width: 106px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  height: 85px;
  line-height: 85px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .header-2 .header-right .flag-wrap {
    display: none;
  }
}
.header-2 .header-right .flag-wrap .nice-select {
  padding: 0 0 0 45px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
}
.header-2 .header-right .flag-wrap .nice-select span {
  font-weight: 400;
}
.header-2 .header-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.header-2 .header-right .flag-wrap .nice-select .option {
  border: none;
  background-color: #fff;
}
.header-2 .header-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.header-2 .header-right .flag-wrap .nice-select::after {
  right: 75px;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 8px;
  height: 8px;
  top: 43px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}
.header-2 .header-right .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
.header-2 .header-right .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-2 .header-right .flag-wrap .flag {
    display: none;
  }
}
.header-2 .header-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}
.header-2 .header-right .social-icon {
  gap: 20px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .header-2 .header-right .social-icon {
    display: none !important;
  }
}
.header-2 .header-right .social-icon a {
  color: var(--white);
}
.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}
.header-2.header-4 {
  position: static;
  border: none;
}
.header-2.header-4 .header-main {
  padding: 5px 0;
}
.header-2.header-4 .header-main .main-menu ul li a {
  color: var(--header);
}
.header-2.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}
.header-2.header-4 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-2.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2.header-4 .header-main .main-menu ul li .submenu li:hover &gt; a {
  color: var(--theme-color-2) !important;
}
.header-2.header-4 .header-main .main-menu ul li .submenu li:hover &gt; a::after {
  color: var(--theme-color-2);
}
.header-2.header-4 .header-main .main-menu ul li:hover &gt; a {
  color: var(--theme-color-2);
}
.header-2.header-4 .header-main .main-menu ul li:hover &gt; a::after {
  color: var(--theme-color-2);
}
.header-2.header-4 .header-main .sidebar__toggle {
  color: var(--header);
}
.header-2.header-4 .search-header {
  position: relative;
}
.header-2.header-4 .search-header .form {
  margin: 0;
  padding: 0;
  height: 0;
}
.header-2.header-4 .search-header input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(30, 32, 35, 0.19);
  padding: 18px 20px;
  line-height: 1;
  color: var(--text);
}
.header-2.header-4 .search-header i {
  position: absolute;
  top: 18px;
  right: 20px;
}

.header-middle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 0;
  background: #1E2023;
  margin-bottom: -57px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .header-middle-wrapper {
    display: none;
  }
}
.header-middle-wrapper .left-shape {
  position: absolute;
  top: 1px;
  left: -23px;
}
.header-middle-wrapper .right-shape {
  position: absolute;
  top: 1px;
  right: -23px;
}
.header-middle-wrapper .header-middle-wrapper-info {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}
@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .content {
    text-align: center;
  }
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: rgba(255, 255, 255, 0.69);
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 a {
  color: rgba(255, 255, 255, 0.69);
}
.header-middle-wrapper .theme-btn {
  padding: 40px 50px;
}
.header-middle-wrapper .theme-btn::before, .header-middle-wrapper .theme-btn::after {
  background-color: var(--white);
}
.header-middle-wrapper .theme-btn:hover {
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(--box-shadow);
}
.sticky.header-2 .header-logo {
  display: none;
}
.sticky.header-2 .header-logo-2 {
  display: block;
}
.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.sticky.header-2 .header-main .main-menu ul li:hover &gt; a {
  color: var(--theme-color);
}
.sticky.header-2 .header-main .main-menu ul li:hover &gt; a::after {
  color: var(--theme-color);
}
.sticky.header-2 .header-main .sidebar__toggle {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .search-toggle {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .icon {
  background-color: var(--theme-color);
  color: var(--white);
}
.sticky.header-2 .header-right .header-contact .info-items .content span {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .content h6 {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--header);
}
.sticky.header-2 .header-right .flag-wrap {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.sticky.header-2 .header-right .flag-wrap .nice-select span {
  font-weight: 400;
  color: var(--header);
}
.sticky.header-2 .header-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.sticky.header-2 .header-right .flag-wrap .nice-select .option {
  background-color: #fff;
}
.sticky.header-2 .header-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.sticky.header-2 .header-right .flag-wrap .nice-select::after {
  border-bottom: 1px solid transparent;
  border-color: var(--header);
  border-right: 1px solid var(--header);
}
.sticky.header-2 .header-right .flag-wrap .nice-select span {
  color: var(--header);
}
.sticky.header-2 .header-right .social-icon a {
  color: var(--header);
}
.sticky.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}
.sticky.header-5 {
  position: relative;
}
.sticky.header-5 .header-logo-4 {
  display: block !important;
}

.header-section-5 {
  position: relative;
  z-index: 9999;
  margin-bottom: -68px;
}
@media (max-width: 1199px) {
  .header-section-5 {
    margin-bottom: 0;
    background-color: var(--theme-color-2);
  }
}
.header-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1E2023;
  z-index: -1;
  height: 59%;
}
@media (max-width: 1199px) {
  .header-section-5::before {
    display: none;
  }
}
.header-section-5 .header-logo-3 {
  padding-top: 25px;
}
@media (max-width: 1199px) {
  .header-section-5 .header-logo-3 {
    padding-top: 10px;
  }
}
.header-section-5 .header-right-wrapper-5 {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.header-section-5 .header-right-wrapper-5 .right-header-items {
  flex-basis: 80%;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 {
  background-color: var(--theme-color-2);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main {
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main {
    padding: 14px 0;
  }
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul {
  margin-bottom: 0;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li a:hover {
  color: var(--white) !important;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li:hover &gt; a {
  color: var(--theme-color-2) !important;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li:hover &gt; a::after {
  color: var(--theme-color-2);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li:hover &gt; a {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li:hover &gt; a::after {
  color: var(--theme-color);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .sidebar__toggle {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .search-toggle {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info {
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: var(--white);
  padding: 18px 30px;
}
@media (max-width: 1399px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info {
    display: none;
  }
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}
@media (max-width: 575px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content {
    text-align: center;
  }
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content h5 {
  font-size: 18px;
  color: var(--header);
  margin-bottom: 5px;
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: rgba(30, 32, 35, 0.79);
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content h6 a {
  color: rgba(30, 32, 35, 0.79);
}

.header-5 .header-logo-4 {
  display: none;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas-title {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
  margin-bottom: 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
  margin-top: 30px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .theme-btn {
  width: 100%;
  padding: 24px 30px;
  text-align: center;
  margin-bottom: 20px;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-section {
  position: relative;
}
.breadcrumb-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(4, 2, 0, 0.73);
}

.page-heading {
  padding: 265px 0 105px;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .page-heading {
    padding: 180px 0 105px;
  }
}
.page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}
.page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 400;
  position: relative;
}
.page-heading .breadcrumb-list li a {
  color: var(--white);
}
.page-heading .breadcrumb-list li:not(:last-child)::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 30px;
  background-color: var(--theme-color);
  top: 13px;
  left: 58px;
}
.page-heading h2 {
  color: var(--white);
  font-weight: 700;
}
@media (max-width: 575px) {
  .page-heading h2 {
    font-size: 48px;
  }
}

.error-wrapper .error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-wrapper .error-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .error-wrapper .error-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .error-wrapper .error-content {
    text-align: center;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav &gt; ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav &gt; ul .homemenu {
  position: relative;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav &gt; ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}
.mean-container .mean-nav ul li a.border-none {
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}
.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li &gt; a &gt; i {
  display: none;
}

.mean-container .mean-nav ul li &gt; a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav &gt; ul &gt; li:first-child &gt; a {
  border-top: 0;
}


.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  padding: 120px 80px 0;
  position: relative;
  z-index: 9;
  width: calc(100% - 130px);
}
@media (max-width: 1899px) {
  .hero-1 {
    padding: 120px 50px 0;
    width: initial;
  }
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 170px 40px 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 200px 30px 0;
  }
}
.hero-1 .hero-text {
  letter-spacing: -4.8px;
  -webkit-text-stroke: 1px var(--theme-color);
  -webkit-text-fill-color: transparent;
  font-size: 160px;
  font-weight: 700;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.25) 50%, #fff 50%, rgba(255, 255, 255, 0.25) 70%);
  -webkit-mask-size: 200%;
  position: absolute;
  line-height: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  top: 20%;
}
.hero-1 .hero-arrow-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-1 .hero-arrow-shape img {
  width: 100%;
  height: 100%;
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(23, 7, 1, 0.78);
  z-index: -1;
}
.hero-1 .hero-content {
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}
.hero-1 .hero-content h1 {
  color: var(--white);
  line-height: 97%;
}
@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 105px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 130%;
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
.hero-1 .hero-content h1 span {
  font-size: 88px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 span {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 span {
    font-size: 48px;
  }
}
.hero-1 .hero-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content .theme-btn {
    margin-top: 30px;
  }
}
.hero-1 .hero-image {
  text-align: right;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-1 .hero-image {
    text-align: center;
  }
}
@media (max-width: 1600px) {
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.animation-infinite2 {
  animation: ShapeAnim2 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim2 {
  0% {
    background-position: top left;
  }
  100% {
    background-position: 2000px left bottom;
  }
}
.hero-main-section {
  position: relative;
  z-index: 9;
}
.hero-main-section .line-shape {
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.hero-main-section .line-2 {
  position: absolute;
  height: 100%;
  width: 69px;
  background-repeat: repeat;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  animation: ShapeAnim2 80s linear infinite;
}
.hero-main-section .hero-list-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: rotate(-90deg);
  position: absolute;
  top: 46%;
  right: -11%;
  z-index: 99;
}
@media (max-width: 1899px) {
  .hero-main-section .hero-list-contact {
    display: none;
  }
}
.hero-main-section .hero-list-contact li {
  font-size: 18px;
  color: #616161;
  font-weight: 700;
}
.hero-main-section .hero-list-contact li a {
  font-weight: 500;
  color: rgba(97, 97, 97, 0.85);
}

.hero-section-2 {
  position: relative;
}
.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-2 .array-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  right: 50px;
  z-index: 99;
}
@media (max-width: 1199px) {
  .hero-section-2 .array-buttons {
    display: none;
  }
}
.hero-section-2 .array-buttons .array-next, .hero-section-2 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid var(--theme-color);
  color: var(--white);
  background-color: transparent;
}
.hero-section-2 .array-buttons .array-next:hover, .hero-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.hero-section-4 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-4 .array-buttons {
  display: grid;
  align-items: center;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 99;
  gap: 15px;
}
@media (max-width: 1899px) {
  .hero-section-4 .array-buttons {
    display: none;
  }
}
.hero-section-4 .array-buttons .array-next, .hero-section-4 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
  background-color: transparent;
}
.hero-section-4 .array-buttons .array-next:hover, .hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-prev {
  background: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
}
.hero-section-4 .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-2 {
  padding: 147px 0 280px;
  position: relative;
}
.hero-2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-2 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(4, 2, 0, 0.3);
}
.hero-2 .hero-content {
  position: relative;
  z-index: 99;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-2 .hero-content h1 {
  font-size: 60px;
  color: var(--white);
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 25px;
  }
}
.hero-2 .hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  max-width: 600px;
  margin: 15px auto 0;
}
@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 18px;
  }
}
.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-2 .hero-content .hero-button .theme-btn {
  border: 1px solid var(--theme-color);
}
.hero-2 .hero-content .hero-button .theme-btn:hover {
  border: 1px solid var(--header);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2 {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2 i {
  background-color: var(--theme-color);
  color: var(--white);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
  border: 1px solid var(--theme-color);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before, .hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--theme-color);
}
.hero-2 .bar-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
@media (max-width: 1399px) {
  .hero-2 .bar-shape {
    display: none;
  }
}
.hero-2 .bar-shape img {
  height: 100%;
}

.hero-3 {
  position: relative;
  padding: 430px 100px 130px;
}
@media (max-width: 1600px) {
  .hero-3 {
    padding: 200px 30px 100px;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-3 .hero-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .hero-3 .hero-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-3 .hero-wrapper .left-content {
  position: relative;
}
.hero-3 .hero-wrapper .left-content h1 {
  color: var(--white);
  font-size: 96px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 42px;
  }
}
.hero-3 .hero-wrapper .right-content {
  position: relative;
}
.hero-3 .hero-wrapper .right-content p {
  color: var(--white);
}
.hero-3 .hero-wrapper .right-content .hero-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn {
    flex-wrap: wrap;
  }
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text .title {
  margin-bottom: 5px;
  color: var(--white);
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
    text-align: left;
  }
}

.hero-4 {
  position: relative;
}
.hero-4 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-4 .left-shape {
    display: none;
  }
}
.hero-4 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-4 .right-shape {
    display: none;
  }
}
.hero-4 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-4 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-4 .hero-content {
  position: relative;
  z-index: 99;
  padding: 100px 0 100px;
}

@media (max-width: 767px) {
  .hero-4 .hero-content {
    padding: 65px 0 130px;
  }
}
.hero-4 .hero-content h1 {
  color: var(--white);
  font-size: 60px;
  letter-spacing: -1.92px;
  font-weight: 700;
  line-height: 120%;
}
.hero-4 .hero-content h1 .client-info {
  display: inline-block;
  border-radius: 101px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(21.8999996185px);
  padding: 0 30px;
  line-height: 1;
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 .client-info {
    padding: 10px 20px;
  }
}
.hero-4 .hero-content h1 .client-info img {
  margin-top: -15px;
}
.hero-4 .hero-content h1 .text-stoke {
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
}
.hero-4 .hero-content p {
  font-size: 20px;
  max-width: 620px;
  color: var(--white);
  padding-left: 20px;
  border-left: 5px solid var(--theme-color-2);
  margin-top: 40px;
}
@media (max-width: 575px) {
  .hero-4 .hero-content p {
    font-size: 18px;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 25px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button .theme-btn {
  border: 1px solid transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  color: var(--white);
  background-color: transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2::before, .hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: var(--theme-color-2);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.hero-5 {
  position: relative;
}
.hero-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(205deg, rgba(4, 2, 0, 0) 15.95%, rgba(4, 2, 0, 0.82) 56.25%);
}
.hero-5 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .hero-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-5 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .container-fluid {
    padding: 0 30px;
  }
}
.hero-5 .hero-content {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-5 .hero-content {
    padding-top: 120px;
    margin: 0 auto;
    text-align: center;
  }
}
.hero-5 .hero-content h1 {
  font-size: 96px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 76px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 48px;
  }
}
.hero-5 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .hero-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.hero-5 .hero-content .hero-button p {
  color: var(--white);
  font-weight: 600;
  max-width: 468px;
}
.hero-5 .hero-content .hero-box {
  position: absolute;
  bottom: -90%;
  padding: 30px 50px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-box {
    display: none;
  }
}
.hero-5 .hero-content .hero-box .icon {
  font-size: 89px;
  color: var(--theme-color-2);
}
.hero-5 .hero-content .hero-box .content h2 {
  color: var(--theme-color-2);
}
.hero-5 .hero-content .hero-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.hero-5 .hero-image {
  position: relative;
}
.hero-5 .hero-image img {
  width: 100%;
  height: 100%;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .counter-wrapper {
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper .counter-items {
  max-width: 265px;
}
.counter-wrapper .counter-items h2 {
  font-size: 72px;
  font-weight: 700;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .counter-wrapper .counter-items h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-items p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 20px;
}
.counter-wrapper .counter-items h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  margin-top: 20px;
}
.counter-wrapper .counter-items:hover h2 {
  color: var(--theme-color) !important;
  -webkit-text-stroke: initial !important;
}

.choose-us-section {
  position: relative;
  margin: 0 90px 36px;
}
@media (max-width: 1600px) {
  .choose-us-section {
    margin: 0 50px;
  }
}
@media (max-width: 1399px) {
  .choose-us-section {
    margin: 0 0;
  }
}
.choose-us-section:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.96);
}
.choose-us-section .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 37px;
}
@media (max-width: 1199px) {
  .choose-us-section .line-shape {
    display: none;
  }
}
.choose-us-section .circle-shape {
  position: absolute;
  left: -5%;
  bottom: -20%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .choose-us-section .circle-shape {
    display: none;
  }
}

.choose-us-wrapper {
  position: relative;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.choose-us-wrapper .section-title p {
  max-width: 650px;
  color: var(--white);
  margin-top: 30px;
}
.choose-us-wrapper .theme-btn {
  border: 1px solid var(--theme-color);
  background: transparent;
}
.choose-us-wrapper .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.choose-us-wrapper .theme-btn:hover::before, .choose-us-wrapper .theme-btn:hover::after {
  background-color: var(--theme-color);
}
.choose-us-wrapper .theme-btn:hover i {
  background-color: var(--white);
  color: var(--header);
}
.choose-us-wrapper .choose-us-image {
  position: relative;
  margin-top: 30px;
  margin-right: 50px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-image {
    text-align: center;
  }
}
.choose-us-wrapper .choose-us-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.choose-us-wrapper .choose-us-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
  top: 10px;
  left: -10px;
}
.choose-us-wrapper .choose-us-content {
  position: relative;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-wrap {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-content .choose-us-wrap {
    justify-content: center;
    text-align: center;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon .icon i {
  display: block;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon .text h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .content {
  margin-top: 30px;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .content h5 {
  color: var(--white);
  margin-bottom: 10px;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .content p {
  color: var(--white);
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.vedio-wrapper {
  padding: 280px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .vedio-wrapper {
    padding: 170px 0;
  }
}
@media (max-width: 767px) {
  .vedio-wrapper {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .vedio-wrapper {
    padding: 120px 0;
  }
}
.vedio-wrapper .video {
  position: relative;
}
.vedio-wrapper .video .video-btn {
  width: 164px;
  height: 164px;
  line-height: 164px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color);
  display: inline-block;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 767px) {
  .vedio-wrapper .video .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
.vedio-wrapper .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}
.vedio-wrapper .video .circle-image img {
  animation: cir36 10s linear infinite;
}
.vedio-wrapper .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .vedio-wrapper .watch-text {
    display: none;
  }
}

.vedio-bg-section {
  position: relative;
  background-attachment: fixed;
}
.vedio-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.26);
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 30px;
  gap: 140px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 25px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .choose-us-section-2 .nav {
    gap: 20px;
  }
}
.choose-us-section-2 .nav .nav-item .nav-link {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  position: relative;
}
.choose-us-section-2 .nav .nav-item .nav-link.active {
  color: var(--theme-color);
}
.choose-us-section-2 .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 150px;
  height: 3px;
  content: "";
  background-color: var(--theme-color);
}
@media (max-width: 575px) {
  .choose-us-section-2 .nav .nav-item .nav-link.active::before {
    display: none;
  }
}

.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.choose-us-wrapper-2 .choose-us-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-2 .choose-us-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.choose-us-wrapper-2 .choose-us-content .list-items {
  margin-top: 17px;
}
.choose-us-wrapper-2 .choose-us-content .list-items li {
  font-weight: 500;
  color: var(--header);
}
.choose-us-wrapper-2 .choose-us-content .list-items li i {
  margin-right: 10px;
  color: var(--theme-color);
}
.choose-us-wrapper-2 .choose-us-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.work-process-main-item {
  position: relative;
  margin-top: 30px;
}
.work-process-main-item h2 {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 56px;
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 1199px) {
  .work-process-main-item h2 {
    display: none;
  }
}
.work-process-main-item h2.style-2 {
  right: 14px;
  top: 58px;
}
.work-process-main-item .arrow-shape {
  position: absolute;
  right: -145px;
  top: 60px;
}
@media (max-width: 1199px) {
  .work-process-main-item .arrow-shape {
    display: none;
  }
}
.work-process-main-item .arrow-shape.style-3 {
  top: -40px;
  right: -140px;
}
.work-process-main-item .work-process-item {
  text-align: center;
}
.work-process-main-item .work-process-item .icon {
  width: 112px;
  height: 108px;
  line-height: 120px;
  text-align: center;
  background-color: var(--theme-color);
  margin: 0 auto;
  font-size: 55px;
  color: var(--white);
}
.work-process-main-item .work-process-item .icon i {
  display: block;
}
.work-process-main-item .work-process-item .work-process-content {
  margin-top: 40px;
}
.work-process-main-item .work-process-item .work-process-content h3 {
  color: var(--white);
  margin-bottom: 10px;
}
.work-process-main-item .work-process-item .work-process-content p {
  color: var(--white);
}
.work-process-main-item .work-process-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.work-process-main-item.style-2 h2 {
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
}
.work-process-main-item.style-2 .work-process-item .work-process-content h3 {
  color: var(--header);
}
.work-process-main-item.style-2 .work-process-item .work-process-content p {
  color: var(--text);
}

.work-process-section {
  position: relative;
}
.work-process-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

.choose-us-wrapper-2 .choose-us-content .choose-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-btn {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-btn {
    justify-content: center;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info .text {
    text-align: left !important;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info .text .title {
  margin-bottom: 5px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info .text h6 {
  font-weight: 700;
}
.choose-us-wrapper-2 .choose-us-content .choose-text {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .choose-text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.choose-us-wrapper-2 .choose-us-content p {
  max-width: 570px;
}
.choose-us-wrapper-2 .choose-us-image {
  position: relative;
}
.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-2 .choose-us-image .icon-image {
  position: absolute;
  left: -180px;
  bottom: -80px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image .icon-image {
    left: 50%;
    bottom: initial;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.feature-box-item {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 50px 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .feature-box-item {
    padding: 30px;
  }
}
.feature-box-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 4px solid var(--theme-color);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.feature-box-item .feature-icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.feature-box-item .feature-icon-item .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.feature-box-item .feature-icon-item .icon i {
  display: block;
}
.feature-box-item .feature-icon-item h5 {
  font-weight: 600;
  font-size: 18px;
}
.feature-box-item:hover {
  background-color: #FFF3ED;
}
.feature-box-item:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.feature-box-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .circle-shape {
  position: absolute;
  left: 65px;
  top: 0;
}
@media (max-width: 1399px) {
  .choose-us-section-2 .circle-shape {
    display: none;
  }
}
.choose-us-section-2 .dot-shape {
  position: absolute;
  top: 120px;
  left: 224px;
}
@media (max-width: 1399px) {
  .choose-us-section-2 .dot-shape {
    display: none;
  }
}

.marquee-text-slider-3 {
  background-color: var(--theme-color);
  padding: 24px 0;
}
.marquee-text-slider-3.style-11 {
  background-color: transparent;
  padding: 0;
  margin-top: -25px;
}
.marquee-text-slider-3.style-11 .marquee-text-3 .text-marquee {
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
  line-height: 1;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}
.marquee-text-slider-3.style-11 .marquee-text-3 .marquee-dot {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background-color: transparent;
  display: inline-block;
  border: 2px solid var(--theme-color);
}
.marquee-text-slider-3.style-12 {
  background-color: transparent;
  padding-top: 50px;
  padding-bottom: 120px;
  margin-top: 0;
}
@media (max-width: 1199px) {
  .marquee-text-slider-3.style-12 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .marquee-text-slider-3.style-12 {
    padding-bottom: 80px;
  }
}
.marquee-text-slider-3.style-12 .marquee-text-3 .text-marquee {
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
  line-height: 1;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}
.marquee-text-slider-3.style-12 .marquee-text-3 .marquee-dot {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background-color: transparent;
  display: inline-block;
  border: 2px solid var(--theme-color);
}
.marquee-text-slider-3.style-2 {
  background-color: var(--header);
  margin-top: 0;
  margin-bottom: 120px;
}
.marquee-text-slider-3 .marquee-text-3 {
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-text-slider-3 .marquee-text-3 .text-marquee {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.marquee-text-slider-3 .marquee-text-3 .marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--white);
  display: inline-block;
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .line-shape {
  animation: ShapeAnim 80slinear infinite;
  height: 30px;
  width: 1000%;
  background-repeat: repeat;
  overflow: hidden;
  position: absolute;
  bottom: 0;
}

.feature-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .feature-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .feature-wrapper-3 {
    justify-content: center;
    display: grid;
    text-align: center;
  }
}
.feature-wrapper-3 .icon-items .icon {
  color: var(--theme-color);
  font-size: 78px;
  margin-bottom: 30px;
}
.feature-wrapper-3 .icon-items .icon i {
  display: block;
}
.feature-wrapper-3 .icon-items h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}
.feature-wrapper-3 .icon-items:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.choose-us-wrapper-3 {
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-3 {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-3 {
    margin-top: 10px;
  }
}
.choose-us-wrapper-3 .choose-us-box {
  padding: 40px 25px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  z-index: 1;
  position: relative;
  background: var(--white);
  margin-top: 0;
}
@media (max-width: 767px) {
  .choose-us-wrapper-3 .choose-us-box {
    text-align: center;
  }
}
.choose-us-wrapper-3 .choose-us-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.choose-us-wrapper-3 .choose-us-box.style-margin {
  margin-top: 24px;
}
.choose-us-wrapper-3 .choose-us-box .icon {
  margin-bottom: 30px;
  font-size: 60px;
  color: var(--theme-color);
}
.choose-us-wrapper-3 .choose-us-box .icon i {
  display: block;
}
.choose-us-wrapper-3 .choose-us-box .content h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.choose-us-wrapper-3 .choose-us-box:hover {
  border: 1px solid var(--theme-color);
}
.choose-us-wrapper-3 .choose-us-box:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.choose-us-wrapper-3 .choose-us-box:hover .icon {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-box:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.choose-us-wrapper-3 .choose-us-box:hover .content h5 {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-box:hover .content p {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items {
  width: 100%;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .progress {
  background: rgba(255, 121, 45, 0.28);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color);
  height: 6px;
  width: 0;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-us-thumb {
  margin-top: 80px;
  margin-left: -208px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .choose-us-thumb {
    margin-left: 0;
    margin-top: 30px;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-us-thumb img {
  width: 100%;
  height: 100%;
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
.choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.feature-section-2 {
  position: relative;
}
.feature-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: -50px;
}

.feature-card-items {
  text-align: center;
}
.feature-card-items .icon {
  font-size: 83px;
  color: var(--theme-color-2);
}
.feature-card-items .icon i {
  display: block;
}
.feature-card-items .content {
  margin-top: 35px;
}
.feature-card-items .content h4 {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .feature-card-items .content p br {
    display: none;
  }
}
.feature-card-items .content .link-btn {
  display: inline-block;
  color: var(--theme-color-2);
  margin-top: 30px;
}
.feature-card-items .content .link-btn:hover {
  color: var(--theme-color);
}
.feature-card-items:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.feature-card-items.style-2 .icon {
  color: var(--theme-color);
}
.feature-card-items.style-2 .content .link-btn {
  color: var(--theme-color);
}

.choose-us-wrapper-4 .choose-us-left-content .counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item {
  max-width: 270px;
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h2 {
  font-size: 72px;
  margin-bottom: 15px;
  color: var(--header);
}
@media (max-width: 767px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h2 {
    font-size: 45px;
  }
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item.style-2 h2 {
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--header);
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h5 {
  font-weight: 600;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items {
  width: 100%;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .progress {
  background: rgba(86, 109, 251, 0.28);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color-2);
  height: 6px;
  width: 0;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.choose-us-wrapper-4 .choose-us-right-content {
  margin-left: 90px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-4 .choose-us-right-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-4 .choose-us-right-content .section-title {
    text-align: left;
  }
}
.choose-us-wrapper-4 .choose-us-right-content .list li {
  font-weight: 500;
  color: var(--header);
}
.choose-us-wrapper-4 .choose-us-right-content .list li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.choose-us-wrapper-4 .choose-us-right-content .list li:not(:last-child) {
  margin-bottom: 12px;
}
.choose-us-wrapper-4 .choose-us-right-content .theme-btn {
  margin-top: 30px;
}
.choose-us-wrapper-4.style-2 .choose-us-left-content .progress-wrap .pro-items .progress {
  background: rgba(255, 121, 45, 0.28);
}
.choose-us-wrapper-4.style-2 .choose-us-left-content .progress-wrap .pro-items .progress-value {
  background: var(--theme-color);
}
.choose-us-wrapper-4.style-2 .choose-us-right-content .section-title span {
  color: var(--theme-color);
}
.choose-us-wrapper-4.style-2 .choose-us-right-content .section-title span::before {
  background-color: var(--theme-color);
}
.choose-us-wrapper-4.style-2 .choose-us-right-content .list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.vedio-bg-section-2 {
  position: relative;
  background-attachment: fixed;
}
.vedio-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.26);
}

.vedio-wrapper-2 {
  padding: 280px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .vedio-wrapper-2 {
    padding: 180px 0;
  }
}
@media (max-width: 991px) {
  .vedio-wrapper-2 {
    padding: 140px 0;
  }
}
@media (max-width: 767px) {
  .vedio-wrapper-2 {
    padding: 100px 0;
  }
}
.vedio-wrapper-2 .video {
  position: relative;
}
.vedio-wrapper-2 .video .video-btn {
  width: 164px;
  height: 164px;
  line-height: 164px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color-2);
  display: inline-block;
  text-align: center;
  font-size: 24px;
  z-index: 9;
}
@media (max-width: 767px) {
  .vedio-wrapper-2 .video .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
.vedio-wrapper-2 .video .video-btn.style-2 {
  color: var(--theme-color);
}
.vedio-wrapper-2 .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
  display: none;
}
.vedio-wrapper-2 .video .circle-image img {
  animation: cir36 10s linear infinite;
}
.vedio-wrapper-2 .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1600px) {
  .vedio-wrapper-2 .watch-text {
    display: none;
  }
}

.counter-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .counter-wrapper-3 {
    display: grid;
    justify-content: center;
  }
}
.counter-wrapper-3 .counter-item {
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  padding-right: 100px;
  text-align: center;
}
@media (max-width: 1199px) {
  .counter-wrapper-3 .counter-item {
    padding-right: 0;
    border-right: none;
  }
}
.counter-wrapper-3 .counter-item.style-2 {
  border-right: none;
  padding-right: 0;
}
.counter-wrapper-3 .counter-item .icon {
  font-size: 62px;
  color: var(--theme-color-2);
  margin-bottom: 15px;
}
.counter-wrapper-3 .counter-item h2 {
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color-2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .counter-wrapper-3 .counter-item h2 {
    font-size: 50px;
  }
}
.counter-wrapper-3 .counter-item p {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
.counter-wrapper-3 .counter-item:hover h2 {
  color: var(--theme-color-2) !important;
  -webkit-text-stroke: initial !important;
}

.work-process-wrapper {
  position: relative;
}
.work-process-wrapper .shape-1 {
  position: absolute;
  left: 270px;
  top: -22px;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-1 {
    display: none;
  }
}
.work-process-wrapper .shape-2 {
  position: absolute;
  right: 170px;
  top: -22px;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-2 {
    display: none;
  }
}
.work-process-wrapper .shape-3 {
  position: absolute;
  left: 43%;
  bottom: 37%;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-3 {
    display: none;
  }
}
.work-process-wrapper .work-process-item {
  text-align: center;
  margin-top: 30px;
}
.work-process-wrapper .work-process-item .work-process-image {
  position: relative;
}
.work-process-wrapper .work-process-item .work-process-image img {
  width: 100%;
  height: 100%;
}
.work-process-wrapper .work-process-item .work-process-image .process-number {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color-2);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 1;
}
.work-process-wrapper .work-process-item .content {
  margin-top: 40px;
}
.work-process-wrapper .work-process-item .content h4 {
  margin-bottom: 15px;
}

.work-process-section-2 {
  position: relative;
  margin-top: 25px;
}
.work-process-section-2 .left-shape {
  position: absolute;
  left: -110px;
  top: -180px;
}
@media (max-width: 1199px) {
  .work-process-section-2 .left-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper-5 .choose-us-content .section-title {
    text-align: left;
  }
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-5 .choose-us-content .choose-us-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.choose-us-wrapper-5 .faq-items {
  position: relative;
  z-index: 9;
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-5 .faq-items {
    margin-left: 0;
  }
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 40px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 40px;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding-left: 40px !important;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  color: var(--header);
  cursor: pointer;
  padding: 0;
}
@media (max-width: 575px) {
  .choose-us-wrapper-5 .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
  }
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item .accordion-body {
  padding: 0 0;
  padding-top: 20px;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .choose-us-wrapper-5 .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button::after {
  display: none;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  top: -7px;
  left: 0;
  font-size: 34px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f178";
}

.why-choose-us-section {
  position: relative;
}
.why-choose-us-section .right-shape {
  position: absolute;
  top: -30%;
  right: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section .right-shape {
    display: none;
  }
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 80px;
}
@media (max-width: 1199px) {
  .choose-us-section-2 .right-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-wrapper .section-title {
    text-align: left;
  }
}
.about-wrapper .section-title h2 {
  margin-left: 180px;
}
@media (max-width: 767px) {
  .about-wrapper .section-title h2 {
    margin-left: 0;
  }
}
.about-wrapper .about-image {
  margin-top: 30px;
  margin-left: -30%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image {
    margin-left: 0;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-content {
  margin-top: 30px;
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-box-wrap {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-left: -37%;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-box-wrap {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-box-wrap .about-box-items {
  background-color: var(--header);
  padding: 55px 60px;
  text-align: center;
  max-width: 540px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-box-wrap .about-box-items {
    padding: 30px 20px;
  }
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .client-img {
  border: 2px solid var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .content h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: "Rubik", sans-serif;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.about-wrapper .about-content .about-box-wrap .about-box-items p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.about-wrapper .about-content .about-box-wrap .medal-content {
  text-align: center;
}
.about-wrapper .about-content .about-box-wrap .medal-content h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  margin-top: 20px;
}
.about-wrapper .about-content .about-list {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-list {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-list li {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.about-wrapper .about-content .about-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-content .about-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-btn {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-btn .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 22px;
}
.about-wrapper .about-content .about-btn .icon-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-btn .icon-items span {
  font-size: 14px;
  font-weight: 500;
}
.about-wrapper .about-content .about-btn .icon-items h4 {
  font-size: 18px;
  font-weight: 600;
  font-weight: "Rubik", sans-serif;
}

.about-wrapper-2 {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-top: 55px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-top: 0;
  }
}
.about-wrapper-2 .about-shape {
  position: absolute;
  top: 25px;
  left: 80px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-shape {
    display: none;
  }
}
.about-wrapper-2 .about-image {
  max-width: 555px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: 1000px;
  }
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image .about-image-1 {
  clip-path: polygon(50% 0%, 100% 0, 100% 43%, 100% 81%, 100% 100%, 16% 100%, 0 85%, 0% 43%, 0 0);
  margin-top: 50px;
  height: 644px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-1 {
    margin-top: 0;
  }
}
.about-wrapper-2 .about-image .about-image-2 {
  position: absolute;
  top: -70px;
  right: -100px;
  border: 10px solid var(--white);
  height: 350px;
    width: 300px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-2 {
    top: 0;
    right: 0;
  }
  .about-wrapper-2 .about-image .about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-wrapper-2 .about-image .about-image-2 img {
  clip-path: polygon(0 0, 88% 0, 100% 13%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
    
    object-fit: cover;
}
.about-wrapper-2 .about-image .about-counter {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  box-shadow: 10px 16px 120px rgba(4, 7, 56, 0.12);
  border: 1px solid rgba(30, 32, 35, 0.12);
  text-align: center;
  background-color: var(--white);
  display: block;
  position: absolute;
  bottom: 66px;
  right: -100px;
  padding-top: 50px;
  text-align: center;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-counter {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-counter {
    width: 220px;
    height: 220px;
  }
}
.about-wrapper-2 .about-image .about-counter h2 {
  font-size: 56px;
  font-weight: 800;
  color: var(--theme-color);
}
.about-wrapper-2 .about-image .about-counter p {
  margin-top: 5px;
}
.about-wrapper-2 .about-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
  .about-wrapper-2 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-2 .about-content .about-text {
  margin-top: 20px;
  margin-bottom: 20px;
}
.about-wrapper-2 .about-content .about-list-items {
  background: #FFF3ED;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-2 .about-content .about-list-items ul li {
  font-weight: 500;
  color: var(--header);
}
.about-wrapper-2 .about-content .about-list-items ul li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-list-items ul li i {
  margin-right: 10px;
  color: var(--theme-color);
}
.about-wrapper-2 .about-content .about-button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-button {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}
.about-wrapper-2 .about-content .about-button .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-2 .about-content .about-button .author-icon .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  text-align: center;
  color: var(--white);
  font-size: 26px;
  border-radius: 50%;
  position: relative;
}
.about-wrapper-2 .about-content .about-button .author-icon .content h5 {
  font-weight: 600;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
}
.about-wrapper-2 .about-content .about-button .author-icon .content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.about-wrapper-3 {
  padding-left: 60px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .section-title {
    text-align: left !important;
  }
}
.about-wrapper-3 .left-image {
  max-width: 356px;
  margin-right: -50px;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .left-image {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .left-image {
    max-width: 700px;
  }
}
.about-wrapper-3 .left-image img {
  width: 100%;
  height: 100%;
  transform: rotate(-9.204deg);
}
@media (max-width: 1199px) {
  .about-wrapper-3 .left-image img {
    transform: rotate(0);
    object-fit: cover;
  }
}
.about-wrapper-3 .about-item {
  max-width: 1060px;
  margin: 0 auto;
}
.about-wrapper-3 .about-item .about-text {
  max-width: 630px;
  margin: 40px auto 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .about-text {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .about-text {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.about-wrapper-3 .about-item .list-item {
  display: flex;
  align-items: center;
  gap: 55px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-item .list-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .list-item {
    justify-content: start;
  }
}
.about-wrapper-3 .about-item .list-item ul li {
  font-size: 16px;
  font-weight: 500;
}
.about-wrapper-3 .about-item .list-item ul li i {
  color: var(--theme-color);
  margin-right: 6px;
}
.about-wrapper-3 .about-item .list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-3 .about-item .about-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .about-button {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
    margin-top: 30px;
  }
}
.about-wrapper-3 .about-item .about-button .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-3 .about-item .about-button .author-icon .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  text-align: center;
  color: var(--white);
  font-size: 26px;
  border-radius: 50%;
  position: relative;
}
.about-wrapper-3 .about-item .about-button .author-icon .content h5 {
  font-weight: 600;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
}
.about-wrapper-3 .about-item .about-button .author-icon .content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.about-wrapper-3 .right-image {
  max-width: 356px;
  margin-left: -110px;
  margin-right: 70px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .right-image {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .right-image {
    max-width: 700px;
  }
}
.about-wrapper-3 .right-image img {
  width: 100%;
  height: 100%;
  transform: rotate(15deg);
}
@media (max-width: 1199px) {
  .about-wrapper-3 .right-image img {
    transform: rotate(0);
  }
}

.about-section-3 {
  position: relative;
}
.about-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .about-section-3 .right-shape {
    display: none;
  }
}
.about-section-3.style-2 {
  position: relative;
}
.about-section-3.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: initial;
  bottom: -65%;
  z-index: -1;
}

.about-wrapper-4 .about-image {
  max-width: 570px;
  position: relative;
  padding-left: 30px;
  height: 100%;
}
@media (max-width: 767px) {
  .about-wrapper-4 .about-image {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image {
    max-width: 800px;
  }
}
.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-wrapper-4 .about-image .about-box {
  position: absolute;
  bottom: -30px;
  left: 0;
  padding: 30px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 575px) {
  .about-wrapper-4 .about-image .about-box {
    display: none;
  }
}
.about-wrapper-4 .about-image .about-box .icon {
  font-size: 89px;
  color: var(--theme-color-2);
}
.about-wrapper-4 .about-image .about-box .content h2 {
  color: var(--theme-color-2);
  margin-bottom: 10px;
}
.about-wrapper-4 .about-image .about-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.about-wrapper-4 .about-image .dot-shape {
  position: absolute;
  right: -36px;
  bottom: -22px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image .dot-shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-wrapper-4 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-4 .about-content .about-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-item {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.about-wrapper-4 .about-content .about-item .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-4 .about-content .about-item .item .icon {
  font-size: 60px;
  color: var(--theme-color-2);
}
.about-wrapper-4 .about-content .about-item .item .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.about-wrapper-4 .about-content .about-sideber {
  background: rgba(86, 109, 251, 0.1);
  padding: 35px 50px;
  border-left: 5px solid var(--theme-color-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-sideber {
    padding: 30px;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.about-wrapper-4 .about-content .about-sideber .list li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-4 .about-content .about-sideber .list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-4 .about-content .about-sideber .list li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.about-wrapper-4 .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.about-wrapper-4 .about-content .about-button .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-4 .about-content .about-button .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.about-wrapper-4 .about-content .about-button .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.about-wrapper-4 .about-content .about-button .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.about-section-4 {
  position: relative;
}
.about-section-4 .right-shape {
    position: absolute;
    right: 0;
    top: 34%;
    max-width: 300px;
    opacity: 0.2;
}
@media (max-width: 1199px) {
  .about-section-4 .right-shape {
    display: none;
  }
}

.about-wrapper-5 .about-image {
  max-width: 717px;
  position: relative;
  margin-left: -190px;
}
@media (max-width: 1199px) {
  .about-wrapper-5 .about-image {
    margin-left: 0;
    max-width: 900px;
  }
}
.about-wrapper-5 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-5 .about-image .about-box {
  position: absolute;
  bottom: 290px;
  right: -162px;
  padding: 30px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-image .about-box {
    display: none;
  }
}
.about-wrapper-5 .about-image .about-box .icon {
  font-size: 81px;
  color: var(--theme-color-2);
}
.about-wrapper-5 .about-image .about-box .content h2 {
  color: var(--theme-color-2);
  font-size: 66px;
  font-weight: 700;
}
.about-wrapper-5 .about-image .about-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-5 .about-content .text-item {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .text-item {
    margin-left: 0;
  }
}
.about-wrapper-5 .about-content .text-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-wrapper-5 .about-content .list {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper-5 .about-content .list {
    margin-top: 30px;
  }
}
.about-wrapper-5 .about-content .list li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-5 .about-content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-5 .about-content .list li i {
  color: var(--theme-color-2);
}
.about-wrapper-5 .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-content .about-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-5 .about-content .about-button .client-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-5 .about-content .about-button .client-item .content h6 {
  font-weight: 700;
  line-height: 181%;
}

.about-section-5 {
  position: relative;
}
.about-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: 0%;
}

.service-card-items {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 15px;
  margin-top: 30px;
}
.service-card-items .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-items .service-content {
  text-align: center;
  padding: 0px 35px 40px;
}
.service-card-items .service-content .icon {
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 105px;
  background-color: var(--theme-color);
  text-align: center;
  margin: 0 auto;
  margin-top: -40px;
  position: relative;
  margin-bottom: 25px;
  font-size: 41px;
  color: var(--white);
}
.service-card-items .service-content .icon i {
  display: block;
}
.service-card-items .service-content h4 {
  margin-bottom: 10px;
}
.service-card-items .service-content h4 a:hover {
  color: var(--theme-color);
}
.service-card-items .service-content .link-btn {
  margin-top: 30px;
  display: inline-block;
}
.service-card-items:hover .service-content .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section-2 {
  position: relative;
  z-index: 9;
}
.service-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 68%;
  height: initial;
  z-index: -1;
}
.service-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 50px;
}
@media (max-width: 1399px) {
  .service-section-2 .left-shape {
    display: none;
  }
}
.service-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .service-section-2 .right-shape {
    display: none;
  }
}
.service-section-2 .dot-shape {
  position: absolute;
  right: 127px;
  top: 198px;
}
@media (max-width: 1399px) {
  .service-section-2 .dot-shape {
    display: none;
  }
}
.service-section-2 .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 362px;
  z-index: -1;
  height: 70px;
}
@media (max-width: 1399px) {
  .service-section-2 .line-shape {
    display: none;
  }
}

.service-card-items-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 50px;
  margin-top: 30px;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
@media (max-width: 1199px) {
  .service-card-items-2 {
    clip-path: none;
    padding: 25px;
  }
}
.service-card-items-2 .service-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-items-2 .service-icon img {
  display: block;
}
.service-card-items-2 .service-icon .text h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.service-card-items-2 .service-content {
  margin-top: 50px;
}
.service-card-items-2 .service-content h3 {
  margin-bottom: 15px;
}
.service-card-items-2 .service-content h3 a:hover {
  color: var(--theme-color);
}
.service-card-items-2 .service-content .link-btn {
  display: inline-block;
  margin-top: 40px;
}
.service-card-items-2 .service-content .link-btn i {
  margin-left: 10px;
}
.service-card-items-2:hover .service-icon img {
  animation: icon-bounce 0.8s 1;
}

.service-card-items-3 {
  background: #f8f7f7;
  margin-top: 30px;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
  padding: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .service-card-items-3 {
    text-align: center;
  }
}
.service-card-items-3 .icon {
  margin-bottom: 25px;
  font-size: 60px;
  color: var(--theme-color);
}
.service-card-items-3 .icon i {
  display: block;
}
.service-card-items-3 .service-content h5 {
  margin-bottom: 15px;
}
.service-card-items-3 .service-content h5 a:hover {
  color: var(--theme-color);
}
.service-card-items-3 .service-content .link-btn {
  display: inline-block;
  margin-top: 30px;
}
.service-card-items-3:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section {
  position: relative;
  z-index: 9;
}
.service-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 60%;
  height: initial;
  z-index: -1;
}
.service-section .right-shape {
  position: absolute;
  top: 40px;
  right: 127px;
  z-index: -1;
}

.service-section-3 {
  position: relative;
}
.service-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.service-box-item {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #FFF;
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  margin-top: 30px;
}
.service-box-item .service-header {
  padding: 10px 15px;
}

@media (max-width: 575px) {
  .service-box-item .service-header {
    padding: 10px 25px;
  }
}
.service-box-item .service-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-box-item .service-header .header .icon {
    width: 88px;
    height: 88px;
    /* line-height: 97px; */
    text-align: center;
    background-color: var(--theme-color);
    margin-bottom: 6px;
    margin-top: -20px;
    font-size: 40px;
    color: var(--white);
    display: flex
;
    align-items: center;
    justify-content: center;
}
.service-box-item .service-header .header .icon i {
  display: block;
}
.service-box-item .service-header .header h2 {
  font-size: 45px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.service-box-item .service-header h4 {
  margin-bottom: 10px;
  a{

    letter-spacing: -0.01em;
    font-size: 18px;
  }
}
.service-box-item .service-header h4 a:hover {
  color: var(--theme-color);
}
.service-box-item .service-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-box-item .service-content {
  padding: 10px 15px 17px;
}
@media (max-width: 1399px) {
  .service-box-item .service-content {
    padding: 30px 35px;
  }
}
@media (max-width: 575px) {
  .service-box-item .service-content {
    padding: 20px 25px;
  }
}
.service-box-item .service-content .service-list {
  margin-top: 3px;
  margin-bottom: 12px;
}
.service-box-item .service-content .service-list li {
  font-size: 16px;
  font-weight: 500;
}
.service-box-item .service-content .service-list li i {
  color: var(--theme-color);
  margin-right: 6px;
}
.service-box-item .service-content .service-list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-box-item:hover .service-header .header .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section-4 .service-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .service-section-4 .service-btn {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
  }
}
.service-section-4 .service-btn span {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  max-width: 340px;
  display: inline-block;
}
.service-section-4 .section-title h2 {
  line-height: 1;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title h2 {
    margin-left: 0;
    line-height: initial;
  }
}

.service-wrapper {
  margin-top: -210px;
  position: relative;
  z-index: 9;
}

.service-top-wrapper {
  margin-right: -37%;
}
@media (max-width: 1199px) {
  .service-top-wrapper {
    margin-right: 0;
  }
}
.service-top-wrapper .service-top-box {
  padding: 20px;
  background-color: var(--white);
  margin-top: 30px;
}
.service-top-wrapper .service-top-box .service-content {
  padding: 10px 20px;
}
.service-top-wrapper .service-top-box .service-content h4 {
  margin-bottom: 15px;
}
.service-top-wrapper .service-top-box .service-content h4 a:hover {
  color: var(--theme-color);
}
.service-top-wrapper .service-top-box .service-content .link-btn {
  display: inline-block;
  margin-top: 20px;
}
.service-top-wrapper .service-top-box .service-image {
  margin-top: 30px;
  position: relative;
}
.service-top-wrapper .service-top-box .service-image img {
  width: 100%;
  height: 100%;
}
.service-top-wrapper .service-top-box .service-image .icon {
  position: absolute;
  width: 88px;
  height: 88px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme-color);
  top: -36px;
  right: 25px;
  font-size: 41px;
  color: var(--white);
}
.service-top-wrapper .service-top-box .service-image .icon img {
  width: initial;
  height: initial;
}

.service-section-4 {
  position: relative;
  z-index: 9;
}
.service-section-4 .top-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.service-section-5 {
  position: relative;
}
.service-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.service-section-5 .section-title-area .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .service-section-5 .section-title-area .array-buttons {
    display: none;
  }
}
.service-section-5 .section-title-area .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.service-section-5 .section-title-area .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.service-section-5 .section-title-area .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.service-section-5 .section-title-area .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.service-wrapper-2 {
  position: relative;
  z-index: 9;
}
.service-wrapper-2 .service-box-items-2 {
  text-align: center;
  padding: 40px 3px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.service-wrapper-2 .service-box-items-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color-2);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.service-wrapper-2 .service-box-items-2 .icon {
  color: var(--theme-color-2);
  font-size: 47px;
  margin-bottom: 20px;
}
.service-wrapper-2 .service-box-items-2 .icon i {
  display: block;
}
.service-wrapper-2 .service-box-items-2 .content h6 {
  font-weight: 600;
  line-height: 175%;
}
.service-wrapper-2 .service-box-items-2 .content h6 a {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2 .content h6 a:hover {
  color: var(--theme-color);
}
.service-wrapper-2 .service-box-items-2:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-wrapper-2 .service-box-items-2:hover .icon {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.service-wrapper-2 .service-box-items-2:hover .content h6 a {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2:hover .content p {
  color: var(--white);
}
.service-wrapper-2 .service-pagi-items {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .service-wrapper-2 .service-pagi-items {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-wrapper-2 .service-pagi-items {
    justify-content: center;
    margin-top: 20px;
  }
}
.service-wrapper-2 .service-pagi-items .service-dot .swiper-pagination-bullet {
  width: 218px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: 0.6s;
  margin: 0 !important;
  margin-top: 10px;
}
.service-wrapper-2 .service-pagi-items .service-dot .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color-2);
  width: 200px;
  height: 3px;
}
@media (max-width: 767px) {
  .service-wrapper-2 .service-pagi-items .service-dot {
    display: none;
  }
}

.services-bg-section {
  position: relative;
  margin: 0 100px;
  background-attachment: fixed;
}
@media (max-width: 1600px) {
  .services-bg-section {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .services-bg-section {
    margin: 0;
  }
}
.services-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.68);
}

.service-bg-main-section {
  position: relative;
}
.service-bg-main-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(86, 109, 251, 0.1);
  height: 50%;
}

.service-left-content {
  position: relative;
}
.service-left-content .service-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-left-content .service-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.service-left-content .service-button .video-button {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 575px) {
  .service-left-content .service-button .video-button {
    justify-content: center;
    display: grid;
    text-align: center;
  }
}
.service-left-content .service-button .video-button .video-btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color-2);
  display: inline-block;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 575px) {
  .service-left-content .service-button .video-button .video-btn {
    margin: 0 auto;
  }
}
.service-left-content .service-button .video-button h6 {
  color: var(--white);
  font-weight: 600;
  line-height: 163%;
}

.service-card-item-4 {
  margin-top: 30px;
}
.service-card-item-4 .service-image {
  position: relative;
}
.service-card-item-4 .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-item-4 .service-image .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 41px;
  color: var(--white);
  position: absolute;
  left: 10px;
  top: -12px;
}
.service-card-item-4 .service-image .icon i {
  display: block;
}
.service-card-item-4 .service-content {
  margin-top: 30px;
}
.service-card-item-4 .service-content h4 {
  margin-bottom: 15px;
}
.service-card-item-4 .service-content h4 a:hover {
  color: var(--theme-color-2);
}
.service-card-item-4 .service-content .link-btn {
  color: var(--theme-color-2);
  margin-top: 20px;
  display: inline-block;
}
.service-card-item-4:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-bg-section-2 {
  position: relative;
}
.service-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(231deg, rgba(4, 2, 0, 0) 27.51%, rgba(4, 2, 0, 0.83) 67.94%);
}

.service-bg-wrapper {
  position: relative;
}
.service-bg-wrapper .service-content .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-bg-wrapper .service-content .icon-wrapper {
    display: grid;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .service-bg-wrapper .service-content .icon-wrapper .icon-item {
    display: grid;
    text-align: center;
    justify-content: center;
  }
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item .icon {
  color: var(--theme-color-2);
  font-size: 60px;
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.service-bg-wrapper .service-white-box {
  padding: 60px 0px;
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
}
.service-bg-wrapper .service-white-box .icon-image {
  margin-bottom: 20px;
}
.service-bg-wrapper .service-white-box h5 {
  font-weight: 600;
}
.service-bg-wrapper .service-white-box .service-counter {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-top: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .service-bg-wrapper .service-white-box .service-counter {
    display: grid;
    text-align: center;
  }
}
.service-bg-wrapper .service-white-box .service-counter .icon {
  font-size: 83px;
  color: var(--theme-color-2);
}
.service-bg-wrapper .service-white-box .service-counter .content {
  text-align: left;
}
@media (max-width: 1199px) {
  .service-bg-wrapper .service-white-box .service-counter .content {
    text-align: center;
  }
}
.service-bg-wrapper .service-white-box .service-counter .content h2 {
  color: var(--theme-color-2);
}
.service-bg-wrapper .service-white-box .service-counter .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.service-bg-wrapper.style-2 .service-content .icon-wrapper .icon-item .icon {
  color: var(--theme-color);
  font-size: 60px;
}
.service-bg-wrapper.style-2 .service-content .icon-wrapper .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.service-bg-wrapper.style-2 .service-white-box {
  padding: 60px 0px;
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
}
.service-bg-wrapper.style-2 .service-white-box .icon-image {
  margin-bottom: 20px;
}
.service-bg-wrapper.style-2 .service-white-box h5 {
  font-weight: 600;
}
.service-bg-wrapper.style-2 .service-white-box .service-counter .icon {
  color: var(--theme-color);
}
.service-bg-wrapper.style-2 .service-white-box .service-counter .content h2 {
  color: var(--theme-color);
}

.service-details-wrapper .details-image {
  margin-bottom: 30px;
}
.service-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}
.service-details-wrapper .details-content h3 {
  font-size: 29px;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.service-details-wrapper .details-content h4 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 24px;
}
.service-details-wrapper .details-content p{
    margin-bottom: 12px;
    font-weight: 400;
}
.service-details-wrapper .details-content li{
    display: block;
    i{
        color: var(--theme-color);
    }
}
.service-details-wrapper .details-content ul{
    margin-bottom: 15px;
}
.service-details-wrapper .details-content .details-item {
  margin-top: 0px;
  margin-bottom: 30px;
}
.service-details-wrapper .details-content .details-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}
.service-details-wrapper .details-content .details-item .content {
  margin-left: 10px;
}
.service-details-wrapper .details-content .details-item .content .list {
  margin-top: 18px;
  margin-bottom: 30px;
}
.service-details-wrapper .details-content .details-item .content .list li {
  font-weight: 500;
  color: var(--header);
  font-size: 15px;
}
.service-details-wrapper .details-content .details-item .content .list li i {
  color: var(--theme-color);
  margin-right: 5px;
}
.service-details-wrapper .details-content .details-item .content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .details-content .details-item .content .icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.service-details-wrapper .details-content .details-item .content .icon-item .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.service-details-wrapper .details-content .details-item .content .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget {
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 40px 40px 20px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li {
  padding: 20px 0;
  background-color: var(--bg);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li:not(:last-child) {
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a:hover {
  color: var(--theme-color);
}
.service-details-wrapper .single-sideber-widget .contact-bg {
  position: relative;
}
.service-details-wrapper .single-sideber-widget .contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.92);
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content {
  padding: 45px;
  position: relative;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content h4 {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-info .info-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-info .info-text p {
  font-size: 15px;
  color: var(--white);
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item:not(:last-child) {
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .icon {
  width: 57px;
  height: 57px;
  line-height: 57px;
  text-align: center;
  font-size: 25px;
  color: var(--theme-color);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100%;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .content span {
  color: var(--white);
  display: inline-block;
  margin-bottom: 5px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .content h6 {
  font-weight: 700;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .content h6 a {
  color: var(--white);
}

.service-section-6 .section-title h2 {
  margin-left: 215px;
}
@media (max-width: 1199px) {
  .service-section-6 .section-title h2 {
    margin-left: 0;
  }
}

.shop-box-items {
    text-align: center;
    margin-top: 15px;
    border: 1px solid rgba(30, 32, 35, 0.12);
    background: var(--white);
    padding: 20px 42px;
}
.shop-box-items .thumb {
  position: relative;
}
.shop-box-items .thumb img{
    height: 180px;
    object-fit: contain;
}
.shop-box-items .thumb .theme-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.shop-box-items .content {
  margin-top: 40px;
}
.call_btn{
    right: 28px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 52%;
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    font-size: 23px;
}
.shop-box-items:hover .call_btn{
    opacity: 0;
}
.shop-box-items .call_btn:hover{
    color: #fff;
}
.shop-box-items .content .star {
  color: var(--theme-color);
  margin-bottom: 10px;
}
.shop-box-items .content h4 {
  font-size: 18px;
  font-weight: 600;
}
.shop-box-items .content h4 a:hover {
  color: var(--theme-color);
}
.shop-box-items .content .price-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}
.shop-box-items .content .price-list li {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}
.shop-box-items .content .price-list li del {
  font-weight: 500;
  color: rgba(100, 105, 112, 0.47);
}
.shop-box-items:hover .thumb .theme-btn {
  opacity: 1;
  visibility: visible;
}

.product-details-wrapper .shop-details-image {
  position: relative;
}
.product-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.product-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  max-width: 115px;
}
.product-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
}
.product-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.product-details-wrapper .product-details-content h2 {
  font-size: 49px;
}
@media (max-width: 767px) {
  .product-details-wrapper .product-details-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .product-details-wrapper .product-details-content h2 {
    font-size: 32px;
  }
}
.product-details-wrapper .product-details-content .star a {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
}
.product-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}
.product-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.product-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
}
.product-details-wrapper .product-details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .product-details-wrapper .product-details-content .cart-quantity {
    flex-wrap: wrap;
  }
}
.product-details-wrapper .product-details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  line-height: 1;
  justify-content: space-between;
}
.product-details-wrapper .product-details-content .cart-quantity .qty button,
.product-details-wrapper .product-details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 24px;
}
.product-details-wrapper .product-details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--theme-color);
  color: var(--white);
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-transform: capitalize;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn:hover {
  background-color: var(--header);
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item .icon {
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item .icon:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.product-details-wrapper .product-details-content .details-info {
  position: relative;
}
.product-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.product-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
}
.product-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}
.product-details-wrapper .single-tab {
  padding-top: 60px;
}
.product-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.product-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.product-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme-color);
  transition: 0.3s;
}
@media (max-width: 470px) {
  .product-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}
.product-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.product-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .product-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.product-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.product-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 14px;
  margin-left: 30px;
}
.product-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.product-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}
.product-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.product-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  border: none;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

@media (max-width: 1199px) {
  .shop-section .section-title-area .theme-btn {
    display: none;
  }
}

.common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.common-table .cart-item-thumb {
  width: 86px;
}
@media (max-width: 1399px) {
  .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}
.common-table .cart-item-thumb .head {
  color: #1B1F2A;
  font-size: 20px;
  text-transform: capitalize;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  font-weight: 600;
}
.common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}
.common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead,
.common-table tbody {
  width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
}

.common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.quantity button i {
  font-size: 16px;
}

.quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

@media (max-width: 767px) {
  .cart-list-area .table-responsive {
    overflow-x: scroll;
  }
}
@media (max-width: 991px) {
  .cart-list-area .table-responsive .table {
    width: 900px;
  }
}
.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
}
.cart-list-area .theme-btn {
  transition: all 0.4s ease-in-out;
  padding: 18px 30px;
  line-height: 1;
}

.cart-total-area {
  margin-top: -10px;
}
.cart-total-area h3 {
  font-size: 40px;
  margin-bottom: 5px;
}
.cart-total-area ul {
  margin-bottom: 50px;
}
.cart-total-area ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 220px;
  border-bottom: 1px solid #E4E4E5;
  padding-bottom: 25px;
  padding-top: 25px;
}
.cart-total-area ul li .subtotal {
  color: #666C78;
  font-weight: 400;
  margin-left: -30px;
}
.cart-total-area ul li .price {
  font-weight: 700;
  font-size: 22px;
  flex-basis: 30%;
}
.cart-total-area .theme-btn {
  transition: all 0.4s ease-in-out;
  padding: 22px 30px;
  line-height: 1;
}

.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}
.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border);
  font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .list {
  width: 100%;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .option {
  background-color: var(--bg);
  border: none;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background-color: var(--theme-color);
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.checkout-single-wrapper .theme-btn {
  padding: 22px 40px;
}

.project-section {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .project-section {
    margin-bottom: -35px;
  }
}
@media (max-width: 991px) {
  .project-section {
    margin-bottom: 20px;
  }
}
.project-section::before {
  position: absolute;
  content: "";
  bottom: 100px;
  left: 0;
  width: 614px;
  height: 380px;
  background: #FFF3ED;
}
@media (max-width: 1199px) {
  .project-section::before {
    display: none;
  }
}

.project-wrapper {
  margin-right: -50%;
}
@media (max-width: 767px) {
  .project-wrapper {
    margin-right: 0;
  }
}
.project-wrapper .project-image-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.project-wrapper .project-image-items img {
  width: 100%;
  height: 100%;
}
.project-wrapper .project-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.69) 100%);
}
.project-wrapper .project-image-items .content {
  position: absolute;
  bottom: 35px;
  right: 40px;
  left: 40px;
  z-index: 9;
}
.project-wrapper .project-image-items .content .post-cat {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.project-wrapper .project-image-items .content .post-cat:hover {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.project-wrapper .project-image-items .content h4 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 20px;
}
.project-wrapper .project-image-items .content h4 a {
  color: var(--white);
}
.project-wrapper .project-image-items .content h4 a:hover {
  color: var(--theme-color);
}
.project-wrapper .project-image-items .content .post-cat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-wrapper .project-image-items .content .arrow-icon {
  color: var(--white);
  position: absolute;
  right: 0;
  bottom: 25px;
  font-size: 18px;
  transform: rotate(-45deg);
}
.project-wrapper .project-image-items .content .arrow-icon:hover {
  color: var(--theme-color);
}

.project-card-item:not(:last-child) {
  margin-bottom: 30px;
}
.project-card-item{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #d1d1d1;
}

.project-card-item .project-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  clip-path: polygon(0 0, 91% 0, 100% 16%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.project-card-item .project-content {
  position: relative;
}

/* Media Query */
@media (max-width: 768px) {
  .project-card-item .project-content {
    margin-top: 30px;
  }
}

.project-card-item .project-content .post-cat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-card-item .project-content .post-cat {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 121, 45, 0.22);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  line-height: 1;
  margin-bottom: 20px;
}
.project-card-item .project-content .post-cat:hover {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white);
}
.project-card-item .project-content h5 a:hover {
  color: var(--theme-color);
}
.project-card-item .project-content .icon {
  font-size: 30px;
  position: absolute;
  top: 40px;
  right: 0;
}
.project-card-item .project-content .icon i {
  transform: rotate(-45deg);
  color: var(--theme-color);
}

.project-section-2 {
  position: relative;
}
.project-section-2 .bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .project-section-2 .bottom-shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .project-section-2 .section-title .theme-btn {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 575px) {
  .project-section-2 .section-title .theme-btn {
    margin-top: 20px !important;
  }
}

.project-card-item .service_main{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
}
.project-card-item .service_main p{
    margin-bottom: 10px;
}
.project-card-item .service_main .project-image{
    height: 100%;
}
.project-card-item .service_main .project-content{
    padding: 15px 15px 15px 30px;
}

.project-card-item-3 .project-thumb {
  position: relative;
}
.project-card-item-3 .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-card-item-3 .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  padding: 40px;
  background-color: var(--white);
}
.project-card-item-3 .project-content .icon i {
  color: var(--theme-color);
}

.project-wrapper-3 {
  margin-left: -360px;
  margin-right: -360px;
}
@media (max-width: 1199px) {
  .project-wrapper-3 {
    margin-left: 0;
    margin-right: 0;
  }
}
.project-wrapper-3 .project-card-item-3 {
  margin-top: 30px;
}
.project-wrapper-3 .project-card-item-3 .project-thumb {
  position: relative;
}
.project-wrapper-3 .project-card-item-3 .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-wrapper-3 .project-card-item-3 .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  padding: 40px;
  background-color: var(--white);
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn li {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn li a {
  padding: 10px 16px;
  border: 1px solid rgba(255, 121, 45, 0.22);
  line-height: 1;
  color: var(--theme-color);
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn li:hover a {
  color: var(--white);
  background-color: var(--theme-color);
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content h5 a:hover {
  color: var(--theme-color);
}
.project-wrapper-3 .project-card-item-3 .project-content .icon i {
  color: var(--theme-color);
  font-size: 24px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.project-wrapper-3 .project-card-item-3 .project-content .icon:hover i {
  transform: rotate(0);
}

.project-section-3 .section-title span {
  margin-bottom: 0;
}
.project-section-3 .section-title h2 {
  margin-left: 251px;
}
@media (max-width: 1199px) {
  .project-section-3 .section-title h2 {
    margin-left: 0;
  }
}
.project-section-3 .content p {
  max-width: 400px;
}

.project-section-4 .container-fluid {
  padding: 0 20px;
}

.project-box-item {
  margin-top: 30px;
}
.project-box-item .project-image {
  position: relative;
  overflow: hidden;
}
.project-box-item .project-image img {
  width: 100%;
  height: 100%;
}
.project-box-item .project-image::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-box-item .project-image .project-content {
  padding: 30px;
  background-color: var(--theme-color-2);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.project-box-item .project-image .project-content .list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.project-box-item .project-image .project-content .list li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
}
.project-box-item .project-image .project-content .list li a:hover {
  background-color: var(--white);
  color: var(--header);
}
.project-box-item .project-image .project-content h5 a {
  color: var(--white);
}
.project-box-item:hover .project-image::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}
.project-box-item:hover .project-image .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.project-section-5 {
  position: relative;
}
.project-section-5 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .project-section-5 .left-shape {
    display: none;
  }
}
.project-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: -210px;
}
@media (max-width: 1199px) {
  .project-section-5 .right-shape {
    display: none;
  }
}

.project-box-item-2 {
  margin-top: 30px;
}
.project-box-item-2 .project-image {
  position: relative;
}
.project-box-item-2 .project-image img {
  width: 100%;
  height: 100%;
}
.project-box-item-2 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(187deg, rgba(4, 2, 0, 0) 11.85%, rgba(4, 2, 0, 0.82) 71%);
}
.project-box-item-2 .project-image .project-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.project-box-item-2 .project-image .project-content .list {
  margin-bottom: 20px;
}
.project-box-item-2 .project-image .project-content .list li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
  display: inline-block;
}
.project-box-item-2 .project-image .project-content .list li a:hover {
  color: var(--white);
  background-color: var(--theme-color-2);
  border: 1px solid var(--theme-color-2);
}
.project-box-item-2 .project-image .project-content h5 {
  font-size: 18px;
  font-weight: 600;
}
.project-box-item-2 .project-image .project-content h5 a {
  color: var(--white);
}
.project-box-item-2 .project-image .project-content h5 a:hover {
  color: var(--theme-color-2);
}

.project-image-item .project-image {
  position: relative;
}
.project-image-item .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.69) 100%);
}
.project-image-item .project-image img {
  width: 100%;
  height: 100%;
}
.project-image-item .project-image .project-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.project-image-item .project-image .project-content .list {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-image-item .project-image .project-content .list li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
  display: inline-block;
}
.project-image-item .project-image .project-content .list li a:hover {
  color: var(--white);
  background-color: var(--theme-color-2);
}
.project-image-item .project-image .project-content .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
}
.project-image-item .project-image .project-content .content h5 a {
  color: var(--white);
}
.project-image-item .project-image .project-content .content h5 a:hover {
  color: var(--theme-color);
}
.project-image-item .project-image .project-content .content .icon a i {
  color: var(--white);
  transform: rotate(-40deg);
}
.project-image-item.style-theme-color .project-content .list li a:hover {
  color: var(--white);
  background-color: var(--theme-color);
}

.project-details-wrapper .details-image {
  margin-bottom: 30px;
}
.project-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .details-content h3 {
  font-size: 38px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content h3 {
    font-size: 30px;
  }
}
.project-details-wrapper .details-content h4 {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content h4 {
    margin-top: 30px;
  }
}
.project-details-wrapper .details-content .details-sideber {
  background-color: rgb(255, 243, 237);
  padding: 38px 50px;
  border-left: 4px solid var(--theme-color);
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content .details-sideber {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
  }
}
.project-details-wrapper .details-content .details-sideber h5 {
  font-weight: 500;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content .details-sideber h5 {
    dz: 18px;
  }
}
.project-details-wrapper .details-content .details-sideber .details-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content .details-sideber .details-info-item {
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 10px;
  }
}
.project-details-wrapper .details-content .details-sideber .details-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-details-wrapper .details-content .details-sideber .details-info-item .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.project-details-wrapper .details-content .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .details-content .list-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.project-details-wrapper .details-content .list-item li {
  font-weight: 500;
  color: var(--header);
}
.project-details-wrapper .details-content .list-item li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .details-content .list-item li i {
  color: var(--theme-color);
  margin: 5px;
}
.project-details-wrapper .details-content .details-item {
  margin-top: 50px;
}
.project-details-wrapper .details-content .details-item .thumb {
  margin-top: 15px;
}
.project-details-wrapper .details-content .details-item .thumb img {
  width: 100%;
  height: 100%;
}

.main-sidebar .single-sideber-widget {
  margin-bottom: 40px;
}
.main-sidebar .single-sideber-widget .project-information-box {
  padding: 45px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
.main-sidebar .single-sideber-widget .project-information-box h4 {
  margin-bottom: 10px;
}
.main-sidebar .single-sideber-widget .project-information-box .information-list li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-sidebar .single-sideber-widget .project-information-box .information-list li:not(:last-child) {
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
}
.main-sidebar .single-sideber-widget .project-information-box .information-list li:last-child {
  padding-bottom: 0;
}
.main-sidebar .single-sideber-widget .contact-bg-image {
  position: relative;
  height: 553px;
}
.main-sidebar .single-sideber-widget .contact-bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.87) 72.69%);
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content {
  position: absolute;
  bottom: 40px;
  top: initial;
  left: 20px;
  right: 20px;
  text-align: center;
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content h4 {
  color: var(--white);
  margin-bottom: 5px;
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content p {
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-box-items {
  margin-top: 30px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  padding: 50px 40px;
}
@media (max-width: 1399px) {
  .pricing-box-items {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .pricing-box-items {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .pricing-box-items {
    padding: 30px 20px;
  }
}
.pricing-box-items .pricing-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-box-items .pricing-header h2 {
  color: var(--theme-color);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin-top: 30px;
}
.pricing-box-items .pricing-header h2 sup {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  top: -1.5em;
  margin-right: -10px;
}
.pricing-box-items .pricing-header h2 sub {
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  font-weight: "Rubik", sans-serif;
  margin-left: -10px;
}
.pricing-box-items .pricing-btn {
  margin-top: 40px;
  margin-bottom: 40px;
}
.pricing-box-items .pricing-btn .theme-btn {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--header);
  width: 100%;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-box-items .pricing-btn .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.pricing-box-items .pricing-btn .theme-btn::before, .pricing-box-items .pricing-btn .theme-btn::after {
  background-color: var(--theme-color);
}
.pricing-box-items .pricing-btn .theme-btn:hover {
  color: var(--white);
}
.pricing-box-items .pricing-btn .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}
.pricing-box-items h5 {
  font-size: 16px;
  font-weight: 600;
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list li {
  color: rgba(30, 32, 35, 0.8);
}
.pricing-box-items .pricing-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-box-items.active {
  border: 2px solid #1E2023;
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  position: relative;
}
.pricing-box-items.active .professional {
  background: #FF792D;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 9px 20px;
  position: absolute;
  right: 47px;
  top: -18px;
  z-index: 9;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-color);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: var(--theme-color);
  opacity: 1;
  border-radius: 7px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  content: "";
}

.swiper-dot3 {
  text-align: center;
}
.swiper-dot3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  border: 1px solid var(--text);
  border-radius: 0;
  opacity: 1;
  position: relative;
}
.swiper-dot3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 0;
}
.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-color);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.array-button {
  display: flex;
  align-items: center;
  gap: 18px;
}
.array-button .array-prev, .array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.array-button.style-2 .array-prev {
  border: 1px solid var(--border);
}
.array-button.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}
.array-button.style-2 .array-next:hover {
  background-color: var(--header);
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

@media (min-width: 992px) {
    .columns_sticky {
        position: sticky !important;
        z-index: 99;
        height: 100%;
        top: 50px;
    }
}

.card_sticky {
    position: sticky;
    z-index: 99;
    top: var(--card-top);
}


.box-shadow {
  box-shadow: var(--box-shadow);
}

.custom-container {
  max-width: 1560px;
  margin: 0 auto;
}

.custom-container-33 {
  max-width: 1319px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1568px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.footer-info-container {
  max-width: 1436px;
}

@media (max-width: 991px) {
  .lg-center {
    justify-content: center;
    text-align: center;
  }
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background-color: rgb(129, 129, 129);
  opacity: 1;
  border-radius: 100%;
  position: relative;
}
.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 30px;
  border-radius: 30px;
}

.custom-container-3 {
  max-width: 1768px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .style-center {
    text-align: center;
  }
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.array-buttons .array-prev, .array-buttons .array-next {
  width: 55px;
  height: 55px;
  height: 55px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover, .array-buttons .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.array-buttons.style-2 .array-prev {
  border: 1px solid var(--border);
}
.array-buttons.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}
.array-buttons.style-2 .array-next:hover {
  background-color: var(--header);
}
.array-buttons.news-buttons .array-prev {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background-color: transparent;
  color: var(--theme-color-2);
}
.array-buttons.news-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}
.array-buttons.news-buttons .array-next {
  background-color: var(--header);
  color: var(--white);
}
.array-buttons.news-buttons .array-next:hover {
  background-color: var(--theme-color-2);
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 54px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--header);
  background: transparent;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}

.team-box-items {
  margin-top: 30px;
}
.team-box-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-box-items .team-image::after {
  background: linear-gradient(90deg, rgba(var(--white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--white-rgb, 255, 255, 255), 0.3) 92%, rgba(var(--white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.5s ease 0s;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  width: 200%;
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.team-box-items .team-content {
  margin-top: 30px;
  position: relative;
}
.team-box-items .team-content h3 {
  margin-bottom: 5px;
}
.team-box-items .team-content h3 a:hover {
  color: var(--theme-color);
}
.team-box-items .team-content p {
  color: var(--text);
}
.team-box-items .team-content .social-profile {
  position: absolute;
  right: 30px;
  bottom: 74px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-box-items .team-content .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: grid;
  gap: 10px;
  align-items: center;
}
.team-box-items .team-content .social-profile ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 50%;
}
.team-box-items .team-content .social-profile ul li a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.team-box-items .team-content .social-profile .plus-btn {
  z-index: 99;
  cursor: pointer;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  border: 1px solid transparent;
  margin-top: 10px;
}
.team-box-items .team-content .social-profile .plus-btn:hover {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  color: var(--header);
}
.team-box-items .team-content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items:hover .team-image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.5s, 0.5s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}

.team-card-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.team-card-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-card-items .team-image::after {
  background: linear-gradient(90deg, rgba(var(--white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--white-rgb, 255, 255, 255), 0.3) 92%, rgba(var(--white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.5s ease 0s;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  width: 200%;
}
.team-card-items .team-image .social-profile {
  position: absolute;
  right: 0px;
  bottom: 0px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-card-items .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-card-items .team-image .social-profile ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  display: block;
  background: var(--white);
  color: var(--theme-color-2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  margin-bottom: 10px;
}
.team-card-items .team-image .social-profile ul li a:hover {
  background: var(--theme-color-2);
  color: var(--white);
}
.team-card-items .team-image .social-profile .plus-btn {
  z-index: 9;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  background-color: var(--white);
  color: var(--theme-color-2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  font-size: 16px;
  margin-top: 20px;
}
.team-card-items .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.team-card-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-card-items .team-content {
  margin-top: 30px;
  position: relative;
}
.team-card-items .team-content h3 {
  margin-bottom: 5px;
}
.team-card-items .team-content h3 a:hover {
  color: var(--theme-color-2);
}
.team-card-items .team-content span {
  color: var(--text);
}
.team-card-items .team-content p {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-top: 20px;
  margin-top: 25px;
}
.team-card-items:hover .team-image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.5s, 0.5s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.team-card-items.style-2 .team-image .social-profile ul li a {
  background: var(--white);
  color: var(--theme-color);
}
.team-card-items.style-2 .team-image .social-profile ul li a:hover {
  background: var(--theme-color);
  color: var(--white);
}
.team-card-items.style-2 .team-image .social-profile .plus-btn {
  color: var(--theme-color);
}
.team-card-items.style-2 .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.team-card-items.style-2 .team-content h3 a:hover {
  color: var(--theme-color);
}

.team-section-5 {
  position: relative;
  margin: 0 100px;
  background-attachment: fixed;
}
@media (max-width: 1600px) {
  .team-section-5 {
    margin: 0 40px;
  }
}
@media (max-width: 1399px) {
  .team-section-5 {
    margin: 0;
    margin-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .team-section-5 {
    margin: 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .team-section-5 {
    margin-bottom: 80px;
  }
}
.team-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.team-section-5::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  top: 55%;
}
@media (max-width: 1399px) {
  .team-section-5::after {
    display: none;
  }
}
@media (max-width: 1399px) {
  .team-section-5 .team-card-items .team-content h3 a {
    color: var(--white);
  }
}
@media (max-width: 1399px) {
  .team-section-5 .team-card-items .team-content span {
    color: var(--white);
  }
}
@media (max-width: 1399px) {
  .team-section-5 .team-card-items .team-content p {
    color: var(--white);
    border-top: 1px solid var(--white);
  }
}

.team-details-wrapper .thumb {
  max-width: 650px;
}
@media (max-width: 991px) {
  .team-details-wrapper .thumb {
    max-width: 800px;
  }
}
.team-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.team-details-wrapper .details-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .details-content span {
  color: var(--theme-color);
  display: inline-block;
  margin-bottom: 20px;
}
.team-details-wrapper .details-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.team-details-wrapper .details-content ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 70px;
  border-top: 1px solid rgba(30, 32, 35, 0.12);
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
  padding: 20px 0 0;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-content ul {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.team-details-wrapper .details-content ul li {
  color: var(--theme-color);
  font-weight: 600;
}
.team-details-wrapper .details-content ul li span {
  font-weight: 400;
  color: var(--text);
}
.team-details-wrapper .details-content .contact-info-wrap {
  margin-top: 45px;
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items {
    flex-wrap: wrap;
  }
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items .icon {
  width: 60px;
  height: 60px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 32px;
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items .content h6 {
  font-weight: 600;
  margin-bottom: 3px;
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items .content p a {
  color: var(--text);
}
.team-details-wrapper .details-info-items {
  margin-top: 50px;
}
.team-details-wrapper .details-info-items .info-content h3 {
  margin-bottom: 30px;
}
.team-details-wrapper .details-info-items .progress-area {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-info-items .progress-area {
    margin-left: 0;
  }
}
.team-details-wrapper .details-info-items .progress-area h4 {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap {
  margin-top: 30px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 500;
  color: #1C1D20;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress {
  background: var(--bg);
  justify-content: flex-start;
  border-radius: 0px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color);
  height: 10px;
  width: 0;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

@media (max-width: 1199px) {
  .team-section .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.faq-wrapper .faq-image {
  max-width: 570px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    max-width: 800px;
  }
}
.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 0 99%, 0 77%, 0 12%, 14% 0);
}
.faq-wrapper .faq-content .section-title {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .faq-wrapper .faq-content .section-title {
    text-align: left;
  }
}
.faq-wrapper .faq-content .faq-items {
  position: relative;
  z-index: 9;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(30, 32, 35, 0.12);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 29px 30px;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  color: var(--header);
  cursor: pointer;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  top: 29px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme-color);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f067";
}
.faq-wrapper.style-faq-page {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .faq-wrapper.style-faq-page {
    margin-top: 30px;
  }
}

.faq-section {
  position: relative;
  z-index: 9;
}
.faq-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
.faq-section .dot-shape {
  position: absolute;
  top: 108px;
  left: 268px;
  z-index: -1;
}

.cta-wrapper {
  background-color: var(--theme-color);
  padding: 75px;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .cta-wrapper {
    text-align: center;
    padding: 50px;
  }
}
.cta-wrapper .cta-content p {
  max-width: 435px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  margin-bottom: 30px;
}
.cta-wrapper .cta-image {
  margin-bottom: -75px;
  position: relative;
  z-index: 9;
}
.cta-wrapper .cta-shape-2 {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 70%;
  z-index: -1;
}
.cta-wrapper .cta-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .cta-wrapper .cta-shape {
    display: none;
  }
}
.cta-wrapper .cta-shape img {
  height: 100%;
}
.cta-wrapper.style-2 {
  padding: 0;
  background-color: transparent;
}
@media (max-width: 767px) {
  .cta-wrapper.style-2 .cta-content {
    text-align: center;
  }
}
.cta-wrapper.style-2 .cta-content p {
  max-width: 570px;
}
.cta-wrapper.style-2 .cta-content .theme-btn {
  background-color: var(--header);
}
.cta-wrapper.style-2 .cta-content .theme-btn::before {
  background-color: var(--theme-color);
}
.cta-wrapper.style-2 .cta-content .theme-btn::after {
  background-color: var(--theme-color);
}
.cta-wrapper.style-2 .cta-content .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.cta-wrapper.style-2 .cta-content .theme-btn:hover::before, .cta-wrapper.style-2 .cta-content .theme-btn:hover::after {
  width: 100%;
}
.cta-wrapper.style-2 .cta-content .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}
.cta-wrapper.style-2 .cta-image {
  margin-bottom: -120px;
}
@media (max-width: 1199px) {
  .cta-wrapper.style-2 .cta-image {
    margin-bottom: -100px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper.style-2 .cta-image {
    margin-bottom: -80px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper.style-2 .cta-image img {
    width: 100%;
    height: 100%;
  }
}
.cta-wrapper.style-theme-color-2 {
  background-color: var(--theme-color-2);
}
.cta-wrapper.style-theme-color-2 .cta-content .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.cta-wrapper.style-theme-color-2 .cta-content .theme-btn i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.cta-section {
  position: relative;
  margin: 0 100px;
}
.cta-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}
@media (max-width: 1600px) {
  .cta-section {
    margin: 0 50px;
  }
}
@media (max-width: 1399px) {
  .cta-section {
    margin: 0 40px;
  }
}
@media (max-width: 1199px) {
  .cta-section {
    margin: 0 0;
  }
}
.cta-section.style-5 {
  margin: 0;
}
.cta-section.style-new-padding {
  margin-bottom: -240px;
}
.cta-section.style-new-padding::before {
  background: rgba(86, 109, 251, 0.1);
}
.cta-section.remove-blue-none::before {
  display: none;
}

.counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper-2 {
    justify-content: center;
  }
}
.counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .counter-wrapper-2 .counter-item {
    display: grid;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper-2 .counter-item h2 {
  color: var(--theme-color);
  font-size: 55px;
}
.counter-wrapper-2 .counter-item h5 {
  font-size: 16px;
  font-weight: 600;
}

.cta-bg-section {
  position: relative;
}
.cta-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: -50%;
}

.cta-bg-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper {
    padding: 40px 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.cta-bg-wrapper .content {
  z-index: 1;
}
.cta-bg-wrapper .content h2 {
  color: var(--theme-color);
  font-size: 56px;
}
.cta-bg-wrapper .content p {
  color: var(--white);
}
.cta-bg-wrapper h4 {
  color: var(--white);
  z-index: 1;
}

.cta-bg-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 {
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper-2 .cta-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 .cta-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 .cta-item {
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper-2 .cta-item .cta-image {
  border: 4px solid var(--white);
}
.cta-bg-wrapper-2 .cta-item .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-bg-wrapper-2 .cta-item .content h4 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-bg-wrapper-2 .cta-item .content p {
  color: var(--white);
}

.cta-bg-section-2 {
  position: relative;
}
.cta-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-3 {
    padding: 120px 0;
  }
}
@media (max-width: 1199px) {
  .cta-bg-wrapper-3 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .cta-bg-wrapper-3 {
    padding: 80px 0;
  }
}
.cta-bg-wrapper-3 .cta-image {
  margin-left: -310px;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-3 .cta-image {
    display: none;
  }
}
.cta-bg-wrapper-3 .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-bg-wrapper-3 .cta-content {
  margin-left: 50px;
  max-width: 640px;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-3 .cta-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .section-title {
    text-align: left;
  }
}
.cta-bg-wrapper-3 .cta-content h4 {
  margin-bottom: 15px;
}
.cta-bg-wrapper-3 .cta-content .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .cta-bg-wrapper-3 .cta-content .list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .list-item {
    margin-top: 30px;
    display: grid;
  }
}
.cta-bg-wrapper-3 .cta-content .list-item ul li {
  font-weight: 500;
  color: var(--header);
}
.cta-bg-wrapper-3 .cta-content .list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cta-bg-wrapper-3 .cta-content .list-item ul li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.cta-bg-wrapper-3 .cta-content .list-item .icon-item {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .list-item .icon-item {
    display: grid;
  }
}
.cta-bg-wrapper-3 .cta-content .list-item .icon-item h6 {
  line-height: 175%;
}
.cta-bg-wrapper-3 .cta-right .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.cta-bg-wrapper-3 .cta-right .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.cta-bg-wrapper-3 .cta-right .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.cta-bg-wrapper-3 .cta-right .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.counter-box-item {
  position: relative;
  padding: 60px 0;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
  z-index: 9;
}
.counter-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../assets/img/hover-bg.jpg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.counter-box-item .icon {
  font-size: 62px;
  color: var(--theme-color-2);
  margin-bottom: 10px;
}
.counter-box-item .icon i {
  display: block;
}
.counter-box-item .content h2 {
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color-2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .counter-box-item .content h2 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .counter-box-item .content h2 {
    font-size: 42px;
  }
}
.counter-box-item .content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
.counter-box-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.counter-box-item:hover::before {
  opacity: 1;
  visibility: visible;
}
.counter-box-item:hover .content h2 {
  color: var(--theme-color-2) !important;
  -webkit-text-stroke: initial !important;
}
.counter-box-item:hover .content p {
  color: var(--white);
}

.counter-section-5 {
  position: relative;
}
.counter-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(86, 109, 251, 0.1);
  top: 77%;
}

.testimonial-box-items {
  margin-top: 30px;
  padding: 0 70px;
  position: relative;
  z-index: 9;
  text-align: center;
  clip-path: polygon(0 0, 84% 0, 100% 22%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.testimonial-box-items .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme-color);
  margin: 0 auto 30px;
}
.testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  top: 45px;
  height: initial;
  bottom: 28px;
}
.testimonial-box-items .star {
  color: var(--theme-color);
  margin-bottom: 10px;
}
.testimonial-box-items h4 {
  margin-bottom: 10px;
}
.testimonial-box-items .client-info {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 30px;
}
.testimonial-box-items .client-info h5 {
  font-size: 18px;
  font-weight: 600;
}
.testimonial-box-items .client-info .client-img {
  margin-top: 20px;
}

.testimonial-section {
  position: relative;
  z-index: 9;
  margin: 0 100px;
}
@media (max-width: 1600px) {
  .testimonial-section {
    margin: 0;
  }
}
.testimonial-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(30, 32, 35, 0.96);
}
.testimonial-section .line-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.testimonial-section .line-shape img {
  width: 100%;
  height: 100%;
}
.testimonial-section .circle-shape {
  position: absolute;
  right: 0;
  top: 0;
}
.testimonial-section .dot-shape {
  position: absolute;
  top: 160px;
  right: 160px;
}
.testimonial-section .array-buttons {
  position: initial;
}
@media (max-width: 1199px) {
  .testimonial-section .array-buttons {
    display: none;
  }
}
.testimonial-section .array-buttons .array-prev {
  position: absolute;
  bottom: 36%;
  left: 7%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.testimonial-section .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section .array-buttons .array-next {
  position: absolute;
  bottom: 36%;
  right: 7%;
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.testimonial-box-item-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #fdfdfd;
  padding: 50px 50px 15px 108px;
  position: relative;
  margin-left: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .testimonial-box-item-2 {
    margin-left: 0;
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-box-item-2 {
    text-align: center;
    padding: 30px;
  }
}
.testimonial-box-item-2 .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  left: -20px;
  top: 10px;
}
@media (max-width: 1199px) {
  .testimonial-box-item-2 .icon {
    position: static;
  }
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .icon {
    margin: 0 auto 25px;
  }
}
.testimonial-box-item-2 .test-content .star {
  color: var(--theme-color);
  margin-bottom: 5px;
}
.testimonial-box-item-2 .test-content h5 {
  margin-bottom: 10px;
}
.testimonial-box-item-2 .test-content p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.testimonial-box-item-2 .test-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item {
    display: grid;
    gap: 20px;
    justify-content: center;
  }
}
.testimonial-box-item-2 .test-content .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item .client-info {
    display: grid;
  }
}
.testimonial-box-item-2 .test-content .client-info-item .client-info img{
    width: 77px;
    height: 77px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .left-shape {
  position: absolute;
  left: -20;
  bottom: -144px;
}
.testimonial-section-2 .array-buttons {
  position: initial;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .array-buttons {
    display: none;
  }
}
.testimonial-section-2 .array-buttons .array-prev {
  position: absolute;
  bottom: 34%;
  left: 13%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.testimonial-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section-2 .array-buttons .array-next {
  position: absolute;
  bottom: 34%;
  right: 12%;
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section-2 .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
@media (max-width: 991px) {
  .testimonial-section-2 .section-title-area {
    text-align: left;
  }
}
.testimonial-section-2 .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-section-2 .section-title-area .client-info .text .title {
  margin-bottom: 5px;
}
.testimonial-section-2 .section-title-area .client-info .text h6 {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-box-item-3 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  margin-top: 60px;
  padding: 40px 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .testimonial-box-item-3 {
    padding: 25px;
    margin-bottom: 5px;
  }
}
.testimonial-box-item-3 .quate-icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  right: 40px;
  top: -30px;
}
.testimonial-box-item-3 .test-content .star {
  color: var(--theme-color);
  margin-bottom: 5px;
}
.testimonial-box-item-3 .test-content p {
  font-size: 22px;
  font-weight: 500;
  color: var(--header);
}
.testimonial-box-item-3 .test-content .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-box-item-3 .test-content .client-info .info-image img {
  width: 64px;
  object-fit: cover;
  height: 64px;
  border-radius: 50%;
}
.testimonial-box-item-3 .test-content .client-info .text h5 {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3 .bottom-shape {
  position: absolute;
  right: 0;
  bottom: -30px;
}
@media (max-width: 1199px) {
  .testimonial-section-3 .bottom-shape {
    display: none;
  }
}

.testimonial-bg-section {
  position: relative;
}
.testimonial-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.testimonial-bg-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 84%;
}

.testimonial-wrapper {
  position: relative;
  margin-right: -44%;
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    margin-right: 0;
  }
}
.testimonial-wrapper .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-wrapper .array-buttons {
    display: none;
  }
}
.testimonial-wrapper .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.testimonial-wrapper .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme-color-2);
}
.testimonial-wrapper .array-buttons.style-22 .array-prev {
  color: var(--theme-color);
}
.testimonial-wrapper .array-buttons.style-22 .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-wrapper .array-buttons.style-22 .array-next {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-wrapper .array-buttons.style-22 .array-next:hover {
  background-color: var(--white);
  color: var(--theme-color);
}
.testimonial-wrapper .testimonial-box-item-3 {
  padding: 50px 45px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  background-color: var(--white);
  position: relative;
}
.testimonial-wrapper .testimonial-box-item-3 .quate-icon {
  position: absolute;
  background-color: transparent;
  right: 20px;
  top: 20px;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content .star {
  color: var(--theme-color-2);
  margin-bottom: 20px;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
    color: var(--header);
    letter-spacing: -0.02em;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content .client-info .text h5 {
  font-size: 18px;
  font-weight: 600;
}
.testimonial-wrapper .testimonial-box-item-3.style-about .test-content .star {
  color: var(--theme-color);
}

.testimonial-section-4 {
  position: relative;
}
.testimonial-section-4 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .testimonial-section-4 .right-shape {
    display: none;
  }
}

.testimonial-wrapper-2 {
  margin-top: 60px;
}
.testimonial-wrapper-2 .testimonial-item {
  max-width: 569px;
}
.testimonial-wrapper-2 .testimonial-item .image-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 100px;
    height: 100px;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-button {
    display: none;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons {
  position: relative;
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-content .star {
  color: var(--theme-color-2);
  margin-bottom: 15px;
}
.testimonial-wrapper-2 .testimonial-content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}
.testimonial-wrapper-2 .testimonial-content .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.testimonial-wrapper-2 .testimonial-content .info-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  position: relative;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items .news-image .post-date {
  width: 78px;
  height: 78px;
  padding: 8px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  top: 20px;
  left: 20px;
}
.news-card-items .news-image .post-date h4 {
  color: var(--white);
}
.news-card-items .news-image .post-date p {
  color: var(--white);
  font-weight: 400;
}
.news-card-items .news-content {
  margin-top: 30px;
}
.news-card-items .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}
.news-card-items .news-content .news-meta li {
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.news-card-items .news-content .news-meta li b {
  font-weight: 500;
}
.news-card-items .news-content .news-meta li img {
  margin-right: 5px;
}
.news-card-items .news-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.news-card-items .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items .news-content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-section {
  margin: -200px 100px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .news-section {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 1399px) {
  .news-section {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .news-section {
    margin-left: 0;
    margin-right: 0;
  }
}

.news-wrapper-2 .news-box-items-2 {
  margin-top: 25px;
}
.news-wrapper-2 .news-box-items-2 .news-image {
  position: relative;
}
.news-wrapper-2 .news-box-items-2 .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-2 .news-box-items-2 .news-image .post-cat {
  width: 78px;
  height: 78px;
  position: absolute;
  bottom: -25px;
  right: 25px;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
}
.news-wrapper-2 .news-box-items-2 .news-image .post-cat .date {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  display: block;
}
.news-wrapper-2 .news-box-items-2 .news-image .post-cat .date-name {
  text-transform: uppercase;
  display: inline-block;
  margin-top: -20px;
}
.news-wrapper-2 .news-box-items-2 .news-content {
  margin-top: 25px;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta li {
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta li b {
  font-weight: 500;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta li img {
  margin-right: 5px;
}
.news-wrapper-2 .news-box-items-2 .news-content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper-2 .news-box-items-2 .news-content h3 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}
.news-wrapper-2 .news-box-items-3 {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .news-wrapper-2 .news-box-items-3 {
    display: grid;
  }
}
@media (max-width: 1199px) {
  .news-wrapper-2 .news-box-items-3 {
    display: flex;
  }
}
@media (max-width: 767px) {
  .news-wrapper-2 .news-box-items-3 {
    display: block;
  }
}
.news-wrapper-2 .news-box-items-3 .news-image {
  position: relative;
}
.news-wrapper-2 .news-box-items-3 .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-2 .news-box-items-3 .news-image .post-cat {
  width: 78px;
  height: 78px;
  position: absolute;
  bottom: 10px;
  right: 17px;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
}
.news-wrapper-2 .news-box-items-3 .news-image .post-cat .date {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  display: block;
}
.news-wrapper-2 .news-box-items-3 .news-image .post-cat .date-name {
  text-transform: uppercase;
  display: inline-block;
  margin-top: -20px;
}
.news-wrapper-2 .news-box-items-3 .news-content {
  max-width: 425px;
}
@media (max-width: 767px) {
  .news-wrapper-2 .news-box-items-3 .news-content {
    margin-top: 30px;
    max-width: initial;
  }
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta li {
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta li b {
  font-weight: 500;
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta li img {
  margin-right: 5px;
}
.news-wrapper-2 .news-box-items-3 .news-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.news-wrapper-2 .news-box-items-3 .news-content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper-2 .news-box-items-3 .news-content h3 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}
.news-wrapper-2 .news-box-items-3 .news-content p {
  margin-bottom: 0;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn {
  display: inline-block;
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 2px solid var(--theme-color);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid var(--header);
  transition: 0.5s;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn:hover {
  color: var(--theme-color);
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn:hover::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid var(--theme-color);
  transition: 0.5s;
}
.news-wrapper-2.style-2 .news-box-items-2 .news-image .post-cat {
  background-color: var(--theme-color);
}
.news-wrapper-2.style-2 .news-box-items-2 .news-content h3 a:hover {
  color: var(--theme-color);
}
.news-wrapper-2.style-2 .news-box-items-3 .news-image .post-cat {
  background-color: var(--theme-color);
}
.news-wrapper-2.style-2 .news-box-items-3 .news-content h3 a:hover {
  color: var(--theme-color);
}

.news-section-3 {
  position: relative;
}
.news-section-3 .left-shape {
  position: absolute;
  left: -8%;
  top: -35%;
}
@media (max-width: 1199px) {
  .news-section-3 .left-shape {
    display: none;
  }
}
.news-section-3 .right-shape {
  position: absolute;
  right: 122px;
  top: 152px;
}
@media (max-width: 1199px) {
  .news-section-3 .right-shape {
    display: none;
  }
}
@media (max-width: 991px) {
  .news-section-3 .array-buttons {
    display: none;
  }
}

.news-card-items-2 {
  margin-top: 30px;
}
.news-card-items-2 .news-thumb {
  position: relative;
}
.news-card-items-2 .news-thumb img {
  width: 100%;
  height: 100%;
}
.news-card-items-2 .news-thumb .number {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  color: var(--theme-color);
  width: 78px;
  height: 78px;
  line-height: 1;
  text-align: center;
  background-color: var(--white);
  padding: 12px 14px;
}
.news-card-items-2 .news-thumb .number span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}
.news-card-items-2 .news-content {
  margin-top: 30px;
}
.news-card-items-2 .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(100, 105, 112, 0.13);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news-card-items-2 .news-content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  line-height: 1;
}
.news-card-items-2 .news-content .post-meta li b {
  font-weight: 500;
}
.news-card-items-2 .news-content .post-meta li i {
  margin-right: 8px;
  font-size: 22px;
  color: var(--theme-color);
}
.news-card-items-2 .news-content .post-meta li.style-2 {
  border-left: 1px solid rgba(100, 105, 112, 0.23);
  padding-left: 20px;
}
.news-card-items-2 .news-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.news-card-items-2 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-2 .news-content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}
.news-card-items-2 .news-content p {
  margin-bottom: 20px;
}

.news-wrapper {
  margin-top: 60px;
  margin-right: -78%;
}
@media (max-width: 1199px) {
  .news-wrapper {
    margin-right: 0;
  }
}
.news-wrapper .news-box-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px;
  border: 1px solid rgba(30, 32, 35, 0.12);
}
@media (max-width: 1199px) {
  .news-wrapper .news-box-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .news-wrapper .news-box-item .news-image {
    flex-basis: 100%;
  }
  .news-wrapper .news-box-item .news-image img {
    width: 100%;
    height: 100%;
  }
}
.news-wrapper .news-box-item .content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.news-wrapper .news-box-item .content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  line-height: 1;
}
.news-wrapper .news-box-item .content .post-meta li b {
  font-weight: 500;
}
.news-wrapper .news-box-item .content .post-meta li i {
  margin-right: 5px;
  font-size: 22px;
  color: var(--theme-color-2);
}
.news-wrapper .news-box-item .content h4 {
  margin-bottom: 15px;
}
.news-wrapper .news-box-item .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper .news-box-item .content h4 a:hover {
  color: var(--theme-color-2);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color-2), var(--theme-color-2));
}
.news-wrapper .news-box-item.style-2 {
  background-color: var(--white);
}
.news-wrapper .news-box-item.style-2 .content .post-meta li i {
  color: var(--theme-color);
}
.news-wrapper .news-box-item.style-2 .content h4 {
  margin-bottom: 15px;
}
.news-wrapper .news-box-item.style-2 .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper .news-box-item.style-2 .content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-wrapper-3 {
  margin-top: 60px;
  margin-right: -25%;
}
@media (max-width: 991px) {
  .news-wrapper-3 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .news-wrapper-3 {
    margin-top: 30px;
  }
}
.news-wrapper-3 .news-box-item {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
.news-wrapper-3 .news-box-item .news-image {
  padding: 12px 12px 0px;
}
.news-wrapper-3 .news-box-item .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-3 .news-box-item .content {
  padding: 30px 40px;
}
.news-wrapper-3 .news-box-item .content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.news-wrapper-3 .news-box-item .content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  line-height: 0;
}
.news-wrapper-3 .news-box-item .content .post-meta li b {
  font-weight: 500;
}
.news-wrapper-3 .news-box-item .content .post-meta li i {
  margin-right: 10px;
  font-size: 22px;
  color: var(--theme-color-2);
}
.news-wrapper-3 .news-box-item .content h4 {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-box-item .content h4 {
    font-size: 17px;
  }
}
.news-wrapper-3 .news-box-item .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper-3 .news-box-item .content h4 a:hover {
  color: var(--theme-color-2);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color-2), var(--theme-color-2));
}
.news-wrapper-3 .news-box-item .content .link-btn {
  display: inline-block;
  margin-top: 25px;
  color: var(--theme-color-2);
}

.news-section-5 .section-title-area .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .news-section-5 .section-title-area .array-buttons {
    display: none;
  }
}
.news-section-5 .section-title-area .array-buttons .array-prev {
  color: var(--theme-color-2);
  border: 1px solid rgba(30, 32, 35, 0.12);
}
.news-section-5 .section-title-area .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}
.news-section-5 .section-title-area .array-buttons .array-next {
  background-color: var(--header);
  color: var(--white);
}
.news-section-5 .section-title-area .array-buttons .array-next:hover {
  background-color: var(--theme-color-2);
}

.news-section-3 .section-title-area.style-theme-color-1 .array-buttons .array-next {
  background-color: var(--theme-color);
  color: var(--white);
}
.news-section-3 .section-title-area.style-theme-color-1 .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}
.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme-color);
  border: none;
  padding-top: 0;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../../assets/img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 462px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme-color);
  text-align: center;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}
.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme-color);
}
.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}
@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme-color);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "League Spartan", sans-serif;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  color: var(--theme-color);
}
.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}
.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme-color);
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content h3 {
  font-size: 26px;
}
.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme-color);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme-color);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}
.news-area .main-sidebar .single-sidebar-widget {
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
  background-color: var(--bg);
}
.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul &gt; li {
  margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul &gt; li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.news-area .main-sidebar .single-sidebar-widget ul &gt; li a:hover {
  color: var(--theme-color);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme-color);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme-color);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h3 {
  font-size: 16px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}
.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}
.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
}
.popular-posts .single-post-item:not(:last-child), .popular_posts .single-post-item:not(:last-child) {
  margin-bottom: 35px;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-color);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}
.widget_categories ul li:last-child a {
  margin-bottom: 0;
}
.widget_categories ul li a {
  position: relative;
  background: var(--white);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.widget_categories ul li a:hover {
  color: var(--theme-color);
}
.widget_categories ul li a i {
  margin-right: 10px;
}
.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.tagcloud a:last-child {
  margin-right: 0;
}
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme-color);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.social-share a:hover {
  color: var(--theme-color);
}

.tag-share-wrap {
  padding-bottom: 50px;
}
.tag-share-wrap h4 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}
.comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
  font-size: 16px;
}
.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}
@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 10px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--text);
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 10px;
  margin-left: 0px !important;
  transition: all 0.4s ease-in-out;
  width: initial;
  height: initial;
  line-height: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
  transform: translate(0);
  width: initial;
  height: initial;
  line-height: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}
.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme-color);
  font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}
@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}
.comment-form label {
  margin-bottom: 4px;
}
.comment-form input, .comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text);
  background-color: var(--bg);
}
@media (max-width: 585px) {
  .comment-form input, .comment-form textarea {
    padding: 15px;
  }
}
.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}
@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}
.comment-form .theme-btn {
  display: inline-block;
  line-height: 1.2;
  padding: 24px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}
@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}
.comment-form .theme-btn i {
  margin-right: 10px;
  width: initial;
  height: initial;
  line-height: initial;
  background-color: transparent;
  color: var(--white);
  margin-left: 0;
  margin-right: 10px;
}
.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.comment ul {
  list-style-type: disc;
}
.comment ul ol {
  margin-bottom: 0;
}
.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}
.comment ol ul {
  margin-bottom: 0;
}
.comment ol ol {
  margin-bottom: 0;
}
.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme-color);
}
.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme-color);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme-color);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme-color);
}
.site_info_widget .social-link {
  margin-top: 35px;
}
.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.contact-section {
  position: relative;
  z-index: 9;
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.96);
  z-index: -1;
}

.contact-wrapper {
  padding-bottom: 200px;
}
.contact-wrapper .contact-text {
  margin-top: 35px;
  color: var(--white);
}
.contact-wrapper .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-items {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.contact-wrapper .contact-items .icon {
  width: 60px;
  height: 60px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 25px;
}
.contact-wrapper .contact-items .content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-wrapper .contact-items .content p {
  color: var(--white);
}
.contact-wrapper .contact-items .content p a {
  color: var(--white);
}
.contact-wrapper .contact-form-items {
  background-color: var(--theme-color);
  padding: 35px;
}
.contact-wrapper .contact-form-items h3 {
  color: var(--white);
}
.contact-wrapper .contact-form-items .contact-form {
  margin-top: 30px;
}
.contact-wrapper .contact-form-items .contact-form .form-clt input, .contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
}
.contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  padding-bottom: 245px;
}
@media (max-width: 767px) {
  .contact-wrapper .section-title {
    text-align: left;
  }
}

.contact-wrapper-3 .man-image {
  margin-bottom: -140px;
  text-align: center;
  max-width: 460px;
}
@media (max-width: 1199px) {
  .contact-wrapper-3 .man-image {
    margin-bottom: 0;
  }
}
.contact-wrapper-3 .man-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper-3 .contact-form-items {
  padding: 35px;
  background-color: var(--theme-color);
}
.contact-wrapper-3 .contact-form-items .section-title span {
  color: var(--white);
}
.contact-wrapper-3 .contact-form-items .section-title span::before {
  background-color: var(--white);
}
.contact-wrapper-3 .contact-form-items .section-title h2 {
  color: var(--white);
}
@media (max-width: 767px) {
  .contact-wrapper-3 .contact-form {
    margin-top: 30px;
  }
}
.contact-wrapper-3 .contact-form .form-clt input, .contact-wrapper-3 .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
  text-transform: capitalize;
}
.contact-wrapper-3 .contact-form .form-clt textarea {
  padding-bottom: 145px;
}

@media (max-width: 767px) {
  .contact-wrapper-2 .contact-left-item .section-title {
    text-align: left;
  }
}
.contact-wrapper-2 .contact-left-item .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-item .contact-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 49%;
  word-break: break-word;
}
@media(max-width:992px){
    .contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item{
        max-width: 100%;
    }
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contact-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 32px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content span {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  display: inline-block;
  margin-bottom: 5px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 {
  font-weight: 400;
  color: #555;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 a {
  color: #555;
}
.contact-wrapper-2 .contact-content {
  padding: 34px;
  background-color: var(--theme-color);
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-2 .contact-content h3 {
  margin-bottom: 30px;
  color: var(--white);
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: #555;
  border: 1px solid #D1D1D1;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: #555;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 130px;
  resize: none;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 666px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 300px;
  }
}

.footer-widget-wrapper {
  padding: 30px 0 30px;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
  display: block;
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--text);
  position: relative;
  padding-left: 20px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .footer-contact li a {
  color: var(--text);
}
.footer-widget-wrapper .single-footer-widget .footer-contact li span {
  display: block;
}
.footer-widget-wrapper .single-footer-widget .footer-contact li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .social-list {
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .social-list h4 {
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .social-list .social-icon {
  gap: 20px;
  font-size: 24px;
  color: var(--header);
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .social-list .social-icon a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items:not(:last-child) {
  margin-bottom: 25px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
  width: 98px;
  height: 95px;
  object-fit: cover;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
  margin-bottom: 4px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 500;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 162%;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area.style-white-text .recent-post-items .content h6 a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area.style-white-text .recent-post-items .content h6 a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a::before {
  background-color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a:hover {
  color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn {
  background-color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn i {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn:hover i {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a:hover {
  color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .recent-post-area .recent-post-items .content .post-date li {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .icon {
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 25px;
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content span {
  color: #fff;
  font-weight: 500;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.theme-color-2 .contact-list-2 li .icon {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li {
  position: relative;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content p {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon {
  gap: 20px;
  font-size: 20px;
  margin-top: 20px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input {
  margin-top: 30px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  border: none;
  background-color: var(--white);
  position: relative;
  border: 1px solid var(--border);
  padding: 16px 22px;
  color: var(--text);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn {
  margin-top: 12px;
  width: 100%;
  padding: 22px 22px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn i {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn::before, .footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn::after {
  background-color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn:hover {
  color: var(--header);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding: 16px 0;
}
.footer-bottom.footer-bottom-2 {
  border: none;
  background: #27292C;
  padding: 30px 0;
}
.footer-bottom.footer-bottom-2 p {
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom.footer-bottom-2 p a{
    color: var(--theme-color-2) ;
}
.footer-bottom.style-3 {
  padding: 16px 0;
}

.footer-bottom-wrapper.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-bottom-wrapper.style-2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.footer-bottom-wrapper.style-2 .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-wrapper.style-2 .footer-menu li a {
  color: rgba(255, 255, 255, 0.75);
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.footer-bottom-wrapper.style-2 .footer-menu li a:hover {
  background-size: 100% 1px;
}

.footer-info-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-info-area.style-new {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-info-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0 50px;
}
@media (max-width: 1199px) {
  .footer-info-wrapper-2 {
    flex-wrap: wrap;
    padding: 30px 30px;
    border: none;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 {
    display: grid;
    justify-content: center;
  }
}
.footer-info-wrapper-2 .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding-right: 50px;
  height: 100px;
  max-width: 300px;
  word-break: break-word;
}
@media (max-width: 991px) {
  .footer-info-wrapper-2 .info-items {
    height: initial;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 .info-items {
    display: grid;
    justify-content: center;
  }
}
.footer-info-wrapper-2 .info-items.border-none {
  border-right: none;
  padding-right: 0;
}
.footer-info-wrapper-2 .info-items .icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 25px;
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 .info-items .content {
    text-align: center;
  }
}
.footer-info-wrapper-2 .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-info-wrapper-2 .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: var(--white);
}
.footer-info-wrapper-2 .info-items .content h6 a {
  color: var(--white);
}
.footer-info-wrapper-2.style-4 .info-items .icon {
  background-color: var(--theme-color-2);
}
@media (max-width: 575px) {
  .footer-info-wrapper-2.style-4 .info-items .content {
    text-align: center;
  }
}
.footer-info-wrapper-2.style-4 .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-info-wrapper-2.style-4 .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: var(--white);
}
.footer-info-wrapper-2.style-4 .info-items .content h6 a {
  color: var(--white);
}

.footer-cta-content-3 {
  padding-top: 120px;
}
@media (max-width: 1199px) {
  .footer-cta-content-3 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .footer-cta-content-3 {
    padding-top: 80px;
  }
}
.footer-cta-content-3 .section-title .theme-btn {
  margin-top: 40px;
}

.footer-name {
  padding-top: 20px;
}
.footer-name h2 {
  text-align: center;
  font-size: 250px;
  font-weight: 800;
  letter-spacing: -7.5px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.51);
}
@media (max-width: 1899px) {
  .footer-name h2 {
    font-size: 200px;
  }
}
@media (max-width: 1600px) {
  .footer-name h2 {
    letter-spacing: 2px;
  }
}
@media (max-width: 1600px) {
  .footer-name h2 {
    font-size: 170px;
  }
}
@media (max-width: 1399px) {
  .footer-name h2 {
    font-size: 150px;
  }
}
@media (max-width: 1199px) {
  .footer-name h2 {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .footer-name h2 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .footer-name h2 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .footer-name h2 {
    font-size: 40px;
  }
}

.footer-section {
  position: relative;
}
.footer-section .frame-shape {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 70px;
}
@media (max-width: 1399px) {
  .footer-section .frame-shape {
    display: none;
  }
}

.footer-newsletter-5 {
  padding-top: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 80px;
}
@media (max-width: 1199px) {
  .footer-newsletter-5 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.footer-newsletter-5 .newsletter-content {
  max-width: 720px;
  width: 100%;
}
.footer-newsletter-5 .newsletter-content h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-newsletter-5 .newsletter-content .newsletter {
  position: relative;
}
.footer-newsletter-5 .newsletter-content .newsletter input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding: 19px 30px;
  line-height: 1;
  color: var(--text);
}
.footer-newsletter-5 .newsletter-content .newsletter .paper-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57px;
  height: 58px;
  background-color: var(--theme-color-2);
  text-align: center;
  color: var(--white);
}
.footer-newsletter-5 .newsletter-content .newsletter.theme-color-bg .paper-icon {
  background-color: var(--theme-color);
}
@media(max-width:768px){
    .hero-4 .hero-content h1{
        font-size: 35px;
    }
    .hero-2{
        padding: 110px 0 200px;
    }
    .hero-2 .hero-content p{
        font-size: 16px;
        line-height: 1.2;
        display: none;
    }
    .hero-2 .theme-btn{
        padding: 5px 10px;
        i{
            margin-left: 2px;
        }
    }
    .hero-2 .hero-content .hero-button{
        gap: 10px;
    }
    .form-title{
        font-size: 19px;
    }
    .section-title h2{    
        font-size: 35px;
    line-height: 37px;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 22px;
    }
    .service-details-wrapper .details-content h4{
        margin-block: 10px 12px;
    }
    .service-details-wrapper .details-content h3{
        line-height: 1.2;
    }
    .footer-bottom-wrapper.style-2{
        gap: 0;
        padding-bottom: 80px;
    }
    .hero-4 .hero-content .hero-button{
        gap: 12px;
    }
}
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 23px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}
.breadcumb-wrapper:before
{
    mix-blend-mode: multiply;
}

[data-overlay="theme"]:before {
    background-color: var(--theme-color);
}
[data-overlay]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: "\f061";
  position: relative;
  margin-left: 6px;
  font-weight: 900;
  font-size: 15px;
  color: var(--white);
  font-family: "Font Awesome 6 Free";
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  color: var(--white);
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  word-break: break-word;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.breadcumb-title {
  margin: -0.15em 0 -0.18em 0;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
}

@media (min-width: 1300px) {
  .breadcumb-title {
    font-size: 49px;
}
}

.breadcumb-wrapper {
  background-color: var(--title-color);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.breadcumb-wrapper .breadcumb-content {
  padding: 130px 0 ;
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcumb-wrapper:before {
  mix-blend-mode: multiply;
}

.breadcumb-wrapper .breadcumb-thumb {
  position: relative;
  z-index: 1;
  text-align: end;
  margin: -124px -50px 0px 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper .breadcumb-content {
    --space: 90px;
}
.breadcumb-menu {
    margin: 25px 0 -0.5em 0;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
    font-size: 16px;
}
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    text-align: center;
}
.breadcumb-wrapper .breadcumb-content {
    --space: 80px;
}
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-wrapper .breadcumb-content {
    padding: 70px 0;
}
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-wrapper .breadcumb-content {
    padding: 70px 0;
}
.breadcumb-title {
    font-size: 27px;
}
}
.single-section{
    position: relative;
    padding: 35px 0;
}
.single-service-details{
    position: relative;
    background-color: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
}
.single-service-details img{
    width: 100%;
    height: 100%;
    max-height: 450px;
    min-height: 450px;
    object-fit: cover;
}
.single-service-details .title{
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.333;
    font-weight: 700;
}
.single-service-details strong, .single-service-details b{
    font-size: 17px;
    font-weight: 700;
}
.single-service-details a{
    color: var(--theme-color);
    transition: 0.2s;
}
.single-service-details a:hover{
    color: var(--theme-color);
}
.single-service-details .content-box{
    margin: 0 0 0 0;
    padding: 15px 30px;
    position: relative;
}
.single-service-details .content-box ul{
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.single-service-details .content-box ul li{
    display: block;
    position: relative;
}
.single-service-details .content-box ul li:before{
    position: relative;
    content: '\f0a4';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--theme-color);
    margin-right: 5px;
}


.single-section .sidebar-weight .inner-box{
  position: relative;
  display: block;
  background: #e4eef3;
  padding: 100px 30px 40px 30px;
}

.single-section .sidebar-weight .inner-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.single-section .sidebar-weight .inner-box .bg-layer:before{
    position: absolute;
    content: '';
    background-color: #222;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
}

.single-section .sidebar-weight .inner-box .logo{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 26px;
}

.single-section .sidebar-weight .inner-box .mini-title{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: var(--theme-color);
}

.single-section .sidebar-weight .inner-box h2{
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 8px;
  color: #fff;
}

.single-section .sidebar-weight .inner-box p{
  margin-bottom: 22px;
  color: #fff;
}

.single-section .sidebar-weight .inner-box .theme-btn{
  padding: 13px 30px;
}

.single-section .ripped-shape{
    position: absolute;
    transform: scaleY(-1);
    width: 100%;
    height: 488px;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
    border-radius: 0;
}
.single-section .content-box{
    z-index: 2;
}
.sidebar-weight{
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.single-section .text-box {
    margin-bottom: 32px;
}
.single-section .content{
    padding-bottom: 20px;
}

.single-section .image_row img{
    border-radius: 12px;
}
.single-section .content .single-item .icon-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}
@media(min-width:992px){
  .single-section .common-booking-form .form_section{
    margin-bottom: 20px;
}

}
@media(max-width:992px){
    .single-service-details{
        margin-bottom: 20px;
    }
}
@media(max-width:768px){
    .single-service-details .content-box{
        padding: 10px;
    }
    .single-service-details .title {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
}
.single-service-details .content-box ul li{
    margin-bottom: 5px;
}
.single-service-details img{
    max-height: 300px;
    min-height: 300px;
}
}
@media(max-width:900px){
    .single-section.small-section .row{
    flex-direction: column-reverse;
}
.single-section.small-section .form_section .row{
    flex-direction: column;
}
.single-section .sidebar-item{
    display: none;
}
}
@media(max-width:768px){
    .about-wrapper-2 .about-image .about-image-2{

    height: 200px;
    width: 180px;
    }
    .about-wrapper-2 .about-image .about-image-1{
        height: 400px;
    }
    .about-wrapper-2 .about-image .about-counter{
        width: 110px;
        height: 110px;
    }
    .about-wrapper-2 .about-image .about-counter h2{
        font-size: 20px;
    }
    .about-wrapper-2 .about-image .about-counter{
        padding-top: 7px;
    }
    .about-wrapper-2 .about-image .about-counter p{
        line-height: 1;
    }
    .project-card-item .service_main .project-content{
        padding: 10px;
        margin-top: -10px;
    }
}

.contact-two{
    position:relative;
    padding:120px 0px 120px;
}

.contact-two_shadow{
    position:absolute;
    left:0px;
    top:0px;
    right:0px;
    bottom:0px;
    background-position:center center;
    background-repeat:no-repeat;
}

.contact-two .inner-container{
    position:relative;
    border-radius:20px;
    padding:20px 20px 0;
    background-color: #fff;
    border:1px solid rgba(0,0,0, 0.10);
}

.contact-info_box{
    position:relative;
    margin-top: 0;
}

.contact-info_box .contact-info_text{
    position:relative;
    margin-top:15px;
}

.contact-info_block{
    position:relative;
    margin-bottom: 20px;
}

.contact-info_block-inner{
    position:relative;
}

.contact-info_block-icon{
    position:relative;
    width:50px;
    height:50px;
    font-size:20px;
    line-height:52px;
    font-weight:700;
    text-align:center;
    border-radius:50px;
    display:inline-block;
    color:var(--theme-color);
    font-family: 'Font Awesome 6 Free';
    border:2px solid var(--theme-color);
}

.contact-info_block-inner h4{
    margin:15px 0px 10px;
    color: #222;
}



@keyframes zoom-in-out {
    0% { transform: scale(0); opacity: 0; }
    20% { transform: scale(1.2); opacity: 1; }
    50% { transform: scale(1); opacity: 1; }
    80% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}


.contact-form{
    position:relative;
}

.contact-form .form-group{
    margin-bottom:15px;
}

.contact-form .form-group:last-child{
    margin-bottom:0px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
    position:relative;
    display:block;
    width:100%;
    height:60px;
    line-height:28px;
    padding:10px 30px;
    font-weight:400;
    font-size: 16px;
    background:none;
    color:#666666;
    border-radius: 50px;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
    background-color:#F5F5F5;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
    
}

.contact-form .form-group .theme-btn{
    padding:20px 48px;
    margin-top:10px;
}

.contact-form .form-group textarea{
    position:relative;
    display:block;
    width:100%;
    height:130px;
    resize:none;
    color:#666666;
    font-size: 16px;
    line-height:26px;
    padding:20px 20px;
    border-radius: 25px;
    background-color:#F5F5F5;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    
}

.btn-style-one{ 
    position: relative;
    font-weight:700;
    font-size: 15px;
    overflow: hidden;
    text-align:center;
    border-radius:50px;
    padding:16px 34px;
    display:inline-block;
    color: #fff;
    text-transform: capitalize;
    font-family: 'Manrope', sans-serif;
    background-color: rgba(0, 13, 255, 1);
    background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}

.btn-style-one:before{
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-image: linear-gradient(90deg, rgba(193, 21, 236, 1) 0%, rgba(0, 13, 255, 1) 100%);
}

.btn-style-one:hover:before{
    top: 0%;
}

.btn-style-one .btn-wrap{
    position:relative;
    z-index:1;
    float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-one .btn-wrap .text-one{
    position: relative;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap  .text-one:first-child{
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two{
    position: absolute;
    top: 100%;
    display: block;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two{
    top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two{
    color: #fff;
}

.btn-style-one:hover{
    
}

.btn-style-one:hover:before{
    top: -40%;
}
@media(max-width:768px){
    .header_btn .theme-btn{
        padding: 9px;
        font-size: 13px;
        i{
            width: 30px;
            height: 30px;
            line-height: 30px;
            margin-left: 5px;
        }
    }
    .theme-btn i{
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/*===   04# About Section CSS ===*/
.tripex-about-sec {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
}
.tripex-about-sec .shape {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 1199.98px) {
  .tripex-about-sec .shape {
    display: none;
  }
}
.tripex-about-sec .shape.shape-one {
  top: 20%;
  left: 55px;
}
.tripex-about-sec .shape.shape-one img{
    filter: hue-rotate(-79deg) brightness(1.3);
}
.tripex-about-sec .shape.shape-two {
  bottom: 120px;
  left: 90px;
}
.tripex-about-sec .shape.shape-three {
  bottom: 100px;
  right: 0;
}
.tripex-about-sec .tripex-image-box {
  position: relative;
}
@media (max-width: 767.98px) {
  .tripex-about-sec .tripex-image-box {
    text-align: center;
  }
}
.tripex-about-sec .tripex-image-box .tripex-image.image-one {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  left: -40px;
}
.tripex-about-sec .tripex-image-box .tripex-image.image-one img {
  border-radius: 120px;
  height: 450px;
  object-fit: cover;
}
.tripex-about-sec .tripex-image-box .tripex-image.image-two {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.tripex-about-sec .tripex-image-box .tripex-image.image-two img{
    width: 340px;
}
@media (max-width: 767.98px) {
  .tripex-about-sec .tripex-image-box .tripex-image.image-two {
    position: relative;
    right: 0;
    bottom: 0;
  }
}
.tripex-about-sec .tripex-image-box .tripex-image.image-three {
  position: absolute;
  top: 85px;
  right: 60px;
  z-index: 1;
}
.tripex-about-sec .tripex-image-box .tripex-award-card {
  position: relative;
  margin-left: 30px;
  z-index: 3;
  text-align: center;
}
.tripex-about-sec .tripex-image-box .tripex-award-card .h2{
    color: #fff;
    font-size: 46px;
}
.tripex-award-card .h6{
    font-size: 22px;
    font-weight: 700;
    color: #Fff;
}
.tripex-about-sec .tripex-content-box .tripex-iconic-list {
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}
.tripex-about-sec .tripex-content-box .tripex-button-wrap {
  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;
}
.tripex-about-sec .tripex-content-box .tripex-button-wrap .tripex-button {
  margin-right: 50px;
}
@media screen and (max-width: 1199.98px) {
  .tripex-about-sec .tripex-content-box .tripex-button-wrap .tripex-button {
    margin-right: 20px;
  }
}

.tripex-award-card {
  background-color: var(--theme-color);
  padding: 35px 40px;
  border-radius: 30px;
  max-width: 300px;
}
.tripex-award-card .icon {
  margin-bottom: 25px;
}
.tripex-award-card .content .h5 {
  color: var(--white);
}

.tripex-iconic-item .content .h6 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
}
.tripex-iconic-item .content .h6 i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
  background-color: var(--theme-color);
  font-size: 25px;
  color: var(--white);
  margin-right: 20px;
}
.tripex-iconic-item .content p {
  line-height: 28px;
  font-weight: 500;
}

.tripex-avatar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--border-color);
  border-radius: 30.5px;
  padding: 8px 25px 8px 8px;
  background-color: var(--white);
  -webkit-box-shadow: 10px 4px 60px 0px rgba(115, 180, 88, 0.2);
          box-shadow: 10px 4px 60px 0px rgba(115, 180, 88, 0.2);
}
.tripex-avatar-card ul li {
  display: inline-block;
}
.tripex-avatar-card ul li:not(:first-child) {
  margin-left: -15px;
}
.tripex-avatar-card ul li img {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 2px solid var(--border-color);
  -webkit-box-shadow: 10px 4px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 4px 60px 0px rgba(0, 0, 0, 0.1);
}
.tripex-avatar-card span {
  font-size: 18px;
  font-weight: 500;
  margin-left: 15px;
}
/* Floatig Animation */
.animate-float-bob-x {
  -webkit-animation-name: float-bob-x;
          animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.animate-float-bob-y {
  -webkit-animation-name: float-bob-y;
          animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

/*===   10# Features Section CSS ===*/
.tripex-choose-sec {
  position: relative;
  z-index: 1;
}
.tripex-choose-sec .shape {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 1199.98px) {
  .tripex-choose-sec .shape {
    display: none;
  }
}
.tripex-choose-sec .shape.shape-one {
  bottom: 90px;
  left: 85px;
}
@media (max-width: 1650px) {
  .tripex-choose-sec .shape.shape-one {
    left: 10px;
  }
}
.tripex-choose-sec .shape.shape-one img{
     filter: hue-rotate(-79deg) brightness(1.3);
}
.tripex-choose-sec .shape.shape-two {
  top: 85px;
  right: 40px;
}
.tripex-choose-sec .shape.shape-two img{
    filter: hue-rotate(-79deg) brightness(1.3);
}
.tripex-choose-sec .tripex-image-box {
  padding-left: 30px;
  margin-right: -130px;
}
@media (max-width: 1650px) {
  .tripex-choose-sec .tripex-image-box {
    margin-right: -80px;
  }
}
@media screen and (max-width: 1199.98px) {
  .tripex-choose-sec .tripex-image-box {
    margin-right: 0;
  }
  .tripex-choose-sec .tripex-image-box{
    margin-bottom: 0;
    padding: 0;
  }
}

.tripex-iconic-box-two {
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 15px;
  padding: 30px 35px 23px;
  -webkit-transition: all 0.3s;
  margin-bottom: 15px;
  transition: all 0.3s;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
.tripex-iconic-box-two .content div {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 22px;
    margin-bottom: 25px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.tripex-iconic-box-two .content div i {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    border-radius: 10px;
    background-color: #efffe5;
    color: var(--theme-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 40px;
    margin-right: 20px;
    line-height: 1;
}
.tripex-iconic-box-two:hover {
  border-color: var(--primary-color);
/*  -webkit-filter: drop-shadow(10px 4px 60px rgba(115, 180, 88, 0.2));*/
/*          filter: drop-shadow(10px 4px 60px rgba(115, 180, 88, 0.2));*/
}
@media (max-width: 1650px) {
  .tripex-iconic-box-two {
    padding: 30px 25px 23px;
  }
}
.details-content div{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.position-relative{
    position: relative !important;
}

.fixed__btns {
  position: fixed;
  right: 0;
  left: 50%;
  bottom: 6px;
  background-color: transparent;
  width: 94%;
  height: 50px;
  z-index: 99;
  padding: 0;
  gap: 11px;
  overflow: hidden;
  display: flex;
  transform: translateX(-50%);
}

/*float  buttons*/
.float {
  position: relative;
  width: 100%;
  height: 100%;
  color: #FFF;
  border-radius: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  border-radius: 30px;
  letter-spacing: -0.02em;
  box-shadow: 0px 0px 6px rgba(255, 255, 255, 1);
  border: 2px solid #fff;
}

.float-call {
  background-color: var(--theme-color);
  font-size: 15px;
  font-weight: 500 !important;
  color: #fff;
}

.my-float {
  margin-top: 5px;
  color: #25d366;
}

.my-call {
  margin-top: 5px;
}

/*testimonial-section*/
.bd-tm__item {
  background: #fff;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  padding: 46px 50px 50px 50px;
  border-radius: 6px;
  overflow: hidden;
  border-bottom: 3px solid var(--theme-color);
}

.bd-tm__item:hover .bd-tm__text p {
  color: #fff;
}

.bd-tm__item:hover .bd-tm__quote-icon i {
  color: #fff;
}

.bd-tm__item:hover .bd-tm__author {
  background: var(--theme-color);
}

.bd-tm__item:hover .bd-tm__author-name {
  color: #fff;
}

.bd-tm__item:hover .bd-tm__author-cat {
  color: #fff;
}

.bd-tm__item:hover::before {
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .bd-tm__item {
    padding: 40px 20px 40px 20px;
  }
}

.bd-tm__rating {
  margin-bottom: 15px;
}

.bd-tm__rating i {
  color: var(--second-color);
}

.bd-hover-top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: var(--theme-color);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-transform: 0.5s;
  -moz-transform: 0.5s;
  -ms-transform: 0.5s;
  transform: 0.5s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.float_whatsapp {
  background-color: #25D366;
}

.float {
  img {
    width: 23px;
    margin-right: 5px;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    /* Moves up */
  }

  100% {
    transform: translateY(0);
  }
}

.fixed__btns {
  position: fixed;
  right: 0;
  left: 50%;
  bottom: 6px;
  background-color: transparent;
  width: 94%;
  height: 50px;
  z-index: 99;
  padding: 0;
  gap: 11px;
  overflow: hidden;
  display: flex;
  transform: translateX(-50%);
}
@media(min-width:768px){
.float_whatsapp,
    .float-call {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 175px !important;
        height: 40px;
        border-radius: 10px;
        animation: float 1s ease-in-out infinite;
    }

    .float-call {
        right: auto;
        left: 20px;
    }

    .fixed__btns {
        background-color: transparent;
        height: 0;
        transform: none;
    }
}
header.active .main-header--two .mobile-nav__btn span{
  background-color: #fff;
}
.main-header--two.active .main-menu .main-menu__list &gt; li &gt; a{
    color: #fff;
}
.main-header--two.active .main-menu .main-menu__list &gt; li.current a{
    color: var(--theme-color);
}
.main-header--two.active .main-menu .main-menu__list &gt; li.current li a{
    color: var(--careox-text, #636363);
}
.main-header__logo img{
    border: 3px solid #000;
    padding: 4px;
    width: 140px;
    border-radius: 10px;
}
.main-header--two.active .main-header__logo img{
    border-color: #fff;
}
@media(max-width:768px){
    .tripex-about-sec .tripex-image-box .tripex-image.image-one img{
        height: auto;
    }
    .tripex-about-sec .tripex-image-box .tripex-image.image-one{
        left: -20px;
    }
    
    .tripex-about-sec .tripex-image-box .tripex-image.image-two{
        display: none;
    }
    .tripex-about-sec .tripex-image-box .tripex-award-card{
        margin-left: 0;
        margin-inline: auto;
    }
    .form_section{
        border-color: var(--theme-color-2);
    }
}
.header_resp_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.header_resp_btns a{
    font-weight: 400;
    font-size: 14px;
}
.header_resp_btns .text{
    line-height: 1;
}
.header_resp_btns .h3{
    line-height: 1;
    margin-bottom: 0;
    font-size: 18px;

}
.header_resp_btns .icon{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--theme-color);
    font-size: 17px;
    color: #Fff;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 7px rgba(44, 44, 44, 0.4);
}
.header_resp_btns a.whatsapp{
    background-color: #25D366;
}
@media(max-width:768px){
    .main-header__right{
        width: auto;
    }
    .main-header__inner{
        justify-content: space-between !important;
    }
    .main-slider-two__text{
        line-height: 1;
        margin-bottom: 15px;
    }
    .main-header--two .container-fluid{
        padding-inline: 5px;
    }
}
.bg-theme_light{
    background-color:  #fef6f4 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.footer_contact_main{
    
    padding: 7px;
    border: 2px solid #fff;
    border-radius: 10px;
}
div{
    color: #000;
}
.details-content p a{
    color: var(--theme-color);
    font-size: 600;
}</pre></body></html>