
        .about {
            width: 100%;
            height: 585px;
            /* height: 100%; */
            background: linear-gradient(to right, #000, #070705 100%);
            padding: 50px;
        }

        .servicenew {
            background: linear-gradient(to right, #000, #000000ff 100%);
        }

        /* our work */

        .cards-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            padding: 25px 20px;

        }

        .card {
            background: white;
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px #dda926cb;
        }

        .card:hover::before {
            opacity: 1;
        }

        .icon-wrapper1 {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .card:hover .icon-wrapper1 {
            transform: scale(1.1) rotateY(10deg);
        }

        .icon-wrapper1 svg {
            width: 100%;
            height: 100%;
            stroke: #DCB043;
            stroke-width: 2;
            fill: none;
            transition: all 0.4s ease;
        }

        .card:hover .icon-wrapper1 svg {
            stroke: #DCB043;
            filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.3));
        }

        .card-title {
            font-size: 1.5em;
            font-weight: 300;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .card:hover .card-title {
            color: #DCB043;
        }

        @media (max-width: 768px) {

            .cards-wrapper {
                gap: 30px;
            }

            .card {
                padding: 50px 30px;
            }

            .icon-wrapper1 {
                width: 100px;
                height: 100px;
            }
        }

        .card12 {
            padding: 20px 20px;
        }

        .card-custom {
            /*border: none;*/
            border-radius: 12px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            cursor: pointer;
        }

        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(185, 119, 6, 0.3);
        }

        .card-img-container {
            width: 100%;
            border-radius: 14px;
            height: 250px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .card-img-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(185, 119, 6, 0.1), rgba(185, 119, 6, 0.3));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card-custom:hover .card-img-container::after {
            opacity: 1;
        }

        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card-custom:hover .card-img-container img {
            transform: scale(1.1);
        }

        .card-body-custom {
            padding: 25px;
        }

        .card-title-custom {
            font-size: 1.25em;
            font-weight: 400;
            line-height: 28px;
            color: #000;
            margin-bottom: 24px;

            min-height: 23px;
            /* width: 309px; */
        }

        .card-text-custom {
            font-size: 16px;
            line-height: 20px;
            color: #53565a;

            margin-bottom: 15px;

        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e9ecef;
        }

        .category-badge {
            background-color: #B97706;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .read-time {
            color: #7f8c8d;
            font-size: 0.85rem;
        }

        .container-custom {
            max-width: 1400px;
        }

        .row-custom {
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .card-img-container {
                height: 200px;
            }

            .about {
                width: 100%;
                height: auto;
                /* height: 100%; */
                background: linear-gradient(to right, #000, #5d564c 100%);
                padding: 20px;

            }

            .content-about p {
                display: block;
                hyphens: auto;
            }

            .card-title-custom {
                font-size: 3em;
                font-weight: 400;
                line-height: 28px;
                color: #000;
                margin-bottom: 8px;
                min-height: 23px;
                /* width: 309px; */
            }

            .card-text-custom {
                font-size: 1.5em;
                line-height: 20px;
                color: #53565a;
                margin-bottom: 15px;
            }

            .offer-sec {
                display: block;
                width: 1050px;

            }

            .firstSection-cntainer-header {
                margin-top: 50%;
                font-size: 4.1em !important;
            }


        }


        /*success rating section*/

        .sucess-body {
            background: white;

            overflow-x: hidden;
        }



        .stars {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 2rem;
        }

        .star {
            color: #eba620;
            font-size: 2.5rem;
        }

        .main-heading {
            font-size: 2.5em;
            font-weight: 300;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .highlight {
            color: #eba620;
        }

        .subheading {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 4rem;
        }

        .subheading strong {
            font-weight: 300;
        }

        .feature-box {
            text-align: left;
            padding: 2rem 1rem;
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.5em;
            font-weight: 300;
            color: #1a1a2e;
            margin-bottom: 1rem;
        }

        .feature-description {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
        }

        .logo-slider12 {
            overflow: hidden;
            padding: 3rem 0;
            position: relative;
            margin-top: 4rem;
        }

        .logo-track12 {
            display: flex;
            animation: scroll 20s linear infinite;
            gap: 100px;
        }

        .logo-item12 {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(0);
            transition: transform 0.3s;
        }

        .logo-item12:hover {
            transform: scale(1.1);
        }

        .logo-item12 img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .logo-track12:hover {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {

            .feature-box {
                text-align: center;
                padding: 2rem 1rem;
                position: relative;
                z-index: 1;
            }

            .main-heading {
                font-size: 2.5rem;
            }

            .feature-box {
                margin-bottom: 2rem;
            }

            .about .container .images .img-fluid-1 {
                position: relative;
                width: 350px;
                height: 350px;
                left: -2%;
            }

            .logo-item12 img {
                height: 35px;
                width: auto;
                object-fit: contain;
            }
        }


        /* Startup Hero Section Styles */
        .startup-main-title {
            font-size: 4rem !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            line-height: 1.2 !important;
            margin-bottom: 30px !important;
            text-align: center !important;
            padding-top: 180px !important;

        }

        .startup-tagline {
            font-size: 1.8rem !important;
            color: #d4af37 !important;
            margin-bottom: 40px !important;
            font-weight: 400 !important;
            text-align: center !important;
        }

        .startup-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .startup-btn-primary {
            background-color: #d4af37;
            color: #000000;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .startup-btn-primary:hover {
            background-color: #c29d2f;
            transform: translateY(-2px);
        }

        .startup-btn-secondary {
            background-color: transparent;
            color: #ffffff;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: 2px solid #ffffff;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .startup-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .startup-main-title {
                font-size: 2.5rem !important;
            }

            .startup-tagline {
                font-size: 1.2rem !important;
            }

            .startup-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .startup-btn-primary,
            .startup-btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }





        /* about from main.css  */
        /* --------------------about---------------- */
.about {
  width: 100%;
  height: 700px;
  /* height: 100%; */
       background: linear-gradient(to right, #000, #050503 100%);
  padding: 50px;
}

.content-about {

  animation: animate-about 15s linear infinite;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-duration: 4s;
  animation-fill-mode: forwards;

}

.img-fluid-1 {
  /* position: absolute; */
  /* margin-top: 200px; */
  width: 500px;
  height: 500px;
}

.content-about h3 {
    margin-bottom: 10px;
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 2.5em;
  font-weight: 300 !important ;
  position: relative;
  /* left: 100px; */
}

.content-about h5 {
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 1.5em;
  position: relative;
  top: 0%;
  /* left: 100px; */
}

.content-about p {
  color: white;
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  /* font-weight: 700; */
  position: relative;

}

.content-about a {
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
  /* top: 85%;
  left: 100px; */
}

/* @keyframes animate-about {
  0% {
    transform: translateX(0vh) scale(0);
  }

  100% {
    left: 0px;
  }
}
*/

/* arrow-start */
.arrows-body {
  position: relative;
  display: flex;
  align-items: left;
  justify-content: left;
  cursor: pointer;
  border: 1px solid transparent;
  background-color: transparent;
  padding: 10px;
  /* margin-top: 450px; */
  /* margin-top: 50px;
  left: 50px; */
}

.arrow {
  position: relative;
  width: 20px;
  height: 20px;
  border-top: 5px solid #fff;
  border-left: 5px solid #fff;
  transform: rotate(-45deg);
  animation: arrow-load 2s infinite;
}

.arrow:nth-child(1) {
  left: 25px;
  animation-delay: -0.4s;
}

.arrow:nth-child(2) {

  animation-delay: -0.2s;
}

.arrow:nth-child(3) {
  right: 25px;
}

@keyframes arrow-load {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate((60px, 60px));
  }

  0% {
    opacity: 1;

  }

  100% {
    opacity: 0;
    transform: rotate(-45deg) translate(-60px, -60px);
  }
}

/* arrow -end */

/* -----------------about end--------------- */



/* .section-2 {
  width: 100%;
  height: 100%; 
  height: 700px;
  padding: 50px;
  background: linear-gradient(to right, rgb(53, 51, 205, 0.9), rgba(0, 0, 0, 0.9) 100%);
}
.content-sec-2 {
  animation: content-sec-2 2s linear infinite;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes content-sec-2 {
  0% {
    transform: translateX(0vh) scale(0);
  }
  100% {
    right: 0px;
  }
}
.section-2 h3 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 40px;
  position: relative;
}
.section-2 h5 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}
.section-2 p {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  position: relative;
}
.section-2 a {
  font-family: 'Bacasime Antique', serif;
  font-size: 25px;
  position: relative;
  top: 95%;
  left: 100px;
}
.section-3 {
  width: 100%;
  height: 700px;
  padding: 50px;
  background: linear-gradient(to right, rgb(0, 0, 0, 0.9), rgba(225, 6, 144, 0.9) 100%);
}
.content-sec-3 {
  animation: content-sec-3 2s linear infinite;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-duration: 5s;
  animation-fill-mode: forwards;
} */
/*@keyframes content-sec-3 {
  0% {
    transform: translateX(0vh) scale(0);
  }
  100% {
    left: 0px;
  }
}
*/
/* .section-3 h3 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
}
.section-3 h5 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}
.section-3 p {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  position: relative;
}
.section-3 a {
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}
.section-4 {
  width: 100%;
  height: 700px;
  padding: 50px;
  background: linear-gradient(to left, rgb(0, 0, 0, 0.9), rgba(56, 182, 255, 0.9) 100%);
}
.content-sec-4 {
  animation: content-sec-4 2s linear infinite;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-duration: 5s;
  animation-fill-mode: forwards;
} */
/*@keyframes content-sec-4 {
  0% {
    transform: translateX(0vh) scale(0);
  }
  100% {
    right: 0px;
  }
}
*/
/* .section-4 h3 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
}
.section-4 h5 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}
.section-4 p {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  position: relative;
}
.section-4 a {
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}
.section-5 {
  width: 100%;
  height: 700px;
  padding: 50px;
  background: linear-gradient(to right, rgb(0, 0, 0, 0.9), rgba(0, 191, 99, 0.9) 100%);

}
.content-sec-5 {
  animation: content-sec-5 2s linear infinite;
  animation-iteration-count: 1;
  animation-delay: 2s;
  animation-duration: 5s;
  animation-fill-mode: forwards;
} */
/* @keyframes content-sec-5 {
  0% {
    transform: translateX(0vh) scale(0);
  }

  100% {
    left: 0px;
  }
} */
/* .section-5 h3 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
}
.section-5 h5 {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}
.section-5 p {
  color: white;
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  position: relative;
}
.section-5 a {
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
  top: 2%;
  left: 24px;
}
.btn-bt {
  background: transparent;
  padding: 0;
  text-decoration: none;
  color: black;
  width: 100px;
  margin-top: 90px;
}
.btn-bt i {
  width: 100px;
} */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}
.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}
.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}
.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}
.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}
.services .title a:hover {
  color: blueviolet;
}
.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Services end
--------------------------------------------------------------*/

