/* Scroll Bar CSS Start */

::selection {
  background: var(--theme-color);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}


/* Scroll Bar CSS End */.headerMenu


/* Swiper Buttons and Paginations Start*/

.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: var(--white);
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.swiper-pagination-bullet-active {
  width: 25px;
}

.swiper-slide-shadow-left {
  display: none;
}

.swiper-slide-shadow-right {
  display: none;
}

.swiper-pagination-bullet-active {
  background: var(--theme-color);
}


/* Swiper Buttons and Paginations End*/


/* Preloader CSS Start */


/* loader */

.preloader {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-delay: 2s;
}

.preloader * {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader .layers {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme-color);
  transition-delay: 1.75s;
}

.preloader .layers span {
  width: 100%;
  height: 33.4%;
  position: absolute;
  left: 0;
  background: var(--black);
}

.preloader .layers span:nth-child(1) {
  top: 0;
  transition-delay: 1s;
}

.preloader .layers span:nth-child(2) {
  top: 33.33333%;
  transition-delay: 1.25s;
}

.preloader .layers span:nth-child(3) {
  top: 66.66666%;
  transition-delay: 1.5s;
}

.preloader .container-fluid {
  position: relative;
  text-align: center;
  color: #fff;
}

.preloader .container-fluid small {
  display: inline-block;
  letter-spacing: 1px;
  transition-delay: 0.6s;
}

.preloader .container-fluid small .char {
  display: inline-block;
  animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: calc(10ms * var(--char-index));
}

.preloader .container-fluid figure {
  margin-bottom: 5px;
  transition-delay: 0.5s;
}

.preloader .container-fluid figure img {
  /* height: 30px; */
  animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
}

.preloader .container-fluid .percentage {
  width: 100%;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  line-height: 1;
  font-size: 40vw;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  opacity: 0.1;
  transition-delay: 0.8s;
}

.preloader .container-fluid .percentage #percentage {
  animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: 0.3s;
}


/* PAGE TRANSITION */

.page-transition {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  visibility: hidden;
}

