* {
  margin: 0;
  padding: 0;
  /* font-family: 'poppins', sans-serif; */
  font-family: Oxanium, sans-serif;
  box-sizing: border-box;
}

:root {
  --maroon: #321E1E;
  --gold: #FFD700;
  --gold-col: #e9b545;
  --white: hsl(0, 0%, 100%);
  --WHITE: hsl(0, 0%, 100%);
  --BLACK: hsl(0, 0%, 0%);
  --black-90: hsl(0, 0%, 10%);
  --black-70: hsl(0, 0%, 30%);
  --black-alpha-40: hsla(0, 0%, 0%, 0.4);
  --yellow-light: hsl(44, 95%, 83%);
  --green-light: hsl(158, 68%, 75%);
  --red-light: hsl(0, 84%, 80%);
  --orange-light: hsl(22, 85%, 80%);
  --select-box-bg-color: hsl(0, 0%, 100%);
  --border-color-1: hsl(0, 0%, 90%);

}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  /* background-color: #321E1E; */
  /* background-color: whitesmoke; */
  
}

/* ==========================
DROP DOWN MENU CSS STARTS HERE !
=========================*/

.dropDown {
  background: red;
}

.dropDown li a {
  text-decoration: none;
  padding: 10px;
  font-size: 10px;
  color: #fff;
  text-align: center;
}

.dropDown li {
  /* display: block; */
  height: 50px;
}

#nav-bar li .dropDown {
  width: auto;
  position: absolute;
  z-index: 999;
  display: none;
}

#nav-bar li:hover .dropDown {
  display: block;
}

/* ==========================
DROP DOWN MENU CSS END HERE !
=========================*/
/* loading start*/
.zixin {
  width: 250px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.zixin span {
  /* width: 100%; */
  width: 0;
  height: 50px;
  position: absolute;
  background: var(--gold-col);
}

.left {
  top: 0;
  left: 0;
  animation: anim 1s linear forwards;
  animation-delay: 1s;
}

.center {
  top: 0;
  right: 0;
  transform: skewY(-45deg);
  transform-origin: bottom right;
  /* height: 50px; */
  box-shadow: 0 0 20px #e9b545;
  /* box-shadow: 0 0 20px  #321E1E;
    box-shadow: 0 0 20px  transparent; */
  z-index: 2;
  animation: anim 1s linear forwards;
  animation-delay: 2s;
}

.right {
  left: 0;
  bottom: 0;
  animation: anim 1s linear forwards;
  animation-delay: 3s;
}

.zixin::after {
  content: '';
  width: 150%;
  height: 20px;
  border-radius: 50%;
  /* background: var(--maroon); */
  position: absolute;
  left: -20px;
  bottom: -15px;
  z-index: 5;
}

@keyframes anim {
  100% {
    width: 100%;
  }
}

/* loading end */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 24px 0;
  /* background: rgba(103, 176, 209, 0.8); */
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  /* background: rgba(55, 142, 181, 0.9); */
  background: transparent;
  padding: 12px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
  width: 230px;
  height: 85px;

}


/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
  /* margin-right: -150px; */

}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  /* background-image: linear-gradient(to right,#321E1E,rgba(224, 164, 12, 0.6) ); */
  background-image: linear-gradient(to right, black, rgba(224, 164, 12, 0.6));
  border-radius: 8px;
  /* border: 1px solid goldenrod; */
  box-shadow: 0 0 10px 1px #e9b545;
  /* backdrop-filter: blur(10px); */
  /* width: 100%; */
}

.navbar li {
  position: relative;
  /* background: red; */
  padding: 5px;
  /* color: #321E1E; */

}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 8px 16px;
  margin-left: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.815);
  /* color: #321E1E; */
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--gold-col);
  background-color: #321E1E;
  /* border-radius: 50px; */
  /* border: 2px solid var(--gold-col); */
  box-shadow: 0 0 5px 1px #e9b545;
  /* backdrop-filter: blur(5px); */

}



/**
  * Mobile Navigation 
  */
section#home {
  height: 100vh;
  display: grid;
  place-items: center;
}

/* h1 {
    font-size: 4rem;
  } */
#ham-menu {
  display: none;
}

nav ul.active {
  left: 0;
  /* width: 360px;
    position: fixed; */
}
@media screen and (max-width: 790px) {
  nav ul.active {
      top: 0;
      left: 0px;
      width: 80vw;
      position: fixed;
      /* background-color: red; */
      margin-top: 13%;
  }
}
@media only screen and (max-width: 991px) {
  nav ul.active {
      top: 0;
      left: 0px;
      width: 80vw;
      position: fixed;
      /* background-color: red; */
      margin-top: 13%;
  }
}
@media only screen and (max-width: 991px) {
  html {
    font-size: 56.25%;
  }

  header {
    padding: 2.2rem 5rem;
  }
  #ham-menu {
    display: block;
    color: var(--gold-col);
    cursor: pointer;
}
nav #ham-menu {
  /* font-size: 3.2rem; */
  font-size: 30px;
}
}

