:root {
  --primary-color: #FDDD00;
  --secondary-color: #E31E24;
  --dark-color: #000000;
  --light-color: #ffffff;

  --menu-font: 'IBM Plex Sans Medium';
  --menu-size: 21px;
  --menu-color: #000;
  
  --banner-font: 'Uni Sans Heavy CAPS';
  --banner-font-size: 80px;
  
  --slime-and-blood-font: 'Slime and Blood';
  --slime-and-blood-font-size: 47px;
  
  --secondary-font: "Poppins", sans-serif;

  --heading-font: 'Akhand Extrabold';
  --header-background-color:#FFFFFF;
  --heading-font-size: 54px;

  --heading-font-2: 'IBM Plex Sans SemiBold';
  --heading-font-2-size: 24px;
  
  --body-font-size:17px;
  --body-font-color: #888890;
  --body-font: 'IBM Plex Sans Regular';

}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-size: var(--body-font);
  color: var(--body-font);
}

a {
  text-decoration: none;
  color: var(--primary-font-color);
}

@media only screen and (max-width: 1920px) {
  .container{
    max-width: 1460px;
  }
}

@media only screen and (max-width: 1633px) {
  .container{
    max-width: 1260px;
  }
}

@media only screen and (max-width: 1100px) {
  .container{
    max-width: 92%;
  }
}

@media only screen and (max-width: 768px) {
  .container{
    max-width: 94%;
  }
}
@media only screen and (max-width: 576px) {
  .container{
    max-width: 94%;
  }
}


header{
	background-color: var(--header-background-color);
	position:sticky;
	top:0;
	z-index:99999;
}

/*   **** */ 

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}

/* --- primary header --- */

.primary-header {
	 display: flex;
	 padding: 10px 0rem;
	 background-color: #fff;
	 z-index: 99999;
}
 .primary-header .container {
	 position: relative;
	 display: flex;
	 width: 100%;
	 align-items: center;
	 justify-content: space-between;
	 padding: 0;
}
 .primary-header .home-link {
	 height: 80px;
}
 .primary-header .home-link img {
	 height: 100%;
}
 .primary-header .primary-navigation .active a {
	 color: var(--secondary-color);
}
 .primary-header .primary-navigation .nav-list {
	 display: flex;
	 flex-wrap: wrap;
	 column-gap: 2rem;
	 justify-content: right;
}
 .primary-header .primary-navigation .nav-list a {
	 display: flex;
	 width: 100%;
	 align-items: center;
	 font-size: var(--menu-size);
	 font-family: var(--menu-font);
}
 .primary-header .primary-navigation .nav-list .user-profile {
	 column-gap: 0.6rem;
}
 .primary-header .primary-navigation .nav-list .user-profile .avatar {
	 max-width: 60px;
	 border-radius: 50%;
}
 .primary-header .primary-navigation .nav-list .user-profile span {
	 margin-left: auto;
}
 

/* --- primary header END --- */
.primary-header {
	
	
}
/* --- Burger Toggle --- */

.primary-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 0;
  cursor: pointer;

  .line,
  .line:before,
  .line:after {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--secondary-color);
    height: 3px;
    width: 30px;
    transition: transform 100ms ease-in-out;
    border-radius: 2px;
  }

  .line:before {
    margin-top: -8px;
  }

  .line:after {
    margin-top: 8px;
  }
}

#primary-toggle:checked + .primary-toggle .line:before {
	 margin-top: 0px;
	 transform: rotate(45deg);
}
 #primary-toggle:checked + .primary-toggle .line {
	 background-color: transparent;
}
 #primary-toggle:checked + .primary-toggle .line:after {
	 margin-top: 0px;
	 transform: rotate(-45deg);
}
 
/* --- Burger Toggle END --- */

/* --- Mobile Menu --- */

