
/* Menu Widget Styles - Scoped under .menu-wrapper */

.menu-wrapper {
  padding: 70px 0;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1200px) {
  .menu-wrapper {
    padding: 120px 0;
  }
}

.menu-wrapper a {
  text-decoration: none !important;
  color: #212529;
}

.menu-wrapper .section-header {
  text-align: center;
  margin-top: -5px;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

@media (min-width: 576px) {
  .menu-wrapper .section-header {
    margin-bottom: 50px;
    margin-top: -10px;
  }
}

.menu-wrapper .section-header .header-img {
  margin: 10px 0 15px;
}

.menu-wrapper .section-header > span {
  display: block;
  font-size: 30px;
  font-weight: 500;
  color: var(--secondary_color);
}

.menu-wrapper .section-header h2 {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 30px;
  font-weight: 600;
}

@media (min-width: 576px) {
  .menu-wrapper .section-header h2 {
    margin-bottom: 15px;
    font-size: 48px;
  }
}

.menu-wrapper .section-wrapper {
  position: relative;
}

.menu-wrapper .section-wrapper .tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.menu-wrapper .section-wrapper .tab-bar .tablinks {
  display: flex;
  align-items: center;
  padding: 12px 23px;
  background: #fff;
  margin-right: 10px;
  margin-bottom: 0;
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.1);
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  border-top: 2px solid transparent;
}

@media (max-width: 575px) {
  .menu-wrapper .section-wrapper .tab-bar {
    margin-left: -8px!important;
    margin-right: -8px;
  }
  
  .menu-wrapper .section-wrapper .tab-bar .tablinks {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    margin: 8px;
    padding: 15px 10px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  .menu-wrapper .section-wrapper .tab-bar .tablinks:first-child,
  .menu-wrapper .section-wrapper .tab-bar .tablinks:last-child {
    margin-left: 8px!important;
    margin-right: 8px!important;
  }
  
  .menu-wrapper .section-wrapper .tab-bar .tablinks img {
    margin-right: 0;
    margin-bottom: 8px;
    max-width: 35px;
    max-height: 35px;
  }
  
  .menu-wrapper .section-wrapper .tab-bar .tablinks span {
    margin-left: 0;
    font-size: 13px;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .menu-wrapper .section-wrapper .tab-bar .tablinks {
    margin: 10px;
    margin-right: 10px;
  }
}

.menu-wrapper .section-wrapper .tab-bar .tablinks:hover {
  box-shadow: 0 0 15px rgba(136, 136, 136, 0.2);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.menu-wrapper .section-wrapper .tab-bar .tablinks.active {
  border-top: 2px solid var(--secondary_color);
}

.menu-wrapper .section-wrapper .tab-bar .tablinks:first-child {
  margin-left: 0;
}

.menu-wrapper .section-wrapper .tab-bar .tablinks:last-child {
  margin-right: 0;
}

.menu-wrapper .section-wrapper .tab-bar .tablinks img {
  margin-right: 10px;
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 40px;
  display: block;
}

.menu-wrapper .section-wrapper .tab-bar .tablinks span {
  font-weight: 700;
  color: var(--primary_color_font);
  display: inline-block;
  margin-left: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-wrapper .section-wrapper .tabcontent {
  display: none;
}

.menu-wrapper .section-wrapper .tabcontent.active {
  display: block;
}

.menu-wrapper .rating i {
  color: var(--secondary_color);
}

.menu-wrapper .product-item.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  margin: 5px;
  border-radius: var(--general_border_radius);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 576px) {
  .menu-wrapper .product-item.style-2 {
    flex-direction: row;
    text-align: left;
  }
}

.menu-wrapper .product-item.style-2:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.menu-wrapper .product-item.style-2:hover .product-thumb .price {
  background: #fff;
  border-color: var(--secondary_color);
  color: var(--secondary_color);
}

.menu-wrapper .product-item.style-2:hover .product-content .product-title h6 a {
  color: var(--secondary_color);
}

.menu-wrapper .product-item.style-2 .product-thumb {
  width: 120px;
  height: 120px;
  line-height: 120px;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}

@media (min-width: 576px) {
  .menu-wrapper .product-item.style-2 .product-thumb {
    margin-bottom: 0;
    margin-left: 0;
  }
}

.menu-wrapper .product-item.style-2 .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--general_border_radius);
}

.menu-wrapper .product-item.style-2 .product-thumb .price {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border: 4px solid #fff;
  background: var(--secondary_color);
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-wrapper .product-item.style-2 .product-content {
  width: 100%;
}

@media (min-width: 576px) {
  .menu-wrapper .product-item.style-2 .product-content {
    width: calc(100% - 150px);
    padding: 0 10px 0 0;
  }
}

.menu-wrapper .product-item.style-2 .product-content .product-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: dashed #e6e6e6;
  border-width: 1px;
  padding-bottom: 15px;
}

@media (max-width: 575px) {
  .menu-wrapper .product-item.style-2 .product-content .product-title {
    justify-content: center;
    flex-direction: column;
  }
  
  .menu-wrapper .product-item.style-2 .product-content .product-title h6 {
    width: 100%;
  }
}

.menu-wrapper .product-item.style-2 .product-content .product-title h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.menu-wrapper .product-item.style-2 .product-content .product-title h6 a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-wrapper .product-item.style-2 .product-content .product-title .rating {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .menu-wrapper .product-item.style-2 .product-content .product-title .rating {
    margin-bottom: 0;
  }
}

.menu-wrapper .product-item.style-2 .product-content .product-desc p {
  color: #696969;
  font-size: 15px;
  margin-bottom: 0;
}

/* Menu Card Widget Styles - Scoped under .menu-card-wrapper */

.menu-card-wrapper {
  padding: 70px 0;
}
.menu-card-wrapper a{
    text-decoration: none !important;
    color: #212529;
  }
@media (min-width: 1200px) {
  .menu-card-wrapper {
    padding: 120px 0;
  }
}

.menu-card-wrapper .foodlist-item {
  margin-bottom: 60px;
}

.menu-card-wrapper .foodlist-item:last-child {
  margin-bottom: 0;
}

.menu-card-wrapper .foodlist-item.style-2 {
  background: rgba(204, 71, 117, 0.1);
  padding: 5px;
  margin-bottom: 40px;
}

.menu-card-wrapper .col-lg-6:nth-child(2) .foodlist-item.style-2 {
  background: rgba(14, 167, 111, 0.1);
}

@media (min-width: 576px) {
  .menu-card-wrapper .col-lg-6:nth-child(2) .foodlist-item.style-2 .product-header {
    background: var(--primary_color);
  }
}

.menu-card-wrapper .col-lg-6:nth-child(2) .foodlist-item.style-2 .product-header .ph-content h5 {
  color: var(--primary_color);
}

.menu-card-wrapper .col-lg-6:nth-child(3) .foodlist-item.style-2 {
  background: rgba(159, 82, 255, 0.1);
}

@media (min-width: 992px) {
  .menu-card-wrapper .col-lg-6:nth-child(3) .foodlist-item.style-2 {
    margin-bottom: 0;
  }
}

@media (min-width: 576px) {
  .menu-card-wrapper .col-lg-6:nth-child(3) .foodlist-item.style-2 .product-header {
    background: var(--secondary_color);
  }
}

.menu-card-wrapper .col-lg-6:nth-child(3) .foodlist-item.style-2 .product-header .ph-content h5 {
  color: var(--secondary_color);
}

.menu-card-wrapper .col-lg-6:nth-child(4) .foodlist-item.style-2 {
  margin-bottom: 0;
  background: rgba(255, 193, 57, 0.1);
}

@media (min-width: 576px) {
  .menu-card-wrapper .col-lg-6:nth-child(4) .foodlist-item.style-2 .product-header {
    background: var(--third_color);
  }
}

.menu-card-wrapper .col-lg-6:nth-child(4) .foodlist-item.style-2 .product-header .ph-content h5 {
  color: var(--third_color);
}

.menu-card-wrapper .product-header {
  padding: 60px 0;
  margin: 5px;
  background: #fff;
  position: relative;
}

@media (min-width: 576px) {
  .menu-card-wrapper .product-header {
    background: var(--secondary_color);
  }
}

.menu-card-wrapper .product-header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-position: center !important;
  background: url(imagenes/bg-shape.png) no-repeat;
  z-index: 0;
}

@media (max-width: 575px) {
  .menu-card-wrapper .product-header::after {
    display: none;
  }
}

.menu-card-wrapper .product-header .bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
  .menu-card-wrapper .product-header .bg-shape {
    display: none;
  }
}

.menu-card-wrapper .product-header .ph-content {
  position: relative;
  z-index: 1;
}

.menu-card-wrapper .product-header .ph-content img {
  margin-bottom: 10px;
}

.menu-card-wrapper .product-header .ph-content h5 {
  margin-bottom: 10px;
  color: var(--secondary_color);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 576px) {
  .menu-card-wrapper .product-header .ph-content h5 {
    font-size: 24px;
    line-height: 24px;
  }
}

.menu-card-wrapper .rating i {
  color: var(--secondary_color);
}

.menu-card-wrapper .product-item.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  margin: 5px;
  border-radius: var(--general_border_radius);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 576px) {
  .menu-card-wrapper .product-item.style-2 {
    flex-direction: row;
    text-align: left;
  }
}

.menu-card-wrapper .product-item.style-2:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.menu-card-wrapper .product-item.style-2:hover .product-thumb .price {
  background: #fff;
  border-color: var(--secondary_color);
  color: var(--secondary_color);
}

.menu-card-wrapper .product-item.style-2:hover .product-content .product-title h6 a {
  color: var(--secondary_color);
}

.menu-card-wrapper .product-item.style-2 .product-thumb {
  width: 120px;
  height: 120px;
  line-height: 120px;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .menu-card-wrapper .product-item.style-2 .product-thumb {
    margin-bottom: 0;
    margin-left: 0;
  }
}

.menu-card-wrapper .product-item.style-2 .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--general_border_radius);
}

.menu-card-wrapper .product-item.style-2 .product-thumb .price {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border: 4px solid #fff;
  background: var(--secondary_color);
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-card-wrapper .product-item.style-2 .product-content {
  width: 100%;
}

@media (min-width: 576px) {
  .menu-card-wrapper .product-item.style-2 .product-content {
    width: calc(100% - 150px);
    padding: 0 10px 0 0;
  }
}

.menu-card-wrapper .product-item.style-2 .product-content .product-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: dashed #e6e6e6;
  border-width: 1px;
  padding-bottom: 15px;
}

@media (max-width: 575px) {
  .menu-card-wrapper .product-item.style-2 .product-content .product-title {
    justify-content: center;
    flex-direction: column;
  }
  
  .menu-card-wrapper .product-item.style-2 .product-content .product-title h6 {
    width: 100%;
  }
}

.menu-card-wrapper .product-item.style-2 .product-content .product-title h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.menu-card-wrapper .product-item.style-2 .product-content .product-title h6 a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-card-wrapper .product-item.style-2 .product-content .product-title .rating {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .menu-card-wrapper .product-item.style-2 .product-content .product-title .rating {
    margin-bottom: 0;
  }
}

.menu-card-wrapper .product-item.style-2 .product-content .product-desc p {
  color: #696969;
  font-size: 15px;
  margin-bottom: 0;
}


/* Shop Page Widget Styles - Scoped under .shop-page-wrapper */

.shop-page-wrapper {
  padding: 70px 0;
  background: #fafafa;
}
img {
 max-width: 100% !important;
}
.shop-page-wrapper a{
  text-decoration: none !important;
}
@media (min-width: 1200px) {
  .shop-page-wrapper {
    padding: 120px 0;
  }
}

.shop-page-wrapper .shop-title {
  padding: 16px 20px;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.1);
}

.shop-page-wrapper .shop-title p {
  margin-bottom: 0;
  color: var(--primary_color_font);
}