.page-transition * {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.page-transition .layers {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background: var(--secondary);
}

.page-transition .layers span {
  width: 100%;
  left: -100%;
  background: var(--theme-color);
}

.page-transition .layers span:nth-child(1) {
  height: 33.3333%;
  position: absolute;
  top: 0;
  transition-delay: 0.25s;
}

.page-transition .layers span:nth-child(2) {
  height: 33.3333%;
  position: absolute;
  top: 33.33333%;
  transition-delay: 0.5s;
}

.page-transition .layers span:nth-child(3) {
  height: 33.3333%;
  position: absolute;
  top: 66.66666%;
  transition-delay: 0.75s;
}

.page-transition.active {
  visibility: visible;
}

.page-transition.active .layers {
  left: 0;
}

.page-transition.active .layers span {
  left: 0;
}


/* PAGE LOADED */

.page-loaded {
  overflow: inherit;
  overflow-x: hidden;
}

.page-loaded .preloader {
  left: -100%;
}

.page-loaded .preloader .container-fluid figure {
  transform: translateY(-20px);
  opacity: 0;
}

.page-loaded .preloader .container-fluid small {
  transform: translateY(-10px);
  opacity: 0;
}

.page-loaded .preloader .container-fluid .percentage {
  opacity: 0;
  transform: translateY(-60%);
}

.page-loaded .preloader .layers {
  left: -100%;
}

.page-loaded .preloader .layers span {
  left: -100%;
}

.page-loaded .topbar {
  top: 0;
}

.page-loaded .bottombar {
  bottom: 0;
}

.page-loaded.header-ready .showcase-slider .swiper-wrapper {
  transform: translateX(0);
}

.page-loaded.header-ready .showcase-slider .swiper-slide.swiper-slide-active .slide-image {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition-delay: 0.8s;
}

.page-loaded.header-ready .page-header .video-bg {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

.page-loaded.header-ready .page-header h1 {
  text-indent: inherit;
}

.page-loaded.header-ready .page-header h1 .char {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded.header-ready .page-header p {
  text-indent: inherit;
  opacity: 0.6;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner small .char {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner small:after {
  width: 120px;
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner h1 .char {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-slide.swiper-slide-active .slide-inner .link {
  opacity: 1;
  transform: translateY(0);
}

.page-loaded .showcase-slider .swiper-controls {
  left: 25px;
}

.page-loaded .showcase-slider .swiper-pagination {
  right: 25px;
}


/* loader */


/* Preloader CSS End */


/* Cursor CSS Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  z-index: 10000001;
  background-color: var(--theme-color);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner:before {
  content: "Click Me";
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 1rem;
  top: 8px;
  left: 2px;
  display: flex;
  border-radius: 100%;
  opacity: 0;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.active::before {
  opacity: 1;
  top: 0;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  opacity: 0.3;
}

.cursor-inner.cursor-hover.active {
  margin-left: -40px;
  margin-top: -40px;
  width: 120px;
  height: 120px;
  opacity: 1;
  background-color: #53be8470;
}


/* Cursor CSS End */


/* RoleBack Button CSS Start */

.roleBackBtn .button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: brown;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  left: 1rem;
  bottom: 2rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.roleBackBtn .svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.roleBackBtn .svgIcon path {
  fill: white;
}

.roleBackBtn .button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: var(--theme-color);
  align-items: center;
}

.roleBackBtn .button:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.roleBackBtn .button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}


/* RoleBack Button CSS End*/


/* Scroll Down Button CSS Start*/

.container_mouse {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.container_mouse span {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.mouse-btn {
  margin: 10px auto;
  width: 20px;
  height: 30px;
  border: 2px solid rgb(255 255 255 / 92%);
  border-radius: 20px;
  display: flex;
}

.mouse-scroll {
  display: block;
  width: 8px;
  height: 8px;
  background: linear-gradient(170deg, rgb(255 255 255 / 92%), rgb(255 255 255));
  border-radius: 50%;
  margin: auto;
  animation: scrolling13 1s linear infinite;
}

@keyframes scrolling13 {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }

  100% {
    opacity: 1;
    transform: translateY(12px);
  }
}


/* Scroll Down Button CSS End*/


/* ThemeBtn CSS Start */

.themeBtn {
  font-family: inherit;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
  z-index: 1;
  font-size: 1.125rem;
  border-radius: 5px;
  font-weight: 600;
  color: var(--white);
  background: var(--theme-color);
  padding: 12px 2rem;
  align-items: center;
  gap: 10px;
}

.themeBtn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--primary);
  height: 500px;
  width: 500px;
  border-radius: 50px;
}

.themeBtn:hover {
  color: #fff;
}

.themeBtn:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.themeBtn:hover:before {
  top: -30px;
  left: -30px;
}

.themeBtn:active:before {
  background: var(--primary);
  transition: background 0s;
}


/* ThemeBtn CSS End */


/* Image Reveal Start*/

.reveal {
  visibility: hidden;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.reveal img {
  width: 100%;
}

.reveal .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #292c3fa8;
  z-index: 2;
  backdrop-filter: blur(4px);
}


/* Image Reveal End*/


/* Header CSS Start */


/* TopBar CSS Start */

.hdr-opt {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip .tooltiptext {
  font-size: 12px;
  visibility: hidden;
  width: max-content;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-right: 15px;
  border-radius: 5px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #666;
}

.search-bar button {
  cursor: pointer;
  border-radius: 5px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  background-color: #3498db;
  /* Change to your theme color */
  padding: 18px 20px;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.search-bar button:hover {
  background-color: #000;
}

.search-bar .search-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.my-search {
  display: none;
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 99;
  background-color: #fff;
  padding: 30px 3% 18px 35px;
  top: 0;
}

.top-rel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-rel p {
  margin: 0;
}

.top-header.spad {
  background: var(--primary);
  padding: 10px;
  position: relative;
}

.hdr-opt li a {
  font-size: 1.25rem;
  color: #fff;
}


/* TopBar CSS End */

.main-header {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.main-header:before {
  content: none;
  position: absolute;
  top: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  z-index: -1;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

header.fixed.sticky {
  background: #ffffff;
  padding: 0;
  box-shadow: 0 0 20px #ff6c022b;
}

header.fixed.sticky .top-header {
  display: none;
}


/* Hamburger Menu */

.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--theme-color);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: #b70404;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}


/* Menu Css */

.menuWrap .menu {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: initial;
  gap: 1.45rem;
}

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

.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}

.menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.menu li:last-child {
  padding-right: 0;
}

.menu li a {
  font-size: 1.125rem;
  color: var(--primary);
  display: inline-block;
  font-weight: 500;
  letter-spacing: -0.18px;
}

.menu>li.active>a,
.menu>li:hover>a {
  color: var(--theme-color);
}


/* Menu Dropdown CSS */

.has-child,
.menu-item-has-children {
  position: relative;
  z-index: 1;
}

.dropdown,
.sub-menu {
  position: absolute;
  background: #1c7347;
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  width: 190px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}

.dropdown .dropdown,
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.dropdown ul li a,
.sub-menu li a {
  font-size: 1.125rem;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
}

.dropdown li:not(:last-child),
.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.chev.rotate {
  transform: rotate(180deg);
}

.chev {
  transition: 0.5s ease;
}

.dropdown-toggle::after {
  display: none;
}

.menuWrap .menu a i.fa-angle-down {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -2px;
}

.menu li.dropitem {
  position: relative;
  display: block;
  opacity: 0;
  cursor: pointer;
}

.menu>li.dropitem>.dropdownHover {
  position: absolute;
  pointer-events: none;
}

.menu>li.dropitem>.dropdownHover>li {
  transition: transform 0.6s, opacity 0.6s;
  transform: translateY(150%);
  opacity: 0;
  width: 210px;
}

.menu>li.dropitem:hover>.dropdownHover {
  pointer-events: initial;
}

.menu>li.dropitem:hover>.dropdownHover>li.dropitem {
  transform: translateY(0%);
  opacity: 1;
  background: var(--black);
  /* width: 210px; */
}

.menu>li.dropitem {
  opacity: 1;
}

.dropdownHover>li a {
  padding: 8px 10px;
  font-size: 16px;
  border-bottom: 1px solid #2c2c2c59;
  color: var(--white);
}

.dropdownHover>li:hover>a {
  background: var(--white);
  color: var(--black);
}


/* Dropdown CSS*/

.top-rel a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .top-header.spad:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    width: 31%;
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
} */

.headerMenu .dropdown-menu {
  /* top: 1rem !important; */
  /* border-top: 2px solid var(--theme-color); */
  position: absolute !important;
  top: 0rem !important;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 16px 20px #00000054;
  background: #fff;
  width: 700px;
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.headerMenu .dropdown-menu2 {
  width: 340px;
  max-width: max-content;
}

.dropLinks li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  padding: 5px 0;
  /* display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropLinks li a:hover {
  color: var(--theme-color);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: none;
}

.dropLinks li a i {
  color: var(--theme-color);
}

.dropLinks {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  justify-content: space-between;
}

.dropLinks li {
  flex: 0 0 48%;
}

.headerMenu .dropdown-menu2 .dropLinks {
  flex-direction: column;
}

.headerMenu .dropdown-menu2 .dropLinks li {
  flex: 100%;
}

.headerNav {
  display: flex;
  justify-content: start;
}


/* .headerMenu .dropdown-menu h5 {
    color: #1e266d;
    font-size: 1rem;
    font-weight: 800;
} */

.headerMenu .dropdown-menu h5 {
  color: var(--theme-color);
  font-size: 1rem;
  font-weight: 800;
  padding-top: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--theme-color);
}

.dropLinks li a:hover {
  padding-left: 5px;
}

.headerMenu {
  display: flex;
  justify-content: space-between;
  /*padding: 0 6rem;*/
}

nav.menuWrap {
  display: flex;
  gap: 2rem;
  align-items: center;
}


/* Header CSS End */


/* Footer CSS Start */

footer {
  background: var(--primary);
  padding-top: 12rem;
}

footer * {
  color: #fff;
}

.links li a {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}

.links li a:hover {
  color: var(--theme-color);
}

footer h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

footer a img {
  margin-bottom: 1.25rem;
}

.socialIcons {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
}

.socialIcons li a {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.socialIcons li a:hover {
  background: var(--theme-color);
}

.copyRight ul {
  display: flex;
  justify-content: end;
  gap: 1rem;
}

.copyRight p {
  margin: 0;
  color: #fff;
}

.copyRight {
  border-top: 1px solid #ffffff3b;
  padding: 1rem 0;
  margin-top: 2.25rem;
}

.ctaFooter {
  margin-bottom: -9rem;
}


/* Footer CSS End */



@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}



html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #FF6C02;
  --primary: #292C3F;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 2rem;
  color: #878787;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}


/* Home Page CSS Start  */

.main-Banner {
  background: #fde2ce;
  /*height: 80vh;*/
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 15rem;
  /*min-height: 35rem;*/
}

.bannertext h1 {
  font-size: 3.5rem;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.bannertext {
  text-align: center;
}

.bannertext h1 span {
  color: var(--theme-color);
}

.bannertext p {
  font-size: 1.25rem;
  color: #5c5c5c;
}

.bannerForm {
  padding: 0;
  margin-top: -12rem;
  z-index: 1;
}

.leadForm {
  background: #fff;
  box-shadow: 0 0 30px #ff6c0230;
  padding: 2rem;
  border-radius: 20px;
}

.leadForm input {
  height: 3.5rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--theme-color);
  border-radius: 5px;
  margin-bottom: 1rem;
}

.leadForm button {
  border: none;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  padding: 15px 0;
}

h6 {
  color: var(--theme-color);
  font-size: 1.278125rem;
  font-weight: 400;
}

h4 {
  font-size: 3.14875rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

h4 span {
  color: var(--theme-color);
}

.listStyle {
  margin-bottom: 2rem;
  list-style-type: none;
}

.listStyle li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.67;
  color: #878787;
  position: relative;
  padding: 5px 0 5px 1rem;
}

.listStyle li:before {
  content: '\f0da';
  position: absolute;
  inset: 3px 0 0;
  font-family: 'FontAwesome';
  font-size: 1.125rem;
  color: var(--theme-color);
}

.abtSec {
  background: url(../images/bg/1.png) bottom center / cover fixed no-repeat;
  padding-top: 13rem;
  margin-top: -7rem;
}

.counterBg {
  /* background: url(../images/bg/2.svg) bottom center / cover no-repeat; */
  padding: 3.4rem 0rem 8rem;
  background: linear-gradient(106deg, #ff6c02, #292c3f);
  position: relative;
  border-radius: 30px;
}

.counterBg h3 {
  color: #fff;
  font-size: 4.5rem;
  text-align: center;
  font-weight: 700;
}

.counterBg p {
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.counterBg span {
  color: var(--primary);
  font-weight: 700;
}

.counterBg h5 {
  color: #fff;
  position: absolute;
  bottom: -5rem;
  left: 7rem;
}

.counterBg:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  width: 58%;
  height: 150px;
  bottom: -2rem;
  top: auto;
  right: -2rem;
  left: auto;
  border-radius: 30px;
}

.counterSec {
  padding-bottom: 0;
}

.serBox {
  border: 2px solid #cdcdcd;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 1;
  transition: all 0.5s;
}

.serBox h3 {
  font-weight: 600;
  margin: 2rem 0 1rem;
  transition: all 0.5s;
}

.serBox p {
  transition: all 0.5s;
}

.serBox a {
  color: var(--theme-color);
  font-weight: 400;
  transition: all 0.7s;
}

.serBox::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--primary);
  height: 800px;
  width: 800px;
  border-radius: 50px;
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.serBox:hover:before {
  top: -30px;
  left: -30px;
}

.serBox:hover * {
  color: var(--white);
}

.iconImg {
  width: 60px;
  height: 60px;
}

.serviceSlider {
  padding: 2rem 0 5rem;
}

.expertiseSec {
  background: var(--primary);
  padding: 0;
}

.expertiseSec h4,
.expertiseSec p {
  color: var(--white);
}

.expertiseSec .themeBtn:before {
  background: var(--black);
}

.ctaBg {
  background: linear-gradient(106deg, #ff6c02, #292c3f);
  padding: 3rem;
  text-align: center;
  border-radius: 15px;
}

.ctaBg * {
  color: #fff;
}

.packlageBox {
  border-radius: 12px;
  box-shadow: 0 0 20px #00000026;
  margin-top: 2rem;
  transition: all 0.5s ease;
}

.packlageBox .packageHead {
  padding: 2rem 0px 1rem;
  text-align: center;
  border-bottom: 1px solid #ff6c021f;
}

.packlageBox .packageHead h3 {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--primary);
}

.packlageBox .packageHead h3 span {
  display: block;
  font-size: 1.35rem;
  color: var(--theme-color);
  font-weight: 500;
}

.packageBody h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.packageBody h2 span {
  font-size: 1rem;
}

.packageBody ul {
  height: 370px;
  background: #fff7f1;
  border-radius: 10px;
  padding: 0 0 0 10px;
}

.packageBody ul li {
  color: #878787;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.packageBody {
  padding: 1rem;
}

.packageBody .themeBtn {
  width: 100%;
  justify-content: center;
  margin-top: 2rem;
}

.packlageBox:hover {
  background: #fde2ce;
}

.mCSB_inside>.mCSB_container {
  margin: 0;
  padding: 10px 0;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin: 0;
}

.packageBody ul li img {
  width: 20px;
}

.packageBody .mCSB_scrollTools .mCSB_draggerContainer {
  right: -2.2rem;
}

.testimonials p {
  font-size: 1.25rem;
  margin: 2rem 5rem;
  text-align: center;
}

.testimusers {
  margin-top: 2rem;
  max-width: 330px;
}

.testimusers figure {
  margin-bottom: 1rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimusers .cont {
  opacity: 0;
}

.testimusers .cont h3 {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.testimusers .swiper-slide-active .cont {
  opacity: 1;
}

.testimusers figure img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  transition: all 0.3s ease;
  border: 5px solid #ff6c022b;
  border-radius: 100px;
}

.testimusers .swiper-slide-active figure img {
  object-fit: cover;
  transform: scale(1.4);
  border-color: var(--theme-color);
}

.processBox h5 {
  font-size: 5rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--theme-color);
  color: transparent;
  transition: all 0.5s;
}

.processBox:hover h5 {
  color: transparent;
}

.processBox {
  margin-top: 2rem;
  padding-bottom: 0;
  height: 100%;
}


/* accordion css */


/* .accordian {
    margin-top: 2rem;
} */

.accordian li {
  margin-bottom: 25px;
  border: 1px solid #dedede87;
  border-radius: 12px;
}

.accordian li h4 {
  color: #fff;
  font-size: 1.125rem;
  padding: 15px 38px 15px 15px;
  position: relative;
  cursor: pointer;
  background-color: var(--primary);
  border-radius: 12px;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

.accordian h4::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  position: absolute;
  top: 7px;
  right: 22px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  background: #a893e154;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.accordian p {
  margin: 0;
  color: #869289;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1rem;
}

.accordian li>div {
  display: none;
  background: var(--white);
  border-radius: 0 0 10px 10px;
  padding: 1rem;
}

.accordian li.active h4::after {
  content: "\f068";
  background: #292c3f;
}

.accordian li.active {
  border-color: var(--theme-color);
  background: var(--theme-color);
}

.accordian li.active h4 {
  color: var(--theme-color);
  background: var(--theme-color);
  color: var(--white);
}

.accordian li.active>div {
  background: var(--theme-color);
}

.accordian li.active>div p {
  color: var(--white);
}


/* accordian End */

.ctaFooter .ctaBg {
  /*background: url(../images/bg/2.png) bottom center / cover no-repeat;*/
  background: url(../images/bg/2.png) top center / contain no-repeat;
  padding: 4.3rem 0;
}

.progress-section {
  text-align: center;
  padding-top: 1rem;
}

.progress-container {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 40px;
}

.progress-box {
  color: #fff;
  max-width: 200px;
}

.progress-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 25px;
  background: #fff;
}

.progress-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  overflow: hidden;
}

.progress-circle::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50%;
  background: conic-gradient(#f79752 var(--progress, 0deg), #f3f3f3 0deg);
  z-index: 1;
}

.progress-title {
  font-size: 14px;
  line-height: 1.4;
}


/* Home Page CSS End */


/* Inner Pages CSS Start */

.innerBanner {
  height: 60vh;
  padding-top: 12rem;
}


/* Inner Pages CSS End */


/* Margin Top: 10px to 100px */

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}


/* Margin Bottom: 10px to 100px */

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

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

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

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

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

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

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

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

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

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


/* Padding Top: 10px to 100px */

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}


/* Padding Bottom: 10px to 100px */

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}


