@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;800;900&display=swap');
html{scroll-behavior: smooth;}
body{
    font-family: 'Rubik', sans-serif;
    overflow-x:  hidden;
    font-weight: 400;
}
:root{
    --black:#000;
    --white:#fff;
    --purple:#9b4fcc;
    --dark_purple:#340c7b;
    --yellow:#ffb118;
    
}
h1,h2,h3,h4,h5,h6,ul,p{margin-bottom: 0;}
a, a:hover{
    text-decoration: none;
}
p{
    font-size: 16px;
}
/*::selection{
    background:var(--royal_blue);
    color:var(--white);
}*/
input:focus,textarea:focus,select:focus,button:focus{outline: none;}
.transition{transition:.4s ease-in-out;}
.object_fit_cover{object-fit: cover;}
.overflow_hidden{overflow: hidden;}

.fixed30{width:30px; height: 30px;}
.fixed40{width:40px; height: 40px;}
.fixed50{width:50px; height: 50px;}
.fixed70{width:70px; height: 70px;}
.fixed100{width:100px; height: 100px;}
.fixed120{width:120px; height: 120px;}

.font_weight500{font-weight: 500;}

.cursor_pointer{cursor: pointer;}

.bg_yellow{background:var(--yellow);}
.bg_black{background:var(--black);}
.bg_purple{background:var(--purple);}
.bg_dark_purple{background:var(--dark_purple);}


.text_yellow{color:var(--yellow);}
.text_black{color:var(--black);}
.text_purple{color:var(--purple);}
.text_dark_purple{color:var(--dark_purple);}


.border_dahed{border:1px dashed rgba(0,0,0.2);}
.border_dashed_right{
  border-right:2px dashed #d4d4d4;
}
/*hour classes*/
.text_hover_white:hover{
    color:var(--white);
}
.text_hover_danim:hover{
  color:var(--denim)!important;
}
/*button classes */
.btn1{
  z-index: 0;
}
.btn1::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: .4s ease-in-out;
  background:var(--dark_purple);
}
.btn1:hover::before{
  width: 100%;
  right: auto;
  left: 0;
}
.btn1:hover i{
  color:var(--dark_purple)!important;
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index:10000;
  animation: scrollfix .4s 1;
}
.logo_sticky{
  top: -16px!important;
  border-radius: 0 0 50px 50px!important;
}
#scrolltop {
  display: none;  
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
}
#scrolltop button:hover {
  background-color:var(--Periwinkle)!important;
  color: var(--denim)!important;
}

@keyframes scrollfix{
    0%{transform: translateY(-100%);}
    100%{transform: translateY(0);}
}

/*header css*/
.logo_div .header_logo_lg{
  width:120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: -60px;
  left: 25%;
  z-index: 100;
}
.menu_bar .fa-bars{
  z-index: 10000000;
}

.menu_bar .navbar .navbar-nav .nav-item{
  position: relative;
}
.menu_bar .navbar .navbar-nav .nav-item:hover .nav-link,
.menu_bar .navbar .navbar-nav .nav-item .dropdown-menu li:hover a{
  color:var(--yellow);
}
.menu_bar .navbar .navbar-nav .active:before,
.menu_bar .navbar .navbar-nav .nav-item:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  background:var(--yellow);
  height: 3px;
  transition: .4s ease-in-out;
}
.menu_bar .navbar .navbar-nav .active:before,
.menu_bar .navbar .navbar-nav .nav-item:hover:before{
  left: 0;
  width:100%;
}
.menu_bar .navbar .navbar-nav .fa-plus{
  font-size: 12px;
}
.menu_bar .navbar .navbar-nav .nav-item:hover .dropdown-menu{
  display: block;
}
.menu_bar .navbar .navbar-nav .nav-item .dropdown-menu li a:before{
  content: '';
  position: absolute;
  top: 45%;
  left: 0px;
  width: 10px;
  height: 2px;
  background:var(--yellow);
  opacity: 0;
  transition: .4s ease-in-out;
}
.menu_bar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover:before{
  opacity: 1;
  left: -15px;
}
.menu_bar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover{
  transform: translateX(30px);
}

.menu_bar .navbar .navbar-nav .nav-item:hover .dropdown-menu{
  height: 100%;
}
.social_link li a{
  z-index: 0;
}
.social_link li a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background:var(--yellow);
  z-index: -1;
  transition: .3s ease-in-out;
}
.social_link li a:hover:before{
  height: 100%;
  top: 0;
  bottom:auto;
}
.social_link li a:hover{
  color:var(--white)!important;
}


/*side menu css*/
.menu-toogle-icon {
    cursor: pointer;
    background: var(--yellow);
    z-index: 8;
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}
.menu-toogle-icon #nav-icon3 {
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 10000000;
}
.menu-toogle-icon #nav-icon3 span {
    display: block;
    height: 2px;
    width: 45%;
    left: 13px;
    position: absolute;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}
.menu-toogle-icon #nav-icon3 span:nth-child(1) {
    top: 20px;
}
.menu-toogle-icon #nav-icon3 span:nth-child(2),
.menu-toogle-icon #nav-icon3 span:nth-child(3)  {
    top: 26px;
}
 .menu-toogle-icon #nav-icon3 span:nth-child(4) {
    top: 32px;
}
 .menu-toogle-icon #nav-icon3.open span:nth-child(1) {
  top: 27px;
  width: 0%;
  left: 50%;
}
 .menu-toogle-icon #nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}
 .menu-toogle-icon #nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.menu-toogle-icon #nav-icon3.open span:nth-child(4) {
  top: 27px;
  width: 0%;
  left: 50%;
}


