@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(2rem, 4vw, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    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;
}

/* 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; */
}

.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;
  border-bottom: 1px solid #fff;
}
.dropdown-submenu .dropdown-toggle::after {
  display: none;
}



.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 5px; 
}
.dropdown-item:hover{
  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: 40px;
  color: #f0f0f0;
}
.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;
}


}










/* 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;
}

/* 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: 220px;
    overflow: hidden;
}

#services .service_card figure img {
    height: 100%;
    object-fit: cover;
    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);
}

#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;
}

#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 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.404) 0px 7px 29px 0px;
    background-color: transparent;
    padding: 10px 12px;
    color: #fefefe;
}

#contact .contact_form input::placeholder,
#contact .contact_form textarea::placeholder,
#contact .contact_form select::placeholder,
#contact .contact_form select{
    color: var(--theme-green);
}

#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);
    padding: 20px 30px;
    border-radius: 18px;
    transition: all .4s ease-in-out;
}
.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 .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 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_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: var(--tmeme-blue);
}
.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: var(--tmeme-blue);
}