/* Padding Top: 1rem to 10rem */

.pt-1rem {
  padding-top: 1rem;
}

.pt-2rem {
  padding-top: 2rem;
}

.pt-3rem {
  padding-top: 3rem;
}

.pt-4rem {
  padding-top: 4rem;
}

.pt-5rem {
  padding-top: 5rem;
}

.pt-6rem {
  padding-top: 6rem;
}

.pt-7rem {
  padding-top: 7rem;
}

.pt-8rem {
  padding-top: 8rem;
}

.pt-9rem {
  padding-top: 9rem;
}

.pt-10rem {
  padding-top: 10rem;
}

.pt-11rem {
  padding-top: 11rem;
}

.pt-12rem {
  padding-top: 12rem;
}

.pt-13rem {
  padding-top: 13rem;
}

.pt-14rem {
  padding-top: 14rem;
}

.pt-15rem {
  padding-top: 15rem;
}

.pt-16rem {
  padding-top: 16rem;
}

.pb-1rem {
  padding-bottom: 1rem;
}

.pb-2rem {
  padding-bottom: 2rem;
}

.pb-3rem {
  padding-bottom: 3rem;
}

.pb-4rem {
  padding-bottom: 4rem;
}

.pb-5rem {
  padding-bottom: 5rem;
}

