@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* By Default  */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
  font-family: "Roboto", sans-serif;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  padding: 0px;
  margin: 0px;
}
img {
  width: 100%;
  display: block;
}
.no-gutter {
  padding: 0px;
  margin: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

.m-left {
  margin-left: 90px;
}

p {
  margin: 0px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
}
:root {
  /*Dark Purple*/
  --c1: #210a44;
  /*light Purple*/
  --c2: #7b39b8;
  /*White*/
  --c3: #fff;
}

.wrapper{
    overflow: hidden;
}
/* Loader */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}



.dsd {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 0px;
}

.web-btn a {
  cursor: pointer;
  position: relative;
  padding: 10px 17px;
  font-size: 14px;
  color: var(--c2);
  border: 2px solid var(--c2);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.web-btn a::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--c2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.web-btn a:hover::before {
  scale: 3;
}

.web-btn a:hover {
  color: var(--c3);
  scale: 1.1;
  box-shadow: 0 0px 20px var(--c2);

}

.web-btn a:active {
  scale: 1;
}
/*///*/
.web-btn-white a {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 16px;
  color: var(--c3);
  border: 2px solid var(--c3);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.web-btn-white a::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--c2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.web-btn-white a:hover::before {
  scale: 3;
}

.web-btn-white a:hover {
  color: var(--c3);
  scale: 1.1;
  box-shadow: 0 0px 20px var(--c3);
}

.web-btn-white a:active {
  scale: 1;
}



.web-title h2 {
    color: var(--c1);
    font-weight: 700;
    font-size: 46px;
}
.web-title-white h2 {
    color: var(--c3);
    font-size: 40px;
}
.web-title-white p {
    color: var(--c3);
}
.spacing{
  padding: 90px 0px;
}
/* End  */

/* Drop Down */

.nav-bar ul li ul {
  position: absolute;
  top: 100%;
  left: -14px;
  width: 200px;
  z-index: 99;
  background-color: var(--c3);
  flex-direction: column;
  gap: 0px;
  padding: 18px 0px;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.nav-bar ul li:hover ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}

/* End   */

    .burger-container {
            position: relative;
            z-index: 1002;
            display: flex;
            align-items: center;
        }

        .burger {
            width: 55px;
            height: 55px;
            border-radius: 10px;
            background: white;
            box-shadow: rgb(136 165 191 / 48%) 6px 2px 16px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px;
            transition: all .5s ease;
            margin: 1em 0;
        }

        .burger.active {
            background: var(--c2, #333);
        }

        .burger-strip {
            transition: all .5s ease;
            position: relative;
            width: 40px;
            height: 40px;
        }

        .strip div {
            height: 3px;
            border-radius: 2px;
            background: rgb(56 56 56);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: all .55s cubic-bezier(0.075, 0.82, 0.165, 1);
            width: 30px;
        }

        .burger.active .strip div {
            background: white;
        }

        .burger-strip div:first-child {
            top: 12px;
        }

        .burger-strip div:nth-child(2) {
            top: 20px;
        }

        .burger-strip div:last-child {
            top: 28px;
        }

        .burger.active .burger-strip div:first-child {
            transform: translateX(-50%) translateY(8px) rotate(45deg);
            width: 40px;
        }

        .burger.active .burger-strip div:nth-child(2) {
            opacity: 0;
        }

        .burger.active .burger-strip div:last-child {
            transform: translateX(-50%) translateY(-8px) rotate(-45deg);
            width: 40px;
        }

        .menu-text {
            color: rgb(56 56 56);
            font-size: 29px;
            margin-left: 15px;
            font-weight: 800;
        }

        .burger-container.active .menu-text {
            color: #000000;
        }

        .menu {
            position: fixed;
            top: 119px;
            left: -330px;
            width: 330px;
            height: calc(100% - 90px);
            background: var(--c1, #222);
            color: white;
            padding: 80px 20px;
            transition: left 0.3s ease;
            z-index: 1000;
        }

        .menu.active {
            left: 0;
        }

        .menu ul {
            list-style: none;
        }

        .menu ul li {
            margin: 20px 0;
        }

        .menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.2em;
            transition: color 0.3s ease;
        }

        .menu ul li a:hover {
            color: #ddd;
        }

        .overlay {
            position: fixed;
            top: 118px;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
            transition: left 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            z-index: 9; /* Below header and menu */
        }

        .overlay.active {
            left: 0;
            opacity: 1;
        }

        .header-logo img {
            width: 199px;
            margin: 0 auto;
        }

        .header-contact-area {
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 15px;
        }
          .header-logo {
              text-align: end;
          }
        header.main-header {
            position: fixed;
            width: 100%;
            background: #f9f9f9;
            z-index: 999; /* Above overlay, below menu */
        }
            .phone-number h4 a {
        color: var(--c2);
        transition: all.5s;
        font-size: 18px;
        font-weight: 800;
        }
        .phone-number h4 a:hover {
            color: var(--c1);
        }
/*End*/
.hero-sec {
    height: 850px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.banner-riht-image img {
    position: absolute;
    bottom: 65px;
    width: 40%;
}

.banner-content {
    position: absolute;
    left: 50px;
    top: 50%;
    width: 40%;
    transform: translateY(-50%);
}
.banner-content.text-white h2 {
    font-size: 68px;
}

.banner-content h4 {
    font-size: 18px;
}

.banner-content p {
    margin: 2px 0 20px 0;
}

.banner-btn a {
    background: var(--c3);
    color: var(--c2);
    padding: 19px 30px;
    border-radius: 3px;
    font-weight: 700;
}
/*inner-banner-sec CSS*/
.inner-banner-sec {
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
}
.inner-header-title h2 {
    position: absolute;
    color: #fff;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 73px;
}
/*End*/

/*Up Icon*/

.up-icon {
    position: absolute;
    z-index: 9;
    bottom: 31px;
    right: 31px;
    text-align: center;
    visibility: visible;
    border-radius: 35px;
    font-size: 20px;
    position: fixed;
    background: var(--o);
    line-height: 45px;
    width: 45px;
    height: 45px;
    border-radius: 40px;
    transition: all.5s;
    opacity: 1;
}
.up-icon a i {
  color: var(--w);
    padding: 5px 5px
}
.up-icon.active {
    visibility: hidden;
    transition: all .9s;
    bottom: 100%;
    opacity: 0;
}

/*End*/


/*Company Logo css*/

.company-logos img {
    width: 202px;
    cursor: pointer;
    height: 110px;
    object-fit: contain;
}

/*End*/
/*  star css */

.star-title p {
    padding-right: 63px;
    margin: 20px 0;
}

/*End*/

.explore-sec {
    position: relative;
    padding-top: 213px;
    margin-bottom: 80px;
}
.for-clr {
    background: var(--c2);
    border-radius: 10px;
}
.explore-main-image {
    position: absolute;
    bottom: 0;
    width: 40%;
    left: 0;
}
.explore-main-content {
    padding: 60px 0 30px;
}
.animation-images-1 {
    position: absolute;
    right: 41%;
    top: 22%;
    transform: translateY(-50%);
}
.animation-images-1 img {
    width: 107px;
}
.animation-images-2 {
    position: absolute;
    right: 120px;
    bottom: 10%;
}

.animation-images-2 img {
    width: 100px;
}
.animation-images-3 img {
    width: 153px;
}
.animation-images-3 {
    position: absolute;
    left: 23%;
    top: 110px;
}
.cta-back-5 {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background: #7b39b8;
    top: 3%;
    right: 19%;
    position: absolute;
    box-shadow: 1px 0 20px 20px #7b39b8;
    -webkit-animation: scrollDownAnimation .5s infinite alternate;
}


.cta-back-4 {
    width: 6%;
    top: 75%;
    right: 5%;
    position: absolute;
    animation-name: spin;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes scrollDownAnimation {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10px)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

/* Portfolio css */

.porfolio-image img {
    height: 473px;
    object-fit: cover;
    object-position: top;
}
.porfolio-image {position: relative;transition: all.5s;}
.porfolio-main {
    position: relative;
    z-index: 7;
    margin-left: 5px;
}
.porfolio-btn {
    position: absolute;
    top: 70%;
    left: 45%;
    transform: translateX(-50px);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
}
.porfolio-main:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000b8;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all.5s;
    display: inline;
}
.porfolio-main:hover:before {
    visibility: visible;
    opacity: 1;
}
.porfolio-main:hover .porfolio-btn {
    visibility: visible;
    opacity: 1;
    top: 50%;
}
.porfolio-title span {
    color: var(--c2);
}
.porfolio-title h2 {
    FONT-SIZE: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.porfolio-title h4 {
    position: relative;
    display: inline-block;
    font-size: 33px;
    text-transform: uppercase;
}
.porfolio-title h2 {margin: 10px 0 30px;}
.porfolio-title h4:before {
    position: absolute;
    left: 0;
    top: 100%;
    content: '';
    width: 79%;
    height: 2px;
    background: var(--c2);
}


/*Testimonials css*/

.testi-gif img {
    width: 60%;
    margin: 0 0 0 auto;
}

.testi-content-main {
    background: var(--c2);
    color: var(--c3);
    padding: 50px 70px;
    border-radius: 14px;
    margin-right: 11px;
}

.testi-title h4 {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.testi-title h2 {
    font-size: 42px;
    color: var(--c1);
    font-weight: 800;
    width: 101%;
    text-transform: uppercase;
    margin-top: 22px;
}

.client-area h5 {
    font-size: 24px;
    margin-top: 22px;
}

.client-area p {
    color: #d8d8d8;
}
.client-area ul {
    gap: 9px;
    color: #ffc948;
    margin: 8px 0px;
}
.testi-title h4:after {
    position: absolute;
    content: '';
    left: 0;
    top: 120%;
    width: 100%;
    height: 1px;
    background: var(--c3);
}
/*
.slick-prev:before, .slick-next:before {
     font-family: 'math' !important; 
    font-size: 41px;
    line-height: 1;
    color: #000000;
}

.slick-prev, .slick-next{
  bottom: 0 !important;
      z-index: 1;
}*/
/* .package-css */

.package-button-list ul li button.nav-link {
  background: #0000000d;
  border: 2px solid var(--c1);
  border-radius: 50px;
  padding: 6px 20px;
  color: var(
  --c1);
  transition: all 0.7s;
  position: relative;
}
.package-button-list ul li {
  padding: 0 5px;
}
section.our-packages .package-button-list ul li {
}
.package-button-list ul li button.nav-link:before {
  border-radius: 50px;
  content: "";
  display: table;
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--c1);
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  margin: 0 auto;
  transition: all 0.7s;
}
.package-button-list ul li button.nav-link:hover:before {
  width: 100%;
}
.package-button-list ul li button.nav-link.active {
  background: transparent;
}
section.our-packages .package-button-list ul {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  row-gap: 20px;
}
.package-button-list ul li button.nav-link span {
  position: relative;
}
.package-button-list ul li button.nav-link.active:before {
  width: 100%;
}
.package-item {
  border: 1px solid;
  padding: 30px 30px 20px;
  border-radius: 5px;
  margin: 15px 0;
  transition: all 0.5s;
  /*min-height: 800px;*/
}
.package-item .package-header h3 {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 22px;
}
.package-item .package-header {
  text-align: center;
}
.package-item .package-header h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 120%;
}
.package-item .package-header h2 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  font-size: 28px;
  position: relative;
  top: -7px;
  color: var(--c1);
}
section.our-packages .package-button-list {
  padding: 30px 0 10px;
}
.package-item .package-header h3:before {
  content: "";
  height: 13px;
  width: 100%;
  display: table;
  position: absolute;
  bottom: -5px;
  background-image: url(../images/line-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.package-item .package-header h3:after {
}
.package-item .package-body-data ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}
.package-item .package-body h6 {
  color: var(--c1);
  font-size: 20px;
  display: table;
  background: 1px solid var(
  --c1);
  padding: 0px;
}
.package-item .package-body h6:before {
  /* content: "\f054"; */
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-weight: 900;
  padding-right: 10px;
  color: var(--c1);
}
.package-item .package-body-data ul li {
  font-size: 16px;
  line-height: 220%;
  position: relative;
  padding-left: 28px;
}
.package-item .package-body-data ul li:before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  padding-right: 13px;
  color: var(--c1);
  position: absolute;
  left: 0;
}
.package-item .package-body-data {
  height: 280px;
  overflow-y: auto;
  margin: 20px 0 30px;
}
.package-item .package-footer a {
  text-decoration: none;
  padding: 10px 30px;
  display: inline-block;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 1%;
  position: relative;
  overflow: hidden;
  color: #000;
  border: 1px solid #000;
  transition: all.5s;
}
.package-item .package-footer a:before {
  display: table;
  width: 100%;
  height: 100%;
  background: var(--c1);
  left: 0;
  top: 0;
}
.package-item .package-footer p {
  text-align: center;
  margin-top: 11px;
}
.package-item .package-footer {
  position: relative;
}
.package-item .package-footer a:hover {
  background: #000;
  color: #fff;
}
.package-button-list ul li button.nav-link:hover {
    color: var(--c3);
}
.package-body {
    margin-top: 13px;
    border-top: 1px solid #bdbdbd;
    padding-top: 23px;
}
.content-style-01 h2 {
    font-size: 54px;
    font-weight: 800;
    text-transform: uppercase;
}
.content-style-01 h4 {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 13px;
    color: var(--c2);
}
.content-style-01 h2 span {
    color: var(--c2);
}

/*Footer css*/


.footer {
  background-color: var(--c1);
  color: var(
  --c3);
  padding-top: 20px;
}

.footer-links ul li a {
  color: var(--c3);
  position: relative;
}

.f-contact-info ul li a {
  color: var(--c3);
}


.footer-logo {
  width: 220px;
  margin-bottom: 25px;
  background: var(--c3);
  border-radius: 4px;
  padding: 0 10px;
}

.footer-main {
  padding: 50px 0px;
}

.footer-social-main p {
  color: #cccccc;
  margin-bottom: 25px;
}

.footer-social-main ul {
  display: flex;
  gap: 10px;
}

.footer-social-main ul li a {
  width: 30px;
  height: 30px;
  color: var(--c3);
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  transition: all 0.4s;
}

.footer-social-main ul li a:hover {
  margin-top: -6px;
  color: var(--c2);
  background: var(--c3);
}

.footer-title h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--c3);
  transition: all 0.5s;
  transform: scaleX(0);
}

.footer-links ul li a:hover:before {
  transform: scaleX(1);
}

.f-contact-info p {
  margin-bottom: 8px;
}

.f-contact-info ul li i {
  font-size: 16px;
  color: var(--c2);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.f-contact-info ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.copyrights p {
  color: var(--c3);
}
.footer-bottom {
    padding: 10px 0px;
    border-top: 1px solid #14374c;
}



/* CONTACT-PAGE */

/* section-contact-help */

.help-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-help-content h5 {
    margin: 20px 0px 6px 0px;
    color: var(--c2);
    letter-spacing: 1px;
}

.contact-help .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.contact-help .section-title h2,
.contact-help .section-title p {
  color: #000;
}
.contact-help-item:hover {
    border: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.contact-help-item {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 35px 38px;
  text-align: center;
  height: 240px;
  overflow: hidden;
}

.contact-help-icon i {
  width: 50px;
  color: var(--c2);
  font-size: 24px;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  background: var(--c3);
}

.contact-help-icon {
  transition: all 0.5s;
}

.contact-help-content h4 {
  font-weight: 500;
  color: #232323;
  margin-top: 8px;
  font-size: 17px;
}

.contact-help-content a {
  color: var(--c2);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin-top: 30px;
  opacity: 0;
}

.contact-help-content a:before {
  position: absolute;
  content: "\f30b";
  font-family: "Font Awesome 5 Pro";
  left: -47px;
  top: 1px;
  transition: all 0.5s;
}

.contact-help-content a:hover:before {
  left: -21px;
}

.contact-help-item:hover .contact-help-item-inner {
  margin-top: -57px;
}

.contact-help-item:hover .contact-help-icon {
  opacity: 0;
}

.contact-help-item-inner {
  transition: all 0.5s;
}

.contact-help-item .contact-help-content a {
  transition: all 0.5s;
}

.contact-help-item:hover .contact-help-content a {
  opacity: 1;
}

.contact-help-content p {
}
.contact-title h2 {
    font-size: 44px;
}
/* section-contact-message */

.message-form-item input,
.message-form-item textarea {
  color: #000;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 4px;
  border: 0;
  width: 100%;
  outline: 0;
  background-color: rgba(167, 167, 167, 0.1);
}
.contact-message-img img {
    height: 600px;
    object-fit: cover;
}
.message-form-item {
  margin-bottom: 20px;
}

.message-form-item textarea {
  height: 120px;
}

.message-form-item input[type="submit"] {
  background: var(--c2);
  color: #fff;
  transition: all 0.5s;
}

.message-form-item input[type="submit"]:hover {background: var(--c1);}

.message-title h2 {
    margin-bottom: 0;
}

.message-title p {
    padding: 10px 0px 20px 0px;
}

.contact-message-img {
  padding: 20px;
  border: 2px solid var(--c2);
}

/* Map */

.map {
    margin-top: 100px;
}
.map-main iframe {
    width: 100%;
    height: 400px;
    display: block;
}



/* Faqs */

.faq-title {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title h2:first-letter {
  color: var(--c2);
}

.faqs-img img {
  height: 437px;
  object-fit: cover;
  transition: all .5s;
}

.faqs-img {
  border-radius: 10px;
  overflow: hidden;
}

.faqs-img img:hover {
  transform: scale(1.1);
}

.faqs {
  padding: 90px 0px;
}

.accord-card {
  margin-bottom: 20px;
}

.accordian-main {
  margin-top: 40px;
}

.accordion-item {
  margin-bottom: 20px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  border: 1px solid #ccc;
}

.accordion-item {
  border: 0;
}

.accordion-button::after {
  filter: sepia(1);
}

.accordion-body {
  background-color: #ededed;
  padding: 20px 20px 20px 20px;
}

.accordion-button {
  background-color: #ededed !important;
  box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%) !important;
  color: var(--c2) !important;
  font-size: 20px;
  font-weight: 600;
}

.accordion-header:hover .accordian-button {
  background-color: var(--c2) !important;
}

.accordion-header:hover .accordion-button {
  background-color: var(--c2);
  color: var(--c2);
}

/*About Us Css*/


.about-image img {
    border-radius: 17px;
}

/*Privacy Policy Css*/
.privacy-policy-content h4 {
    margin: 24px 0;
}

/* Blogs CSS */

.blog-main {
    margin-bottom: 53px;
}

.blog-image img {
    height: 258px;
    border-radius: 7px;
    object-fit: cover;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--c2);
}

.blog-content p {
    padding: 10px 0;
}

.blog-content {
    margin: 28px 0 0 0;
}

.blog-btn a {
    color: var(--c2);
    font-size: 23px;
    font-weight: 600;
    transition: all.4s;
}

.blog-btn a:hover {
    color: var(--c1);
}


/*single service sec Css*/

.single-service-sec .row:nth-child(even) {
    flex-direction: row-reverse;
    margin: 60px 0;
}
.single-service-image img {
    border-radius: 15px;
}




.menu ul li ul {
    position: absolute;
    right: 40px;
    background: var(--c3);
    width: 170px;
    padding: 0 20px;
    z-index: 2;
    border-radius: 4px;
}

.menu ul li {position: relative;}

.menu ul li ul li a {
    color: var(--c2);
    font-weight: 700;
    line-height: 0px;
}

.menu ul li ul {opacity: 0;visibility: hidden;transform: scaleY(0);transform-origin: 0 0 0;transition: all 0.3s;}

.menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
.menu ul li ul li a:hover {
    color: var(--c1);
}





/* Portfolio */

.portfolio-sec {
  background: var(--c6);
}

.portfolio-btn {
  margin-top: 40px;
  text-align: center;
}

.projects-main .project-item {
  margin-bottom: 25px;
}

.project-image a {
  display: block !important;
}

.project-item-inner-main {
  position: relative;
}

.portfolio-sec.website .project-item,
.portfolio-sec.logo-des .project-item,
.portfolio-sec.brand .project-item {
  padding: 30px;
  border-bottom: 1px solid #80808030;
  border-right: 1px solid #80808030;
  margin-bottom: unset !important;
}

.portfolio-sec.website .projects-main,
.portfolio-sec.logo-des .projects-main,
.portfolio-sec.brand .projects-main {
  padding: 0px;
  border: 1px solid #80808030;
}

.portfolio-sec.website .project-image a img {
  height: 600px;
}

.portfolio-sec.website .project-image a img,
.slide-one.web .project-image img {
  object-fit: cover;
  object-position: top;
  transition: 4s all ease;
}

.portfolio-sec.website .project-item-inner-main:hover .project-image img,
.slide-one.web .project-image:hover img {
  object-position: bottom;
}

.slide-one .projects-main .row .col-lg-4:last-child .project-item {
  height: 470px;
  overflow: hidden;
  margin-bottom: 60px;
}





/* Website-Portfolio */

.portfolio-sec .gallery-btns ul,
.package-tab-btns ul,
.graph-btns ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.package-tab-btns ul li button {
  color: var(--c5) !important;
}

.package-tab-btns ul li button.active {
  color: var(--c5) !important;
}

.package-tab-btns ul {
  gap: 20px;
  margin-bottom: 30px;
}

.portfolio-sec .graph-btns {
  padding: 0px 100px;
  margin-bottom: 40px;
}

.portfolio-sec .graph-btns ul {
  row-gap: 15px;
}

.gallery-btns {
  margin-bottom: 20px;
}

.portfolio-sec .iso-tab {
  width: 33.33%;
}

.portfolio-sec.website .iso-tab:nth-child(3n + 3) .project-item,
.portfolio-sec.logo-des .row .col-lg-3:nth-child(4n + 4) .project-item,
.portfolio-sec.brand .row .col-lg-4:nth-child(3n + 3) .project-item {
  border-right: unset;
}

/* logo-portfolio */
.for-lg-clr img {
    filter: drop-shadow(2px 4px 6px black);
}
.portfolio-sec.logo-des .project-image,
.portfolio-sec.brand .project-image {
  position: relative;
  overflow: hidden;
}
.project-image video {
  width: 100%;
  height: 100%;
  display: block;
}
.portfolio-sec.logo-des .project-image:before,
.portfolio-sec.brand .project-image:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgb(143 64 64 / 0%) 0%, #ffffff29 100%);
  transform: skewX(-25deg);
}
.portfolio-sec.logo-des .project-image:hover:before,
.portfolio-sec.brand .project-image:hover:before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}