.shop-page-wrapper .shop-title .product-view-mode a {
  color: var(--primary_color_font);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop-page-wrapper .shop-title .product-view-mode a.active {
  color: var(--secondary_color);
}

.shop-page-wrapper .shop-title .product-view-mode a:last-child {
  margin-left: 5px;
}

.shop-page-wrapper .shop-product-wrap.grid .product-list-item {
  display: none;
}

.shop-page-wrapper .shop-product-wrap.list .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.shop-page-wrapper .shop-product-wrap.list .product-item {
  display: none;
}

.shop-page-wrapper .shop-product-wrap .product-item,
.shop-page-wrapper .shop-product-wrap .product-list-item {
  padding: 10px;
  margin-bottom: 30px;
  align-items: center;
  background: #fff;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.1);
  display: flex;
  flex-direction: column;
  border-radius: var(--general_border_radius);
}

.shop-page-wrapper .shop-product-wrap .product-item:hover .product-thumb::after,
.shop-page-wrapper .shop-product-wrap .product-list-item:hover .product-thumb::after {
  transform: scale(1);
}

.shop-page-wrapper .shop-product-wrap .product-item:hover .product-thumb .product-action-link,
.shop-page-wrapper .shop-product-wrap .product-list-item:hover .product-thumb .product-action-link {
  opacity: 1;
  z-index: 9;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb {
  height: auto;
  width: auto;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb::after,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.88);
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb img,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb img {
  width: 100%;
  border-radius: var(--general_border_radius);
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb .product-action-link,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb .product-action-link {
  position: absolute;
  display: flex;
  justify-content: center;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb .product-action-link a,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb .product-action-link a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  background: var(--secondary_color);
  color: #fff;
  margin: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb .product-action-link a.view-modal,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb .product-action-link a.view-modal {
  cursor: pointer;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb .product-action-link a:hover,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb .product-action-link a:hover {
  background: var(--primary_color);
}

.shop-page-wrapper .shop-product-wrap .product-item .product-thumb .price {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 54px;
  height: 54px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 4px solid #fff;
  background: var(--secondary_color);
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}

.shop-page-wrapper .shop-product-wrap .product-item:hover .product-thumb .price {
  background: #fff;
  border-color: var(--secondary_color);
  color: var(--secondary_color);
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-content {
  padding: 20px 0 10px;
  text-align: center;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content h6,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-content h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content h6 a,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-content h6 a {
  color: var(--primary_color_font);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content h6 a:hover,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-content h6 a:hover {
  color: var(--secondary_color);
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content p,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-content p {
  color: #696969;
  margin-bottom: 5px;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content p i,
.shop-page-wrapper .shop-product-wrap .product-list-item .product-content p i {
  color: var(--secondary_color);
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content .cat-name {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary_color);
  font-weight: 600;
  font-size: 14px;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content .rating {
  margin-top: 10px;
}

.shop-page-wrapper .shop-product-wrap .product-item .product-content .rating i {
  color: var(--secondary_color);
}

/* Product List Item Styles */
.shop-page-wrapper .shop-product-wrap .product-list-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb {
  width: 100%;
}

@media (min-width: 768px) {
  .shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb {
    width: 35%;
  }
}

.shop-page-wrapper .shop-product-wrap .product-list-item .product-thumb img {
  width: 100%;
}

.shop-page-wrapper .shop-product-wrap .product-list-item .product-content {
  width: 100%;
  text-align: left;
  padding: 0;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .shop-page-wrapper .shop-product-wrap .product-list-item .product-content {
    width: 65%;
  }
}

.shop-page-wrapper .shop-product-wrap .product-list-item .product-content h6 {
  margin-bottom: 10px;
}

.shop-page-wrapper .shop-product-wrap .product-list-item .product-content .price {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary_color);
  margin-bottom: 10px;
  display: inline-block;
}

@media (min-width: 576px) {
  .shop-page-wrapper .shop-product-wrap .product-list-item .product-content .price {
    margin-right: 15px;
  }
}

.shop-page-wrapper .shop-product-wrap .product-list-item .product-content .rating {
  display: inline-block;
  transform: translateY(-5px);
}

/* Pagination Styles */
.shop-page-wrapper .paginations {
  margin: 40px 0;
}

@media (min-width: 992px) {
  .shop-page-wrapper .paginations {
    margin-bottom: 0;
  }
}

.shop-page-wrapper .paginations ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-page-wrapper .paginations ul li {
  padding: 5px;
}

.shop-page-wrapper .paginations ul li a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 4px rgba(10, 31, 68, 0.1);
  color: #696969;
  z-index: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.shop-page-wrapper .paginations ul li a.active,
.shop-page-wrapper .paginations ul li a:hover {
  color: #fff;
  background: var(--secondary_color);
}

.shop-page-wrapper .paginations ul li a.dot {
  box-shadow: none;
}

.shop-page-wrapper .paginations ul li a.dot:hover {
  background: transparent;
  color: #696969;
}

/* Animation */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* Magnific Popup Image Styles */
.shop-page-wrapper .mfp-image-holder .mfp-img {
  max-width: 100%;
  height: auto;
  padding: 0;
}

.shop-page-wrapper .mfp-container {
  padding: 20px;
}

.shop-page-wrapper .mfp-figure {
  line-height: 0;
}

.shop-page-wrapper .mfp-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.shop-page-wrapper .mfp-bottom-bar {
  margin-top: 0;
}


/* Scoped styles for mediox_about widget */
.about-wrapper {
  /* Section Space */
}

.about-wrapper .section-space {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .about-wrapper .section-space {
    padding: 100px 0;
  }
}

/* Sec Title */
.about-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.about-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.about-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.about-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--primary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

.about-wrapper .sec-title__title {
  font-family: var(--primary_font);
}

@media (max-width: 767px) {
  .about-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.about-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
}

@media (max-width: 767px) {
  .about-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Mediox Ratings */
.about-wrapper .mediox-ratings {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-wrapper .mediox-ratings__icon {
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
  color: var(--primary_color);
  transition: all 500ms ease;
}

.about-wrapper .mediox-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* Testimonials Two */
.about-wrapper .testimonials-two {
  position: relative;
  background-color: #FFFFFF;
}

.about-wrapper .testimonials-two .container {
  position: relative;
  z-index: 1;
}

/* Equalize carousel items height */
.about-wrapper .testimonials-two__carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.about-wrapper .testimonials-two__carousel .owl-item {
  display: flex;
  align-items: stretch;
}

.about-wrapper .testimonials-two__carousel .item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-wrapper .testimonials-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 26px;
  bottom: 55px;
  opacity: 0.3;
  animation: moveHorizontal 2s linear infinite;
}

@media (max-width: 767px) {
  .about-wrapper .testimonials-two__shape {
    display: none;
  }
}

/* Testimonial Card Two */
.about-wrapper .testimonial-card-two {
  position: relative;
  padding: 30px 40px 0px;
  border-radius: var(--general_border_radius);
  background-color: #ECF0F5;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

@media (max-width: 767px) {
  .about-wrapper .testimonial-card-two {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.about-wrapper .testimonial-card-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  opacity: 0;
  mix-blend-mode: multiply;
  border-radius: inherit;
  transition: all 500ms ease;
}

.about-wrapper .testimonial-card-two:hover .testimonial-card-two__bg {
  opacity: 0.2;
}

.about-wrapper .testimonial-card-two__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-wrapper .testimonial-card-two__top {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-wrapper .testimonial-card-two__quote-icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--primary_color);
}

.about-wrapper .testimonial-card-two__quote-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.about-wrapper .testimonial-card-two__ratings {
  position: relative;
  padding: 13px;
  background-color: var(--primary_color);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
  transition: all 500ms ease;
}

.about-wrapper .testimonial-card-two__ratings::before,
.about-wrapper .testimonial-card-two__ratings::after {
  content: "";
  background-color: var(--primary_color);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.about-wrapper .testimonial-card-two__ratings::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.about-wrapper .testimonial-card-two__ratings::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.about-wrapper .testimonial-card-two:hover .testimonial-card-two__ratings::before,
.about-wrapper .testimonial-card-two:hover .testimonial-card-two__ratings::after {
  width: calc(50% + 6px);
}

.about-wrapper .testimonial-card-two .mediox-ratings {
  gap: 7px;
}

.about-wrapper .testimonial-card-two .mediox-ratings__icon {
  font-size: 14px;
  color: #FFFFFF;
}

.about-wrapper .testimonial-card-two__quote {
  margin: 0;
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--primary_font);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper .testimonial-card-two__quote {
    margin-bottom: 25px;
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .testimonial-card-two__quote {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .testimonial-card-two__quote {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .testimonial-card-two__quote {
    margin-bottom: 30px;
  }
}

@media (max-width: 430px) {
  .about-wrapper .testimonial-card-two__quote {
    font-size: 16px;
  }
}

.about-wrapper .testimonial-card-two__bottom {
  display: flex;
  align-items: flex-end;
  gap: 40px 30px;
  margin-top: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper .testimonial-card-two__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .about-wrapper .testimonial-card-two__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-wrapper .testimonial-card-two__identity {
  position: relative;
  padding: 18px 24px 15px;
  border-radius: 20px 20px 0px 0px;
  background-color: var(--primary_color);
  overflow: hidden;
  z-index: 1;
}

.about-wrapper .testimonial-card-two__identity::before,
.about-wrapper .testimonial-card-two__identity::after {
  content: "";
  background-color: var(--primary_color);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.about-wrapper .testimonial-card-two__identity::before {
  left: -5px;
  border-radius: 20px 0 0 0;
}

.about-wrapper .testimonial-card-two__identity::after {
  right: -5px;
  border-radius: 0 20px 0 0;
}

.about-wrapper .testimonial-card-two:hover .testimonial-card-two__identity::before,
.about-wrapper .testimonial-card-two:hover .testimonial-card-two__identity::after {
  width: calc(50% + 6px);
}

.about-wrapper .testimonial-card-two__name {
  margin: 0;
  margin-bottom: 2px;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
  font-family: var(--primary_font);
}

.about-wrapper .testimonial-card-two__designation {
  margin: 0;
  font-size: 15px;
  color: #D9E1EB;
  text-transform: capitalize;
  font-family: var(--primary_font);
  line-height: 1.5;
}

.about-wrapper .testimonial-card-two__image {
  position: relative;
  flex-shrink: 0;
}

.about-wrapper .testimonial-card-two__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  left: 10px;
  border: 2px solid var(--primary_color);
  border-radius: 1000px 1000px 0px 0px;
}

.about-wrapper .testimonial-card-two__image img {
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: 1000px 1000px 0px 0px;
  z-index: 1;
}

/* Owl Carousel */
.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: none !important;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--secondary_color_font);
  background-color: #ECF0F5;
  border-radius: 50%;
  border: 1px solid #D9E1EB;
  transition: all 400ms ease;
}

@media (max-width: 767px) {
  .about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
  }
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: #FFFFFF;
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px!important;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #707882;
  transition: all 400ms ease;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.1);
  transition: all 400ms ease;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--primary_color);
}

.about-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}


/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes zump {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, -15px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}

/* Section Title Styles */
.faq-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.faq-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .faq-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.faq-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: #ffffff;
}

@media (max-width: 767px) {
  .faq-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Section Space */
.faq-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .faq-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

/* FAQ One Styles */
.faq-wrapper .faq-one {
  position: relative;
  background-color: var(--primary_color_font);
  counter-reset: faqNumber;
}

.faq-wrapper .faq-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: screen;
}

.faq-wrapper .faq-one--home2 .faq-one__bg {
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.faq-wrapper .faq-one .container {
  position: relative;
  z-index: 1;
}

.faq-wrapper .faq-one__content {
  position: relative;
  z-index: 1;
}

.faq-wrapper .faq-one .sec-title {
  margin-bottom: 49px;
}

.faq-wrapper .faq-one .faq-accordion {
  position: relative;
  z-index: 1;
}

.faq-wrapper .faq-one .faq-accordion .accordion {
  background-color: transparent;
  border-radius: 100px;
}

.faq-wrapper .faq-one .faq-accordion .accordion + .accordion {
  margin-top: 21px;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title {
  position: relative;
  padding: 15.5px 65px 15.5px 60px;
  background-color: transparent;
  border: 1px solid rgba(217, 225, 235, 0.2);
  cursor: pointer;
  overflow: hidden;
  border-radius: 100px;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title::after {
  content: "0" counter(faqNumber);
  counter-increment: faqNumber;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 14px;
  color: var(--secondary_color);
  font-weight: 600;
  background-color: rgba(51, 193, 237, 0.2);
  z-index: 1;
  transition: all 500ms ease;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title h4 {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.35;
  text-transform: capitalize;
  transition: all 500ms ease;
}

@media (max-width: 430px) {
  .faq-wrapper .faq-one .faq-accordion .accordion-title h4 {
    font-size: 18px;
  }
}

@media (max-width: 412px) {
  .faq-wrapper .faq-one .faq-accordion .accordion-title h4 {
    font-size: 16px;
  }
}

.faq-wrapper .faq-one .faq-accordion .accordion-title__icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: auto;
  right: 14px;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid rgba(217, 225, 235, 0.2);
  border-radius: 50%;
  transition: all 500ms ease;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title__icon::after,
.faq-wrapper .faq-one .faq-accordion .accordion-title__icon::before {
  content: "";
  width: 1px;
  height: 11px;
  position: absolute;
  background-color: var(--secondary_color_font);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title__icon::after {
  width: 11px;
  height: 1px;
}

.faq-wrapper .faq-one .faq-accordion .active.accordion {
  border-radius: 0;
  background-color: transparent;
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title {
  border: 1px solid rgba(217, 225, 235, 0.2);
  border-radius: 100px;
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title::after {
  color: #ffffff;
  background-color: var(--secondary_color);
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title__icon {
  background-color: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title__icon::after,
.faq-wrapper .faq-one .faq-accordion .active .accordion-title__icon::before {
  background-color: var(--secondary_color);
  opacity: 1;
}

.faq-wrapper .faq-one .faq-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 600ms cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 500ms ease-in-out, 
              padding-top 500ms ease-in-out,
              padding-bottom 500ms ease-in-out;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-content {
  max-height: 5000px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-wrapper .faq-one .faq-accordion .accordion-content .inner {
  padding: 11px 0 0;
  transition: opacity 400ms ease-in-out;
}

.faq-wrapper .faq-one .faq-accordion .accordion-content p {
  color: #ffffff;
}

.faq-wrapper .faq-one__image {
  position: relative;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-one__image {
    margin-bottom: -120px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .faq-one__image {
    margin-bottom: -100px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .faq-one__image {
    margin-bottom: -80px;
  }
}

@media (min-width: 1200px) {
  .faq-wrapper .faq-one__image {
    position: absolute;
    right: 15px;
    bottom: -120px;
    left: 46px;
  }
}

@media (min-width: 1400px) {
  .faq-wrapper .faq-one__image {
    right: auto;
    left: 0px;
  }
}

@media (min-width: 1600px) {
  .faq-wrapper .faq-one__image {
    left: 46px;
  }
}

.faq-wrapper .faq-one__image__one,
.faq-wrapper .faq-one__image__two,
.faq-wrapper .faq-one__image__shape {
  max-width: 100%;
  height: auto;
}

.faq-wrapper .faq-one__image__two {
  display: none;
}

@media (min-width: 768px) {
  .faq-wrapper .faq-one__image__two {
    display: inline-block;
    max-width: 440px;
    margin-left: -140px;
  }
}

@media (min-width: 992px) {
  .faq-wrapper .faq-one__image__two {
    max-width: 100%;
    margin-left: -100px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .faq-wrapper .faq-one__image__two {
    display: none;
  }
}

@media (min-width: 1400px) {
  .faq-wrapper .faq-one__image__two {
    margin-left: -160px;
    max-width: 440px;
  }
}

@media (min-width: 1600px) {
  .faq-wrapper .faq-one__image__two {
    max-width: 100%;
  }
}

.faq-wrapper .faq-one--home2 .faq-one__image__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 65px;
  left: 52px;
  z-index: -1;
  animation: rotate 5s linear infinite;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    top: 0px;
  }
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    top: 40px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    top: 20px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    display: none;
  }
}

.faq-wrapper .faq-one--home2 .faq-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 242px;
  right: -1px;
  animation: zump 2s linear infinite;
}

@media (max-width: 991px) {
  .faq-wrapper .faq-one--home2 .faq-one__shape {
    display: none;
  }
}

/* Utility Classes */
.faq-wrapper .gutter-y-50 {
  margin-top: -50px;
}

.faq-wrapper .gutter-y-50 > * {
  margin-top: 50px;
}


/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes zump {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, -15px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}

/* Section Title Styles */
.faq-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.faq-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .faq-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.faq-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: #ffffff;
}

@media (max-width: 767px) {
  .faq-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Section Space */
.faq-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .faq-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

/* FAQ One Styles */
.faq-wrapper .faq-one {
  position: relative;
  background-color: var(--primary_color_font);
  counter-reset: faqNumber;
}

.faq-wrapper .faq-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: screen;
}

.faq-wrapper .faq-one--home2 .faq-one__bg {
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.faq-wrapper .faq-one .container {
  position: relative;
  z-index: 1;
}

.faq-wrapper .faq-one__content {
  position: relative;
  z-index: 1;
}

.faq-wrapper .faq-one .sec-title {
  margin-bottom: 49px;
}

.faq-wrapper .faq-one .faq-accordion {
  position: relative;
  z-index: 1;
}

.faq-wrapper .faq-one .faq-accordion .accordion {
  background-color: transparent;
  border-radius: 100px;
}

.faq-wrapper .faq-one .faq-accordion .accordion + .accordion {
  margin-top: 21px;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title {
  position: relative;
  padding: 15.5px 65px 15.5px 60px;
  background-color: transparent;
  border: 1px solid rgba(217, 225, 235, 0.2);
  cursor: pointer;
  overflow: hidden;
  border-radius: 100px;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title::after {
  content: "0" counter(faqNumber);
  counter-increment: faqNumber;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 14px;
  color: var(--secondary_color);
  font-weight: 600;
  background-color: rgba(51, 193, 237, 0.2);
  z-index: 1;
  transition: all 500ms ease;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title h4 {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.35;
  text-transform: capitalize;
  transition: all 500ms ease;
}

@media (max-width: 430px) {
  .faq-wrapper .faq-one .faq-accordion .accordion-title h4 {
    font-size: 18px;
  }
}

@media (max-width: 412px) {
  .faq-wrapper .faq-one .faq-accordion .accordion-title h4 {
    font-size: 16px;
  }
}

.faq-wrapper .faq-one .faq-accordion .accordion-title__icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: auto;
  right: 14px;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid rgba(217, 225, 235, 0.2);
  border-radius: 50%;
  transition: all 500ms ease;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title__icon::after,
.faq-wrapper .faq-one .faq-accordion .accordion-title__icon::before {
  content: "";
  width: 1px;
  height: 11px;
  position: absolute;
  background-color: var(--secondary_color_font);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.faq-wrapper .faq-one .faq-accordion .accordion-title__icon::after {
  width: 11px;
  height: 1px;
}

.faq-wrapper .faq-one .faq-accordion .active.accordion {
  border-radius: 0;
  background-color: transparent;
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title {
  border: 1px solid rgba(217, 225, 235, 0.2);
  border-radius: 100px;
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title::after {
  color: #ffffff;
  background-color: var(--secondary_color);
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title__icon {
  background-color: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-title__icon::after,
.faq-wrapper .faq-one .faq-accordion .active .accordion-title__icon::before {
  background-color: var(--secondary_color);
  opacity: 1;
}

.faq-wrapper .faq-one .faq-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 600ms cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 500ms ease-in-out, 
              padding-top 500ms ease-in-out,
              padding-bottom 500ms ease-in-out;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-wrapper .faq-one .faq-accordion .active .accordion-content {
  max-height: 5000px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-wrapper .faq-one .faq-accordion .accordion-content .inner {
  padding: 11px 0 0;
  transition: opacity 400ms ease-in-out;
}

.faq-wrapper .faq-one .faq-accordion .accordion-content p {
  color: #ffffff;
}

.faq-wrapper .faq-one__image {
  position: relative;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-one__image {
    margin-bottom: -120px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper .faq-one__image {
    margin-bottom: -100px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .faq-one__image {
    margin-bottom: -80px;
  }
}

@media (min-width: 1200px) {
  .faq-wrapper .faq-one__image {
    position: absolute;
    right: 15px;
    bottom: -120px;
    left: 46px;
  }
}

@media (min-width: 1400px) {
  .faq-wrapper .faq-one__image {
    right: auto;
    left: 0px;
  }
}

@media (min-width: 1600px) {
  .faq-wrapper .faq-one__image {
    left: 46px;
  }
}

.faq-wrapper .faq-one__image__one,
.faq-wrapper .faq-one__image__two,
.faq-wrapper .faq-one__image__shape {
  max-width: 100%;
  height: auto;
}

.faq-wrapper .faq-one__image__two {
  display: none;
}

@media (min-width: 768px) {
  .faq-wrapper .faq-one__image__two {
    display: inline-block;
    max-width: 440px;
    margin-left: -140px;
  }
}

@media (min-width: 992px) {
  .faq-wrapper .faq-one__image__two {
    max-width: 100%;
    margin-left: -100px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .faq-wrapper .faq-one__image__two {
    display: none;
  }
}

@media (min-width: 1400px) {
  .faq-wrapper .faq-one__image__two {
    margin-left: -160px;
    max-width: 440px;
  }
}

@media (min-width: 1600px) {
  .faq-wrapper .faq-one__image__two {
    max-width: 100%;
  }
}

.faq-wrapper .faq-one--home2 .faq-one__image__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 65px;
  left: 52px;
  z-index: -1;
  animation: rotate 5s linear infinite;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    top: 0px;
  }
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    top: 40px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    top: 20px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper .faq-one--home2 .faq-one__image__shape {
    display: none;
  }
}

.faq-wrapper .faq-one--home2 .faq-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 242px;
  right: -1px;
  animation: zump 2s linear infinite;
}

@media (max-width: 991px) {
  .faq-wrapper .faq-one--home2 .faq-one__shape {
    display: none;
  }
}

/* Utility Classes */
.faq-wrapper .gutter-y-50 {
  margin-top: -50px;
}

.faq-wrapper .gutter-y-50 > * {
  margin-top: 50px;
}


/* Hero Widget Styles - Scoped under .hero-wrapper */

.hero-wrapper {
  position: relative;
}

.hero-wrapper .main-slider-two {
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}

.hero-wrapper .main-slider-two__carousel {
  position: relative;
  width: 100%;
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter {
  position: absolute;
  top: 50%;
  left: 53px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 17px;
  z-index: 3;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter {
    left: 15px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter {
    display: none;
  }
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current {
  position: relative;
  font-size: 26px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current {
    font-size: 23px;
  }
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current::before {
  content: "";
  width: 33px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -53px;
  transform: translateY(-50%);
  background-color: var(--secondary_color);
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__current::before {
    display: none;
  }
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__total {
  position: relative;
  font-size: 16px;
  color: #707882;
  font-weight: 600;
  line-height: 1;
}

.hero-wrapper .main-slider-two__carousel .mediox-owl__carousel__counter__total::before {
  content: "";
  width: 2px;
  height: calc(100% - 5px);
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%) rotate(20deg);
  background-color: #707882;
}

.hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 14px;
}

@media (min-width: 1200px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    flex-direction: column;
  }
}

@media (min-width: 1400px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
    right: 40px;
  }
}

.hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav button {
  background-color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--secondary_color);
  color: #FFFFFF;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__carousel.owl-carousel .owl-nav {
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
  }
}

.hero-wrapper .main-slider-two__item {
  position: relative;
  padding: 30px 141px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__item {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__item {
    padding: 15px 15px 0;
  }
}

.hero-wrapper .main-slider-two__item__shape {
  width: 100%;
  height: 270px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ECF0F5;
  z-index: 1;
}

.hero-wrapper .main-slider-two__item__shape__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.hero-wrapper .main-slider-two__wrapper {
  position: relative;
  padding-top: 191px;
  padding-bottom: 134px;
  overflow: hidden;
  border-radius: var(--general_border_radius);
  z-index: 2;
}

@media (max-width: 1599px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-bottom: 198px;
    padding-top: 153px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-bottom: 230px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-top: 133px;
    padding-bottom: 220px;
  }
}

@media (max-width: 390px) {
  .hero-wrapper .main-slider-two__wrapper {
    padding-top: 123px;
    padding-bottom: 210px;
  }
}

.hero-wrapper .main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: var(--general_border_radius);
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}

.hero-wrapper .main-slider-two__bg::after {
  content: "";
  width: 100%;
  max-width: 1090px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary_color) 6.58%, rgba(0, 165, 241, 0.8) 43.94%, rgba(0, 165, 241, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-wrapper .main-slider-two .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .hero-wrapper .main-slider-two .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .hero-wrapper .main-slider-two .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .hero-wrapper .main-slider-two .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.hero-wrapper .main-slider-two__content {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-wrapper .main-slider-two__sub-title {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary_color);
  letter-spacing: 0.2em;
  line-height: 1.457;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-120px);
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__sub-title {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .hero-wrapper .main-slider-two__sub-title {
    letter-spacing: 0.05em;
  }
}

.hero-wrapper .main-slider-two__title {
  margin-bottom: 9px;
  display: inline-block;
  overflow: hidden;
  font-size: 80px;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.125;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  opacity: 0;
  transform: translateX(300px);
  position: relative;
}

@media (max-width: 1399px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 50px;
  }
}

@media (max-width: 430px) {
  .hero-wrapper .main-slider-two__title {
    font-size: 45px;
  }
}

.hero-wrapper .main-slider-two__title__overlay-group {
  display: block;
  position: relative;
}

.hero-wrapper .main-slider-two__title__overlay {
  background-color: var(--secondary_color);
  width: 16.66%;
  height: calc(100% - 10px);
  display: block;
  position: absolute;
  transition: top 1000ms cubic-bezier(0.65, 0, 0.076, 1), bottom 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
  z-index: 1;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(2),
.hero-wrapper .main-slider-two__title__overlay:nth-child(4),
.hero-wrapper .main-slider-two__title__overlay:nth-child(6) {
  top: 5px;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(2) {
  left: 16.66%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(4) {
  left: 49.98%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(6) {
  left: 83.3%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(1),
.hero-wrapper .main-slider-two__title__overlay:nth-child(3),
.hero-wrapper .main-slider-two__title__overlay:nth-child(5) {
  bottom: 5px;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(1) {
  left: 0;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(3) {
  left: 33.32%;
}

.hero-wrapper .main-slider-two__title__overlay:nth-child(5) {
  left: 66.64%;
}

.hero-wrapper .main-slider-two__text {
  margin-bottom: 51px;
  max-width: 551px;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.666;
  opacity: 0;
  transform: translateX(-300px);
}

@media (max-width: 575px) {
  .hero-wrapper .main-slider-two__text {
    font-size: 16px;
  }
}

.hero-wrapper .main-slider-two__button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-wrapper .main-slider-two__button-1,
.hero-wrapper .main-slider-two__button-2 {
  opacity: 0;
  transform: translateY(120px);
}

.hero-wrapper .main-slider-two__button-1 .mediox-btn::before,
.hero-wrapper .main-slider-two__button-1 .mediox-btn::after {
  background-color: #FFFFFF;
}

.hero-wrapper .main-slider-two__button-1 .mediox-btn:hover,
.hero-wrapper .main-slider-two__button-1 .mediox-btn:hover .mediox-btn__icon {
  color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn {
  padding: 11px 20.5px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn::before,
.hero-wrapper .main-slider-two__button-2 .mediox-btn::after {
  content: "";
  background-color: var(--secondary_color);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn:hover {
  border-color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__button-2 .mediox-btn:hover::before,
.hero-wrapper .main-slider-two__button-2 .mediox-btn:hover::after {
  width: calc(50% + 6px);
}

.hero-wrapper .main-slider-two__info {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--primary_color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 246.000000"><g transform="translate(0.000000,246.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M8964 2308 c-20 -94 -165 -246 -266 -280 -18 -6 -39 -16 -47 -22 -10 -8 -1085 -13 -3895 -17 -2546 -4 -3898 -9 -3931 -16 -124 -25 -263 -139 -326 -268 l-34 -70 -6 -615 c-4 -338 -11 -635 -16 -660 -15 -73 -64 -160 -123 -219 -75 -76 -92 -88 -190 -129 -18 -8 1284 -11 4423 -11 l4447 -1 0 1170 c0 1004 -2 1170 -14 1170 -8 0 -18 -14 -22 -32z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 246.000000"><g transform="translate(0.000000,246.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M8964 2308 c-20 -94 -165 -246 -266 -280 -18 -6 -39 -16 -47 -22 -10 -8 -1085 -13 -3895 -17 -2546 -4 -3898 -9 -3931 -16 -124 -25 -263 -139 -326 -268 l-34 -70 -6 -615 c-4 -338 -11 -635 -16 -660 -15 -73 -64 -160 -123 -219 -75 -76 -92 -88 -190 -129 -18 -8 1284 -11 4423 -11 l4447 -1 0 1170 c0 1004 -2 1170 -14 1170 -8 0 -18 -14 -22 -32z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (max-width: 1199px) {
  .hero-wrapper .main-slider-two__info {
    display: none;
  }
}

.hero-wrapper .main-slider-two__info__inner {
  padding: 70px 65.5px 29px 50.5px;
  display: flex;
  align-items: flex-start;
  gap: 110px;
  border-radius: 30px 0 30px 0;
  z-index: 1;
}

.hero-wrapper .main-slider-two__call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-wrapper .main-slider-two__call::after {
  content: "";
  width: 1px;
  height: 37px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
}

.hero-wrapper .main-slider-two__call__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--secondary_color);
  background-color: #ECF0F5;
  transition: all 500ms ease;
}

.hero-wrapper .main-slider-two__call:hover .main-slider-two__call__icon {
  color: #FFFFFF;
  background-color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__call__title {
  margin-bottom: 4px;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.357;
}

.hero-wrapper .main-slider-two__call__number {
  margin: 0;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.35;
}

.hero-wrapper .main-slider-two__call__number:hover {
  color: var(--secondary_color);
}

.hero-wrapper .main-slider-two__call__number a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.hero-wrapper .main-slider-two__call__number a:hover {
  background-size: 100% 1px;
}

.hero-wrapper .main-slider-two__social {
  margin-top: -6px;
}

.hero-wrapper .main-slider-two__social__title {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.357;
}

.hero-wrapper .main-slider-two__social__title::after {
  content: "";
  width: 37px;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: -44px;
  transform: translateY(-50%);
}

.hero-wrapper .main-slider-two__social__links {
  display: flex;
  align-items: center;
  gap: 19px;
}

.hero-wrapper .main-slider-two__social__links a {
  display: inline-flex;
  font-size: 14px;
  color: #FFFFFF;
  transition: all 500ms ease;
  text-decoration: none;
}

.hero-wrapper .main-slider-two__social__links a:hover {
  color: var(--secondary_color);
}

/* Active slide animations */
.hero-wrapper .main-slider-two .item.active .main-slider-two__bg {
  transform: scale(1.2);
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 900ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 500ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(2),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(4),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(6) {
  top: 105%;
  transition: top 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(1),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(3),
.hero-wrapper .main-slider-two .item.active .main-slider-two__title__overlay:nth-child(5) {
  bottom: 105%;
  transition: bottom 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__text {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 900ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__button-1,
.hero-wrapper .main-slider-two .item.active .main-slider-two__button-2 {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition-delay: 1000ms;
}

.hero-wrapper .main-slider-two .item.active .main-slider-two__button-2 {
  transition-delay: 1100ms;
}

/* Mediox Button Styles */
.hero-wrapper .mediox-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--secondary_color);
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
  padding: 12px 20.5px;
  cursor: pointer;
  transition: 500ms;
  text-transform: capitalize;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
}

.hero-wrapper .mediox-btn::before,
.hero-wrapper .mediox-btn::after {
  content: "";
  background-color: var(--secondary_color_font);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.hero-wrapper .mediox-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.hero-wrapper .mediox-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.hero-wrapper .mediox-btn:hover::before,
.hero-wrapper .mediox-btn:hover::after {
  width: calc(50% + 6px);
}

.hero-wrapper .mediox-btn__icon {
  display: inline-flex;
  font-size: 11px;
  color: #FFFFFF;
  transition: all 500ms ease;
}

.hero-wrapper .mediox-btn:hover .mediox-btn__icon {
  transform: rotate(45deg);
}

/* Utility Classes */
.hero-wrapper .section-space-bottom {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .hero-wrapper .section-space-bottom {
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .section-space-bottom {
    padding-bottom: 80px;
  }
}

.hero-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .hero-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

.hero-wrapper .gutter-y-30 > * {
  margin-bottom: 30px;
}

.hero-wrapper .gutter-y-50 > * {
  margin-bottom: 50px;
}

/* Features One Section */
.hero-wrapper .features-one {
  padding-top: 60px;
  position: relative;
  background-color: #ECF0F5;
  margin-top: 0;
}

.hero-wrapper .features-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.hero-wrapper .features-one .container {
  position: relative;
  z-index: 1;
}

.hero-wrapper .features-one__card {
  position: relative;
  border-radius: var(--general_border_radius);
}

.hero-wrapper .features-one__card::after {
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0px 4px 50px rgba(0, 165, 241, 0.1);
}

.hero-wrapper .features-one__card__content {
  position: relative;
  padding: 0 30px 23px;
  z-index: 1;
}

.hero-wrapper .features-one__card__icon {
  margin-bottom: 19px;
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--secondary_color);
  font-size: 40px;
  color: #FFFFFF;
  z-index: 1;
  transition: all 500ms ease;
}

.hero-wrapper .features-one__card__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color: var(--primary_color);
  transition: transform 400ms ease, opacity 400ms ease;
}

.hero-wrapper .features-one__card:hover .features-one__card__icon::after {
  opacity: 1;
  transform: scale(1);
}

.hero-wrapper .features-one__card__title {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.388;
  text-transform: capitalize;
  color: var(--primary_color_font);
}

.hero-wrapper .features-one__card__text {
  margin: 0;
  line-height: 1.625;
  color: var(--primary_color_font);
}

/* About Two Section */
.hero-wrapper .about-two {
  position: relative;
  background-color: #FFFFFF;
  padding-top: 0;
  margin-top: 0;
}

.hero-wrapper .about-two .container {
  position: relative;
  z-index: 1;
}

.hero-wrapper .about-two__image {
  position: relative;
}

@media (max-width: 991px) {
  .hero-wrapper .about-two__image {
    max-width: 550px;
  }
}

.hero-wrapper .about-two__image__one {
  position: relative;
  display: table;
  z-index: 1;
}

.hero-wrapper .about-two__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: var(--general_border_radius);
}

.hero-wrapper .about-two__image__two {
  padding: 10px;
  display: table;
  position: absolute;
  top: 122px;
  right: -19px;
  background-color: #FFFFFF;
  border-radius: var(--general_border_radius);
  z-index: 1;
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__image__two {
    top: 180px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__image__two {
    margin-top: 30px;
    position: static;
  }
}

.hero-wrapper .about-two__image__two__inner {
  position: relative;
  padding: 60px 0 0 0;
  background-color: var(--secondary_color);
  border-radius: inherit;
}

.hero-wrapper .about-two__image__two__inner > img {
  position: relative;
  left: -37px;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__image__two__inner > img {
    left: -15px;
  }
}

.hero-wrapper .about-two__image__two__shape-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-wrapper .about-two__image__two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 31px;
  right: 29px;
  animation: rotate 4s linear infinite;
}

.hero-wrapper .about-two__image__two__bg-top {
  width: 223px;
  height: 223px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -66px;
  left: -71px;
  transform: rotate(-135deg);
  border-radius: 260px 260px 10px 260px;
  background-color: rgba(0, 165, 241, 0.1);
}

.hero-wrapper .about-two__image__two__bg-top__1 {
  width: 174px;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.15);
}

.hero-wrapper .about-two__image__two__bg-top__2 {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: rgba(0, 165, 241, 0.2);
}

.hero-wrapper .about-two__image__two__bg-bottom {
  width: 223px;
  height: 223px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -71px;
  bottom: -64px;
  transform: rotate(45deg);
  border-radius: 260px 260px 10px 260px;
  background-color: rgba(0, 165, 241, 0.1);
}

.hero-wrapper .about-two__image__two__bg-bottom__1 {
  width: 174px;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.15);
}

.hero-wrapper .about-two__image__two__bg-bottom__2 {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: rgba(0, 165, 241, 0.2);
}

.hero-wrapper .about-two__image__three {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 17px;
  right: 0;
  z-index: 1;
}

@media (max-width: 575px) {
  .hero-wrapper .about-two__image__three {
    display: none;
  }
}

.hero-wrapper .about-two__image__shape {
  width: 482px;
  height: 370px;
  position: absolute;
  left: -38px;
  bottom: -154px;
  background-color: #ECF0F5;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 690.000000"><g transform="translate(0.000000,690.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6610 6886 c0 -10 -19 -16 -67 -20 -134 -12 -425 -82 -583 -141 -161 -60 -422 -182 -527 -246 -35 -22 -65 -39 -68 -39 -12 0 -245 -165 -424 -299 -176 -132 -280 -207 -329 -236 -9 -6 -45 -29 -80 -53 -35 -23 -65 -42 -68 -42 -2 0 -23 -12 -47 -27 -55 -36 -72 -45 -197 -109 -305 -154 -642 -258 -1070 -328 -222 -36 -508 -76 -545 -76 -16 0 -77 -7 -135 -15 -58 -9 -154 -22 -215 -31 -285 -39 -364 -52 -525 -85 -30 -6 -75 -15 -100 -20 -58 -10 -157 -34 -201 -47 -19 -5 -61 -18 -94 -27 -33 -9 -71 -22 -85 -27 -14 -5 -57 -20 -96 -33 -40 -13 -80 -28 -90 -33 -11 -5 -55 -27 -99 -48 -259 -123 -444 -288 -620 -554 -78 -117 -174 -300 -210 -400 -41 -114 -77 -229 -84 -270 -5 -25 -13 -65 -19 -90 -25 -102 -32 -203 -32 -426 0 -129 5 -268 10 -307 19 -134 66 -338 100 -432 12 -33 25 -73 29 -90 26 -94 178 -338 100 -432z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 690.000000"><g transform="translate(0.000000,690.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6610 6886 c0 -10 -19 -16 -67 -20 -134 -12 -425 -82 -583 -141 -161 -60 -422 -182 -527 -246 -35 -22 -65 -39 -68 -39 -12 0 -245 -165 -424 -299 -176 -132 -280 -207 -329 -236 -9 -6 -45 -29 -80 -53 -35 -23 -65 -42 -68 -42 -2 0 -23 -12 -47 -27 -55 -36 -72 -45 -197 -109 -305 -154 -642 -258 -1070 -328 -222 -36 -508 -76 -545 -76 -16 0 -77 -7 -135 -15 -58 -9 -154 -22 -215 -31 -285 -39 -364 -52 -525 -85 -30 -6 -75 -15 -100 -20 -58 -10 -157 -34 -201 -47 -19 -5 -61 -18 -94 -27 -33 -9 -71 -22 -85 -27 -14 -5 -57 -20 -96 -33 -40 -13 -80 -28 -90 -33 -11 -5 -55 -27 -99 -48 -259 -123 -444 -288 -620 -554 -78 -117 -174 -300 -210 -400 -41 -114 -77 -229 -84 -270 -5 -25 -13 -65 -19 -90 -25 -102 -32 -203 -32 -426 0 -129 5 -268 10 -307 19 -134 66 -338 100 -432 12 -33 25 -73 29 -90 26 -94 178 -338 100 -432z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__image__shape {
    display: none;
  }
}

.hero-wrapper .about-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 293px;
  left: 139px;
  opacity: 0.25;
  animation: zump 2s linear infinite;
}

@media (max-width: 1799px) {
  .hero-wrapper .about-two__shape {
    left: 80px;
  }
}

@media (max-width: 1599px) {
  .hero-wrapper .about-two__shape {
    left: 10px;
  }
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__shape {
    display: none;
  }
}

.hero-wrapper .about-two__content {
  padding-left: 51px;
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__content {
    padding-left: 0;
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .hero-wrapper .about-two__content {
    margin-top: 180px;
  }
}

@media (max-width: 480px) {
  .hero-wrapper .about-two__content {
    margin-top: 0;
  }
}

.hero-wrapper .about-two .sec-title {
  margin-bottom: 21px;
}

.hero-wrapper .about-two__text {
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--primary_color_font);
}

.hero-wrapper .about-two__list {
  margin-bottom: 43px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  list-style: none;
  padding: 0;
}

.hero-wrapper .about-two__list li {
  width: calc(50% - 60px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary_color_font);
  text-transform: capitalize;
  line-height: 1.875;
}

@media (max-width: 1199px) {
  .hero-wrapper .about-two__list li {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .hero-wrapper .about-two__list li {
    width: 100%;
  }
}

.hero-wrapper .about-two__list__icon {
  position: relative;
  top: 1px;
  font-size: 16px;
  color: var(--secondary_color);
}

/* Section Title Styles */
.hero-wrapper .sec-title {
  margin-bottom: 21px;
}

.hero-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.hero-wrapper .sec-title__tagline {
  margin: 0;
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .hero-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.hero-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: var(--primary_color_font);
}

@media (max-width: 767px) {
  .hero-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(10px, 0, 0);
  }
  100% {
    transform: translateZ(0);
  }
}

@keyframes popupVideo {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

/* Owl Carousel Styles */
.main-slider-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: none !important;
}

/* Main Slider One Styles */
.main-slider-wrapper .main-slider-one {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

.main-slider-wrapper .main-slider-one__item {
  position: relative;
  padding-top: 366px;
  padding-bottom: 176px;
  background-color: #ECF0F5;
  overflow: hidden;
}

@media (max-width: 1299px) {
  .main-slider-wrapper .main-slider-one__item {
    padding-top: 320px;
  }
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one__item {
    padding-top: 280px;
  }
}

.main-slider-wrapper .main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.15;
  z-index: 1;
}

.main-slider-wrapper .main-slider-one .container {
  position: relative;
  z-index: 3;
}

@media (min-width: 1200px) {
  .main-slider-wrapper .main-slider-one .container {
    max-width: 1638px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.main-slider-wrapper .main-slider-one__content {
  position: relative;
  max-width: 1048px;
}

@media (max-width: 1599px) {
  .main-slider-wrapper .main-slider-one__content {
    max-width: 800px;
  }
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one__content {
    max-width: 100%;
  }
}

.main-slider-wrapper .main-slider-one__content__shape-1 {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -100%;
  left: 44%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  animation: rotate 3s linear infinite;
}

.main-slider-wrapper .main-slider-one__content__shape-2 {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 61%;
  bottom: -100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  animation: moveHorizontal 2s linear infinite;
}

.main-slider-wrapper .main-slider-one__top {
  overflow: hidden;
}

.main-slider-wrapper .main-slider-one__sub-title {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary_color);
  letter-spacing: 0.2em;
  line-height: 1.457;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-100px);
}

@media (max-width: 575px) {
  .main-slider-wrapper .main-slider-one__sub-title {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}

.main-slider-wrapper .main-slider-one__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 27px;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.257;
  text-transform: capitalize;
  color: var(--primary_color_font);
}

@media (max-width: 1599px) {
  .main-slider-wrapper .main-slider-one__title {
    font-size: 70px;
  }
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one__title {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  .main-slider-wrapper .main-slider-one__title {
    font-size: 58px;
  }
}

@media (max-width: 767px) {
  .main-slider-wrapper .main-slider-one__title {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .main-slider-wrapper .main-slider-one__title {
    font-size: 50px;
  }
}

@media (max-width: 430px) {
  .main-slider-wrapper .main-slider-one__title {
    font-size: 45px;
  }
}

.main-slider-wrapper .main-slider-one__title__inner {
  overflow: hidden;
  position: relative;
  display: table;
  opacity: 0;
  transform: translateY(200px);
}

.main-slider-wrapper .main-slider-one__title__image {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
}

.main-slider-wrapper .main-slider-one__title__image img {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  height: auto;
  border-radius: 37px;
  margin-left: -60px;
  margin-top: -5px;
}

.main-slider-wrapper .main-slider-one__title__video {
  width: 80px;
  height: 74px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 37px;
  font-size: 24px;
  color: #ffffff;
  background-color: rgba(51, 193, 237, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s ease;
}

.main-slider-wrapper .main-slider-one__title__video:hover {
  background-color: var(--secondary_color);
}

.main-slider-wrapper .main-slider-one__title__hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-slider-wrapper .main-slider-one__title__hover__box {
  display: block;
  width: calc(10% + 1px);
  height: 100%;
  top: 0;
  position: absolute;
  transform: translateY(0%);
  background-color: var(--secondary_color);
  transition: all 300ms ease 0ms;
  z-index: 1;
}

.main-slider-wrapper .main-slider-one__description {
  max-width: 674px;
  margin-bottom: 41px;
  overflow: hidden;
}

.main-slider-wrapper .main-slider-one__text {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.666;
  opacity: 0;
  transform: translateY(150px);
  color: var(--secondary_color_font);
}

@media (max-width: 575px) {
  .main-slider-wrapper .main-slider-one__text {
    font-size: 16px;
  }
}

.main-slider-wrapper .main-slider-one__button {
  overflow: hidden;
}

.main-slider-wrapper .main-slider-one__button__inner {
  opacity: 0;
  transform: translateY(150px);
}

.main-slider-wrapper .main-slider-one__image {
  position: absolute;
  right: 75px;
  bottom: -176px;
  z-index: 1;
}

@media (max-width: 1799px) {
  .main-slider-wrapper .main-slider-one__image {
    right: 50px;
  }
}

@media (max-width: 1399px) {
  .main-slider-wrapper .main-slider-one__image {
    max-width: 480px;
  }
}

@media (max-width: 1299px) {
  .main-slider-wrapper .main-slider-one__image {
    display: none;
  }
}

.main-slider-wrapper .main-slider-one__image img {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  height: auto;
}

.main-slider-wrapper .main-slider-one__patients {
  padding: 21.5px 30px 24.5px;
  position: absolute;
  left: -98px;
  bottom: 168px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 1599px) {
  .main-slider-wrapper .main-slider-one__patients {
    left: -80px;
    bottom: 140px;
  }
}

.main-slider-wrapper .main-slider-one__patients__icon {
  position: relative;
  top: 8px;
  display: inline-flex;
  font-size: 42px;
  color: var(--secondary_color);
}

.main-slider-wrapper .main-slider-one__patients__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-slider-wrapper .main-slider-one__patients__number {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: var(--secondary_color);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.main-slider-wrapper .main-slider-one__patients__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.428;
  color: var(--secondary_color_font);
}

.main-slider-wrapper .main-slider-one__shape-1 {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: -100%;
  bottom: 40px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  animation: rotate 3s linear infinite;
}

.main-slider-wrapper .main-slider-one__shape-2 {
  display: inline-block !important;
  width: auto !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 280px;
  right: -100%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  animation: rotate 3s linear infinite;
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one__shape-2 {
    top: 200px;
  }
}

@media (max-width: 991px) {
  .main-slider-wrapper .main-slider-one__shape-2 {
    display: none !important;
  }
}

.main-slider-wrapper .main-slider-one__bg-top {
  width: 557px;
  height: 557px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -184px;
  left: -202px;
  transform: rotate(-135deg) translate(100%);
  opacity: 0;
  visibility: hidden;
  border-radius: 260px;
  background-color: rgba(44, 81, 163, 0.04);
}

@media (max-width: 1599px) {
  .main-slider-wrapper .main-slider-one__bg-top {
    top: -234px;
    left: -252px;
  }
}

@media (max-width: 1299px) {
  .main-slider-wrapper .main-slider-one__bg-top {
    top: -264px;
    left: -282px;
  }
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one__bg-top {
    top: -284px;
    left: -302px;
  }
}

@media (max-width: 767px) {
  .main-slider-wrapper .main-slider-one__bg-top {
    top: -304px;
    left: -322px;
  }
}

.main-slider-wrapper .main-slider-one__bg-top__1 {
  width: 435px;
  height: 435px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: rgba(44, 81, 163, 0.05);
}

.main-slider-wrapper .main-slider-one__bg-top__2 {
  width: 301px;
  height: 301px;
  border-radius: 50%;
  background-color: rgba(44, 81, 163, 0.06);
}

.main-slider-wrapper .main-slider-one__bg-bottom {
  width: 595px;
  height: 595px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -216px;
  bottom: -197px;
  transform: rotate(45deg) translate(100%);
  opacity: 0;
  visibility: hidden;
  border-radius: 260px;
  background-color: rgba(51, 193, 237, 0.1);
  z-index: 2;
}

@media (max-width: 1299px) {
  .main-slider-wrapper .main-slider-one__bg-bottom {
    right: -306px;
    bottom: -297px;
  }
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one__bg-bottom {
    right: -336px;
    bottom: -317px;
  }
}

@media (max-width: 767px) {
  .main-slider-wrapper .main-slider-one__bg-bottom {
    right: -356px;
    bottom: -337px;
  }
}

.main-slider-wrapper .main-slider-one__bg-bottom__1 {
  width: 465px;
  height: 465px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: rgba(51, 193, 237, 0.15);
}

.main-slider-wrapper .main-slider-one__bg-bottom__2 {
  width: 322px;
  height: 322px;
  border-radius: 50%;
  background-color: rgba(51, 193, 237, 0.2);
}

/* Active Slide Animations */
.main-slider-wrapper .main-slider-one .active .main-slider-one__sub-title,
.main-slider-wrapper .main-slider-one .active .main-slider-one__title__inner,
.main-slider-wrapper .main-slider-one .active .main-slider-one__text,
.main-slider-wrapper .main-slider-one .active .main-slider-one__button__inner {
  opacity: 1;
  transform: translateY(0);
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__sub-title {
  transition: transform 1400ms ease, opacity 1400ms ease;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__inner {
  transition-delay: 900ms;
  transition: transform 1600ms ease, opacity 1600ms ease;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box {
  transform: translateY(110%);
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--1 {
  left: 0;
  transition-delay: 1300ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--2 {
  left: 10%;
  transition-delay: 1400ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--3 {
  left: 20%;
  transition-delay: 1500ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--4 {
  left: 30%;
  transition-delay: 1600ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--5 {
  left: 40%;
  transition-delay: 1700ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--6 {
  left: 50%;
  transition-delay: 1800ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--7 {
  left: 60%;
  transition-delay: 1900ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--8 {
  left: 70%;
  transition-delay: 2000ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--9 {
  left: 80%;
  transition-delay: 2100ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__title__hover__box--10 {
  left: 90%;
  transition-delay: 2200ms;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__text {
  transition-delay: 1100ms;
  transition: transform 1400ms ease, opacity 1400ms ease;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__button__inner {
  transition-delay: 1400ms;
  transition: transform 1400ms ease, opacity 1400ms ease;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__content__shape-1,
.main-slider-wrapper .main-slider-one .active .main-slider-one__content__shape-2,
.main-slider-wrapper .main-slider-one .active .main-slider-one__shape-1,
.main-slider-wrapper .main-slider-one .active .main-slider-one__shape-2,
.main-slider-wrapper .main-slider-one .active .main-slider-one__bg-top,
.main-slider-wrapper .main-slider-one .active .main-slider-one__bg-bottom {
  opacity: 1;
  visibility: visible;
  transition: all 1300ms ease;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__content__shape-1 {
  top: -49px;
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one .active .main-slider-one__content__shape-1 {
    top: -80px;
  }
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__content__shape-2 {
  bottom: -76px;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__shape-1 {
  left: 43px;
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__shape-2 {
  right: 72px;
}

@media (max-width: 1199px) {
  .main-slider-wrapper .main-slider-one .active .main-slider-one__shape-2 {
    top: 200px;
  }
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__bg-top {
  transform: rotate(-135deg) translate(0px);
}

.main-slider-wrapper .main-slider-one .active .main-slider-one__bg-bottom {
  transform: rotate(45deg) translate(0px);
}

/* Video Button Styles */
.main-slider-wrapper .video-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background-color: transparent;
  font-size: 15px;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.5s ease;
  text-decoration: none;
}

.main-slider-wrapper .video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-slider-wrapper .video-btn:hover {
  color: #ffffff;
  background-color: var(--secondary_color);
}

.main-slider-wrapper .video-btn__ripple::before,
.main-slider-wrapper .video-btn__ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(51, 193, 237, 0.7);
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.main-slider-wrapper .video-btn__ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-wrapper .video-btn__ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/* Mediox Button Styles */
.main-slider-wrapper .mediox-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background-color: var(--secondary_color);
  font-family: var(--primary_font);
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
  padding: 12px 20.5px;
  cursor: pointer;
  transition: 500ms;
  text-transform: capitalize;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
  text-decoration: none;
}

.main-slider-wrapper .mediox-btn::before,
.main-slider-wrapper .mediox-btn::after {
  content: "";
  background-color: var(--primary_color_font);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.main-slider-wrapper .mediox-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.main-slider-wrapper .mediox-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.main-slider-wrapper .mediox-btn:hover::before,
.main-slider-wrapper .mediox-btn:hover::after {
  width: calc(50% + 6px);
}

.main-slider-wrapper .mediox-btn__icon {
  display: inline-flex;
  font-size: 11px;
  color: #ffffff;
  transition: all 500ms ease;
}

.main-slider-wrapper .mediox-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.main-slider-wrapper .mediox-btn:hover .mediox-btn__icon {
  transform: rotate(45deg);
}

/* Utility Classes */
.main-slider-wrapper .gutter-y-60 {
  margin-top: -60px;
}

.main-slider-wrapper .gutter-y-60 > * {
  margin-top: 60px;
}


/* Utility Classes */
.slider-wrapper .gutter-y-40 {
  --bs-gutter-y: 40px;
}

.slider-wrapper .section-space-bottom {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .slider-wrapper .section-space-bottom {
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .slider-wrapper .section-space-bottom {
    padding-bottom: 80px;
  }
}

/* Section Title */
.slider-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.slider-wrapper .sec-title__tagline {
  margin: 0;
  font-size: 16px;
  color: var(--primary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .slider-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.slider-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
}

@media (max-width: 767px) {
  .slider-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .slider-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Services Two Section */
.slider-wrapper .services-two {
  position: relative;
  padding-top: 297px;
  background-color: var(--secondary_color);
}

@media (max-width: 767px) {
  .slider-wrapper .services-two {
    padding-top: 277px;
  }
}

@media (max-width: 575px) {
  .slider-wrapper .services-two {
    padding-top: 257px;
  }
}

.slider-wrapper .services-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.1;
}

.slider-wrapper .services-two .container {
  position: relative;
  z-index: 1;
}

.slider-wrapper .services-two__top {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(217, 225, 235, 0.2);
}

.slider-wrapper .services-two .sec-title__tagline,
.slider-wrapper .services-two .sec-title__title {
  color: #FFFFFF;
}

.slider-wrapper .services-two__custome-navs {
  position: relative;
  top: -11px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 991px) {
  .slider-wrapper .services-two__custome-navs {
    top: 0;
  }
}

.slider-wrapper .services-two__custome-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary_color_font);
  background-color: #FFFFFF;
  border: 1px solid #D9E1EB;
  border-radius: 50%;
  transition: all 400ms ease;
}

.slider-wrapper .services-two__custome-navs button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.slider-wrapper .services-two__custome-navs button:hover {
  color: #FFFFFF;
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

@media (max-width: 767px) {
  .slider-wrapper .services-two__custome-navs button {
    width: 55px;
    height: 55px;
  }
}

.slider-wrapper .services-two__custome-navs button span {
  border: none;
  outline: none;
  color: inherit;
}

.slider-wrapper .services-two__container {
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .slider-wrapper .services-two__container {
    padding-right: 0;
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
  }
}

.slider-wrapper .services-two__bottom {
  margin-top: 60px;
  text-align: center;
}

.slider-wrapper .services-two__bottom__text {
  margin: 0;
  padding: 7px 20px;
  display: inline-block;
  color: #FFFFFF;
  text-transform: capitalize;
  line-height: 1.625;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-wrapper .services-two__bottom__text a {
  color: var(--primary_color);
  font-weight: 800;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  text-decoration: none;
}

.slider-wrapper .services-two__bottom__text a:hover {
  background-size: 100% 1px;
}

.slider-wrapper .services-two__shape {
  position: absolute;
  top: -174px;
  right: 28px;
  animation: moveHorizontal 2s linear infinite;
}

@media (max-width: 1199px) {
  .slider-wrapper .services-two__shape {
    display: none;
  }
}

/* Service Card Two */
.slider-wrapper .service-card-two {
  position: relative;
  border-radius: 30px;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .slider-wrapper .service-card-two {
    background-color: #FFFFFF;
  }
}

.slider-wrapper .service-card-two::after {
  content: "";
  width: 160px;
  height: 135px;
  background-color: var(--primary_color_font);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 30px 0 0;
  z-index: -1;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .slider-wrapper .service-card-two::after {
    display: none;
  }
}

.slider-wrapper .service-card-two:hover::after {
  background-color: var(--primary_color);
}

.slider-wrapper .service-card-two__bg {
  background-color: #FFFFFF;
  border-radius: 30px;
}

@media (min-width: 1200px) {
  .slider-wrapper .service-card-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 627.000000"><g transform="translate(0.000000,627.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M350 6260 c0 -6 -12 -15 -27 -21 -153 -60 -255 -157 -303 -290 -20 -53 -20 -93 -20 -2826 0 -1995 3 -2780 11 -2800 61 -155 156 -254 290 -303 53 -20 100 -20 4191 -20 2989 0 4145 3 4165 11 78 31 141 68 182 109 58 56 108 132 122 182 5 22 17 42 25 45 12 4 14 265 14 1979 0 1737 -2 1974 -15 1974 -8 0 -17 12 -21 28 -22 98 -135 227 -250 283 l-69 34 -590 6 c-329 3 -608 10 -630 16 -111 27 -255 135 -299 223 -57 114 -56 105 -56 523 0 321 -3 400 -16 459 -43 189 -134 291 -327 367 -15 6 -25 16 -22 21 4 7 -1066 10 -3174 10 -2159 0 -3181 -3 -3181 -10z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 627.000000"><g transform="translate(0.000000,627.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M350 6260 c0 -6 -12 -15 -27 -21 -153 -60 -255 -157 -303 -290 -20 -53 -20 -93 -20 -2826 0 -1995 3 -2780 11 -2800 61 -155 156 -254 290 -303 53 -20 100 -20 4191 -20 2989 0 4145 3 4165 11 78 31 141 68 182 109 58 56 108 132 122 182 5 22 17 42 25 45 12 4 14 265 14 1979 0 1737 -2 1974 -15 1974 -8 0 -17 12 -21 28 -22 98 -135 227 -250 283 l-69 34 -590 6 c-329 3 -608 10 -630 16 -111 27 -255 135 -299 223 -57 114 -56 105 -56 523 0 321 -3 400 -16 459 -43 189 -134 291 -327 367 -15 6 -25 16 -22 21 4 7 -1066 10 -3174 10 -2159 0 -3181 -3 -3181 -10z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}

.slider-wrapper .service-card-two__content {
  position: relative;
  padding: 30px;
  z-index: 1;
}

@media (max-width: 390px) {
  .slider-wrapper .service-card-two__content {
    padding: 25px;
  }
}

.slider-wrapper .service-card-two__image {
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .slider-wrapper .service-card-two__image {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .slider-wrapper .service-card-two__image {
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    height: auto;
  }
}

.slider-wrapper .service-card-two__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
}

@media (max-width: 390px) {
  .slider-wrapper .service-card-two__title {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .slider-wrapper .service-card-two__title {
    margin: 0;
    padding: 30px 0 112px 60px;
    position: absolute;
    right: 0;
    bottom: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

.slider-wrapper .service-card-two__title:hover {
  color: var(--primary_color);
}

.slider-wrapper .service-card-two__title a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .slider-wrapper .service-card-two__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .slider-wrapper .service-card-two__title a:hover {
    background-size: 100% 1px;
  }
}

.slider-wrapper .service-card-two__link {
  display: inline-flex;
  font-size: 30px;
  color: var(--primary_color);
  transition: all 500ms ease;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .slider-wrapper .service-card-two__link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
    background-color: var(--primary_color);
    border-radius: 50%;
  }
}

@media (min-width: 1200px) {
  .slider-wrapper .service-card-two__link {
    position: absolute;
    top: 37px;
    right: 47px;
    z-index: 1;
  }
}

.slider-wrapper .service-card-two__link:hover {
  transform: rotate(45deg);
}

@media (max-width: 1199px) {
  .slider-wrapper .service-card-two__link:hover {
    background-color: var(--primary_color);
  }
}

.slider-wrapper .service-card-two__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

@media (min-width: 1200px) {
  .slider-wrapper .service-card-two:hover .service-card-two__link {
    color: #FFFFFF;
  }
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Scoped styles for mediox_team widget */
.team-wrapper {
  /* Section Space Two */
}

.team-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .team-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

/* Sec Title */
.team-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.team-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.team-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.team-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--primary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .team-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.team-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  font-family: var(--primary_font);
}

@media (max-width: 767px) {
  .team-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Team Two */
.team-wrapper .team-two {
  position: relative;
  background-color: #FFFFFF;
}

/* Social Links */
.team-wrapper .social-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.team-wrapper .social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #707882;
  border: 1px solid rgba(217, 225, 235, 0.2);
  border-radius: 50%;
  text-decoration: none;
  transition: all 500ms ease;
}

.team-wrapper .social-links a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.team-wrapper .social-links a:hover {
  color: #FFFFFF;
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

/* Team Card Two */
.team-wrapper .team-card-two {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

@media (min-width: 576px) {
  .team-wrapper .team-card-two--top-identity {
    margin-top: 35px;
    flex-direction: column-reverse;
  }
}

.team-wrapper .team-card-two__image {
  position: relative;
  padding: 15px;
  width: 270px;
  height: 316px;
  background-color: var(--primary_color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

@media (min-width: 576px) and (max-width: 767px) {
  .team-wrapper .team-card-two__image {
    width: 240px;
    height: 277px;
  }
}

@media (max-width: 575px) {
  .team-wrapper .team-card-two__image {
    margin-left: auto;
    margin-right: auto;
  }
}

.team-wrapper .team-card-two__image::after {
  content: "";
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 789.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3716 8924 c-126 -35 -103 -23 -529 -273 -76 -44 -140 -81 -143 -81 -3 0 -17 -8 -32 -19 -28 -19 -312 -185 -490 -287 -57 -33 -114 -66 -127 -74 -12 -8 -54 -32 -92 -54 -37 -21 -88 -51 -113 -66 -25 -15 -99 -59 -165 -97 -196 -115 -688 -405 -720 -424 -16 -10 -39 -23 -50 -28 -11 -5 -72 -40 -135 -78 -63 -38 -137 -82 -165 -97 -27 -16 -90 -52 -140 -81 -49 -29 -160 -94 -245 -143 -189 -111 -217 -130 -303 -212 -142 -135 -226 -298 -250 -486 -17 -137 -15 -3796 2 -3897 25 -145 104 -304 210 -419 106 -114 110 -117 578 -387 70 -41 198 -115 283 -166 85 -50 186 -109 223 -131 76 -43 71 -40 275 -160 78 -46 208 -123 290 -170 81 -48 163 -97 182 -109 48 -31 242 -142 280 -161 8 -4 38 -22 65 -39 58 -37 142 -86 229 -133 34 -18 78 -45 99 -58 22 -14 130 -78 240 -141 111 -64 219 -127 241 -140 88 -56 306 -179 371 -209 112 -53 211 -74 344 -74 187 0 312 37 498 148 54 32 186 110 293 172 107 63 269 157 360 211 91 53 211 123 268 155 57 32 113 66 126 74 13 8 50 30 82 49 414 241 611 357 724 424 74 44 164 96 200 117 36 20 153 89 260 152 107 63 245 143 305 178 61 35 128 74 150 88 22 13 92 54 155 90 147 85 170 102 253 181 100 96 174 211 219 341 48 138 48 136 48 2062 0 1874 -2 1950 -41 2073 -39 119 -105 236 -180 318 -86 94 -151 145 -289 224 -193 111 -424 245 -580 338 -85 51 -184 108 -220 129 -36 20 -72 41 -80 46 -22 14 -317 188 -365 215 -22 12 -67 39 -100 58 -33 20 -82 49 -110 65 -27 16 -90 53 -140 82 -49 29 -106 62 -125 73 -19 10 -71 41 -115 67 -44 27 -145 85 -225 131 -80 45 -163 94 -185 109 -22 14 -89 55 -150 89 -60 34 -117 66 -125 71 -460 275 -561 328 -685 364 -124 36 -308 36 -439 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  transition: all 500ms ease;
}

.team-wrapper .team-card-two__image__inner {
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720.000000 819.000000"><g transform="translate(0.000000,819.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3395 8135 c-22 -8 -50 -15 -62 -15 -12 0 -34 -6 -50 -14 -15 -8 -55 -28 -88 -44 -66 -31 -124 -63 -170 -93 -16 -10 -39 -23 -50 -29 -11 -6 -33 -19 -50 -30 -16 -11 -40 -24 -53 -30 -12 -5 -50 -28 -83 -50 -33 -22 -67 -40 -74 -40 -8 0 -17 -5 -20 -11 -4 -5 -17 -15 -28 -20 -12 -5 -35 -18 -52 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -29 -11 -5 -37 -21 -58 -35 -21 -14 -42 -26 -48 -26 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -21 -11 -34 -18 -103 -62 -24 -16 -48 -28 -53 -28 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -5 -27 -14 -35 -19 -32 -20 -166 -98 -180 -104 -8 -4 -28 -16 -45 -27 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -29 -16 -11 -48 -29 -70 -41 -22 -12 -59 -35 -83 -51 -24 -16 -48 -29 -54 -29 -6 0 -19 -7 -28 -15 -15 -13 -72 -48 -125 -75 -11 -6 -33 -19 -50 -30 -16 -11 -41 -25 -55 -31 -14 -5 -39 -21 -57 -35 -17 -13 -36 -24 -42 -24 -6 0 -27 -12 -48 -26 -21 -14 -47 -30 -58 -35 -11 -5 -33 -18 -50 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -111 -56 -292 -222 -328 -300 -4 -8 -16 -28 -27 -45 -39 -60 -78 -163 -99 -265 -16 -76 -10 -3526 6 -3585 18 -66 34 -106 72 -183 57 -117 65 -127 182 -244 58 -57 112 -97 211 -155 73 -44 140 -83 148 -86 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 15 -7 251 -145 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -4 58 -32 110 -63 52 -31 102 -59 110 -63 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -3 56 -31 105 -61 50 -30 99 -58 110 -63 11 -5 34 -18 50 -29 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 12 -5 176 -100 230 -133 8 -5 49 -26 90 -46 41 -20 82 -40 92 -45 9 -4 54 -17 101 -28 115 -28 312 -29 412 -1 104 28 195 65 250 99 17 11 53 32 80 46 28 15 64 38 82 51 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 29 11 6 34 19 50 30 17 11 44 26 60 33 17 8 54 31 84 51 29 20 59 36 66 36 8 0 17 5 20 11 4 5 17 15 28 20 12 5 36 18 52 29 17 11 39 24 50 30 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 28 11 5 37 21 58 35 21 14 41 26 45 26 5 0 39 20 76 45 38 25 73 45 77 45 11 0 131 82 155 106 11 11 31 28 45 39 67 52 219 287 219 338 0 7 4 17 10 23 5 5 14 34 20 64 6 30 17 60 25 66 13 10 15 223 15 1758 0 1480 -2 1746 -14 1746 -15 0 -26 30 -26 71 0 14 -7 34 -15 45 -8 10 -15 27 -15 36 0 14 -40 98 -86 179 -13 23 -97 122 -134 158 -42 40 -162 127 -215 156 -27 14 -63 35 -80 46 -16 10 -39 23 -50 29 -11 5 -27 14 -35 19 -8 5 -62 37 -120 71 -58 33 -112 65 -120 70 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -16 7 -255 147 -280 163 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -17 7 -181 103 -225 131 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -11 5 -72 40 -135 78 -63 38 -122 72 -130 76 -8 4 -28 16 -45 27 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 29 -100 64 -281 151 -314 151 -10 0 -35 7 -54 15 -50 21 -334 20 -392 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720.000000 819.000000"><g transform="translate(0.000000,819.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M3395 8135 c-22 -8 -50 -15 -62 -15 -12 0 -34 -6 -50 -14 -15 -8 -55 -28 -88 -44 -66 -31 -124 -63 -170 -93 -16 -10 -39 -23 -50 -29 -11 -6 -33 -19 -50 -30 -16 -11 -40 -24 -53 -30 -12 -5 -50 -28 -83 -50 -33 -22 -67 -40 -74 -40 -8 0 -17 -5 -20 -11 -4 -5 -17 -15 -28 -20 -12 -5 -35 -18 -52 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -29 -11 -5 -37 -21 -58 -35 -21 -14 -42 -26 -48 -26 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -21 -11 -34 -18 -103 -62 -24 -16 -48 -28 -53 -28 -6 0 -25 -11 -42 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -5 -27 -14 -35 -19 -32 -20 -166 -98 -180 -104 -8 -4 -28 -16 -45 -27 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -29 -16 -11 -48 -29 -70 -41 -22 -12 -59 -35 -83 -51 -24 -16 -48 -29 -54 -29 -6 0 -19 -7 -28 -15 -15 -13 -72 -48 -125 -75 -11 -6 -33 -19 -50 -30 -16 -11 -41 -25 -55 -31 -14 -5 -39 -21 -57 -35 -17 -13 -36 -24 -42 -24 -6 0 -27 -12 -48 -26 -21 -14 -47 -30 -58 -35 -11 -5 -33 -18 -50 -29 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -111 -56 -292 -222 -328 -300 -4 -8 -16 -28 -27 -45 -39 -60 -78 -163 -99 -265 -16 -76 -10 -3526 6 -3585 18 -66 34 -106 72 -183 57 -117 65 -127 182 -244 58 -57 112 -97 211 -155 73 -44 140 -83 148 -86 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 15 -7 251 -145 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -4 58 -32 110 -63 52 -31 102 -59 110 -63 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 16 -7 254 -146 280 -163 8 -6 24 -15 35 -20 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 8 -3 56 -31 105 -61 50 -30 99 -58 110 -63 11 -5 34 -18 50 -29 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 37 -23 45 -27 12 -5 176 -100 230 -133 8 -5 49 -26 90 -46 41 -20 82 -40 92 -45 9 -4 54 -17 101 -28 115 -28 312 -29 412 -1 104 28 195 65 250 99 17 11 53 32 80 46 28 15 64 38 82 51 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 29 11 6 34 19 50 30 17 11 44 26 60 33 17 8 54 31 84 51 29 20 59 36 66 36 8 0 17 5 20 11 4 5 17 15 28 20 12 5 36 18 52 29 17 11 39 24 50 30 11 6 34 19 50 30 17 11 41 25 55 31 14 5 39 21 57 35 17 13 36 24 42 24 5 0 29 12 53 28 69 44 82 51 103 62 11 6 34 19 50 30 17 11 39 24 50 29 11 5 37 21 58 35 21 14 42 26 47 26 5 0 28 13 52 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 28 11 5 37 21 58 35 21 14 41 26 45 26 5 0 39 20 76 45 38 25 73 45 77 45 11 0 131 82 155 106 11 11 31 28 45 39 67 52 219 287 219 338 0 7 4 17 10 23 5 5 14 34 20 64 6 30 17 60 25 66 13 10 15 223 15 1758 0 1480 -2 1746 -14 1746 -15 0 -26 30 -26 71 0 14 -7 34 -15 45 -8 10 -15 27 -15 36 0 14 -40 98 -86 179 -13 23 -97 122 -134 158 -42 40 -162 127 -215 156 -27 14 -63 35 -80 46 -16 10 -39 23 -50 29 -11 5 -27 14 -35 19 -8 5 -62 37 -120 71 -58 33 -112 65 -120 70 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -16 7 -255 147 -280 163 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -17 7 -181 103 -225 131 -8 6 -24 15 -35 20 -11 6 -33 19 -50 30 -16 11 -39 24 -50 29 -11 5 -72 40 -135 78 -63 38 -122 72 -130 76 -8 4 -28 16 -45 27 -16 11 -37 23 -45 27 -8 4 -69 39 -135 78 -66 39 -127 75 -135 78 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 6 -33 19 -50 29 -100 64 -281 151 -314 151 -10 0 -35 7 -54 15 -50 21 -334 20 -392 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.team-wrapper .team-card-two__image__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(11, 34, 65, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all 500ms ease;
}

.team-wrapper .team-card-two__image__inner img {
  width: 100%;
  display: block;
}

.team-wrapper .team-card-two:hover .team-card-two__image__inner::after {
  opacity: 1;
}

.team-wrapper .team-card-two__social {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  z-index: 2;
  flex-wrap: nowrap;
  gap: 10px;
  transition: all 500ms ease;
}

@media (min-width: 576px) and (max-width: 767px) {
  .team-wrapper .team-card-two__social {
    gap: 8px;
  }
}

.team-wrapper .team-card-two__social a {
  width: 36px;
  height: 36px;
  color: #FFFFFF;
  border-color: #FFFFFF;
  opacity: 0;
  transform: translateY(70px);
}

.team-wrapper .team-card-two__social a:nth-child(1) {
  transition: all 500ms ease 50ms;
}

.team-wrapper .team-card-two__social a:nth-child(2) {
  transition: all 500ms ease 110ms;
}

.team-wrapper .team-card-two__social a:nth-child(3) {
  transition: all 500ms ease 170ms;
}

.team-wrapper .team-card-two__social a:nth-child(4) {
  transition: all 500ms ease 230ms;
}

.team-wrapper .team-card-two:hover .team-card-two__social a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 575px) {
  .team-wrapper .team-card-two__identity {
    text-align: center;
  }
}

.team-wrapper .team-card-two__name {
  margin: 0;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.388;
  font-family: var(--primary_font);
}

.team-wrapper .team-card-two__name:hover {
  color: var(--primary_color);
}

.team-wrapper .team-card-two__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  text-decoration: none;
}

.team-wrapper .team-card-two__name a:hover {
  background-size: 100% 1px;
}

.team-wrapper .team-card-two__designation {
  margin: 0;
  font-size: 12px;
  color: var(--primary_color);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
  font-family: var(--primary_font);
}

/* Owl Carousel */
.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: none !important;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #707882;
  transition: all 400ms ease;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  background-color: rgba(0, 165, 241, 0.1);
  transition: all 400ms ease;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--primary_color);
}

.team-wrapper .mediox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}


/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

/* Section Title Styles */
.why-choose-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.why-choose-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.why-choose-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-choose-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.why-choose-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .why-choose-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.why-choose-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: var(--primary_color_font);
}

@media (max-width: 767px) {
  .why-choose-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .why-choose-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Section Space */
.why-choose-wrapper .section-space-top-two {
  padding-top: 118px;
}

@media (max-width: 767px) {
  .why-choose-wrapper .section-space-top-two {
    padding-top: 96px;
  }
}

@media (max-width: 575px) {
  .why-choose-wrapper .section-space-top-two {
    padding-top: 76px;
  }
}

/* Why Choose Two Styles */
.why-choose-wrapper .why-choose-two {
  position: relative;
  background-color: #ffffff;
}

.why-choose-wrapper .why-choose-two .container {
  position: relative;
  z-index: 1;
}

.why-choose-wrapper .why-choose-two__inner {
  position: relative;
  padding: 0 40px 78px;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__inner {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .why-choose-wrapper .why-choose-two__inner {
    padding: 30px;
  }
}

@media (max-width: 430px) {
  .why-choose-wrapper .why-choose-two__inner {
    padding: 30px 20px 20px;
  }
}

.why-choose-wrapper .why-choose-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ECF0F5;
  border-radius: inherit;
}

/* Commented out mask properties as per rules */
 @media (min-width: 1200px) {
  .why-choose-wrapper .why-choose-two__bg {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 396.000000"><g transform="translate(0.000000,396.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M140 3946 c0 -8 -10 -18 -22 -21 -33 -10 -87 -65 -104 -104 -12 -28 -14 -302 -14 -1852 0 -1380 3 -1825 12 -1846 17 -41 68 -92 107 -109 51 -21 8691 -21 8742 0 39 17 94 71 104 104 3 12 13 22 21 22 12 0 14 248 14 1830 0 1610 -2 1830 -15 1830 -8 0 -17 11 -21 24 -7 28 -70 91 -101 101 -13 3 -23 13 -23 21 0 12 -143 14 -1030 14 -854 0 -1030 -2 -1030 -13 0 -8 -11 -19 -24 -25 -36 -16 -73 -72 -81 -122 -16 -106 -46 -155 -115 -188 -32 -16 -186 -17 -2095 -17 -1988 0 -2061 1 -2094 19 -68 36 -101 88 -101 158 0 53 -34 116 -77 143 -18 11 -32 26 -33 33 0 9 -209 12 -1010 12 -870 0 -1010 -2 -1010 -14z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 396.000000"><g transform="translate(0.000000,396.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M140 3946 c0 -8 -10 -18 -22 -21 -33 -10 -87 -65 -104 -104 -12 -28 -14 -302 -14 -1852 0 -1380 3 -1825 12 -1846 17 -41 68 -92 107 -109 51 -21 8691 -21 8742 0 39 17 94 71 104 104 3 12 13 22 21 22 12 0 14 248 14 1830 0 1610 -2 1830 -15 1830 -8 0 -17 11 -21 24 -7 28 -70 91 -101 101 -13 3 -23 13 -23 21 0 12 -143 14 -1030 14 -854 0 -1030 -2 -1030 -13 0 -8 -11 -19 -24 -25 -36 -16 -73 -72 -81 -122 -16 -106 -46 -155 -115 -188 -32 -16 -186 -17 -2095 -17 -1988 0 -2061 1 -2094 19 -68 36 -101 88 -101 158 0 53 -34 116 -77 143 -18 11 -32 26 -33 33 0 9 -209 12 -1010 12 -870 0 -1010 -2 -1010 -14z"/> </g> </svg>');
      -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
} 

.why-choose-wrapper .why-choose-two__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.3;
  border-radius: inherit;
}

.why-choose-wrapper .why-choose-two__tab-box {
  position: relative;
  display: block;
  z-index: 1;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn {
  position: relative;
  padding: 3px 15px;
  display: inline-block;
  background-color: transparent;
  font-size: 16px;
  color: var(--primary_color_font);
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.75;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid #D9E1EB;
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::before,
.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::after {
  content: "";
  background-color: var(--secondary_color);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn:hover {
  color: #ffffff;
  border-color: var(--secondary_color);
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn:hover::before,
.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn:hover::after {
  width: calc(50% + 6px);
}

.why-choose-wrapper .why-choose-two__tab-box .tab-buttons .tab-btn.active-btn {
  color: #ffffff;
  background-color: var(--secondary_color);
}

.why-choose-wrapper .why-choose-two__tab-box .tabs-content {
  margin-top: 65px;
  position: relative;
  display: block;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__tab-box .tabs-content {
    margin-top: 40px;
  }
}

.why-choose-wrapper .why-choose-two__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  transition: all 600ms ease;
  z-index: 10;
}

.why-choose-wrapper .why-choose-two__tab-box .tabs-content .tab.active-tab {
  display: block;
}

@media (min-width: 1200px) {
  .why-choose-wrapper .why-choose-two__tab-col-1 {
    flex: 0 0 auto;
    width: 54.643%;
  }

  .why-choose-wrapper .why-choose-two__tab-col-2 {
    flex: 0 0 auto;
    width: 45.357%;
  }
}

.why-choose-wrapper .why-choose-two__image {
  display: grid;
  grid-template-columns: 376px 176px;
  grid-gap: 30px;
}

@media (max-width: 767px) {
  .why-choose-wrapper .why-choose-two__image {
    grid-template-columns: 1fr;
  }
}

.why-choose-wrapper .why-choose-two__image img + img {
  margin-top: 30px;
}

.why-choose-wrapper .why-choose-two__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .why-choose-wrapper .why-choose-two__image__two {
    display: none;
  }
}

.why-choose-wrapper .why-choose-two__content {
  padding: 32px 40px;
  background-color: #ffffff;
  border-radius: 30px;
}

@media (max-width: 575px) {
  .why-choose-wrapper .why-choose-two__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 430px) {
  .why-choose-wrapper .why-choose-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.why-choose-wrapper .why-choose-two__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.666;
  color: var(--primary_color_font);
}

.why-choose-wrapper .why-choose-two__text {
  margin-bottom: 35px;
  font-weight: 400;
  color: var(--secondary_color_font);
}

.why-choose-wrapper .why-choose-two__list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.why-choose-wrapper .why-choose-two__list li {
  width: calc(50% - 15px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary_color_font);
  text-transform: capitalize;
  line-height: 1.875;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__list li {
    width: 100%;
  }
}

.why-choose-wrapper .why-choose-two__list__icon {
  position: relative;
  top: 1px;
  font-size: 16px;
  color: var(--secondary_color);
}

.why-choose-wrapper .why-choose-two__shape {
  width: 18px;
  height: 18px;
  position: absolute;
  animation: 3s rotate linear infinite;
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__shape {
    display: none;
  }
}

.why-choose-wrapper .why-choose-two__shape--1 {
  right: -70px;
  bottom: 290px;
}

@media (max-width: 1399px) {
  .why-choose-wrapper .why-choose-two__shape--1 {
    right: -40px;
  }
}

.why-choose-wrapper .why-choose-two__shape--2 {
  top: 243px;
  right: 115px;
}

.why-choose-wrapper .why-choose-two__shape::before,
.why-choose-wrapper .why-choose-two__shape::after {
  content: "";
  width: 18px;
  height: 6px;
  background-color: rgba(51, 193, 237, 0.5);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.why-choose-wrapper .why-choose-two__shape::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.why-choose-wrapper .why-choose-two__shape-3 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

@media (max-width: 1399px) {
  .why-choose-wrapper .why-choose-two__shape-3 {
    left: -50px;
  }
}

@media (max-width: 1199px) {
  .why-choose-wrapper .why-choose-two__shape-3 {
    display: none;
  }
}

.why-choose-wrapper .why-choose-two__shape-4 {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 91px;
  bottom: 371px;
  animation: shapeMover 3s linear infinite;
}

@media (max-width: 1599px) {
  .why-choose-wrapper .why-choose-two__shape-4 {
    right: 60px;
  }
}

@media (max-width: 1399px) {
  .why-choose-wrapper .why-choose-two__shape-4 {
    display: none;
  }
}

/* Utility Classes */
.why-choose-wrapper .gutter-y-40 {
  margin-top: -40px;
}

.why-choose-wrapper .gutter-y-40 > * {
  margin-top: 40px;
}

.why-choose-wrapper .list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* Section Title Styles */
.work-process-wrapper .sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}

.work-process-wrapper .sec-title--center .sec-title__top {
  justify-content: center;
}

.work-process-wrapper .sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-process-wrapper .sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}

.work-process-wrapper .sec-title__tagline {
  margin: 0;
  font-family: var(--primary_font);
  font-size: 16px;
  color: var(--secondary_color);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .work-process-wrapper .sec-title__tagline {
    font-size: 14px;
  }
}

.work-process-wrapper .sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
  color: var(--primary_color_font);
}

@media (max-width: 767px) {
  .work-process-wrapper .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .work-process-wrapper .sec-title__title {
    font-size: 35px;
  }
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* Section Space */
.work-process-wrapper .section-space-two {
  padding-top: 118px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .work-process-wrapper .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .work-process-wrapper .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

/* Work Process One Styles */
.work-process-wrapper .work-process-one {
  background-color: #ffffff;
  counter-reset: chooseNumber;
}

.work-process-wrapper .work-process-one__inner {
  position: relative;
}

.work-process-wrapper .work-process-one .sec-title {
  margin-bottom: 63px;
}

.work-process-wrapper .work-process-one .row {
  position: relative;
  z-index: 1;
}

.work-process-wrapper .work-process-one__item {
  text-align: center;
}

@media (min-width: 1200px) {
  .work-process-wrapper .work-process-one__item--reverse {
    margin-top: -7px;
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (min-width: 1200px) {
  .work-process-wrapper .work-process-one__item--reverse .work-process-one__item__icon {
    margin: 22px auto 0;
  }
}

.work-process-wrapper .work-process-one__item__icon {
  position: relative;
  margin: 0 auto 22px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 40px;
  color: var(--secondary_color);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 400ms ease;
}

.work-process-wrapper .work-process-one__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.work-process-wrapper .work-process-one__item__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color: var(--secondary_color);
  transition: transform 400ms ease, opacity 400ms ease;
}

.work-process-wrapper .work-process-one__item:hover .work-process-one__item__icon {
  color: #ffffff;
}

.work-process-wrapper .work-process-one__item:hover .work-process-one__item__icon::after {
  opacity: 1;
  transform: scale(1);
}

.work-process-wrapper .work-process-one__item__number {
  position: absolute;
  top: 0px;
  left: -6px;
}

.work-process-wrapper .work-process-one__item__number::after {
  content: counter(chooseNumber);
  counter-increment: chooseNumber;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  background-color: var(--primary_color);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.work-process-wrapper .work-process-one__item__title {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
  color: var(--primary_color_font);
}

.work-process-wrapper .work-process-one__item__text {
  margin: 0;
  font-weight: 400;
  line-height: 1.75;
  color: var(--secondary_color_font);
}

.work-process-wrapper .work-process-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  .work-process-wrapper .work-process-one__shape {
    display: none;
  }
}

/* Utility Classes */
.work-process-wrapper .gutter-y-40 {
  margin-top: -40px;
}

.work-process-wrapper .gutter-y-40 > * {
  margin-top: 40px;
}


/* About One Widget Styles - Scoped under .about-wrapper */
.about-wrapper {
  overflow: hidden;
}

.about-wrapper a {
  text-decoration: none;
}

.about-wrapper .about-one {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 1;
}

.about-wrapper .about-one__shape-1 {
  position: absolute;
  top: 255px;
  right: -30px;
  opacity: .03;
  z-index: -1;
}

.about-wrapper .about-one__shape-1 img {
  width: auto;
}

.about-wrapper .about-one__shape-2 {
  position: absolute;
  top: 160px;
  left: -189px;
  opacity: .20;
  z-index: -1;
}

.about-wrapper .about-one__shape-2 img {
  width: auto;
}

.about-wrapper .about-one__left {
  position: relative;
  display: block;
  margin-right: 175px;
}

.about-wrapper .about-one__img-box {
  position: relative;
  display: block;
}

.about-wrapper .about-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-wrapper .about-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  right: -205px;
  border-left: 153px solid var(--primary_color);
  border-right: 50px solid transparent;
  border-top: 310px solid transparent;
  z-index: -1;
}

.about-wrapper .about-one__img img {
  width: 100%;
  border-radius: var(--general_border_radius);
  border-top-right-radius: 0;
}

.about-wrapper .about-one__video-link {
  position: absolute;
  top: 125px;
  right: -125px;
  z-index: 3;
}

.about-wrapper .about-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  color: var(--primary_color_font);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-wrapper .about-one__video-icon:hover {
  background-color: var(--primary_color_font);
  color: #fff;
}

.about-wrapper .about-one__video-link .ripple,
.about-wrapper .about-one__video-icon .ripple:before,
.about-wrapper .about-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-wrapper .about-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-wrapper .about-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-wrapper .about-one__img-two {
  position: absolute;
  bottom: -160px;
  right: -155px;
  z-index: 1;
}

.about-wrapper .about-one__img-two:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: 0;
  right: 158px;
  background-color: #fff;
  border-radius: var(--general_border_radius);
  border-top-right-radius: 0;
  z-index: -1;
}

.about-wrapper .about-one__img-two:after {
  content: "";
  position: absolute;
  top: -15px;
  right: 0px;
  background-color: var(--primary_color);
  height: 15px;
  width: 153px;
  z-index: -1;
  border-top-right-radius: 5px;
}

.about-wrapper .about-one__img-two img {
  width: auto;
  border-radius: var(--general_border_radius);
  border-top-right-radius: 0;
}

.about-wrapper .about-one__experience-box {
  position: absolute;
  bottom: -159px;
  left: 0;
  background-color: var(--primary_color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 28px 40px;
  border-radius: var(--general_border_radius);
  z-index: 1;
}

.about-wrapper .about-one__experience-count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-wrapper .about-one__experience-count h3 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 50px !important;
  font-family: var(--primary_font) !important;
}

.about-wrapper .about-one__experience-count span {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: #fff;
  font-family: var(--primary_font);
}

.about-wrapper .about-one__experience-count-text {
  color: #fff;
  font-weight: 500;
}

.about-wrapper .about-one__right {
  position: relative;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}

.about-wrapper .about-one__right .section-title {
  margin-bottom: 24px;
}

.about-wrapper .about-one__text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 0;
}

.about-wrapper .about-one__point-box {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 31px;
}

.about-wrapper .about-one__point {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-wrapper .about-one__point li {
  position: relative;
  display: flex;
  max-width: 320px;
  width: 100%;
  gap: 15px;
}

.about-wrapper .about-one__point-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 75px;
  background-color: var(--primary_color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='75' height='65' viewBox='0 0 75 65'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABBCAYAAACZ1VmMAAAAAXNSR0IArs4c6QAABQNJREFUeF7tnGuoVUUUx38LepvSh6I+hL2IqDQIKyFCsCB7UlkEPTDIjOxhWSEkvcSSIPqiRS8NepFgVB+y9wOpkMyEpJRKK40I0jSVlIqaZt29T5zO3ffumX32mTtzzhm4XLhn9qz/+p25e++ZtdYIETUDY4HT859jgGOBw1ok/gR8C3wDvA+sFPgthBsSwshwNgwcB1wETAVOA3w17bTXvQE8J/BmJ/3xFVabFgPnADNySHWN+zGwUGBZXQM2jxMcVg5pDjC5Ew7lY74L3Cawrk4bwWAZGA88BJxXpwMlY90qsLAue0FgGXgQmFuXaM9xltkZdrnnNYXdOwrLZE+2J4FxdYhtY4zV9qk5RWBbG2N4P3mcbRm4G5jvfEHnO/4InCLwS1VTtc8sA2OAlwLfm1z9V2ATBX52vaBjT0MDJwOvAkdUERPoGp1Z4wS2+NqrbWYZuAR4xVfACPX/HpggsN3Hfi2wDNwMLPIxHEFfXTIdL/C3q5a2YRlYANzlajCyfqvsEmmiq6a2YBl4BLjd1Vik/ZYLXOCirTIsk70Z3+JiJIE+TwtcX6azEqwuA9VgNEtK7rvesAw8CtxU9i0k+vmZAh8Opd0LloH77ED3JwrCRfYfwOECW4s6O8MycAPwuIvFxPt8Jtkm5KDmBMtk2yrLE4fgI/8egQdaLyiFZbKlyw8+lrqk73iBL5t9cYH1HXBUlwDwcWO9wAnOsEy2l32Zj4Uu6ztT4ImGT0POLAPT7ZNhcZc57+vOX8AoAf1dvPlnslhdpT0fXzUJ9J9nZ9TA61LhzDLwEXBGAo6EkLgbGC3wzyBYBq4CXgihIiEbMwQWF8HaBRyYkCMhpK6zgdsT/wdrhENWIZxux8bY/2AZ2B/Q/89+KyYwuxlWbKGr2L6015phadTjkNgURqRn7QAsA+fbAOTrEQmLUcrWBizNbzo3RoURadojNjqzD/A7sFdEwmKUskthaZ7UBzGqi0zTboWVctwvJM8tCktzEy4OaTVRW2sU1hc2R+GkRB0IKXupwtJs39EhrSZqa5rC0ifhAYk6EFL2KIXV32UoR75U4AqFtcdmEe9X3r+nexwpsElhbSIrA+m3YgJauXGNfqSw3gbO7pMqJKCJbmMk37pSWI8BN/ZhFRKYKtl76EBTWJfahNSX+7AGEVhk8+ZnNf9VYekOqb4+lEanewjoOwJTWv1tbNFo0kfImpqYuWv9olaGDGoNWBoj1Fhhr7dVWhg6VAZz87byV7QkQvQYubekZAO0GdYkWwO4oscANdxdInBdme+tcUMtm9UK015qzjWJrbC0SEmjPPv2AK0NwNX2X+9TV1+LwvcauNAARje3pzSHX+BPHyeHyqK51753zfMZKJG+WjN9Z9Uq/eGS2Z7XaZoIhDKZmrI9X7Ly48pt2Ld2Ay/awyaurDx6HBdqmuMCAS3MbKuVLnEMLAGubcvKyFysuh+2m3Zf12W+FJYaMpDKPUyLLZ8BtHCpNkgN2E6wcmBn2cQR3c7R41Bia1pdrzNJt387di6NM6wGnXyW3aGbYiNMbL3Ne33P5ug/K/B5CC3esPJZdnBeGTbNHphzdAihuQ1d6Gqqga7jgi/NKsFqhmOyxeeFeshEzeA0C1GPfVoJfAKs7sR9yOeLbhtWCzi9n02wRVGnAnr+1aGAzsKDgL0LhO2wZcMa5NX7jObdbyY7bGctsFHgVx9nOt33X4XC6s9AgzAUAAAAAElFTkSuQmCC' x='0' y='0' width='75' height='65'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='75' height='65' viewBox='0 0 75 65'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABBCAYAAACZ1VmMAAAAAXNSR0IArs4c6QAABQNJREFUeF7tnGuoVUUUx38LepvSh6I+hL2IqDQIKyFCsCB7UlkEPTDIjOxhWSEkvcSSIPqiRS8NepFgVB+y9wOpkMyEpJRKK40I0jSVlIqaZt29T5zO3ffumX32mTtzzhm4XLhn9qz/+p25e++ZtdYIETUDY4HT859jgGOBw1ok/gR8C3wDvA+sFPgthBsSwshwNgwcB1wETAVOA3w17bTXvQE8J/BmJ/3xFVabFgPnADNySHWN+zGwUGBZXQM2jxMcVg5pDjC5Ew7lY74L3Cawrk4bwWAZGA88BJxXpwMlY90qsLAue0FgGXgQmFuXaM9xltkZdrnnNYXdOwrLZE+2J4FxdYhtY4zV9qk5RWBbG2N4P3mcbRm4G5jvfEHnO/4InCLwS1VTtc8sA2OAlwLfm1z9V2ATBX52vaBjT0MDJwOvAkdUERPoGp1Z4wS2+NqrbWYZuAR4xVfACPX/HpggsN3Hfi2wDNwMLPIxHEFfXTIdL/C3q5a2YRlYANzlajCyfqvsEmmiq6a2YBl4BLjd1Vik/ZYLXOCirTIsk70Z3+JiJIE+TwtcX6azEqwuA9VgNEtK7rvesAw8CtxU9i0k+vmZAh8Opd0LloH77ED3JwrCRfYfwOECW4s6O8MycAPwuIvFxPt8Jtkm5KDmBMtk2yrLE4fgI/8egQdaLyiFZbKlyw8+lrqk73iBL5t9cYH1HXBUlwDwcWO9wAnOsEy2l32Zj4Uu6ztT4ImGT0POLAPT7ZNhcZc57+vOX8AoAf1dvPlnslhdpT0fXzUJ9J9nZ9TA61LhzDLwEXBGAo6EkLgbGC3wzyBYBq4CXgihIiEbMwQWF8HaBRyYkCMhpK6zgdsT/wdrhENWIZxux8bY/2AZ2B/Q/89+KyYwuxlWbKGr2L6015phadTjkNgURqRn7QAsA+fbAOTrEQmLUcrWBizNbzo3RoURadojNjqzD/A7sFdEwmKUskthaZ7UBzGqi0zTboWVctwvJM8tCktzEy4OaTVRW2sU1hc2R+GkRB0IKXupwtJs39EhrSZqa5rC0ifhAYk6EFL2KIXV32UoR75U4AqFtcdmEe9X3r+nexwpsElhbSIrA+m3YgJauXGNfqSw3gbO7pMqJKCJbmMk37pSWI8BN/ZhFRKYKtl76EBTWJfahNSX+7AGEVhk8+ZnNf9VYekOqb4+lEanewjoOwJTWv1tbNFo0kfImpqYuWv9olaGDGoNWBoj1Fhhr7dVWhg6VAZz87byV7QkQvQYubekZAO0GdYkWwO4oscANdxdInBdme+tcUMtm9UK015qzjWJrbC0SEmjPPv2AK0NwNX2X+9TV1+LwvcauNAARje3pzSHX+BPHyeHyqK51753zfMZKJG+WjN9Z9Uq/eGS2Z7XaZoIhDKZmrI9X7Ly48pt2Ld2Ay/awyaurDx6HBdqmuMCAS3MbKuVLnEMLAGubcvKyFysuh+2m3Zf12W+FJYaMpDKPUyLLZ8BtHCpNkgN2E6wcmBn2cQR3c7R41Bia1pdrzNJt387di6NM6wGnXyW3aGbYiNMbL3Ne33P5ug/K/B5CC3esPJZdnBeGTbNHphzdAihuQ1d6Gqqga7jgi/NKsFqhmOyxeeFeshEzeA0C1GPfVoJfAKs7sR9yOeLbhtWCzi9n02wRVGnAnr+1aGAzsKDgL0LhO2wZcMa5NX7jObdbyY7bGctsFHgVx9nOt33X4XC6s9AgzAUAAAAAElFTkSuQmCC' x='0' y='0' width='75' height='65'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: all 500ms ease;
  z-index: 1;
}

.about-wrapper .about-one__point li:hover .about-one__point-icon {
  background-color: var(--primary_color_font);
}

.about-wrapper .about-one__point-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: #fff;
  transition: all 500ms ease;
}

.about-wrapper .about-one__point li:hover .about-one__point-icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }

  33.3% {
    transform: translateX(-3px);
  }

  49.95% {
    transform: translateX(4px);
  }

  66.6% {
    transform: translateX(-2px);
  }

  83.25% {
    transform: translateX(1px);
  }

  100% {
    transform: translateX(0);
  }
}

.about-wrapper .about-one__point-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-wrapper .about-one__point-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 8px;
}

.about-wrapper .about-one__point-content p {
  font-size: 15px;
  line-height: 22px;
}

.about-wrapper .about-one__point-two-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-wrapper .about-one__point-two {
  position: relative;
  display: block;
  max-width: 315px;
  width: 100%;
}

.about-wrapper .about-one__point-two li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-wrapper .about-one__point-two li+li {
  margin-top: 9px;
}

.about-wrapper .about-one__point-two li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--primary_color);
  border-radius: 50%;
}

.about-wrapper .about-one__point-two li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: #fff;
}

.about-wrapper .about-one__point-two li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-wrapper .about-one__review-box {
  position: relative;
  display: block;
}

.about-wrapper .about-one__review-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-wrapper .about-one__review-list li {
  position: relative;
  display: block;
}

.about-wrapper .about-one__review-list li+li {
  margin-left: -15px;
}

.about-wrapper .about-one__review-img {
  position: relative;
  display: block;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 20%);
  background-color: #fff;
}

.about-wrapper .about-one__review-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
}

.about-wrapper .about-one__review-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.about-wrapper .about-one__review-star span {
  font-size: 15px;
  color: var(--primary_color);
  position: relative;
  display: inline-block;
}

.about-wrapper .about-one__review-text {
  font-weight: 500;
  color: var(--secondary_color_font);
}

.about-wrapper .about-one__btn-and-author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.about-wrapper .about-one__btn-box {
  position: relative;
  display: block;
}

.about-wrapper .about-one__author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-wrapper .about-one__author-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.about-wrapper .about-one__author-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border: 4px solid var(--primary_color);
  border-radius: 50%;
}

.about-wrapper .about-one__author-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  overflow: hidden;
}

.about-wrapper .about-one__author-img img {
  width: 100%;
  border-radius: 50%;
}

.about-wrapper .about-one__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-wrapper .about-one__author-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 6px;
}

.about-wrapper .about-one__author-sign {
  position: relative;
  display: block;
  margin-left: 25px;
  padding-left: 25px;
}

.about-wrapper .about-one__author-sign:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background-color: #e6e6e6;
}

.about-wrapper .about-one__author-sign img {
  width: auto;
}

/* Section Title Styles */
.about-wrapper .section-title {
  position: relative;
  display: block;
  margin-top: -13px;
  margin-bottom: 48px;
  z-index: 1;
}

.about-wrapper .section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.about-wrapper .section-title__tagline {
  position: relative;
  display: block;
  color: var(--primary_color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.5px;
}

.about-wrapper .section-title__tagline-border {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border: 1px solid var(--primary_color);
}

.about-wrapper .section-title__shape-1 {
  position: absolute;
  right: -1px;
  top: -4px;
}

.about-wrapper .section-title__shape-1>.section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.about-wrapper .section-title__shape-2 {
  position: absolute;
  left: -1px;
  top: -4px;
}

.about-wrapper .section-title__shape-2>.section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.about-wrapper .section-title__title {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

.about-wrapper .section-title__title span {
  color: var(--primary_color);
}

/* Button Styles */
.about-wrapper .thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--primary_color);
  color: #fff;
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.about-wrapper .thm-btn>span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color_font);
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s linear;
}

.about-wrapper .thm-btn:hover>span {
  background-color: #fff;
  color: var(--primary_color);
}

.about-wrapper .thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--primary_color_font);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.about-wrapper .thm-btn::after {
  position: absolute;
  background-color: var(--primary_color_font);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.about-wrapper .thm-btn:hover {
  color: #fff;
}

/* List Unstyled */
.about-wrapper .list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Responsive Styles for About One */

/* Medium Large: 1200px - 1319px */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .about-wrapper .about-one__video-link {
    top: 65px;
    right: -115px;
  }

  .about-wrapper .about-one__point {
    gap: 15px;
    flex-direction: column;
    align-items: baseline;
  }
}

/* Medium: 992px - 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .about-wrapper .about-one__right {
    max-width: 600px;
    margin: 220px auto 0;
  }

  .about-wrapper .about-one__img:before {
    border-top: 460px solid transparent;
  }

  .about-wrapper .about-one__point {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
}

/* Tablet: 768px - 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-wrapper .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .about-wrapper .about-one__video-link {
    right: -85px;
  }

  .about-wrapper .about-one__right {
    max-width: 600px;
    margin: 220px auto 0;
  }

  .about-wrapper .about-one__img:before {
    border-top: 460px solid transparent;
  }

  .about-wrapper .about-one__point {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
}

/* Mobile: max-width 767px */
@media only screen and (max-width: 767px) {
  .about-wrapper .about-one__left {
    margin-right: 0;
  }

  .about-wrapper .about-one__img-two {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 300px;
    margin-top: 30px;
  }

  .about-wrapper .about-one__img-two img {
    width: 100%;
  }

  .about-wrapper .about-one__experience-box {
    position: relative;
    bottom: 0;
    left: 0;
    width: 250px;
    margin-top: 30px;
  }

  .about-wrapper .about-one__video-link {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translateY(-50%) translateX(-50%);
  }

  .about-wrapper .about-one__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
  }

  .about-wrapper .about-one__point {
    gap: 20px;
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-one__point-content h4 {
    line-height: 1.5em;
  }

  .about-wrapper .about-one__point-two-and-review-box {
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-one__review-box {
    margin-top: 25px;
  }

  .about-wrapper .about-one__btn-and-author-box {
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-one__author-box {
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-one__author-sign {
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
  }

  .about-wrapper .about-one__author-sign:before {
    display: none;
  }

  .about-wrapper .about-one {
    padding: 80px 0px 0px;
  }
}


/* About Three Widget Styles - Scoped under .about-wrapper */
.about-wrapper {
  font-family: var(--primary_font);
  overflow: hidden;
}

.about-wrapper a {
  text-decoration: none;
}

/* Keyframes */
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(217, 2, 2, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 2, 2, 0);
  }
}

@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes ImgBounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

/* Section Title Styles */
.about-wrapper .section-title {
  position: relative;
  display: block;
  margin-top: -13px;
  margin-bottom: 48px;
  z-index: 1;
}

.about-wrapper .section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.about-wrapper .section-title__tagline {
  position: relative;
  display: block;
  color: var(--primary_color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.5px;
}

.about-wrapper .section-title__tagline-border {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border: 1px solid var(--primary_color);
}

.about-wrapper .section-title__shape-1 {
  position: absolute;
  right: -1px;
  top: -4px;
}

.about-wrapper .section-title__shape-1 > .section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.about-wrapper .section-title__shape-2 {
  position: absolute;
  left: -1px;
  top: -4px;
}

.about-wrapper .section-title__shape-2 > .section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.about-wrapper .section-title__title {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

.about-wrapper .section-title__title span {
  color: var(--primary_color);
}

.about-wrapper .about-three__right .section-title {
  margin-bottom: 20px;
}

/* Thm Btn Styles */
.about-wrapper .thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--primary_color);
  color: #ffffff;
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.about-wrapper .thm-btn>span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color_font);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s linear;
}

.about-wrapper .thm-btn:hover>span {
  background-color: #ffffff;
  color: var(--primary_color);
}

.about-wrapper .thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--primary_color_font);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.about-wrapper .thm-btn::after {
  position: absolute;
  background-color: var(--primary_color_font);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.about-wrapper .thm-btn:hover {
  color: #ffffff;
}

/* About Three Styles */
.about-wrapper .about-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.about-wrapper .about-three__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.about-wrapper .about-three__shape-1 img {
  width: auto;
}

.about-wrapper .about-three__left {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: 50px;
}

.about-wrapper .about-three__img-box {
  position: relative;
  display: block;
}

.about-wrapper .about-three__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-wrapper .about-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  bottom: 0;
  background-color: var(--primary_color);
  border-radius: var(--general_border_radius);
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.about-wrapper .about-three__img:after {
  content: "";
  position: absolute;
  top: 120px;
  left: -60px;
  width: 20px;
  bottom: 0;
  background-color: var(--primary_color);
  border-radius: var(--general_border_radius);
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  z-index: -1;
}

.about-wrapper .about-three__img img {
  width: 100%;
  border-radius: var(--general_border_radius);
}

.about-wrapper .about-three__img-two {
  position: absolute;
  bottom: -124px;
  left: -100px;
  z-index: 2;
}

.about-wrapper .about-three__img-two:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: -10px;
  bottom: 0;
  background-color: #ffffff;
  border-radius: var(--general_border_radius);
  z-index: -1;
}

.about-wrapper .about-three__img-two img {
  width: auto;
  border-radius: var(--general_border_radius);
}

.about-wrapper .about-three__video-and-experience-box {
  position: absolute;
  bottom: -124px;
  left: 135px;
  right: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--primary_color);
  border-radius: var(--general_border_radius);
  padding: 18px 20px 18px;
  z-index: 3;
}

.about-wrapper .about-three__video-link {
  position: relative;
  display: block;
}

.about-wrapper .about-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 20px;
  color: var(--primary_color_font);
  background-color: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.20);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-wrapper .about-three__video-icon:hover {
  background-color: var(--primary_color_font);
  color: #ffffff;
}

.about-wrapper .about-three__video-link .ripple,
.about-wrapper .about-three__video-icon .ripple:before,
.about-wrapper .about-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-wrapper .about-three__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-wrapper .about-three__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-wrapper .about-three__experience-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
}

.about-wrapper .about-three__experience-count {
  position: relative;
  display: flex;
  align-items: center;
}

.about-wrapper .about-three__experience-count h3 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  line-height: 50px !important;
  font-family: var(--primary_font) !important;
}

.about-wrapper .about-three__experience-count span {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: #ffffff;
  font-family: var(--primary_font);
}

.about-wrapper .about-three__experience-count-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.about-wrapper .about-three__right {
  position: relative;
  display: block;
  margin-right: -70px;
}

.about-wrapper .about-three__text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--secondary_color_font);
  margin-top: 20px;
  margin-bottom: 0;
}

.about-wrapper .about-three__progress-box-outer {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 32px;
  margin-bottom: 37px;
}

.about-wrapper .about-three__progress-single {
  position: relative;
  display: flex;
  align-items: center;
}

.about-wrapper .about-three__progress-box {
  position: relative;
  display: inline-block;
  height: 100px;
}

.about-wrapper .about-three__progress-box canvas {
  transform: rotate(72deg);
}

.about-wrapper .about-three__progress-box .about-three__pack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.about-wrapper .about-three__progress-box .about-three__pack p {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary_color_font);
  line-height: 20px;
}

.about-wrapper .about-three__progress-box .about-three__pack span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary_color_font);
  line-height: 20px;
}

.about-wrapper .about-three__progress-content {
  margin-left: 25px;
}

.about-wrapper .about-three__progress-content p {
  font-size: 22px;
  color: var(--primary_color_font);
  font-weight: 700;
  line-height: 30px;
}

.about-wrapper .about-three__points-and-founder-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-wrapper .about-three__point-two {
  position: relative;
  display: block;
  max-width: 315px;
  width: 100%;
}

.about-wrapper .about-three__point-two li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-wrapper .about-three__point-two li+li {
  margin-top: 9px;
}

.about-wrapper .about-three__point-two li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--primary_color);
  border-radius: 50%;
}

.about-wrapper .about-three__point-two li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: #ffffff;
}

.about-wrapper .about-three__point-two li .text {
  position: relative;
  display: block;
  flex: 1;
}

.about-wrapper .about-three__point-two li .text p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--primary_color_font);
}

.about-wrapper .about-three__author-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--secondary_color);
  padding: 20px 30px 20px;
  border-radius: var(--general_border_radius);
}

.about-wrapper .about-three__author-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border: 4px solid var(--primary_color);
  border-radius: 50%;
}

.about-wrapper .about-three__author-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  overflow: hidden;
}

.about-wrapper .about-three__author-img img {
  width: 100%;
  border-radius: 50%;
}

.about-wrapper .about-three__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-wrapper .about-three__author-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 6px;
  color: var(--primary_color_font);
}

.about-wrapper .about-three__author-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--secondary_color_font);
}

.about-wrapper .about-three__btn-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 23px;
}

.about-wrapper .about-three__btn-box {
  position: relative;
  display: block;
}

.about-wrapper .about-three__review-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-wrapper .about-three__review-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-wrapper .about-three__review-list li {
  position: relative;
  display: block;
}

.about-wrapper .about-three__review-list li+li {
  margin-left: -15px;
}

.about-wrapper .about-three__review-img {
  position: relative;
  display: block;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.20);
  background-color: #ffffff;
}

.about-wrapper .about-three__review-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.about-wrapper .about-three__review-star-and-text {
  position: relative;
  display: block;
}

.about-wrapper .about-three__review-star {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.about-wrapper .about-three__review-star span {
  font-size: 15px;
  color: var(--primary_color);
  position: relative;
  display: inline-block;
}

.about-wrapper .about-three__review-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--secondary_color_font);
}

/* Responsive Styles */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .about-wrapper .about-three__video-and-experience-box {
    gap: 10px;
    padding: 18px 10px 18px;
  }

  .about-wrapper .about-three__experience-count h3 {
    font-size: 30px;
    line-height: 30px !important;
  }

  .about-wrapper .about-three__experience-count span {
    font-size: 30px;
    line-height: 30px;
  }

  .about-wrapper .about-three__video-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  .about-wrapper .about-three__video-link .ripple,
  .about-wrapper .about-three__video-icon .ripple:before,
  .about-wrapper .about-three__video-icon .ripple:after {
    width: 70px;
    height: 70px;
  }

  .about-wrapper .about-three__right {
    margin-left: -30px;
  }

  .about-wrapper .about-three__right .section-title__title {
    font-size: 40px;
  }

  .about-wrapper .about-three__shape-1 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .about-wrapper .about-three__right {
    max-width: 600px;
    margin: 184px auto 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-wrapper .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .about-wrapper .about-three__right {
    max-width: 600px;
    margin: 184px auto 0;
  }

  .about-wrapper .about-three__shape-1 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .about-wrapper .about-three__left {
    margin-left: 0;
    margin-right: 0;
  }

  .about-wrapper .about-three__img-two {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 225px;
    margin-top: 20px;
  }

  .about-wrapper .about-three__video-and-experience-box {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 300px;
    flex-direction: column;
    align-items: baseline;
    margin-top: 30px;
  }

  .about-wrapper .about-three__right {
    margin-right: 0;
    margin-top: 50px;
  }

  .about-wrapper .about-three__progress-box-outer {
    gap: 30px;
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-three__points-and-founder-box {
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-three__author-details {
    margin-top: 25px;
  }

  .about-wrapper .about-three__btn-and-review-box {
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-three__review-box {
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
  }

  .about-wrapper .about-three__shape-1 {
    display: none;
  }

  .about-wrapper .about-three {
    padding: 80px 0 0px;
  }
}


/* ===== Appointment One ===== */

/* Base typography (replaces body defaults from template) */
.appointment-wrapper {
  font-family: var(--primary_font);
  color: var(--secondary_color_font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  overflow: hidden;
}

.appointment-wrapper .appointment-one {
  position: relative;
  display: block;
  padding: 90px 0 120px;
  z-index: 1;
}

.appointment-wrapper .appointment-one__inner {
  position: relative;
  display: block;
  background-color: rgba(217, 2, 2, 1); /* --servixa-base solid */
  border-radius: var(--general_border_radius);
  padding: 60px 60px 60px;
  z-index: 1;
}

.appointment-wrapper .appointment-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .25;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  z-index: -1;
}

.appointment-wrapper .appointment-one__img {
  position: absolute;
  bottom: 0;
  left: 55px;
  animation: leftRight 4s ease-in-out infinite;
}

.appointment-wrapper .appointment-one__img img {
  width: auto;
}

.appointment-wrapper .appointment-one__right {
  position: relative;
  display: block;
  margin-left: 50px;
}

/* Section title overrides for appointment */
.appointment-wrapper .appointment-one__right .section-title {
  position: relative;
  display: block;
  margin-top: -13px;
  margin-bottom: 28px;
  z-index: 1;
}

.appointment-wrapper .section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.appointment-wrapper .appointment-one__right .section-title__tagline {
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.5px;
}

.appointment-wrapper .appointment-one__right .section-title__tagline-border {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border: 1px solid #fff;
}

.appointment-wrapper .appointment-one__right .section-title__shape-1 {
  position: absolute;
  right: -1px;
  top: -4px;
}

.appointment-wrapper .appointment-one__right .section-title__shape-1 > .section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.appointment-wrapper .appointment-one__right .section-title__shape-2 {
  position: absolute;
  left: -1px;
  top: -4px;
}

.appointment-wrapper .appointment-one__right .section-title__shape-2 > .section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.appointment-wrapper .appointment-one__right .section-title__title {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  margin-right: -100px;
  color: #fff;
}

/* Form styles */
.appointment-wrapper .appointment-one__form {
  position: relative;
  display: block;
}

.appointment-wrapper .appointment-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.appointment-wrapper .appointment-one__input-box input[type="text"],
.appointment-wrapper .appointment-one__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: #fff;
  display: block;
  font-weight: 400;
  border-radius: var(--general_border_radius);
}

.appointment-wrapper .appointment-one__input-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.appointment-wrapper .appointment-one__input-box-icon {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.appointment-wrapper .appointment-one__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
}

.appointment-wrapper .appointment-one__input-box .select-box {
  width: 100%;
}

.appointment-wrapper .appointment-one__input-box .nice-select {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: #fff;
  display: block;
  font-weight: 400;
  border-radius: var(--general_border_radius);
  line-height: 60px;
  float: none;
}

.appointment-wrapper .appointment-one__input-box .nice-select:after {
  position: absolute;
  top: 24px;
  right: 20px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  margin-top: 0px;
  z-index: 10;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
}

.appointment-wrapper .appointment-one__input-box .nice-select .option {
  color: #fff;
}

.appointment-wrapper .appointment-one__input-box.nice-select .option {
  color: #fff;
}

.appointment-wrapper .appointment-one__input-box .nice-select .list {
  background-color: var(--primary_color);
  border-radius: 5px;
  margin-top: 0px;
  z-index: 999;
}

.appointment-wrapper .appointment-one__input-box .nice-select .option:hover,
.appointment-wrapper .appointment-one__input-box .nice-select .option.focus,
.appointment-wrapper .appointment-one__input-box .nice-select .option.selected.focus {
  color: #fff;
  background-color: var(--primary_color_font);
}

/* Button styles */
.appointment-wrapper .appointment-one__btn-box {
  position: relative;
  display: block;
}

.appointment-wrapper .thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--primary_color);
  color: #fff;
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
}

.appointment-wrapper .thm-btn > span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color_font);
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s linear;
}

.appointment-wrapper .thm-btn:hover > span {
  background-color: #fff;
  color: var(--primary_color);
}

.appointment-wrapper .thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--primary_color_font);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.appointment-wrapper .thm-btn:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.appointment-wrapper .thm-btn::after {
  position: absolute;
  background-color: var(--primary_color_font);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.appointment-wrapper .thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.appointment-wrapper .thm-btn:hover {
  color: #fff;
}

/* Override for appointment btn */
.appointment-wrapper .appointment-one__btn-box .thm-btn {
  border: none;
  background-color: var(--primary_color_font);
}

.appointment-wrapper .appointment-one__btn-box .thm-btn > span {
  background-color: var(--primary_color);
}

.appointment-wrapper .appointment-one__btn-box .thm-btn::before,
.appointment-wrapper .appointment-one__btn-box .thm-btn::after {
  background-color: #fff;
}

.appointment-wrapper .appointment-one__btn-box .thm-btn:hover {
  color: var(--primary_color_font);
}

.appointment-wrapper .appointment-one__btn-box .thm-btn:hover > span {
  background-color: var(--primary_color_font);
  color: #fff;
}

/* Datepicker */
.appointment-wrapper #ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--primary_color_font);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

.appointment-wrapper #ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--primary_color) none repeat scroll 0 0;
  border: 2px solid var(--primary_color);
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.appointment-wrapper .ui-datepicker td a {
  color: var(--primary_color_font) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.appointment-wrapper .ui-state-highlight,
.appointment-wrapper .ui-widget-content .ui-state-highlight,
.appointment-wrapper .ui-widget-header .ui-state-highlight {
  border: 1px solid var(--primary_color_font) !important;
  background: var(--primary_color_font) !important;
  color: #fff !important;
}

.appointment-wrapper .ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.appointment-wrapper .ui-datepicker .ui-datepicker-prev,
.appointment-wrapper .ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.appointment-wrapper .ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.appointment-wrapper .ui-datepicker .ui-datepicker-prev:hover,
.appointment-wrapper .ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

/* leftRight animation */
@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

/* ===== Responsive ===== */

/* 1200px - 1319px */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .appointment-wrapper .appointment-one__right {
    margin-left: 0;
  }
}

/* 992px - 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .appointment-wrapper .appointment-one__right {
    margin-left: 0;
  }
  .appointment-wrapper .appointment-one__img {
    left: -40px;
  }
  .appointment-wrapper .appointment-one__img img {
    width: 90%;
  }
  .appointment-wrapper .appointment-one__right .section-title__title {
    font-size: 40px;
  }
}

/* 768px - 991px (Tablet) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appointment-wrapper .appointment-one__right {
    margin-left: 0;
  }
  .appointment-wrapper .appointment-one__img {
    position: relative;
    left: 0;
    margin-top: 50px;
  }
  .appointment-wrapper .appointment-one__inner {
    padding: 60px 60px 0px;
  }
  .appointment-wrapper .appointment-one__right .section-title__title {
    font-size: 35px;
    margin-right: 0;
  }
}

/* max-767px (Mobile) */
@media only screen and (max-width: 767px) {
  .appointment-wrapper .appointment-one__right {
    margin-left: 0;
  }
  .appointment-wrapper .appointment-one__img {
    position: relative;
    left: 0;
    margin-top: 30px;
  }
  .appointment-wrapper .appointment-one__img img {
    width: 100%;
  }
  .appointment-wrapper .appointment-one__inner {
    padding: 60px 20px 0px;
  }
  .appointment-wrapper .appointment-one {
    padding: 50px 0 70px;
  }
  .appointment-wrapper .appointment-one__right .section-title__title {
    font-size: 25px;
    margin-right: 0;
  }
  .appointment-wrapper .section-title__tagline-border {
    width: 25px;
  }
}


/* Appointment Two Widget Styles - Scoped under .appointment-wrapper */
.appointment-wrapper {
  font-family: var(--primary_font);
  overflow: hidden;
}

.appointment-wrapper a {
  text-decoration: none;
}

/* Keyframes */
@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Section Title Styles */
.appointment-wrapper .section-title {
  position: relative;
  display: block;
  margin-top: -13px;
  margin-bottom: 48px;
  z-index: 1;
}

.appointment-wrapper .section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.appointment-wrapper .section-title__tagline {
  position: relative;
  display: block;
  color: var(--primary_color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.5px;
}

.appointment-wrapper .section-title__tagline-border {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border: 1px solid var(--primary_color);
}

.appointment-wrapper .section-title__shape-1 {
  position: absolute;
  right: -1px;
  top: -4px;
}

.appointment-wrapper .section-title__shape-1 > .section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.appointment-wrapper .section-title__shape-2 {
  position: absolute;
  left: -1px;
  top: -4px;
}

.appointment-wrapper .section-title__shape-2 > .section-title__circle {
  position: relative;
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--primary_color);
}

.appointment-wrapper .section-title__title {
  font-size: 45px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary_color_font);
}

.appointment-wrapper .section-title__title span {
  color: var(--primary_color);
}

/* Appointment Two Base Styles */
.appointment-wrapper .appointment-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.appointment-wrapper .appointment-two__bg-color {
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary_color_font);
  z-index: -1;
}

.appointment-wrapper .appointment-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.30;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.appointment-wrapper .appointment-two__left {
  position: relative;
  display: block;
  padding: 50px 50px 0px;
  overflow: hidden;
  border-radius: var(--general_border_radius);
  border-bottom-right-radius: 0;
  z-index: 1;
}

.appointment-wrapper .appointment-two__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--general_border_radius);
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='740' height='660' viewBox='0 0 740 660'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='740' height='660'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='740' height='660' viewBox='0 0 740 660'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='740' height='660'/%3E%3C/svg%3E");
  border-bottom-right-radius: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.appointment-wrapper .appointment-two__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary_color);
  border-radius: var(--general_border_radius);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='740' height='660' viewBox='0 0 740 660'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='740' height='660'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='740' height='660' viewBox='0 0 740 660'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='740' height='660'/%3E%3C/svg%3E");
  border-bottom-right-radius: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.appointment-wrapper .appointment-two__left .section-title {
  margin-bottom: 28px;
}

.appointment-wrapper .appointment-two__left .section-title__tagline {
  color: #ffffff;
}

.appointment-wrapper .appointment-two__left .section-title__tagline-border {
  border: 1px solid #ffffff;
}

.appointment-wrapper .appointment-two__left .section-title__shape-1 > .section-title__circle {
  background-color: #ffffff;
}

.appointment-wrapper .appointment-two__left .section-title__shape-2 > .section-title__circle {
  background-color: #ffffff;
}

.appointment-wrapper .appointment-two__left .section-title__title {
  margin-right: -100px;
  color: #ffffff;
}

.appointment-wrapper .appointment-two__form {
  position: relative;
  display: block;
}

.appointment-wrapper .appointment-two__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.appointment-wrapper .appointment-two__input-box input[type="text"],
.appointment-wrapper .appointment-two__input-box input[type="email"],
.appointment-wrapper .appointment-two__input-box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  border-radius: var(--general_border_radius);
}

.appointment-wrapper .appointment-two__input-box input[type="text"]::-webkit-input-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="email"]::-webkit-input-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="tel"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box input[type="text"]::-moz-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="email"]::-moz-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="tel"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box input[type="text"]:-ms-input-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="email"]:-ms-input-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="tel"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box input[type="text"]::-ms-input-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="email"]::-ms-input-placeholder,
.appointment-wrapper .appointment-two__input-box input[type="tel"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box input[type="text"]::placeholder,
.appointment-wrapper .appointment-two__input-box input[type="email"]::placeholder,
.appointment-wrapper .appointment-two__input-box input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box-icon {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.appointment-wrapper .appointment-two__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
}

.appointment-wrapper .appointment-two__input-box .select-box {
  width: 100%;
}

.appointment-wrapper .appointment-two__input-box .nice-select {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  border-radius: var(--general_border_radius);
  line-height: 60px;
  float: none;
}

.appointment-wrapper .appointment-two__input-box .nice-select:after {
  position: absolute;
  top: 24px;
  right: 20px;
  border-bottom: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  margin-top: 0px;
  z-index: 10;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
}

.appointment-wrapper .appointment-two__input-box.nice-select .option {
  color: #ffffff;
}

/* Nice Select General Styles */
.appointment-wrapper .nice-select {
  position: relative;
  display: block;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  font-family: inherit;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.appointment-wrapper .nice-select:hover {
  border-color: #6e7a7a;
}

.appointment-wrapper .nice-select:active,
.appointment-wrapper .nice-select.open,
.appointment-wrapper .nice-select:focus {
  border-color: #6e7a7a;
}

.appointment-wrapper .nice-select:after {
  position: absolute;
  right: 17px;
  top: 50%;
  margin-top: -4px;
  display: block;
  border-bottom: 1px solid var(--secondary_color_font);
  border-right: 1px solid var(--secondary_color_font);
  content: '';
  width: 8px;
  height: 8px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.appointment-wrapper .nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.appointment-wrapper .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.appointment-wrapper .nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.appointment-wrapper .nice-select.disabled:after {
  border-color: #cccccc;
}

.appointment-wrapper .nice-select.wide {
  width: 100%;
}

.appointment-wrapper .nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.appointment-wrapper .nice-select.right {
  float: right;
}

.appointment-wrapper .nice-select.right .list {
  left: auto;
  right: 0;
}

.appointment-wrapper .nice-select .list {
  background-color: var(--primary_color);
  border-radius: 5px;
  box-sizing: border-box;
  margin-top: 0px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.appointment-wrapper .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.appointment-wrapper .nice-select .option {
  color: #ffffff;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.appointment-wrapper .nice-select .option:hover,
.appointment-wrapper .nice-select .option.focus,
.appointment-wrapper .nice-select .option.selected.focus {
  color: #ffffff;
  background-color: var(--primary_color_font);
}

.appointment-wrapper .nice-select .option.selected {
  font-weight: 500;
}

.appointment-wrapper .nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.appointment-wrapper .appointment-two__input-box textarea {
  font-size: 16px;
  color: #ffffff;
  height: 150px;
  width: 100%;
  padding: 15px 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background-color: transparent;
  border-radius: var(--general_border_radius);
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.appointment-wrapper .appointment-two__input-box textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
}

.appointment-wrapper .appointment-two__input-box.text-message-box {
  height: 150px;
}

.appointment-wrapper .appointment-two__btn-box {
  position: relative;
  display: block;
  margin-left: -50px;
}

.appointment-wrapper .appointment-two__btn-box .thm-btn {
  border: none;
}

.appointment-wrapper .appointment-two__btn-box .thm-btn:hover {
  color: var(--primary_color_font);
}

.appointment-wrapper .appointment-two__btn-box .thm-btn::before,
.appointment-wrapper .appointment-two__btn-box .thm-btn::after {
  background-color: #ffffff;
}

.appointment-wrapper .appointment-two__btn-box .thm-btn:hover > span {
  background-color: var(--primary_color);
  color: #ffffff;
}

.appointment-wrapper .appointment-two__right {
  position: relative;
  display: block;
}

.appointment-wrapper .appointment-two__shape-1 {
  position: absolute;
  top: -50px;
  left: -30px;
}

.appointment-wrapper .appointment-two__shape-1 img {
  width: auto;
}

.appointment-wrapper .appointment-two__contact-info {
  position: relative;
  display: block;
  margin-left: -24px;
  background-color: #ffffff;
  border-radius: var(--general_border_radius);
  padding: 31px 40px 33px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-top: 298px;
  background-color: rgb(255, 255, 255);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='550' height='362' viewBox='0 0 550 362'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='550' height='362'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='550' height='362' viewBox='0 0 550 362'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='550' height='362'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  z-index: 1;
}

.appointment-wrapper .appointment-two__contact-info-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.appointment-wrapper .appointment-two__contact-info-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.appointment-wrapper .appointment-two__contact-info-text {
  margin: 10px 0 20px;
}

.appointment-wrapper .appointment-two__contact-info-list {
  position: relative;
  display: block;
}

.appointment-wrapper .appointment-two__contact-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.appointment-wrapper .appointment-two__contact-info-list li .icon {
  position: relative;
  display: inline-block;
}

.appointment-wrapper .appointment-two__contact-info-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--primary_color);
  font-weight: 700;
}

.appointment-wrapper .appointment-two__contact-info-list li .content {
  position: relative;
  display: block;
}

.appointment-wrapper .appointment-two__contact-info-list li .content p {
  color: var(--secondary_color_font);
  font-weight: 500;
}

.appointment-wrapper .appointment-two__contact-info-list li .content p a {
  color: var(--secondary_color_font);
}

.appointment-wrapper .appointment-two__contact-info-list li .content p a:hover {
  color: var(--primary_color);
}

.appointment-wrapper .appointment-two__contact-info-list li + li {
  margin-top: 10px;
}

.appointment-wrapper .appointment-two__btn-box-two {
  position: absolute;
  bottom: 0;
  right: 0;
}

.appointment-wrapper .appointment-two__btn-box-two .thm-btn {
  border: none;
}

.appointment-wrapper .appointment-two__btn-box-two .thm-btn:hover {
  color: var(--primary_color_font);
}

.appointment-wrapper .appointment-two__btn-box-two .thm-btn::before,
.appointment-wrapper .appointment-two__btn-box-two .thm-btn::after {
  background-color: #ffffff;
}

.appointment-wrapper .appointment-two__btn-box-two .thm-btn:hover > span {
  background-color: var(--primary_color);
  color: #ffffff;
}

.appointment-wrapper .appointment-two__img-1 {
  position: absolute;
  top: -303px;
  left: 15px;
  animation: topBottom 3s ease-in-out infinite;
}

.appointment-wrapper .appointment-two__img-1 img {
  width: auto;
}

/* Thm-btn Base Styles */
.appointment-wrapper .thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--primary_color);
  color: #ffffff;
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding: 5px 30px 5px;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.appointment-wrapper .thm-btn > span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color_font);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s linear;
}

.appointment-wrapper .thm-btn:hover > span {
  background-color: #ffffff;
  color: var(--primary_color);
}

.appointment-wrapper .thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--primary_color_font);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.appointment-wrapper .thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.appointment-wrapper .thm-btn::after {
  position: absolute;
  background-color: var(--primary_color_font);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.appointment-wrapper .thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.appointment-wrapper .thm-btn:hover {
  color: #ffffff;
}

/* Responsive Styles */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .appointment-wrapper .appointment-two__left {
    padding: 50px 30px 0px;
  }

  .appointment-wrapper .appointment-two__btn-box {
    margin-left: -30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .appointment-wrapper .appointment-two__left {
    max-width: 740px;
    margin: 0 auto 50px;
    border-radius: 20px;
  }

  .appointment-wrapper .appointment-two__right {
    max-width: 550px;
    margin: 0px auto 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .appointment-wrapper .appointment-two__left {
    max-width: 740px;
    margin: 0 auto 50px;
    border-radius: 20px;
  }

  .appointment-wrapper .appointment-two__right {
    max-width: 550px;
    margin: 0px auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .appointment-wrapper .section-title__tagline-box {
    gap: 5px;
  }

  .appointment-wrapper .section-title__tagline-border {
    width: 25px;
  }

  .appointment-wrapper .section-title__title {
    font-size: 25px;
    line-height: 1.2em;
  }

  .appointment-wrapper .section-title__title br {
    display: none;
  }

  .appointment-wrapper .appointment-two {
    padding: 80px 0 0px;
  }

  .appointment-wrapper .appointment-two__left {
    padding: 30px 15px 30px;
    border-radius: var(--general_border_radius);
  }

  .appointment-wrapper .appointment-two__bg-shape {
    -webkit-mask: none;
    mask: none;
  }

  .appointment-wrapper .appointment-two__left::before {
    -webkit-mask: none;
    mask: none;
  }

  .appointment-wrapper .appointment-two__left .section-title__title {
    margin-right: 0;
  }

  .appointment-wrapper .appointment-two__btn-box {
    margin-left: 0;
  }

  .appointment-wrapper .appointment-two__btn-box .thm-btn {
    background-color: #ffffff;
    color: var(--primary_color_font);
  }

  .appointment-wrapper .appointment-two__btn-box .thm-btn:hover {
    color: #ffffff;
  }

  .appointment-wrapper .appointment-two__btn-box .thm-btn::before {
    background-color: var(--primary_color_font);
  }

  .appointment-wrapper .appointment-two__btn-box .thm-btn::after {
    background-color: var(--primary_color_font);
  }

  .appointment-wrapper .appointment-two__contact-info {
    margin-top: 30px;
    margin-left: 0;
    padding: 31px 20px 33px;
    -webkit-mask: none;
    mask: none;
    border-radius: var(--general_border_radius);
    overflow: hidden;
  }

  .appointment-wrapper .appointment-two__btn-box-two {
    position: relative;
    margin-top: 20px;
  }

  .appointment-wrapper .appointment-two__bg-color {
    display: none;
  }

  .appointment-wrapper .appointment-two__img-1 {
    display: none;
  }

  .appointment-wrapper .appointment-two__shape-1 {
    display: none;
  }
}
