@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.company-details p .discover-more:hover{
    background-color: #fff;
    color: var(--primary);
    border-style: dashed;
}
.company-details p .discover-more
 {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    border: 1px solid var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.6s ease;
    background-color: var(--primary);
}

body {
  font-family: "Poppins", sans-serif !important;
}
body.no-scroll {
  overflow: hidden;
}

:root {
  --primary: #BE001F;
  --secondary: #BE001F;
  --active: #BE001F;
  --header_bg: #F3F3F3;
  --black_text: #1B1435;
}


/*new are here */
.menu-dropdown1 li{
	position:relative;
}
.menu-dropdown1 li:hover::after {
    width: 100%;
    left: 0;
    transform: none;
}
.menu-dropdown1 li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.loader-wrap {
  position: fixed;
  z-index: 99999;
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.loader-wrap::-webkit-scrollbar {
  display: none;
}
.loader-wrap::-webkit-scrollbar-thumb {
  display: none;
}
.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 104vh;
}
.loader-wrap svg path {
  fill: #be0020;
}
.loader-wrap span {
  overflow: hidden;
  display: block;
}
.loader-wrap .loader-wrap-heading img {
  width: 70%;
  height: auto;
  margin: auto;
  display: block;
}
.navbar .navbar-nav .nav-item .nav-link.arrow-right::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 10px;
    background-image: url(../assets/images/down-arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    transform: rotate(-90deg);
    opacity: unset;
    background-color: unset;
}
.navbar .mega-menu .main-menu .main-link:hover {
  background-color: rgba(255, 26, 63, 0.0509803922);
}
.align-center{
	text-align:center;
}
/*new are here */
p a{
	font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: var(--primary);
    margin-bottom: 0px;
    cursor: pointer;
	text-decoration: none;
}
.common-blog-card a{
	text-decoration: none;
}

.loader-wrap {
  position: fixed;
  z-index: 99999;
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.loader-wrap::-webkit-scrollbar {
  display: none;
}
.loader-wrap::-webkit-scrollbar-thumb {
  display: none;
}
.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 104vh;
}
.loader-wrap svg path {
  fill: #be0020;
}
.loader-wrap span {
  overflow: hidden;
  display: block;
}
.loader-wrap .loader-wrap-heading img {
  width: 70%;
  height: auto;
  margin: auto;
  display: block;
}

.loading-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7882352941), rgba(0, 0, 0, 0.7254901961));
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-container.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loading-container .loading-bar {
  position: relative;
  width: 110px;
  height: 110px;
  background: #fff;
  border: 0px solid #3c3c3c;
  border-radius: 50%;
  text-align: center;
  line-height: 111px;
  font-family: sans-serif;
  font-size: 15px;
  color: #fff000;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px #fff000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: animate 0.7s alternate infinite;
}
.loading-container .loading-bar img {
  width: 80px;
  height: auto;
  will-change: transform;
}
@keyframes animate {
  0% {
    transform: rotate(45deg);
    transform: scale(1);
  }
  100% {
    transform: rotate(405deg);
    transform: scale(1.1);
  }
}

.loading-bar:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 115px;
  height: 115px;
  border: 0px solid transparent;
  border-top: 4px solid #be001f;
  border-right: 4px solid #be001f;
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.common-heading-container h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #1B1435;
  margin-bottom: 24px;
}
.common-heading-container h2 span {
  color: var(--primary);
}
.common-heading-container p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34.3px;
  letter-spacing: 0.51px;
  text-align: center;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 50px;
}