@media (max-width: 992px) {
  .primary-header .primary-toggle {
	 display: flex;
}
 .primary-header .primary-navigation {
	 position: absolute;
	 display: grid;
	/* transition for height */
	 transition: grid-template-rows 500ms ease-in-out;
	/* menu hidden */
	 grid-template-rows: 0fr;
	 width: 100%;
	 top: calc(1rem + 100%);
	 left: 0;
	 padding: 0;
	 z-index: 999;
	 background-color: var(--header-background-color);
	 filter: brightness(105%);
	/* box-shadow: 0 2px 5px rgb(0 0 0 /0.1);
	 */
}
 .primary-header .primary-navigation .nav-list {
	 display: block;
	 overflow: hidden;
}
 .primary-header .primary-navigation .nav-list li {
	 padding: 0 2rem;
	 width: 100%;
    float: left;
}
 .primary-header .primary-navigation .nav-list li:first-child {
	 border-top: 2px solid var(--secondary-color);
}
 .primary-header .primary-navigation .nav-list li:last-child {
	 margin-bottom: 1rem;
}
 .primary-header .primary-navigation .nav-list a {
	 font-weight: 500;
	 width:100%;
	 float:left;
	 font-size: 1.15rem;
	 min-height: 0;
	 padding: 10px 0;
	 border-bottom: 1px solid #000;
}
 .primary-header .primary-navigation .nav-list li:last-child a {
	 border: 0;
}
 .primary-header .primary-navigation .nav-list .user-profile span {
	 margin-left: 0;
}
 .primary-header #primary-toggle:checked ~ .primary-navigation {
	 grid-template-rows: 1fr;
}
 
}


/* ***** banner  **** */

.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelalucas91.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}

/* swiper */
.swiper-container {
  padding: 0;
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#Testimonial .owl-carousel .owl-stage{ margin: 0 auto;}

@media screen and (max-width: 768px) {
  .swiper-container {
    height: 100vh;
  }
}
.swiper-slide {
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.3s ease;
  padding-top:100px;
}

.swiper-slide:after {
  content: "";
  
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

/* swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev span,
.swiper-button-next span {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  border: solid 2px white;
  border-left: 0;
  border-bottom: 0;
  transition: all 0.3s ease;
}

.swiper-button-prev span {
  transform: rotate(-135deg);
  left: 50%;
}

.swiper-button-next span {
  transform: rotate(45deg);
  right: 50%;
}

.swiper-button-prev span:after,
.swiper-button-next span:after {
  content: "";
  position: absolute;
  background-color: white;
  width: 0px;
  height: 2px;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}

.swiper-button-prev:hover span {
  left: 30%;
}

.swiper-button-next:hover span {
  right: 30%;
}

.swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
  width: calc(20px - 4px);
}

/* swiper arrows mobile */
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0px;
  }

  .swiper-button-next {
    right: 0px;
  }

  .swiper-button-prev:hover span {
    left: 50%;
  }

  .swiper-button-next:hover span {
    right: 50%;
  }

.swiper-button-prev:hover span:after,
.swiper-button-next:hover span:after {
    display: none;
  }
}

/* swiper pagination */
.swiper-pagination {
  height: 40px;
}

.swiper-pagination-bullet {
  background-color: transparent;
  border: solid 1px white;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
  background-color: white;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  left: 0;
  background-color: transparent;
  border: solid 1px white;
}

.bg_cover{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover;}
.banner-area .swiper-pagination{ display: none;}
.banner-area .container{ position: relative;}
.banner-area .peta-logo{ position: absolute; right: 13%; top: 24%; width: 15%; padding-bottom: 15%;}

/* text content */
.slide-text {
  text-align: left;
  color: white;
  opacity: 1;
  z-index: 2;
  font-family: "IBM Plex Sans", sans-serif;
  width: 80%;
  max-width: 500px;
}

.slide-text h1 {
  font-family: "Uni Sans Heavy CAPS", sans-serif;
  font-size: 80px;
  letter-spacing: 0.03em;
  color:#000000;
  font-style: italic;
}

.slide-text p {
  font-size: 16px;
  font-family: "IBM Plex Mono", monospace;
}