@media only screen and (max-width: 767px) {

  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }

  .navbar {
    margin-right: 20px;
  }

  html {
    font-size: 50%;
  }

  #ham-menu {
    display: block;
    color: var(--gold-col);
    cursor: pointer;
  }

  nav #ham-menu {
    /* font-size: 3.2rem; */
    font-size: 30px;

  }

  .navbar ul {
    position: fixed;
    left: -110vw;
    /* margin-top: 50px; */
    margin-top: 750px;
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
  }
  

}

@media only screen and (max-width: 575px) {
  html {
    font-size: 46.87%;
  }

  header {
    padding: 2rem 3rem;
  }

  nav ul {
    top: 65.18px;
    height: calc(100vh - 65.18px);
  }

  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
}

  nav ul.active {
    left: 0;
    /* width: 100%; */
    position: fixed;
  }
  /* nav ul li a{
    font-size: 30px;
    background: red;
    padding: 20px;
  } */
}

/* nav end */

/* hero */
#hero {
  width: 100%;
  height: 700px;
  background-size: cover;
  position: relative;
  /* background: var(--maroon); */
  background: var(--BLACK);
  text-align: center;
  color: #fff;
}

.firstSection-cntainer-header {
  margin-top: 20%;
  font-size: 3rem;
  position: absolute;
  font-weight: 600;
}

#element {
  color: goldenrod;
}

.hero-sectionx,
.hero-sectionx>.container>.row {
  height: 100vh;
  min-height: 600px;

}

.hero-sectionx.inner-page {
  height: 60vh;
  min-height: 0;
}

.hero-text-image p {
  /* background: red; */
  /* left: 50px; */
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;

}

.hero-sectionx.inner-page .hero-text {
  transform: translateY(-150px);
  margin-top: -120px;
  /* font-family: 'Caprasimo', cursive;

  background-color: red; */
}

@media screen and (max-width: 992px) {
  .hero-sectionx.inner-page .hero-text {
    margin-top: -80px;
  }
}

.hero-sectionx h1 {
  position: absolute;
  font-size: 3rem;
  color: var(--gold-col);
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 250px;
  font-family: 'Caprasimo', cursive;
  z-index: 2;
  text-align: center;
  margin-left: 15%;
}

.hero-sectionx p {
  position: absolute;
  margin-bottom: 0px;
  margin-top: 350px;
  color: white;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 992px) {
  .hero-sectionx h1 {
    position: absolute;
    font-size: 2.5rem;
    text-align: center;
    /* margin-top: 40px; */
    margin-top: 100px;
    padding: 0px;
  }
}




@media screen and (max-width: 992px) {
  .hero-sectionx .hero-text-image {
    margin-top: 4rem;
  }


}




@media screen and (max-width: 992px) {
  .hero-sectionx .iphone-wrap {
    text-align: center;
  }
}

