@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}
body{
  overflow-x: hidden;
}
section {
  padding: 60px 0;
  overflow: hidden;
}
p
{
    font-weight: 500;
}

a {
    color: #ffc20e;
    text-decoration: none;
}

a:hover {
    color: #ffc20e;
    text-decoration: none;
}
.nav_icon{
    font-size: 15px;
}
::selection{
  color: white;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  margin-top: 2%;
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    background-color: #424242;
    /* background-color: rgb(160, 34, 34); */
  }
  
  .header.header-scrolled{
    background-color: #424242;
    padding: 10px 0;
    /* margin-bottom: 45px; */
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    /* margin-top: 0; */
    color: black;
  }
  
  .header .logo {
    line-height: 0;
    margin-left: 12px;
  }
  .header .logo img {
    height: 50px;
    left: 40px;
    width: 190px;
    top: 8px;
    position: absolute;
  }
  
  
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;

  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  
  }
 .nav_active{
   color: black;
 }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
  }
 
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  /* .navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: #ffc20e;
  
  } */
  .navbar a:hover{
    color: #ffc20e;
  }
 
 
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
     background-color: #424242;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    font-weight: bold;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #ffc20e;
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: black;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: black;
  }
  
  @media (max-width: 991px) {
    .header {
      margin-top: 6%;
      padding: 20px 0;
    }
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
    .header .logo img {
      /* height: 50px; */
      left: 20px;
       /* width: 190px; */
       top:10px;
       position: absolute;
     }
     .header.header-scrolled{
      background-color: #424242;
      padding: 20px 0;
      /* margin-bottom: 45px; */
      box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
      /* margin-top: 0; */
      color: black;
    }
    
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
  }
  
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #4154f1;
  }
  
  .navbar-mobile .getstarted {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #4154f1;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  /* margin-top: %; */
    width: 100%;
    height: 100vh;
    background: url(../img/hero-bg.png) top center no-repeat;
    background-size: cover;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #012970;
  }
  
  .hero h2 {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 26px;
  }
  .hero p {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 20px;
  }
  .hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: black;
    background: #ffc20e;
    box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  }
  
  .hero .btn-get-started span {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .hero .btn-get-started:hover i {
    transform: translateX(5px);
  }
  
  .hero .hero-img {
    text-align: right;
  }
 
  @media (min-width: 1024px) {
    .hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 991px) {
    .hero {
      height: auto;
      padding: 120px 0 60px 0;
    }
    .hero .hero-img {
      text-align: center;
      margin-top: 80px;
    }
    .hero .hero-img img {
      width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
        margin-top: 80px;
      text-align: center;
    }
    .hero h1 {
      font-size: 32px;
    }
    .hero h2 {
      font-size: 24px;
    }
    .hero .hero-img img {
      width: 100%;
    }
  }
  
section.hero_img {
    position: relative;
    background-image: url('images/hero_2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}
.bg-stars{
  background-image: url('images/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    width: 100%;
}
.hero_heading {
    position: absolute;
    top: 50%;
    max-width: 450px;
    /* margin-left: 50px; */
}

.btn-outline-light {

    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    text-align: center;
    padding: 13px 50px;
    z-index: 1;
}

.line {
    position: relative;

}
.line h2{
  color: #ffc20e;
 
}

.line::after {
    position: absolute;
    content: '';
    background: #777777;
    width: 45px;
    height: 4px;
    left: 0px;
    /* bottom: 0px; */
    bottom: -17px;
    transition: all 500ms ease;
    /* -webkit-mask-image: linear-gradient(
-75deg
, rgba(244,55,55,0.6) 50%, #f43737 50%, rgba(0,0,0,1) 70%);
    -webkit-mask-size: 200%; */
    background: #6a737b;
    animation: animate 5s linear infinite;
}

.line::before {
    position: absolute;
    content: '';
    background: #cccccc;
    width: 130px;
    height: 2px;
    left: 0px;
    /* margin-bottom:  */
    bottom: -17px;

    
}
@keyframes animate {
    0% {
        left: 0;
    }

    50% {
        left: 5%;
    }

    0% {
        left: 0;
    }
}
.icon_card {
    font-size: 40px;
    color: #ffc20e;

}
.card_par{
  overflow-y: scroll; height: 50vh;
}
.card_par::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  border-radius: 10px;
  background-color: #F5F5F5;
}
.card_par::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}
.card_par::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); */
  background-color: #666666;
}
.card_heading {
    margin-top: 14%;
    color: #ffc20e;
}