/* text mobile */
@media only screen and (max-width: 1680px) {
  .banner-area .peta-logo{ right: 12%; top: 30%;}
}
@media only screen and (max-width: 1440px) {
  .banner-area .peta-logo{ right: 12%; top: 26%;}
}
@media only screen and (max-width: 1100px) {
  .banner-area .peta-logo{ right: 2%; top: 34%;}
}
@media screen and (max-width: 768px) {
	.home-link {height:50px !important;}
  .slide-text {
    width: 60%;
  }

  .slide-text h1 {
    font-size: 60px;
    letter-spacing: 0.02em;
  }

  .slide-text p {
    font-size: 14px;
  }
  .width-25 .text {font-size:15px;}
  .title-h2 {font-size:40px !important; line-height:40px !important; text-align:center; margin-bottom:15px !important;}
  .pragh {text-align:center;}
  .lab-button { display: flex; justify-content: center; float: none !important; width: 260px; margin: 0 auto 30px;}
  .padd-100 {padding:50px 0 50px !important;}
  .black {padding:50px 0 50px !important;}
  .black h2 {font-size: 40px !important; line-height: 40px !important;}
  .black p {font-size:18px !important; line-height:30px !important;}
  .width-25 .text {font-size:15px !important;}
  .benifit {padding:45px 0 !important;}
  .benifit h2 {font-size:40px !important;}
  .benifit p {font-size: 18px !important; line-height: 30px !important;}
  .SOLUTIONS-area ul li {font-size:18px !important; line-height:30px !important;}
  .SOLUTIONS-area {padding:50px 0 20px !important;}
  .SOLUTIONS-area p {font-size:18px !important; line-height:30px !important;}
  .padd100 {padding:30px 0 80px !important;}
  .padd-100-faq {padding:30px 0 !important;}
  .Enquirytitle {font-size:40px !important; line-height:40px !important;}
  .padd-100-footer {padding:50px 0 !important;}
  footer p {text-align:center !important; font-size:17px !important;}
  footer h3 {text-align:center !important;}
  footer img {width:200px !important; margin:0 auto;}
}

@media screen and (max-width: 1024px) {
	.swiper-container  {height:80vh !important;}
	.swiper-slide {padding-top:40px;}
.benefits-h2 {width:510px !important;}	
.benifit h2 span.text {width:40%; float: none;}
.benifit h2 span.img {width:60%; float: none;}
.benefits-h2 span.img{ margin-left: 0; margin-top: 10px;}
.benefits-h2 span img{ margin: 0 auto;}
.Problem {width:100% !important;}
ul.nav-list li a {font-size:14px !important;}
.slide-text h1 {font-size: 55px !important; line-height: 55px;}
.width-25 .text {font-size:15px;}
  .title-h2 {font-size:40px !important; line-height:40px !important; text-align:center; margin-bottom:15px !important;}
  .pragh {text-align:center;}
  .lab-button { display: flex; justify-content: center; float: none !important; width: 260px; margin: 0 auto 30px;}
  .padd-100 {padding:50px 0 50px !important;}
  .black {padding:50px 0 50px !important;}
  .black h2 {font-size: 40px !important; line-height: 40px !important;}
  .black p {font-size:18px !important; line-height:30px !important;}
  .width-25 .text {font-size:15px !important;}
  .benifit {padding:45px 0 !important;}
  .benifit h2 {font-size:40px !important;}
  .benifit p {font-size: 18px !important; line-height: 30px !important;}
  .SOLUTIONS-area ul li {font-size:18px !important; line-height:30px !important;}
  .SOLUTIONS-area {padding:50px 0 20px !important;}
  .SOLUTIONS-area p {font-size: 24px !important; line-height: 50px !important;}
  .padd100 {padding:30px 0 40px !important;}
  .padd-100-faq {padding:30px 0 !important;}
  .Enquirytitle {font-size:40px !important; line-height:40px !important;}
  .padd-100-footer {padding:50px 0 !important;}
  footer p {text-align:center !important; font-size:17px !important;}
  footer h3 {text-align:center !important;}
  footer img {width:200px !important; margin:0 auto;}
  .title-p {font-size:20px !important; }
  .title-h3 {font-size:30px !important; line-height:40px;}

}
/* button */
.slide-text .btn {
  font-family: "IBM Plex Mono", monospace;
  background-color: transparent;
  border: solid 1px white;
  padding: 15px 30px;
  min-width: 100px;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 2px;
  color: white;
  position: relative;
  border-radius: 80px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 20px;
}

