/*------------------------------------------------------------------------
--------------------------------------------------------------------------

* Common CSS
* Button And Title Styles CSS
* Color & Font CSS
* Menu Bar CSS
* Menu Bar Sticky CSS
* Menu Sidebar CSS
* Responsive Main Menu Css
* Responsive Menu Sidebar CSS
* Menu Demo CSS


/**** Variable css****/
.focus {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

/*==========================================================================
* Common CSS
==========================================================================*/
body {
  font-family: "Outfit", serif;
  color: var(--body-color);
  font-size: 16px;
  line-height: 28.8px;
  font-weight: 400;
}

.sub-txt {
  color: #808080;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.h-5 {
  height: 50px !important;
}

.w-5 {
  width: 50px !important;
}

.gap-7 {
  gap: 7rem !important;
}

img {
  max-width: 100%;
  height: auto;
  transition: 0.4s;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
}

a,
button,
i {
  text-decoration: none;
  color: inherit;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 120px 0px;
}

@media (max-width: 575px) {
  .section-padding {
    padding: 85px 0px;
  }
}
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.img__full {
  width: 100%;
}

.extra-bg {
  background-color: #f9fdfd;
}

/*==========================================================================
* Button And Title Styles CSS
==========================================================================*/
.subtitle-one,
.subtitle-two,
.subtitle-three,
.subtitle-four {
  position: relative;
  color: var(--primary-color-4);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  padding-left: 30px;
  display: inline-block;
  margin-bottom: 14px;
}

.subtitle-one::before,
.subtitle-two::before,
.subtitle-three::before,
.subtitle-four::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  background-image: url("../img/icon/subtitle-4.png");
  background-size: 19px;
  height: 22px;
  width: 20px;
  background-repeat: no-repeat;
}

.subtitle-two {
  color: var(--primary-color-2);
}

.subtitle-two::before {
  background-image: url("../img/icon/subtitle-2.png");
}

.subtitle-three {
  color: var(--primary-color-3);
}

.subtitle-three::before {
  background-image: url("../img/icon/subtitle-3.png");
}

.subtitle-four {
  color: primarycolor;
}

.subtitle-four::before {
  background-image: url("../img/icon/subtitle-1.png");
}

.btn-one,
.btn-two {
  background: rgb(8, 183, 234);
  background: linear-gradient(180deg, rgb(8, 183, 234) 6%, rgb(12, 168, 214) 90%);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  padding: 12px 30px;
  font-weight: 600;
  z-index: 3;
  position: relative;
  transition: 0.4s;
  text-transform: capitalize;
  border-radius: 6px;
  text-decoration: none;
}

.btn-one::after,
.btn-one::before,
.btn-two::after,
.btn-two::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  top: 0;
  left: 0;
  background: #1f2b38;
  border-radius: 6px 30px 30px 6px;
  transition: all 0.4s ease-out;
  z-index: -1;
}

.btn-one::after,
.btn-two::after {
  right: 0;
  border-radius: 30px 6px 6px 30px;
  left: auto;
}

.btn-one:hover,
.btn-two:hover {
  color: #fff;
}

.btn-one:hover::after,
.btn-one:hover::before,
.btn-two:hover::after,
.btn-two:hover::before {
  width: 52%;
  border-radius: 6px;
}

.btn-one:focus,
.btn-two:focus {
  color: #fff;
}

.btn-two {
  background: var(--primary-color-2);
  border-radius: 30px;
  overflow: hidden;
  display: inline-flex;
}

.btn-two::after,
.btn-two::before {
  border-radius: 30px;
}

.btn-two:hover::before {
  border-radius: 30px 0 0 30px;
}

.btn-two:hover::after {
  border-radius: 0 30px 30px 0;
}

.simple-btn {
  color: var(--btn-heading-color);
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  transition: 0.4s;
  text-transform: uppercase;
}

.simple-btn:hover {
  color: #0ab9ed;
}

.simple-btn:focus {
  color: #0ab9ed;
}

@keyframes rotate {
  100% {
    transform: rotate(90deg);
  }
}
/*==========================================================================
* Color & Font CSS
==========================================================================*/
:root {
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --btn-white: #ffffff;
  --border-white: #ffffff;
  --primary-color-4: #ff0000;
  --primary-color-2: #2974ff;
  --primary-color-3: #0d9b4d;
  --bg-heading-color: #121212;
  --text-heading-color: #121212;
  --btn-heading-color: #121212;
  --dark-one: #121212;
  --dark-two: #171717;
  --color-1: #333334;
  --color-2: #999999;
  --color-3: #cccccc;
  --color-4: #f8f8f8;
  --color-5: #f6f6f6;
  --color-6: #141c21;
  --color-7: #feede8;
  --color-8: #f2f3f3;
  --color-9: #131315;
  --color-10: #1e1f21;
  --color-11: #fa714a;
  --color-12: #fdb8a5;
  --color-13: #f8e7e2;
  --color-14: #eaf1ff;
  --color-15: #0d0d0d;
  --color-16: #202123;
  --color-17: #111214;
  --color-18: #161719;
  --color-19: #2d2e30;
  --color-20: #ececec;
  --color-21: #2d2f34;
  --color-22: #424448;
  --color-23: #57595d;
  --color-24: #56b982;
  --border-color-1: #e6e6e6;
  --border-color-2: #f0f0f0;
  --border-color-3: rgba(255, 255, 255, 0.1);
  --border-color-4: rgba(19, 19, 19, 0.06);
  --box-shadow-1: 0px 30px 70px rgba(0, 0, 0, 0.08);
  --box-shadow-2: 0px 10px 70px rgba(0, 0, 0, 0.1);
}

/*==========================================================================
* Menu Bar CSS
==========================================================================*/
header {
  background-color: #f7f7f7;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 99;
  display: flex;
  justify-content: space-between;
  padding: 0px 10%;
  position: fixed;
  width: 100%;
  top: 0px;
  background: white;
  transition: background 0.5s;
}
@media (max-width: 767px) {
  header {
    padding: 10px 3%;
  }
}
.phone-menu {
    display: none !important;
}
@media (max-width: 767px) {
    .phone-menu {
        display: block !important;
    }
}
.sticky .header__area-menubar-left-logo a img {
  transition: height 0.5s;
  height: 50px;
}
@media (max-width: 767px) {
  .sticky .header__area-menubar-left-logo a img {
    height: 50px;
  }
}

.sticky .header__area-menubar-center {
  padding: 20px 0;
  transition: all 0.5s ease;
}

.header__area {
  padding: 0 0px;
}
.header__area.one {
  background: #fff8f8;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}

.header__area-menubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__area-menubar-left {
  position: relative;
  z-index: 99;
}

.header__area-menubar-left-logo a {
  display: inline-block;
}
.header__area-menubar-left-logo a img {
  max-width: 180px;
  position: relative;
  z-index: 9999;
  transition: height 0.5s;
}
.header__area-menubar-left-logo.three {
  background: var(--primary-color-3);
  padding: 34px 0 24px 25px;
  position: relative;
  z-index: 9;
  width: 248px;
}
.header__area-menubar-left-logo.three::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  background: var(--primary-color-3);
  width: 100%;
  height: 10px;
}

.header__area-menubar-center {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 36px 0;
  transition: all 0.5s ease;
}
.header__area-menubar-center-menu ul li.active a{
    color: #0ab9ed;
}
.sticky .header__area-menubar-center-menu ul li .sub-menu {
  top: 46px;
}

