@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Roboto", serif;

}

:root {
    --color-white: #fff;
    --color-black: #0e0e0e;
    --tmeme-blue: #0e2b5c;
    --theme-green: #82b541;
    --header-rgb: rgb(215, 223, 239);
    --main-gradient: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    --para_grey: #808080;
    --para_grey2: #fefefe;
}


h1 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

h5 {
    font-size: clamp(.9rem, 1.5vw, 1.2rem);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    font-size: 16px;
}

p {
    font-size: 16px;
    font-weight: 400;
}

.paddingY_8 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.paddingT {
    padding-top: 80px;
}
.para_color {
    color: #f0f0f0;
}
.login_btn {
    position: relative;
    z-index: 1;
    min-width: 145px;
    height: 40px;
    line-height: 42px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    background-size: 200% auto;
    color: #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    /* background-image: linear-gradient(90deg, #17EAD9 0%, #6078EA 50%, #17EAD9 100%); */
    background-image: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    -webkit-transition: all 500ms;
    transition: all 500ms;
    border: none;
}


.login_btn:hover {
    background-position: right center;
    color: #fff;
}




.dropdown-menu h4{
    font-size: 17px;
    color: #5e7afa!important;
	border-bottom: 1px solid #fff !important;
    padding-bottom: 10px;
    width: 100%;
}





/* common class */
.title {
    color: var(--tmeme-blue);
}

.sub_title {
    color: var(--theme-green);
    width: fit-content;
    position: relative;
}

.sub_title::after {
    content: '';
    position: absolute;
    left: 110%;
    bottom: -5%;
    width: 50px;
    height: 3px;
    background-image: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
}

#services .sub_title,
#team .sub_title,
#contact .sub_title,
#blogs .sub_title,
#works .sub_title,
#projects .sub_title,
.page_aboutus_profile .sub_title, .page_services .sub_title, .pricing_content .sub_title, .page_contact_form .sub_title, .contact_why_us .sub_title {   
    left: 50%;
    transform: translateX(-50%);
}
/* keyframes */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes hue {
    from {
      -webkit-filter: hue-rotate(0deg);
    }
    to {
      -webkit-filter: hue-rotate(-360deg);
    }
}
/* navbar */
header {
    background-color: transparent;
    box-shadow: none !important;
    transition: background .4s ease-in-out;
}

header.scrolled {
    background-color: #0A254D;
    transition: background .4s ease-in-out;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-family: var(--font-secondary); */
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}



.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #82b541 !important;
}
.navbar li:hover>a {
    color: #fff!important;
}


.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    /* height: 90px; */
}

.sticked_bg {
    background-color: var(--header-rgb);
}

.sticked_bg .navbar a,
.sticked_bg .navbar a:focus {
    color: var(--tmeme-blue);
}

.sticked_bg .navbar a:hover,
.sticked_bg .navbar .active,
.sticked_bg .navbar .active:focus {
    color: #82b541 !important;
}

.sticked_bg .navbar li:last-child a.btn:hover {
    color: #fff !important;
}

header a.logo img {
    width: 200px !important;
    /* height: 65px; */
}
/* .navbar-expand-lg .navbar-nav .dropdown-menu {
        top: 120% !important;
    } */
.navbar-nav li:nth-of-type(3):hover .dropdown-menu {
    left: -180%;
}
.dropdown-menu.show {
   display: block;
    padding: 5px 10px;
    background: transparent!important;
    /* border: 1px solid #fff; */
    border-radius: 10px;
  /* width: fit-content; */
   backdrop-filter: blur(50px);
}
#solutionsmenu .dropdown-menu.show {
     display: grid;
  /* width: fit-content; */
  padding: 5px 10px;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
a.dropdown-item.dropdown-toggle {
  justify-content: left;
}
.dropdown-submenu .dropdown-toggle::after {
  display: none;
}



.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 5px; 
}
.dropdown-item:hover{
  background-color: transparent !important;
}
.dropdown-item:{
    background-color: transparent !important;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--theme-green)!important;
  text-decoration: none!important;
  background-color: transparent!important;
}



a.dropdown-item {
    padding: 0;
}

/* .dropdown-menu li {
    margin-bottom: 10px;
} */

.dropdown-menu.show .dropdown-item img {
    width: 50px;
    margin: auto;
    margin-right: 10px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu.show {
    position: absolute;
/*     left: 50%; */
/*     transform: translateX(-50%); */
     background: transparent!important;
    /* border: 1px solid #fff; */
    border-radius: 10px;
  /* width: fit-content; */
   backdrop-filter: blur(50px);
   -webkit-backdrop-filter: blur(50px);
    border: 1px solid #5085b5;
     border-top: 0px;
     background-color: rgba(20, 55, 96, 0.3)!important;
}

.dropdown-submenu {
  position: relative;
}
.dropdownnew{
  width: 100%;
}
.dropdown-submenu h4{
  font-size: 17px;
  color: #5e7afa!important;
}
a.dropdown-item.dropdown-toggle {
    justify-content: left;
}
.dropdownnew {
  width: 100%;
  margin-left: 0;
  padding-left: 5px;
}
.dropdown-submenu .dropdown-menu {
    top: 35px;
    left: -10px;
    margin-top: 0;
     backdrop-filter: blur(50px);
     -webkit-backdrop-filter: blur(50px);
   border: 1px solid #5085b5;
   border-top: 0px;
   background-color: rgba(20, 55, 96, 0.9)!important;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}
.navbar-nav .dropdown-menu{
  background-color: rgba(20, 55, 96, 0.9)!important;
   backdrop-filter: blur(50px)!important;
     -webkit-backdrop-filter: blur(50px)!important;
}

  @media (max-width: 991px) {
.navbar i{
  font-size: 28px;
  color: #f0f0f0;
}
#solutionsmenu .dropdown-submenu {
  position: relative;
  display: block!important;
}
.navbar-toggler{
  border: 3px solid #fff;
  float: right;
  position: absolute;
  right: 0px;
  top: 20px;
}
#navbarNav {
  position: relative;
  top: 70px;
  background-color: #0a254d;
  padding: 0px 5px;
  border-radius: 0px 0px 10px 10px;
  height: 340px;
  overflow-y: scroll;
}
.hero {
  position: relative;
  width: 100%;
  height: 60vh!important;
  background-size: cover;
  background-position: initial;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.hero-wrapper.container.w-100\% {
  padding-top: 10%;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.show {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.logo.d-flex.align-items-center {
  position: relative;
}
.navbar.navbar-expand-lg {
  position: absolute;
  right: 5%;
  width: 90%;
  top: 10px;
}
#solutionsmenu .dropdown-menu.show {
  display: block;
  padding: 0px;
}
a.dropdown-item.dropdown-toggle {
  justify-content: left;
}
.dropdownnew {
  width: 100%;
  padding-left: 5px;
}
.dropdown-submenu h4 {
  font-size: 15px;
  color: #00c5f8 !important;
  margin-bottom: 0px;
}


}



.navbar-nav li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
}