.hero-sectionx .iphone-wrap .phone-2,
.hero-sectionx .iphone-wrap .phone-1 {
  position: absolute;
  top: -50%;
  overflow: hidden;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

@media screen and (max-width: 992px) {

  .hero-sectionx .iphone-wrap .phone-2,
  .hero-sectionx .iphone-wrap .phone-1 {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}

.hero-sectionx .iphone-wrap .phone-2,
.hero-sectionx .iphone-wrap .phone-1 {
  width: 250px;
}

@media screen and (max-width: 992px) {
  .hero-sectionx .iphone-wrap .phone-1 {
    margin-left: -150px;
  }
}

.hero-sectionx .iphone-wrap .phone-2 {
  margin-top: 50px;
  margin-left: 100px;
  width: 250px;
}

@media screen and (max-width: 992px) {
  .hero-sectionx .iphone-wrap .phone-2 {
    width: 250px;
    position: absolute;
    margin-top: 0px;
    margin-left: 100px;
    display: table-column;
  }

  .hero-sectionx h1 {

    font-size: 30px;
    text-align: center;
    margin-top: 200px;
  }

  .hero-sectionx p {
    font-size: 18px;
    color: #fff;
    margin-top: 350px;
  }
}

@media only screen and (max-width: 767px) {
  #hero {
    width: 100%;
    height: 300px;
  }

  .hero-sectionx h1 {

    font-size: 30px;
    text-align: center;
    margin-top: 200px;
  }

  .hero-sectionx p {
    font-size: 18px;
    color: #fff;
    margin-top: 350px;
  }

  .hero-sectionx .iphone-wrap {
    position: relative;
  }

}

@media(max-width: 1200px) {
  .navbar li {
    padding: 0rem !important;
  }

  .navbar li a {
    font-size: 15px;
  }
  /* .navbar li a:hover {
    font-size: 25px;
  } */

  .logo {
    max-height: none !important;
    margin-left: -40px;
    max-width: 100%;
  }

  .logo img {
    transform: scale(.9);
  }

  .hero-sectionx h1 {
    font-size: 2.1rem;
    position: relative;
    top: -20px;
  }
}

/* hero-sectionx animation */
.hero-sectionx .bubbles {
  position: relative;
  display: flex;

}

.hero-sectionx .bubbles span {
  position: relative;
  width: 20px;
  height: 20px;
  /* background: var(--gold-col); */
  background: #C07F00;
  margin: 4px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #FFD95A, 0 0 50px #FFFBAC, 0 0 100px #F6FFA6;
  animation: animate 15s linear infinite;
  animation-duration: calc(250s / var(--i));
}

.hero-sectionx .bubbles span:nth-child(even) {
  background: #A8A9AD;
  box-shadow: 0 0 0 8px #B5B7BB, 0 0 50px #CCCCCC, 0 0 100px #D8D8D8;

}

@keyframes animate {
  0% {
    transform: translateY(100vh) scale(0);
  }

  100% {
    transform: translateY(-10vh) scale(1);
  }
}

/* bubble animation end */



/* --------------------about---------------- */
.about {
  width: 100%;
  height: 700px;
  /* height: 100%; */
  background: linear-gradient(to right, rgb(46, 45, 40, 0.9), rgba(255, 221, 0, 0.9) 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 {
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative;
  /* left: 100px; */
}

.content-about h5 {
  color: white;
    /* font-family: 'Montserrat', sans-serif; */
    font-family: Oxanium, sans-serif;
    font-size: 25px;
    position: relative;
    top: 0%;
    /* left: 100px; */
}

.content-about p {
    color: white;
    /* font-family: 'Bacasime Antique', serif; */
    font-family: Oxanium, sans-serif;
    font-size: 20px;
    /* 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: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 40px;
  position: relative;
  /* left: 100px; */

}

.section-2 h5 {
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative;
  /* top: 20%;
  left: 100px; */
}

.section-2 p {
  color: white;
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  /* font-weight: 700; */
  position: relative;
  /* top: 30%;
  left: 100px; */
  /* right: -50px; */
}

.section-2 a {
  font-family: 'Bacasime Antique', serif;
  font-size: 25px;
  position: relative;
  /* top: 95%;
  left: 100px; */
}

.section-3 {
  width: 100%;
  /* height: 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: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative; 
  /* left: 100px; */
 

}

.section-3 h5 {
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative; 
  /* top: 15%;
  left: 100px; */
}

.section-3 p {
  color: white;
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  /* font-weight: 700; */
  position: relative; 
}

.section-3 a {
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative; 
}


.section-4 {
  width: 100%;
  /* height: 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: black; */
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative; 

}

.section-4 h5 {
  /* color: black; */
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative; 
}

.section-4 p {
  /* color: black; */
  color: white;
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  /* font-weight: 700; */
  position: relative; 
}

.section-4 a {
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative; 
}

.section-5 {
  width: 100%;
  /* height: 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:linear-gradient(to right,rgb(0,0,0, 0.9), rgba(0, 191,99,0.9) 100%); */
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px;
  position: relative; 

}

.section-5 h5 {
  /* color: black; */
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  position: relative; 
}

.section-5 p {
  /* color: black; */
  color: white;
  /* font-family: 'Bacasime Antique', serif; */
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  position: relative; 
}

.section-5 a {
  /* font-family: 'Bacasime Antique', serif; */
  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;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: black;
  color: white;
}


#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
  background: linear-gradient(to right, rgb(0, 0, 0, 0.9), rgba(98, 97, 97, 0.9) 100%);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-logo img {
  width: 200px;
  height: 80px;
  margin-left: -40px;
  margin-top: -20px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  /* color: #fc0; */
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: white;
  /* color: var(--gold-col); */
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  /* color: #47b2e4; */
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  /* display: flex; */
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--gold-col);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--gold-col);
  /* color:var(--maroon); */
  color: black;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

/* #footer .footer-top .social-links a i{
  color: black;
} */

#footer .footer-top .social-links a:hover {

  background: black;
  color: var(--gold-col);
  padding: 5px;
  /* border-radius: 50%; */
  text-decoration: none;


  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  /* margin-right: 4px; */
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--gold-col);

}

#footer .copyright {
  /* float: left; */
  /* text-align: center; */

}