/*home_slider css */
.home_slider .carousel-inner .carousel-item>img{
  min-height: 350px;
}
/*carousel_indicators css*/

.home_slider:hover .carousel-indicators{
  opacity: 1;
}
.home_slider .carousel-indicators li{
    background:var(--yellow);
    width: 10px;
    height: 10px;
    border: none;
    opacity: 1;
    position: relative;
    
}
.home_slider .carousel-indicators li.active::after{
  content: '';
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border:2px solid var(--yellow);
  border-radius: 50%;
}

.home_slider .slider_overlay{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
}
.banner_title{
  font-size: 60px;
}
.phone_float{
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 10000;
}
.phone_float_content{
     display: none;
      max-width: 500px;
    position: fixed;
    top: 53%;
    left: 50%;
    z-index: 1000000;
    transform: translate(-50%, -50%);
}
.close_phone_float{
  position: absolute;
  top: -10px;
  right: 0px;
  cursor: pointer;
}
.counter-box {
    display: block;
    background: #f6f6f6;
    padding: 40px 20px 37px;
    text-align: center
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #3acf87
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

/*about_us css*/
.about_us .about_img,
.about_us .left{
  width: 400px;
  height: 400px;
}
.about_us .left::before{
  content: '';
  position: absolute;
  top: 10px;
  left: -15px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:var(--yellow);
  background-size: cover;
  z-index: -1;
}
.about_lalel {
  position: absolute;
  top: -54px;
  left: 60%;
}
.about_lalel::before {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: var(--yellow);
    transform: rotate(4deg);
  }
/*comparsion slider css in about section */

.img-comp-img {
  position: absolute;
}
.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: var(--purple);
  opacity: 0.7;
  border-radius: 50%;
}

.services_new .card:hover .service_icon{
  background:var(--yellow)!important;
  color:var(--white);
  border:1px solid var(--yellow);
}
.services_new .card:hover{
  background:var(--purple)!important;
}
.services_new .card:hover h5,
.services_new .card:hover p {
  color:var(--white)!important;
}
.our_partners .item img{
  filter: grayscale(1);
  width: 150px;
  margin: auto;
}
.our_partners .item img:hover{
  filter: grayscale(0);
}


/*testimonials css*/
.testimonials {
  background:url('../images/bg-section-04.jpg') no-repeat center center;
  background-size: cover;
}
.testimonials .item .author_img{
  z-index: 1;
  border:5px solid var(--white);
}
.testimonials .item .card .fa-quote-right{
  opacity: .2;
  }
.testimonials .item .card:hover .fa-quote-right{
  color:var(--purple)!important;
  opacity: 1;
}
.testimonials .item .card::before{
     position: absolute;
    top: 0px;
    right: 0px;
    content: '';
    border-top: 50px solid #dee5eb;
    border-left: 50px solid transparent;
}

.owl-carousel .owl-dots {
    display: block;
    text-align: center;
    padding-top:40px;
}
.owl-carousel  .owl-dots button{
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 100%;
    border: none;
    margin: 5px;
    position: relative;
  }
.owl-carousel  .owl-dots button.active:before{
    content: '';
    position: absolute;
    left: -4px;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    border: 2px solid var(--yellow);
    top: -4px;
}

.process .card .card_main{
  border:2px solid var(--black);
  width: 120px;
  height: 120px;
}
.process .card .card_main span:nth-child(1){
  position: absolute;
  top: 0px;
  left: 35%;
  border:4px solid var(--white);
}
.process .card .card_main span:nth-child(2){
  position: absolute;
  top: 40px;
  right: -20px;
  border:4px solid var(--white);
  opacity: 0;
}
.process .card .card_main:hover span:nth-child(1){
  opacity: 0;
}
.process .card .card_main:hover span:nth-child(2){
  opacity: 1;
}
.process .card .card_main:hover{
  background:var(--purple);
  color:var(--white)!important;
  border-color:var(--purple);
}

.process .card .card_main:hover .icon{
  color: var(--white)!important;
}

.process .item::after{
      font-family: FontAwesome;
    content: "\f178";
    position: absolute;
    right: 0;
    top: 29%;
    font-size: 24px;
}
.process .item:last-child::after{
  display: none;
}








.latest_news .card:hover .card-body .content{
  transform: translateY(-50px);
}
.latest_news .card .card-body .content .text_btn{
  display: none;
  }
.latest_news .card:hover .card-body .content .text_btn{
  display: block;
  transform: translateY(20px);
}
.latest_news .card .card-img{
  height: 250px;
}
.latest_news .card .card-img:hover img{
  transform: scale(1.2);
}
.latest_news .card a:hover{
  color:var(--purple);
}


/*footer css */
footer .footer_logo{
  z-index: 10000;
  margin-top: -150px
}
footer .instagram_images li .card-img-overlay{
  background:rgba(0,0,0,.4);
  opacity: 0;
}
footer .instagram_images li:hover .card-img-overlay{
  opacity: 1;
}

footer .other_links ul li{
  font-size: 14px;
}
footer .other_links ul li:hover{
  transform: translateX(5px);
}
footer .other_links ul li a:hover{
  color:var(--yellow)!important;
}
footer .item::-webkit-scrollbar{
  display: none;
}.call_icon {
    position: fixed;
    bottom: 87px;
    right: 10px;
    z-index: 2000;
}