#solutionsmenu .dropdown-submenu{
  position: relative;
  display: table-cell;
}




/* hero banner */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: 100% 100%;
    /* background-position: 10% 20% !important; */
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-wrapper h5 {
    font-weight: 400;
}

.hero-wrapper .btn_wrapper a {
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}

canvas.particles-js-canvas-el {
    position: absolute ! important;
}

/* partners slide */
#partners {
    /* background-color: var(--tmeme-blue); */
}

#partners .clients-carousel .item.box {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
}

#partners .clients .clients-carousel .item.box img {
    max-height: 85px !important;
    display: inline-block;
    mix-blend-mode: multiply;
}

/* about us */

#about {
    background-color: #0C151D;
}

#about .title {
    color: var(--color-white);
}

#about .about_content .description {
    color: #f0f0f0;
    font-weight: normal;
}

#about .about_content ul li {
    font-weight: 600;
    color: #fefefe;
}

#about .about_content ul li i {
    color: var(--theme-green);
    font-size: 20px;
    margin-bottom: 15px;
}

.about_content p{
    color: #fff;
}

/* services slider */


#services .service_card {
    padding: 15px;
    border: none !important;
    transition: 0.3s ease-in-out;
}

#services .service_card a {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border: none !important;
    border-radius: 20px;
    overflow: hidden;
}

#services .service_card figure {
    max-height: auto;
    overflow: hidden;
}

#services .service_card figure img {
    height: 100%;
	height: 150px;
    margin-top: 40px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

#services .service_card a:hover figure img {
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

#services .service_card .service_card_content {
    padding: 10px 30px;
}

#services .service_card .service_card_content .card-caption h3 {
    color: var(--tmeme-blue);
	font-size: 23px;
	min-height: 100px;
  align-items: center;
  align-content: center;
}

#services .service_card a:hover {
    background-color: var(--theme-green);
    transition: 0.3s ease-in-out;
}

#services .service_card a .service_card_content .card-description p {
    color: #0e0e0e;
	min-height: 150px;
}

#services .service_card a:hover .service_card_content .card-description p {
    color: var(--color-white) !important;
}

#services .owl-nav {
    position: absolute;
    top: -12%;
    right: 2%;
    font-size: 30px;
    display: flex;
    gap: 30px;
}

#services .owl-nav i {
    color: var(--theme-green);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;

}

.owl-theme .owl-nav [class*=owl-]:hover i {
    color: #3e6808 !important;
}

/* team slider */
#team .card.team_card {
    border: none !important;
    padding: 10px;
}

#team .card.team_card a {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #241f27;
    border-radius: 20px;
}

.team_wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.team_wrapper .team_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: auto;
    transition: all 0.5s ease-in-out 0s;
    /* height: 220px; */
    border-radius: 10px;
}

.team_wrapper .team_image {
    width: 90% !important;
    overflow: hidden;
    max-height: 350px;
    border-radius: 25px;
    background-image: var(--main-gradient);
    padding-bottom: 60px;
}

.team_socials {
    top: 68%;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    /* adjust to control the size  */
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
    background: #ffffff;
    /* background-color: #ac50ef; */
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team_socials li i {
    font-size: 32px;
}

/* .team_wrapper:hover .team_image img {
    transform: scale(1.2);
} */

.team_wrapper .social {
    list-style: none;
    padding: 30px 15px;
    margin: 0;
    background-image: linear-gradient(45deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    ;
    border-bottom-right-radius: 50px;
    position: absolute;
    top: 0;
    left: -30%;
    transition: all 0.4s ease-in-out 0s;
}

.team_wrapper:hover .social {
    left: 0;
}

.team_wrapper .social li {
    display: block;
}

.team_wrapper .social li i {
    display: block;
    padding: 5px 0;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

.team_wrapper .social li:first-child a {
    padding-top: 0;
}

.team_wrapper .social li:last-child a {
    padding-bottom: 0;
}

.team_wrapper .social li i:hover {
    color: var(--theme-green);
}

.team_wrapper .team_content {
    width: 100%;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    left: 0;
}

.team_wrapper .team_title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--color-white);
    margin: 0 0 5px 0;
    text-align: center;
}

.team_wrapper .team_post {
    display: block;
    color: var(--theme-green);
    text-align: center;
}

.team_wrapper:hover .team_content {
    background-image: linear-gradient(90deg, #ac50ef99 0%, #7059fb52 50%, #2ecff69c 100%);
}

/* contact section */

#contact {
    background-color: var(--color-black);
}

#contact .contact_form {
    background-color: #d0fdda0d;
    backdrop-filter: blur(8px);
    padding: 20px 40px;
    border-radius: 20px;
}
#contact .contact_form .form-label{
	color: #fff;
}
#contact .contact_form input,
#contact .contact_form textarea,
#contact .contact_form select, .page_contact_form select, .page_contact_form input, .page_contact_form textarea {
    border: none;
   box-shadow: rgba(235, 235, 235, 0.8) 0px 3px 12px 0px;
    background-color: rgba(255, 255, 255, 0.3)!important;
    padding: 10px 12px;
 color: #fefefe!important;
}

.page_contact_form label{
	color:#fefefe!important;
}
.page_contact_form select {
    color: #82b541!important;
}


#homecontact_form input, textarea, select{
    box-shadow: rgba(235, 235, 235, 0.8) 0px 7px 29px 0px;
    background-color: rgba(255, 255, 255, 0.3)!important;
}

.contact_form option {
  background: #00486c;
  color: #fff!important;
}

.wpcf7-form-control-wrap option:focus{
  background: #82b541!important;
}
.wpcf7-form-control-wrap option:hover{
  background: #a751f0!important;
}
.wpcf7-form-control-wrap .active{
  background: #000!important;
}


#contact .contact_form input::placeholder,
#contact .contact_form textarea::placeholder,
#contact .contact_form select::placeholder,
#contact .contact_form select{
    color: var(--theme-green)!important;
}

#contact .contact_form .login_btn, .page_contact_form .login_btn {
    display: block;
    height: 50px;
    line-height: 29px;
    font-size: 18px;
}

#contact .contact_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#contact .contact_wrapper .contact_box {
    background-image: var(--main-gradient);
    background-size: 200% auto;
    border-radius: 15px;
    padding: 50px 30px;

}

#contact .contact_wrapper .contact_box a {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

#contact .contact_wrapper .contact_box a .contact_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--color-white);
}

#contact .contact_wrapper .contact_box a .contact_content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--color-white);
    /* align-items: center; */
    justify-content: center;
}

#contact .contact_wrapper .contact_box a .contact_content h4,
#contact .contact_wrapper .contact_box a .contact_content p {
    margin: 0;
}

#contact .contact_wrapper .contact_box:hover {
    background-position: right center !important;
}

/* accordian */
.accordion-button::after {
    display: none !important;
}

.accordion-button .icon {
    margin-left: auto;
    transition: transform 0.3s ease-in-out;
}