#footer .copyright a {

  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--gold-col);
  /* text-shadow: #C07F00; */
  text-decoration: none;
  /* background: #c080008e; */
  padding: 5px;
}

#footer .credits {
  /* float: right; */
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/* 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;
}


/* Social link start */
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 99;
}



.icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}


.icon-bar a:hover {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: black;
  color: goldenrod;
  z-index: 1;
  /* border: 2px solid var(--gold-col); */
  /* box-shadow: 0 0 0 2px var(--gold-col); */
}





.facebook {
  background: rgb(0, 132, 255);
  color: white;

}

.twitter {
  background: rgb(47, 255, 116);
  color: white;
}

.google {
  background: green;
  color: white;
}

.linkedin {
  background: blue;
  color: white;
}

.youtube {
  background: rgb(255, 153, 0);
  color: white;
}

.email {
  background: red;
  color: white;
}

/* =================================================================================== */

/* RESPONSIVE PART CSS */
@media (max-width: 63em) {
  body {
    scroll-behavior: smooth !important;
    overflow-x: hidden;
  }
}

@media (max-width: 35em) {
  body {
    scroll-behavior: smooth !important;
    overflow-x: hidden;
  }

  #header .logo img {
    /*padding-left: 10px;*/
    /*margin: 0;*/
    /*width: 180px;*/
    /*height: 77px; -  these are for the old logo*/
    padding-left: 38px;
    margin: 0;
    width: 176px;
    height: 53px;
  }

}






/* whatsapp integration css  */

.whatsapp_float {
  position: fixed;
  width: 15%;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp_float span{
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: sans-serif;
  padding-left: 10px;
}

.whatsapp_float .msg-alrt{
  background-color: red;
 width: 18%;
 height: auto;
 border-radius: 100px;
 text-align: center;
 position: absolute;
 top: -13px;
 right: 0;
 
}

.whatsapp_float .msg-alrt h4{
  margin: 0;
  font-size: 1.2rem;
  padding: 5px;
  
}

/* for mobile */
@media screen and (max-width: 767px){
  .whatsapp-icon {
    /* margin-top: 10px; */
  }
  .whatsapp_float {
    width: 35%;
    height: 45px;
    bottom: 10px;
    right: 10px;
    font-size: 22px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  }

  .whatsapp_float span{
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: sans-serif;
    padding-left: 5px;
  }
}




/* 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: 45px;
  position: relative;
}
.section-heading8 h5 {
  /* color: black; */
  color: white;
  /* font-family: 'Montserrat', sans-serif; */
  font-family: Oxanium, sans-serif;
  font-size: 25px;
  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*/

/* Iso logo (In footer) */
/* .iso {
  width: 170px;
  height: 170px;
  margin: 10px 0px 0px 0px;
} */

/* Iso logo (In footer) */

/* Pop up form */
#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 9999;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 5px solid goldenrod;
  box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}

#close-popup {
  position: absolute;
  top: 1px;
  right: 13px;
  cursor: pointer;
  /* width: 16px; */
  font-size: 28px;
  z-index: 99999;
}

#popup-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#popup-form button {
  padding: 10px 20px;
  /* background-color: #007bff; */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.formpop input{
  margin-bottom: 10px;
}
.popupimg{
  width: 300px;
  height: 271px;
  margin: -18px 34px 0px -65px;
}

.main-button-gradient button {
  font-size: 13px;
  color: #fff;
  /* background: rgb(219, 138, 222); */
  background: linear-gradient(-145deg, rgb(242 195 77 / 60%) 0%, rgb(22 21 20) 100%);
  padding: 12px 30px;
  /* padding: 0px; */
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.isopopup{
  width: 100px;
  height: 100px;
}
.ml11{
  margin: 0px 0px 0px -36px;
}

@media(max-width:600px){
  #popup-container {
    display: none;
    position: fixed;
    top: -147px;
    left: 0;
    width: 81%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 9999;
}
#popup-content {
  position: absolute;
  top: 67%;
  left: 62%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 5px solid goldenrod;
  box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}
.popupimg {
  width: 300px;
  height: 271px;
  margin: -9px -24px 0px -12px;
}
.posrel12{
  position: relative;
}
.posabs12{
  position: absolute;
    top: 275px;
}
.ml11{
  margin: 0px !important;
}
}


@media(max-width:380px){
  #popup-content {
    width: 83vw;
    position: absolute;
    top: 77%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 5px solid goldenrod;
    box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}
}


@media(width:280px)
{
  #popup-content {
    position: absolute;
    top: 73%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 5px solid goldenrod;
    box-shadow: 10px 7px 10px 7px rgb(126 108 65);
    width: 269px;
}
.popupimg {
  width: 300px;
  height: 271px;
  margin: -9px -24px 0px -34px !important;
}
.isopopup {
  width: 100px;
  height: 100px;
  margin: 0px !important;
}
}