/* ---------------------------------------------------------------------------------- */
/* particles-js */
#particles-js {
  width: 100%;
  height: 500px;
  /* color: goldenrod; */
  background-color: transparent;
  z-index: 2;
}

/* background scroll start*/
.bodys {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: black;
}

.box {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: animated 20s linear infinite;
  /* animation-duration: calc(2s / var(--j)); */
}

@keyframes animated {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }

  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

.box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--j) * 45deg)) translateZ(450px);
  -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004);
  animation-duration: calc(250s / var(--j));

}

.box span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* background scroll end*/
/* img slider */
/* .slider_container {
  background-color: black;
}
.swiper-pagination{
  /* color: gray; * /
  border: 1px solid goldenrod;
  border-radius: 50%;
} */
.img_box img {
  max-width: 100%;
}
.slider_conainer .container {
  padding: 0 5px;
  /* max-width: 1230px; */
  width: 100%;
  margin: 0 auto;
}
.card_slider {
  padding: 15px 0;
}
/* ----------------------------------------------------------------------------------- */

/* New Changes By BS Start */

/* Section-6 ( Web design section ) Start*/
.box22>.icon22 {
  text-align: center;
  position: relative;
}

/* .box22 > .icon22 > .image 
{ position: relative; z-index: 2; margin: auto; width: 88px; height: 88px; border: 2px solid rgb(17, 17, 17); line-height: 88px; border-radius: 50%; vertical-align: middle; } */
/* .box > .icon:hover > .image { background: #333; } */
.box22>.icon22>.image>i {
  font-size: 36px !important;
  color: #fff !important;
}

.box22>.icon22:hover>.image>i {
  color: white !important;
}

.box22>.icon22>.info {
  margin-top: -24px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgb(16 13 13 / 30%);
  padding: 30px 0px 30px;
}

.box22>.icon22:hover>.info {
  background: rgba(0, 0, 0, 0.04);
  border-color: transparent;
  color: white;
}

.box22>.icon22>.info>h3.title {
  color: rgb(9, 8, 8);
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}

.box22>.icon22>.info>p {
  font-family: Oxanium, sans-serif;
  font-size: 17px;
  color: #fff;
  line-height: 1.5em;
  margin: 20px;
}

.box22>.icon22:hover>.info>h3.title,
.box22>.icon22:hover>.info>p,
.box22>.icon22:hover>.info>.more>a {
  color: #222;
}

.box22>.icon22>.info>.more a {
  font-family: Oxanium, sans-serif;
  font-size: 12px;
  color: rgb(233 181 69);
  line-height: 12px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 12px;
  background-color: rgb(20, 17, 20);
  border-radius: 30px;
}

.box22>.icon22:hover>.info>.more>a {
  color: #fff;
  padding: 12px 12px;
  background-color: rgb(20, 17, 20);
  border-radius: 30px;
}