.accordion {
    border-radius: 15px;
    overflow: hidden;
    --bs-accordion-border-width: 0 !important;
    --bs-accordion-bg: transparent !important;
    /* border: 0px solid transparent;
    border-width: 0 1px 1px 1px;
    border-color: transparent #fff #fff #fff !important; */
}

.accordion-item {
    border-radius: 15px;
    margin-bottom: 8px;
    overflow: hidden;

}

.accordion-body {
    border: 0px solid transparent;
    border-width: 0 1px 1px 1px;
    border-color: transparent #2b2b2b #2b2b2b #2b2b2b !important;
    border-radius: 0 0 15px 15px;
    background-color: #eee;
    color: var(--theme-green);
    font-weight: normal;
    position: relative;
    top: -7px;
}

button.accordion-button.collapsed {
    color: #fff!important;
    font-weight: 500;
    background-position: right center;
}

/* .accordion-item .show {
    border: 0px solid transparent;
} */

.accordion-item:last-of-type {
    margin-bottom: 0;
}

.accordion-button {
    border-radius: 15px !important;
    background-image: var(--main-gradient);
    color: var(--color-white) !important;
    background-size: 200% auto;

}

button.accordion-button.collapsed {
    color: #fff !important;
    font-weight: 500;
    background-position: right center;
}

.accordion-button:focus {
    box-shadow: none;
}

/* blogs section */


/* how it works section */
#works {
    /* width: 100%; */
    /* height: 300px; */
}

#works .works_features {
    background-image: var(--main-gradient);
   height: 100%;
  display: flex;
  flex-direction: column;
/*   justify-content: space-between; */
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
}
.works_features p{
    color: #fff;
}
#works .works_wrapper {
    /* position: absolute; */
    /* bottom: 15%; */
}

#works .works_features:hover {
    transform: translateY(-10px);
    transition: all .4s ease-in-out;
}

#works .works_features:hover .works_features_icon img {
    scale: .8;
}

#works .works_features .works_features_icon img {
    background-color: var(--theme-green);
    border-radius: 8px;
    transition: all .4s ease-in-out;
}

.works_main_feature {
    background-color: var(--color-black);
}

.works_main_feature_content {
    /* background-image: var(--main-gradient); */
    padding: 10px 30px;
}

.works_main_feature_content .wmf_content_srno {
    /* width: 100px; */
    height: 80px;
    flex: 1;
    /* height: 0%; */
    border-radius: 5px;
    background-image: var(--main-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 38px;
    font-weight: 900;

}

.works_main_feature_content .wmf_text_wrap {
    flex: 6;
}

.works_main_feature_content .wmf_text_wrap .description {
    color: #cccccc;
    font-weight: normal;
}

.works_main_feature_img figure {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(68, 68, 68, 0.1) 0px 4px 6px -1px, rgba(107, 107, 107, 0.06) 0px 2px 4px -1px;

}

.works_main_feature:hover figure img {
    transform: scale(1.2);
    transition: all .4s ease-in-out;
}

/* projects section */
#projects {
    background-color: var(--color-black);
}

#projects .project_img figure {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(190, 190, 190, 0.1) 0px 4px 6px -1px, rgba(179, 179, 179, 0.06) 0px 2px 4px -1px;
    position: relative;
    /* transition: all .4s ease-in-out; */
    width: 100%;
    height: 280px;
}

#projects .project_img figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#projects .project_img figure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    mix-blend-mode: multiply;
    background: linear-gradient(35deg, #ea1717 0%, #193ce5 100%);
    /* background: linear-gradient(35deg, #17EAD9 0%, #6078EA 100%); */

}

#projects .project_details {
    z-index: 9;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    transition: all .4s ease-in-out;
}

#projects .project_details .project_btn {
    display: none;
    transition: all .4s ease-in-out;
}

#projects .project_img figure:hover .project_details .project_btn {
    display: block;
    transition: all .4s ease-in-out;
    transition: .5s;
}

/* blogs section */
#blogs .blogs_wrapper .blogs_content p {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogs_wrapper .title {
    color: var(--theme-green);
    font-size: 20px;
    height: 70px;
    overflow: hidden;
}

#blogs .blogs_card {
    padding: 20px;
}
.blogs_img img{
  width: 100%;  
  height: 250px;
  object-fit: cover;
}
#blogs .blogs_card .blogs_wrapper {
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    overflow: hidden;
    position: relative;
    transition: all .4s ease-in-out;
}

#blogs .blogs_card:hover .blogs_wrapper {
    bottom: 10px;
    transition: all .4s ease-in-out;
}

#blogs .blogs_meta {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 15px;
    background-image: var(--main-gradient);
    border-radius: 5px;
}

#blogs .blogs_meta p {
    padding: 0;
    margin: 0;
    color: var(--color-white);
}

#blogs .blogs_meta i {
    color: var(--theme-green);
}

/* footer */
#footer {
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    background-image: url(./../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 40px;
}
.footer_socials ul li a i{
    font-size: 28px;
     color: #cccccc;
}
.footer_socials ul li a i:hover{
    color: var(--theme-green)!important;
    transition: .5s;
}



.footer_socials ul li a i:hover {
    color: #fff;
    animation: heartbeat 1.5s ease-in-out infinite;
}

#footer .footer_logo img {
    width: 90%;
}

#footer .footer_links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
}
#footer .footer_links ul li{
    line-height: 17px;
}
#footer .footer_links ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all .4s ease-in-out;
    font-size: 16px;
    font-weight: 600;
}

#footer .footer_links ul li a:hover {
    color: var(--theme-green);
    transition: all .4s ease-in-out;
}

.footer_links {
    margin-top: 30px;
}
.footer_bottom {
    background-color: #0e0e0e;
}

.footer_bottom .copyright p,
.footer_bottom .copyright p a,
.footer_bottom .designed p,
.footer_bottom .designed p a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.footer_bottom .copyright:hover p a,
.footer_bottom .designed:hover p a {
    color: var(--theme-green);
}