.pb-6rem {
  padding-bottom: 6rem;
}

.pb-7rem {
  padding-bottom: 7rem;
}

.pb-8rem {
  padding-bottom: 8rem;
}

.pb-9rem {
  padding-bottom: 9rem;
}

.pb-10rem {
  padding-bottom: 10rem;
}

.mt-1rem {
  margin-top: 1rem;
}

.mt-2rem {
  margin-top: 2rem;
}

.mt-3rem {
  margin-top: 3rem;
}

.mt-4rem {
  margin-top: 4rem;
}

.mt-5rem {
  margin-top: 5rem;
}

.mt-6rem {
  margin-top: 6rem;
}

.mt-7rem {
  margin-top: 7rem;
}

.mt-8rem {
  margin-top: 8rem;
}

.mt-9rem {
  margin-top: 9rem;
}

.mt-10rem {
  margin-top: 10rem;
}

.mt-7remMinus {
  margin-top: -7rem;
}

.expertiseSec h5 {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.expertiseSec h5 span {
  color: var(--theme-color);
}

.bg-white {
  background: #fff;
}

.countryList {
  background: #292C3F;
  color: #ffffff;
}

.countryList h5 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 10px;
  margin: 0;
  text-align: center;
}

.countryList .countryListUl li {
  padding: 10px;
  box-shadow: 0 0 30px #ffffff00;
  margin: 9px 0;
  background: #242635;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  transition: all 0.5s ease;
}