.portfolio-sec .gallery-btns ul li.active a,
.package-tab-btns ul li button.active,
.graph-btns ul li.active a{
  background-color: var(--c1) !important;
  color: var(--c3) !important;
  border-color: transparent;
  box-shadow: 0px 10px 60px 0px rgba(208, 29, 106, 0.4);
}
.portfolio-sec .iso-tab {
  width: 33.33%;
}
.portfolio-sec.website .iso-tab:nth-child(3n + 3) .project-item,
.portfolio-sec.logo-des .row .col-lg-3:nth-child(4n + 4) .project-item,
.portfolio-sec.brand .row .col-lg-4:nth-child(3n + 3) .project-item {
  border-right: unset;
}

.privacy-policy-content  strong {
    font-size: 30px;
}
.privacy-box h3 {
    margin-top: 24px;
}

/* terms and condition */

.terms-discription {
  padding: 90px 0px;
  position: relative;
}
.terms-title span.term-tit {
  color: var(--c1);
  font-family: var(--fbolder);
  font-size: 50px;
  display: block;
  line-height: 1.1;
}
.instruction-sec-content p {
  margin-bottom: 10px;
}
.instruction-sec-content p strong {
  font-size: 30px;
}
.instruction-sec-content ol li {
  color: var(--c3);
  font-size: 17px;
  margin-bottom: 7px;
  list-style: auto;
}
.instruction-sec-content ol {
  margin: 20px 0px;
}
.instruction-sec-content a {
  color: var(--c1);
}
.terms-title {
  padding-left: 50px;
}
.instruction-sec-content ul li,
.privacy-box h3 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 15px;
}
.instruction-sec-content h5 {
  color: var(--c3);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.privacy-box ul li {
  font-weight: 300;
  font-size: 18px;
  list-style: disc;
}
.privacy-box ul {
  padding-left: 20px;
  margin-bottom: 20px;
}