/* breadcrumbs */
.page_breadcrumb {
    padding: 150px 0 120px;
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.breadcrumb .breadcrumb-item a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb .breadcrumb-item a:hover,
.breadcrumb .breadcrumb-item.active {
    color: var(--theme-green);
    font-weight: 500;
}

/* about us page */
.page_aboutus_profile .profile_wrapper ul {
    width: 100%;
    list-style-type: disc;
}
p.card_description {
    min-height: 120px;
}
.zoomin_effect img {
    transition: all .4s ease-in-out;
    transform: scale(1);
}

.page_aboutus:hover .zoomin_effect img,
.page_aboutus_whyus:hover .zoomin_effect img {
    transition: all .4s ease-in-out;
    transform: scale(1.2);
}

.why_card_icon {
    height: 100px;
    background-color: transparent;
    margin: auto;
    aspect-ratio: 1 / cos(30deg);
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_card_icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}
.why_card_item {
    padding: 15px;
    border: .01rem solid #7059fb;
    border-radius: 12px;
    transition: background 0.5s ease-in-out, border 0.5s ease-in-out;
}
.why_card_item:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border: none;
    background: linear-gradient(35deg, #ea1717 0%, #193ce5 100%);
}
.why_card_item:hover .why_card_content h4{
    color: var(--color-white);
}
.why_card_item:hover .why_card_content p{
    color: var(--para_grey2);
}
.why_card_item:hover .why_card_icon{
    background-color: var(--color-white);
    scale: .9;
}


/* services page */

.aside_more_services ul li a figure{
    flex: 1;
}
.aside_more_services ul li a figure img{
    width: 100%;
    display: block;
}
.aside_more_services ul li a .text_con{
    flex: 3;
}
.aside_more_services a .text_con p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; 
}
.aside_more_services ul li{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 10px, rgba(0, 0, 0, 0.22) 0px 4px 6px;   
}
.aside_more_services ul.more_services_list li:hover{
    background: linear-gradient(35deg, #ea1717 0%, #193ce5 100%);
    border-radius: 12px;
    transition: all .5s ease;
}
.aside_more_services ul li a .text_con h5{
    color: var(--tmeme-blue);
}
.aside_more_services ul li:hover a .text_con h5{
    color: var(--color-white);
}
.aside_more_services ul li a .text_con p{
    color: var(--color-black);
}
.aside_more_services ul li:hover a .text_con p{
    color: var(--para_grey2);
}
.page_services_detailscontent ul {
    list-style: disc;
}
.page_services_detailscontent ul li::marker {
    color: var(--theme-green);
    font-size: 30px;
  }

  .page_services_details .contact_aside{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    /* z-index: -1; */
    z-index: 1;
  }
  .page_services_details .contact_aside::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
  }
  .page_services_details .page_conatct_details .page_other_call a{
    color: var(--color-white);
    font-size: 20px;
  }
  .page_services_details .page_conatct_details .page_other_call a i{
    font-size: 30px;
    color: var(--theme-green);
    margin-right: 10px;
  }
  .page_services_details .page_conatct_details .page_other_call a:hover{
    color: var(--theme-green);
    
  }
  .page_services_details .page_conatct_details .page_other_call a:hover i{
    color: var(--color-white);
  }
  .overlay_top{
    z-index: 5;
    top: 0;
    left: 0;
  }
  .contact_aside .overlay_top h3{
    background-image:linear-gradient(270deg, #ea1717, #193ce5, #ea1717);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: hue 10s infinite linear;
  }

  /* Pricing card page */
  .price-tabs {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(39, 39, 39, 0.1);
    display: inline-block;
    padding: 7px;
    border-radius: 40px;
    border: 1px solid var(--theme-green);
    margin-bottom: 45px;
  }
  
  @media (min-width: 768px) {
    .price-tabs {
      margin-bottom: 60px;
    }
  }
  
  .price-tabs .nav-link {
    color: var(--tmeme-blue);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 35px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid var(--tmeme-blue);
  }
  
  @media (min-width: 768px) {
    .price-tabs .nav-link {
      padding: 12px 40px;
    }
  }
  
  .price-tabs .nav-link.active {
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    color: #fff;
    border: 2px solid #fff;
  }
  
  .price-item {
    background-color: #fff;
    box-shadow: 0 5px 30px rgba(39, 39, 39, 0.15);
    border-radius: 10px;
    padding-top: 20px;
    margin: 0;
  }
  
  @media (min-width: 768px) {
    .price-item {
      margin: 0 20px;
    }
  }
  
  .price-top {
    box-shadow: 0 5px 30px rgba(39, 39, 39, 0.15);
    padding: 50px 0 25px;
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    border-radius: 10px;
    position: relative;
    margin-bottom: 33px;
    z-index: 0;
  }
  
  @media (min-width: 768px) {
    .price-top {
      margin: 0 -20px;
      border-radius: 20px;
    }
  }
  
  .price-top::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    transform: skewY(5deg);
    box-shadow: 0 5px 10px rgba(113, 113, 113, 0.15);
    z-index: -1;
    border-radius: 0 0 10px 10px;
  }
  
  @media (min-width: 768px) {
    .price-top::after {
      border-radius: 0 0 20px 20px;
    }
  }
  
  .price-top * {
    color: #fff;
  }
  
  .price-top h2 {
    font-weight: 700;
  }
  
  .price-top h2 sup {
    top: 13px;
    left: -5px;
    font-size: 0.35em;
    font-weight: 500;
    vertical-align: top;
  }
  .price-top h2 span {
    font-size: 0.35em;
    font-weight: 500;
  }
  .price-content {
    padding: 30px 30px 40px;
  }
  
  .price-content ul {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  
  .price-content li {
    position: relative;
    margin: 0 10px 15px;
    text-align: center;
  }
  
  @media (min-width: 992px) {
    .price-content li {
      text-align: left;
      padding-left: 28px;
    }
  
    .price-content li i {
      position: absolute;
      left: 0;
      top: 3px;
    }
  }
  
  .zmdi-check {
    color: #28a745;
  }
  
  .zmdi-close {
    color: #f00;
  }
  
  .popular {
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
  }
  
  .price-item.popular .price-top {
    background: #fff;
  }
  
  .popular .price-top::after {
    background: #fff;
  }
  
  .popular .price-top h4 {
    color: #101f41;
  }
  
  .popular .price-top h2,
  .popular .price-top span,
  .popular .price-top sup {
    color: var(--theme-green);
  }
  
  .popular .price-content ul * {
    color: #fff !important;
  }
  
  .popular .zmdi-check,
  .popular .zmdi-close {
    color: #fff !important;
  }
  .popular .login_btn{
    border: 1px solid var(--theme-green)
  }
  .price-item .price-top p{
    width: 90%;   
  }
  .popular .price-top p{
    color: var(--color-black);
  }
  .price_popular{
    top: 0%;
    z-index: 9999999;
    color: red;
    background: yellowgreen;
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  .price-item_wrap:hover{
    position: relative;
    transform: translateY(-10px);
  }

  /* faq page */
  .page_faq .accordion-body{
    background-color: transparent;
    /* background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border: none;
   
  }
  
  .page_faq .faq_img {
    overflow: hidden;
    border-radius: 12px;
    transition: 0.3s ease-in-out;

  }
  .page_faq .faq_img:hover img{
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
  }
  /* blog page */
  .page_blogs .page_blog_card{
    transition: 0.3s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.8);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    object-fit: cover;
  }
  .page_blogs .page_blog_card:hover{
    transform: translateY(-10px);
  }
  .blog_card_overlay{
    z-index: 1;
    background: linear-gradient(360deg,rgba(89, 0, 153, 1) 0%, rgba(78, 47, 250, 0.7) 21%, rgba(46, 207, 246, 0.59) 33%, rgba(46, 207, 246, 0) 50%);
    background-blend-mode: overlay;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-size: 100% 100%;
    transform-origin: bottom;
    transition: transform 0.4s ease-in-out;
  }
  .page_blogs .page_blog_card:hover .blog_card_overlay{
    transform: scaleY(1.7);

  }
  .page_blog_content{
    z-index: 2;
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: 0.3s ease-in-out;
    padding: 20px 15px 20px 15px;
  }
.page_blogs .page_blog_card:hover .page_blog_content{
    padding-bottom: 140px;
  }
.page_blog_para {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: absolute;
    bottom: 20px;
    width: 100%;
}
.page_blogs .page_blog_card:hover .page_blog_para {
    opacity: 1;
    transform: translateX(0);
  }
  
  .blog-preview {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--para_grey2);
    margin: 0;
  }
  
  .read-more {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 8px;
    cursor: pointer;
  }
  .read-more:hover{
    color: var(--theme-green);
    scale: 1.1;
  }
.page_blog_data{
    top: 0;
    left: 0;
    padding: 5px 10px;
    background: #ac50ef;
    font-weight: 600;
    z-index: 2;
    color: white;
    border-radius: 0px 5px 5px 0;
}
.page_blog_data p{
    margin-bottom: 0 !important;
}
/* blog page pagination */
.blog_pagination {
    display: grid;
    place-items: center;
    text-align: center;
  }
  .blog_pagination .container {
    width: 60%;
    background: #424d83;
    padding: 25px;
    border-radius: 3px;
    box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, 0.288);
  }
  .pagination {
    display: flex;
    list-style: none;
  }
  .pagination .page-item {
    flex: 1;
    margin: 0 5px;
    background: #dde1e7 !important;
    border-radius: 3px;
    box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, 0.288);
  }
  .pagination .page-link {
    font-size: 18px;
    text-decoration: none;
    color: var(--tmeme-blue);
    display: block;
    padding: 8px 20px;
    background-color: transparent;
    border: none;
  }
  .pagination .page-item:first-child .page-link,
  .pagination .page-item:last-child .page-link {
    width: 120px;
  }
  .pagination .page-item.active .page-link {
    box-shadow: inset -3px -3px 7px #ffffff73,
                inset 3px 3px 5px rgba(94, 104, 121, 0.288);
    background-color: #57069c !important;
    color:var(--theme-green) !important;
    font-weight: 600;
  }
  .pagination .page-link:focus {
    outline: none;
    box-shadow: none !important;
  }
  .pagination .page-item:first-child {
    margin-right: 15px;
  }
  .pagination .page-item:last-child {
    margin-left: 15px;
  }
  /* blog details page */