.header__area-menubar-center-menu ul {
  padding: 0;
  margin: 0;
}
.header__area-menubar-center-menu ul li {
  display: inline-block;
  position: relative;
  list-style: none;
  margin: 0 25px;
}
.header__area-menubar-center-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  transition: width 0.5s cubic-bezier(0.35, 0.7, 0.35, 1);
  bottom: -38px;
  transform: skew(-35deg);
  height: 4px;
  background: #0ab9ed;
  z-index: 1;
}
.header__area-menubar-center-menu ul li:hover::after {
  width: 100%;
}
.header__area-menubar-center-menu ul li:hover > a {
  color: #0ab9ed;
}
.header__area-menubar-center-menu ul li:hover > .sub-menu {
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}
.header__area-menubar-center-menu ul li .sub-menu {
  position: absolute;
  background: var(--bg-white);
  min-width: 240px;
  transition: all 0.3s ease-out 0s;
  top: 64px;
  opacity: 0;
  box-shadow: var(--box-shadow-1);
  visibility: hidden;
  z-index: 99;
  transform: scale(1, 0);
  transform-origin: 0 0;
  border-bottom: 4px solid #0ab9ed;
}
.header__area-menubar-center-menu ul li .sub-menu li {
  display: block;
  padding: 0 0px;
  margin: 0;
}
.header__area-menubar-center-menu ul li .sub-menu li::after {
  display: none;
}
.header__area-menubar-center-menu ul li .sub-menu li > a {
  border-bottom: 1px solid var(--border-color-2);
  color: var(--text-heading-color);
  padding: 13px 15px;
  transition: all 0.4s ease-out 0s;
  font-size: 15px;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
}
.header__area-menubar-center-menu ul li .sub-menu li > a::after {
  position: absolute;
  content: "";
  background: #0ab9ed;
  width: 0;
  transition: all 0.4s ease-out 0s;
  height: 1px;
  left: 0;
  bottom: -1px;
}
.header__area-menubar-center-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
}
.header__area-menubar-center-menu ul li .sub-menu li:hover > a {
  color: #0ab9ed;
}
.header__area-menubar-center-menu ul li .sub-menu li:hover > a::after {
  width: 100%;
}
.header__area-menubar-center-menu ul li .sub-menu li:last-child > a {
  border: none;
}
.header__area-menubar-center-menu ul li .sub-menu li:last-child > a::after {
  display: none;
}
.header__area-menubar-center-menu ul li .sub-menu .menu-item-has-children > a::before {
  content: "\f105";
  right: 0;
  color: #686868;
}
.header__area-menubar-center-menu ul li ul .sub-menu li .sub-menu {
  color: #686868;
  cursor: pointer;
}
.header__area-menubar-center-menu ul li a {
  color: #686868;
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  transition: all 0.4s ease-out 0s;
  text-transform: capitalize;
  text-decoration: none;
}
.header__area-menubar-center-menu ul li.menu-item-has-children > a {
  position: relative;
}
.header__area-menubar-center-menu ul li.menu-item-has-children > a::before {
  content: "\f107";
  content: "\f107";
  position: absolute;
  top: 50%;
  transform: translateY(-48%);
  right: -20px;
  font: normal normal normal 20px/1 FontAwesome;
  font-weight: 400;
  color: #686868;
  transition: all 0.3s ease;
  font-weight: 700;
}
.header__area-menubar-center-menu ul li.menu-item-has-children:hover > a::before {
  color: #0ab9ed;
}
.header__area-menubar-center-menu ul li:first-child {
  margin-left: 0;
}
.header__area-menubar-center-menu ul li:last-child {
  margin-right: 0;
}
.header__area-menubar-center-menu ul li.active::after {
  width: 100%;
  bottom: -39px;
}
.header__area-menubar-center-menu.two {
  margin-left: -110px;
}
.header__area-menubar-center-menu.two ul li::after {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu.two ul li .sub-menu {
  border-bottom: 4px solid var(--primary-color-2);
}
.header__area-menubar-center-menu.two ul li .sub-menu li a::after {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu.two ul li .sub-menu li:hover > a {
  color: var(--primary-color-2);
}
.header__area-menubar-center-menu.two ul li:hover > a {
  color: var(--primary-color-2);
}
.header__area-menubar-center-menu.two ul li.menu-item-has-children:hover > a::before {
  color: var(--primary-color-2);
}
.header__area-menubar-center-menu.two.header__area-menubar-center-menu ul li.home > a::after {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu.three {
  margin-left: -27px;
}
.header__area-menubar-center-menu.three ul li::after {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li .sub-menu {
  border-bottom: 4px solid var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li .sub-menu li a::after {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li .sub-menu li:hover > a {
  color: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li:hover > a {
  color: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li.menu-item-has-children:hover > a::before {
  color: var(--primary-color-3);
}
.header__area-menubar-center-menu.three.header__area-menubar-center-menu ul li.home > a::after {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu.four ul li::after {
  background: var(--primary-color-4);
}
.header__area-menubar-center-menu.four ul li .sub-menu {
  border-bottom: 4px solid var(--primary-color-4);
}
.header__area-menubar-center-menu.four ul li .sub-menu li a::after {
  background: var(--primary-color-4);
}
.header__area-menubar-center-menu.four ul li .sub-menu li:hover > a {
  color: var(--primary-color-4);
}
.header__area-menubar-center-menu.four ul li:hover > a {
  color: var(--primary-color-4);
}
.header__area-menubar-center-menu.four ul li.menu-item-has-children:hover > a::before {
  color: var(--primary-color-4);
}
.header__area-menubar-center-menu.four.header__area-menubar-center-menu ul li.home > a::after {
  background: var(--primary-color-4);
}

.sticky .header__area-menubar-center-menu ul li::after {
  bottom: -20px;
}

.header__area-menubar-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__area-menubar-right.three {
  gap: 30px;
  justify-content: end;
  padding-right: 24px;
}
.header__area-menubar-right.three .header__area-menubar-right-sidebar {
  padding: 0;
  border: 0;
}

.header__area-menubar-right-search-icon i {
  cursor: pointer;
  position: relative;
  z-index: 9;
  display: block;
  color: var(--text-heading-color);
  font-size: 20px;
  font-weight: 400;
}

.header__area-menubar-right-search-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: var(--bg-heading-color);
  z-index: 9999;
  transition: all 0.5s ease-out;
  overflow: hidden;
}
.header__area-menubar-right-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 55%;
  transition: all 0.5s ease-out;
}
.header__area-menubar-right-search-box input {
  background: var(--bg-white);
  color: var(--text-heading-color);
  border: 0;
}
.header__area-menubar-right-search-box button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  font-size: 22px;
  color: #0ab9ed;
  padding: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.header__area-menubar-right-search-box.active {
  height: 100%;
  top: 0;
}
.header__area-menubar-right-search-box.active.header__area-menubar-right-search-box form {
  transform: translate(-50%, -50%) scale(1);
}

.header__area-menubar-right-search-box-icon {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transform: rotate(0deg);
}
.header__area-menubar-right-search-box-icon:hover {
  animation: rotate 0.4s ease 0s;
}
.header__area-menubar-right-search-box-icon i {
  cursor: pointer;
  position: relative;
  z-index: 9;
}
.header__area-menubar-right-search-box-icon i::before {
  display: block;
}

.header__area-menubar-right-search.two .header__area-menubar-right-search-box button {
  color: var(--primary-color-2);
}
.header__area-menubar-right-search.three .header__area-menubar-right-search-box button {
  color: var(--primary-color-3);
}
.header__area-menubar-right-search.four .header__area-menubar-right-search-box button {
  color: var(--primary-color-4);
}

.header__area-menubar-right-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__area-menubar-right-contact.three {
  padding: 0;
  padding-left: 30px;
  border-left: 1px solid var(--border-color-1);
}
.header__area-menubar-right-contact.three .header__area-menubar-right-contact-icon i {
  color: var(--primary-color-3);
}
.header__area-menubar-right-contact.three .header__area-menubar-right-contact-icon i::after {
  background: var(--primary-color-3);
}
.header__area-menubar-right-contact.three .header__area-menubar-right-contact-info h6 a:hover {
  color: var(--primary-color-3);
}

.header__area-menubar-right-contact-icon i {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--primary-color-4);
  font-size: 25px;
  animation: icon-animation 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__area-menubar-right-contact-icon i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  border-radius: 50%;
  height: 50px;
  background: var(--primary-color-4);
  z-index: -1;
  opacity: 0.1;
}

.header__area-menubar-right-contact-info span {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  display: block;
}
.header__area-menubar-right-contact-info h6 a {
  transition: 0.4s;
}
.header__area-menubar-right-contact-info h6 a:hover {
  color: var(--primary-color-4);
}

.header__area-menubar-right-btn .btn-two {
  padding: 15px 42px;
}
.header__area-menubar-right-btn.four .btn-one {
  background: var(--primary-color-4);
}

.header__area-menubar-right-sidebar-popup {
  position: fixed;
  width: 460px;
  height: 100%;
  right: 0;
  overflow: auto;
  transform: translateX(100%);
  top: 0;
  background: var(--bg-heading-color);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: transform 0.5s ease 0.4s;
  padding: 60px 40px;
  scrollbar-width: none;
}
.header__area-menubar-right-sidebar-popup::-webkit-scrollbar {
  display: none;
}
.header__area-menubar-right-sidebar-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  right: 0;
}
.header__area-menubar-right-sidebar-popup .sidebar-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  transform: rotate(0);
}
.header__area-menubar-right-sidebar-popup .sidebar-close-btn i {
  background: #0ab9ed;
  width: 40px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}
.header__area-menubar-right-sidebar-popup .sidebar-close-btn:hover {
  animation: rotate 0.4s ease 0s;
}
.header__area-menubar-right-sidebar-popup p {
  color: var(--color-2);
}
.header__area-menubar-right-sidebar-popup.two.header__area-menubar-right-sidebar-popup .sidebar-close-btn i {
  background: var(--primary-color-2);
}
.header__area-menubar-right-sidebar-popup.two .header__area-menubar-right-sidebar-popup-contact-item-icon i {
  color: var(--primary-color-2);
}
.header__area-menubar-right-sidebar-popup.two .header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
  color: var(--primary-color-2);
}
.header__area-menubar-right-sidebar-popup.two .header__area-menubar-right-sidebar-popup-social ul li a i:hover {
  background: var(--primary-color-2);
}
.header__area-menubar-right-sidebar-popup.three.header__area-menubar-right-sidebar-popup .sidebar-close-btn i {
  background: var(--primary-color-3);
}
.header__area-menubar-right-sidebar-popup.three .header__area-menubar-right-sidebar-popup-contact-item-icon i {
  color: var(--primary-color-3);
}
.header__area-menubar-right-sidebar-popup.three .header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
  color: var(--primary-color-3);
}
.header__area-menubar-right-sidebar-popup.three .header__area-menubar-right-sidebar-popup-social ul li a i:hover {
  background: var(--primary-color-3);
}
.header__area-menubar-right-sidebar-popup.four.header__area-menubar-right-sidebar-popup .sidebar-close-btn i {
  background: var(--primary-color-4);
}
.header__area-menubar-right-sidebar-popup.four .header__area-menubar-right-sidebar-popup-contact-item-icon i {
  color: var(--primary-color-4);
}
.header__area-menubar-right-sidebar-popup.four .header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
  color: var(--primary-color-4);
}
.header__area-menubar-right-sidebar-popup.four .header__area-menubar-right-sidebar-popup-social ul li a i:hover {
  background: var(--primary-color-4);
}

.header__area-menubar-right-sidebar-popup-icon i::before {
  font-size: 25px;
  color: var(--text-heading-color);
  line-height: 2;
  cursor: pointer;
}

.header__area-menubar-right-sidebar-popup-logo {
  margin-bottom: 30px;
}
.header__area-menubar-right-sidebar-popup-logo a {
  display: inline-block;
}
.header__area-menubar-right-sidebar-popup-logo a img {
  max-width: 160px;
}

.header__area-menubar-right-sidebar-popup-contact {
  margin: 0px 0;
  padding: 40px 0;
  border-top: 1px solid var(--color-10);
  border-bottom: 1px solid var(--color-10);
}
.header__area-menubar-right-sidebar-popup-contact h4 {
  color: #fff;
}

.header__area-menubar-right-sidebar-popup-contact-item {
  display: flex;
  margin-bottom: 25px;
  gap: 25px;
}
.header__area-menubar-right-sidebar-popup-contact-item:last-child {
  margin: 0;
}

.header__area-menubar-right-sidebar-popup-contact-item-icon {
  margin-top: 8px;
  width: 40px;
}
.header__area-menubar-right-sidebar-popup-contact-item-icon i {
  color: #0ab9ed;
  font-size: 30px;
}

.header__area-menubar-right-sidebar-popup-contact-item-content span {
  color: var(--color-2);
  display: inline-block;
  margin-bottom: 4px;
}
.header__area-menubar-right-sidebar-popup-contact-item-content h6 {
  max-width: 240px;
}
.header__area-menubar-right-sidebar-popup-contact-item-content h6 a {
  transition: all 0.4s ease-out;
  color: #fff;
  text-decoration: none;
  line-height: 25px;
}
.header__area-menubar-right-sidebar-popup-contact-item-content h6 a:hover {
  color: #0ab9ed;
}

.header__area-menubar-right-sidebar-popup-social ul {
  padding: 0;
  margin: 0;
}
.header__area-menubar-right-sidebar-popup-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  width: 30px;
}
.header__area-menubar-right-sidebar-popup-social ul li:last-child {
  margin: 0;
}
.header__area-menubar-right-sidebar-popup-social ul li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  transition: all 0.4s ease-out;
  background: var(--color-10);
}
.header__area-menubar-right-sidebar-popup-social ul li a i:hover {
  background: #0ab9ed;
}

.header__area-menubar-right-responsive-menu i {
  font-size: 25px;
  color: var(--text-heading-color);
  cursor: pointer;
  height: 25px;
  display: block;
}

/*==========================================================================
* Menu Bar Sticky CSS
==========================================================================*/
.header__sticky-sticky-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  background: var(--bg-white);
  box-shadow: var(--box-shadow-1);
  animation: header_sticky 1.1s;
  display: block;
}

@keyframes header_sticky {
  0% {
    top: -250px;
  }
  100% {
    top: 0;
  }
}
.header__sticky.header__sticky-sticky-menu .header__area {
  background: var(--bg-heading-color);
}

.top__header.header__sticky.three.header__sticky-sticky-menu {
  background: transparent;
}

.top__header.header__sticky.three.header__sticky-sticky-menu .custom__container {
  max-width: 100%;
  padding: 0;
}

/*==========================================================================
* Menu Sidebar CSS
==========================================================================*/
.sidebar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  transition: all 0.8s ease-out;
  visibility: hidden;
  z-index: 99999;
  background: rgba(24, 24, 24, 0.4);
}
.sidebar-overlay.show {
  visibility: visible;
  width: 100%;
}