.expertiseSec .exBox {
  border: 1px dashed #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 40px;
}

.expertiseSec .exBox h6 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 400;
}

.expertiseSec .exBox p {
  font-weight: 400;
  font-size: 2rem;
  margin: 0;
}

.expertiseSec .exBox p span {
  color: var(--theme-color);
  font-size: 4rem;
  font-weight: 600;
}

.bg-grey {
  background: #878787;
}

.bg-grey-new {
  background: #e9e7e7;
}

.text-black {
  color: #000000 !important;
}

.text-brand-blue {
  color: #052652 !important;
}

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

.expertiseSec.bg-grey h5 span {
  color: #292C3F;
}

.expertiseSec.bg-grey .accordian li h4 {
  color: #292c3f;
  font-size: 1.125rem;
  padding: 2rem;
  position: relative;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 12px;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

.expertiseSec.bg-grey .accordian li {
  margin-bottom: 4rem;
  border: 1px solid #dedede87;
  border-radius: 12px;
}

.expertiseSec.bg-grey .accordian li:nth-last-child(1) {
  margin-bottom: 0;
}

.expertiseSec.bg-grey .accordian li.active h4::after {
  background: #292c3f;
  color: #ffffff;
}

.countryList .countryListUl li:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff6c0233;
}

.py-5rem {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.expertiseSec.bg-white {
  color: #052652;
}

.expertiseSec.bg-white h4,
.expertiseSec.bg-white h5,
.expertiseSec.bg-white p {
  color: #052652;
}

.logo img {
  height: 4rem;
  transition: height 0.3s ease;
}

header.fixed.sticky .logo img {
  height: 3rem;
}

.logoftr img {
  height: 4rem;
}

.leadFrom {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
}

.leadFrom h3 {
  font-size: 2.125rem;
  text-align: center;
  font-weight: 700;
  color: #1E266D;
}

.leadFrom p {
  color: #1E266D;
  text-align: center;
  font-size: 1rem;
}

.leadFrom label {
  display: block;
  color: #1E266D;
  font-weight: 700;
}

.leadFrom input {
  width: 100%;
  height: 3.25rem;
  padding: 1rem;
  border: 1px solid #CECED6;
  border-radius: 10px;
  margin-bottom: 8px;
}

.leadFrom .themeBtn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 1rem;
}