.page_blog_details h2,
.page_blog_details h3,
.page_blog_details h4,
.page_blog_details h5 {
  color: var(--tmeme-blue);
  margin-bottom: 12px;
  margin-top: 12px;
}
.blog_details_img img {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.blog_details_img:hover img {
    transform: scale(1.1);
}
.blog_details_right{
    
}
.blog_details_right ul.more_services_list{
    border: 1px solid var(--tmeme-blue);
    padding: 15px 10px !important;
    border-radius: 12px;
}
.blog_details_right .page_conatct_details .page_other_call a {
    color: var(--color-white);
    font-size: 20px;
}
.next_prev_btn{
    width: fit-content;
}
.blog_meta_data .meta_date, .blog_meta_data .meta_author{
  color: var(--theme-green);
}
.blog_details_right .more_services_list li figure{
    width: 35%;
}
/* contact page */

.page_contact_wrap .container .card:nth-child(1) .box .icon .iconBox {
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    background-size: 150% 150%;
  }
  .page_contact_wrap .container .card:nth-child(2) .box .icon .iconBox {
    background: #70b3b1;
  }
  .page_contact_wrap .container .card:nth-child(3) .box .icon .iconBox {
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%);
    background-size: 200% auto;
  }
  
  .page_contact_wrap .container .card .content {
    padding: 0.938rem 0.625rem;
  }

  .page_contact_wrap .container .card-inner {
    position: relative;
    width: inherit;
    height: 15rem;
    background: #fff;
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
  }
  .page_contact_wrap .container .card-inner .box {
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%), url("./../images/call.png") no-repeat;
    background-position: center;
    background-size: 100% 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-blend-mode: overlay;
  }
  .page_contact_wrap .container .card-inner .box1{
    background-image: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%), url("./../images/call.png") no-repeat;
  } 
  .page_contact_wrap .container .card-inner .box2{
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%), url("./../images/mialus.png") no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-blend-mode: multiply;
  } 
  .page_contact_wrap .container .card-inner .box3{
    background: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%), url("./../images/location.png") no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-blend-mode: overlay;
  } 
  .page_contact_wrap .container .card-inner .box .icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background:#fff;
    border-top-left-radius: 50%;
    /* border-radius: 1.25rem; */
  }
  .page_contact_wrap .container .card-inner .box .icon:hover .iconBox {
    transform: scale(1.1);
    background-position: right bottom;
  }
  .page_contact_wrap .container .card-inner .box .icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
  }
  .page_contact_wrap .container .card-inner .box .icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
  }
  .page_contact_wrap .container .card-inner .box .icon .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #282828;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
  .page_contact_wrap .container .card-inner .box .icon .iconBox span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* contact page */
  .page_contact_wrap .card {
    background-color: #fff;
    border-radius: 1.25rem;
    /* border-radius: 15px; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    overflow: hidden;
  }
  .page_contact_wrap .card:hover{
    transform: translateY(-10px);
  }
  .page_contact_wrap .card_content h3{
    color: var(--color-white);
  }
  .page_contact_wrap .card_content h5{
    color: var(--para_grey2);
  }
  .page_contact_form{
    background: 
    url("./../images/contactformbg.png"), rgba(0, 0, 0, 0.5) no-repeat; 
    background-size: cover;
    background-position: center;
  background-blend-mode: overlay;
}
.contact_form_wrap{
    background-color: transparent;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    padding: 15px 20px;
}
.contact_form_wrap form{
    background-color: transparent;
}
.page_contact_form input::placeholder, .page_contact_form textarea::placeholder, .page_contact_form select::placeholder, .page_contact_form select {
    color: #82b541;
}
.page_contact_form input, .page_contact_form textarea, .page_contact_form select{
    border-left: 5px solid var(--theme-green);
}
.page_contact_form label{
    font-weight: 700;
    font-size: 18px;
    color: #82b541;
}
.page_aboutus_profile .profile_wrapper p{
	color: #fff !important;
}
.page_aboutus_profile .profile_wrapper ul li {
	color: #fff;
}

/* testimonial */
.top_heading p {
  width: 80%;
  margin: 0 auto;
}

#testimonial .sub_title {
  left: 50%;
  transform: translateX(-50%);
}

.page_testimonial_slide {
  margin-top: 100px;
}

.testi_card.why_card_item {
  padding: 60px 40px 30px 40px;
  border: 0.3rem solid #ac50ef;
  border-radius: 12px;
  transition: background 0.5s ease-in-out, border 0.5s ease-in-out;
  position: relative;
}

.testi_card:hover {
  border: 0.3rem solid var(--theme-green);
}

.testi_card.why_card_item::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 0;
  width: 100px;
  height: 100px;
  background: url(./../../assets/images/team/quate.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
  transform: rotate(180deg);
  border-radius: 50px;
}

