.preloader {
    width: 100%;
    height: 100vh;
    background: black url(images/preloader.gif) no-repeat center;
    z-index: 999;
    position: fixed;
}

::selection {
    background-color: red;
    color: whitesmoke;
}

.top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid red;
    border-radius: 50%;
    z-index: 900;
}

.top:hover {
    box-shadow: 0 0 5px red;
}

.whatsapp {
    position: fixed;
    top: 40%;
    right: 20px;
    width: 45px;
    height: 45px;
    border: 1px solid red;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 900;
}

.whatsapp .icon {
    font-size: 25px;
    transition: 0.3s ease;
}

.whatsapp:hover {
    box-shadow: 0 0 5px red;
}

.whatsapp:hover .icon {
    transform: scale(0.5) translateY(-3px);
    font-size: 40px;

}

.explore {
    background-color: red;
    padding: 10px;
    transition: 0.3s ease-out;
    border: none;
    border-radius: 10px;

}

.explore:hover {
    transform: scale(1) translateY(-3px);

}

.explore a {
    font-size: 15px;
    font-weight: 600;
    color: whitesmoke;
    text-decoration: none;
}

.follow {
    border: 1px solid red;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .follow {
    opacity: 1;
}

.in {

    width: 5px;
    height: 5px;
    background-color: red;
    border-radius: 50%;

}

.reveal li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 3s ease-out;
}

.reveal li.visible {
    opacity: 1;
    transform: translateY(0);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;

}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100vh;
    background-color: rgb(27, 24, 24);
    color: whitesmoke;
    display: block;
    position: relative;
}

section {
    width: 100%;
    /* margin-top: 4rem; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* animation: appear  linear ;
    animation-timeline: view();
    animation-range: entry 0%;
    z-index: 0;     */
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

/* nav bar */
.navbar {
    background-color: black;
    width: 100%;
    height: fit-content;
    z-index: 2;
    display: flex;
}

.ser {
    position: relative;
}

.ser:hover .dropdown {
    visibility: visible;
}

.dropdown {
    list-style: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: left;
    left: -2rem;
    width: fit-content;
    visibility: hidden;
}

.header .brand h1 {
    color: red;
    font-size: 50px;
    font-weight: 500;
}

.header .profile-pic {
    width: 130px;

}


.header .nav-link {
    color: whitesmoke;
}

.header .nav-item {
    position: relative;
    color: whitesmoke;
    font-size: 1.0rem;
    font-weight: 500;
    transition: .0.3s;
    width: 100%;
    padding: 5px 15px;
    background-color: black;
}

.header .nav-link span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    border-bottom: 3px solid red;
    transform: scale(0);
    transition: 0.3s;
}

.header .nav-link:hover span {
    transform: scale(1);
}

.header .nav-item:hover a {
    color: red;
}

.header .nav-link.active {
    color: red;
}

.header .navbar-toggler-icon {
    background-color: red !important;
    border-radius: 30%;
}

/* end navbar */


/* start sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    transform: translateX(-250px);
    border: 1px solid rgb(40, 39, 39);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 5px rgb(126, 126, 126);
    border-radius: 10px;
    z-index: 100;

}

.sidebar .custom {
    width: 25px;
}

.sidebar .toggle {
    position: absolute;
    left: 250px;
    top: 50%;
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 5px rgb(126, 126, 126);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar.open .toggle {
    transform: rotate(180deg);
}

.toggle {
    cursor: pointer;
}

.sidebar .logo {
    display: flex;
}

.sidebar .name {
    padding: 10px;
}

.sidebar .name h4 {
    color: red;
}

.sidebar .name span {
    color: whitesmoke;
}

.sidebar .menubar {

    display: flex;
    align-items: center;
    justify-content: left;
}

.sidebar .menu {
    list-style: none;
}

.sidebar .menu li {
    padding: 5px;
    margin: 8px 0;
    text-align: left;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.2s ease-out;
}

.sidebar .menu li:hover {
    box-shadow: 0 1px 0 rgb(239, 236, 236);
    transform: scale(1) translateY(-3px);
}

.sidebar .menu li:hover a {
    color: red;
}

.sidebar .menu li a.active {
    color: red;
}


.sidebar .menu i {
    padding: 10px;
    font-size: 1rem;
    min-width: 30px;
}

.sidebar .menu a {
    text-decoration: none;
    color: whitesmoke;
}

.sidebar .social-menu a {
    margin-inline: 10px;
    color: red;
    transition: 0.2s ease;
}

.sidebar .social-menu a:hover {
    transform: scale(1) translateY(-5px);
}

.sidebar .social-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.sidebar .social-menu a i {
    font-size: 1.5rem;
}

.sidebar .sidemenu {
    /* list-style: none; */
    display: none;
}