@media (min-width: 760px) and (max-width: 920px) {
  .popupimg {
    width: 300px;
    height: 271px;
    margin: 0px;
}
.posrel12{
  position: relative;
}
.posabs12{
  position: absolute;
    top: 275px;
}
.ml11{
  margin: 0px 0px 11px 103px;
}
}
@media screen and (max-width: 992px) {
 
  .popupimg {
    width: 228px;
    height: 235px;
    margin: 0px 0px 0px 62px;
}
.posrel12{
  position: relative;
}
.posabs12{
  position: absolute;
    top: 275px;
}
.ml11 {
  /* margin: 0px 0px 11px 103px; */
  margin: 0px 0px 11px 110px;
}
.isopopup {
  width: 85px;
  height: 85px;
  margin: -15px 0px 0px 0px;
}

}
@media screen and (width: 540px) {
  .ml11 {
    margin: 0px ;
  }
}

/* Popup form End */


/* SocialMediaIcons Section CSS Start Here */

.SocialMediaIcons-container{
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -130px;
  top: 130px;
  width: 210px;
  z-index: 1100;
}

.SocialMediaIcons-container .container-menu li{
  list-style-type: none;
  background-color: #e9b545;
  color: #fff;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.SocialMediaIcons-container .container-menu li:hover{
  margin-left: -115px;
}
.SocialMediaIcons-container .container-menu li img{
  float: left;
  margin: 5px 12px;
  border-radius: 10px;

}
.SocialMediaIcons-container .container-menu li:nth-child(1){
  background-color: rgb(75, 136, 222);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(2){
  background: linear-gradient(rgb(222, 75, 180),rgb(200, 0, 255),white);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(3){
  background-color: rgb(23, 27, 141);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(4){
  background-color: rgb(32, 240, 122);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(5){
  background: linear-gradient(rgb(227, 29, 19),white);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li p{
  padding-top: 5px;
  margin: 0px;
  line-height: 16px;
  font-size: 14px;
  font-family: sans-serif;
}

.SocialMediaIcons-container .container-menu li p a{
  text-decoration: none;
  color: #fff;
}
.SocialMediaIcons-container .container-menu li p a:hover{
  text-decoration: underline;

}
@media only screen and (max-width: 575px) {
  .SocialMediaIcons-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -145px;
    top: 130px;
    width: 210px;
    z-index: 1100;
}
  
}
/* SocialMediaIcons Section CSS END Here */


/* 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;
  }
}

/* Software Section End */

@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;
}
}


/* Navbar Design in mobile response Start */
@media only screen and (max-width: 575px) {
  #nav-bar li .nav-link {
    background: linear-gradient(to right, #543800, #38301e);
    width: 79vw;
    height: 50px;
    border: none;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
    border-radius: 0 25px;
    position: relative;
    transition: all .6s;
    margin: 0px 0px 8px 0px;
    display: flex;
    justify-content: center;
    border: 3px solid white;
}
  #nav-bar li .nav-link:hover{
    border-radius: 25px 0;
  }
  #nav-bar li .nav-link::before{
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #240b36, #543800);
	width: 100%;
	height: 100%;
	/* filter: blur(22px); */
	transform: scale(0.9, 0.8) translateY(20px);
	z-index: -1;
	opacity: 0;
	transition: all 0.6s;
  margin: 0px 0px 2px 0px;
  }
  #nav-bar li .nav-link:hover::before{
    opacity: 1;
  }
}

@media only screen and (max-width: 550px) {
  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
}
}
/* Navbar Design in mobile response End */


/* Project section in home page Start */
.slider_container{
  background: linear-gradient(45deg, #d4e7de, #c8e4d7);
}
/* Project section in home page End */


/* Text Justify */
.justify{
  text-align: justify;
}
/* Text Justify */

/* New Dropdown Start */
/* New Add */
.dropdown-menu {
  display: none; /* Hide dropdown by default */
  position: absolute;
  background-color: #fff; /* Background color */
  border: 1px solid #ddd; /* Border */
  z-index: 1000; /* Positioning */
  
    border: 7px solid #e9b545;

}

.dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}

/* Set dropdown menu width to 80% of the screen */
.dropdown-menu {
  position: fixed !important; 
  width: 70vw; /* 80% of the viewport width */
  /* left: auto;
  right: auto;  */
  display: grid ;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  gap: 20px;
}