.testi_card.why_card_item::after {
  content: "";
  position: absolute;
  bottom: -12%;
  right: 0;
  width: 100px;
  height: 100px;
  background: url(./../../assets/images/team/quate.png);
  background-size: contain;
  background-repeat: no-repeat;
  /* opacity: 0.5; */
  z-index: 99;
}

.testi_admin {
  width: 80px;
  aspect-ratio: 1/1;
  border: .3rem solid var(--color-white);
  border-radius: 50%;
  overflow: hidden;
}

.testi_admin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi_card:hover p.testi_say,
.testi_card:hover h5.admin_name {
  color: var(--color-white);
}

.testi_card p.admin_designation span {
  font-size: 12px;
  font-weight: 500;
}

.testi_card:hover p.admin_designation span {
  color: var(--theme-green);
}
#testimonial .top_heading p {
    width: 100%;
    margin: 0 auto;
}

#aboutUs__page {

  overflow: hidden;

  padding-bottom: 150px;

}



.image_section {

  width: 100%;

  height: 80dvh;

  position: relative;

}



.img__back_color {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 60%;

  background: var(--main-gradient);

  z-index: 1;

}



.main__img {

  position: absolute;

  bottom: 10%;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  height: 80%;

  object-fit: cover;

  z-index: 10;

  border: 3px solid var(--color-white);

  border-top: none;

  border-radius: 20px;

  overflow: hidden;

}



.main__img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.back_img {

  position: absolute;

  bottom: 10%;

  left: 50%;

  transform: translateX(-50%);

  width: 90%;

  height: 90%;

  z-index: 7;

  border-radius: 20px;

  overflow: hidden;

  border: 3px solid var(--color-white)

}



.back_img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.side__img {

  position: absolute;

  bottom: 10%;

  left: 0;

  width: 500px;

  height: 100%;

  z-index: 8;

}



.side__img img {

  width: 100%;

  height: 100%;

  object-fit: contain;

}



.pageAbout_text {

  position: absolute;

  width: 60%;

  height: 400px;

  right: .5%;

  bottom: 8%;

  z-index: 15;

  background: rgba(10, 37, 77, .7);

  box-shadow: 0 8px 32px 0 rgba(70, 64, 150, 0.623);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 1rem;

  padding: 1.5rem;

  color: whitesmoke;

  overflow: hidden;

}



.blob1 {

  position: absolute;

  width: 400px;

  height: 350px;

  background: linear-gradient(180deg,

      rgba(255, 47, 203, 0.42) 31.77%,

      #5c9df1 100%);

  mix-blend-mode: color-dodge;

  -webkit-animation: move 25s infinite alternate;

  animation: move 25s infinite alternate;

  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);

  z-index: 13;

}



.pageAbout_text:hover .blob1 {

  width: 420px;

  height: 370px;

  -webkit-filter: blur(30px);

  filter: blur(30px);

  box-shadow:

    inset 0 0 0 5px rgba(255, 255, 255, 0.6),

    inset 100px 100px 0 0px #fa709a,

    inset 200px 200px 0 0px #784ba8,

    inset 300px 300px 0 0px #2b86c5;

}



@-webkit-keyframes move {

  from {

    transform: translate(-100px, -50px) rotate(-90deg);

    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;

  }



  to {

    transform: translate(500px, 100px) rotate(-10deg);

    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;

  }

}



@keyframes move {

  from {

    transform: translate(-100px, -50px) rotate(-90deg);

    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;

  }



  to {

    transform: translate(500px, 100px) rotate(-10deg);

    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;

  }

}



.about__text__wrap {

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 14;

  width: 95%;

}



.about__text__wrap .login_btn {

  width: 40%;

  margin: 0 auto;

  font-size: 16px;
}



.about__text_title span {

  font-size: 80px;

  color: var(--theme-green);

  font-weight: 700;

}

.about__text_title{
    color: #fff!important;
}

.para_wrap {

  width: 80%;

  margin: 0 auto;

}



.about__para {

  font-weight: 500;

}



.about__text__wrap h5 {

  color: var(--theme-green);

}



.process-box {

  background: linear-gradient(90deg, #ac50ef, #7059fb, #2ecff6);

  background-size: 300% 100%;

  padding: 10px;

  border-radius: 15px;

  position: relative;

  box-shadow: 2px 2px 7px 0 #00000057;

  z-index: 1;

  transition: background-position 0.5s ease;

}



.process-left:after {

  content: "";

  border-top: 10px solid #ffffff;

  border-bottom: 10px solid #ffffff;

  border-left: 10px solid #ffffff;

  border-right: 10px solid #ffffff;

  display: inline-grid;

  position: absolute;

  right: -10px;

  top: 42%;

  transform: rotate(45deg);

  box-shadow: 3px -2px 3px 0px #00000036;

  z-index: 1;

}



.process-right:after {

  content: "";

  border-top: 10px solid #ffffff;

  border-bottom: 10px solid #ffffff;

  border-left: 10px solid #ffffff;

  border-right: 10px solid #ffffff;

  display: inline-grid;

  position: absolute;

  left: -10px;

  top: 42%;

  transform: rotate(45deg);

  box-shadow: -1px 1px 3px 0px #0000001a;

  z-index: 1;

}



#about_process .about_process_wrap h2 span {

  color: var(--theme-green);

  font-size: 60px;

}



#about_process .about_process_wrap p {

  width: 75%;

  margin: 0 auto;

  text-align: center;
	
  color: #fff;
}



.process-step {

  background: var(--main-gradient);

  text-align: center;

  width: 80%;

  margin: 0 auto;

  color: #fff;

  height: 100%;

  padding-top: 8px;

  position: relative;

  top: -26px;

  border-radius: 0px 0px 10px 10px;

  box-shadow: -6px 8px 0px 0px #00000014;

}



.process-point-right {

  background: #ffffff;

  width: 25px;

  height: 25px;

  border-radius: 50%;

  border: 8px solid #00bcd4;

  box-shadow: 0 0 0px 4px #5c5c5c;

  margin: auto 0;

  position: absolute;

  bottom: 40px;

  left: -63px;

  display: none;

}



.process-point-right:before {

  content: "";

  height: 144px;

  width: 11px;

  background: #5c5c5c;

  display: inline-grid;

  transform: rotate(36deg);

  position: relative;

  left: -50px;

  top: -0px;

}



.process-point-left {

  background: #ffffff;

  width: 25px;

  height: 25px;

  border-radius: 50%;

  border: 8px solid #00bcd4;

  box-shadow: 0 0 0px 4px #5c5c5c;

  margin: auto 0;

  position: absolute;

  bottom: 40px;

  right: -63px;

  display: none;

}



.process-point-left:before {

  content: "";

  height: 144px;

  width: 11px;

  background: #5c5c5c;

  display: inline-grid;

  transform: rotate(-38deg);

  position: relative;

  left: 50px;

  top: 0px;



}



.process-last:before {

  display: none;

}



.process-box p {

  z-index: 9;

}



.process-step p {

  font-size: 20px;

}