.header-main {
  background-color: var(--header_bg);
  padding: 8px 0px;
}
.header-main .header-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.header-main .header-content .latest-news {
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  padding: 8px 0;
  position: absolute;
  font-weight: 500;
  width: 60%;
  left: 0px;
}
.header-main .header-content .latest-news .news-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 30s linear infinite;
}
.header-main .header-content .latest-news .news-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  margin-bottom: 0px;
}
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.header-main .header-content .phone-details {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-main .header-content .phone-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.header-main .header-content .phone-details p img {
  margin-right: 4px;
}
.header-main .header-content .phone-details p:hover {
  color: var(--primary);
}
.header-main .header-content .phone-details span {
  background-color: #000000;
  height: 22px;
  width: 1px;
}
.header-main .header-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.header-main .header-content .social-icon a {
  border: 0.5px solid var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: background-color 0.5s ease;
}
.header-main .header-content .social-icon a:hover {
  background-color: var(--primary);
  border-color: transparent;
}
.header-main .header-content .social-icon a:hover svg path {
  fill: #fff;
}
.header-main .header-content .social-icon.fixed {
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  opacity: 1;
  z-index: 99;
  flex-direction: column;
}
.header-main .header-content .social-icon.pre-fixed {
  transform: translateY(0%) scale(1);
  opacity: 0;
}

.navbar {
  background-color: #fff;
  padding: 0px !important;
  border-bottom: 1px solid #DCDCDC;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.4s ease forwards;
  background-color: rgba(240, 240, 240, 0.7411764706);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.navbar .navbar-brand img {
  width: 180px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .navbar-nav {
  gap: 8px;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  transition: all 0.5s ease;
  padding: 27.4px 8px;
  display: flex;
  align-items: center;
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link svg {
  width: 18px;
  height: auto;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--active);
  transition: all 0.35s ease;
}
.navbar .navbar-nav .nav-item .nav-link.active::before {
  width: calc(100% - 15px);
  opacity: 1;
}
.navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--active);
  left: auto;
  right: auto;
  bottom: 20px;
  border-radius: 50px;
  transition: all 0.35s ease;
  opacity: 0;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--active);
}
.navbar .navbar-nav .nav-item .nav-link:hover svg path {
  fill: var(--active);
}
.navbar .navbar-nav .nav-item:hover .mega-menu {
  opacity: 1;
  transform: translate(-50%, 0px);
  visibility: visible;
  transition-delay: 0.3s;
}
.navbar .navbar-nav .nav-item:hover .menu-dropdown {
  opacity: 1;
  transform: translate(0%, 0px);
  visibility: visible;
  transition-delay: 0.3s;
}
.navbar .metting-btn {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  border-radius: 6px;
  padding: 9px 18px;
  transition: all 0.4s ease-in-out;
  will-change: transform;
}
.navbar .metting-btn:hover {
  background-color: var(--secondary);
  color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.navbar .toggle-menu {
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  display: none;
}
.navbar .toggle-menu svg {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .toggle-menu svg path {
  fill: #000;
}
.navbar .phone-menu {
  background: #fff;
  color: white;
  padding: 15px;
  width: 290px;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: -290px;
  transition: all 0.4s ease;
  z-index: 999;
}
.navbar .phone-menu.active {
  left: 0;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
}
.navbar .phone-menu .logo img {
  width: 80%;
  margin-bottom: 15px;
}
.navbar .phone-menu .menu-list,
.navbar .phone-menu .submenu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.navbar .phone-menu .menu-list li {
  padding: 8px 0;
  position: relative;
}
.navbar .phone-menu .menu-list li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 0px;
  font-size: 14px;
  transition: background 0.3s;
}
.navbar .phone-menu .menu-list li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.navbar .phone-menu .menu-list li.has-submenu > a::after {
  content: " ";
  float: right;
  transition: transform 0.3s;
  background-image: url(./../assets/images/down-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  top: 2px;
  position: relative;
}
.navbar .phone-menu .menu-list li.has-submenu.open > a::after {
  transform: rotate(90deg);
}
.navbar .phone-menu .menu-list li.has-submenu.open > .submenu {
  display: block;
}
.navbar .phone-menu .submenu {
  display: none;
  padding-left: 15px;
  border-left: 1px solid var(--secondary);
  margin-top: 5px;
}
.navbar .phone-menu .submenu li a {
  padding-left: 0px;
}
.navbar .menu-dropdown {
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.3s ease;
  position: absolute;
  top: 74px;
  opacity: 0;
  transform: translate(0%, 20px);
  padding: 0px;
  z-index: 99;
  background: #fff;
  box-shadow: 0px 2px 4px 0px #e8e8e8;
}
.navbar .menu-dropdown li {
  list-style-type: none;
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #505050;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.6s ease;
  cursor: pointer;
  border-bottom: 1px dashed rgba(230, 0, 37, 0.2901960784);
}
.navbar .menu-dropdown li.has-sub-menu a {
  position: relative;
}
.navbar .menu-dropdown li.has-sub-menu a::before {
  content: "";
  position: absolute;
  right: 8px;
  background-image: url(../assets/images/down-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
}
.navbar .menu-dropdown li a {
  padding: 10px 10px !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 30px !important;
  position: relative;
}
.navbar .menu-dropdown li a:hover {
  background-color: rgba(244, 74, 105, 0.1019607843);
  color: #fff;
}
.navbar .menu-dropdown li a:hover::after {
  width: 100%;
  left: 0;
  transform: none;
}
.navbar .menu-dropdown li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.navbar .mega-menu {
  width: 40%;
  margin: auto;
  position: absolute;
  top: 68px;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: 0px 2px 6px -1px #ccc;
  z-index: 999;
  padding: 45px 40px;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 20px);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
}
.navbar .mega-menu.active {
  opacity: 1;
  transform: translate(-50%, 0px);
  visibility: visible;
}
.navbar .mega-menu .menu-section {
  flex-direction: column;
  align-items: flex-start !important;
  background: transparent !important;
  gap: 0px !important;
  margin-bottom: 10px !important;
}
.navbar .mega-menu .menu-section .main-link {
  color: #000 !important;
  margin-bottom: 0px !important;
  transition: all 0.35s ease;
  position: relative;
}
.navbar .mega-menu .menu-section .main-link.active {
  color: var(--active);
  transition: all 0.35s ease;
}
.navbar .mega-menu .menu-section .main-link.active::before {
  transform: rotate(0deg);
}
.navbar .mega-menu .menu-section .main-link::before {
  content: "";
  position: absolute;
  right: 8px;
  background-image: url(../assets/images/down-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
}
.navbar .mega-menu .menu-section .submenu {
  list-style: none;
  padding-left: 15px;
  margin: 0px;
  display: none;
  width: 100%;
}
.navbar .mega-menu .menu-section .submenu.show {
  display: block;
}
.navbar .mega-menu .menu-section .submenu .nav-link {
  text-decoration: none;
  color: #505050;
  display: block;
  padding: 5px 0;
}
.navbar .mega-menu .main-menu {
  width: 50%;
  padding: 0px;
  margin: 0px;
  overflow: auto;
  height: 50vh;
}
.navbar .mega-menu .main-menu.menu-simple li:hover {
  background-color: rgba(255, 26, 63, 0.0509803922);
}
.navbar .mega-menu .main-menu.menu-simple li:hover a {
  color: #000000 !important;
}
.navbar .mega-menu .main-menu.menu-simple li:hover .sub-menu {
  display: block;
}
.navbar .mega-menu .main-menu .main-link {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  margin-bottom: 15px;
  padding: 0px 10px;
  text-decoration: none;
  display: block;
}
.navbar .mega-menu .main-menu li {
  list-style-type: none;
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #505050;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.6s ease;
  cursor: pointer;
}
.navbar .mega-menu .main-menu li.has-sub-menu a {
  position: relative;
}
.navbar .mega-menu .main-menu li.has-sub-menu a::before {
  content: "";
  position: absolute;
  right: 8px;
  background-image: url(../assets/images/down-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
}
.navbar .mega-menu .main-menu li a {
  padding: 10px 10px !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 30px !important;
  color: #505050;
}
.navbar .mega-menu .main-menu li a span {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 26, 63, 0.0509803922);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .mega-menu .main-menu li a span img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .mega-menu .main-menu li .sub-menu {
  position: absolute;
  display: none;
  top: 7%;
  left: 48%;
  height: 86%;
  border: 0px;
  background-color: transparent;
  width: 40%;
  padding: 0px 0px 0px 35px;
  margin: 0px;
}
.navbar .mega-menu .main-menu li .sub-menu h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  margin-bottom: 0px !important;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 12px;
  text-align: left;
  padding-left: 0px;
}
.navbar .mega-menu .main-menu li .sub-menu li {
  list-style-type: none;
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #505050;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: all 0.6s ease;
  text-align: left;
  cursor: pointer;
  background-color: unset;
  border-bottom: 1px dashed rgba(152, 152, 152, 0.6588235294);
  padding: 12px 15px;
}
.navbar .mega-menu .main-menu li .sub-menu li svg {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .mega-menu .main-menu li .sub-menu li svg path {
  fill: #505050;
}
.navbar .mega-menu .main-menu li .sub-menu li.has-sub-menu a::before {
  visibility: visible;
}
.navbar .mega-menu .main-menu li .sub-menu li:hover {
  border-color: var(--primary);
}
.navbar .mega-menu .main-menu li .sub-menu li:hover svg path {
  fill: var(--active);
}
.navbar .mega-menu .main-menu li .sub-menu li:hover a {
  font-weight: 500 !important;
  color: var(--primary) !important;
}
.navbar .mega-menu .main-menu li .sub-menu li a {
  padding: 0px !important;
  color: #505050 !important;
  font-weight: 400 !important;
  font-size: 14px;
}
.navbar .mega-menu .main-menu li .sub-menu li a::before {
  visibility: hidden;
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu {
  position: absolute;
  display: none;
  top: 0%;
  left: 100%;
  height: 100%;
  border: 0px;
  background-color: transparent;
  width: 100%;
  padding: 0px;
  margin: 0px;
  transition: all 0.5s ease;
  padding: 0px 20px 0px 15px;
  margin: 0px;
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  margin-bottom: 0px !important;
  padding-bottom: 12px;
  text-align: left;
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu li {
  list-style-type: none;
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #505050;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.6s ease;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px dashed rgba(152, 152, 152, 0.6588235294);
  padding: 12px 0px;
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu li:hover {
  color: var(--primary);
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu li:hover svg path {
  fill: var(--active);
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu li:hover a {
  font-weight: 500 !important;
  color: var(--primary) !important;
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu li a {
  padding: 0px !important;
  color: #505050 !important;
  font-weight: 400 !important;
  font-size: 14px;
}
.navbar .mega-menu .main-menu li .sub-menu li .sub-sub-menu li a::before {
  visibility: hidden;
}
.navbar .mega-menu .main-menu li .sub-menu li:hover {
  color: var(--primary);
}
.navbar .mega-menu .main-menu li .sub-menu li:hover .sub-sub-menu {
  display: block;
}
.navbar .mega-menu .main-menu li .submenu .nav-item:hover {
  background-color: rgba(255, 26, 63, 0.0509803922);
}
.navbar .mega-menu .main-menu li .submenu .nav-item:hover a {
  color: #000000 !important;
}
.navbar .mega-menu .main-menu li .submenu .nav-item:hover .sub-menu {
  display: block;
}
.navbar .mega-menu .image-wrapper {
  width: 30%;
  margin: auto;
  transition: all 0.5s ease;
}
.navbar .mega-menu .image-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 22px;
}
.navbar .mega-menu .image-wrapper h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  margin-bottom: 10px;
}
.navbar .mega-menu .image-wrapper p {
  font-weight: 400;
  font-size: 14px;
  line-height: 25.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 13px;
}
.navbar .mega-menu .image-wrapper a {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--primary);
  text-decoration: none;
}
.navbar .mega-menu.sub-open .image-wrapper {
  margin: 0;
}

.banner-wrapper {
  height: 100vh;
  background-image: url(./../assets/images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 70px 0px;
  overflow: hidden;
}
.banner-wrapper .left-details {
  margin-bottom: 25px;
  position: relative;
}
.banner-wrapper .left-details .carousel {
  padding-bottom: 3rem;
}
.banner-wrapper .left-details .carousel .carousel-indicators {
  justify-content: flex-start;
  margin-left: 0px;
  gap: 5px;
}
.banner-wrapper .left-details .carousel .carousel-indicators [data-bs-target] {
  background-color: var(--primary);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  opacity: 0.3;
}
.banner-wrapper .left-details .carousel .carousel-indicators [data-bs-target].active {
  opacity: 1;
}
.banner-wrapper .left-details h1 {
  font-weight: 600;
  font-size: 2.8vmax;
  line-height: normal;
  vertical-align: middle;
  margin-bottom: 10px;
}
.banner-wrapper .left-details h1 .typing {
  display: inline-flex;
  white-space: nowrap;
  color: #E60025;
  border-right: 3px solid #E60025;
  animation: typingErase1 8s steps(6) infinite;
  overflow: hidden;
}
@keyframes typingErase1 {
  0% {
    width: 0ch;
  }
  30% {
    width: 7ch;
  }
  /* full text typed */
  60% {
    width: 7ch;
  }
  /* hold */
  90% {
    width: 0ch;
  }
  /* erased */
  100% {
    width: 0ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.banner-wrapper .left-details h1 .italic {
  font-style: italic;
  color: #E60025;
}
.banner-wrapper .left-details h2 {
  font-weight: 600;
  font-size: 2.8vmax;
  line-height: normal;
  vertical-align: middle;
}
.banner-wrapper .left-details h2 .typing {
  display: inline-flex;
  white-space: nowrap;
  color: #E60025;
  border-right: 3px solid #E60025;
  animation: typingErase2 8s steps(10) infinite;
  overflow: hidden;
}

.notyping{
	display: inline-flex;
    white-space: nowrap;
    color: #E60025;
    overflow: hidden;
}
@keyframes typingErase2 {
  0% {
    width: 0ch;
  }
  30% {
    width: 10ch;
  }
  /* full text typed */
  60% {
    width: 10ch;
  }
  /* hold */
  90% {
    width: 0ch;
  }
  /* erased */
  100% {
    width: 0ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.banner-wrapper .left-details h2 .italic {
  font-style: italic;
  color: #E60025;
}
.banner-wrapper .left-details .banner-btn-groups {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.banner-wrapper .left-details .banner-btn-groups .get-quote-btn {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  border-radius: 8px;
  padding: 10px 30px;
  transition: all 0.4s ease-in-out;
  will-change: transform;
}
.banner-wrapper .left-details .banner-btn-groups .discover-btn {
  background-color: transparent;
  border: 1px solid #F22F53;
  color: #F22F53;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.4s ease-in-out;
  will-change: transform;
}
.banner-wrapper .left-details .banner-btn-groups .discover-btn:hover {
  background-color: #F22F53;
  color: #fff;
}
.banner-wrapper .left-details .shade-1 {
  width: 24%;
  position: absolute;
  top: -15rem;
  right: -8%;
  animation: floatRotate 4s ease-in-out infinite;
}
@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
.banner-wrapper .right-details {
  position: relative;
}
.banner-wrapper .right-details .shade-2 {
  width: 20%;
  position: absolute;
  top: -40px;
  right: -82px;
}
.banner-wrapper .right-details .banner-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./../assets/images/home-banner-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 440px;
  position: relative;
}
.banner-wrapper .right-details .banner-bg .center-img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.banner-wrapper .right-details .banner-bg .center-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-wrapper .right-details .banner-bg ul {
  margin: 0px;
  padding: 0px;
}
.banner-wrapper .right-details .banner-bg ul li {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.banner-wrapper .right-details .banner-bg ul li svg {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-wrapper .right-details .banner-bg ul li p {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0px;
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(1) {
  left: 28%;
  position: absolute;
  top: 33%;
  transform: translate(-50%, -50%);
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(2) {
  left: 50%;
  position: absolute;
  top: 14%;
  transform: translate(-50%, -50%);
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(3) {
  right: 17%;
  position: absolute;
  top: 32%;
  transform: translate(-50%, -50%);
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(4) {
  bottom: 16%;
  position: absolute;
  right: 15%;
  transform: translate(-50%, -50%);
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(5) {
  left: 50%;
  position: absolute;
  bottom: 2%;
  transform: translate(-50%, -50%);
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(6) {
  left: 28%;
  position: absolute;
  bottom: -11%;
  transform: translate(-50%, -50%);
  background-image: url(./../assets/images/check-now-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(6) p {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.banner-wrapper .right-details .banner-bg ul li:nth-child(6) p span {
  color: var(--primary);
}
.banner-wrapper .right-details .check-application h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  vertical-align: middle;
  color: #1B1435;
  margin-bottom: 22px;
  margin-top: 15px;
}
.banner-wrapper .right-details .check-application .check-btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  border: 0.5px dashed var(--primary);
  border-radius: 9px;
  color: var(--primary);
  padding: 12px 34px;
  transition: all 0.5s ease;
  top: -55px;
  position: relative;
  animation: pulseGlow 2s ease-in-out infinite;
}
.banner-wrapper .right-details .check-application .check-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.banner-wrapper .right-details .mark-arrow {
  width: 15%;
  position: absolute;
  bottom: 20%;
  left: 3%;
  animation: pulseGlow 2s ease-in-out infinite;
  opacity: 0.8;
}
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

.cyber-solution-wrapper {
  position: relative;
  padding: 40px 0px;
  background-color: #F6F6F6;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}
.cyber-solution-wrapper .top-solution-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
  display: none;
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards {
  border-radius: 20px;
  width: 169px;
  height: auto;
  margin-bottom: 0px;
  border: 1px dashed #000;
  background-color: #fff;
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards .icon-container {
  border-radius: 20px 20px 0px 0px;
  padding: 0px 10px 30px 10px;
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards .icon-container .shade-bg.pink-shape {
  background-image: url(../assets/images/pink-shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards .icon-container .shade-bg.black-shape {
  background-image: url(../assets/images/black-shape.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards .icon-container .shade-bg svg {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-10%);
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards .text-wrapper {
  background-color: #F0F0F0;
  padding: 5px 10px;
  border-radius: 0px 0px 20px 20px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyber-solution-wrapper .top-solution-wrapper .solution-common-cards .text-wrapper p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
  margin-bottom: 0px;
  text-align: center;
}
.cyber-solution-wrapper .main-content .hide-desktop {
  visibility: hidden;
}
.cyber-solution-wrapper .main-content .phone-tooltip {
  width: 300px;
  margin: auto;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 20px;
  transition: opacity 0.3s;
  text-align: center;
}
.cyber-solution-wrapper .main-content .phone-tooltip.active {
  visibility: visible;
}
.cyber-solution-wrapper .main-content .phone-tooltip h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: var(--primary);
}
.cyber-solution-wrapper .main-content .phone-tooltip p {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 0px;
}
.cyber-solution-wrapper .main-content .circle-container {
  position: relative;
  width: 18vmax;
  height: 18vmax;
  margin: 15vmax auto;
}
.cyber-solution-wrapper .main-content .circle-container .center-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item {
  position: absolute;
  width: 6vmax;
  height: 6vmax;
  background: linear-gradient(90deg, #DFDFDF 0.05%, #E1E1E1 3.04%, #F2F2F2 30.98%, #FCFCFC 60.91%, #FFFFFF 99.82%);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid #e1e1e1;
  outline: 6px solid #fff;
  transition: all 0.5s ease;
  box-shadow: 0px 2px 6.6px 0px rgba(0, 0, 0, 0.1098039216);
  z-index: 999;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item:hover svg, .cyber-solution-wrapper .main-content .circle-container .circle-item.active svg {
  transition: all 0.5s ease;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item:hover svg path, .cyber-solution-wrapper .main-content .circle-container .circle-item.active svg path {
  fill: var(--primary);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item:hover .stick, .cyber-solution-wrapper .main-content .circle-container .circle-item.active .stick {
  transition: all 0.5s ease;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item:hover .stick path, .cyber-solution-wrapper .main-content .circle-container .circle-item.active .stick path {
  stroke: var(--primary);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item:hover .tooltip-text, .cyber-solution-wrapper .main-content .circle-container .circle-item.active .tooltip-text {
  display: block;
  opacity: 1;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item:hover h2, .cyber-solution-wrapper .main-content .circle-container .circle-item.active h2 {
  color: var(--primary);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item svg {
  width: 40px;
  height: auto;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item h2 {
  font-size: 0.8vmax;
  font-weight: 400;
  color: #383838;
  text-align: center;
  margin-bottom: 0px;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item .tooltip-text {
  display: none;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 20px;
  position: absolute;
  transition: opacity 0.3s;
  z-index: 100;
  box-shadow: 0px 1px 4.8px 0px rgba(0, 0, 0, 0.2196078431);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item .tooltip-text h3 {
  font-weight: 500;
  font-size: 0.9vmax;
  line-height: normal;
  text-align: center;
  color: var(--primary);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item .tooltip-text p {
  font-weight: 400;
  font-size: 0.9vmax;
  line-height: 23.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 0px;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item .tooltip-text::after {
  content: "";
  position: absolute;
  left: -27px;
  top: 15%;
  background-image: url(../assets/images/arrow-tooltip.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-1 .tooltip-text {
  bottom: 45%;
  left: 50%;
  transform: translateX(35%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-1 .tooltip-text::after {
  left: -28px;
  top: 60%;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-1 .stick {
  position: absolute;
  bottom: -40%;
  transform: rotate(319deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-2 .tooltip-text {
  bottom: -40%;
  left: 50%;
  transform: translateX(36%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-2 .tooltip-text::after {
  left: -28px;
  top: 12%;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-2 .stick {
  position: absolute;
  left: -24%;
  bottom: -24%;
  transform: rotate(365deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-3 .tooltip-text {
  bottom: -40%;
  left: 50%;
  transform: translateX(36%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-3 .tooltip-text::after {
  left: -28px;
  top: 12%;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-3 .stick {
  position: absolute;
  top: 40%;
  left: -48%;
  transform: rotate(48deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-4 .tooltip-text {
  bottom: -40%;
  left: 50%;
  transform: translateX(36%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-4 .tooltip-text::after {
  left: -28px;
  top: 12%;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-4 .stick {
  position: absolute;
  top: -28%;
  left: -22%;
  transform: rotate(95deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-5 .tooltip-text {
  bottom: -90%;
  left: 50%;
  transform: translateX(33%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-5 .stick {
  position: absolute;
  top: -44%;
  transform: rotate(138deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-6 .tooltip-text {
  bottom: -50%;
  left: -35%;
  transform: translateX(-100%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-6 .tooltip-text::after {
  right: -27px;
  top: 12%;
  left: unset;
  transform: rotate(180deg);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-6 .stick {
  position: absolute;
  top: -23%;
  right: -27%;
  transform: rotate(180deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-7 .tooltip-text {
  bottom: -50%;
  left: -35%;
  transform: translateX(-100%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-7 .tooltip-text::after {
  right: -27px;
  top: 12%;
  left: unset;
  transform: rotate(180deg);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-7 .stick {
  position: absolute;
  top: 28%;
  right: -48%;
  transform: rotate(228deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-8 .tooltip-text {
  bottom: -35%;
  left: -35%;
  transform: translateX(-100%);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-8 .tooltip-text::after {
  right: -27px;
  top: 12%;
  left: unset;
  transform: rotate(180deg);
}
.cyber-solution-wrapper .main-content .circle-container .circle-item.item-8 .stick {
  position: absolute;
  bottom: -30%;
  right: -20%;
  transform: rotate(276deg);
  z-index: -99;
  height: 2vmax !important;
}
.cyber-solution-wrapper .main-content .circle-container .item-1 {
  top: -43%;
  left: 50%;
  transform: translate(-50%, 0);
}
.cyber-solution-wrapper .main-content .circle-container .item-2 {
  top: -5%;
  left: 106%;
  transform: translate(-50%, -50%);
}
.cyber-solution-wrapper .main-content .circle-container .item-3 {
  top: 50%;
  left: 100%;
  transform: translate(38%, -58%);
}
.cyber-solution-wrapper .main-content .circle-container .item-4 {
  top: 100%;
  left: 100%;
  transform: translate(-35%, -30%);
}
.cyber-solution-wrapper .main-content .circle-container .item-5 {
  top: 100%;
  left: 50%;
  transform: translate(-45%, 34%);
}
.cyber-solution-wrapper .main-content .circle-container .item-6 {
  top: 100%;
  left: 0%;
  transform: translate(-65%, -30%);
}
.cyber-solution-wrapper .main-content .circle-container .item-7 {
  top: 50%;
  left: -29%;
  transform: translate(-50%, -50%);
}
.cyber-solution-wrapper .main-content .circle-container .item-8 {
  top: -6%;
  left: -6%;
  transform: translate(-50%, -50%);
}
.cyber-solution-wrapper .shapes-img img:nth-child(1) {
  position: absolute;
  top: 4vmax;
  left: 40px;
  width: 228px;
  height: auto;
}
.cyber-solution-wrapper .shapes-img img:nth-child(2) {
  position: absolute;
  bottom: 4vmax;
  right: 40px;
  width: 228px;
  height: auto;
}
.cyber-solution-wrapper .shapes-img img:nth-child(3) {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 350px;
  height: auto;
}
.cyber-solution-wrapper .shapes-img img:nth-child(4) {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 350px;
  height: auto;
  transform: rotate(180deg);
}

.our-partners {
  background-color: var(--primary);
  padding: 40px 0px;
  overflow: hidden;
}
.our-partners .left-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.our-partners .left-details h2 {
  font-weight: 600;
  font-size: 52px;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
}
.our-partners .left-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 30.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #fff;
  margin-bottom: 0px;
}
.our-partners .partners-list ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 24px;
}
.our-partners .partners-list ul li {
  list-style-type: none;
  border: 1px dashed #000000;
  background-color: #fff;
  padding: 33px 15px;
  border-radius: 8px;
  display: grid;
  place-content: center;
  transition: all 0.4s ease-in-out;
  width: 29%;
}
.our-partners .partners-list ul li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/0.2;
}
.our-partners .partners-list ul li:hover {
  transform: translateY(-3px);
}

.testing-we-do-wrapper {
  padding: 0px 0px;
  overflow: hidden;
  background-color: #F6F6F6;
  position: relative;
}
.testing-we-do-wrapper .shade-arrow {
  position: absolute;
  top: 50px;
  right: 2%;
}
.testing-we-do-wrapper .left-details-security h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #1B1435;
  margin-bottom: 25px;
}
.testing-we-do-wrapper .left-details-security h2 span {
  color: var(--primary);
}
.testing-we-do-wrapper .left-details-security p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 20px;
}
.testing-we-do-wrapper .left-details-security .view-more-btn {
  color: var(--primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  border: 1px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.6s ease;
}
.testing-we-do-wrapper .left-details-security .view-more-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.testing-we-do-wrapper .security-details .circle-container {
  position: relative;
  width: 11vmax;
  height: 11vmax;
  margin: 5vmax auto;
  /* Positioning 5 items in a circular layout */
  /* Top center */
  /* Top right */
  /* Bottom right */
  /* Bottom left */
  /* Top left */
}
.testing-we-do-wrapper .security-details .circle-container .center-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item {
  position: absolute;
  width: 10vmax;
  height: 10vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  z-index: -1;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item:hover svg {
  transition: all 0.6s ease;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item:hover svg path {
  fill: var(--primary);
  fill-opacity: unset;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item:hover .content svg {
  transition: all 0.6s ease;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item:hover .content svg path {
  fill: #fff;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item:hover .content p {
  color: #fff;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item svg {
  width: 100%;
  height: auto;
  transition: all 0.6s ease;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item .content {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5vmax;
  align-items: center;
  transition: all 0.5s ease;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item .content svg {
  width: 2vmax;
  height: 2vmax;
  transition: all 0.4s ease;
  transform: unset !important;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item .content p {
  font-weight: 400;
  font-size: 0.7vmax;
  line-height: 100%;
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-1 svg {
  transform: rotate(32deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-1 .content {
  top: 27%;
  left: 35%;
  transform: rotate(360deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-2 svg {
  transform: rotate(100deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-2 .content {
  top: 35%;
  left: 40%;
  transform: rotate(360deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-3 svg {
  transform: rotate(175deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-3 .content {
  top: 27%;
  left: 27%;
  transform: rotate(360deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-4 svg {
  transform: rotate(-116deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-4 .content {
  top: 27%;
  left: 22%;
  transform: rotate(360deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-5 svg {
  transform: rotate(-42deg);
}
.testing-we-do-wrapper .security-details .circle-container .circle-item.item-5 .content {
  top: 26%;
  left: 40%;
  transform: rotate(360deg);
}
.testing-we-do-wrapper .security-details .circle-container .item-1 {
  top: -19%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.testing-we-do-wrapper .security-details .circle-container .item-2 {
  top: 20%;
  left: 100%;
  transform: translate(-35%, -50%);
}
.testing-we-do-wrapper .security-details .circle-container .item-3 {
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
}
.testing-we-do-wrapper .security-details .circle-container .item-4 {
  top: 100%;
  left: 17%;
  transform: translate(-50%, -37%);
}
.testing-we-do-wrapper .security-details .circle-container .item-5 {
  top: 37%;
  left: -20%;
  transform: translate(-50%, -50%);
}

.we-support-wrapper {
  overflow: hidden;
  position: relative;
  padding: 3rem 0px;
}
.we-support-wrapper .support-cards-wrapper {
  background-image: url(../assets/images/support-card-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 5vmax;
}
.we-support-wrapper .support-cards-wrapper .common-cards {
  padding: 27px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  justify-content: center;
  cursor: pointer;
}
.we-support-wrapper .support-cards-wrapper .common-cards img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.we-support-wrapper .support-cards-wrapper .common-cards h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.we-support-wrapper .support-cards-wrapper .common-cards:hover img {
  animation: rotateOnce 0.6s ease-in-out 0.1s 1;
}
@keyframes rotateOnce {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.frame-list-wrapper {
  padding: 50px 0px;
  overflow: hidden;
  position: relative;
}
.frame-list-wrapper .shade-arrow1 {
  position: absolute;
  top: 20px;
  right: 2%;
}
.frame-list-wrapper .shade-arrow2 {
  position: absolute;
  bottom: 120px;
  left: 8%;
  width: 120px;
}
.frame-list-wrapper .frame-card-common-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid #D3D3D3;
  border-radius: 20px;
  transition: all 0.4s ease;
  will-change: transform;
  transform-origin: center;
}
.frame-list-wrapper .frame-card-common-wrapper:hover {
  box-shadow: 0px 2px 16px -2px #ccc;
  transform: scale(1.01);
}
.frame-list-wrapper .frame-card-common-wrapper .left-company-logo {
  background-color: #F5F5F5;
  border-radius: 20px;
  display: grid;
  place-content: center;
  padding: 25px;
}
.frame-list-wrapper .frame-card-common-wrapper .left-company-logo img {
  width: 102px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.frame-list-wrapper .frame-card-common-wrapper .details-right h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: #000000;
  margin-bottom: 15px;
}
.frame-list-wrapper .frame-card-common-wrapper .details-right p {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: var(--primary);
  margin-bottom: 0px;
  cursor: pointer;
}
.frame-list-wrapper .view-all-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vmax;
  margin-bottom: 30px;
}
.frame-list-wrapper .view-all-wrap .view-all-frame-btn {
  background-color: var(--primary);
  box-shadow: 3px 5px 5.8px -2px rgba(0, 0, 0, 0.1215686275);
  border-radius: 9px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #fff;
  padding: 14px 28px;
  transition: all 0.4s ease;
  border: 1px solid var(--primary);
}
.frame-list-wrapper .view-all-wrap .view-all-frame-btn:hover {
  background-color: #fff;
  color: var(--primary);
  border: 1px dashed var(--primary);
}

.our-service-wrapper {
  padding: 80px 0px;
  overflow: hidden;
  background-color: #F6F6F6;
}
.our-service-wrapper .left-service-heading h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #1B1435;
  margin-bottom: 25px;
}
.our-service-wrapper .left-service-heading h2 span {
  color: var(--primary);
}
.our-service-wrapper .left-service-heading p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 40px;
}
.our-service-wrapper .left-service-heading .view-more-btn {
  color: var(--primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  border: 1px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.6s ease;
}
.our-service-wrapper .left-service-heading .view-more-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.our-service-wrapper .left-service-heading .shade-arrow1 {
  position: absolute;
  bottom: -60px;
  width: 125px;
  right: 0px;
}
.our-service-wrapper .service-list-wrap .card-container {
  width: 75%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  transition: all 0.5s ease-in-out;
}
.our-service-wrapper .service-list-wrap .card-container .card {
  width: 267px;
  padding: 18px 18px;
  border-radius: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 0.6px solid #DADADA;
}
.our-service-wrapper .service-list-wrap .card-container .card:hover {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
}
.our-service-wrapper .service-list-wrap .card-container .card:hover .top-heading .title {
  color: var(--primary);
}
.our-service-wrapper .service-list-wrap .card-container .card.expanded {
  grid-row: span 2;
}
.our-service-wrapper .service-list-wrap .card-container .card.expanded .top-heading {
  flex-direction: column;
  align-items: flex-start;
}
.our-service-wrapper .service-list-wrap .card-container .card.expanded .top-heading img {
  width: 60px;
  height: 60px;
}
.our-service-wrapper .service-list-wrap .card-container .card:last-child.expanded {
  grid-column: 1/-1;
  width: 99%;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.our-service-wrapper .service-list-wrap .card-container .card:last-child.expanded .top-heading {
  align-items: center;
  margin-bottom: 0px;
  gap: 5px;
}
.our-service-wrapper .service-list-wrap .card-container .card .top-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.our-service-wrapper .service-list-wrap .card-container .card .top-heading img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.our-service-wrapper .service-list-wrap .card-container .card .top-heading .title {
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #000000;
  margin-bottom: 0px;
  transition: all 0.4s ease;
}
.our-service-wrapper .service-list-wrap .card-container .card .content {
  font-weight: 400;
  font-size: 13px;
  line-height: normal;
  letter-spacing: 0.51px;
  vertical-align: middle;
  overflow: hidden;
  transition: all 0.2s ease;
  color: #858585;
  margin-bottom: 0px;
}
.our-service-wrapper .service-list-wrap .card-container .card .content .more {
  display: none;
}
.our-service-wrapper .service-list-wrap .card-container .card .content #myBtn {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #000000;
  border: 0px;
  background-color: transparent;
}
.our-service-wrapper .service-list-wrap .shade-arrow2 {
  width: 120px;
  position: absolute;
  top: -40px;
  right: -82px;
}

.get-protected {
  background: linear-gradient(100.62deg, #BE001F -48.28%, rgba(255, 255, 255, 0) 21.5%, #BE001F 174.1%);
  padding: 40px 0px;
  overflow: hidden;
}
.get-protected .details-wrapper h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 47px;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.get-protected .details-wrapper h2 span {
  color: var(--primary);
}
.get-protected .details-wrapper .get-protected {
  color: var(--primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  background: transparent;
  border: 1px solid var(--primary);
  padding: 12px 30px;
  border-radius: 9px;
  transition: all 0.6s ease;
}
.get-protected .details-wrapper .get-protected:hover {
  background-color: var(--primary);
  color: #fff;
}
.get-protected .right-badge-media img {
  width: 55%;
  height: auto;
  margin: auto;
  display: block;
}

.helping-company-wrapper {
  background-color: #fff;
  padding: 4vmax 0px;
  overflow: hidden;
  position: relative;
}
.helping-company-wrapper .shade-arrow1 {
  position: absolute;
  width: 115px;
  bottom: 30px;
  left: 40px;
}
.helping-company-wrapper .shade-arrow2 {
  position: absolute;
  width: 130px;
  right: 2%;
  top: 40%;
}
.helping-company-wrapper .helping-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vmax;
  margin-top: 5vmax;
  margin-bottom: 4vmax;
}
.helping-company-wrapper .helping-list .helping-cards {
  outline-offset: 10px;
  outline: 1px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  position: relative;
  box-shadow: 0px 0px 7.6px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #F3F3F3;
}
.helping-company-wrapper .helping-list .helping-cards.active::after {
  animation: rotate360 2s linear;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.helping-company-wrapper .helping-list .helping-cards img {
  width: 50px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
  mix-blend-mode: difference;
}
.helping-company-wrapper .helping-list .helping-cards p {
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  color: #000;
  margin-bottom: 0px;
}
.helping-company-wrapper .helping-list .helping-cards.card-1::after {
  content: "";
  background-image: url(./../assets/images/round-line-red.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -24%;
  left: -20%;
  position: absolute;
  width: 142%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}
.helping-company-wrapper .helping-list .helping-cards.card-2::after {
  content: "";
  background-image: url(./../assets/images/brown-red-line.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -24%;
  left: -20%;
  position: absolute;
  width: 142%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}
.helping-company-wrapper .helping-list .helping-cards.card-3::after {
  content: "";
  background-image: url(./../assets/images/round-line-red.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -24%;
  left: -20%;
  position: absolute;
  width: 142%;
  height: 147%;
  z-index: 99;
  transform: translate(0%, 0%);
}

.industry-we-serve {
  padding: 80px 0px;
  background-color: #F6F6F6;
  overflow: hidden;
  position: relative;
}
.industry-we-serve .shade-top {
  position: absolute;
  top: 4vmax;
  left: 40px;
  width: 228px;
  height: auto;
}
.industry-we-serve .shade-right {
  position: absolute;
  bottom: 4vmax;
  right: 40px;
  width: 228px;
  height: auto;
}
.industry-we-serve .industries-list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0px 3vmax;
}
.industry-we-serve .industries-list-wrap .common-industry-cards {
  border: 0.6px solid #DBDBDB;
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 5px;
  width: 230px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: all 0.3s ease;
  will-change: transform;
  transform-origin: top;
}
.industry-we-serve .industries-list-wrap .common-industry-cards:hover {
  border-color: var(--primary);
  margin-top: -8px;
}
.industry-we-serve .industries-list-wrap .common-industry-cards:hover img {
  filter: grayscale(0%);
}
.industry-we-serve .industries-list-wrap .common-industry-cards img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
  transition: filter 0.3s ease-in-out;
  filter: grayscale(100%);
}
.industry-we-serve .industries-list-wrap .common-industry-cards h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 0px;
}
.industry-we-serve .industries-list-wrap .common-industry-cards p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22.3px;
  letter-spacing: 0.51px;
  text-align: center;
  vertical-align: middle;
  color: #373737;
  width: 95%;
  margin-bottom: 0px;
}
.industry-we-serve .view-all-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vmax;
  margin-bottom: 30px;
  overflow: hidden;
}
.industry-we-serve .view-all-wrap .industry-btn {
  background-color: var(--primary);
  box-shadow: 3px 5px 5.8px -2px rgba(0, 0, 0, 0.1215686275);
  border-radius: 9px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #fff;
  padding: 14px 28px;
  transition: all 0.4s ease;
  border: 1px solid var(--primary);
}
.industry-we-serve .view-all-wrap .industry-btn:hover {
  background-color: #fff;
  color: var(--primary);
  border: 1px dashed var(--primary);
}

.our-client-wrapper {
  padding: 80px 0px;
  overflow: hidden;
  position: relative;
}
.our-client-wrapper .shade-arrow1 {
  position: absolute;
  width: 95px;
  bottom: 8rem;
  left: 40px;
}
.our-client-wrapper .shade-arrow2 {
  position: absolute;
  width: 130px;
  right: 2%;
  top: 15%;
}
.our-client-wrapper .client-list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: center;
  padding: 0px 3vmax;
}
.our-client-wrapper .client-list-wrap .client-cards {
  border: 1px dashed #A7A7A7;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 5px;
  width: 205px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease-in-out;
}
.our-client-wrapper .client-list-wrap .client-cards:hover {
  border-color: var(--primary);
}
.our-client-wrapper .client-list-wrap .client-cards:hover img {
  filter: grayscale(0%);
}
.our-client-wrapper .client-list-wrap .client-cards img {
  aspect-ratio: 1.9/1.3;
  width: 48%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease-in-out;
  filter: grayscale(100%);
}
.our-client-wrapper .down-arrow-btn {
  margin: auto;
  display: block;
  visibility: hidden;
  padding: 10px;
  background: transparent;
  border: 0px;
  width: 50px;
  height: 50px;
  margin-top: 30px;
}

.customer-says-wrapper {
  background-color: #F6F6F6;
  overflow: hidden;
  position: relative;
}
.customer-says-wrapper .shade-arrow1 {
  position: absolute;
  width: 130px;
  left: 0px;
  top: 0px;
}
.customer-says-wrapper .shade-arrow2 {
  position: absolute;
  width: 130px;
  right: 0px;
  bottom: 0px;
}
.customer-says-wrapper .customer-left-heading {
  margin: 5vmax 0px;
}
.customer-says-wrapper .customer-left-heading h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #1B1435;
  margin-bottom: 25px;
}
.customer-says-wrapper .customer-left-heading h2 span {
  color: var(--primary);
}
.customer-says-wrapper .customer-left-heading p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #626262;
  margin-bottom: 40px;
}
.customer-says-wrapper .customer-left-heading .view-more-btn {
  color: var(--primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  border: 1px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.6s ease;
  background-color: #fff;
}
.customer-says-wrapper .customer-left-heading .view-more-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.customer-says-wrapper .review-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
  max-height: 25vmax;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.customer-says-wrapper .review-container .fade-mask {
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.customer-says-wrapper .review-container .column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.customer-says-wrapper .review-container .column .review-card {
  background: #fff;
  padding: 15px 15px;
  box-shadow: 0px 0px 26.7px 9px rgba(0, 0, 0, 0.0509803922);
  border-radius: 16px;
}
.customer-says-wrapper .review-container .column .review-card .profile-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.customer-says-wrapper .review-container .column .review-card .profile-wrap img:first-child {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-says-wrapper .review-container .column .review-card .profile-wrap img {
  width: 40%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-says-wrapper .review-container .column .review-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #787878;
  margin: 26px 0px;
  position: relative;
}
.customer-says-wrapper .review-container .column .review-card p::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(./../assets/images/quote-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  bottom: -20px;
  right: 0px;
}
.customer-says-wrapper .review-container .column .review-card p::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(./../assets/images/quote-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -23px;
}
.customer-says-wrapper .review-container .column .review-card h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 10px;
}
.customer-says-wrapper .review-container .column .review-card h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 0px;
}
.customer-says-wrapper .review-container .scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 25px;
}

.why-choose-us {
  padding: 4vmax 0px;
  overflow: hidden;
  position: relative;
}
.why-choose-us .listing-wrapper {
  display: flex;
  gap: 20px;
}
.why-choose-us .listing-wrapper hr {
  border-top: 1px solid #9f9f9f;
}
.why-choose-us .listing-wrapper .vertical-line {
  border-right: 1px solid #DCDCDC;
  height: 300px;
}
.why-choose-us .listing-wrapper .right-column {
  padding-top: 5vmax;
}
.why-choose-us .listing-wrapper .common-list-card {
  display: flex;
  gap: 15px;
}
.why-choose-us .listing-wrapper .common-list-card img {
  width: 58px;
  height: 58px;
  -o-object-fit: cover;
     object-fit: cover;
}
.why-choose-us .listing-wrapper .common-list-card .detail-wrap h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 6px;
}
.why-choose-us .listing-wrapper .common-list-card .detail-wrap p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #373737;
  margin-bottom: 0px;
}
.why-choose-us .right-heading-content {
  margin-bottom: 4vmax;
}
.why-choose-us .right-heading-content h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #1B1435;
  margin-bottom: 25px;
}
.why-choose-us .right-heading-content h2 span {
  color: var(--primary);
}
.why-choose-us .right-heading-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 34.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 40px;
}
.why-choose-us .right-heading-content .discover-more {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  border: 1px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.6s ease;
  background-color: var(--primary);
}
.why-choose-us .right-heading-content .discover-more:hover {
  background-color: #fff;
  color: var(--primary);
  border-style: dashed;
}
.why-choose-us .right-heading-content .shade-right {
  position: absolute;
  bottom: 0vmax;
  right: -15rem;
  width: 200px;
  height: auto;
}

.elite-team-wrapper {
  padding: 30px 0px;
  overflow: hidden;
}
.elite-team-wrapper .score-archived {
  border: 1px dashed var(--primary);
  border-radius: 20px;
  padding: 20px 15px;
  background-color: #fff;
  margin-bottom: 20px;
}
.elite-team-wrapper .score-archived h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: var(--primary);
  margin-bottom: 10px;
}
.elite-team-wrapper .score-archived p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #555454;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  margin-bottom: 0px;
}
.elite-team-wrapper .team-group {
  margin: 60px 0px;
}
.elite-team-wrapper .team-group img {
  width: 75%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
}

.lastest-blog {
  overflow: hidden;
}
.lastest-blog .blog-wrapper {
  margin: 40px 0px;
}
.lastest-blog .blog-wrapper .common-blog-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details {
  background-color: #fff;
  box-shadow: 0px 4px 9.2px 1px rgba(0, 0, 0, 0.168627451);
  border-radius: 15px;
  padding: 15px;
  padding-bottom: 5px;
  width: 85%;
  margin: auto;
  margin-top: -65px;
  z-index: 99;
  position: relative;
  margin-bottom: 15px;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details h3,
.lastest-blog .blog-wrapper .common-blog-card .blog-details h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #787878;
  display: flex;
  align-items: center;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details h3 img,
.lastest-blog .blog-wrapper .common-blog-card .blog-details h4 img {
  width: 18px;
  height: 18px;
  -o-object-fit: none;
     object-fit: none;
  margin-right: 10px;
  border-radius: 0px;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details p {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.23px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0px;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details .right-arrow {
  border: 0px;
  background-color: transparent;
  border-radius: 50%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px;
  margin-left: auto;
  display: block;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details .right-arrow svg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details .right-arrow:hover svg path {
  stroke: #fff;
}
.lastest-blog .blog-wrapper .common-blog-card .blog-details .right-arrow:hover svg rect {
  stroke: var(--primary);
  fill: var(--primary);
}
.lastest-blog .blog-wrapper .carousel-control-prev {
  height: -moz-fit-content;
  height: fit-content;
  right: 60px;
  top: -90px;
  left: unset;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 9;
}
.lastest-blog .blog-wrapper .carousel-control-prev .carousel-control-prev-icon {
  transition: all 0.3s ease;
}
.lastest-blog .blog-wrapper .carousel-control-prev .carousel-control-prev-icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.lastest-blog .blog-wrapper .carousel-control-prev .carousel-control-prev-icon:hover svg path {
  stroke: var(--primary);
}
.lastest-blog .blog-wrapper .carousel-control-next {
  height: -moz-fit-content;
  height: fit-content;
  right: 0px;
  top: -90px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 9;
}
.lastest-blog .blog-wrapper .carousel-control-next .carousel-control-next-icon {
  transition: all 0.3s ease;
}
.lastest-blog .blog-wrapper .carousel-control-next .carousel-control-next-icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.lastest-blog .blog-wrapper .carousel-control-next .carousel-control-next-icon:hover svg path {
  stroke: var(--primary);
}

.footer-banner {
  padding: 5vmax 0px;
  background-image: url(./../assets/images/footer-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-banner .banner-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-banner .banner-content h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 45.2px;
  letter-spacing: 0.23px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #fff;
}
.footer-banner .banner-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 29.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #fff;
}
.footer-banner .banner-content .schedule-btn {
  background-color: #fff;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--primary);
  padding: 12px 20px;
  transition: all 0.3s ease;
}
.footer-banner .banner-content .schedule-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.footer-wrapper {
  background-color: #F0F4FD;
  padding: 3vmax 0px;
  padding-bottom: 20px;
  position: relative;
}
.footer-wrapper .shade-arrow1 {
  width: 100px;
  top: 0px;
  left: 0px;
  position: absolute;
  transform: rotate(270deg);
}
.footer-wrapper .shade-arrow2 {
  width: 100px;
  top: 0px;
  right: 0px;
  position: absolute;
}
.footer-wrapper .company-details img {
  width: 179px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-wrapper .company-details p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24.3px;
  letter-spacing: 0.51px;
  vertical-align: middle;
  color: #000000;
  margin-top: 20px;
}
.footer-wrapper .common-links h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  vertical-align: middle;
  color: #000000;
  margin-bottom: 30px;
}
.footer-wrapper .common-links ul {
  padding: 0px;
  margin: 0px;
}
.footer-wrapper .common-links ul li {
  list-style-type: none;
}
.footer-wrapper .common-links ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  vertical-align: middle;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-wrapper .common-links ul li a:hover {
  color: var(--primary);
}
.footer-wrapper .copyright-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding-top: 26px;
  margin-top: 50px;
}
.footer-wrapper .copyright-container .social-media {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-wrapper .copyright-container .social-media a {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(0, 0, 0, 0.5019607843);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.4s ease;
}
.footer-wrapper .copyright-container .social-media a svg path {
  fill: rgba(0, 0, 0, 0.6784313725);
}
.footer-wrapper .copyright-container .social-media a:hover {
  border-color: var(--primary);
}
.footer-wrapper .copyright-container .social-media a:hover svg {
  transition: all 0.4s ease;
}
.footer-wrapper .copyright-container .social-media a:hover svg path {
  fill: var(--primary);
}
.footer-wrapper .copyright-container .social-media p {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.42px;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.6784313725);
  margin-bottom: 0px;
}
.footer-wrapper .copyright-container .privacy-policy {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-wrapper .copyright-container .privacy-policy a {
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.6784313725);
  margin-bottom: 0px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-wrapper .copyright-container .privacy-policy a:hover {
  color: var(--primary);
}

@media (min-width: 1440px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1280px;
  }
}
.common-left-heading h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 49px;
  margin-bottom: 20px;
  color: #1B1717;
}
.common-left-heading h3 span {
  color: var(--primary);
}

.common-arrow-list-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.common-arrow-list-wrapper .arrow-list-wrap {
  background-color: #F0F0F0;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 30%;
  height: 56px;
  transition: all 0.5s ease;
}
.common-arrow-list-wrapper .arrow-list-wrap:hover {
  background-color: var(--primary);
}
.common-arrow-list-wrapper .arrow-list-wrap:hover p {
  color: #fff;
}
.common-arrow-list-wrapper .arrow-list-wrap:hover a {
  background-color: #fff;
}
.common-arrow-list-wrapper .arrow-list-wrap p {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  margin-bottom: 0px;
}
.common-arrow-list-wrapper .arrow-list-wrap a {
  background-color: rgba(190, 0, 31, 0.1490196078);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-arrow-list-wrapper .arrow-list-wrap a img {
  width: 12px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0px;
}

.common-float-wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.common-float-wrap a {
  animation: move 2s infinite alternate-reverse;
}
.common-float-wrap a img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.common-float-wrap p {
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  color: #000000;
}
.common-float-wrap.whatapp-float-btn {
  position: fixed;
  left: 2%;
  bottom: 6%;
}
.common-float-wrap.leave-us-msg {
  position: fixed;
  right: 2%;
  bottom: 6%;
}
@keyframes move {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(8px);
  }
}

.leave-msg-modal .modal-header {
  border-bottom: 0px;
  padding: 10px;
  padding-bottom: 0px;
}
.leave-msg-modal h3 {
  font-size: 16px;
  color: var(--active);
  margin-bottom: 1rem;
  line-height: normal;
}
.leave-msg-modal .leave-msg-wrapper .field-icon {
  position: absolute;
  right: 1px;
  bottom: 15px;
  width: 38px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}
.leave-msg-modal .leave-msg-wrapper .form-label {
  margin-bottom: 3px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.leave-msg-modal .leave-msg-wrapper .form-label span {
  color: var(--primary);
}
.leave-msg-modal .leave-msg-wrapper .form-control {
  border-radius: 7px;
  background: #FFF;
  padding: 12px 15px;
  border-color: #848484;
}
.leave-msg-modal .leave-msg-wrapper .form-control::-moz-placeholder {
  color: #9A9A9A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.leave-msg-modal .leave-msg-wrapper .form-control::placeholder {
  color: #9A9A9A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.leave-msg-modal .leave-msg-wrapper .form-control:focus {
  box-shadow: unset;
  border-color: var(--primary);
}
.leave-msg-modal .leave-msg-wrapper .connect-btn {
  width: 50%;
  margin: auto;
  margin-top: 15px !important;
  background-color: var(--primary);
  color: #fff;
  border: 0px;
  padding: 12px;
  border-radius: 8px;
}

.pagination-wrapper {
  margin-top: 3rem;
}
.pagination-wrapper .pagination {
  gap: 10px;
  align-items: center;
}
.pagination-wrapper .pagination .page-item .page-link {
  border: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: unset;
}
.pagination-wrapper .pagination .page-item .page-link .arrow {
  width: 25px;
  height: 25px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 20px;
}/*# sourceMappingURL=style.css.map */