/*==========================================================================
* Responsive Main Menu Css
==========================================================================*/
.responsive-menu {
  width: 100%;
  opacity: 0;
  transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  transform: translateY(20px);
  margin-top: 50px;
  position: relative;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav {
  background: var(--bg-heading-color);
  margin: 0;
}
.mean-container .mean-nav ul li a {
  transition: 0.4s;
}
.mean-container .mean-nav ul li a.mean-expand {
  background: var(--color-10);
  border-color: var(--color-18) !important;
  font-size: 0px !important;
  padding: 0 !important;
  width: 63px;
  height: 62px;
}
.mean-container .mean-nav ul li a.mean-expand::before {
  content: "\f067";
  font: normal normal normal 20px/1 FontAwesome;
  font-weight: 300;
  position: absolute;
  color: #fff;
  left: 50%;
  font-size: 18px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "\f068";
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #0ab9ed;
  color: #fff;
  color: #fff;
}
.mean-container .mean-nav ul li a:hover {
  color: #0ab9ed;
  background: none;
}
.mean-container .mean-nav ul li li li a {
  width: 100%;
  padding-left: 40px !important;
}
.mean-container .mean-nav .sub-menu li a {
  font-size: 20px;
  padding: 6px 0 6px 20px;
  color: var(--color-2);
}
.mean-container .mean-nav .sub-menu li a.mean-expand {
  background: var(--color-10);
  color: #fff;
  height: 48px;
}
.mean-container .mean-nav .sub-menu li a.mean-expand:hover {
  background: #0ab9ed;
}
.mean-container .mean-nav > ul {
  display: block !important;
}
.mean-container .mean-bar {
  padding: 0;
  border-bottom: 1px solid var(--color-18);
  overflow: hidden;
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li li a {
  color: #fff;
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  text-transform: capitalize;
  border-top: 1px solid var(--color-10);
  opacity: 1;
  padding: 13px 0;
  width: 100%;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li li a:hover {
  color: #0ab9ed;
}

.header__area-menubar.two .menu-item-has-children ul li a:hover,
.header__area-menubar.two .menu-item-has-children > a:hover,
.header__area-menubar.two .menu-item-has-children ul li li a:hover {
  color: var(--primary-color-2);
}

.header__area-menubar.three .menu-item-has-children ul li a:hover,
.header__area-menubar.three .menu-item-has-children > a:hover,
.header__area-menubar.three .menu-item-has-children ul li li a:hover {
  color: var(--primary-color-3);
}

/*==========================================================================
* Responsive Menu Sidebar CSS
==========================================================================*/
.menu__bar {
  display: none;
  padding-left: 30px;
  border-left: 1px solid var(--border-color-1);
}

.menu__bar-popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: grid;
  grid-template-columns: 3fr 2fr;
  transition: 0.5s;
}
.menu__bar-popup.show {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.menu__bar-popup.show .responsive-menu {
  transition: transform 0.7s ease 0.4s, opacity 0.5s ease 0.4s;
  transform: translateY(0);
  opacity: 1;
}
.menu__bar-popup.show .menu__bar-popup-left-social {
  background: var(--bg-heading-color);
}
.menu__bar-popup.show .menu__bar-popup-right-contact {
  transition: transform 2s ease 0.4s, opacity 2s ease 0.4s;
  transform: translateX(0);
  opacity: 1;
}
.menu__bar-popup.two .menu__bar-popup-close i {
  background: var(--primary-color-2);
}
.menu__bar-popup.two .menu__bar-popup-left-social ul li a:hover {
  color: var(--primary-color-2);
}
.menu__bar-popup.two .menu__bar-popup-right-contact-item-info h6:hover {
  color: var(--primary-color-2);
}
.menu__bar-popup.two .menu__bar-popup-right-search form input:focus {
  border-color: var(--primary-color-2);
}
.menu__bar-popup.two .mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--primary-color-2);
}
.menu__bar-popup.two .mean-container .mean-nav ul li a:hover {
  color: var(--primary-color-2);
}
.menu__bar-popup.three .menu__bar-popup-close i {
  background: var(--primary-color-3);
}
.menu__bar-popup.three .menu__bar-popup-left-social ul li a:hover {
  color: var(--primary-color-3);
}
.menu__bar-popup.three .menu__bar-popup-right-contact-item-info h6:hover {
  color: var(--primary-color-3);
}
.menu__bar-popup.three .menu__bar-popup-right-search form input:focus {
  border-color: var(--primary-color-3);
}
.menu__bar-popup.three .mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--primary-color-3);
}
.menu__bar-popup.three .mean-container .mean-nav ul li a:hover {
  color: var(--primary-color-3);
}
.menu__bar-popup.four .menu__bar-popup-close i {
  background: var(--primary-color-4);
}
.menu__bar-popup.four .menu__bar-popup-left-social ul li a:hover {
  color: var(--primary-color-4);
}
.menu__bar-popup.four .menu__bar-popup-right-contact-item-info h6:hover {
  color: var(--primary-color-4);
}
.menu__bar-popup.four .menu__bar-popup-right-search form input:focus {
  border-color: var(--primary-color-4);
}
.menu__bar-popup.four .mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--primary-color-4);
}
.menu__bar-popup.four .mean-container .mean-nav ul li a:hover {
  color: var(--primary-color-4);
}

.menu__bar-popup.show::before,
.menu__bar-popup.show::after {
  height: 100%;
}

.menu__bar-popup-close {
  position: absolute;
  top: 40px;
  right: 40px;
  transform: rotate(0);
  z-index: 99;
}
.menu__bar-popup-close:hover {
  animation: rotate 0.4s ease 0s;
}
.menu__bar-popup-close i {
  background: #0ab9ed;
  width: 40px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}

.menu__bar-popup-left {
  position: relative;
  padding: 40px 0 0 40px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-heading-color);
}

.menu__bar-popup-left-logo > a img {
  max-width: 160px;
}

.menu__bar-popup-left-social {
  padding: 40px 0;
  position: sticky;
  bottom: 0;
  width: 100%;
  transition: 1s;
}
.menu__bar-popup-left-social h6 {
  color: #fff;
  border-bottom: 1px solid var(--color-10);
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.menu__bar-popup-left-social ul {
  padding: 0;
  margin: 0;
}
.menu__bar-popup-left-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.menu__bar-popup-left-social ul li a {
  color: var(--color-2);
  transition: 0.4s;
}
.menu__bar-popup-left-social ul li a:hover {
  color: #0ab9ed;
}
.menu__bar-popup-left-social ul li a img {
  height: 30px;
}

.menu__bar-popup-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px;
  border-left: 1px solid var(--color-10);
  background: var(--color-9);
}

.menu__bar-popup-right-search form {
  position: relative;
}
.menu__bar-popup-right-search form input {
  background: transparent;
  border-radius: 30px;
  height: 50px;
  border: 1px solid rgba(255, 255, 225, 0.5);
  font-size: 16px;
  font-weight: 700;
  padding: 0px 15px;
  width: 100%;
}
.menu__bar-popup-right-search form input:focus {
  color: var(--color-2);
}
.menu__bar-popup-right-search form button {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  padding: 0;
  color: var(--color-2);
  width: 60px;
  height: 100%;
  text-align: center;
  border: none;
}