.process-step h2 {

  font-size: 39px;

}



.process-step:after {

  content: "";

  border-top: 8px solid #04889800;

  border-bottom: 8px solid #693191;

  border-left: 8px solid #04889800;

  border-right: 8px solid #693191;

  display: inline-grid;

  position: absolute;

  left: -16px;

  top: 0;

}



.process-step:before {

  content: "";

  border-top: 8px solid #ff000000;

  border-bottom: 8px solid #048898;

  border-left: 8px solid #048898;

  border-right: 8px solid #ff000000;

  display: inline-grid;

  position: absolute;

  right: -16px;

  top: 0;

}



.process-line-l {

  background: white;

  height: 4px;

  position: absolute;

  width: 50px;

  right: -15%;

  top: 47%;

  z-index: 9;

  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}



.process-line-r {

  background: white;

  height: 4px;

  position: absolute;

  width: 50px;

  left: -15%;

  top: 47%;

  z-index: 9;

  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}



.process-box:hover {

  animation: BgAnimation 5s linear infinite;

}



.process-box.process-right:hover:after,

.process-box.process-left:hover:after {

  border-top: 10px solid var(--theme-green);

  border-bottom: 10px solid var(--theme-green);

  border-left: 10px solid var(--theme-green);

  border-right: 10px solid var(--theme-green);

}



.our-blog {

  position: relative;

}



.background-image {

  position: absolute;

  top: -30%;

  left: 50%;

  transform: translate(-0px, -50%);

  width: 50%;

  height: 150dvh;

  z-index: -1;

  transition: transform 0.1s ease-out;

}



.background-image img {

  width: 600px;

  height: 600px;

  object-fit: contain;

  opacity: .9;

}



.our__awards {

  border-radius: 20px;

  background: rgba(242, 243, 247, .5);

  backdrop-filter: blur(20px) brightness(1.15);

  border: solid #EBEBEB 1px;

}



.award_middleBar {

  position: relative;

  height: 100%;

}



.award_middleBar::after {

  content: '';

  position: absolute;

  top: 0;

  bottom: 0;

  left: 50%;

  /* center horizontally */

  transform: translateX(-50%);

  /* adjust from 50% */

  width: 2px;

  height: 100%;

  background: linear-gradient(to bottom, #E51A3F, #FF9416);

}



.awardLogo_bx {

  width: 100%;

  height: 70px;

}



.awardLogo_bx img {

  width: 100%;

  height: 100%;

  object-fit: contain;

}



.our__awards .about__text_title span,

.History_heading_bx .about__text_title span {

  font-size: 60px;

}



#history {

  background-color: rgba(104, 85, 124, 0.295);

}



.history__main_img {

  position: relative;

  z-index: 7;

  width: 100%;

  height: auto;

}



.history__main_img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.history__back_text {

  position: absolute;

  top: 46%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 80%;

  height: 87%;

  z-index: -1;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  gap: 20px;

  border: 1px solid red;

  padding: 25px;

  background: linear-gradient(to bottom, #EDEDED, #A2D5E5, #3DB4DB);

  animation: BgAnimation 5s ease infinite;

  background-size: 200% 200%;

  background-position: 10% 0%;

}



.laptop_logo {

  width: 120px;

  height: 60px;

}



.laptop_logo img {

  width: 100%;

  height: 100%;

  object-fit: contain;

}



@keyframes BgAnimation {

  0% {

    background-position: 10% 0%;

  }



  50% {

    background-position: 91% 100%;

  }



  100% {

    background-position: 10% 0%;

  }

}



.hotspot {

  display: block;

  position: absolute;

  transform: translate(-50%, -50%);

  transform-origin: 50% 50%;

  border-radius: 50%;

}



/* Optional containers */

.hotspot.main-wrapper {

  position: absolute;

  right: 30%;

  top: 50%;

}



.hotspot.dots-container {

  position: relative;

}



/* Dot 1 */

.hotspot.dot1 {

  width: 11px;

  height: 11px;

  border: 5px solid var(--theme-green);

  background-color: transparent;

  z-index: 1;

  opacity: 0.2;

  animation: dot1 2s infinite;

}



/* Dot 2 */

.hotspot.dot2 {

  width: 11px;

  height: 11px;

  background-color: var(--theme-green);

  z-index: 2;

  animation: dot2 2s infinite;

}



/* Dot 3 */

.hotspot.dot3 {

  width: 11px;

  height: 11px;

  background-color: var(--theme-green);

  z-index: 3;

  animation: dot3 1s alternate infinite;

}



/* Animations */

@keyframes dot1 {

  0% {

    opacity: 0.2;

    transform: translate(-50%, -50%);

  }



  100% {

    opacity: 0;

    transform: translate(-50%, -50%) scale(5);

  }

}



@keyframes dot2 {

  0% {

    opacity: 1;

    transform: translate(-50%, -50%);

  }



  100% {

    opacity: 0;

    transform: translate(-50%, -50%) scale(2);

  }

}



@keyframes dot3 {

  0% {

    transform: translate(-50%, -50%);

  }



  100% {

    transform: translate(-50%, -50%) scale(1.1);

  }

}



.circles {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 9;

}



.circles li {

  position: absolute;

  display: block;

  list-style: none;

  width: 20px;

  height: 20px;

  background: rgba(115, 177, 113, 0.404);

  animation: animate 25s linear infinite;

  bottom: -150px;



}



.circles li:nth-child(1) {

  left: 25%;

  width: 80px;

  height: 80px;

  animation-delay: 0s;

}





.circles li:nth-child(2) {

  left: 10%;

  width: 20px;

  height: 20px;

  animation-delay: 2s;

  animation-duration: 12s;

}



.circles li:nth-child(3) {

  left: 70%;

  width: 20px;

  height: 20px;

  animation-delay: 4s;

}



.circles li:nth-child(4) {

  left: 40%;

  width: 60px;

  height: 60px;

  animation-delay: 0s;

  animation-duration: 18s;

}



.circles li:nth-child(5) {

  left: 65%;

  width: 20px;

  height: 20px;

  animation-delay: 0s;

}



.circles li:nth-child(6) {

  left: 75%;

  width: 110px;

  height: 110px;

  animation-delay: 3s;

}



.circles li:nth-child(7) {

  left: 35%;

  width: 150px;

  height: 150px;

  animation-delay: 7s;

}



.circles li:nth-child(8) {

  left: 50%;

  width: 25px;

  height: 25px;

  animation-delay: 15s;

  animation-duration: 45s;

}



.circles li:nth-child(9) {

  left: 20%;

  width: 15px;

  height: 15px;

  animation-delay: 2s;

  animation-duration: 35s;

}



.circles li:nth-child(10) {

  left: 85%;

  width: 150px;

  height: 150px;

  animation-delay: 0s;

  animation-duration: 11s;

}







@keyframes animate {



  0% {

    transform: translateY(0) rotate(0deg);

    opacity: 1;

    border-radius: 0;

  }



  100% {

    transform: translateY(-1000px) rotate(720deg);

    opacity: 0;

    border-radius: 50%;

  }



}



#our_mission {

  padding-top: 150px;

  position: relative;

  overflow-x: hidden;

  background: transparent;

  z-index: 1;

}