.column-count-two ul {
  column-count: 2;
}

.text-taupe-gray {
  color: #878787;
}

.two-column-list ul {
  list-style-position: none;
  padding-bottom: 2rem;
  padding-left: 0;
  margin: 0;
}

.two-column-list ul li {
  position: relative;
  padding: 0 0 8px 30px;
}

.two-column-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url('../images/mix/li_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.newtwo-column-list-black h2 {
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 1rem;
}

.newtwo-column-list-black ul {
  list-style-position: none;
  padding-bottom: 2rem;
  padding-left: 0;
  margin: 0;
}

.newtwo-column-list-black ul li {
  position: relative;
  padding: 0 0 8px 30px;
  font-size: 16px;
}

.newtwo-column-list-black ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url('../images/mix/li_icon_black.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.newtwo-column-list-white ul {
  list-style-position: none;
  padding-bottom: 2rem;
  padding-left: 0;
  margin: 0;
}

.newtwo-column-list-white ul li {
  position: relative;
  padding: 0 0 8px 30px;
}

.newtwo-column-list-white ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url('../images/mix/li_icon_white.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.h70vh {
  height: 30vh;
  padding-bottom: 0;
}

.trust-pilot img {
  height: 2.4rem;
  margin-top: 1rem;
}

.bannertext2 .btms {
  align-items: center;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.bannertext2 .btms p {
  font-size: 1rem;
  padding: 0 0 0 30px;
  margin: 0;
  position: relative;
}

.bannertext2 .btms p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url('../images/mix/play_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.brand-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.brand-slider .item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.brand-slider .item img:hover {
  filter: grayscale(100%);
}

.brand-slider .item img {
  height: 2rem;
}

.serviceSec .webdesign {
  padding: 30px 0 0;
}

.bannertext2 h1 {
  font-weight: 600;
}

.lrSec .mainHead h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.lrSec .inner h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.lrSec .inner p {
  font-weight: 400;
  margin: 0;
  padding: 10px 0;
}

.copyrightSec {
  box-shadow: 0 10px 30px -30px #000000;
}

.copyrightSec h5 {
  font-size: 2rem;
  font-weight: 800;
  padding-bottom: 1.2rem;
  text-align: center;
  margin: 0;
}

.copyrightSec .step-box {
  position: relative;
  padding-top: 25px;
}


/* .step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c2f48;
} */

.copyrightSec .step-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-start;
  border-top: 4px solid #2c2f48;
  padding: 10px 0 0;
}

