:root {
  --primary: #00ffff;
  --secondary: #fdbe33;
  --light: #f4f6f8;
  --dark: #040f28;
}
body{
  overflow-x: hidden;
}
.btn-blue {
  background: #02226e;
}
.text-white {
  color: var(--light);
}
ul li {
  text-decoration: none;
  list-style: none;
}
.text-blue {
  color: #02226e;
}
.pt-6 {
  padding-top: 90px;
}

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

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  bottom: -1px;
  left: 50%;
  background: var(--primary);
  transition: 0.5s;
}

.btn.btn-primary::after {
  background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
  width: 50%;
  left: 25%;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 50%;
  bottom: 0;
  margin-left: -22px;
  border-radius: 0;
  z-index: 99;
}
.getCertificate{
  height: 6rem;
  -webkit-height: 6rem; /* For older WebKit browsers */
  -moz-height: 6rem; /* For older Firefox browsers */
  -ms-height: 6rem; /* For older Microsoft Edge */
}
.chcekCertificate{
  align-items: center;
  text-align: center;
  margin-top: -1rem;
}
.bg-dark-radial {
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 3px 3px;
}

.bg-light-radial {
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -o-repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(256, 256, 256, 0.2),
    rgba(256, 256, 256, 0.2) 1px,
    transparent 1px,
    transparent 100%
  );
  background-size: 3px 3px;
}



.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link{
    margin-left: 0;
    padding: 10px 0;
    text-align: center;
  }
  .navbar{
    flex-wrap: nowrap;
  }
  .navbar-collapse{
    position: absolute;
    background-color: #040f28;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .header{
    position: relative;
    width: 100vw;
  }
  .getCertificate{
    height: 4rem;
    -webkit-height: 4rem; /* For older WebKit browsers */
    -moz-height: 4rem; /* For older Firefox browsers */
    -ms-height: 4rem; /* For older Microsoft Edge */
    width: 100%;
    padding: 0;
  }
  .chcekCertificate{
    align-items: center;
    text-align: center;
    margin-top: -1rem;
    padding: 10px;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 15, 40, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.page-header {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(4, 15, 40, 0.7), rgba(4, 15, 40, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.service-item .service-icon {
  margin-top: -50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.service-item .service-icon i {
  transition: 0.2s;
}

.service-item:hover .service-icon i {
  font-size: 60px;
}

.portfolio-item {
  margin-bottom: 60px;
}

.portfolio-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  padding: 0 30px;
  right: 30px;
  left: 30px;
  bottom: -60px;
  background: #ffffff;
  z-index: 3;
}
.dropdown-menu{
  padding: 0rem !important;
}
.portfolio-btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  font-size: 120px;
  line-height: 0;
  transition: 0.1s;
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 0;
}

#dropdown1{
  margin-left: -2.5rem;
}


.dropdownTOGGLEBTN{
  color:#040f28;
}


.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  transition: 0.5s;
  z-index: 1;
  background: rgba(4, 15, 40, 0.7);
}

.portfolio-box::before {
  left: 0;
}

.portfolio-box::after {
  right: 0;
}

.portfolio-item:hover .portfolio-box::before {
  left: 0;
  width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
  right: 0;
  width: 50%;
}

@media (min-width: 992px) {
  .testimonial,
  .contact-form {
    margin-left: -90px;
  }
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--primary);
  }
}

@media only screen and (max-width: 991px) {
  #dropdown1{
    margin-left: 0;
  }
}
@media only screen and (max-width: 410px) {
  .response {
    font-size: 1.3rem !important;
  }
  #5sImage{
    width: 100%;
    height: 100%;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu{
    margin-left: 0;
  }  
}

.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: var(--primary);
  transform: skew(40deg);
}
.whatsappSVG {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsappSVG i {
  margin-left: 2px;
}

.card-img {
  overflow: hidden;
  width: 340px;
  height: 275px;
}

.card-img img {
  height: 290px;
  width: 350px;
  max-width: 100%;
}

.card-img:hover .hover-text {
  visibility: visible;
  height: 290px;
  width: 350px;
  bottom: 298px;
  opacity: 100;
}

.hover-text {
  position: relative;
  padding: 10px;
  height: 0;
  width: 350px !important;
  box-sizing: border-box;
  background-color: rgba(3, 7, 36, 0.4);
  bottom: 0;
  transition: 0.6s;
  backdrop-filter: blur(10px);
}

.hover-text h3 {
  text-align: center;
  align-items: center;
}

.hover-text h5 {
  color: #001aff;
  word-wrap: break-word;
}

.hover-text p {
  margin-left: 15px;
  color: white;
  margin-bottom: -2px;
  width: auto;
}

.container {
  height: 345px;
}

.scroll-section {
  display: flex;
  animation: scrollCards 25s linear infinite;
}

.scroll-section:hover{
    animation-play-state: paused;
}

.scroll{
    overflow: hidden;
}
@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 18));
  }
}

.container {
  padding: 15px;
  box-sizing: border-box;
}

.custom-style-for-dropdown > li:hover {
  background: #040f28 !important;
  color: white !important;
}

.custom-style-for-dropdown > li:hover .custom-a-tag{
  color: white !important;
}

.dropdown-item:hover{
  background: #040f28 !important;
  color: white ;
  transition: all .1s linear;
}

.dropdown-in-cert > li:hover .a-in-dropdown-cert{
  color: white ;
}

.check-cert:hover{
  background: rgb(18, 235, 18) !important;
  transition: all .1s linear;
  color: white ;
  cursor: pointer;
}