.box22 .space {
  height: 30px;
}


.icon22:hover {
  animation: moveUpDown 2s infinite alternate;
  box-shadow: rgb(28 28 27) 0px 0px 20px;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}


.webdesign {
  width: 100%;
  height: auto;
  /* height: 100%; */
  background: linear-gradient(to right, rgb(46, 45, 40, 0.9), rgba(255, 221, 0, 0.9) 100%);
  padding: 50px;
}

.section-heading6 h3 {
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
}

.section-heading6 h5 {
  /* color: black; */
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}


@media(max-width:600px) {
  .webdesign {
    width: 100%;
    height: auto;
  }
}

/* Section-6 ( Web design section ) End*/


/* Section-7 ( Our Clients ) Start*/

.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-flex;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  width: 209px;
  height: 145px;
  margin: 0 40px;
}

.posabs {
  position: relative;
}

/* .logos-slide a{
  position: absolute;
  top: 100px;
  left: 20px;
} */

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.ourclient {
  display: none !important;
  width: 100%;
  height: auto;
  /* height: 100%; */
  background: linear-gradient(to right, rgb(53, 51, 205, 0.9), rgba(0, 0, 0, 0.9) 100%);
  padding: 50px;
}

.section-heading7 h3 {
  color: white;
  font-family: 'Caprasimo', cursive;
  font-size: 45px;
  position: relative;
}

.section-heading7 h5 {
  /* color: black; */
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  position: relative;
}

.grid11 {
  display: grid;
}

.grid11 a {
  text-align: center;
  margin-top: 20px;
  color: rgb(233 181 69);
  /* font-family: Montserrat, sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  text-decoration: none;
}

/* Section-7 ( Our Clients ) End*/


/* Section-8 (Graphic Design) */
.graphicdesign {
  width: 100%;
  height: auto;
  /* height: 100%; */
  background: linear-gradient(to right, rgb(55 35 35 / 90%), rgba(225, 6, 144, 0.9) 100%);
  padding: 50px;
}

.section-heading8 h3 {
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 2.5em;
  position: relative;
  font-weight:300;
}

.section-heading8 h5 {
  /* color: black; */
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
      font-size: 1.5em;
    font-weight: 300;
  position: relative;
}

@media(max-width:600px) {
  .graphicdesign {
    width: 100%;
    height: auto;
  }
}

/* Section-8 (Graphics Design) End */

/* Section-9 (Review Section) Start */
.review {
  width: 100%;
  height: 540px;
  /* height: 100%; */
  background: linear-gradient(to left, rgb(0, 0, 0, 0.9), rgba(56, 182, 255, 0.9) 100%);
  padding: 50px;
}

.section-heading9 h3 {
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
}

.section-heading9 h5 {
  /* color: black; */
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  position: relative;
}


.rbd-review-slider .rbd-preloader {
  width: 36px;
  height: 36px;
  margin: 0 auto;
}

.rbd-review-slider .rbd-review.rbd-prev {
  transform: translate3d(-100px, 0, -50px);
  display: inline-block;
}

.rbd-review-slider .rbd-review.rbd-next {
  transform: translate3d(100px, 0, -50px);
  display: inline-block;
}

.rbd-review-slider .rbd-review.rbd-curr {
  z-index: 10;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  display: inline-block;
}

.rbd-review-slider .rbd-review {
  padding: 20px 30px;
  font-size: 18px;
  line-height: 1.612;
  border-radius: 4px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
  display: none;
  vertical-align: top;
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  max-width: 600px;
}

.rbd-review-slider .rbd-review.rbd-first {
  display: block;
}

.rbd-review-slider .rbd-heading {
  margin-top: 0;
  margin-bottom: 10px;
}

.rbd-review-slider svg {
  fill: #ffbb58;
  width: 24px;
  margin-right: 1px;
}

.rbd-review-slider .rbd-review-meta {
  font-size: 12px;
  color: #565656;
  margin-top: 12px;
  text-align: center;
}

.rbd-review-slider .rbd-gravatar {
  border-radius: 100%;
  width: 100px;
  float: left;
  margin-right: 15px;
  border: 6px solid transparent;
  box-shadow: 0 3px 12px -2px rgba(0, 0, 0, 0.35);
}

.rbd-footing {
  margin: 20px 0 0;
  text-align: center;
}

@keyframes round {
  25% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }
}

@media(max-width:600px) {
  .rbd-review-slider .rbd-review.rbd-prev {
    transform: none;
    display: inline-block;
  }

  .rbd-review-slider .rbd-review.rbd-next {
    transform: none;
    display: inline-block;
  }

  .rbd-review-slider .rbd-review {
    margin: 0px 10px;
  }
}



.colstar {
  color: #C07F00;
}

/* Section-9 (Review Section) End*/

/*-----------------------------------------------------
 Section-10 (Digital Marketing Section) Start
 -----------------------------------------------------*/
.digimarket {
  width: 100%;
  height: auto;
  /* height: 100%; */
  background: linear-gradient(to right, rgb(81 82 29 / 90%), rgba(0, 191, 99, 0.9) 100%);
  padding: 50px;
}

.section-heading7 h3 {
  color: white;
  font-family: 'Caprasimo', cursive;
  font-size: 45px;
  position: relative;
}

.section-heading7 h5 {
  /* color: black; */
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  position: relative;
}

@media(max-width:600px) {
  .digimarket {
    width: 100%;
    height: auto;
  }
}

/*---------------------------------------- 
Section-10 (Digital Marketing Section) End
-----------------------------------------*/


/*----------------------------------------
 Software Section Start 
 -----------------------------------------*/
.software {
  width: 100%;
  height: auto;
  /* height: 100%; */
  background: linear-gradient(to right, rgb(53, 51, 205, 0.9), rgba(0, 0, 0, 0.9) 100%);
  padding: 50px;
}

.software h3 {
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
}

.software h5 {
  /* color: black; */
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
}

/* .body21 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
 
} */

.container21 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 100px 50px; */
  gap: 100px 30px;
  padding: 50px 0px;
}

.container21 .card21 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* width: 350px; */
  width: 300px;
  max-width: 100%;
  height: 300px;
  background: #FFF;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container21 .card21:hover {
  /* height: 400px; */
  height: 561px;
}

.container21 .card21 .img-box {
  position: absolute;
  top: 20px;
  /* width: 300px; */
  width: 237px;
  height: 220px;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}

.container21 .card21:hover .img-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container21 .card21 .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container21 .card21 .content {
  position: absolute;
  top: 252px;
  width: 100%;
  height: 35px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.container21 .card21:hover .content {
  top: 130px;
  height: 561px;
}

.container21 .card21 .content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr);
}

.container21 .card21 .content p {
  color: #333;
}

.container21 .card21 .content a {
  position: relative;
  top: 15px;
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  background: var(--clr);
  color: #FFF;
  font-weight: 500;
}