.card_par {
    margin-top: 10%;
}

.overly {
    display: none;
    transition: all .3s;
}


.feature-img {
    position: relative;
}

.feature-icon {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%);
    color: #ffc20e;
}
.card_flip{
  color: #ffc20e;
background: rgba(15, 15, 15, 0.73);

}
.card_flip:hover {
    background-color: #ffc20e;
}
.card_flip:hover .feature-icon{
  color: black;
 }
.card_flip:hover h3{
 color: black;
}
.card_flip:hover p{
  color: black;
 }
.card_up {
    overflow: hidden;
    transition: 1s;
    padding: 30px;
    margin-top: 14%;
    border-top-left-radius: 50px;
  border-bottom-right-radius: 20px;
background: rgba(15, 15, 15, 0.73);
  color: white;
}

.card_up:hover {
    transform: translateY(12px);
    /* background-color: lightgreen; */
}

footer {
    background-color:white;
    background-color: #ffc20e;
    color: black;
}

.footer_icon {
  color:white;
  font-size: 20px;
  background-color: blue;
  padding: 8px;
  border-radius: 10px;
  transition: all 1s ease;
    margin: 5px;
}

.footer_icon:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

.followus {
    font-size: 20px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
    background: rgba(15, 15, 15, 0.73);
    min-height: 320px;
    display: flex;
color: white;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc20e;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #ffc20e;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ffc20e;
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
}

.testimonials .swiper-slide {
    opacity: .3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
    /* opacity: 0.5; */
    transition: 0.3s;
}

.clients .clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
}

.card_clint {
  height: 100%;
    /* border: 3px dotted lightgreen; */
/* border-radius: 15px; */
border-bottom: 2px solid green;
border-top-left-radius: 25px;
    transition: .5s;
    border-bottom: 2px solid green;
    color: black;
}

.card_clint:hover {
  border-bottom: 2px solid black;
    color: white;
    /* background-color: lightgreen;
    transform: translateX(-3px); */
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid black;
}

.form-control {
    border-radius: 25px;
    padding: 6px;
    border:  2px solid #ffc20e;
}
.counter_icon{
    font-size: 70px;
    color: black;
   
    margin-bottom: 12px;
}
.card_clint{
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* border-radius: 15px; */
}

.card_clint::before{
    content: '';
   background-color:#00308F;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: all .5s linear;
}
.card_clint:hover::before {
    transform: translateX(0);
    z-index: -1;
}
.card_clint:hover .icon_card{
  color: white;
}
.card_clint:hover .counter_icon{
    color: white;
}
.card_counter{
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* border-radius: 15px; */
  color: black;

 
}
.thought {
  position: relative;
	background:rgba(15, 15, 15, 0.73);
	border-radius: .4em;
  padding: 40px;
  width: 100%;
  color: #ffc20e;
}
.thought:after {
  content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 28px solid transparent;
	border-bottom-color: rgba(15, 15, 15, 0.73);
	border-top: 0;
	border-left: 0;
	margin-left: -14px;
	margin-top: -28px;
  
}
.text_circle1{
  color: white;
  position: absolute;
  left: 30%; 
  bottom: 20%;
  color: black;
}
.text_circle{
  color: white;
  position: absolute;
  left: 20%; 
  bottom: 20%;
  color: black;
}
.circle{
  position: relative;
  width: 300px;
  height: 300px;
 background: rgba(15, 15, 15, 0.73);
 overflow: hidden;
 z-index: 1;
  border-radius: 50%;
  margin: 0 auto;
}
.circle::before{
  content: '';
 background-color:#ffc20e;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: all .5s linear;
 
}
.circle:hover::before {
  transform: translateX(0);
  z-index: -1;
}
.circle h1{
  color: #ffc20e;
} 
.circle h5{
  color: #ffc20e;
}
.circle .counter_icon{
  color: #ffc20e;
}
.circle:hover h1{
  color: black;
} 
.circle:hover h5{
  color: black;
}
.circle:hover .counter_icon{
  color: black;
}
.card_counter::before{
  content: '';
 background-color:#5851db;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: all .5s linear;
}
.card_counter:hover::before {
  transform: translateX(0);
  z-index: -1;
}
.card_counter:hover .icon_card{
color: white;
}
.card_counter:hover h1{
  color: white;
  }
  .card_counter:hover h2{
    color: white;
    }