/* Optional: Adjust dropdown item styles if needed */
.dropdown-item {
  width: 100%; /* Ensure dropdown items take full width of the dropdown */
}
.posabs123{
  display: flex;
  justify-content: center;
  position: absolute;
}
.dropdown:hover .dropdown-menu {
  display: grid;
  padding: 20px;
  width: 97%;
  left: 0;
  margin: 0px 20px;
}
.dropdown1:hover .dropdown-menu {
  display: contents;
  /* padding: 0px; */
  width: auto;
  max-height: 400px;
  /* overflow-x: scroll; */
  margin: 0px ;
}


.dropdown1 .dropdown-menu.show {
  display: none; /* Show when active */
}



.dropdown-menu {
  display: none; /* Hide by default */
  /* max-height: 400px; */
  /* overflow-y: auto; Enable scrolling */
  margin: 0; /* Remove margin */
}
.dropdown-menu.show {
  display: block; /* Show when active */
}



/* New */
.dropdown-buttons {
  display: flex;
  flex-direction: column;
  width: 23%;
}

.dropdown-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  text-align: left;
}

.dropdown-button.active {
  background-color: #007bff; /* Change this color as needed */
  color: white;
}

.dropdown-item-group {
  display: none;
}

.dropdown-item-group.active1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--gold-col);
  row-gap: 66px;
}
.dropdown:hover .dropdown-menu{
  display: none;
}
@media(min-width:968px){
  .dropdown:hover .dropdown-menu {
    display: flex;
    padding: 30px 20px;
    width: 97%;
    left: 0;
    margin: 0px 20px;
    z-index: 999;
    /* display: block; */
    /* max-height: 90vh;
        overflow-y: scroll; */
  }
}
.dropdown-button {
  color: black;
  font-size: 20px;
  font-weight: 700;
  position: relative; /* Positioning context for ::after */
  margin-bottom: 5px;
}
.dropdown-button:hover {
  color: var(--gold-col);
}
.dropdown-button::after {
  content: ''; /* Required for ::after to display */
  position: absolute; /* Position it relative to the button */
  left: 0;
  right: 0;
  bottom: 4px; /* Adjust this value to create space below the button */
  height: 1px; /* Set height for the "line" */
  background-color: #ccc; /* Set color for the line */
}

.dropdown-button:last-child::after {
  display: none; /* Hide the line for the last button */
}

@media(max-width:992px){
  /* CSS rules for tablet devices */
  .dropdown-menu {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px;
  }
  .dropdown1 .dropdown-menu.show {
    display: none;
}
.dropdown1:hover .dropdown-menu {
    display: contents;
    /* padding: 0px; */
    width: auto;
    max-height: 400px;
    /* overflow-x: scroll; */
    margin: 0px;
}
.dropdown-item {
  color: #ffffff !important;
}
}
@media (min-width: 1023px) and (max-width: 1366px)  {
  /* CSS rules for tablet devices */
  .dropdown-menu {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px;
  }
}

.dropdown-menu {
  display: none;
  /* max-height: 400px; */
  margin: 0;
}


/* Social Media Start */
.Social-media{
  display: flex;
  justify-content: center;
}
.Social-media a{
  display: flex;
    background: #fff;
    height: 39px;
    width: 35px;
    margin: 15px 9px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0, 124, 196, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 124, 196, 0);
    transition: transform 0.5s;
    padding: 0px 8px;
}
.Social-media a i{
  font-size: 22px;
  color:var(--gold-col);
  transition: transform 0.5s;
}
.Social-media a:hover{
  box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),
              inset -4px -4px 6px -1px rgba(255,255,255,0.7),
                    -0.5px -0.5px 0px -1px rgba(255,255,255,1),
                    0.5px 0.5px 0px rgba(0,0,0,0.15),
                    0px 12px 10px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0, 124, 196, 0.1);
  transform: translateY(2px);
}
.Social-media a:hover i{
  transform: scale(0.90);
}
.Social-media a:hover .fa-facebook{
  color: #3b5998;
}
.Social-media a:hover .fa-twitter{
  color: #00acee;
}
.Social-media a:hover .fa-whatsapp{
  color: #4fce5d;
}
.Social-media a:hover .fa-instagram{
  color: #f14843;
}
.Social-media a:hover .fa-youtube{
  color: #f00;
}
/* Social Media End */

.footer-links .strong-footer{
  line-height: 23px;
}
/* .footer-links{
  border-right: 1px solid #d0d0ce;
} */

.disflex22{
  display: flex;
  column-gap: 10px;
}
.disflex22 img{
  width: 33%;
}
.footer-middle-menu{
  border-top: 1px solid #d0d0ce;
  margin-top: 30px;
  text-align: center;
}
.footer-middle-menu ul{
  padding-top: 20px;
}
.footer-middle-menu ul li a{
  border-right: 1px solid #d0d0ce;
  padding: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-family: Oxanium, sans-serif;
}
.footer-middle-menu ul li{
  display: inline-block;
}
.credits p{
  color: white;
  margin-top: 8px;
  text-align: justify;
  /* font-size: 0.8em; */
}


