@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.home-banner {
  display: flex;
  position: relative;
  margin-top: var(--headerheight);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .home-banner {
    overflow: initial;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-a);
}
.home-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .home-banner .container {
    max-width: 980px;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .container {
    padding: 70px 0 40px 0;
  }
}
.home-banner .left {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.home-banner .left.tab-section .tab-nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home-banner .left.tab-section .tab-nav {
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .left.tab-section .tab-nav {
    gap: 40px;
  }
}
.home-banner .left.tab-section .tab-nav li {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: white;
  position: relative;
  padding-bottom: 15px;
  opacity: 0.4;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .home-banner .left.tab-section .tab-nav li {
    font-size: 14px;
  }
}
.home-banner .left.tab-section .tab-nav li::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  height: 1px;
  width: 0;
  background: white;
  transition: 0.5s ease;
}
.home-banner .left.tab-section .tab-nav li.active {
  opacity: 1;
}
.home-banner .left.tab-section .tab-nav li.active::before {
  width: 100%;
}
.home-banner .left.tab-section .tab-nav li figure {
  width: 24px;
  height: 24px;
}
.home-banner .left.tab-section .tab-nav li figure svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-banner .left .tab-nav-content .tabs {
  opacity: 0;
  transition: 0.9s ease;
}
@media only screen and (max-width: 768px) {
  .home-banner .left .tab-nav-content .tabs {
    text-align: center;
  }
}
.home-banner .left .tab-nav-content .tabs.active {
  opacity: 1;
}
.home-banner .left .tab-nav-content .tabs h1 {
  font-weight: 600;
  font-size: 35px;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 18px;
  max-width: 622px;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-banner .left .tab-nav-content .tabs h1 {
    max-width: 70%;
    line-height: 1.2;
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .left .tab-nav-content .tabs h1 {
    text-align: center;
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .left .tab-nav-content .tabs h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
.home-banner .left .tab-nav-content .tabs p {
  font-family: Lato;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  width: 455px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home-banner .left .tab-nav-content .tabs p {
    margin: 10px auto 0;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .left .tab-nav-content .tabs p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    width: auto;
  }
}
.home-banner .left .tab-nav-content .tabs ul {
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .home-banner .left .tab-nav-content .tabs ul {
    text-align: center;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .left .tab-nav-content .tabs ul {
    flex-direction: column;
    gap: 10px;
  }
}
.home-banner .left .tab-nav-content .tabs ul li:first-child {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media only screen and (max-width: 540px) {
  .home-banner .left .tab-nav-content .tabs ul li {
    line-height: 2;
  }
}
.home-banner .left .tab-nav-content .tabs ul li a {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 6px 12px;
  border-radius: 25px;
}
.home-banner .left .tab-nav-content .tabs ul li a:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
}
.home-banner .left .tab-nav-content .tabs .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
  margin-top: 30px;
}
.home-banner .left .tab-nav-content .tabs .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-banner .left .tab-nav-content .tabs .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-banner .left .tab-nav-content .tabs .custom-btn:hover::before {
  opacity: 1;
}
.home-banner .left .tab-nav-content .tabs .custom-btn:hover figure svg path {
  fill: #fff;
}
.home-banner .left .tab-nav-content .tabs .custom-btn figure {
  line-height: 0;
  position: relative;
  z-index: 1;
}
.home-banner .left .tab-nav-content .tabs .custom-btn figure svg path {
  transition: 0.5s ease;
}
.home-banner .left .tab-nav-content .tabs .custom-btn span {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}
.home-banner .right {
  position: relative;
  width: 402px;
  height: 437px;
}
@media only screen and (max-width: 1024px) {
  .home-banner .right {
    width: 300px;
    height: 327px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .right {
    display: none;
  }
}
.home-banner .right .tab-nav-content {
  width: 100%;
  height: 100%;
}
.home-banner .right figure {
  position: absolute;
  -webkit-mask-image: url(/assets/images/ig-vector.png);
          mask-image: url(/assets/images/ig-vector.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  aspect-ratio: 1.2;
  line-height: 0;
  background: white;
  transition: all 1.5s ease-in-out;
  width: 100%;
  height: 100%;
}
.home-banner .right figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-secA {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .home-secA {
    padding: 50px 0 30px 0;
  }
}
.home-secA .container {
  text-align: center;
}
.home-secA .container .heading {
  max-width: 50%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .home-secA .container .heading {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .container .heading {
    width: 100%;
    max-width: 100%;
  }
}
.home-secA .container .heading h2 {
  font-weight: 300;
  font-size: 36px;
}
@media only screen and (max-width: 540px) {
  .home-secA .container .heading h2 {
    font-size: 26px;
  }
}
.home-secA .container .heading h2 strong {
  font-weight: 700;
}
.home-secA .container .industries-slider {
  padding: 40px 0 20px 0;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .home-secA .container .industries-slider {
    padding: 30px 0px;
  }
}
.home-secA .container .industries-slider .swiper-nav {
  display: flex;
  justify-content: space-between;
  width: 93%;
  position: absolute;
  top: 55%;
  left: -2%;
  translate: 0% -50%;
  z-index: 2;
  max-width: 110%;
}
@media only screen and (max-width: 1024px) {
  .home-secA .container .industries-slider .swiper-nav {
    width: 104%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .container .industries-slider .swiper-nav {
    display: none;
  }
}
.home-secA .container .industries-slider .swiper-nav button {
  width: 45px;
  height: 45px;
  background-color: #04D6CD;
  border-radius: 50%;
  border: none;
}
.home-secA .container .industries-slider .swiper-nav button.swiper-prev:hover svg {
  translate: -5px 0;
}
.home-secA .container .industries-slider .swiper-nav button.swiper-next:hover svg {
  translate: 5px 0;
}
.home-secA .container .industries-slider .swiper-nav button svg {
  transition: 0.3s ease;
  vertical-align: middle;
}
.home-secA .container .industries-slider .swiper-nav button svg path {
  fill: var(--black);
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide {
  background: rgba(255, 255, 255, 0.0509803922);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 25px 20px;
  border: 1px solid #004498;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .home-secA .container .industries-slider .industries-slider-slider .swiper-slide {
    background: rgba(255, 255, 255, 0.29);
  }
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide.opacityset {
  opacity: 0.2;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide svg path {
  stroke: #43ADFF;
  transition: 0.5s ease;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide:hover {
  background: linear-gradient(270deg, #04D6CD 0%, #05A9A2 100%);
  border: 1px solid #04D6CD;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide:hover .flex-box figure svg path {
  stroke: var(--white);
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide:hover .flex-box .info h5 {
  color: var(--white);
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide:hover .flex-box .info p {
  color: var(--white);
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  transition: 0.5s ease;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box figure {
  width: 50px;
  height: 50px;
  flex: 0 1 20%;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box figure svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box figure svg path {
  stroke: #004498;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box .info {
  flex: 0 1 70%;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box .info h5 {
  font-weight: 700;
  font-size: 18px;
  color: #004498;
  margin-bottom: 8px;
  transition: 0.5s ease;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide .flex-box .info p {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  transition: 0.5s ease;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide-active {
  background: linear-gradient(270deg, #04D6CD 0%, #05A9A2 100%);
  border: 1px solid #04D6CD;
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide-active .flex-box figure svg path {
  stroke: var(--white);
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide-active .flex-box .info h5 {
  color: var(--white);
}
.home-secA .container .industries-slider .industries-slider-slider .swiper-slide-active .flex-box .info p {
  color: var(--white);
}

.home-secB {
  padding: 50px 0;
  background: #F4F4F4;
}
.home-secB .heading {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .home-secB .heading {
    flex-direction: column;
    gap: 10px;
  }
}
.home-secB .heading h2 {
  font-weight: 700;
  font-size: 36px;
  color: #000000;
}
@media only screen and (max-width: 540px) {
  .home-secB .heading h2 {
    font-size: 23px;
  }
}
.home-secB .heading .rtt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .home-secB .heading .rtt {
    flex: 0 1 36%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading .rtt {
    gap: 10px;
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
.home-secB .heading .rtt .fil {
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  .home-secB .heading .rtt .fil {
    font-size: 18px;
  }
}
.home-secB .heading .rtt .form {
  display: flex;
  gap: 20px;
}
.home-secB .heading .rtt .form .form-group .custom-select {
  border-bottom: 1px solid #666666;
  padding: 0 0 7px 0;
}
.home-secB .heading .rtt .form .form-group .custom-select .list {
  left: auto;
}
.home-secB .heading .rtt .form .form-group .custom-select .list li {
  white-space: nowrap;
}
.home-secB .heading .rtt .form .form-group .custom-select span {
  color: #666666;
}
.home-secB .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .grid-box {
    grid-template-columns: repeat(1, 1fr);
    padding: 50px 0 30px 0;
  }
}
.home-secB .grid-box .grid-box-item {
  width: 100%;
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.0588235294);
  transition: 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .home-secB .grid-box .grid-box-item:nth-child(3) {
    grid-column: 1/-1;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .grid-box .grid-box-item:nth-child(3) {
    text-align: left;
  }
}
.home-secB .grid-box .grid-box-item .content {
  padding: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secB .grid-box .grid-box-item .content {
    padding: 20px;
  }
}
.home-secB .grid-box .grid-box-item .content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.home-secB .grid-box .grid-box-item .content .top .col:first-child span {
  font-weight: 400;
  font-size: 12px;
  border: 1px solid #C7C7C7;
  padding: 6px 18px;
  border-radius: 25px;
  color: #666666;
  display: inline-block;
  margin-bottom: 18px;
}
.home-secB .grid-box .grid-box-item .content .top .col:first-child .down-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  height: -moz-fit-content;
  height: fit-content;
}
.home-secB .grid-box .grid-box-item .content .top .col:first-child .down-btn p {
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  padding: 0;
}
.home-secB .grid-box .grid-box-item .content .top .col:last-child {
  width: 78px;
  height: 78px;
  border-radius: 5px;
  overflow: hidden;
}
.home-secB .grid-box .grid-box-item .content .top .col:last-child img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secB .grid-box .grid-box-item .content h4 {
  font-weight: 700;
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
}
.home-secB .grid-box .grid-box-item .content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  margin-bottom: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .home-secB .grid-box .grid-box-item .content p {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .grid-box .grid-box-item .content p {
    padding-bottom: 20px;
  }
}
.home-secB .grid-box .grid-box-item .content .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
  position: absolute;
  bottom: 7%;
}
.home-secB .grid-box .grid-box-item .content .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-secB .grid-box .grid-box-item .content .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secB .grid-box .grid-box-item .content .custom-btn:hover::before {
  opacity: 1;
}
.home-secB .grid-box .grid-box-item .content .custom-btn:hover figure svg path {
  fill: #fff;
}
.home-secB .grid-box .grid-box-item .content .custom-btn figure {
  line-height: 0;
  position: relative;
  z-index: 1;
}
.home-secB .grid-box .grid-box-item .content .custom-btn figure svg path {
  transition: 0.5s ease;
}
.home-secB .grid-box .grid-box-item .content .custom-btn span {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}
.home-secB .view-btn {
  margin: 0px 0 30px 0;
  text-align: center;
}
.home-secB .view-btn a {
  opacity: 1;
  padding: 8px 0px;
  color: #05A9A2;
  border-bottom: 1px solid #05A9A2;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
}
.home-secB .view-btn a svg {
  padding-left: 10px;
  transition: 0.3s ease;
  width: 30px;
}
.home-secB .view-btn a:hover {
  background: #05A9A2;
  color: var(--white);
  padding: 8px 10px;
}
.home-secB .view-btn a:hover svg {
  padding-left: 6px;
}
.home-secB .view-btn a:hover svg path {
  fill: white;
}

.home-secCC {
  padding: 50px 0;
  display: none;
}
.home-secCC .swiper-nav button {
  --size: 40px;
}
.home-secCC .upper-sec {
  padding: 0 !important;
}
.home-secCC .swiper-wrapper {
  padding: 50px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .home-secCC .swiper-wrapper {
    padding: 30px 0 0 0;
  }
}
.home-secCC .swiper-wrapper .swiper-slide {
  line-height: 0;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  border: 1px solid #D4D4D4;
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s ease;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item {
  width: 100%;
  position: relative;
  transition: 0.4s ease;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item:hover .flex .custom-btn {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item:hover .flex .custom-btn::before {
  opacity: 1;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item:hover .flex .custom-btn figure svg path {
  fill: #fff;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item:hover .top img {
  scale: 1.2;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item .top {
  height: 230px;
  overflow: hidden;
  position: relative;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item .top .col:first-child span {
  font-weight: 400;
  font-size: 12px;
  border: 1px solid #C7C7C7;
  padding: 6px 18px;
  border-radius: 25px;
  color: #666666;
  display: inline-block;
  margin-bottom: 18px;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item .top .col:first-child .down-btn p {
  font-weight: 400;
  font-size: 14px;
  color: #9A9A9A;
  padding: 10px;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item .top .col:last-child {
  width: 78px;
  height: 78px;
  border-radius: 250px;
  overflow: hidden;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item .top .col:last-child img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption {
  padding: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption {
    text-align: center;
    padding: 20px 10px 10px 10px;
  }
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption h4 {
  font-weight: 700;
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  padding-bottom: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption p {
    padding-bottom: 20px;
  }
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex {
    flex-direction: column;
    gap: 10px;
  }
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn:hover::before {
  opacity: 1;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn:hover figure svg path {
  fill: #fff;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn figure {
  line-height: 0;
  position: relative;
  z-index: 1;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn figure svg path {
  transition: 0.5s ease;
}
.home-secCC .swiper-wrapper .swiper-slide .grid-box-item figcaption .flex .custom-btn span {
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}

.home-secC {
  background: var(--gradient-a);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .home-secC {
    padding: 50px 0;
  }
}
.home-secC::before {
  content: "";
  position: absolute;
  bottom: -6%;
  left: 0;
  width: 406px;
  height: 437px;
  background: url("../../../assets/images/ig-footer-vector.svg") no-repeat;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  .home-secC::before {
    width: 100%;
    height: 273px;
  }
}
.home-secC h2 {
  font-weight: 300;
  font-size: 48px;
  line-height: 48px;
  color: white;
  text-align: center;
  margin-bottom: 50px;
}
.home-secC h2 strong {
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .home-secC h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
.home-secC .grid-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-secC .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-secC .grid-box .col {
  padding: 0px 30px 0px 20px;
  border-right: 1px solid #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .home-secC .grid-box .col {
    padding: 0px 30px 30px 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid-box .col {
    border-bottom: 1px solid #FFFFFF;
    border-right: none;
    text-align: center;
    margin-bottom: 20px;
    padding: 0px 30px 20px 20px;
  }
}
.home-secC .grid-box .col:last-child {
  border-right: none;
}
@media only screen and (max-width: 768px) {
  .home-secC .grid-box .col:last-child {
    border-right: 1px solid #FFFFFF;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid-box .col:last-child {
    border-bottom: none;
    border-right: none;
  }
}
.home-secC .grid-box .col p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  width: 204px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .home-secC .grid-box .col p {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .grid-box .col p {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid-box .col p {
    margin-bottom: 10px;
    width: 80%;
    margin: auto;
  }
}
.home-secC .grid-box .col .count-info h4 {
  font-weight: 400;
  font-size: 60px;
  line-height: 48px;
  color: var(--white);
}
@media only screen and (max-width: 768px) {
  .home-secC .grid-box .col .count-info h4 {
    font-size: 40px;
  }
}
.home-secC .center {
  text-align: center;
  margin: 70px 0 20px 0;
}
@media only screen and (max-width: 540px) {
  .home-secC .center {
    margin: 10px 0 20px 0;
  }
}
.home-secC .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
  font-size: 16px;
}
.home-secC .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-secC .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secC .custom-btn:hover::before {
  opacity: 1;
}
.home-secC .custom-btn span {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}

.home-secD {
  padding: 50px 0;
}
.home-secD .heading {
  text-align: center;
  padding-bottom: 50px;
}
.home-secD .heading h2 {
  font-weight: 700;
  font-size: 36px;
  color: var(--black);
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading h2 {
    width: 80%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading h2 {
    font-size: 28px;
    line-height: 1.2;
    width: 100%;
  }
}
.home-secD .heading figure {
  width: 52px;
  height: 56px;
  margin: auto;
  margin-bottom: 10px;
}
.home-secD .heading figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secD .tab-section {
  border: 1px solid #D5D5D5;
  border-radius: 5px;
  overflow: hidden;
}
.home-secD .tab-section .tab-nav {
  background: #F0F0F0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home-secD .tab-section .tab-nav {
    overflow-x: auto;
  }
}
.home-secD .tab-section .tab-nav li {
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.2196078431);
  position: relative;
}
.home-secD .tab-section .tab-nav li::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 10px;
  width: 0%;
  height: 4px;
  background: #05A9A2;
  transition: 0.5s ease;
}
.home-secD .tab-section .tab-nav li:last-child {
  border: none;
}
.home-secD .tab-section .tab-nav li.active::before {
  width: 90%;
}
.home-secD .tab-section .tab-nav li h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 5px;
}
.home-secD .tab-section .tab-nav li p {
  font-weight: 400;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .home-secD .tab-section .tab-nav li p {
    width: 190px;
  }
}
.home-secD .tab-section .tab-nav-content {
  padding: 30px;
}
.home-secD .tab-section .tab-nav-content .tabs {
  opacity: 0;
  transform: translateY(60%);
  transition: 1s ease;
}
.home-secD .tab-section .tab-nav-content .tabs.active {
  opacity: 1;
  transform: translateY(0%);
}
.home-secD .tab-section .tab-nav-content .flex-box {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .home-secD .tab-section .tab-nav-content .flex-box {
    flex-direction: column;
    gap: 20px;
  }
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child {
  flex: 0 1 50%;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  max-width: 442px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home-secD .tab-section .tab-nav-content .flex-box .col:first-child h3 {
    max-width: 100%;
  }
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child ul {
  padding-left: 20px;
  padding-bottom: 20px;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child ul li {
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  top: 6px;
  left: -16px;
  background: url("../../../assets/icon/right-arrow-ico.svg") no-repeat;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
  font-family: 14px;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child .custom-btn:hover::before {
  opacity: 1;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:first-child .custom-btn span {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:last-child {
  flex: 0 1 50%;
}
@media only screen and (max-width: 768px) {
  .home-secD .tab-section .tab-nav-content .flex-box .col:last-child {
    display: none;
  }
}
.home-secD .tab-section .tab-nav-content .flex-box .col:last-child figure {
  width: 480px;
  height: 389px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: auto;
  background: #B3B3B3;
}
.home-secD .tab-section .tab-nav-content .flex-box .col:last-child figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-secE {
  height: 65vh;
  overflow: hidden;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .home-secE {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE {
    height: 45vh;
  }
}
.home-secE .banner {
  height: 100%;
  position: relative;
}
.home-secE .banner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 386px;
  height: 100%;
  background: #05A9A2;
  clip-path: polygon(100% 0%, 0% 0%, 50% 100%);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .home-secE .banner::before {
    width: 286px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .banner::before {
    width: 46px;
  }
}
.home-secE .banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 386px;
  height: 100%;
  background: #39C1FF;
  clip-path: polygon(100% -90%, 10% 100%, 100% 100%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .home-secE .banner::after {
    width: 286px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .banner::after {
    width: 46px;
  }
}
.home-secE .banner .bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-secE .banner .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #004498 100%);
}
.home-secE .banner .bg video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secE .banner .bg .banner-content {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 100%;
  max-width: 431px;
}
@media only screen and (max-width: 540px) {
  .home-secE .banner .bg .banner-content {
    left: 5%;
    bottom: 20%;
  }
}
.home-secE .banner .bg .banner-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: var(--white);
  margin-bottom: 6px;
}
@media only screen and (max-width: 540px) {
  .home-secE .banner .bg .banner-content h2 {
    font-size: 26px;
  }
}
.home-secE .banner .bg .banner-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
  margin-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .home-secE .banner .bg .banner-content p {
    font-size: 16px;
    max-width: 80%;
  }
}
.home-secE .banner .bg .banner-content .custom-btn {
  display: initial;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
  font-family: 14px;
}
.home-secE .banner .bg .banner-content .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-secE .banner .bg .banner-content .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secE .banner .bg .banner-content .custom-btn:hover::before {
  opacity: 1;
}
.home-secE .banner .bg .banner-content .custom-btn span {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}

.home-secF {
  padding: 50px 0;
  background: #F4F4F4;
}
.home-secF .heading {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .home-secF .heading {
    flex-direction: column;
  }
}
.home-secF .heading h2 {
  font-weight: 700;
  font-size: 36px;
  color: #000000;
}
@media only screen and (max-width: 540px) {
  .home-secF .heading h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
.home-secF .heading .rtt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex: 0 1 26%;
}
@media only screen and (max-width: 1024px) {
  .home-secF .heading .rtt {
    flex: 0 1 36%;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF .heading .rtt {
    flex: 0 1 48%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .heading .rtt {
    gap: 10px;
    width: 100%;
  }
}
.home-secF .heading .rtt .fil {
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
}
.home-secF .heading .rtt .form {
  display: flex;
  gap: 20px;
}
.home-secF .heading .rtt .form .form-group .custom-select {
  border-bottom: 1px solid #666666;
  padding: 0 0 7px 0;
}
.home-secF .heading .rtt .form .form-group .custom-select .list {
  left: auto;
}
.home-secF .heading .rtt .form .form-group .custom-select .list li {
  white-space: nowrap;
}
.home-secF .heading .rtt .form .form-group .custom-select span {
  color: #666666;
}
.home-secF .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 50px 0;
}
@media only screen and (max-width: 991px) {
  .home-secF .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .home-secF .grid-box .grid-box-item:nth-child(3) {
    grid-column: 1/-1;
    text-align: center;
  }
  .home-secF .grid-box .grid-box-item:nth-child(3) figcaption {
    max-width: 60%;
    margin: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .grid-box {
    grid-template-columns: repeat(1, 1fr);
    padding: 50px 0 30px 0;
  }
  .home-secF .grid-box .grid-box-item figcaption {
    text-align: center;
  }
  .home-secF .grid-box .grid-box-item:nth-child(3) {
    grid-column: 1/-1;
    text-align: left;
  }
  .home-secF .grid-box .grid-box-item:nth-child(3) figcaption {
    max-width: 100%;
    margin: auto;
    text-align: center;
  }
}
.home-secF .grid-box .grid-box-item {
  width: 100%;
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  transition: 0.4s ease;
}
.home-secF .grid-box .grid-box-item:hover .bottom .custom-btn {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secF .grid-box .grid-box-item:hover .bottom .custom-btn::before {
  opacity: 1;
}
.home-secF .grid-box .grid-box-item:hover .bottom .custom-btn figure svg path {
  fill: #fff;
}
.home-secF .grid-box .grid-box-item:hover figure img {
  scale: 1.1;
}
.home-secF .grid-box .grid-box-item figure {
  height: 264px;
  overflow: hidden;
}
.home-secF .grid-box .grid-box-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.home-secF .grid-box .grid-box-item figcaption {
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  .home-secF .grid-box .grid-box-item figcaption {
    padding: 10px;
  }
}
.home-secF .grid-box .grid-box-item figcaption .top-btn {
  font-weight: 400;
  font-size: 12px;
  border: 1px solid #C7C7C7;
  padding: 6px 18px;
  border-radius: 25px;
  color: #666666;
  display: inline-block;
  margin-bottom: 18px;
}
.home-secF .grid-box .grid-box-item figcaption h4 {
  font-weight: 700;
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
}
.home-secF .grid-box .grid-box-item figcaption p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 90px;
  text-align: justify;
}
@media only screen and (max-width: 540px) {
  .home-secF .grid-box .grid-box-item figcaption p {
    padding-bottom: 20px;
  }
}
.home-secF .grid-box .grid-box-item figcaption .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 7%;
  width: 84%;
}
@media only screen and (max-width: 540px) {
  .home-secF .grid-box .grid-box-item figcaption .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 5%;
    width: 100%;
    left: 0;
    gap: 30px;
  }
}
.home-secF .grid-box .grid-box-item figcaption .bottom .read {
  border-radius: 5px;
  padding: 6px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  background: #E9EFF8;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: 0.5s ease;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-a);
  transition: 0.5s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn:hover {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn:hover::before {
  opacity: 1;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn:hover figure svg path {
  fill: #fff;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn figure {
  line-height: 0;
  position: relative;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn figure svg path {
  transition: 0.5s ease;
}
.home-secF .grid-box .grid-box-item figcaption .bottom .custom-btn span {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease;
}
.home-secF .view-btn {
  margin: 0px 0 30px 0;
  text-align: center;
}
.home-secF .view-btn a {
  opacity: 1;
  padding: 8px 0px;
  color: #05A9A2;
  border-bottom: 1px solid #05A9A2;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
}
.home-secF .view-btn a svg {
  padding-left: 10px;
  transition: 0.3s ease;
  width: 30px;
}
.home-secF .view-btn a:hover {
  background: #05A9A2;
  color: var(--white);
  padding: 8px 10px;
}
.home-secF .view-btn a:hover svg {
  padding-left: 6px;
}
.home-secF .view-btn a:hover svg path {
  fill: var(--primary);
}/*# sourceMappingURL=home.css.map */