.container21 .card21 .content a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .container21 .card21 {
    width: 230px;
    border-radius: 15px;
  }

  .container21 .card21 .img-box {
    width: 185px;
    border-radius: 10px;
  }

  .container21 .card21 .content p {
    font-size: 0.8rem;
  }

  .container21 .card21 .content a {
    font-size: 0.9rem;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {

  /* CSS rules for tablet devices */
  .container21 .card21:hover {
    /* height: 400px; */
    height: 360px;
  }
}

@media (max-width: 35em) {

  .container21 .card21:hover {
    /* height: 400px; */
    height: 300px;
  }
}

/*-------------------------------------
 Software Section End 
 --------------------------------------*/

 
/* Project section in home page Start */
.slider_container {
  background: linear-gradient(45deg, #ffffff, #ffffff);
}

/* Project section in home page End */



/*-------------------------------------------------
 New Service Start
 --------------------------------------------------*/
.boxn {
  position: relative;
  overflow: hidden;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  color: white;
  /* cursor: pointer; */
}
/* Background image */
.boxn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  z-index: 0;
}
/* Set different background images */
.boxn-1::before {
  background-image: url('../images/services/service1.jpg');
}
.boxn-2::before {
  background-image: url('../images/services/service2.jpg');
}
.boxn-3::before {
  background-image: url('../images/services/service3.jpg');
}
.boxn-4::before {
  background-image: url('../images/services/service4.jpg');
}
.boxn-5::before {
  background-image: url('../images/services/service5.jpg');
}
.boxn-6::before {
  background-image: url('../images/services/service6.jpg');
}
/* Zoom effect */
.boxn:hover::before {
  transform: scale(1.1);
}
.boxn h3 {
 position: absolute;
    font-size: 1.5em;
    bottom: 15px;
    left: 20px;
    z-index: 2;
    font-weight: 400;
    pointer-events: none;
    line-height: 28px;
  /* prevent blocking clicks */
}
.overlayn {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%) 0px 0px repeat scroll rgba(0, 0, 0, 0);
  padding: 20px;
  transition: bottom 0.5s ease;
  display: flex;
  /* align-items: center; */
  justify-content: end;
  /* text-align: center; */
  flex-direction: column;
  pointer-events: auto;
  /* allow clicks */
}
.overlayn h4{
    font-size:1.5em;
    line-height: 28px;
    font-weight: 400;
}
.overlayn p{
    font-size: 16px;
}
.overlayn ul li a{
   font-size: 16px;
}
.boxn:hover .overlayn {
  bottom: 0;
}
.overlayn p {
  margin: 0;
}
.boxn:hover .hovnone {
  opacity: 0;
}
/* Normal overlay (always visible) */
.overlay-default {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.066) 100%) 0px 0px repeat scroll rgba(0, 0, 0, 0);
  padding: 15px;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  /* prevent blocking clicks */
}
.overlay-default h4 {
  margin: 0;
  font-weight: bold;
}
.boxn:hover .overlay-default {
  opacity: 0;
}
.servicenew {
  /* background: linear-gradient(to right, #4A00E0, #8E2DE2 100%); */
}
.boxn ul li a {
  transition: all 0.3s ease;
}
.boxn ul li a:hover {
  color: goldenrod !important;
}
/*-------------------------------------------------------------
 New Service End  
 --------------------------------------------------------------*/


 /*------------------------------------------------------------ 
 New Feature Start 
 --------------------------------------------------------------*/
.card__container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
}
.card__bx {
  --bg-clr: #282828;
  --txt-clr: #ffffff;
  --btn-txt-clr: #333333;
  --transition: all 0.5s;

  font-family: 'Poppins', sans-serif;
  height: 350px;
  width: 207px;
  overflow: hidden;
  border-radius: 20px;
  border-top-left-radius: 70px;
  position: relative;
  overflow: hidden;
  background:linear-gradient(to right, #000, #f9a81b 100%);
  transition: var(--transition);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1)
}
.card__1 {
  --clr: #FFD700;
}
.card__2 {
  --clr: #ff1f6b;
}
.card__3 {
  --clr: #98ff21;
}
.card__bx .card__data {
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  background: white;
}
.card__bx .card__data .card__icon {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 50%;
  height: 120px;
  width: 120px;
  background: linear-gradient(to right, #000, #f9a81b 100%
100%
);
}
.card__bx .card__data .card__icon::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  height: 30px;
  width: 30px;
  border-top-left-radius: 30px;
  background: transparent;
  box-shadow: -5px -5px 0 5px linear-gradient(to right, #a76900, #f9a81b 100%
100%
);
}
.card__bx .card__data .card__icon::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 0;
  height: 30px;
  width: 30px;
  border-top-left-radius: 30px;
  background: transparent;
  box-shadow: -5px -5px 0 5px linear-gradient(to right, #a76900, #f9a81b 100%
100%
);
}
.card__bx .card__data .card__icon .card__icon-bx {
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  background: white;
  color: linear-gradient(to right, #a76900, #f9a81b 100%
100%
);
}
.card__bx:hover .card__data .card__icon .card__icon-bx {
  background: linear-gradient(to right, #a76900, #f9a81b 100%
100%
);
  color: var(--txt-clr);
  transition: var(--transition);
}
.card__bx .card__data .card__content {
  position: absolute;
  top: 150px;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  color: #000000;
}
.card__bx .card__data .card__content h3 {
  font-size: 22px;
  font-weight: 700;
  /* letter-spacing: 2px; */
  text-transform: uppercase;
}
.card__bx .card__data .card__content p {
  font-size: 14px;
  opacity: 0.75;
}
.card__bx .card__data .card__content a {
  display: inline-flex;
  align-self: center;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid linear-gradient(to right, #a76900, #f9a81b 100%
100%
);
  color: var(--btn-txt-clr);
  background: linear-gradient(to right, #000, #f9a81b 100%
100%
);
  transition: var(--transition);
}
.card__bx .card__data .card__content a:hover {
  background: transparent;
  color:linear-gradient(to right, #a76900, #f9a81b 100%
100%
);
}
.card__bx:hover {
  transform: translateY(-10px)
}
.featurebg {
       background: linear-gradient(to right, #ffffff, #ffffff 100%);
}
.text-black {
  color: black;
}
/*------------------------------------------------------ 
New Feature ENd 
-------------------------------------------------------*/

/*------------------------------------------------------ 
Call-to-Action Start 
--------------------------------------------------------*/
.ctanew {
         background: linear-gradient(to right, #373634, #292826 100%);
}
.btnn1 {
  display: inline-block;
  overflow: hidden;
  position: relative;
    padding: 10px 30px;
  font-size: 14px !important;
  color: goldenrod;
  text-decoration: none;
  letter-spacing: 2px;
  z-index: 0;
  background: #000000 !important;
  -moz-transition: all 0.6s ease-out 0.0s;
  -ms-transition: all 0.6s ease-out 0.0s;
  -o-transition: all 0.6s ease-out 0.0s;
  -webkit-transition: all 0.6s ease-out 0.0s;
  transition: all 0.6s ease-out 0.0s;
  border-radius: 15px;
}
.btnn1:after,
.btnn1:before {
  -moz-transition: all 0.4s ease-out 0.0s;
  -ms-transition: all 0.4s ease-out 0.0s;
  -o-transition: all 0.4s ease-out 0.0s;
  -webkit-transition: all 0.4s ease-out 0.0s;
  transition: all 0.4s ease-out 0.0s;
}
.btnn1:hover{
  background-color: goldenrod !important;
  color: black;
}
.btnn1+.btnn1 {
  margin-left: 25px;
}
.bordern1 {
  background: none;
  border: solid 2px #fff;
}
.effect7:hover {
  color: #000
}
.effect7:after {
  width: 100%;
  height: 100%;
  content: "";
  background: goldenrod;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1, 0)
}
.effect7:hover:after {
  transform: scale(1, 1)
}
/*  */
.venn {
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background: #000000;
  text-transform: uppercase;
  font-size: 24px;
  color: white;
  font-weight: bold;
  line-height: 1;
  width: 60vmin;
  height: 60vmin;
  padding: 40px;
}
.venn:hover, .venn:hover *, .venn:hover *:after {
  animation-play-state: paused;
}
.venn > span {
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
  font-size: 17px;
}
.venn > span:nth-child(2) {
  position: absolute;
  inset: 53% 0 0 0;
}
.venn__circles {
  position: absolute;
  inset: auto 0 12% 0;
  margin: auto;
  width: 78%;
  height: 73%;
  transform-origin: 50% 55%;
  animation: venn_rotate 7s linear infinite;
}
.venn__circles i {
  animation: venn_rotate 7s linear infinite;
  animation-direction: reverse;
  position: absolute;
  bottom: 0;
  margin: auto;
  width: 62%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgb(255 200 54 / 35%);
}
.venn__circles i:nth-child(2) {
  --animation-delay: calc(-7s / 3 * 2);
  right: 0;
  bottom: 0;
}
.venn__circles i:nth-child(3) {
  --animation-delay: calc(-7s / 3);
  left: 0;
  right: 0;
  bottom: auto;
}
.venn__circles em {
      font-size: 17px;
  font-style: normal;
  position: absolute;
  inset: 35% 5%;
  animation: venn_rotate 7s linear infinite;
  animation-delay: var(--animation-delay);
  display: flex;
  align-items: flex-end;
}
.venn__circles em:after {
  content: attr(data-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 66.6666666%;
  animation: venn_rotate 7s linear infinite;
  animation-delay: var(--animation-delay);
  animation-direction: reverse;
}
@keyframes venn_rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*  */
 .offer-card {
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
    }
    .offer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .countdown {
      font-size: 1.2rem;
      font-weight: bold;
      color: #dc3545;
    }
    .limited-badge {
      background: #dd9915;
      font-weight: bold;
      border-radius: 50px;
      padding: 5px 15px;
      font-size: 0.9rem;
    }

    /*  */
    @keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-container {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-reflect: below 0
    linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.333));
}