/* Dropdown */
/* .dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
} */

/* Custom styles for the multi-level dropdown */
/* New */
.dropdown-menu{
  position: relative;
}

  .dropdown-submenu {
    position: relative;
  }
  
  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }

.dropdown-menu.show {
  display: contents !important;
}


@media only screen and (max-width: 575px) {
  nav ul.active {
    top: 0px;
    left: inherit;
    width: 100vw;
    position: absolute;
    margin-top: 18%;
    right: 0px;
}
}
/* .totalwid{
  display: flex;
} */
.left-side-bar {
  display: flex;
  flex-direction: column;
  width: 23%;
  padding-right: 30px;
  /*border-right: 2px solid gray;*/
    border-right: 3px solid #e9b545;
}
.right-side-bar {
  width: 75%;
}

.left-side-bar h4, .right-side-bar h4{
  font-size: 19px;
  font-weight: 700;
}
.right-side-bar a {
  font-family: Oxanium, sans-serif;
  margin-right: 0px;
  padding: 2px 0px;
  font-weight: 500;
  transition: transform 0.5s ease, font-weight 0.5s ease, text-decoration 0.5s ease; /* Smooth transition for transform, font-weight, and text-decoration */
}

.right-side-bar a:hover {
  transform: translateX(10px) scale(1.05); /* Move slightly to the right and scale up */
  text-decoration: underline;
  font-weight: 700;
  box-shadow: none !important;
}

.right-side-bar a i{
  margin-right: 10px;
}

.dropdown-iconsize{
  width:10%;
  margin-right: 10px;
}
.dropdown-item:focus, .dropdown-item:hover{
  background-color: transparent !important;
}
/* Default styles */
.dropdown-submenu .dropdown-menu {
  display: none; /* Hidden by default */
  transition: all 0.3s ease;
}

/* Style when sub-dropdown is opened */
.dropdown-menu.show .dropdown-submenu {
  display: block;
    border-bottom: 2px solid rgb(255 255 255 / 30%);
    background: black;
}

/* Change the color of the clicked sub-dropdown */
.dropdown-submenu > a.active {
  color: #916711 !important; /* Change the color to blue */
  font-weight: 700;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: transparent !important;
}
.fixed-top {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.dropdown-iconsizemob{
  width: 7%;
  margin-right: 10px;
}

@media(max-width:768px){
  .dropdown-item{
    width: 76vw !important;
    font-size: 13px !important;
  }
  .fontmob li a{
    font-size: 10px !important;
    padding: 2px 16px;
  }
  .disflex22 img {
    width: 27%;
}
.Social-media {
  display: flex;
  justify-content: left;
}
}




.dropdown-item {
  color: #000 !important;
}

@media (max-width: 992px) {
  .dropdown-item {
      color: #fff !important;
  }
}
/* New Dropdown End */

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: .3s;
  display: inline-block;
  line-height: 21.2px;
  font-family: Oxanium, sans-serif;
  text-decoration: none;
  font-size: 15px;
}
body{
  font-family: Oxanium, sans-serif;
}

#footer .copyright, #footer .footer-top .footer-contact p, #footer .footer-top h4, .btn .btn-primary, .footer-links p, .pricing-card .features li, .pricing-card .heading p {
  font-family: Oxanium, sans-serif;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Oxanium, sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color, inherit);
  font-family: Oxanium, sans-serif;
}

@media (max-width: 35em) {
  header {
      padding: 1rem 0rem;
  }

}

.dropdown-item:hover {
  box-shadow: none !important;
  cursor: pointer;
}

#footer .copyright, #footer .footer-top .footer-contact p, #footer .footer-top h4, .btn .btn-primary, .footer-links p, .navbar a, .navbar a:focus, .pricing-card .features li, .pricing-card .heading p {
  font-family: Oxanium, sans-serif;
}



/* nav ul.active {
  left: 0;
} */
@media only screen and (max-width: 991px) {
  .navbar ul {
      position: fixed;
      left: -200vw;
      margin-top: 10%;
      /* margin-top: 700px; */
      width: 80vw;
      /* height: calc(100vh - 73.6px); */
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* justify-content: space-around; */
      transition: 1s;
      gap: 0;
  }
  #nav-bar li .nav-link {
    background: linear-gradient(to right, #543800, #38301e);
    width: 79vw;
    height: 50px;
    border: 3px solid #fff;
    font-size: 1.6em;
    color: #fff;
    cursor: pointer;
    border-radius: 0 25px;
    position: relative;
    transition: .6s;
    margin: 0 0 8px;
    display: flex;
    justify-content: center;
}
.credits p {
  color: white;
  margin-top: 8px;
  text-align: justify;
  font-size: 0.8em;
}
}
a {
  color: #fff;
  letter-spacing: 0;
  /*cursor: none;*/
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}