.copyrightSec .circle {
  width: 20px;
  height: 20px;
  border: 6px solid #2c2f48;
  border-radius: 50%;
}

.copyrightSec .step-text {
  font-weight: 600;
  font-size: 18px;
  color: #2c2f48;
  margin: 0;
}

.copyrightSecBox .inner {
  box-shadow: 0 6px 16px -10px #000000;
  padding: 60px 40px;
  border-radius: 20px;
}

.copyrightSecBox .inner .innerTop {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 0 40px;
}

.copyrightSecBox .inner .innerTop .circle {
  width: 40px;
  height: 40px;
  border: 8px solid #FF6C02;
  border-radius: 50%;
}

.copyrightSecBox .inner .innerTop h2 {
  font-size: 1.4rem;
  color: #FF6C02;
  margin: 0;
}

.copyrightSecBox .inner .innerBox {
  border: 1px solid #000000;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.copyrightSecBox .inner .innerBtn {
  padding-top: 40px;
}

.copyrightSecForm .inner {
  box-shadow: 0 6px 16px -10px #000000;
  padding: 60px 40px;
  border-radius: 20px;
}

.copyrightSecForm .inner .innerTop h2 {
  font-size: 1.2rem;
}

.copyrightSecForm .inner .innerForm input {
  height: 3.5rem;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #E4E4E4;
}

.iti {
  width: 100%;
}

.copyrightSecForm .inner .innerBtn {
  padding-top: 40px;
}