.slide-text .btn:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  border-radius: inherit;
  transition: all 0.3s ease-in-out;
}

.slide-text .btn:hover::after {
  left: 4px;
  top: 5px;
  background-color: rgba(255, 255, 255, 0.3);
}

.slide-text .btn:hover {
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .slide-text .btn:hover::after {
    left: 0px;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.1);
  }
   .nav-list {background:#fff;}
}
button:focus {
  outline: 0;
}

@media screen and (max-width: 480px){
  .slide-text h1 {font-size: 20px !important; margin-bottom: 1px; line-height: 24px !important;}
  .slide-text p img{width:80%;}
  .swiper-container {height:31vh !important;}
  .benefits-h2 {width:100% !important;}
  .swiper-slide {padding-top:15px !important;}
  .slide-text p img {width:40% !important;}
  .swiper-container-horizontal > .swiper-pagination-bullets {bottom:-20px !important;}
  .banner-area .peta-logo{ right: 3%; top: 13%; width: 20%; padding-bottom: 20%;}
}
@media screen and (max-width: 375px){
  #Contact .title-h3 span{ display: block;}
}
.nav-list{margin-bottom:0px !important;}
.padd-100 {padding:100px 0 100px;}
.padd100 {padding:100px 0 105px;}
.padd-100-faq {padding:100px 0 100px;}
.padd-100-footer {padding:100px 0 20px;}
.title-h2 {font-family: "Akhand Extrabold", monospace; font-size:60px; line-height:60px; color:#000000; text-transform: uppercase; margin-bottom:30px;}
.pragh {font-family: 'IBM Plex Sans'; font-size:18px; line-height:24px; color:#5e5e62;}
.lab-button {font-family: 'IBM Plex Sans'; padding:10px; border:2px solid #E31E24; float:left; margin-top:30px;}
.lab-button a {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:600; color:#333333;}
.lab-button a span {float:left;}
.clear {clear:both;}
.black {background:#000; padding:100px 0 70px;}
.black h2 {font-family: "Akhand Extrabold", monospace; font-size:50px; line-height:50px; color:#fff; text-align:center; margin-bottom:30px; text-transform: uppercase;}
.black p {font-family: 'IBM Plex Sans'; font-size:24px; color:#fff; line-height:40px; text-align:center;}
.padd-0 {padding:0px;}
.width-100 {width:100%; }
.width-50 {width:40%; float:left; background:url('../images/benefit.jpg') no-repeat center top; background-size:cover;}
.width-25 {width:25%; background:#000; float:left; position: relative;}
.width50 {width:60%; float:left;}

a:hover {color:#E31E24;}
.image {
  opacity: 0.5;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.width-25:hover {
 background-color: rgba(197, 6, 12, 1);
  }

.width-25 .text {
  color: white;
  font-size: 20px;
  font-family: 'IBM Plex Sans';
  font-weight:600;
}

.benifit {background:url('../images/benefit.jpg') no-repeat center top #fcdc00; float:left; width:100%; background-size:contain; padding:90px 0 75px; }
.benifit h2 {font-family: "Akhand Extrabold", monospace; font-size:50px; color:#000; text-align:center; }
.benefits-h2 {width: 635px; margin: 0 auto;}	
.benifit h2 span {float:left;}
.benefits-h2 span.img{ margin-left: 10px;}
.benifit p {font-family: 'IBM Plex Sans'; font-size:24px; color:#202020; line-height:40px; text-align:center; margin-top:30px;}
.banifit-box {background:#FEED01; padding:50px 20px; width:100%; margin-bottom:20px; display: flex; justify-content: center;}
.benifit h3 {font-family: 'IBM Plex Sans'; font-size:24px; font-weight:600; color:#000; text-align:center; margin-bottom:15px;}
.SOLUTIONS {width:100%; display: flex; justify-content: center;}

.SOLUTIONS-area {background:#000; padding:100px 0 50px;}
.SOLUTIONS-area h2 {font-family: "Akhand Extrabold", monospace; font-size:50px; line-height:50px; color:#fff; text-align:left; margin-bottom:30px;}
.SOLUTIONS-area ul {margin-bottom:15%;}
.SOLUTIONS-area ul li {font-family: 'IBM Plex Sans'; font-size:24px; font-weight:400; margin-left:20px; list-style:disc; color:#fff; line-height:40px; text-align:left;}
.kill {font-family: 'IBM Plex Sans'; font-size:40px; font-weight:400; color:#fff;}
.banifitbox p {font-family: 'IBM Plex Sans'; font-size: 18px;color: #202020; font-weight:500; line-height: 28px; text-align: center; margin-top:0px; margin-bottom: 40px;}

@media (min-width: 768px) {

    /* show 3 items */
    .carouselPrograms .carousel-inner .active,
    .carouselPrograms .carousel-inner .active + .carousel-item,
    .carouselPrograms .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;
    }

    .carouselPrograms .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    .carouselPrograms .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    .carouselPrograms .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
    }

    .carouselPrograms .carousel-inner .carousel-item-next,
    .carouselPrograms .carousel-inner .carousel-item-prev {
        position: relative;
        transform: translate3d(0, 0, 0);
    }

    .carouselPrograms .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.333%;
        z-index: -1;
        display: block;
        visibility: visible;
    }

    /* left or forward direction */
    .carouselPrograms .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    .carouselPrograms .carousel-item-next.carousel-item-left + .carousel-item,
    .carouselPrograms .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    .carouselPrograms .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    /* farthest right hidden item must be abso position for animations */
    .carouselPrograms .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0%;
        z-index: -1;
        display: block;
        visibility: visible;
    }

    /* right or prev direction */
    .carouselPrograms .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    .carouselPrograms .carousel-item-prev.carousel-item-right + .carousel-item,
    .carouselPrograms .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    .carouselPrograms .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}
.panel-thumbnail {background:#D80005; text-align:center; border-radius:5px; padding:1px;}
.panel-thumbnail h3 {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:500; padding:20px 0 20px; color:#fff;}
#carouselExample .carousel-indicators li {width: 14px; height: 14px; display: inline-block; border-radius: 100%; background: #E5E5E5;}
#carouselExample .carousel-indicators .active {background: #E31E24;}
#carouselExample .carousel-indicators {bottom:-60px;}
.collapsible-link::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #D80005;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

/* Vertical line */
.collapsible-link::after {
  content: '';
  width: 2px;
  height: 14px;
  background: #D80005;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded='true']::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded='true']::before {
  transform: rotate(180deg);
}

.text-dark {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:600;}
.card-body {font-size:18px; font-family: 'IBM Plex Sans'; font-weight:400;}

    .owl-carousel .owl-nav {
      overflow: hidden;
      height: 0px;
    }
    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
      background: #5110e9;
    }

    .owl-carousel .item {
      text-align: center;
	  border:1px solid #ECECEC;
    margin: 10px;
    }
	.owl-carousel .item:hover {
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.30);
-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.30);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.30);}
    .owl-carousel .nav-button {
      height: 50px;
      width: 25px;
      cursor: pointer;
      position: absolute;
      top: 110px !important;
    }
    .owl-carousel .owl-prev.disabled,
    .owl-carousel .owl-next.disabled {
      pointer-events: none;
      opacity: 0.25;
    }
    .owl-carousel .owl-prev {
      left: -35px;
    }
    .owl-carousel .owl-next {
      right: -35px;
    }
    .owl-theme .owl-nav [class*=owl-] {
      color: #ffffff;
      font-size: 39px;
      background: #000000;
      border-radius: 3px;
    }
    .owl-carousel .prev-carousel:hover {
      background-position: 0px -53px;
    }
    .owl-carousel .next-carousel:hover {
      background-position: -24px -53px;
    }
	
	.title-h3 {font-family: 'IBM Plex Sans'; font-size:40px; text-align:center; color:#E31E24; font-weight:600;}
	.title-p {font-family: 'IBM Plex Sans'; font-size:24px; text-align:center; color:#000000; font-weight:600;}
	.rat-images {width:100%; margin-top:30px; margin-bottom:30px; float:left; display:flex; justify-content:center;}
.download-button {font-family: 'IBM Plex Sans'; padding:10px; border:2px solid #E31E24; width:260px; margin:0 auto; display:flex; justify-content:center; margin-top:30px;}
.download-button a {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:600; color:#333333;}
.download-button a span {float:left;}
.download-button a {font-size:16px !important;}
.download-button a:hover span {color:#E31E24;}
.button-area {background:#E31E24; font-size:18px; font-family: 'IBM Plex Sans'; color:#fff; font-weight:600;}
.rat-images img {width:40%;}
.form-group {margin-bottom: 1.5rem;}
.form-group {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:600; color:#000 !important;}
footer h3 {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:600; color:#fff;}
footer p {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:300; text-align:left; color:#fff;}
.Enquirytitle {font-family: "Akhand Extrabold", monospace; font-size: 50px; line-height: 50px; color: #000000; margin-bottom: 30px;}
#About .download-button{ margin: 0; margin-top: 30px;}

@media screen and (max-width: 767px) {
  .owl-carousel .item {
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.30);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.30);
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.30);}
    #About .download-button{ margin: 0 auto; margin-top: 30px;}
}
@media screen and (max-width: 480px) {
	.floatleft {float:left; font-size:12px !important; line-height:24px;}
.floatright {float:right; font-size:12px !important; line-height:24px;}
.top-email {padding-left:0px !important;}
.top-phone {padding-right:0px !important;}
	.width-50 {width:100%;}
	.width50 {width:100%;}
	.width-25 {width:50%;}
	.benifit h2 span {float:none;}
	.padd-100 {padding:30px 0 !important;}
	h2 {text-align:center;}
	.title-h2 {font-size:34px !important; line-height:34px !important; margin-bottom:10px !important; text-align:center;}
	.pragh {text-align:center; font-size:18px; line-height:24px;}
	.lab-button {display: flex; justify-content: center; float: none; width: 250px; margin: 0 auto;}
	.black h2 {font-size:34px !important; line-height:34px !important; margin-bottom:10px !important; text-align:center;}
	.black { padding:25px 0 15px !important;}
	.width-25 .text {font-size:18px !important;}
	.benifit {padding:22px 0 0px !important;}
	.benifit h2 span img{width:90%; margin: 0 auto; margin-top: 10px;}
  .benefits-h2 span.img{ margin-left: 0px;}
	.benifit h2 {font-size:34px; line-height:34px; width:100%!important;}
	.benifit p {text-align:center; font-size:18px; margin-top:10px; line-height:24px;}
	.black p {font-size:18px; line-height:24px;}
	.benifit h3 {font-size:20px !important; margin-bottom:10px;}
	.banifit-box img {width:100%;}
	.banifit-box {width:34%;  margin:0 35% 10px; padding:20px;}
	/* .banifit-box {padding:20px;} */
	.SOLUTIONS-area h2{font-size:34px; line-height:34px; margin-bottom:20px; text-align:center;}
	.SOLUTIONS-area ul li {font-size:18px;}
	.SOLUTIONS-area p {font-size: 20px !important; line-height: 34px !important;}
	.kill {font-size:20px; line-height:24px; text-align:left;}
	.SOLUTIONS-area {padding:30px 0 10px !important;}
	.padd100 {padding:20px 0 30px !important;}
	.slick-initialized .slick-slide {margin-right:5px !important;}
	.whatsapp {bottom: 80px !important;}
	.SOLUTIONS-area img { display:flex; justify-content:center; width:50%;}
	.no-logo img {width:100%; margin:0 auto;}
	.SOLUTIONS-area ul {margin-bottom: 5%;}
	.no-logo {margin-bottom: 5%;}
	#FAQ .card h6 {width:90%;}
	#FAQ .card .collapsible-link::before {right: -26px;}
	#FAQ .card .collapsible-link::after {right: -20px;}
	.text-dark {font-size:18px;}
	.card-body {font-size:16px;}
	.primary-navigation {margin-top:-10px;}
	.padd-100-faq {padding:50px 0;}
	.title-h3 {font-size:26px;}
	.title-p {font-size:18px; margin-top:30px;}
	.padd-100-footer {padding:30px 0 20px !important; text-align: center; display: flex; justify-content: center;}
	footer p {text-align:center; font-size:16px;}
	footer h3 {font-size:18px;}
	footer p img {text-align: center; width: 170px; margin: 0 auto;}
	.lab-button a {font-size:16px;}
	.lab-button a span img {width:30px;}
	.padd-100-faq {padding:25px 0 15px !important;}
	.Enquirytitle {font-size:34px; line-height:34px; margin-bottom:20px;}
	.img-about img {width:80%; margin:0 auto;}
}

@media screen and (min-width: 481px) and (max-width: 767px) {
.slide-text h1 {font-size: 40px !important;}	
.swiper-slide {padding-top:15px;}
.benifit-area {width:100% !important;}
}
.benifit-area {width: 865px;  margin: 0 auto;}

@media screen and (max-width: 865px){
.benifit-area {width: 100% !important;}
}
#FAQ .card h6 {width:95%;}
#FAQ .card .collapsible-link::before {right: -26px;}
#FAQ .card .collapsible-link::after {right: -20px;}
@media screen and (min-width: 1280px) and (max-width: 1366px) {
.swiper-slide {padding-top:60px;}	
.slide-text h1 {font-size:60px !important; line-height:65px !important;}
.swiper-container {height:90vh;}
}
.whatsapp {width:50px; position:fixed; bottom:100px; right:30px; z-index:999;}
.Problem {width:1025px; margin: 0 auto;}
@media screen and (max-width: 865px){
.Problem {width:100%;}	
}
@media (min-width: 768px) and (max-width:991px) {
	.benifit-area {width:100% !important;}
.swiper-container {height:45vh !important;}
.benefits-h2 {width:510px !important;}	
.benifit h2 span.text {width:40%;}
.benifit h2 span.img {width:60%;}
.slide-text h1 {font-size:45px !important; line-height:45px !important;}
.SOLUTIONS img{ width:75% !important;}
.banner-area .peta-logo { right: 11%; top: 22%;}
}

.my-slider{
  padding: 0 0px;
}
.slick-initialized .slick-slide{
  background-color: #D80005;
  color: #FFF;
  /* height: 200px; */
  margin: 0 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:5px;
}

.slick-next, .slick-prev{
  z-index: 5;
}
.slick-next{
  right: 15px;
}
.slick-prev{
  left: 15px;
}
.slick-next:before, .slick-prev:before{
  color: #000;
  font-size: 26px;
}

.slick-slide h3 {font-family: 'IBM Plex Sans'; font-size:20px; font-weight:600; color:#fff; text-align:center; line-height:60px;}
.slick-dots li button:before {font-size:15px !important;}
.slick-dots li.slick-active button:before {color:#E31E24 !important; opacity:1 !important;}
#accordionExample .card {margin-bottom:15px;}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  /* font-size: 18px; */
  border: none;
  outline: none;
  /* background-color: red; */
  /* color: white; */
  cursor: pointer;
  /* padding: 0px; */
  border-radius: 30px;
  height:50px;
  width:50px;
}

#myBtn:hover {
  /* background-color: #555; */
}
.top-email {color:#fff; text-align: right;}
.floatleft {float:left;}
.floatright {float:right;}

.thank-you {padding:100px 0 100px; background: #FDDD00;}
.thank-you h2 {font-family: "Akhand Extrabold", monospace; font-size:50px; line-height:50px; color:#000000; text-align:center; margin-bottom:30px; text-transform: uppercase;}
.thank-you p {font-family: 'IBM Plex Sans'; font-size:24px; color:#202020; line-height:40px; text-align:center;}
.thank-you p a{ color:#202020; font-weight: bold;}
.thank-you p a:hover{ color: #E31E24;}
.amz-text{font-family: 'IBM Plex Sans'; font-size: 24px; color: #fff; text-align: center;}
.amz-button {background:#E31E24; font-size:18px; font-family: 'IBM Plex Sans'; color:#fff; font-weight:600; display:flex; width:110px; align-items: center; align-content: center; margin-bottom: 15px; margin-left: auto; margin-right: auto; text-align: center !important;}
.amz-button:hover{color: #fff;}

@media only screen and (min-width: 1200px) and (max-width: 1366px){
  #Contact{
            padding-top: 200px;
    height: 100vh !important;
    } 
}