.box22{
  height: 100%;
}

@media (min-width: 968px) {
  .dropdown-about:hover .dropdown-menu {
      position: absolute !important;
      width: auto;
      left: 0;
  }
}

/* ---------------for font responsive on 14 nov 2k24-----------------  */
@media screen and (max-width: 600px) {
  .content-about h3 {
      position: relative;
      color: white;
      font-family: 'Caprasimo', cursive;
      font-size: 45px !important;
      font-weight: 400;
  }
  .content-about h5 {
    position: relative;
    color: white;
    font-family: 'Caprasimo', cursive;
    font-size: 20px !important;
}


.section-heading6 h3 {
  color: white;
  /* font-family: 'Caprasimo', cursive; */
  font-family: Oxanium, sans-serif;
  font-size: 45px !important;
  position: relative;
}
.box22 > .icon22 > .info > h3.title {
  color: rgb(9, 8, 8);
  font-family: Oxanium, sans-serif;
  font-size: 28px !important;
  position: relative;
}
.box22 > .icon22 > .info > p {
  font-family: Oxanium, sans-serif;
  font-size: 17px !important;
  color: #fff;
  line-height: 1.5em;
  margin: 20px;
}
.box22 > .icon22 > .info > .more a {
  font-family: Oxanium, sans-serif;
  font-size: 13px !important;
  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;
}
.rbd-review-slider .rbd-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px !important;
}

.rbd-review-slider .rbd-review {
  padding: 6px 15px !important;
  /* font-size: 18px; */
}
.rbd-review-slider .rbd-review-meta {
  font-size: 17px !important;
}

.container21 .card21 .content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr);
}
.container21 .card21 .content p {
  font-size: 2rem !important;
}

/* .container21 .card21 .content {
  position: absolute;
  top: 252px;
  width: 100%;
  height: auto !important;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
} */

.container21 .card21:hover .content {
  top: 111px;
  height: 561px;
}
.container21 .card21 .img-box {
  position: absolute;
  top: 20px;
  /* width: 300px; */
  /* width: 237px; */
  height: 190px;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}
/* .container21 .card21 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
  max-width: 100%;
  height: 400px !important;
  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: 565px;
}
.container21 .card21 .content a {
  font-size: 1.9rem !important;
  padding: 10px 20px !important;
}
}

.rbd-review-slider .rbd-review-meta {
  font-size: 18px !important;
  color: #565656;
  margin-top: 12px;
  text-align: center;
}







/* cookies  */
/* Unique Accept Cookies Styling Start */
.unique-cookie-popup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #536576;
  color: white;
  padding: 15px;
  z-index: 9999;
}

.unique-cookie-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.unique-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.unique-cookie-content {
  flex: 1 1 75%;
}

.unique-cookie-font p {
  color: white;
  font-size: 18px;
  text-align: justify;
  margin: 0;
}

.unique-text-link {
  color: #ffd700;
  text-decoration: underline;
}

.unique-cookie-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


.unique-cookie-btn {
  min-width: 10rem;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.accept-all-btn {
  background-color: #28a745;
  color: white;
}

.essential-btn {
  background-color: #17a2b8;
  color: white;
}

.decline-btn {
  background-color: #dc3545;
  color: white;
}



@media (max-width: 600px) {
  .unique-cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
  .unique-cookie-font p {
      font-size: 8px !important;
  }

  .unique-cookie-btn {
      /* font-size: 14px; */
      font-size: 1rem ;
  }
  .unique-cookie-btn {
    min-width: 8rem;
    padding: 6px 12px !important;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.unique-cookie-popup h1 {
    font-size: calc(1.5rem + 1vw);
}
.unique-text-link {
  color: #ffd700;
  text-decoration: underline;
  font-size: 8px;
}

}

@media only screen and (min-width: 601px) and (max-width: 950px) {
  .unique-cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
  .unique-cookie-font p {
      font-size: 16px;
  }

  .unique-cookie-btn {
      font-size: 15px;
  }
  .unique-cookie-popup h1 {
    font-size: calc(3.375rem + 1.5vw);
}
}
/* Unique Accept Cookies Styling End */



.newww1 ul li{
  list-style-type: disc;
}
.bgpri{
  background-color: #fff9e9;
}
.martopneww1{
    padding-top:150px !important;
}
.anch1 a{
    color:gold;
}

.newww1 p{
    margin-bottom:8px;
}
.newww1 h4{
    margin-top:10px;
}