#our_mission .our__awards {

  position: absolute;

  width: 85%;

  left: 50%;

  top: -30px;

  transform: translateX(-50%);

}



#our_mission .award_heading p {

  width: 75%;

  margin: 0 auto;

  text-align: center;

}



.mission_img_icon {

  width: 100px;

  height: 100px;

  background-color: var(--theme-green);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  margin: 0 auto;

  margin-bottom: 20px;

}



.mission_img_icon img {

  width: 60%;

  height: 60%;

  display: block;

  object-fit: contain

}



.our_mission_bx {

  text-align: center;

  background-color: var(--tmeme-blue);

  padding: 130px 30px 40px;

  border-radius: 12px;
  color: #fff;

}



.our_mission_bx h4.about__text_title span {

  font-size: 24px;

  font-weight: 600;



}



.our_mission_bx p {
  color: #fff;
  min-height: 200px;
}



.our_mission_bx h5 {

  color: #fff;

}



.background-image2 {

  position: absolute;

  top: 20%;

  right: -55%;

  /* transform: translate(-50%, -50%); */

  width: 50%;

  height: auto;

  z-index: -1;

  transition: transform 0.1s ease-out;

  overflow: hidden;

}



.background-img2 {

  width: 350px;

  height: 350px;

  background: var(--main-gradient);

  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;

  will-change: border-radius, transform, opacity;

  animation: sliderShape 5s linear infinite;

  display: block;

  -webkit-animation: sliderShape 5s linear infinite;

}



@keyframes sliderShape {



  0%,

  100% {

    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;

    transform: translate3d(0, 0, 0) rotateZ(0.01deg);

  }



  34% {

    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;

    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);

  }



  50% {

    transform: translate3d(0, 0, 0) rotateZ(0.01deg);

  }



  67% {

    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;

    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);

  }

}



.small-blob-wrapper {

  position: absolute;

  top: 0;

  right: 55%;

  width: 40%;

  height: auto;

  z-index: 10;

  pointer-events: none;

}



.small-blob {

  width: 200px;

  height: 200px;

  opacity: 0.6;

  background: linear-gradient(90deg, #ff8cc6, #a46ef0, #58d1e9);

  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;



  transition: transform 0.1s ease-out;

  will-change: transform;

}
#about_process{
	background: #4475BE;
}
.service_card_content p{
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dscf7-captcha-container {
    background-image: linear-gradient(90deg, #ac50ef 0%, #7059fb 50%, #2ecff6 100%) !important;
    color: #fff !important;
}
.dscf7-captcha-container input::placeholder{
  color: #fff !important;
}
.dscf7-answer-container input::placeholder{
  color: #fff !important;
}
#tag-generator-panel-dscf7captcha-input::placeholder {
  color: #fff !important;
}
.wpcf7-form-control-wrap input#tag-generator-panel-dscf7captcha-input::placeholder{
	color: #fff !important;
}
/* Responssive */
@media (max-width: 991px) {
	.our-blog {
    	overflow-y: hidden;
	}
	.process-line-l, .process-line-r{
		display: none;
	}
	.blob1 {
		position: absolute;
		width: 260px;
		height: 230px;
	}
	.about__text_title span, .our__awards .about__text_title span, .History_heading_bx .about__text_title span {
    	font-size: 50px;
	}
	.about__text_title{
		text-align: center;
	}
	#about_process .about_process_wrap h2 span {
		font-size: 50px;
	}
	.background-image img {
		width: 500px;
		height: 550px;
	}
	.background-image {
		width: 100%;
	}
	.pageAbout_text {
		width: 80%;
		height: 380px;
	}
	#aboutUs__page {
		padding-bottom: 200px;
	}
	 #history .row, .page_contact_wrap .row{
		row-gap: 30px !important;
	}
}
@media (max-width: 768px) {
	.paddingY_8 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.navbar i {
        font-size: 28px;
    }
	p small{
		font-size: 14px;
	}

	#aboutUs__page.pt-5 {
		padding-top: 1.5rem !important;
	}

	#aboutUs__page.my-5 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}
	.about__text_title span, .our__awards .about__text_title span, .History_heading_bx .about__text_title span, #about_process .about_process_wrap h2 span {
        font-size: 32px;
    }
	p {
		font-size: 14px;
		font-weight: 400;
	}
	.side__img {
		width: 220px;
	}
	
	#about_process .about_process_wrap p {
    	width: 100%; 
	}
	.background-image img {
        width: 380px;
        height: 520px;
    }
	.our_mission_bx p {
    	min-height: 80px;
	}
	#partners .clients-carousel .item.box{
		height: 100px;
	}
	#works .row, #about .row, #contact .row, #our_mission .row{
		row-gap: 30px !important;
	}
	#services .service_card figure img{
		height: 100px;
	}
	#services .service_card a .service_card_content .card-description p {
		min-height: 60px;
	}
	.page_breadcrumb {
    	padding: 110px 0 40px;
	}
	.page_services_detailscontent .wp-block-columns .wp-block-image figure img{
		width: 200px !important;
	}
	img.wp-image-388, .wp-image-391, .wp-image-820, .wp-image-393, .wp-image-397, .wp-image-394, .wp-image-395, .wp-image-396{
		width: 200px !important;
	}
	
}
@media (max-width: 575px){
	#footer .footer_logo img {
		width: 53%;
		margin-top: 15%;
	}
	.copyright p, .designed p{
		text-align: center !important;
	}
	.hero-wrapper .btn_wrapper a{
		font-size: 12px;
		min-width: 130px;
		width: 130px;
		height: 39px;
		line-height: 42px;
	}
	.hero-wrapper .btn_wrapper.mt-5 {
    	margin-top: 1.5rem !important;
	}
	.hero {
		height: 45vh !important;
	}
	#partners .owl-carousel .owl-item img{
		object-fit: contain;
		
	}
	#partners .clients-carousel .item.box {
		height: 75px;
		width: 50%;
	}
	header a.logo img {
		width: 165px !important;
	}
	.navbar-toggler{
		top: 50% !important;
	}
	.navbar i {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
	.image_section {
		height: 35dvh; 
	}
	#aboutUs__page {
        padding-bottom: 360px;
    }
	.pageAbout_text {
        width: 95%;
		right: 2%;
    }
	 .background-image img {
        width: 320px;
        height: 480px;
    }
	.history_laptop_text p:nth-of-type(2) {
  		display: none;
	}
	.image_section {
		height: 55dvh;
	}
	   #services .service_card figure img {
        height: 60px;
    }
	#services .service_card .service_card_content .card-caption h3{
		min-height: 70px;
	}
	#footer .footer_links ul li a{
		font-size: 14px;
	}
}
@media (max-width: 320px){
	 .background-image img {
        width: 300px;
        height: 420px;
    }
}

.wpcf7 form .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
    color: #fff !important;
}