.card_counter:hover .counter_icon{
  color: white;
}
.card_up{
    position: relative;
    z-index: 1;
    overflow: hidden;
    
}
.card_up:hover p{
  color: #000;

}
.card_up:hover span{
  color: white

}
.card_up span{
  color: #ffc20e;

}
.card_up:hover h5{
  color: #000;

}
.card_up:hover h2{
  color: #000;

}
.card_up::before{
    content: '';
   background-color:#ffc20e;
    width: 110%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    
    transform: translateY(100%);
    transition: all .3s linear;
}
.card_up:hover:before {
  
    transform: translateY(0);
    z-index: -1;
    
}
.card_up:hover{
color: white;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 95%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
    background: rgba(15, 15, 15, 0.73);
  }
  
  .services .service-box .icon {
    font-size: 36px;
    padding: 40px 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
    color: #ffc20e;
  }
  
  .services .service-box h3 {
    color: #ffc20e;
    font-weight: 700;
  }
  
  .services .service-box .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
  }
  
  .services .service-box .read-more i {
    line-height: 0;
    margin-left: 5px;
    font-size: 18px;
  }
  
  .services .service-box.blue {
    border-bottom: 3px solid #ffc20e;
  }
  
  .services .service-box.blue .icon {
    color: #ffc20e;
    background: #dbf3fe;
  }
  .services .service-box.blue p {
    color: #ffc20e;
  }
  .services .service-box.blue .read-more {
    color: #2db6fa;
  }
  
  .services .service-box.blue:hover {
    background: #ffc20e;
  }
  .services .service-box.blue:hover .icon {
    color: #000;
  }
  .services .service-box.blue:hover p {
    color: #000;
  }
  .services .service-box.blue:hover h3 {
    color: #000;
  }
  .services .service-box.orange {
    border-bottom: 3px solid #ffc20e;
  }
  
  .services .service-box.orange .icon {
    color: #ffc20e;
    background: #fde3c4;
  }
  
  .services .service-box.orange .read-more {
    color: #f68c09;
  }
  
  .services .service-box.orange:hover {
    background: #ffc20e;
  }
  .services .service-box.orange:hover .icon {
    color: #000;
  }
  .services .service-box.orange:hover p {
    color: #000;
  }
  .services .service-box.orange:hover h3 {
    color: #000;
  }
  .services .service-box.orange p {
    color: #ffc20e;
  }
  .services .service-box p{
    color: #ffc20e;
  }
  .services .service-box h3{
    color: #ffc20e;
  }
  .services .service-box.icon{
    color: #ffc20e;
  }
  .services .service-box.green:hover .icon{
    color: black;
  }
  .services .service-box.green:hover p{
    color: black;
  }
  .services .service-box.green:hover h3{
    color: black;
  }
  
  .services .service-box.green {
    border-bottom: 3px solid #ffc20e;
  }
  
  .services .service-box.green .icon {
    color: #ffc20e;
    background: #cffddf;
  }
  
  .services .service-box.green .read-more {
    color: #08da4e;
  }
  
  .services .service-box.green:hover {
    background: #ffc20e;
  }
  .services .service-box.red:hover .icon{
    color: black;
  }
  .services .service-box.red:hover p{
    color: black;
  }
  .services .service-box.red:hover h3{
    color: black;
  }
  .services .service-box.red {
    border-bottom: 3px solid #ffc20e;
  }
  
  .services .service-box.red .icon {
    color: #ffc20e;
    background: #fef7f8;
  }
  
  .services .service-box.red .read-more {
    color: #e9222c;
  }
  
  .services .service-box.red:hover {
    background: #ffc20e;
  }
  .services .service-box.purple:hover .icon{
    color: black;
  }
  .services .service-box.purple:hover p{
    color: black;
  }
  .services .service-box.purple:hover h3{
    color: black;
  }
  .services .service-box.purple {
    border-bottom: 3px solid #ffc20e;
  }
  
  .services .service-box.purple .icon {
    color: #ffc20e;
    background: #f8e4fd;
  }
  
  .services .service-box.purple .read-more {
    color: #b50edf;
  }
  
  .services .service-box.purple:hover {
    background: #ffc20e;
  }
  .services .service-box.pink:hover .icon{
    color: black;
  }
  .services .service-box.pink:hover p{
    color: black;
  }
  .services .service-box.pink:hover h3{
    color: black;
  }
  .services .service-box.pink {
    border-bottom: 3px solid #ffc20e;
  }
  
  .services .service-box.pink .icon {
    color: #ffc20e;
    background: #feecf7;
  }
  
  .services .service-box.pink .read-more {
    color: #f51f9c;
  }
  
  .services .service-box.pink:hover {
    background: #ffc20e;
  }
  
  .services .service-box:hover h3, .services .service-box:hover p, .services .service-box:hover .read-more {
    color: #fff;
  }
  
  .services .service-box:hover .icon {
    background: #fff;
  }
  /* .services .service-box .icon{
      border: 3px solid lightgreen;
     transform: rotate(45deg);
  }
  .services .service-box:hover .icon{
      transform: rotate(0deg);
  } */
  /*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 40px 20px;
    background:rgba(15, 15, 15, 0.73);
    text-align: center;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    /* transition: 0.8s; */
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);

  }
  
  .pricing .box:hover {
    /* transform: scale(1.1); */
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  }
 
  .pricing h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffc20e;
  }
  
  .pricing .price {
    font-size: 36px;
    color: #ffc20e;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  }
  
  .pricing .price sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  
  .pricing .price span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }
  
  .pricing .icon {
    padding: 30px 40px;
    color: #ffc20e;
    font-size: 100px;
  }
  
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .pricing ul li {
    padding-bottom: 15px;
  
  
  }
  .box{
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* border-radius: 15px; */
}