.loader {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: animate 3s linear infinite;
}

.loader1:before,
.loader2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to top, transparent, #ffc107);
  background-size: 100px 180px;
  background-repeat: no-repeat;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.loader2,
.loader4 {
  animation-delay: -1s;
      filter: hue-rotate(352deg);
}

.loader i {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
      background: #ffc107;
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 0 10px #ffc107, 0 0 20px #ffc107, 0 0 30px #ffc107, 0 0 40px #ffc107, 0 0 50px #ffc107, 0 0 60px #ffc107, 0 0 70px #ffc107, 0 0 80px #ffc107, 0 0 90px #ffc107, 0 0 100px #ffc107;
}

.loader span {
  position: absolute;
  inset: 20px;
  background: #000;
  border-radius: 50%;
  z-index: 1;
}

/* Additional styles for loader-container2 */
.loader-container2 .loader1:before,
.loader-container2 .loader2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to top, transparent, #ffc107);
  background-size: 100px 180px;
  background-repeat: no-repeat;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.loader-container2 .loader2,
.loader-container2 .loader4 {
  animation-delay: -1s;
    filter: hue-rotate(352deg);
}

.loader-container2 .loader i {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #ffc107;
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 0 10px #ffc107, 0 0 20px #ffc107, 0 0 30px #ffc107, 0 0 40px #ffc107, 0 0 50px #ffc107, 0 0 60px #ffc107, 0 0 70px #ffc107, 0 0 80px #ffc107, 0 0 90px #ffc107, 0 0 100px #ffc107;
}
.loader-container2 .loader span {
  position: absolute;
  inset: 20px;
  background: #000;
  border-radius: 50%;
  z-index: 1;
}

/*-------------------------------------------------
 Call-to-Action End 
 --------------------------------------------------*/

 /*------------------------------------------------
  Blog Start 
  -------------------------------------------------*/
    .blogcard {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .blogcard:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .blogcard img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }
    .category-tag {
      display: inline-block;
     background: linear-gradient(45deg, #f9a226, #daa73e);
      color: #000000;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 30px;
      margin-bottom: 12px;
    }
    .blogcard .card-body h5 {
         font-weight: 300;
    font-size: 1.25em;
      margin-bottom: 12px;
      color: #000000;
    }
    .blogcard .card-body p {
      color: #403f3f;
      font-size: .875em;
      line-height: 1.6;
    }
    .read-more-btn {
      margin-top: 15px;
      background: linear-gradient(45deg, #f5a229, #dfa73b);
      border: none;
      color: rgb(0, 0, 0);
      font-weight: 600;
      border-radius: 30px;
      padding: 8px 20px;
      transition: all 0.3s ease;
    }
    .read-more-btn:hover {
      background: linear-gradient(45deg, #FFD700, #FFD700);
      transform: scale(1.05);
    }
/*----------------------------------------------------
 Blog End 
 -----------------------------------------------------*/

  /*--------------------------------------------------
   FAQ Start 
   --------------------------------------------------*/
.faq-section {
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
       background-color: #373537;   
}
/* .faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; 
} */
.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #ffffff;
}
.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}
.faq-answer p {
  margin: 10px 0;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* enough for content */
  padding: 10px 0;
  color: white;
}
.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}
.faqbg{
  background: linear-gradient(to right, #F5F7FA, #F5F7FA 100%);
}
 /*---------------------------------------------- 
 FAQ End  
 ------------------------------------------------*/
 


 /* Tablet Start */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* CSS rules for tablet devices */
  .card__bx {
        height: 326px;
        width: 44%;
    }
    .venn {
    width: 42vmin;
    height: 42vmin
    }
       .content-about {
        margin-top: 0% !important;
    }
    .exclusive h2{
      font-size: 45px;
    }
    .loader {
      width: 130px;
      height: 130px;
    }
    .loader-container {
    position: relative;
    width: 100%;
    height: 133px;
    }
}
/* Tablet End */