.menu__bar-popup-right-contact {
  opacity: 0;
  transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  transform: translateX(20px);
}
.menu__bar-popup-right-contact h4 {
  color: #fff;
  border-bottom: 1px solid var(--color-10);
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.menu__bar-popup-right-contact-item {
  margin-bottom: 10px;
}
.menu__bar-popup-right-contact-item:last-child {
  margin: 0;
}

.menu__bar-popup-right-contact-item-info span {
  color: var(--color-2);
  font-weight: 500;
  font-size: 15px;
}
.menu__bar-popup-right-contact-item-info h6 {
  color: #fff;
  transition: 0.4s;
  text-decoration: none;
  color: #fff;
  color: #0ab9ed !important;
}
.menu__bar-popup-right-contact-item-info h6:hover {
  color: #0ab9ed;
}

@media (max-width: 1550px) {
  .header__area-menubar-center-menu.two {
    margin-left: 0;
  }
  .header__area-menubar-center-menu ul li:nth-child(n+4) .sub-menu li .sub-menu {
    right: 100%;
    left: initial;
  }
}
/*@media (max-width: 1450px) {
  .header__area-menubar-right-btn {
    display: none;
  }
}*/
@media (max-width: 1399px) {
  .header__area-menubar-center-menu ul li {
    margin: 0 20px;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .header__area-menubar-right-btn {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header__area-menubar-left-logo.three {
    width: 220px;
  }
  .header__area-menubar-center-menu.three {
    margin-left: 0;
  }
  .header__area-menubar-right-contact,
  .header__area-menubar-right-contact.three {
    display: none;
  }
}
@media (max-width: 1050px) {
  .header__area {
    padding: 14px 20px;
  }
  .header__area-menubar-right-sidebar {
    display: none;
  }
  .menu__bar {
    display: block;
  }
}
@media (max-width: 667px) {
  .menu__bar-popup {
    grid-template-columns: initial;
  }
  .menu__bar-popup::before {
    display: none;
  }
  .menu__bar-popup-left {
    padding: 30px 20px 0 20px;
  }
  .menu__bar-popup-right {
    display: none;
  }
}
@media (max-width: 614px) {
  .header__area {
    padding: 0px 0;
  }
  .header__area-menubar-right-search-box form {
    width: 90%;
  }
  .header__area-menubar-right {
    gap: 20px;
  }
}
@media (max-width: 460px) {
  .mean-container .mean-nav ul li a,
  .mean-container .mean-nav ul li li a {
    font-size: 20px;
    line-height: 30px;
    padding: 12px 0;
  }
  .mean-container .mean-nav ul li a.mean-expand {
    width: 54px;
    height: 54px;
  }
  .mean-container .mean-nav .sub-menu li a {
    font-size: 14px;
    padding: 10px 15px;
  }
  .mean-container .mean-nav .sub-menu li a.mean-expand {
    height: 42px;
  }
  .menu__bar-popup-left-social {
    padding: 30px 0;
  }
  .menu__bar-popup-left-social h6 {
    font-size: 24px;
    line-height: 34px;
  }
  .menu__bar {
    padding-left: 0;
    border: 0;
  }
  .menu__bar-popup-close {
    top: 30px;
    right: 20px;
  }
  .header__area.two {
    padding: 8px 0px;
  }
  .header__area-menubar-left-logo.three {
    width: 180px;
    padding: 25px 0 15px 12px;
  }
  .header__area-menubar-left-logo.three a img {
    max-width: 160px;
  }
  .header__area-menubar-right.three {
    padding-right: 12px;
  }
}
/*==========================================================================
* Menu Demo CSS
==========================================================================*/
.header__area-menubar-center-menu ul li.home {
  position: static;
}
.header__area-menubar-center-menu ul li.home::after {
  display: none;
}
.header__area-menubar-center-menu ul li.home > a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  transition: width 0.5s cubic-bezier(0.35, 0.7, 0.35, 1);
  bottom: -38px;
  transform: skew(-35deg);
  height: 4px;
  background: #0ab9ed;
  z-index: 1;
}
.header__area-menubar-center-menu ul li.home:hover a::after {
  width: 130%;
}
.header__area-menubar-center-menu ul li.menus {
  display: none;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area {
  border-top: 1px solid var(--border-color-1);
  left: 0;
  right: 0;
  top: 100px;
  width: 100%;
  padding: 40px 50px 30px 50px;
  margin: 0 auto;
  z-index: 9;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li {
  padding: 0;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-thumb::after {
  opacity: 0.5;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-thumb ul {
  opacity: 1;
  bottom: 93px;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content {
  border-color: rgba(141, 141, 141, 0.0745098039);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content::after {
  height: 0;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content .two {
  opacity: 1;
  bottom: 25px;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content .two a {
  padding: 10px 20px;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(2) .home-area-box-item-thumb ul li a:hover {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(2) .home-area-box-item-content .two a {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(3) .home-area-box-item-thumb ul li a:hover {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(3) .home-area-box-item-content .two a {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(4) .home-area-box-item-thumb ul li a:hover {
  background: var(--primary-color-4);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(4) .home-area-box-item-content .two a {
  background: var(--primary-color-4);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(6) .home-area-box-item-thumb ul li a:hover {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(6) .home-area-box-item-content .two a {
  background: var(--primary-color-2);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(7) .home-area-box-item-thumb ul li a:hover {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(7) .home-area-box-item-content .two a {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(8) .home-area-box-item-thumb ul li a:hover {
  background: var(--primary-color-4);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:nth-child(8) .home-area-box-item-content .two a {
  background: var(--primary-color-4);
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color-1);
  border-bottom: 0;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-heading-color);
  opacity: 0;
  transition: 0.4s;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb img {
  width: 100%;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: absolute;
  z-index: 10;
  bottom: 110px;
  width: 100%;
  transition: 0.4s;
  opacity: 0;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb ul li a {
  background: #fff;
  color: var(--bg-heading-color);
  padding: 3px 20px;
  border-radius: 15px;
  border: 0;
  transition: 0.4s;
  font-size: 14px;
  line-height: 24px;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb ul li a::after {
  display: none;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb ul li a:hover {
  color: #fff;
  background: #0ab9ed;
  opacity: 1;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px 0 15px;
  z-index: 1;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color-1);
  transition: 0.3s;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  transition: 0.4s;
  z-index: -1;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content .one {
  transition: 0.4s;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content .one a {
  background: transparent;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content .two {
  opacity: 0;
  transition: 0.33s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  bottom: 0;
}
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content .two a {
  display: inline-block;
  transition: 0.4s;
  background: #0ab9ed;
  color: #fff;
  border-radius: 5px;
}

.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content::before,
.header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content .one {
  opacity: 0;
}

@media (max-width: 1499px) {
  .header__area-menubar-center-menu ul li .sub-menu.home-area {
    padding: 30px;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box {
    gap: 25px;
  }
}
@media (max-width: 1399px) {
  .header__area-menubar-center-menu ul li .sub-menu.home-area {
    padding: 30px 15px;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li {
    padding: 0;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box {
    gap: 15px;
    grid-row-gap: 30px;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-thumb ul {
    bottom: 85px;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content {
    padding: 15px 0 0 0;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item-content .two a {
    font-size: 13px;
  }
  .header__area-menubar-center-menu ul li .sub-menu.home-area li .home-area-box-item:hover .home-area-box-item-content .two a {
    padding: 6px 9px;
  }
}
@media (max-width: 1050px) {
  li.menu-item-has-children.home {
    display: none;
  }
  li.menu-item-has-children.menus {
    display: block;
  }
}
.slider-wrapper {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .slider-wrapper {
    top: 72px;
  }
}

.slider {
  width: 100%;
  height: 800px;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  background: linear-gradient(45deg, #f7f7f7, #f7f7f7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  color: #1f2937;
}
.slide-content h4 {
  color: #4f4f4f;
  font-size: 20px;
  text-transform: uppercase;
}

.slide-title {
  font-size: 50px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  line-height: 80px;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .slide-title {
    font-size: 30px;
    line-height: 50px;
  }
}

.slide-title span {
  color: #0ab9ed;
}

.slide-description {
  font-size: 16px;
  color: #808080;
  transform: translateY(20px);
  transition: all 0.5s ease 0.2s;
  line-height: 30px;
}

.slide.active .slide-title,
.slide.active .slide-description {
  opacity: 1;
  transform: translateY(0);
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #3b82f6;
  transform: scale(1.2);
}

.nav-button {
  background: transparent;
  border: none;
  color: #4b5563;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: bold;
}
.nav-button:hover {
  background: #f3f4f6;
  color: #1f2937;
}

/******Mission******/
.mission-box {
    background-color: #d8e7ef;
    border-radius: 10px;
    padding: 10px;
    padding: 3rem;
}
@media (max-width: 767px) {
    .mission-box {
        padding: 2rem !important;
    }

}
.mission-box {
  position: relative;
}
.mission-box h4 {
  font-size: 29px;
  color: #000000;
  font-weight: 600;
  line-height: 41px;
}
.mission-box p {
  color: #808080;
  font-size: 16px;
  min-height: 80px;
}
.mission-box::after {
  content: "";
  position: absolute;
  background-image: url(../images/after.png);
  height: 70px;
  width: 70px;
  right: -9px;
  bottom: -9px;
  background-repeat: no-repeat;
}

.blue-con {
  background-color: #1f2b38;
  border-radius: 10px;
  position: relative;
}
    .blue-con .vision-box {
        padding-top: 80px !important;
        padding-bottom: 16px !important;
        padding: 3rem ;
    }
@media (max-width: 767px) {
    .blue-con .vision-box {
        padding: 2rem !important;
    }
}
    .blue-con .vision-box h4 {
        font-size: 29px;
        color: #fff;
        font-weight: 600;
        line-height: 41px;
    }

    .blue-con .vision-box p {
        color: #808080;
        font-size: 15px;
        color: #fff;
        opacity: 0.8;
        letter-spacing: 0.5px;
        min-height: 80px;
    }

    .blue-con::after {
        content: "";
        position: absolute;
        background-image: url(../images/after1.png);
        height: 70px;
        width: 70px;
        left: 0px;
        top: 0px;
        background-repeat: no-repeat;
    }

    @media (max-width: 767px) {
        .blue-con::after {
            content: none;
        }
    }

    /*****About Us*****/
    .vision-sec {
        margin-top: -160px;
    }

    @media (max-width: 767px) {
        .vision-sec {
            margin-top: -20px;
        }
    }

    section {
        padding: 80px 0px;
    }

    .abouts-img-box {
        position: relative;
    }

        .abouts-img-box p {
            color: #000000;
            letter-spacing: 0.5px;
            font-weight: 500;
            position: absolute;
            rotate: -90deg;
            left: -100px;
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            text-align: center;
        }

        .abouts-img-box img {
            left: 40px;
        }

        .abouts-img-box .about-icon {
            position: absolute;
            right: 0;
            top: 100px;
        }

    .about-con h4 {
        font-size: 20px;
        color: #0ab9ed;
        letter-spacing: 2px;
    }

    .about-con h2 {
        font-size: 35px;
        color: #000000;
        font-weight: 600;
    }

    .about-con p {
        color: #808080;
        font-size: 14px;
        line-height: 26px;
    }

    .about-con .about-point .about-point-box h5 {
        width: 50%;
    }

        .about-con .about-point .about-point-box h5 span {
            color: #0ab9ed;
        }

    .about-con .about-point .about-point-box h5 {
        color: #000000;
        font-size: 16px;
    }

    .offer-sec {
        background-image: url(../images/services_bg.png);
        background-repeat: no-repeat;
        background-image: center;
        background-size: cover;
        position: relative;
        z-index: 0;
    }

    .small-title h2 {
        font-size: 35px;
        color: #000000;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        .small-title h2 {
            font-size: 25px;
        }
    }

    @media (max-width: 767px) {
        .small-title img {
            height: 25px;
        }
    }

    .offer-box {
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 10px;
    }

        .offer-box .sub-offer-box {
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 30px 20px;
            position: relative;
            z-index: 99999;
        }

            .offer-box .sub-offer-box h3 {
                font-size: 22px;
                color: #000;
                font-weight: 600;
            }

            .offer-box .sub-offer-box p {
                color: #808080;
                font-size: 14px;
                line-height: 26px;
                margin-bottom: 0px;
                min-height: 104px;
            }

    .right-container {
        position: relative;
    }

    #icon-chat {
        font-size: 30px;
    }

    .right-container .right-container-button {
        width: 50px;
        height: 50px;
        border: none;
        border: 2px solid rgba(8, 183, 234, 0.4);
        background-color: transparent;
        transition: all 300ms;
        border-radius: 50px;
        cursor: pointer;
        padding: 10px;
        color: white;
        font-family: roboto, sans-serif;
    }

        .right-container .right-container-button span {
            color: white;
            position: absolute;
            left: 19px;
            top: 13px;
            line-height: 28px;
            bottom: 0;
            text-align: center;
        }

        .right-container .right-container-button:hover {
            transition: all 400ms cubic-bezier(0.62, 0.1, 0.5, 1);
            width: 155px;
        }

        .right-container .right-container-button .long-text {
            transition: opacity 1000ms;
            opacity: 0;
            color: white;
            white-space: nowrap;
            font-size: 0;
            width: 0;
            margin: 0;
        }

        .right-container .right-container-button:hover .long-text {
            transition: opacity 1000ms;
            opacity: 1;
            color: #0ab9ed;
            white-space: nowrap;
            font-size: 14px;
            width: auto;
            margin: 0;
            left: 50px;
            font-size: 16px;
        }

    .short-text i {
        color: #0ab9ed;
    }

    .right-container .right-container-button .long-text.show-long-text {
        transition: opacity 700ms, width 1ms linear 270ms, font-size 1ms linear 270ms;
        opacity: 1;
        margin-left: 45px;
        font-size: 20px;
        width: auto;
    }

    .box {
        background: transparent;
        color: white;
        position: relative;
        align-items: center;
        justify-content: center;
    }

        .box::after {
            border-right: 2px solid #0ab9ed;
            border-left: 2px solid #0ab9ed;
            transform: scale(1, 0);
        }

        .box::before {
            border-top: 2px solid #0ab9ed;
            border-bottom: 2px solid #0ab9ed;
            transform: scale(0, 1);
        }

        .box:hover::after,
        .box:hover::before {
            transform: scale(1, 1);
        }

        .box::after,
        .box::before {
            content: "";
            position: absolute;
            top: 20px;
            right: 20px;
            bottom: 20px;
            left: 20px;
            transition: all 0.5s;
        }

    /***** Expert Solutions *****/
    .expert-solutions {
        background-color: #1f2b38;
        position: relative;
    }

        .expert-solutions::after {
            content: "";
            position: absolute;
            background-image: url(../images/choose-background.png);
            background-repeat: no-repeat;
            height: 500px;
            width: 500px;
            bottom: 0;
        }

    @media (max-width: 767px) {
        .expert-solutions::after {
            content: none;
        }
    }

    .expert-solutions .accordion {
        position: relative;
        left: 40px;
        z-index: 9999;
    }

        .expert-solutions .accordion::before {
            content: "";
            height: 100%;
            width: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            position: absolute;
            border-radius: 10px;
            left: -40px;
        }

    @media (max-width: 767px) {
        .expert-solutions .accordion::before {
            content: none;
        }
    }

    @media (max-width: 767px) {
        .expert-solutions .accordion {
            left: 0px;
        }
    }

    .expert-solutions .sec-title h2 {
        font-size: 45px;
        color: #fff;
    }

    @media (max-width: 767px) {
        .expert-solutions .sec-title h2 {
            font-size: 25px;
        }
    }

    .expert-solutions .accordion-item {
        background-color: transparent;
        border: none;
    }

    .expert-solutions .accordion-button {
        background-color: transparent;
    }

        .expert-solutions .accordion-button:not(.collapsed) {
            background-color: transparent;
        }

        .expert-solutions .accordion-button:not(.collapsed) {
            color: #0ab9ed;
            font-size: 18px;
            padding: 15px 0px;
            border: none;
            box-shadow: none;
            transition: all ease 0.5s 0s;
        }

    @media (max-width: 767px) {
        .expert-solutions .accordion-button:not(.collapsed) {
            font-size: 14px;
        }
    }

    .expert-solutions .accordion-button:not(.collapsed)::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 50px;
        background-color: #0ab9ed;
        left: -40px;
        border-radius: 10px;
        transition: all ease 0.5s 0s;
    }

    @media (max-width: 767px) {
        .expert-solutions .accordion-button:not(.collapsed)::before {
            content: none;
        }
    }

    .expert-solutions .accordion-body {
        padding: 15px 0px;
        font-size: 14px;
        line-height: 27px;
        color: rgba(255, 255, 255, 0.5);
    }

    .expert-solutions .accordion-button {
        background-color: transparent;
        padding: 20px 0px;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
    }

    @media (max-width: 767px) {
        .expert-solutions .accordion-button {
            font-size: 14px;
        }
    }

    .expert-solutions .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

    .expert-solutions .accordion-button:not(.collapsed)::after {
        background-image: url(../images/arrow-acc.svg) !important;
        transform: rotate(0deg);
    }

    .expert-solutions .choose-img {
        position: relative;
        text-align: right;
    }

        .expert-solutions .choose-img .map-img {
            position: absolute;
            top: 70px;
            left: 30px;
        }

    /* ------------------------------------------------ */
    /* ------- HOME PAGE SERVICES CSS START ------- */
    /* ------------------------------------------------ */
    .expert_wrapper .expert-svg {
        max-width: calc(100% - 80px);
        width: 100%;
        margin: auto;
        display: block;
    }

    @media (max-width: 767px) {
        .expert_wrapper .expert-svg {
            display: none;
        }
    }

    .expert_wrapper .expert-svg .path {
        stroke: rgb(14, 53, 114);
        stroke-dasharray: 6;
        stroke-dashoffset: 6;
    }

        .expert_wrapper .expert-svg .path.active {
            stroke: #0ab9ed;
            stroke-dasharray: 6;
            stroke-dashoffset: 6;
            -webkit-animation: line 1s linear forwards infinite;
            animation: line 1s linear forwards infinite;
        }

    @-webkit-keyframes line {
        from {
            stroke-dashoffset: 13;
        }

        to {
            stroke-dashoffset: 1;
        }
    }

    @keyframes line {
        from {
            stroke-dashoffset: 13;
        }

        to {
            stroke-dashoffset: 1;
        }
    }

    .expert_wrapper .expert-svg .path.active:nth-child(4) {
        -webkit-animation: lines 1s linear forwards infinite;
        animation: lines 1s linear forwards infinite;
    }

    @-webkit-keyframes lines {
        from {
            stroke-dashoffset: 1;
        }

        to {
            stroke-dashoffset: 13;
        }
    }

    @keyframes lines {
        from {
            stroke-dashoffset: 1;
        }

        to {
            stroke-dashoffset: 13;
        }
    }

    .expert_wrapper .nav-pills .nav-item .nav-link {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 23px;
        text-align: center;
        color: #000;
        padding: 0 0 10px 0;
        border: 0;
        background-color: transparent !important;
    }

    @media screen and (max-width: 1599px) {
        .expert_wrapper .nav-pills .nav-item .nav-link {
            font-size: 16px;
            line-height: 22px;
        }
    }

    @media (max-width: 767px) {
        .expert_wrapper .nav-pills .nav-item .nav-link {
            width: 50px;
            height: 50px;
            padding: 0;
            background-image: repeating-linear-gradient(1deg, #000, #000 18px, transparent 18px, transparent 19px, #000 19px), repeating-linear-gradient(91deg, #000, #000 18px, transparent 18px, transparent 19px, #000 19px), repeating-linear-gradient(181deg, #000, #000 18px, transparent 18px, transparent 19px, #000 19px), repeating-linear-gradient(271deg, #000, #000 18px, transparent 18px, transparent 19px, #000 19px);
            background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
            background-position: 0 0, 0 0, 100% 0, 0 100%;
            background-repeat: no-repeat;
        }
    }

    .expert_wrapper .nav-pills .nav-item .nav-link.active {
        color: #000;
        opacity: 1;
        background-color: transparent;
        border-radius: 0;
    }

    @media (max-width: 767px) {
        .expert_wrapper .nav-pills .nav-item .nav-link.active {
            border-bottom: 0;
        }

            .expert_wrapper .nav-pills .nav-item .nav-link.active.active {
                background-image: repeating-linear-gradient(1deg, #3eafd1, #3eafd1 18px, transparent 18px, transparent 19px, #3eafd1 19px), repeating-linear-gradient(91deg, #3eafd1, #3eafd1 18px, transparent 18px, transparent 19px, #3eafd1 19px), repeating-linear-gradient(181deg, #3eafd1, #3eafd1 18px, transparent 18px, transparent 19px, #3eafd1 19px), repeating-linear-gradient(271deg, #3eafd1, #3eafd1 18px, transparent 18px, transparent 19px, #3eafd1 19px);
                background-size: 1px calc(100% + 19px), calc(100% + 19px) 1px, 1px calc(100% + 19px), calc(100% + 19px) 1px;
                background-position: 0 0, 0 0, 100% 0, 0 100%;
                background-repeat: no-repeat;
                -webkit-animation: borderAnimation 1s infinite linear;
                animation: borderAnimation 1s infinite linear;
            }

        @-webkit-keyframes borderAnimation {
            from {
                background-position: 0 0, -19px 0, 100% -19px, 0 100%;
            }

            to {
                background-position: 0 -19px, 0 0, 100% 0, -19px 100%;
            }
        }

        @keyframes borderAnimation {
            from {
                background-position: 0 0, -19px 0, 100% -19px, 0 100%;
            }

            to {
                background-position: 0 -19px, 0 0, 100% 0, -19px 100%;
            }
        }
    }

    .expert_wrapper .nav-pills .nav-item .nav-link .icon {
        display: none;
    }

    @media (max-width: 767px) {
        .expert_wrapper .nav-pills .nav-item .nav-link .icon {
            display: block;
            max-width: 30px;
            text-align: center;
            width: 100%;
            height: 100%;
            margin: 0 auto;
        }
    }

    @media (max-width: 767px) {
        .expert_wrapper .nav-pills .nav-item .nav-link span {
            display: none;
        }

        .expert_wrapper .nav-pills .nav-item .nav-link img {
            display: block;
            width: 30px;
            margin: 0 auto;
        }
    }

    @media (max-width: 767px) {
        .expert_wrapper .nav-pills .nav-item .nav-link {
            font-size: 12px;
            line-height: 16px;
        }
    }

    @media (max-width: 990px) {
        .expert_wrapper .nav-pills {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: -ms-autohiding-scrollbar;
            transition: all 0.2s;
        }
    }

    @media (max-width: 767px) {
        .expert_wrapper .nav-pills {
            flex-wrap: wrap;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: -ms-autohiding-scrollbar;
            transition: all 0.2s;
            flex-direction: column;
            flex: 0 0 auto;
            overflow-x: unset;
            height: 100%;
            gap: 15px;
            position: -webkit-sticky;
            position: sticky;
            top: 20px;
        }
    }

    .expert_wrapper .tab-content {
        margin-top: 80px;
    }

        .expert_wrapper .tab-content .tab-pane .content h3 {
            font-style: normal;
            font-weight: 600;
            font-size: 35px;
            line-height: 45px;
            color: #000000;
            margin-bottom: 30px;
        }

            .expert_wrapper .tab-content .tab-pane .content h3 br {
                display: none;
            }

        .expert_wrapper .tab-content .tab-pane .content p {
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 26px;
            margin-bottom: 20px;
            color: #808080;
        }

            .expert_wrapper .tab-content .tab-pane .content p a {
                font-family: "Helvetica-Neue-Medium";
                font-style: normal;
                font-weight: 400;
                font-size: 20px;
                line-height: 35px;
                color: #3eafd1;
                transition: color 0.5s ease;
            }

                .expert_wrapper .tab-content .tab-pane .content p a:hover {
                    color: #ed1c24;
                }

        .expert_wrapper .tab-content .tab-pane .svg-box {
            text-align: center;
        }

            .expert_wrapper .tab-content .tab-pane .svg-box svg {
                max-width: 300px;
                width: 100%;
                margin: 0 auto;
                display: block;
            }

    @media (max-width: 767px) {
        .expert_wrapper .tab-content .tab-pane .svg-box svg {
            max-width: 180px;
        }
    }

    .expert_wrapper .tab-content .tab-pane .svg-box img {
        width: 100%;
        margin: 0 auto;
    }

    @media (max-width: 767px) {
        .expert_wrapper .tab-content .tab-pane .svg-box img {
            max-width: 180px;
        }
    }

    @media (max-width: 767px) {
        .expert_wrapper .tab-content {
            margin-top: 0;
            padding-left: 25px;
        }
    }

    .slider-service {
        text-align: center;
        display: flex;
        justify-content: flex-start;
        margin-top: 40px;
    }

        .slider-service .tech_icons {
            margin-right: 100px;
        }

            .slider-service .tech_icons:last-child {
                margin-right: 0;
            }

            .slider-service .tech_icons span {
                width: 52px;
                height: 52px;
                margin: 0 auto 15px;
                font-size: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }

            .slider-service .tech_icons h5 {
                cursor: pointer;
                font-family: "Helvetica-Neue-Medium";
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
                line-height: 24px;
                letter-spacing: 0.09em;
                color: #000;
                text-transform: capitalize;
                text-align: center;
            }

        .slider-service .swiper {
            width: 100%;
            background: transparent;
        }

    @media screen and (max-width: 1599px) {
        .slider-service .tech_icons h5 {
            font-size: 16px;
        }
    }

    @media screen and (max-width: 1599px) {
        .expert_wrapper {
            padding: 0;
        }

            .expert_wrapper .tab-content {
                margin-top: 50px;
            }

                .expert_wrapper .tab-content .tab-pane .content h3 {
                    font-size: 32px;
                    line-height: 44px;
                    margin-bottom: 20px;
                }

                .expert_wrapper .tab-content .tab-pane .content p {
                    font-size: 18px;
                    line-height: 36px;
                }

            .expert_wrapper .tech_wrapper {
                margin-top: 30px;
            }

                .expert_wrapper .tech_wrapper .tech_icons {
                    margin-right: 40px;
                }

                    .expert_wrapper .tech_wrapper .tech_icons:last-child {
                        margin-right: 0;
                    }

                    .expert_wrapper .tech_wrapper .tech_icons span {
                        width: 40px;
                        height: 40px;
                        margin: 0 auto 8px;
                    }

                    .expert_wrapper .tech_wrapper .tech_icons h5 {
                        font-size: 16px;
                        line-height: 22px;
                        letter-spacing: 0.09em;
                    }
    }

    @media screen and (max-width: 1280px) {
        .expert_wrapper .nav-pills .nav-item .nav-link {
            font-size: 16px;
            line-height: 22px;
            padding: 0 0 8px 0;
        }
    }

    @media screen and (max-width: 991px) {
        .expert_wrapper .tab-content {
            margin-top: 30px;
        }

            .expert_wrapper .tab-content .tab-pane .content h3 {
                font-size: 22px;
                line-height: 34px;
                margin-bottom: 15px;
            }

            .expert_wrapper .tab-content .tab-pane .content p {
                font-size: 14px;
                line-height: 22px;
                margin-bottom: 15px;
            }

                .expert_wrapper .tab-content .tab-pane .content p:last-child {
                    margin-bottom: 0;
                }

            .expert_wrapper .tab-content .svg-box {
                max-width: 240px;
                margin-left: auto;
            }

        .expert_wrapper .tech_wrapper {
            flex-wrap: wrap;
        }

            .expert_wrapper .tech_wrapper .tech_icons {
                margin-right: 20px;
            }

                .expert_wrapper .tech_wrapper .tech_icons:last-child {
                    margin-right: 0;
                }

                .expert_wrapper .tech_wrapper .tech_icons span {
                    width: 35px;
                    height: 35px;
                    margin: 0 auto 8px;
                }

                    .expert_wrapper .tech_wrapper .tech_icons span img {
                        width: 35px;
                        object-fit: contain;
                        height: 35px;
                    }

                .expert_wrapper .tech_wrapper .tech_icons h5 {
                    font-size: 14px;
                    line-height: 20px;
                    letter-spacing: normal;
                }
    }

    @media screen and (max-width: 767px) {
        .expert_wrapper {
            padding: 40px 0;
        }

            .expert_wrapper .nav-pills .nav-item .nav-link {
                font-size: 16px;
                line-height: 22px;
                padding: 0 0 0px 0;
            }

            .expert_wrapper .title {
                margin-bottom: 30px;
            }

            .expert_wrapper .tab-content {
                margin-top: 0;
                width: calc(100% - 50px);
            }

                .expert_wrapper .tab-content .tab-pane .content h3 {
                    font-size: 20px;
                    line-height: 28px;
                    margin-bottom: 10px;
                }

                .expert_wrapper .tab-content .svg-box {
                    max-width: 240px;
                    margin: 20px 0 0;
                }

            .expert_wrapper .tech_wrapper {
                margin-top: 0;
            }

                .expert_wrapper .tech_wrapper .tech_icons {
                    margin-top: 20px;
                }

                    .expert_wrapper .tech_wrapper .tech_icons:last-child {
                        margin-right: 0;
                    }
    }

    @media screen and (max-width: 575px) {
        .expert_content {
            width: 100%;
            text-align: center;
        }

        .Infotech_wrapper .btn_wrapper {
            margin: 10px auto 0;
        }
    }

    .expert_wrapper .nav-link {
        display: grid;
    }

        .expert_wrapper .nav-link img {
            text-align: center;
            margin: auto;
        }

        .expert_wrapper .nav-link span {
            margin-top: 10px;
        }

    .choose-about {
        background-color: #f9fdfd;
    }

    /***** Expert Solutions *****/
    .number-sec {
        background-image: url(../images/numberbackground.png);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

        .number-sec::after {
            content: "";
            position: absolute;
            background-color: rgba(31, 43, 56, 0.9);
            height: 100%;
            width: 100%;
            top: 0;
        }

        .number-sec .numbers-box {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            position: relative;
            z-index: 99;
        }

            .number-sec .numbers-box .number_icon h4 {
                color: #fff;
                font-size: 30px;
            }

            .number-sec .numbers-box .number_icon p {
                color: rgba(255, 255, 255, 0.7);
                margin-bottom: 0px;
            }

    @media (max-width: 767px) {
        .blog-main {
            margin-bottom: 20px;
        }
    }

    .blog-main .blog-img {
        position: relative;
    }

        .blog-main .blog-img img {
            width: 100%;
            border-radius: 20px;
        }

        .blog-main .blog-img::after {
            content: "";
            position: absolute;
            background-image: url(../images/blog-bg.svg);
            background-repeat: no-repeat;
            height: 70px;
            width: 100%;
            left: 0;
            bottom: -5px;
        }

        .blog-main .blog-img .blog-date {
            position: absolute;
            bottom: 3px;
            z-index: 99;
            text-align: center;
            width: 50%;
            color: #0ab9ed;
            text-transform: uppercase;
        }

    .blog-main h3 {
        color: #000000;
        font-size: 20px;
        font-weight: 600;
        line-height: 38px;
        min-height: 76px;
    }

    .blog-main .blog-more {
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.6);
    }

    /*********27-01-2025*******/
    section {
        padding: 80px 0px;
    }

    @media (max-width: 767px) {
        section {
            padding: 50px 0px;
        }
    }

    .abouts-img-box {
        position: relative;
    }

        .abouts-img-box p {
            color: #000000;
            letter-spacing: 0.5px;
            font-weight: 500;
            position: absolute;
            rotate: -90deg;
            left: -100px;
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            text-align: center;
        }

        .abouts-img-box img {
            left: 40px;
        }

        .abouts-img-box .about-icon {
            position: absolute;
            right: 0;
            top: 100px;
        }

    .about-con h4 {
        font-size: 20px;
        color: #0ab9ed;
        letter-spacing: 2px;
    }

    .about-con h2 {
        font-size: 35px;
        color: #000000;
        font-weight: 600;
    }

    .about-con p {
        color: #808080;
        font-size: 14px;
        line-height: 26px;
    }

    @media (max-width: 767px) {
        .about-con .about-point .about-point-box {
            flex-wrap: wrap;
            gap: 0px !important;
        }
    }

    .about-con .about-point .about-point-box h5 {
        width: 50%;
    }

    @media (max-width: 767px) {
        .about-con .about-point .about-point-box h5 {
            width: 100%;
        }
    }

    .about-con .about-point .about-point-box h5 span {
        color: #0ab9ed;
    }

    .about-con .about-point .about-point-box h5 {
        color: #000000;
        font-size: 16px;
    }

    .leadered-img {
        border-radius: 10px;
        transition: 0.3s;
        overflow: hidden;
    }

        .leadered-img:hover img {
            scale: 1.1;
        }

    .main-bg-container .business-icn {
        transition: 1s;
    }

    .main-bg-container:hover .business-icn {
        transform: rotateY(180deg);
    }

    .business-img {
        overflow: hidden;
        transition: 0.3s;
        border-radius: 10px;
    }

        .business-img img {
            border-radius: 10px;
        }

        .business-img:hover img {
            scale: 1.2;
        }

    /*==========================================================================
* About Us Page CSS
==========================================================================*/
    .inner-slider {
        margin-top: 90px;
        padding: 70px 0px;
        background-color: #f9fdfd;
    }

        .inner-slider .inner-slide-title {
            font-size: 55px;
            color: #000000;
            font-weight: 700;
            transform: translateY(20px);
            transition: all 0.5s ease;
            text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
            margin: 0px !important;
        }

            .inner-slider .inner-slide-title span {
                color: #0ab9ed;
            }

        .inner-slider .breadcrumbs {
            margin-top: 10px;
            font-size: 16px;
            font-weight: 600;
        }

            .inner-slider .breadcrumbs .main-page {
                color: #828282;
            }

            .inner-slider .breadcrumbs i {
                padding: 0px 15px;
            }

            .inner-slider .breadcrumbs .current-page {
                color: #1d1d1d;
            }

    @media (max-width: 767px) {
        .inner-slider .inner-slide-title {
            font-size: 40px !important;
        }
    }

    section .sec-title {
        padding: 6px 25px;
        padding-left: 40px;
        border-radius: 5px;
    }

        section .sec-title p {
            font-size: 16px;
            font-weight: 500;
            color: #0ab9ed;
            text-transform: uppercase;
        }

        section .sec-title span {
            height: 6px;
            width: 6px;
            border-radius: 50px;
            background-color: #0ab9ed;
            margin-right: 8px;
            position: relative;
        }

            section .sec-title span::after {
                content: "";
                position: absolute;
                height: 3px;
                width: 3px;
                border-radius: 50px;
                background-color: #0ab9ed;
                top: 50%;
                left: -20px;
                transform: translateY(-50%);
                opacity: 0.3;
            }

            section .sec-title span::before {
                content: "";
                position: absolute;
                height: 5px;
                width: 5px;
                border-radius: 50px;
                background-color: #0ab9ed;
                top: 50%;
                left: -10px;
                transform: translateY(-50%);
                opacity: 0.6;
            }

    section .h5-title {
        font-size: 35px;
        font-weight: 600;
        margin-top: 16px;
        color: #000;
    }

    .leaderd-section {
        background: url(../images/bg-shape.svg);
        background-repeat: no-repeat;
        background-position: 70%;
    }

        .leaderd-section .india-lbl img {
            height: 60px;
            width: 60px;
            border-radius: 50px;
        }

        .leaderd-section .india-text {
            font-size: #808080;
            color: #7a7a7a;
        }

            .leaderd-section .india-text p {
                padding: 0px 0px;
                margin: 0px !important;
            }

        .leaderd-section .sub-txt {
            color: #4a4a4a;
            margin-top: 12px;
        }

        .leaderd-section .info-details .infos p {
            margin: 0px !important;
            font-size: 16px;
            font-weight: 600;
            color: #000;
        }

        .leaderd-section .info-details .infos span {
            color: #4a4a4a;
            font-size: 14px !important;
            font-weight: 400;
        }

        .leaderd-section .blue-shape {
            width: 100%;
            position: absolute;
            top: 80%;
            left: 0;
        }

            .leaderd-section .blue-shape img {
                animation: updown1 5s linear infinite;
            }

    @keyframes updown1 {
        0% {
            transform: translateY(0%);
        }

        50% {
            transform: translateY(-10%);
        }

        100% {
            transform: translateY(0%);
        }
    }

    @media (max-width: 767px) {
        .leaderd-section .blue-shape {
            width: 70% !important;
        }
    }

    .our-business {
        background-color: #f9fdfd;
    }

        .our-business .main-bg-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
            padding: 40px 50px;
        }

        .our-business .sub-title {
            font-size: 24px;
            color: #000000;
            font-weight: 600;
        }

        .our-business .paragraph-text {
            font-size: 16px;
            color: #666666;
            line-height: 30px;
            margin-bottom: 0px;
        }

        .our-business .business-details div {
            margin-top: 15px;
        }

            .our-business .business-details div span {
                height: 12px;
                width: 12px;
                border: 1px solid #d9d9d9;
                display: inline-block;
                border-radius: 50px;
            }

            .our-business .business-details div p {
                padding: 0px !important;
                margin: 0px !important;
                color: #666666;
                font-size: 16px;
            }

    .evalution .evalution-details h5 {
        font-size: 24px;
        font-weight: 600;
        color: #000000;
    }

    .evalution .evalution-details p {
        font-size: 14px;
        color: #666666;
    }

    .evalution .evalution-details span.circle {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-50%);
        height: 16px;
        width: 16px;
        border: 2px solid #f0f3f9;
        background-color: #fff;
        border-radius: 50px;
    }

    .evalution .evalution-details .border-left {
        border-left: 2px solid #f0f3f9;
    }

    .evalution .evalution-details .border-bottom-5 {
        border-bottom: 5px solid #f0f3f9 !important;
    }

    .evalution .evalution-details .border-bottom {
        border-bottom: 2px solid #f0f3f9 !important;
    }

    .evalution .evalution-details .year {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        height: 100px;
        width: 100px;
        background-color: #fff;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }

        .evalution .evalution-details .year p {
            margin: 0px !important;
            font-size: 24px;
            font-weight: 500;
            color: #282f3b;
        }

        .evalution .evalution-details .year:hover {
            background-color: #0ab9ed;
            scale: 1.02;
            transform-origin: center center;
        }

            .evalution .evalution-details .year:hover p {
                color: #fff;
            }

    .evalution .evalution-details .h-100px {
        height: 100px !important;
    }

    .evalution .evalution-details .year.bg-primary {
        background-color: #0ab9ed !important;
    }

        .evalution .evalution-details .year.bg-primary p {
            color: #fff !important;
        }

    .evalution .evalution-details .client-img {
        height: 50px;
        width: 50px;
        position: absolute;
        bottom: 0;
        transform: translateY(50%);
        left: 50%;
        z-index: 3;
    }

        .evalution .evalution-details .client-img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

    .evalution .evalution-details span.circle-b {
        position: absolute;
        bottom: 0;
        left: 38%;
        transform: translateY(50%);
        height: 16px;
        width: 16px;
        border: 2px solid #f0f3f9;
        background-color: #fff;
        border-radius: 50px;
        z-index: 3;
    }

    .evalution .evalution-details .bottom-details {
        position: relative;
    }

        .evalution .evalution-details .bottom-details::after {
            content: "";
            position: absolute;
            width: 60%;
            background-color: #fff;
            transform: translateY(50%);
            height: 4px;
            bottom: 0px;
            left: 40%;
            z-index: 0;
        }

    @media (max-width: 768px) {
        .evalution .evalution-details .border-bottom-5 {
            border-bottom: 0px !important;
        }

        .evalution .evalution-details .evalution-box {
            padding-left: 60px !important;
        }

        .evalution .evalution-details .evalution-text {
            padding-right: 20px !important;
            padding-top: 50px !important;
            padding-bottom: 30px !important;
            padding-left: 40px !important;
        }

        .evalution .evalution-details .h-100px {
            height: auto !important;
            padding-top: 0px !important;
            padding-bottom: 0px !important;
        }

        .evalution .evalution-details .year {
            height: 80px;
            width: 80px;
            z-index: 2;
        }

            .evalution .evalution-details .year p {
                font-size: 20px !important;
            }

        .evalution .evalution-details .client-img img {
            height: 45px;
            width: 45px;
        }
    }

    .dedicated-team .team-detail {
        position: relative;
    }

        .dedicated-team .team-detail .team-img {
            height: 350px;
            transition: 0.3s;
            overflow: hidden;
            border-radius: 10px;
        }

            .dedicated-team .team-detail .team-img img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                border-radius: 10px;
            }

            .dedicated-team .team-detail .team-img:hover img {
                scale: 1.1;
            }

        .dedicated-team .team-detail .add span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            background-color: #0ab9ed;
            height: 48px;
            width: 48px;
            border-radius: 50px;
            border: 5px solid #fff;
            bottom: 0;
            right: 0;
            transform: translate(-50%, 50%);
            transition: 0.3s;
            cursor: pointer;
        }

            .dedicated-team .team-detail .add span:hover {
                background-color: #1d1d1d;
            }

                .dedicated-team .team-detail .add span:hover svg {
                    scale: 1.2;
                    transform-origin: center center;
                }

    .dedicated-team .leader-details .team-leader-name {
        font-size: 24px;
        color: #000000;
        font-weight: 600;
    }

    .dedicated-team .leader-details .designation {
        font-size: 16px;
        font-weight: 500;
        color: #666666;
    }

    /*==========================================================================
* Services CSS
==========================================================================*/
    .sub-text {
        width: 60%;
        color: #626262;
        font-size: 16px;
        margin: auto;
    }
@media (max-width: 767px) {
    .sub-text {
        width: 90%;
    }
}
    .business-subtxt {
        width: 80%;
        color: #7a7a7a;
    }

    .web-text {
        width: 100%;
    }

    .h5-title span {
        color: #0ab9ed;
    }

    @media (max-width: 767px) {
        section .sec-title {
            padding-left: 20px !important;
            padding-right: 12px !important;
        }
    }

    @media (max-width: 767px) and (max-width: 767px) {
        section .sec-title {
            padding-left: 0px !important;
        }
    }

    @media (max-width: 767px) and (max-width: 767px) {
        section .sec-title img {
            height: 25px;
        }
    }

    @media (max-width: 767px) {
        section .sec-title .dots {
            height: 5px !important;
            width: 5px !important;
        }

            section .sec-title .dots::after {
                display: none !important;
            }

            section .sec-title .dots::before {
                height: 4px !important;
                width: 4px !important;
                left: -8px !important;
            }

        section .sec-title p {
            font-size: 12px !important;
        }

        section .h5-title {
            font-size: 30px;
        }

        .inner-slider .inner-slide-title {
            line-height: 52px !important;
        }

        .app-graphics {
            gap: 0px !important;
        }
    }

    .app-dev .title-underline {
        position: absolute;
        top: 100%;
        left: 0;
        width: 8%;
        height: 5px;
        border-radius: 50px;
        background-color: #0ab9ed;
        transform: translateY(10px);
    }

        .app-dev .title-underline::after {
            content: "";
            position: absolute;
            width: 18%;
            background-color: #7d7f7f;
            height: 5px;
            top: 0;
            left: 100%;
            border-radius: 50px;
            margin-left: 8px;
        }

        .app-dev .title-underline::before {
            content: "";
            position: absolute;
            width: 10%;
            background-color: #7d7f7f;
            height: 5px;
            top: 0;
            left: 100%;
            border-radius: 50px;
            margin-left: 25px;
        }

    .app-dev .benefits-points {
        font-size: 18px;
        color: #000000;
    }

    @media (max-width: 767px) {
        .business-subtxt {
            font-size: 15px !important;
        }

        .benefits-points svg {
            height: 28px !important;
            width: 28px !important;
        }

        .benefits-points p {
            font-size: 15px !important;
        }
    }

    section.theme-light {
        background-color: #f9fdfd;
    }

    .app-dev-flow .process-icn {
        height: 80px;
        width: 80px;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

        .app-dev-flow .process-icn:hover img {
            transform: rotateY(180deg);
        }

    .app-dev-flow .gy-6 {
        row-gap: 90px;
    }

    .app-dev-flow .app-process-card {
        position: relative;
    }

        .app-dev-flow .app-process-card:nth-child(1):after, .app-dev-flow .app-process-card:nth-child(2):after {
            content: "";
            position: absolute;
            top: 34px;
            left: 65%;
            background-image: url(../images/right-arrow.svg);
            height: 15%;
            width: 70%;
            background-repeat: no-repeat;
            background-size: contain;
        }

        .app-dev-flow .app-process-card:nth-child(3):after {
            content: "";
            position: absolute;
            top: 100%;
            height: 15%;
            left: 50%;
            width: 18px;
            background-repeat: no-repeat;
            background-image: url(../images/down-arrow-flow.svg);
            transform: translateX(-50%);
        }

        .app-dev-flow .app-process-card:nth-child(4):after, .app-dev-flow .app-process-card:nth-child(5):after {
            content: "";
            position: absolute;
            top: 34px;
            left: 65%;
            background-image: url(../images/left-arrow-flow.svg);
            height: 100%;
            width: 70%;
            background-repeat: no-repeat;
            background-size: contain;
        }

    @media (max-width: 1024px) {
        .app-process-card {
            width: 50% !important;
        }

            .app-process-card:nth-child(2):after {
                content: "";
                position: absolute;
                top: 100% !important;
                height: 100% !important;
                left: 50% !important;
                width: 16px !important;
                background-repeat: no-repeat;
                background-image: url(../images/down-arrow-flow.svg) !important;
                transform: translateX(-50%) !important;
            }

            .app-process-card:nth-child(3):after {
                content: "";
                position: absolute;
                top: 34px !important;
                left: 0 !important;
                background-image: url(../images/left-arrow-flow.svg) !important;
                height: 100% !important;
                width: 70% !important;
                background-repeat: no-repeat;
                background-size: contain;
            }

            .app-process-card:nth-child(3) {
                order: 1;
            }

            .app-process-card:nth-child(6):after {
                content: "";
                position: absolute;
                top: 100% !important;
                height: 100% !important;
                left: 50% !important;
                width: 16px;
                background-repeat: no-repeat;
                background-image: url(../images/down-arrow-flow.svg) !important;
                transform: translateX(-50%) !important;
            }

            .app-process-card:nth-child(6) {
                order: 0;
            }

            .app-process-card:nth-child(5) {
                order: 2;
            }

                .app-process-card:nth-child(5):after {
                    background-image: url(../images/right-arrow.svg) !important;
                }

            .app-process-card:nth-child(4) {
                order: 3;
            }

                .app-process-card:nth-child(4):after {
                    content: "";
                    display: none !important;
                }
    }

    @media (max-width: 767px) {
        .app-process-card {
            width: 100% !important;
        }

            .app-process-card:nth-child(1):after, .app-process-card:nth-child(2):after, .app-process-card:nth-child(3):after, .app-process-card:nth-child(4):after, .app-process-card:nth-child(5):after {
                content: "";
                position: absolute;
                top: 100% !important;
                height: 100% !important;
                left: 50% !important;
                width: 16px !important;
                background-repeat: no-repeat;
                background-image: url(../images/down-arrow-flow.svg) !important;
                transform: translateX(-50%) !important;
            }

            .app-process-card:nth-child(3) {
                order: 0;
            }
    }

    .text-grey {
        color: #666666;
    }

    .h5-style {
        font-size: 24px;
        font-weight: 600;
        color: #000000;
    }

    .sub-text-style {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 15px;
    }

    /*==========================================================================
* Protfolio CSS
==========================================================================*/
    .latest-project .nav-tabs .nav-link:focus,
    .latest-project .nav-tabs .nav-link:hover {
        border: 0px !important;
    }

    .latest-project .nav-link {
        border: 0px !important;
    }

    .latest-project .nav-tabs {
        border-bottom: 0px !important;
    }

        .latest-project .nav-tabs .nav-link {
            color: #676767;
            font-size: 18px;
            padding: 12px 20px !important;
            position: relative;
        }

            .latest-project .nav-tabs .nav-link::after {
                content: "";
                position: absolute;
                top: -10px;
                left: 50%;
                width: 50%;
                height: 2px;
                background-color: #0ab9ed;
                transform: translateX(-50%);
                opacity: 0;
                transition: 0.3s;
            }

            .latest-project .nav-tabs .nav-link::before {
                content: "";
                position: absolute;
                bottom: -10px;
                left: 50%;
                width: 50%;
                height: 2px;
                background-color: #0ab9ed;
                transform: translateX(-50%);
                opacity: 0;
                transition: 0.3s;
            }

            .latest-project .nav-tabs .nav-link.active {
                color: #0ab9ed;
            }

                .latest-project .nav-tabs .nav-link.active:after {
                    opacity: 1;
                    top: 0;
                }

                .latest-project .nav-tabs .nav-link.active:before {
                    opacity: 1;
                    bottom: 0;
                }

            .latest-project .nav-tabs .nav-link:hover {
                color: #0ab9ed;
            }

    .latest-project .main-bg-white {
        background-color: #fff;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        padding: 15px 15px 30px 15px;
    }

        .latest-project .main-bg-white .workout-img {
            height: 300px;
            transition: 0.3s;
            border-radius: 10px;
            overflow: hidden;
        }

            .latest-project .main-bg-white .workout-img img {
                border-radius: 10px;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }

            .latest-project .main-bg-white .workout-img:hover img {
                scale: 1.1;
            }

    .testimonial .bg-white {
        background-color: #fff;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        padding: 30px;
        transition: 0.3s;
    }

        .testimonial .bg-white .review-img {
            height: 50px;
            width: 50px !important;
            border-radius: 50px;
        }

            .testimonial .bg-white .review-img img {
                object-fit: cover;
                border-radius: 50px;
            }

        .testimonial .bg-white .review-name {
            font-size: 18px;
            font-weight: 600;
            color: #000000;
        }

        .testimonial .bg-white .review-txt {
            font-size: 13px;
            line-height: 22px;
        }

        .testimonial .bg-white .likes-num {
            font-size: 18px;
            color: #000000;
            font-weight: 500;
        }

        .testimonial .bg-white .fit-content {
            width: fit-content !important;
        }

        .testimonial .bg-white .like-cnt svg {
            cursor: pointer;
            color: rgba(0, 0, 0, 0.1333333333);
            transition: 0.3s;
        }

            .testimonial .bg-white .like-cnt svg:hover {
                fill-color: #0ab9ed !important;
                color: #0ab9ed !important;
                transform: scale(1.1) rotate(-8deg);
            }

        .testimonial .bg-white:hover {
            scale: 1.05;
        }

            .testimonial .bg-white:hover .like-cnt svg {
                fill-color: #0ab9ed !important;
                color: #0ab9ed !important;
                transform: scale(1.1) rotate(-8deg);
            }

    .visual-testimonal .border-video iframe {
        border: 8px solid #e0e0e0 !important;
        border-radius: 10px;
    }

    .vaccanci {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px 24px;
        transition: 0.3s;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
    }

        .vaccanci:hover {
            border-color: #0ab9ed !important;
        }

        .vaccanci:has(.collapse.show) {
            background-color: #E7F8FE;
            border: 1px solid #eee;
            box-shadow: 0px 5px 10px rgba(214, 214, 214, 0.1);
        }

        .vaccanci .main-title {
            font-size: 18px;
            color: #0ab9ed;
            font-weight: 500;
        }

    .discuss .accordion-item {
        background-color: transparent !important;
        border: 0px !important;
    }

    .discuss .accordion-button {
        background-color: transparent !important;
        padding: 0px !important;
        border: 0px !important;
        box-shadow: none !important;
    }

        .discuss .accordion-button:focus {
            box-shadow: none !important;
            padding: 0px !important;
        }

    .discuss .w-80 {
        width: 80% !important;
    }

    .discuss .accordion-button::after {
        top: 0;
        position: relative;
        transform: translateY(-50%) !important;
    }

    .discuss .accordion-body {
        padding: 0px !important;
        border: 0px !important;
        padding-top: 22px !important;
        margin-top: 22px !important;
        border-top: 1px solid rgba(96, 104, 113, 0.2196078431) !important;
    }

        .discuss .accordion-body .sub-text {
            font-size: 14px;
            color: #1f2b38;
        }

    .discuss .accordion-button p {
        color: rgba(31, 43, 56, 0.4666666667);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .accordion-header p {
        color: rgba(31, 43, 56, 0.4666666667);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0px;
    }

        .accordion-header p span {
            font-weight: 700;
            color: #1f2b38;
        }
    /*.form-control:focus {
    border-color: #fe8686 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(253 13 13 / 11%) !important;
}*/
    /*.accordion-toggle.collapsed img{
    rotate: 180deg;
}
    .accordion-toggle img {
        rotate: 0deg;
    }*/
    .accordion-header a {
        cursor: pointer;
    }

    .discuss .accordion-button p span {
        font-weight: 700;
        color: #1f2b38;
    }

    .discuss .required-skill h5 {
        font-size: 14px;
        color: #000000;
        font-weight: 600;
        white-space: nowrap;
    }

    .discuss .required-skill .skills-design span {
        text-transform: uppercase;
        font-size: 11px;
        color: #131315;
        border: 1px solid #ddd;
        border-radius: 50px;
        display: inline-block;
        padding: 5px 10px;
        letter-spacing: 2px;
        font-weight: 500;
    }

    .discuss .required-skill li {
        font-size: 14px;
        color: #1f2b38;
        width: 100%;
    }

    .discuss .accordion-button:not(.collapsed)::after {
        background-image: none;
    }

    .accordion-button::after {
        content: none !important;
    }

    .benefits-box {
        border: 1px solid #e7e8e9;
        border-radius: 10px;
        padding: 40px 30px;
        background: linear-gradient(to right, #fff, #f0fbfe);
        transition: 1s;
    }

        .benefits-box:hover {
            background: linear-gradient(to right, #f0fbfe, #fff);
        }

        .benefits-box h3 {
            font-size: 24px;
            font-weight: 700;
            color: #000;
        }

        .benefits-box .sub-text {
            line-height: 30px;
        }

    .join-team .fs-20 {
        font-size: 20px;
        line-height: 34px;
    }

    .join-team .fs-14.sub-text {
        font-size: 14px !important;
    }

    .join-team .w-80 {
        width: 80%;
    }

    .join-team .join-team-lbl {
        top: 100%;
        background-color: #1f2b38;
        border-radius: 10px;
        padding: 26px 28px;
        transform: translateY(-50%);
        margin-left: 180px;
        animation: updown 5s linear infinite;
    }

        .join-team .join-team-lbl .contact-title {
            font-size: 22px;
            color: #fff;
        }

        .join-team .join-team-lbl .contact-sub-text {
            font-size: 14px;
            color: #fff;
            line-height: 22px;
            font-weight: 500;
            margin-bottom: 5px;
        }

            .join-team .join-team-lbl .contact-sub-text span {
                color: #0ab9ed;
            }

    @keyframes updown {
        0% {
            transform: translateY(-50%);
        }

        50% {
            transform: translateY(-42%);
        }

        100% {
            transform: translateY(-50%);
        }
    }

    @media (max-width: 991px) {
        .required-skill h5 {
            align-self: baseline;
        }
    }

    @media (max-width: 767px) {
        .join-team .sub-text {
            width: 100% !important;
        }

        .join-team .join-team-lbl {
            padding: 20px !important;
            margin-left: 50px !important;
        }

            .join-team .join-team-lbl .contact-title {
                font-size: 16px !important;
            }

            .join-team .join-team-lbl .contact-sub-text {
                font-size: 10px !important;
                line-height: 15px;
            }
    }

    .about-technology {
        margin-top: -160px;
    }

    .visual-testimonal {
        padding-bottom: 80px;
    }

    .testimonial-technology {
        margin-top: -160px;
    }

    .technology {
        padding-bottom: 0px;
        padding-top: 0px;
        position: relative;
        z-index: 2;
    }

        .technology .technology-bg {
            background-color: #f9fdfd;
            box-shadow: 0px -3px 14px rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 40px 50px 50px 50px;
        }

            .technology .technology-bg .techno-icns {
                background-color: #fff;
                border-radius: 10px;
                border: 1px solid #eef2f2;
                padding: 5px 20px;
                height: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .technology .technology-bg .techno-icns:hover {
                    filter: gray;
                    -webkit-filter: grayscale(1);
                    -webkit-transform: scale(1.01);
                    -webkit-transition: all 0.3s ease-in-out;
                    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
                }

                .technology .technology-bg .techno-icns img {
                    height: 50px;
                    filter: gray;
                }

    @media (max-width: 767px) {
        .technology .technology-bg {
            padding: 32px 30px !important;
        }
    }

    .footer-extra {
        margin-top: 0px !important;
        padding-top: 60px !important;
        background-color: #1f2b38;
    }

    .services-footer {
        margin-top: 0px !important;
        padding-top: 60px !important;
        background-color: #1f2b38;
    }

    .footer {
        margin-top: -150px;
        padding-top: 250px;
        background-color: #1f2b38;
    }

        .footer .footer-location-a svg {
            width: 40px;
            height: 24px;
        }

        .footer .footer-location-a a {
            margin-top: 4px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            text-decoration: none;
        }

            .footer .footer-location-a a p {
                color: #E5F0FF;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 22px;
                margin-bottom: 4px;
                text-align: left;
            }

            .footer .footer-location-a a span {
                color: #96A1B0;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 22px;
            }

        .footer .footer-sub,
        .footer .page-link li a {
            color: #a5aaaf !important;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease-in-out;
        }

            .footer .page-link li a:hover {
                color: #0ab9ed !important;
                padding-left: 5px;
                transition: all 0.3s ease-in-out;
            }

        .footer .footer-text {
            font-size: 16px;
            color: #fff;
            font-weight: 500;
            line-height: 24px;
        }

            .footer .footer-text a {
                font-size: 16px;
                color: #fff;
                font-weight: 500;
                line-height: 24px;
            }

        .footer .gy-8 {
            row-gap: 20px;
        }

        .footer ul {
            list-style: none;
            background-color: transparent !important;
            border: none !important;
        }

            .footer ul li {
                background-color: none !important;
            }

                .footer ul li a {
                    background-color: none !important;
                    text-decoration: none;
                    padding: 8px 0px;
                    display: inline-block;
                    font-size: 16px !important;
                }

        .footer .social-details {
            background-color: #273545;
            padding: 30px 40px !important;
            border-radius: 10px;
        }

        .footer .send-message {
            border-radius: 50px;
        }

            .footer .send-message .send-icn {
                height: 38px;
                width: 38px;
                display: inline-flex;
                background-color: #0ab9ed;
                border-radius: 50px;
                align-items: center;
                justify-content: center;
                position: absolute;
                right: 0;
                top: 0;
                transform: translate(-10%, 10%);
            }

                .footer .send-message .send-icn svg {
                    height: 16px;
                    width: 16px;
                }

            .footer .send-message input {
                border-radius: 50px;
                border: none !important;
                outline: none !important;
                padding: 12px 50px 12px 20px;
                font-size: 14px;
                color: #686868;
                width: 100%;
            }

        .footer .footer-copyright {
            border-top: 1px solid #323c48;
        }

            .footer .footer-copyright p span {
                color: #0ab9ed;
            }

        .footer .footer-links {
            margin: 0px !important;
        }

            .footer .footer-links li {
                background-color: none !important;
                padding: 0px 20px;
            }

                .footer .footer-links li a {
                    background-color: none !important;
                    text-decoration: none;
                    display: inline-block;
                    padding: 0px !important;
                    font-size: 16px !important;
                    color: #a5aaaf;
                }

                    .footer .footer-links li a:hover {
                        color: #0ab9ed !important;
                    }

        .footer .footer-address {
            border-top: 1px solid #323c48;
        }

    .footer-bottom {
        background-color: #0ab9ed;
    }

        .footer-bottom ul {
            list-style: none;
            background-color: transparent !important;
            border: none !important;
        }

            .footer-bottom ul li {
                padding: 0px 20px;
            }

                .footer-bottom ul li a {
                    background-color: none !important;
                    text-decoration: none;
                    display: inline-block;
                    padding: 0px !important;
                    font-size: 16px !important;
                    color: #fff;
                }

    .form-check-input {
        background-color: #1f2b38 !important;
        border: none !important;
    }

        .form-check-input:checked {
            background-color: #0ab9ed !important;
        }

    @media (max-width: 767px) {
        .footer {
            margin-top: -200px;
        }

            .footer ul {
                padding: 0;
                margin-bottom: 0px;
            }

            .footer .social-details {
                padding: 20px 20px !important;
            }
    }

    @media (max-width: 525px) {
        .footer .social-details {
            padding: 20px 20px !important;
        }

        .footer-copyright {
            gap: 20px;
            text-align: center;
        }

            .footer-copyright .footer-links {
                justify-content: center;
                width: 100%;
                padding-left: 0px !important;
            }
    }

    .testimonials-sec .owl-stage {
        padding-bottom: 50px;
    }

    .testimonials-sec .testimonial-item {
        background-color: #F2FBFE;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

    @media (max-width: 767px) {
        .testimonials-sec .testimonial-item {
            margin: 10px 10px;
            padding: 20px !important;
        }
    }

    .testimonials-sec .testimonial-item:hover {
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .testimonials-sec .testimonial-item .testimonial-content p {
        font-size: 14px;
        color: #808080;
        min-height: 225px;
    }

    @media (max-width: 767px) {
        .testimonials-sec .testimonial-item .testimonial-content p {
            line-height: 22px !important;
            min-height: 290px;
        }
    }

    .testimonials-sec .testimonial-item .testimonial-content h4 {
        font-size: 18px;
        color: #000000;
    }

    .testimonials-sec .testimonial-item .testimonial-content span {
        color: #0ab9ed;
        font-size: 12px;
    }

    #button {
        display: inline-block;
        background-color: #0ab9ed;
        width: 50px;
        height: 50px;
        text-align: center;
        border-radius: 100px;
        position: fixed;
        bottom: 30px;
        right: 30px;
        transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
    }

    @media (max-width: 767px) {
        #button {
            right: 15px;
        }
    }

    #button::after {
        content: "";
        background-image: url(../images/uplogo.svg);
        background-repeat: no-repeat;
        height: 30px;
        width: 23px;
        position: absolute;
        left: 0;
        right: 0;
        background-size: cover;
        text-align: center;
        margin: auto;
        top: 0;
        bottom: 0;
    }

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }

    .cursor {
        position: fixed;
        pointer-events: none;
        opacity: 0;
        z-index: 9999999;
    }

    .cursor-bee {
        top: -15px;
        left: -13px;
        z-index: 99999;
        opacity: 0.5;
    }

        .cursor-bee img {
            opacity: 0.4;
        }

    .contact-form-row {
        background: #F9FAFA;
        box-shadow: 0 0 50px rgba(162, 182, 212, 0.25);
        backdrop-filter: blur(56px);
        border-radius: 20px;
        padding: 10px 20px 10px 10px;
        margin: 20px 0 0 0;
    }

        .contact-form-row .contact-info {
            padding: 30px;
            background-size: cover;
            border-radius: 15px;
            background: hsl(246, 42%, 91%);
            background: linear-gradient(135deg, hsl(246, 42%, 91%) 0%, hsl(247, 26%, 93%) 25%, hsl(247, 26%, 93%) 50%, hsl(208, 58%, 88%) 75%, hsl(197, 53%, 89%) 100%);
            background: -moz-linear-gradient(135deg, hsl(246, 42%, 91%) 0%, hsl(247, 26%, 93%) 25%, hsl(247, 26%, 93%) 50%, hsl(208, 58%, 88%) 75%, hsl(197, 53%, 89%) 100%);
            background: -webkit-linear-gradient(135deg, hsl(246, 42%, 91%) 0%, hsl(247, 26%, 93%) 25%, hsl(247, 26%, 93%) 50%, hsl(208, 58%, 88%) 75%, hsl(197, 53%, 89%) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E1DFF2",endColorstr="#EAE9F2",GradientType=1);
        }

            .contact-form-row .contact-info .c-info-title {
                font-size: 24px;
                font-weight: 500;
            }

            .contact-form-row .contact-info .title-p {
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 22px;
                color: var(--grey-color);
                margin: 5px 0 0 0;
            }

            .contact-form-row .contact-info ul {
                padding: 0 0 30px 0;
                margin: 0;
                list-style: none;
                border-bottom: 1px solid rgba(25, 39, 52, 0.2);
            }

                .contact-form-row .contact-info ul li {
                    margin: 25px 0 0 0;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 23px;
                    color: var(--black-color);
                }

                    .contact-form-row .contact-info ul li a {
                        color: #0ab9ed;
                        text-decoration: none;
                    }

                    .contact-form-row .contact-info ul li svg {
                        margin-right: 10px;
                    }

                        .contact-form-row .contact-info ul li svg path {
                            fill: #0ab9ed;
                        }

            .contact-form-row .contact-info .check-icon-p {
                margin: 30px 0 0 0;
                font-style: normal;
                font-weight: 500;
                font-size: 16px;
                line-height: 30px;
                color: var(--black-color);
                display: inline-flex;
                align-items: flex-start;
            }

        .contact-form-row .hw-help span {
            font-style: normal;
            font-weight: 600;
            font-size: 20px;
            line-height: 24px;
            text-align: left;
            color: var(--black-color);
        }

        .contact-form-row .hw-help input {
            height: 40px;
            font-size: 14px;
        }

        .contact-form-row .hw-help textarea {
            font-size: 14px;
        }

    .technology-page .techno-icns {
        background-color: #fff;
        border-radius: 10px;
        border: 1px solid #eef2f2;
        padding: 5px 20px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
        transition: all ease 0.5s 0s;
    }

        .technology-page .techno-icns img {
            height: 70px;
            filter: none;
            -webkit-filter: grayscale(0); /* Webkit Nightlies & Chrome Canary */
            -webkit-transition: all 0.3s ease-in-out;
        }

        .technology-page .techno-icns:hover {
            transition: all ease 0.5s 0s;
        }

            .technology-page .techno-icns:hover img {
                filter: gray;
                -webkit-filter: grayscale(1);
                -webkit-transform: scale(1.01);
                -webkit-transition: all 0.3s ease-in-out;
            }

    .js-scroll {
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        overflow: hidden;
        width: 100%;
        will-change: transform;
        background: rgb(238, 174, 202);
        background: linear-gradient(170deg, rgb(148, 187, 233) 0%, rgb(238, 174, 202) 33%, rgb(31, 50, 110) 69%, rgb(0, 0, 0) 95%);
    }

    .text, .typed-cursor {
        font-size: 50px;
        color: #0ab9ed;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 80px;
        transition: all 0.5s ease;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 767px) {
        .text, .typed-cursor {
            font-size: 30px;
            line-height: 50px;
        }
    }

    .offer-sec .app-process-card:nth-child(3):after {
        content: "";
        position: absolute;
        top: 34px;
        left: 100%;
        background-image: url(../images/right-arrow.svg);
        height: 10%;
        width: 70%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .offer-sec .app-process-card:nth-child(4):after {
        content: none;
    }

    .contect-box h3 {
        color: #1f2b38;
    }

        .contect-box h3 span {
            color: #0ab9ed;
        }

    .contect-box .code-bg {
        background-color: #e8e8e8;
        display: block;
        width: 100%;
        padding: 10px;
        margin: 15px 0;
    }

    .blog-form {
        background-color: #f9fdfd;
        padding: 25px;
        border-radius: 10px;
    }

    .contect-box table {
        width: 100%;
    }

        .contect-box table th {
            border-width: 1px !important;
        }

        .contect-box table td {
            border-bottom: 1px !important;
            border-width: 1px !important;
            color: #808080;
            font-size: 14px;
        }