.sidebar .serv:hover .sidemenu {
    display: block;
}

.sidebar .sidemenu .sidedrop:hover {
    color: red;
}

/* .sidebar .menu-name{
   background-color: gray;
   padding: 5px;
   position: relative;
   border-radius: 10px;
   opacity: 0;
}
.sidebar .menu-name::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: 5px;
    height: 5px;
    background-color: gray;
    transform: rotate(45deg);  
}
.sidebar .menu li:hover .menu-name{
    opacity: 1;
} */


/* end sidebar */

.banner {
    background-image: url(images/banner/home_img.png);
    background-size: cover;
    background-repeat: no-repeat;

}

/* .banner .pic{
    position: absolute;
    right:0rem ;
    top: 0rem;
    width: 700px;
    height: 400px;
    z-index: -1;
    object-fit: cover;
} */
.banner h4 {
    font-size: 3rem;
}

.banner h2 {
    font-size: 4rem;
}

.banner-contant {
    overflow: hidden;
}

/* .banner-img img{
    position: relative;
    border-radius: 20%;
    width: 40vw;
} */
.banner span {
    color: red;
}

.banner .typing {
    color: red;
    font-size: 4.5rem;
    display: flex;
    margin-left: 1rem;
    align-items: center;
    height: 5rem;

}

@media (max-width:500px) {
    .banner .typing {
        font-size: 3rem;
        height: 10rem;
    }
    .service-banner-3 .type {
        font-size: 2rem;
    }
    .menyu_menu .image .mobile-img{
        display: block;
    }
    .menyu_menu .image .desktop-img{
        display: none;
    }
}

@media (max-width:800px) {
    .banner .typing {

        height: 10rem;
    }

}

@media (max-width:786px) {
    .follow {
        display: none;
    }

}

@media(min-width:790px) {

    .banner,
    .about-banner-1 {
        height: 30rem;
    }

    .banner .banner-contant {
        margin-top: 2rem;
    }

    .banner .contact-banner-contant {
        margin-top: 3rem;
    }

    .banner .contact-banner-contant h2 {
        font-size: 6rem;
    }

}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    text-decoration: none;
    border: 0.1rem solid red;
    border-radius: 50%;
    transition: 0.3s ease;
    color: whitesmoke;
    margin-inline: 1rem;


}

.social a:hover {
    color: rgb(246, 12, 12);
    transform: scale(1.1) translateY(-3px);

}

.about {
    background-color: black;
}

.about .card {
    background-color: black;

}

.about li {
    font-size: 20px;
}

.about h3 {
    color: red;
    font-size: 2rem;
}

.about p {
    font-size: 1.3rem;
}

.about .explore {
    margin-left: 0rem;
    margin-top: 2rem;
}

.about .content {
    margin: 2rem 0;
}