@media(max-width:767px){
  .card__bx {
    height: 326px;
    width: 85%;
  }
  .boxn {
    height: 300px;
  }
  .overlayn h4{
    font-size: 25px;
  }
  .overlayn p {
    font-size: 16px;
  }
  .boxn ul li a {
    font-size: 16px;
  }
  .boxn h3 {
    font-size: 20px;}
        .content-about {
        margin-top: 0%;
        margin-left: 0% !important;
    }
    .disflex1mob{
      display: flex;
      justify-content: center;
    }
    .loader {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: animate 3s linear infinite;
}
.section-heading8 h3 {
    font-size: 30px;
}
.section-heading8 h5 {
    font-size: 20px;
}
.category-tag {
    font-size: 1.5rem;
}
.read-more-btn{
   font-size: 10px;
}
.blogcard .card-body p {
      font-size: 15px;
}
.venn__circles em {
    font-size: 11px;
}
.loader-container {
    position: relative;
    width: 100%;
    height: 133px;
}
.faq-question {
    font-size: 2rem;
}
.faq-answer p {
    font-size: 14px;
}
}











.newww1 ul li {
  list-style-type: disc;
}

.bgpri {
  background-color: #fff9e9;
}

.martopneww1 {
  padding-top: 150px !important;
}

.anch1 a {
  color: gold;
}


















/*--------------------------
 from demo.css 
---------------------------- */

  /* For Tablet View */

  @media screen and (max-width: 1200px) {
   
  
  .content-about h3 {
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 40px;
    font-weight: 400;
    position: relative;

  }

  .content-about h5 {
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
    position: relative;
  }

  .content-about p {
    position: relative;
    font-size: 16px;
  }

  .about .container .images .img-fluid-1 {
    position: relative;
    margin-top: 0px;
    width: 500px;
    height: 450px;
    left: -20%;
  }

  .content-about a {
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
    /* left: -40%; */
  }
  .section-2 .content-sec-2 h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 50px;
    font-weight: 500;
    /* text-align: center; */
    /* margin-left: 270px;
    margin-top: 150px; */
  }

  .section-3 .content-sec-3 h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 50px;
    font-weight: 500;
    /* text-align: center; */
    /* margin-left: 70px;
    margin-top: 150px; */
  }

  .section-2 .content-sec-2 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
    font-weight: 500;
    /* text-align: center;
    margin-left: 0px;
    margin-top: 20%; */
  }

  .section-3 .content-sec-3 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
    font-weight: 500;
    /* text-align: center;
    margin-left: 0px;
    margin-top: 80px; */
    /* width: 100%; */
  }

  .section-2 p {
    position: relative;
    /* margin-top: 25%; */
    color: white;
    font-size: 20px;
  }
  .section-3 p {
    position: relative;
    /* margin-top: 20%; */
    color: white;
  }
  .section-2 .container .img-fluid-1 {
    position: relative;
    margin-top: 15px;
    width: 400px;
    height: 400px;
    /* left: 55%; */

  }
  .section-3 .container .img-fluid-1 {
    position: relative;
    margin-top: 15px;
    width: 500px;
    height: 500px;
    left: -25%;
  }

  .section-2 .content-sec-2 a {
    position: relative;
    /* margin-top: 90%; */
    left: 0%;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;

  }

  .section-3 .content-sec-3 a {
    margin-top: 85%;
    /* left: 260px; */
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
  }
  .section-4 .content-sec-4 h3 {
    position: relative;
    /* margin-top: 150px; */
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 50px;
    font-weight: 500;
    /* text-align: center; */
    /* margin-left: 300px;
    width: 100%; */
  }

  .section-5 .content-sec-5 h3 {
    position: relative;
    /* margin-top: 150px; */
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 50px;
    font-weight: 500;
    /* text-align: center;
    margin-left: 0px; */
    /* width: 100%; */
  }

  .section-4 .content-sec-4 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
    font-weight: 500;
    /* text-align: center;
    margin-left: 0px;
    margin-top: 20%; */
  }

  .section-5 .content-sec-5 h5 {
    position: relative;
    color: white;
    font-family: Caprasimo, cursive;
    font-size: 20px;
    /* position: absolute;
    margin-top: 75px; */
  }

  .section-4 p {
    position: relative;
    /* margin-top: 25%; */
    color: white;
    font-size: 20px;
  }
  .section-5 p {
    position: relative;
    /* display: none; */
    /* margin-top: 105px; */
  }
  .section-4 .container .img-fluid-1 {
    position: relative;
    margin-top: 15px;
    width: 400px;
    height: 400px;
    /* left: 55%; */

  }

  .section-5 .container .img-fluid-1 {
    position: relative;
    margin-top: 20px;
    width: 500px;
    height: 500px;
    left: -25%;
  }

  .section-4 .content-sec-4 a {
    /* position: relative; */
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;

  }

  .section-5 .content-sec-5 a {
    /* position: relative; */
    color: white;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
  }
 

}
 
  /* For Tablet View */

  @media screen and (max-width: 1000px) {
    
    .content-about{
      margin-top: 20%;
    }
    .content-about h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .content-about h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 25px;
    }
  
    .content-about p {
      display: none;
    }
  
    .about .container .images .img-fluid-1 {
      position: relative;
      margin-top: 0px;
      width: 500px;
      height: 450px;
     
    }
  
    .content-about a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
    .content-sec-2{
     margin-top: 20%;
    }
    .section-2 .content-sec-2 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
    .content-sec-3{
      margin-top: 20%;
      /* margin-left: %; */
    }
    .section-3 .content-sec-3 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-2 .content-sec-2 h5 {
      position:relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-3 .content-sec-3 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-2 p {
      display: none;
    }
    .section-3 p {
      display: none;
    }
  
    .section-2 .container .img-fluid-1 {
      position: relative;
      margin-top: 15px;
      width: 500px;
      height: 500px;
      left: -30%;
    }
    .section-3 .container .img-fluid-1 {
      position: relative;
      margin-top: 0px;
      width: 450px;
      height: 450px;
    
    }
  
    .section-2 .content-sec-2 a { 
      position: relative;     
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
  
    }
  
    .section-3 .content-sec-3 a {
      position: relative;
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }

    .content-sec-4 {
      margin-top: 20%;
    }
    .content-sec-5{
      margin-top: 25%;
    }
    .section-4 .content-sec-4 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-5 .content-sec-5 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-4 .content-sec-4 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
    }
  
    .section-5 .content-sec-5 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
    }
    .section-4 p {
      display: none;
    }
    .section-5 p {
      display: none;
    }
    .section-4 .container .img-fluid-1 {
      position: relative;
      margin-top: 15px;
      width: 500px;
      height: 500px;
      left: -30%;
    }
    .section-5 .container .img-fluid-1 {
      position: relative;
      margin-top: 0px;
      width: 450px;
      height: 450px;
    
    }
  
    .section-4 .content-sec-4 a {
      color: white;
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;

    }
  
    .section-5 .content-sec-5 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
   
  
  }

  @media screen and (max-width: 991px) {
    
  
    .firstSection-cntainer-header {
      position: relative;
      margin-top: 50%;
      font-size: 15px;
      font-weight: 700;
  }
   
    .content-about h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .content-about h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 25px;  
    }
  
    .content-about p {
      display: none;
    }
  
    .about .container .images .img-fluid-1 {
      position: relative;
      width: 500px;
      height: 450px;
      left: -35%;
    }
  
    .content-about a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
    .section-2 .content-sec-2 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-3 .content-sec-3 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-2 .content-sec-2 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-3 .content-sec-3 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-2 p {
      display: none;
    }
    .section-3 p {
      display: none;
    }
  
    .section-2 .container .img-fluid-1 {
      position: relative;
      margin-top: 15px;
      width: 400px;
      height: 400px;
      left: 0%;
    }
    .section-3 .container .img-fluid-1 {
      position: relative;
      margin-top: 15px;
      width: 400px;
      height: 400px;
      left: -35%;
    }
  
    .section-2 .content-sec-2 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
  
    }
  
    .section-3 .content-sec-3 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
    .section-4 .content-sec-4 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-5 .content-sec-5 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 50px;
      font-weight: 500;
    }
  
    .section-4 .content-sec-4 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-5 .content-sec-5 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
    }
    .section-4 p {
      display: none;
    }
    .section-5 p {
      display: none;
    }
    .section-4 .container .img-fluid-1 {
      position: relative;
      width: 400px;
      height: 400px;
    }
  
    .section-5 .container .img-fluid-1 {
      position: relative;
      margin-top: 0px;
      width: 400px;
      height: 400px;
      left: -45%;
    }
  
    .section-4 .content-sec-4 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
  
    .section-5 .content-sec-5 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
   
  
  }

  
  @media screen and (max-width: 766px) {
    
    .content-about{
      margin-top: 0%;
      margin-left: 10%;
    }
    .content-about h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;  
    }
  
    .content-about h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
    }
  
    .content-about p {
      display: none;
    }
  
    .about .container .images .img-fluid-1 {
      position: relative;
      width: 350px;
      height: 350px;
      left: 10%;

    }
  
    .content-about a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
    .content-sec-2{
      margin-top: 0%;
      margin-left: 10%;
    }
    .content-sec-3{
      margin-top: 0%;
      margin-left: 10%;
    }
    .section-2 .content-sec-2 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;
  
    }
  
    .section-3 .content-sec-3 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;

    }
  
    .section-2 .content-sec-2 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20;
      font-weight: 500;
  
    }
  
    .section-3 .content-sec-3 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-2 p {
      display: none;
    }
    .section-3 p {
      display: none;
    }
  
    .section-2 .container .img-fluid-1 {
      position: relative;
      width: 350px;
      height: 350px;
      left: 10%;
      
    }
    .section-3 .container .img-fluid-1 {          
      position:relative;
      width: 350px;
      height: 350px;
      left: 10%;    

  }
  
    .section-2 .content-sec-2 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
  
    }
  
    .section-3 .content-sec-3 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;

    }
    .content-sec-4{
      margin-top: 0%;
      margin-left: 10%;
    }
    .content-sec-5{
      margin-top: 0%;
      margin-left: 10%;
    }
    .section-4 .content-sec-4 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;  
    }
  
    .section-5 .content-sec-5 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;
    }
  
    .section-4 .content-sec-4 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20;
      font-weight: 500;  
    }
  
    .section-5 .content-sec-5 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
    .section-4 p {
      display: none;
    }
    .section-5 p {
      display: none;
    }
    .section-4 .container .img-fluid-1 {
      position: relative;
      width: 350px;
      height: 350px;
      left: 10%;
    }
    .section-5 .container .img-fluid-1 {          
      position: relative;
      width: 350px;
      height: 350px;
      left: 10%;
    }
  
    .section-4 .content-sec-4 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
  
    }
  
    .section-5 .content-sec-5 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;

    } 
  }

  

  /* For Mobile Phones Portrait or Landscape View */