.pricing .box::before{
    content: '';
   background-color:#ffc20e;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all .5s linear;
}
.pricing .box:hover:before {
    transform: translateY(0);
    z-index: -1;
}
.pricing .box:hover .icon{
    color: black;
}
.pricing .box:hover ul{
    color: black;
}
.pricing .box:hover .price{
    color: black;
}
.pricing .box:hover h3{
    color: black;
}
.payment_icon{
font-size: 100px;
color: #ffc20e;
/* padding: 30px 40px; */
}
.payment_box{
    position: relative;
    overflow: hidden;
    z-index: 1;
 background: rgba(15, 15, 15, 0.73);
}
.payment_box p{
color: #ffc20e;

}
.payment_box::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%)  translateX(100%);
    background-color:#ffc20e ;
    transition: all .5s linear;
  
}
.payment_box:hover::before{
    transform: translateY(0)  translateX(0);
    
    z-index: -1;
}
.payment_box:hover h3{
    color: black;
}
.payment_box:hover p{
    color: black;
}
.payment_box:hover .payment_icon{
    color: black;
}
section {
  padding: 60px 0;
  overflow: hidden;
}
.customization_icon{
  font-size: 100px;
  color: #ffc20e;
}
.customization_box{
  position: relative;
  overflow: hidden;
  z-index: 1;
    background: rgba(15, 15, 15, 0.73);
}
.customization_box::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform:  translateX(-100%) translateY(-100%) ;
  background-color:#ffc20e ;
 
  transition: all .5s linear;

}
.customization_box:hover::before{
  transform:  translateX(0) translateY(0) ;

  
  z-index: -1;
}
.customization_box p{
  color: #ffc20e;
}
.customization_box:hover h3{
  color: black;
}
.customization_box:hover p{
  color: black;
}
.customization_box:hover .customization_icon{
  color: black;
}
.api_icon{
  font-size: 100px;
  color: #ffc20e;
}
.api_box{
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(15, 15, 15, 0.73);
}
.api_box::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform:  translateX(100%) translateY(100%) ;
  background-color:#ffc20e ;
 
  transition: all .5s linear;

}
.api_box p{
  color: #ffc20e;
}
.api_box:hover::before{
  transform:  translateX(0) translateY(0) ;

  
  z-index: -1;
}
.api_box:hover h3{
  color: black;
}
.api_box:hover p{
  color: black;
}
.api_box:hover .api_icon{
  color: black;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
  
}

.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(images/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.team .member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2db6fa;
}

.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.job_apply{
  position: relative;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
.job_apply::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s linear;
  transform: scale(0,1);
  /* transform: translateX(-100%); */
  background-color: #ffc20e;
}
.job_apply:hover::before{
  transform: scale(1,1);
  /* transform: translateX(0); */
  z-index: -1;
}
.job_apply strong{
  color: #ffc20e;
}
.job_apply:hover strong{
color:black ;
}
.job_apply:hover .apply_icon{
  color: black;
  background-color: white;
  }