.copyrightSecForm .inner .innerBtn input[type="submit"] {
  font-family: inherit;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
  z-index: 1;
  font-size: 1.125rem;
  border-radius: 5px;
  font-weight: 600;
  color: var(--white);
  background: var(--theme-color);
  padding: 12px 2rem;
  align-items: center;
  gap: 10px;
  width: 20%;
  float: right;
}

.copyrightSecBox .inner .innerBox img {
  padding: 20px 0;
}

.leadForm h2 {
  font-size: 2rem;
}

.processBox p {
  margin: 0;
}

.terms-and-privacy {
  padding: 12rem 0 0;
}

.terms-and-privacy h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.terms-and-privacy p {
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
  color: #878787;
}

.terms-and-privacy ul {
  list-style: inside;
  color: #878787;
}

.terms-and-privacy ul li {
  margin-bottom: 1rem;
}

.terms-and-privacy ul li a {
  color: #878787;
}

.serSlider .serBox {
  height: auto;
}

button.iti__selected-country {
  padding: 0;
  margin: 0;
}

button.iti__selected-country:focus {
  outline: 0;
}




/* Popup */

.overlay {
  background-color: #000000bf;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  display: none;
  backdrop-filter: blur(10px);
}

.popup-main {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 940px;
  background: #fff;
  box-shadow: 0 0 30px -9px #0000006e;
  z-index: 9999999;
  /*overflow: hidden;*/
  display: none;
  border-radius: 20px;
  max-width: 100%;
  max-height: 90vh;
  /*overflow-y: auto;*/
}

.closeico {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6c02;
  border-radius: 100px;
  color: #fff;
}

.mmpopup {
  /*background: #fff;*/
  display: flex;
  align-items: center;
}

.mmpopup .imgpop figure,
.mmpopup .imgpop figure img {
  height: 670px;
  border-radius: 20px 0 0 20px;
}

.mmpopup .imgpop img {
  height: 600px;
  object-fit: cover;
}

.mmpopup .cont {
  width: 35%;
  padding: 2rem 2rem;
}

.mmpopup .formPop {
  width: 75%;
  padding: 2rem 3rem;
  margin-left: auto;
}

.mmpopup .formPop h3,
.mmpopup .formPop h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mmpopup .formPop h4 sub {
  display: none;
}

.mmpopup .contpop {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.mmpopup .cont h3 {
  font-size: 1.425rem;
  font-weight: 600;
}

.mmpopup .cont p {
  margin-bottom: 10px;
  font-size: 14px;
}

.mmpopup .cont .lists {
  padding: 1rem 0;
}

.mmpopup .cont .lists li {
  color: var(--head-color);
  padding: 2px 0;
  padding-left: 1.5rem;
}

.mmpopup .cont .lists li svg,
.mmpopup .cont .lists li i {
  top: 5px;
}

.mmpopup .cont .call a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--head-color);
}

.formPop .fld {
  margin-bottom: 0.4rem;
  font-size: 14px;
}

.formPop .fld input,
.formPop .fld textarea {
  border-radius: 5px;
  border: solid 1px #e6e6e6;
  width: 100%;
  height: 50px;
  padding: 10px 10px;
  font-size: 1rem;
}

.formPop .fld textarea {
  height: 80px;
}

.popup-main .themeBtn {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  margin-top: 10px;
}

.popup-main .themeBtn i {
  margin-left: 10px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 10px;
  width: 100%;
  margin-top: 10px;
}

.checkbox-wrap label {
  line-height: 1.3;
  font-size: 13px;
}

.checkbox-wrap input {
  margin-top: 1px;
  width: auto !important;
}

.favIcon {
  width: 260px;
}

.formTopContnt p {
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.mmpopup .formPop input {
  height: 3.25rem;
  margin-bottom: 1rem;
  border: 1px solid #1e266d6b;
  border-radius: 10px;
  line-height: 1;
}

.mmpopup .formPop label {
  font-weight: 700;
}

.mmpopup .formPop {
  border-radius: 10px;
}

.formPop .callBtn {
  margin-top: 1rem;
}

.closeico:hover {
  color: #fff;
}

.bg-orange-sec {
  background: #fde2ce !important;
}

.main-header.lp .lptopnumber {
  display: none;
}

.copyRight ul li a:hover {
    color: var(--theme-color);
}

.expertiseSec .iti{
  margin-bottom: 8px;
}