.about .tasks {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .tasks h4 {
    color: red;
}


.about .tasks i {
    font-size: 6rem;
    padding: 2rem;
}

.about h5 {
    font-size: 2rem;
    padding: 20px;
}

.menyu_menu h4{
    color: red;
    font-size: 3.5rem;

}
.menyu_menu span{
    color: red;
}
.menyu_menu .mobile-img{
    display: none;
}
.menyu_menu .desktop-img{
    display: block;
}





.task {
    background-color: black;
}

.task .card {
    background-color: black;
    color: whitesmoke;
    border-radius: 20px;
    transition: 0.2s ease;
    margin: 1rem;
    /* border-color: red; */
}

.task .card:hover {
    box-shadow: 0 0 30px red;
    transform: scale(1) translateY(-3px);
    color: red;
}

.task .row {
    display: flex;

}

.task .explore {
    width: 140px;
    margin-bottom: 10px;
    margin-right: 2rem;
}


.team {
    /* background-image: url(images/key.avif); */
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.team .team-content span {
    color: red;
    font-size: 80px;
    font-weight: 600;
}

.team .team-content h2 {
    color: whitesmoke;
    font-size: 70px;
    font-weight: 500;
}

.team-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: solid red;
}

.team .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team .card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(27, 24, 24);
    padding: 20px;
}

.team .card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: whitesmoke;

}

.team .card .card-content .feed p {
    text-align: justify;
    padding: 2rem;
}

.team .card .card-content .feed h3 {
    color: red;
}

.team .social-menu a {
    margin-inline: 10px;
}

.team .social-menu a:hover i {
    color: red;
    transform: scale(1) translateY(-3px);
}

.team .social-menu i {
    color: red;
    transition: 0.3s ease;

}

.swiper {
    width: 100%;
    height: 100%;

}

.sliders {
    margin-bottom: 2rem;
    display: flex;
    align-items: end;
    justify-content: center;


}

.swiper-wrapper {
    margin-bottom: 20px;

}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;


}

.swiper-button-next,
.swiper-button-prev {
    color: red !important;
}



.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
    display: none;
}

.team .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}


/* css for footer */

.footer {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.footer a,
.contact a {
    text-decoration: none;
    color: whitesmoke;
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
    margin-top: 5px;
}

.footer-links,
.footer-info,
.footer-services,
.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

.footer h4 {
    color: red;
}

.footer h3 {
    color: red;
}

.footer span {
    color: whitesmoke;
}

.footer strong {
    color: red;
}

.footer a::after,
.contact a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    position: absolute;
    background-color: red;
    transition: 0.2s ease-in-out;

}

.footer a:hover::after,
.contact a:hover::after {
    background-color: red;
    width: 50%;
}

.footer a::before,
.contact a::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    position: absolute;
    background-color: red;
    transition: 0.2s ease-in-out;

}

.footer a:hover::before,
.contact a:hover::before {
    background-color: red;
    width: 50%;
}

.footer .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    text-decoration: none;
    border-radius: 50%;
    transition: 0.3s ease;
    color: red;
    margin-inline: 10px;


}

.footer-newsletter button {
    background-color: gray;
    border-radius: 10px;
    color: whitesmoke;
    transition: 0.3s;
    padding: 5px;
}

.footer-newsletter button:hover {
    background-color: red;
    /* transform: scale(1) translateY(-3px); */
}

.footer-newsletter .mail {
    border-radius: 10px;
    height: 30px;
}

.footer .social-links a:hover {
    /* color: rgb(246, 12, 12);
    transform: scale(1.1) translateY(-3px); */

}

.footer .footer-newsletter ::placeholder {
    padding: 10px;
}

.footer .footer-newsletter input {
    padding: 20px;
    color: red;
}

/* css for section projects   */

.projects .title h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 3rem;
}

.projects .title span {}

.projects .content ul {
    color: whitesmoke;
    padding: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    margin-left: 5px;
    margin-top: 20px;
    list-style: none;


}

.projects .content .list {
    color: whitesmoke;
    transition: 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: left;

}

.hide {
    display: none;
}

.unhide {
    display: block;
}