.job_card{
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
background: rgba(15, 15, 15, 0.73);
}
.apply_icon{
  color:white;
  font-size: 30px;
  background-color: #ffc20e;
  padding: 8px;
  border-radius: 10px;
  transition: all 1s ease;
}
.apply_icon:hover{
  transform: translateY(-10px);
}
.job_icon{
  font-size: 70pX;
  align-items: center;
  color: #ffc20e;
}

.job_title h4{
  color: #ffc20e;
  margin-top:15%;

}
.job_card h5{
  font-size: 17px;
  margin-top:12%;
}
.job_card::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s linear;
  transform: scale(0,1);
  /* transform: translateX(-100%); */
  background-color: #ffc20e;
}
.job_card:hover::before{
  transform: scale(1,1);
  /* transform: translateX(0); */
  z-index: -1;
}
.job_card h5{
  color: #ffc20e;
  }
  .job_card h4{
    color: #ffc20e;
    }
.job_card:hover h5{
color: black;
}
.job_card:hover h4{
  color: black;
  }
  .job_card:hover .jobe_icon{
    color: black;
    }
  .job_card:hover .job_icon{
    color: black;
    }
  .button_aplay{
    position: relative;
    z-index: 1;
    background-color: #ffc20e;
    color: white;
    
  }
  .job_apply{
    background: rgba(15, 15, 15, 0.73);
  }
  .job_apply h5{
  color: #fff;
  }
  .button_aplay::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffc20e;
    transform: scale(0,1);
    transition: all 0.3s linear;
  }
  .button_aplay:hover::before{
    transform: scale(1,1);
    z-index: -1;
    color: #ffc20e;
   /* border-radius: 20px; */
  }
  .button_aplay:hover{
    color: #ffc20e;
  }
  /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 10px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;

}
.back-to-top i:hover {
  
  transform: translateY(-4px); 
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
 
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.watsapp{
  visibility: hidden;
  opacity: 0;
  position: fixed;
  font-size: 70px;
  left: 10px;
  bottom: 15px;
  color: #ffc20e;
  border-radius: 10px;
  padding: 5px;
  background-color: #fff;
  border-radius: 15px;
  z-index: 99999;
}
.watsapp.active {
  visibility: visible;
  opacity: 1;
  /* color: #000; */
}
.word_justify{
  margin-top: 4%;
  text-align: justify;
  text-justify: inter-word;
  word-spacing: -3px;
 
}
.card_star{
  /* clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35% );
  height: 40vh; */
  /* width: 200px; */
  width: 200px;
  height: 200px;
  border-radius: 50%;
  /* line-height: 100px; */
}
.card_star{
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* border-radius: 15px; */
}

.card_star::before{
  content: '';
 background-color:#ffc20e;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: all .5s linear;
}
.card_star:hover::before {
  transform: translateX(0);
  z-index: -1;
}
.card_star:hover .icon_card{
color: rgba(15, 15, 15, 0.73);
}
.card_star h6{
  font-weight: bold;

}
.card_star:hover h6{
  color: rgba(15, 15, 15, 0.73);
  }
  .hou-col{
    transition:all .5s ease-in-out ;
    border-radius: 20px;
    padding: 20px;
    /* margin: 1px; */
    /* background: rgba(15, 15, 15, 0.73); */
    
  }
  .hou-col:hover{
    transform: scale(1.1);
    /* transform: translateY(-10px); */
    background-color: #ffc20e;
  }
  .hou-col:hover .hou-icon{
  color: black;
  }
  .hou-col:hover .hou-text{
    color: black;
    }
    .hou-text{
      color: #ffc20e;
      }
  .hou-icon{
    color: #ffc20e;
    font-size: 100px;
  }
  .why-chose-scroll{
    overflow-y: auto;
    height: 40vh;
  }
  .why-chose-scroll::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
    background-color: #F5F5F5;
  }
  .why-chose-scroll::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
  }
  .why-chose-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); */
    background-color: #666666;
  }
  .brand-color{
    background-color: white;
    border-radius: 15px;
  }
  .brand-color:hover{
    background-color: #ffc20e;
  }
  .brand-color:hover h4{
    color: black;
  }
  .footer-logo{
    background-color: white;
    /* width: 400px;
    height: 150px;
    border-radius: 30%; */
    border-radius: 12px;
  }

  .footer-nav a {
    font-size: 15px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    margin: 20px;
  }