@media screen and (max-device-width: 640px) {
  
   
  .content-about{
    margin-top: 0%;
    margin-left: 10%;
  }
  .content-about h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 45px;
    font-weight: 400;  
  }

  .content-about h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
  }

  .content-about p {
    display: none;
  }

  .about .container .images .img-fluid-1 {
    position: relative;
    width: 350px;
    height: 350px;
    left: 10%;

  }

  .content-about a {
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
  }
  .content-sec-2{
    margin-top: 0%;
    margin-left: 10%;
  }
  .content-sec-3{
    margin-top: 0%;
    margin-left: 10%;
  }
  .section-2 .content-sec-2 h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 45px;
    font-weight: 400;

  }

  .section-3 .content-sec-3 h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 45px;
    font-weight: 400;

  }

  .section-2 .content-sec-2 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20;
    font-weight: 500;

  }

  .section-3 .content-sec-3 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
    font-weight: 500;
  }

  .section-2 p {
    display: none;
  }
  .section-3 p {
    display: none;
  }

  .section-2 .container .img-fluid-1 {
    position: relative;
    width: 350px;
    height: 350px;
    left: 10%;
    
  }
  .section-3 .container .img-fluid-1 {          
    position:relative;
    width: 350px;
    height: 350px;
    left: 10%;    

}

  .section-2 .content-sec-2 a {
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;

  }

  .section-3 .content-sec-3 a {
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;

  }
  .content-sec-4{
    margin-top: 0%;
    margin-left: 10%;
  }
  .content-sec-5{
    margin-top: 0%;
    margin-left: 10%;
  }
  .section-4 .content-sec-4 h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 45px;
    font-weight: 400;  
  }

  .section-5 .content-sec-5 h3 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 45px;
    font-weight: 400;
  }

  .section-4 .content-sec-4 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20;
    font-weight: 500;  
  }

  .section-5 .content-sec-5 h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px;
    font-weight: 500;
  }
  .section-4 p {
    display: none;
  }
  .section-5 p {
    display: none;
  }
  .section-4 .container .img-fluid-1 {
    position: relative;
    width: 350px;
    height: 350px;
    left: 10%;
  }
  .section-5 .container .img-fluid-1 {          
    position: relative;
    width: 350px;
    height: 350px;
    left: 10%;
  }

  .section-4 .content-sec-4 a {
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;

  }

  .section-5 .content-sec-5 a {
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;

  } 
   
}