.projects .content .list:hover {
    transform: scale(1) translateY(-3px);
}

.projects .content .list i {
    padding: 20px;
    color: red;

}

.projects .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.projects span {
    color: red;
    font-size: 60px;
}

.projects .explore {
    margin-left: 4rem;
}

.projects .image {}

.projects .image img {}

/* css for banner-1 */

.banner-1 {
    background-color: black;
    margin-top: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-1 .quote h4 {
    margin-top: 10px;
    font-size: 3rem;

}

.banner-1 .quote span {
    color: red;
}

.banner-1 .quote p {
    font-size: 20px;

}

.banner-1 .explore {
    margin-top: 10px;
}

.contact .info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .info h4 {
    color: red;
}

.contact .info p {}

.contact h1 {
    color: red;
    font-size: 3rem;
}

.contact .form {
    padding: 15px;
}

.contact ::placeholder {
    color: red;
}

.contact .form-control,
.contact .address,
.contact .email,
.contact .phone {
    transition: 0.3s ease-out;
}

.contact .form-control:hover,
.contact .address:hover,
.contact .email:hover,
.contact .phone:hover {
    transform: scale(1) translateY(-3px);
}

.submit {
    background-color: red;
    width: 4rem;
    padding: 5px;
    transition: 0.3s ease-out;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
}

.contact .submit:hover {
    transform: scale(1) translateY(-3px);
}

.contact .submit a {
    font-size: 15px;
    font-weight: 600;
    color: whitesmoke;
    text-decoration: none;
}


.clients .card-container {
    background-color: whitesmoke;
}

.clients .client {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.clients .card {
    border: none;
    /* padding: 3rem; */
    /* transition:0.3s ease-out ; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
}

.clients .card::after {
    /* content: "->";
    position: absolute;
    bottom: 10px;
    width: 100%;
    background-color: black;
    font-size: 2rem;
    color: red;
    display: none;
    text-align: center; */
}

.clients .card:hover .explore {
    background-color: red;
    display: block;
}

.clients .card .image {
    object-fit: cover;
}

.clients .explore {
    position: absolute;
    top: 45%;
    display: none;
    transform: translateZ(15px);
}

.clients .quote h4 {
    font-size: 3rem;
}

.clients .quote p {
    font-size: 20px;
}

.clients .quote span {
    color: red;
}

.banner-2 .total-count {
    display: flex;
    justify-content: center;
}

.banner-2 .quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
}

.banner-2 .quote h3 {
    font-size: 3rem;
}

.banner-2 .quote p {
    font-size: 25px;
}

.banner-2 span {
    color: red;
}

.banner-2 .webdesign,
.banner-2 .webdevelopment,
.banner-2 .digitalmarketing {
    background-color: black;
    width: 10rem;
    height: 10rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.banner-2 .webdesign i,
.banner-2 .webdevelopment i,
.banner-2 .digitalmarketing i {
    font-size: 4rem;
}

.banner-2 .webdesign h3,
.banner-2 .webdevelopment h3,
.banner-2 .digitalmarketing h3 {
    font-size: 2rem;
    color: red;
}


.career .career-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    text-align: justify;
}

.career .career-info span {
    color: red;
}

.career .career-info h6 {
    font-size: 1.5rem;
}

.career .career-info h1 {
    font-size: 3rem;
    padding: 5px;
    text-align: left;
}

.career .explore {
    margin-top: 2rem;
}

.form-control {
    background-color: black;
    border: none;
}

.career ::placeholder {
    color: red;
}

/* input.form-control:focus {
    border-color: red !important;
    outline: none !important;
} */
.career span {
    color: red;
}

.form-group {
    transition: 0.3s ease-out;
}

.form-group:hover {
    transform: scale(1) translateY(-2px);
}

.about-banner-1 {
    background-color: black;
    background: url(images/banner/Untitled\ design.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;

}

.about-banner-1 .quote {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-banner-1 .quote h1 {
    font-size: 5rem;
    text-align: center;

}

.about-banner-1 .quote span {
    color: red;
}

.about-banner-1 .quote p {
    font-size: 1.5rem;
    text-align: center;
}

.about-banner-1 .buttons {
    display: flex;
    align-items: center;
    justify-content: center;

}

.about-banner-1 .explore {
    margin-bottom: 1rem;
    margin-inline: 5px;
}

.about-banner-2 {
    background-color: black;
}

.about-banner-2 .webdesign,
.about-banner-2 .webdevelopment,
.about-banner-2 .digitalmarketing {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: gray;
    color: red;
    border-radius: 1rem;

}

.about-banner-2,
.quote {
    padding: 1rem;
}

.about-banner-2 .quote h1 {
    font-size: 3rem;
}

.about-banner-2 .quote h3 {
    color: gray;
}

.about-banner-2 .quote p {
    font-size: 1.1rem;
    line-height: 2rem;
}

.about-banner-2 span {
    color: red;
}

.about-banner-2 .explore {
    margin-top: 3rem;
}

.about-banner-3 {
    background-color: rgb(27, 24, 24);

}

.about-banner-3 .card {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    /* border: 1px solid red; */
    border-radius: 1rem;
    margin: 2rem 2rem;

    transition: 0.3s ease-out;
}

.about-banner-3 .card:hover {
    transform: scale(1) translateY(-3px);
    box-shadow: 0 0 10px red;
}

.about-banner-3 .card h1 {
    color: red;
}

.about-banner-3 .card p {
    color: whitesmoke;
}



.about-tools .content h5 {
    color: whitesmoke;
}

.about-tools .content h1 {
    color: red;
    font-size: 3rem;
}

.about-tools .content p {
    color: whitesmoke;
    font-size: 1.5rem;
}

.about-tools .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.about-tools .tools {}

.about-tools .tools .card {
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    border-radius: 1.5rem;
    transition: 0.3s ease-out;
}

.about-tools .tools .card:hover {
    transform: scale(1) translateY(-3px);
    box-shadow: 0 0 10px black;
}

.about-tools .image img {
    width: 80px;
    height: 80px;
}


.service-banner-1 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.service-banner-1 .content .quote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.service-banner-1 .quote img {
    width: 25rem;
    margin: 15px 0;
}

.service-banner-1 .quote h1 {
    font-size: 4rem;
    color: whitesmoke;
    text-align: center;
}

.service-banner-1 .quote h4 {
    font-size: 1.2rem;
    color: red;
    text-align: center;
}

.service-banner-1 .quote p {
    font-size: 1.5rem;
    color: whitesmoke;
    text-align: center;
}

.service-banner-1 .explore {
    margin-top: 3rem;
}

.service-banner-2 {

    padding: 2rem;
}

.service-banner-2 h1 {
    text-align: center;
    color: whitesmoke;
    padding: 20px;
    font-size: 3rem;
}

.service-banner-2 span {
    color: red;
}

.service-banner-2 .card {
    background-color: rgb(67, 65, 65);
    padding: 2rem;
    display: flex;
    align-items: start;
    justify-content: center;
    margin: 4rem 0;
    color: whitesmoke;
    transition: 0.3s ease-out;

}

.service-banner-2 .card:hover {
    background-color: rgb(27, 24, 24);


}

.service-banner-2 {
    margin: 2rem 0;
}

.service-banner-2 .card img {
    width: 40px;
    height: 40px;
    margin: 5px;
    padding: 5px;

}

.service-banner-2 .card .image {
    border: 2px solid red;
    padding: 5px;
    border-radius: 50%;
}

.service-banner-2 .card ul {
    list-style: none;
}

.service-banner-2 .card .reveal li {
    font-size: 1.1rem;
    padding: 5px;
    margin-left: -20px;
}

.service-banner-3 {

    padding: 2rem;
}

.service-banner-3 h2 {
    text-align: center;
    color: whitesmoke;
    padding: 20px;
    font-size: 3rem;
}

.service-banner-3 h4 {
    padding: 1rem;
    font-size: 2rem;
    margin-top: 10px;
    text-align: center;
}

.service-banner-3 h6 {
    text-align: center;
}

.service-banner-3 p {
    font-size: 18px;
    text-align: center;
}

.service-banner-3 span {
    color: red;

}

.service-banner-3 .card {
    background-color: rgb(67, 65, 65);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    transition: 0.3s ease-out;
    margin: 2rem 0;
}

.service-banner-3 .card:hover {
    background-color: rgb(27, 24, 24);


}

.service-banner-3 {
    margin: 2rem 0;
}

.service-banner-3 .card img {

    margin: 5px;
    padding: 5px;

}


.service-banner-3 .type {
    color: red;
    white-space: pre;
}

.service-banner-3 .cursor {
    font-size: 3rem;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.service-banner-4 h5 {
    color: red;
    text-align: center;
}

.service-banner-4 h1 {
    color: whitesmoke;
    text-align: center;
    font-size: 3rem;
    padding: 1rem
}

.service-banner-4 .card {
    background-color: rgb(27, 24, 24);
    margin: 2rem 0;
    padding: 1rem;
    border: none;
}

.service-banner-4 .card h2 {
    color: whitesmoke;
    font-size: 1.5rem;
}

.service-banner-4 .card p {
    color: gray;
}

.service-banner-4 .content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-banner-4 .explore {
    width: fit-content;
}

.service-banner-5 {
    background-color: black;
}

.service-banner-5 .content {
    padding: 5rem;
}

.service-banner-5 .content h5 {
    text-align: center;
}

.service-banner-5 .content h1 {
    text-align: center;
    font-size: 4rem;
    color: red;

}

.service-banner-5 .content p {
    text-align: center;
    line-height: 30px;
}

.service-banner-5 .card {
    background-color: rgb(27, 24, 24);
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;

}

.service-banner-5 .card .number {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
    background-color: rgb(243, 33, 33);

}

.service-banner-5 .card .number h3 {
    font-size: 3rem;
    color: whitesmoke;
}

.service-banner-5 .card h1 {}

.service-banner-5 .card h2 {
    color: whitesmoke;
}

.service-banner-5 .card p {
    color: gray;
}

.service-banner-5 .buttons {
    text-align: center;
}

.service-banner-5 .explore {
    margin: 3rem 0;
    margin-inline: 5px;
}

.service-banner-6 {
    background-color: black;
}

.service-banner-6 h1 {
    text-align: center;
    color: red;
    font-size: 3rem;
    padding: 2rem;
}

.service-banner-6 .card {
    padding: 1.5rem;
    background-color: rgb(27, 24, 24);
    margin: 1rem 0 5rem;
}

.service-banner-6 .card h2 {
    color: red;
    font-size: 2.5rem;

}

.service-banner-6 .card h3 {
    font-size: 1.5rem;
    color: whitesmoke;
}

.service-banner-6 .card .reveal li {
    padding: 0.8rem 0;
    list-style: none;
    color: whitesmoke;
}

.service-banner-6 .card p {
    color: gray;
}

.service-banner-6 {}



.blogs-banner-1 {
    background-color: rgb(27, 24, 24);
}

.blogs-banner-1 img {
    width: 100%;
    height: 100%;
}

.blogs-banner-1 .card {
    background-color: black;
    color: whitesmoke;
    margin: 20px 0;
    background-color: rgb(27, 24, 24);
}

.blogs-banner-1 .content {
    padding: 10px;
    background-color: rgb(20, 18, 18);
}

.blogs-banner-1 .card-content {
    background-color: rgb(20, 18, 18);
}

.blogs-banner-1 .readmore,
.blogs-banner-1 .read {
    margin: 10px 0;
    background-color: rgb(54, 47, 47);
    width: fit-content;
    padding: 5px;
    border: none;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
}

.blogs-banner-1 .readmore:hover {
    background-color: rgb(74, 65, 65);
    transition: 0.5s ease;
}

.blogs-banner-1 .read:hover {
    background-color: rgb(74, 65, 65);
    transition: 0.5s ease;

}

.blogs-banner-1 .read a:hover {
    color: red;
    transition: 0.5s ease;
}


.blogs-banner-1 .buttons {
    display: flex;

}

.blogs-banner-1 a {
    text-decoration: none;
    color: whitesmoke;
    text-align: center;
}

.blogs-banner-1 h2 {
    color: red;
}

.blogs-banner-1 h3 {
    color: red;
    font-size: 2.5rem;
    padding: 10px 0;
}

.innerblog-1 .content {
    padding: 10px;
}

.innerblog-1 .bread {
    padding: 10px;
}

.innerblog-1 .breadcrumb a {
    text-decoration: none;
    color: whitesmoke;
    position: relative;
}

.innerblog-1 .breadcrumb a:hover {
    color: red;
}

.innerblog-1 .breadcrumb a::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: red;
    transition: 0.1s ease-in-out;

}

.innerblog-1 .breadcrumb a:hover::before {
    background-color: red;
    width: 100%;
    animation: line 0.4s infinite;

}

@keyframes line {
    from {
        width: 100%;
    }

    to {
        width: 0;
    }
}

.innerblog-1 .breadcrumb-item.active {
    color: red;
}

.innerblog-1 h1 {
    color: red;
}

.innerblog-1 .author-details {
    display: flex;
    align-items: center;
    justify-content: left;
}

.innerblog-1 .author-details .author {
    padding: 10px;
}

.innerblog-1 .author h5 {
    color: gray;
}

.innerblog-1 .author p {
    color: whitesmoke;
}

.innerblog-1 .card {
    background-color: rgb(27, 24, 24);
    border: none;

}

.innerblog-1 .b-image {
    width: 100%;

}

.innerblog-1 .info {
    color: whitesmoke;
    font-size: 1rem;
    padding: 5px;
}

.innerblog-2 ::placeholder {
    color: red;
}

.innerblog-2 .explore {
    margin: 20px 0;
}

.future-projects {
    margin: 2rem 0;
    padding: 20px;
}

.future-projects .future .card .image {
    border-radius: 30px;
    max-width: 300px;
    max-height: 300px;
    object-fit: cover;
}
.future-projects .future .card .image img {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    
}
.future-projects .future .card {
    border-radius: 30px;
    max-width: 300px;
    max-height: 300px;
}

.future-projects .quote h4 {
    font-size: 3rem;
}

.future-projects .quote span {
    color: red;
}

.future-projects .quote p {
    font-size: 1.5rem;
    margin: 10px 0;
}



.future-projects .future .card:hover {}

.future-projects .future h5 {
    font-size: 1.8rem;
    color: red;
    margin: 15px 0;
}


/* review page */
.review {
    margin: 1rem 0;
    background-color: red;
}

.testimonial {
    background-color: red;

}

.review .client-reviews h4 {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.review .client-reviews h2 {
    margin-top: 1rem;
    font-size: 2.5rem;
}

.review .client-reviews .card {
    /* max-width: 400px; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin: 1.5rem 0;
    padding: 2.5rem;
    background-color: rgb(21, 20, 20);
    color: whitesmoke;
}

.review .card-title {
    text-align: left;
    padding: 5px;
    margin-top: 10px;
}

.review .card .content {
    padding: 10px;
    text-align: left;
}

.review .card .card-head {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.review .testimonial .image {
    width: 70px;
    height: 70px;
    border: 2px solid red;
    border-radius: 50%;
    margin-inline: 1rem;
}

.review .testimonial img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