/* mobile responsive */
      @media  screen and (max-width:450px){
        
        .content-about{
          margin-top: 0%;
          margin-left: 10%;
        }
        .content-about h3 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 20px !important;
          font-weight: 400;  
        }
      
        .content-about h5 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 20px;
        }
      
        .content-about p {
          display: none;
        }
      
        .about .container .images .img-fluid-1 {
          position: relative;
          width: 350px;
          height: 350px;
          left: 10%;
    
        }
      
        .content-about a {
          cursor: pointer;
          border: 1px solid transparent;
          background-color: transparent;
        }
        .content-sec-2{
          margin-top: 0%;
          margin-left: 10%;
        }
        .content-sec-3{
          margin-top: 0%;
          margin-left: 10%;
        }
        .section-2 .content-sec-2 h3 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 45px;
          font-weight: 400;
      
        }
      
        .section-3 .content-sec-3 h3 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 45px;
          font-weight: 400;
    
        }
      
        .section-2 .content-sec-2 h5 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 20;
          font-weight: 500;
      
        }
      
        .section-3 .content-sec-3 h5 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 20px;
          font-weight: 500;
        }
      
        .section-2 p {
          display: none;
        }
        .section-3 p {
          display: none;
        }
      
        .section-2 .container .img-fluid-1 {
          position: relative;
          width: 350px;
          height: 350px;
          left: 10%;
          
        }
        .section-3 .container .img-fluid-1 {          
          position:relative;
          width: 350px;
          height: 350px;
          left: 10%;    
    
      }
      
        .section-2 .content-sec-2 a {
          cursor: pointer;
          border: 1px solid transparent;
          background-color: transparent;
      
        }
      
        .section-3 .content-sec-3 a {
          cursor: pointer;
          border: 1px solid transparent;
          background-color: transparent;
    
        }
        .content-sec-4{
          margin-top: 0%;
          margin-left: 10%;
        }
        .content-sec-5{
          margin-top: 0%;
          margin-left: 10%;
        }
        .section-4 .content-sec-4 h3 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 45px;
          font-weight: 400;  
        }
      
        .section-5 .content-sec-5 h3 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 45px;
          font-weight: 400;
        }
      
        .section-4 .content-sec-4 h5 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 20;
          font-weight: 500;  
        }
      
        .section-5 .content-sec-5 h5 {
          position: relative;
          color: white;
          font-family: 'Caprasimo', cursive;
          font-size: 20px;
          font-weight: 500;
        }
        .section-4 p {
          display: none;
        }
        .section-5 p {
          display: none;
        }
        .section-4 .container .img-fluid-1 {
          position: relative;
          width: 350px;
          height: 350px;
          left: 10%;
        }
        .section-5 .container .img-fluid-1 {          
          position: relative;
          width: 350px;
          height: 350px;
          left: 10%;
        }
      
        .section-4 .content-sec-4 a {
          cursor: pointer;
          border: 1px solid transparent;
          background-color: transparent;
      
        }
      
        .section-5 .content-sec-5 a {
          cursor: pointer;
          border: 1px solid transparent;
          background-color: transparent;
    
        } 
    }

    

  @media screen and (max-width:360px){
    
    
    .content-about{
      margin-top: 0%;
      /* margin-left: 10%; */
    }
    .content-about h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;  
    }
  
    .content-about h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
    }
  
    .content-about p {
      display: none;
    }
  
    .about .container .images .img-fluid-1 {
      position: relative;
      width: 300px;
      height: 300px;
      left: -10%;

    }
  
    .content-about a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
    }
    .content-sec-2{
      margin-top: 0%;
      /* margin-left: 10%; */
    }
    .content-sec-3{
      margin-top: 0%;
      /* margin-left: 10%; */
    }
    .section-2 .content-sec-2 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;
  
    }
  
    .section-3 .content-sec-3 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;

    }
  
    .section-2 .content-sec-2 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20;
      font-weight: 500;
  
    }
  
    .section-3 .content-sec-3 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
  
    .section-2 p {
      display: none;
    }
    .section-3 p {
      display: none;
    }
  
    .section-2 .container .img-fluid-1 {
      position: relative;
      width: 300px;
      height: 300px;
      left: -10%;
      
    }
    .section-3 .container .img-fluid-1 {          
      position:relative;
      width: 300px;
      height: 300px;
      left: -10%;   

  }
  
    .section-2 .content-sec-2 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
  
    }
  
    .section-3 .content-sec-3 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;

    }
    .content-sec-4{
      margin-top: 0%;
      /* margin-left: 10%; */
    }
    .content-sec-5{
      margin-top: 0%;
      /* margin-left: 10%; */
    }
    .section-4 .content-sec-4 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;  
    }
  
    .section-5 .content-sec-5 h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px;
      font-weight: 400;
    }
  
    .section-4 .content-sec-4 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20;
      font-weight: 500;  
    }
  
    .section-5 .content-sec-5 h5 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 20px;
      font-weight: 500;
    }
    .section-4 p {
      display: none;
    }
    .section-5 p {
      display: none;
    }
    .section-4 .container .img-fluid-1 {
      position: relative;
      width: 300px;
      height: 300px;
      left: -10%;
    }
    .section-5 .container .img-fluid-1 {          
      position: relative;
      width: 300px;
      height: 300px;
      left: -10%;
    }
  
    .section-4 .content-sec-4 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;
  
    }
  
    .section-5 .content-sec-5 a {
      cursor: pointer;
      border: 1px solid transparent;
      background-color: transparent;

    } 
}
 /*-----------------------------------------
 from demo.css end  
 -------------------------------------------*/


 /*--------------------------------------------
  from cube.css  
  --------------------------------------------*/
  .canvas{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(ellipse, rgb(64,22,143) 0%, rgb(32,14,96) 40%, rgb(10,0,34) 100%);
  perspective: 850px;
}
.cube{
  position: absolute;
  width: 300px;
  height: 300px;
  transform-origin: 50% 50% 150px;
  transform-style: preserve-3d;
  transition: all 0.5s ease-out;
  /* background-color: beige; */
}
.cube .face{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 180px;
  color: transparent;
  -webkit-text-stroke: 5px white;
}

.cube .face:nth-child(1){
  transform: translateZ(300px);
  background-color: rgba(238, 141, 14,0.5);
}

.cube .face:nth-child(2){
  transform-origin: center right;
  transform: rotateY(90deg);
  background-color: rgba(95, 158, 160,0.5);
}
.cube .face:nth-child(3){
  transform-origin: center center;
  transform: rotateY(180deg);
  background-color: rgba(225, 127, 80,0.5);
}
.cube .face:nth-child(4){
  transform-origin: center left;
  transform: rotateY(-90deg);
  background-color: rgba(0, 100, 0,0.5);
}

.cube .face:nth-child(5){
  transform-origin: top center;
  transform: rotateX(90deg);
  background-color: rgba(130, 0, 0,0.5);
}
.cube .face:nth-child(6){
  transform-origin: bottom center;
  transform: rotateX(-90deg);
  background-color: rgba(30, 143, 255,0.5);
}
/*------------------------------
 from cube.css end  
-------------------------------*/