@charset "UTF-8";


:root {
  --main-font-family: "Open Sans", sans-serif;
  --heading-font-family: "Jost", sans-serif;
  --monoton-font-family: "Monoton", cursive;
  --main-color: #9900ff;
  --optional-color: #3E019A;
  --white-color: #ffffff;
  --black-color: #14042C;
  --paragraph-color: #646464;
  --font-size: 16px;
  --transition: .6s;
  --btn-gradient-color: radial-gradient(circle, #9900ff, #7543c0, #9900ff, #9900ff, #7543c0);
}
html {
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--main-font-family);
  font-size: var(--font-size);
  overflow-x: hidden;
  background: unset;
}

a {
  text-decoration: none;
  transition: var(--transition);
  color: var(--black-color);
  display: inline-block;
}
a:hover, a:focus {
  color: var(--main-color);
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--paragraph-color);
  font-weight: 500;
  font-family: var(--main-font-family);
  font-size: var(--font-size);
}
p:last-child {
  margin-bottom: 0;
}

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-75 {
  padding-bottom: 75px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--black-color);
  font-family: var(--heading-font-family);
  font-weight: 900;
}
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default Btn CSS
=================================================*/
.default-btn {
  padding: 15.8px 35px;
  text-align: center;
  color: var(--black-color) !important;
  font-size: var(--font-size);
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  z-index: 0;
  background: var(--btn-gradient-color);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--heading-font-family);
}
.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background-color: var(--main-color);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.default-btn:hover {
  color: var(--white-color);
}
.default-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  max-width: 630px;
  margin: 0 auto 45px;
  text-align: center;
  position: relative;
}
.section-title .section-bg-text {
  color: #F8F7F8;
  font-size: 95px;
  font-family: var(--monoton-font-family);
  font-weight: 400;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  line-height: 0;
}
.section-title span {
    font-size: calc(var(--font-size) + 4px);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.section-title h2 {
  font-size: 42px;
  margin-bottom: 0;
  line-height: 1.4;
  position: relative;
}
.section-title h2 b {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title h2 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-title p {
  margin-top: 15px;
}
.section-title.section-style-two {
  margin-top: 30px;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  z-index: 999999;
  background-color: var(--white-color);
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  right: 0;
}
.preloader .lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.preloader .lds-spinner div::after {
  content: " ";
  display: block;
  position: absolute;
  top: 5px;
  left: 35px;
  width: 5px;
  height: 20px;
  border-radius: 20%;
  background: var(--main-color);
}
.preloader .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.preloader .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.preloader .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.preloader .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.preloader .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.preloader .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.preloader .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.preloader .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.preloader .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.preloader .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.preloader .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.preloader .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("data:image/webp;base64,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");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
}
.main-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.main-banner-content {
  margin-top: -120px;
  position: relative;
  z-index: 1;
}
.main-banner-content span {
  font-size: var(--font-size);
  font-weight: 600;
  color: var(--optional-color);
  display: block;
  margin-bottom: 20px;
  font-family: var(--heading-font-family);
}
.main-banner-content h1 {
  font-size: 75px;
  margin-bottom: 0;
  position: relative;
}
.main-banner-content h1 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-banner-content p {
  margin-top: 18px;
  margin-bottom: 0;
  max-width: 825px;
}

.main-banner-image {
  position: relative;
  z-index: 1;
  text-align: center;
}
.main-banner-image .banner-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  right: 0;
  margin: auto;
  z-index: -1;
}
.main-banner-image .banner-circle img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.banner-shape-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  animation: moveleftbounce 1s linear infinite;
  z-index: -1;
}

.banner-shape-2 {
  position: absolute;
  bottom: 25px;
  right: -50px;
  animation: animationFramesOne 10s infinite linear;
  z-index: -1;
}

.banner-dot-shape-1 {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateY(-20%) translateX(-50%);
  animation: animationFramesOne 25s infinite linear;
  z-index: -1;
}

.banner-dot-shape-2 {
  position: absolute;
  top: 15%;
  left: 5%;
  transform: translateY(-15%) translateX(-5%);
  animation: animationFramesOne 10s infinite linear;
  z-index: -1;
}

.banner-dot-shape-3 {
  position: absolute;
  bottom: 10%;
  left: 35%;
  transform: translateY(-10%) translateX(-35%);
  animation: animationFramesOne 20s infinite linear;
  z-index: -1;
}

.banner-dot-shape-4 {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  animation: animationFramesOne 15s infinite linear;
  z-index: -1;
}

.banner-dot-shape-5 {
  position: absolute;
  top: 20%;
  right: 10%;
  transform: translateY(-20%) translateX(-10%);
  animation: animationFramesOne 20s infinite linear;
  z-index: -1;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-image: url("data:image/webp;base64,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");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.partner-card a {
  display: block;
  position: relative;
}
.partner-card a img {
  transition: var(--transition);
  margin: auto;
  width: auto !important;
}


/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-content {
  padding-left: 10px;
  position: relative;
  z-index: 1;
}
.about-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.about-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
}
.about-content h3 b {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-content .about-btn {
  margin-top: 25px;
}

.about-shape-1 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 50px;
  z-index: -1;
}

.about-wrap-image {
  overflow: hidden;
  border-radius: 15px;
}
.about-wrap-image img {
  border-radius: 20px;
  transition: var(--transition);
}
.about-wrap-image:hover img {
  transform: scale(1.1) !important;
  filter: blur(2px);
}

.about-wrap-content {
  position: relative;
  z-index: 1;
  padding-left: 45px;
}
.about-wrap-content .about-bg-text {
  color: #F8F7F8;
  font-size: 95px;
  font-family: var(--monoton-font-family);
  font-weight: 400;
  position: absolute;
  top: 0;
  z-index: -1;
  line-height: 0;
}
.about-wrap-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.about-wrap-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
}
.about-wrap-content h3 b {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-wrap-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-inner-box {
  margin-top: 50px;
}

.single-about-card {
  margin-bottom: 25px;
}
.single-about-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-about-card p {
  margin-bottom: 0;
}
.single-about-card .about-btn {
  margin-top: 25px;
}
.single-about-card .card-image {
  overflow: hidden;
  border-radius: 15px;
}
.single-about-card .card-image img {
  border-radius: 20px;
  transition: var(--transition);
}
.single-about-card .card-image:hover img {
  transform: scale(1.1) !important;
  filter: blur(2px);
}

.about-circle-shape {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) translateX(-5%);
}
.about-circle-shape img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.services-area.with-radius {
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 15px;
  background-color: var(--black-color);
  overflow: hidden;
}
.services-area .container-fluid {
  overflow: hidden;
  inset-inline-start: calc((100% - 1320px) / 2);
  position: relative;
}
.services-area.bg-with-14042C-color {
  background-color: var(--black-color);
  border-radius: 0 0 100px 100px;
}
.services-area.bg-with-14042C-color .section-title h2 {
  color: var(--white-color);
}
.services-area.bg-with-14042C-color .section-title p {
  color: #CDC4D9;
}
.services-area.margin-zero {
  background-color: var(--black-color);
}

.services-area-style-two {
  background-color: var(--black-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.services-area-style-two .section-title h2 {
  color: var(--white-color);
}
.services-area-style-two .section-title p {
  color: #CDC4D9;
}
.services-area-style-two .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.services-section-content {
  position: relative;
}
.services-section-content .services-bg-text {
  color: #24153A;
  font-size: 95px;
  font-family: var(--monoton-font-family);
  font-weight: 400;
  position: absolute;
  top: 0;
  z-index: -1;
  line-height: 0;
}
.services-section-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.services-section-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
  color: var(--white-color);
}
.services-section-content h3 b {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-section-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services-section-content p {
  color: #CDC4D9;
}
.services-section-content .services-section-btn {
  margin-top: 25px;
}

.services-item {
  background-color: #2E2141;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition);
}
.services-item .services-image {
  overflow: hidden;
  border-radius: 15px;
}
.services-item .services-image a {
  display: block;
}
.services-item .services-image a img {
  border-radius: 15px;
  transition: var(--transition);
}
.services-item .services-content {
  padding: 30px 15px 20px;
}
.services-item .services-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.services-item .services-content h3 a {
  color: var(--white-color);
}
.services-item .services-content p {
  color: #CDC4D9;
  margin-bottom: 0;
}
.services-item .services-content .services-btn {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  margin-top: 20px;
  font-family: var(--heading-font-family);
  transition: var(--transition);
  position: relative;
}
.services-item .services-content .services-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--btn-gradient-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.services-item:hover .services-image a img {
  transform: scale(1.1);
  filter: blur(2px);
}
.services-item:hover .services-content h3 a {
  color: var(--main-color);
}
.services-item:hover .services-content .services-btn {
  padding-left: 25px;
}
.services-item:hover .services-content .services-btn::before {
  opacity: 1;
  visibility: visible;
}

.services-slides .owl-item.active.center .services-item {
  transition: var(--transition);
  top: 20px;
}
.services-slides.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: #D1CFDB;
  transition: var(--transition);
  border-radius: 50%;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0 5px;
}
.services-slides.owl-theme .owl-dots .owl-dot:hover span, .services-slides.owl-theme .owl-dots .owl-dot.active span {
  background: var(--btn-gradient-color);
  width: 30px;
  border-radius: 30px;
}
.services-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px;
}

.services-slides-two.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: #D1CFDB;
  transition: var(--transition);
  border-radius: 50%;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0 5px;
}
.services-slides-two.owl-theme .owl-dots .owl-dot:hover span, .services-slides-two.owl-theme .owl-dots .owl-dot.active span {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  width: 30px;
  border-radius: 30px;
}
.services-slides-two.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.services-all-btn {
  text-align: center;
  margin-top: 15px;
}

.services-shape-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  transform: translateY(-20%) translateX(-5%);
  animation: moveleftbounce 2s linear infinite;
}

.services-shape-2 {
  position: absolute;
  top: 10%;
  right: 5%;
  transform: translateY(-20%) translateX(-5%);
}
.services-shape-2 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-details-desc {
  max-width: 1050px;
  margin: auto;
}
.services-details-desc .article-services-image {
  overflow: hidden;
  border-radius: 15px;
}
.services-details-desc .article-services-image img {
  border-radius: 15px;
  transition: var(--transition);
  width: 100%;
}
.services-details-desc .article-services-image:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}
.services-details-desc .article-services-content {
  padding-top: 35px;
  padding-left: 45px;
  padding-right: 35px;
}
.services-details-desc .article-services-content h3 {
  font-size: 42px;
  margin-bottom: 18px;
}
.services-details-desc .article-services-content .list {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.services-details-desc .article-services-content .list li {
  list-style-type: none;
  margin-bottom: 20px;
  color: var(--paragraph-color);
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}
.services-details-desc .article-services-content .list li:first-child {
  padding-left: 0;
}
.services-details-desc .article-services-content .list li:last-child {
  margin-bottom: 0;
}
.services-details-desc .article-services-content .list li i {
  position: absolute;
  left: 0;
  top: 2.8px;
  font-size: 18px;
  color: #A66BFF;
}
.services-details-desc .article-services-content .list li h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0;
}
.services-details-desc .article-services-middle-image {
  overflow: hidden;
  border-radius: 15px;
  margin-top: 35px;
}
.services-details-desc .article-services-middle-image img {
  border-radius: 15px;
  transition: var(--transition);
}
.services-details-desc .article-services-middle-image:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}
.services-details-desc .article-services-quote {
  background-color: #F5F5F5;
  padding: 30px 30px 30px 90px;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.services-details-desc .article-services-quote i {
  color: #CFC3E2;
  font-size: 65px;
  position: absolute;
  left: 45px;
  top: 10px;
  z-index: -1;
  animation: moveleftbounce 2s linear infinite;
}
.services-details-desc .article-services-quote p {
  font-size: 22px;
  font-weight: 400;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  margin-bottom: 0;
}
.services-details-desc .article-services-quote .quote-shape {
  position: absolute;
  right: -45px;
  bottom: -45px;
  max-width: 100px;
}
.services-details-desc .article-services-quote .quote-shape img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.services-details-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  z-index: -1;
}

/*================================================
Choose Area CSS
=================================================*/
.choose-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.choose-area.bg-with-F5F5F5-color {
  background-color: #F5F5F5;
  border-radius: 100px 100px 0 0;
}

.single-choose-card {
  margin-bottom: 25px;
}
.single-choose-card .choose-image {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.single-choose-card .choose-image a {
  display: block;
}
.single-choose-card .choose-image .number {
  position: absolute;
  right: -35px;
  top: -30px;
  font-size: 100px;
  font-weight: 400;
  font-family: var(--monoton-font-family);
  color: #E7E5E9;
}
.single-choose-card .choose-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-choose-card .choose-content h3 a {
  color: var(--black-color);
}
.single-choose-card:hover .choose-content h3 a {
  color: var(--main-color);
}

.choose-shape-1 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 50px;
  z-index: -1;
}

.choose-shape-2 {
  position: absolute;
  left: 200px;
  margin: auto;
  top: -300px;
  z-index: -1;
}

/*================================================
Video Area CSS
=================================================*/
.video-area {
  position: relative;
  z-index: 1;
  margin-bottom: -110px;
}

.video-view-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.video-view-content .video-image {
  overflow: hidden;
  border-radius: 15px;
}
.video-view-content .video-image img {
  transition: var(--transition);
  border-radius: 15px;
}
.video-view-content .video-btn {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 110px;
  background-color: var(--black-color);
  border-radius: 50%;
  color: var(--optional-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 65px;
  transition: var(--transition);
  border: 2px solid #FB64BF;
}
.video-view-content .video-btn i {
  transition: var(--transition);
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-view-content .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #FB64BF;
  animation: ripple 2s linear infinite;
}
.video-view-content .video-btn:hover {
  background-color: var(--optional-color);
}
.video-view-content .video-btn:hover i {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-view-content:hover .video-image {
  overflow: hidden;
}
.video-view-content:hover .video-image img {
  transform: scale(1.1);
  filter: blur(5px);
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*================================================
Projects Area CSS
=================================================*/
.projects-area {
  overflow: hidden;
  position: relative;
}
.projects-area.with-black-background {
  background-color: var(--black-color);
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 15px;
  overflow: hidden;
  padding-top: 200px;
}
.projects-area.with-black-background .section-title h2 {
  color: var(--white-color);
}
.projects-area.with-black-background .section-title p {
  color: #CDC4D9;
}
.projects-area.with-black-background .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.projects-area.style-two-area .container-fluid {
  overflow: hidden;
  inset-inline-start: calc((100% - 1320px) / 2);
  position: relative;
}

.projects-item {
  background-color: #2E2141;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 25px;
}
.projects-item .projects-image {
  overflow: hidden;
  border-radius: 15px;
}
.projects-item .projects-image a {
  display: block;
}
.projects-item .projects-image a img {
  border-radius: 15px;
  transition: var(--transition);
}
.projects-item .projects-content {
  padding: 30px 20px 20px;
}
.projects-item .projects-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 18px;
}
.projects-item .projects-content h3 a {
  color: var(--white-color);
}
.projects-item .projects-content .projects-btn {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: var(--heading-font-family);
  transition: var(--transition);
  position: relative;
}
.projects-item .projects-content .projects-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--btn-gradient-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.projects-item:hover .projects-image a img {
  transform: scale(1.1);
  filter: blur(2px);
}
.projects-item:hover .projects-content h3 a {
  color: var(--main-color);
}
.projects-item:hover .projects-content .projects-btn {
  padding-left: 25px;
}
.projects-item:hover .projects-content .projects-btn::before {
  opacity: 1;
  visibility: visible;
}
.projects-item.bg-F2F1F3 {
  background-color: #F2F1F3;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.projects-item.bg-F2F1F3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(1.5);
}
.projects-item.bg-F2F1F3 .projects-content h3 a {
  color: var(--black-color);
}
.projects-item.bg-F2F1F3 .projects-content .projects-btn {
  background: var(--main-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projects-item.bg-F2F1F3 .projects-content .projects-btn::before {
  background: var(--main-color);
  opacity: 0;
  visibility: hidden;
}
.projects-item.bg-F2F1F3:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.projects-item.bg-F2F1F3:hover .projects-content h3 a {
  color: var(--white-color);
}
.projects-item.bg-F2F1F3:hover .projects-content .projects-btn {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projects-item.bg-F2F1F3:hover .projects-content .projects-btn::before {
  background: var(--btn-gradient-color);
  opacity: 1;
  visibility: visible;
}

.projects-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.projects-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: transparent;
  color: #A66BFF;
  border: 2px solid #A66BFF;
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  font-size: 35px;
}
.projects-slides.owl-theme .owl-nav [class*=owl-] i {
  position: relative;
  left: -2px;
  top: 2px;
}
.projects-slides.owl-theme .owl-nav [class*=owl-].owl-next i {
  position: relative;
  left: 2px;
  top: 2px;
}
.projects-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}

.projects-bg-shape-1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.projects-shape-1 {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-40%) translateX(-10%);
  animation: animationFramesOne 10s infinite linear;
}

.projects-shape-2 {
  position: absolute;
  bottom: 2%;
  left: 28%;
  transform: translateY(-2%) translateX(-28%);
  animation: moveleftbounce 1s linear infinite;
}

.projects-shape-3 {
  position: absolute;
  top: 35%;
  right: 5%;
  transform: translateY(-35%) translateX(-5%);
}
.projects-shape-3 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.single-projects-item {
  margin-bottom: 25px;
  position: relative;
}
.single-projects-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
  visibility: hidden;
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  border-radius: 20px;
  z-index: 1;
}
.single-projects-item .projects-image {
  overflow: hidden;
  border-radius: 20px;
}
.single-projects-item .projects-image a {
  display: block;
}
.single-projects-item .projects-image a img {
  border-radius: 20px;
  transition: var(--transition);
}
.single-projects-item .projects-content {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  padding: 30px;
  padding-bottom: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9;
}
.single-projects-item .projects-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.single-projects-item .projects-content h3 a {
  color: var(--white-color);
}
.single-projects-item .projects-content h3 a:hover {
  color: var(--black-color);
}
.single-projects-item .projects-content .projects-btn {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: var(--heading-font-family);
  transition: var(--transition);
  position: relative;
}
.single-projects-item .projects-content .projects-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--btn-gradient-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-projects-item .projects-content .projects-btn:hover {
  padding-left: 25px;
}
.single-projects-item .projects-content .projects-btn:hover::before {
  opacity: 1;
  visibility: visible;
}
.single-projects-item:hover::before {
  margin: 10px;
  opacity: 1;
  visibility: visible;
}
.single-projects-item:hover .projects-image a img {
  transform: scale(1.1);
  filter: blur(2px);
}
.single-projects-item:hover .projects-content {
  opacity: 1;
  visibility: visible;
  padding-bottom: 30px;
}

.projects-section-content {
  position: relative;
}
.projects-section-content .projects-bg-text {
  color: #F7F7F8;
  font-size: 95px;
  font-family: var(--monoton-font-family);
  font-weight: 400;
  position: absolute;
  top: 0;
  z-index: -1;
  line-height: 0;
}
.projects-section-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.projects-section-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
}
.projects-section-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.projects-section-content p {
  margin-bottom: 0;
}
.projects-section-content .projects-section-btn {
  margin-top: 25px;
}

.projects-slides-two.owl-theme .owl-nav {
  margin-top: 10px;
}
.projects-slides-two.owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: transparent;
  color: #A66BFF;
  border: 2px solid #A66BFF;
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  font-size: 35px;
}
.projects-slides-two.owl-theme .owl-nav [class*=owl-] i {
  position: relative;
  left: -2px;
  top: 2px;
}
.projects-slides-two.owl-theme .owl-nav [class*=owl-].owl-next i {
  position: relative;
  left: 2px;
  top: 2px;
}
.projects-slides-two.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}

/*================================================
Projects Details Area CSS
=================================================*/
.projects-details-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.projects-details-desc {
  max-width: 1050px;
  margin: auto;
}
.projects-details-desc .article-projects-with-info .projects-info-image {
  position: relative;
}
.projects-details-desc .article-projects-with-info .projects-info-image img {
  border-radius: 25px;
}
.projects-details-desc .article-projects-with-info .projects-info-image .info-shape {
  position: absolute;
  left: -55px;
  bottom: -50px;
}
.projects-details-desc .article-projects-with-info .projects-info-image .info-shape img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.projects-details-desc .article-projects-with-info .projects-info-content {
  padding-left: 20px;
}
.projects-details-desc .article-projects-with-info .projects-info-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.projects-details-desc .article-projects-with-info .projects-info-content h3 {
  font-size: 42px;
  margin-bottom: 0;
  line-height: 1.4;
  position: relative;
}
.projects-details-desc .article-projects-with-info .projects-info-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.projects-details-desc .article-projects-with-info .projects-info-content .info-list {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
  display: inline-block;
}
.projects-details-desc .article-projects-with-info .projects-info-content .info-list li {
  font-family: var(--heading-font-family);
  font-weight: 400;
  color: var(--paragraph-color);
  list-style-type: none;
  margin-bottom: 10px;
  display: block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: var(--white-color);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
}
.projects-details-desc .article-projects-with-info .projects-info-content .info-list li:last-child {
  margin-bottom: 0;
}
.projects-details-desc .article-projects-with-info .projects-info-content .info-list li span {
  color: var(--optional-color);
  font-weight: 600;
  margin-bottom: 0;
}
.projects-details-desc .article-projects-content {
  padding-top: 35px;
  padding-left: 45px;
}
.projects-details-desc .article-projects-content .content h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 18px;
}
.projects-details-desc .article-projects-content .content p {
  margin-bottom: 0;
}
.projects-details-desc .article-projects-content .image {
  overflow: hidden;
  border-radius: 15px;
}
.projects-details-desc .article-projects-content .image img {
  border-radius: 15px;
  transition: var(--transition);
}
.projects-details-desc .article-projects-content .image:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}
.projects-details-desc .article-projects-content .projects-list {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
}
.projects-details-desc .article-projects-content .projects-list li {
  list-style-type: none;
  margin-bottom: 20px;
  color: var(--paragraph-color);
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}
.projects-details-desc .article-projects-content .projects-list li:first-child {
  padding-left: 0;
}
.projects-details-desc .article-projects-content .projects-list li:last-child {
  margin-bottom: 0;
}
.projects-details-desc .article-projects-content .projects-list li i {
  position: absolute;
  left: 0;
  top: 2.8px;
  font-size: 18px;
  color: #A66BFF;
}
.projects-details-desc .article-projects-content .projects-list li h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0;
}
.projects-details-desc .article-projects-image {
  overflow: hidden;
  border-radius: 15px;
  margin-top: 35px;
}
.projects-details-desc .article-projects-image img {
  border-radius: 15px;
  transition: var(--transition);
}
.projects-details-desc .article-projects-image:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}
.projects-details-desc .article-projects-quote {
  background-color: #F5F5F5;
  padding: 30px 30px 30px 90px;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.projects-details-desc .article-projects-quote i {
  color: #CFC3E2;
  font-size: 65px;
  position: absolute;
  left: 45px;
  top: 10px;
  z-index: -1;
  animation: moveleftbounce 2s linear infinite;
}
.projects-details-desc .article-projects-quote p {
  font-size: 22px;
  font-weight: 400;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  margin-bottom: 0;
}
.projects-details-desc .article-projects-quote .quote-shape {
  position: absolute;
  right: -45px;
  bottom: -45px;
  max-width: 100px;
}
.projects-details-desc .article-projects-quote .quote-shape img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.projects-details-desc .article-projects-text {
  padding-top: 35px;
  padding-left: 45px;
  padding-right: 30px;
}
.projects-details-desc .article-projects-text h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.projects-details-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  z-index: -1;
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonials-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.testimonials-section-content {
  padding-right: 35px;
}
.testimonials-section-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.testimonials-section-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
}
.testimonials-section-content h3 b {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials-section-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.testimonials-section-content .testimonials-btn {
  margin-top: 25px;
}

.testimonials-item .item-box {
  position: relative;
  border: 1px solid #F2F1F3;
  border-radius: 15px;
  padding: 30px 30px 30px 155px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.testimonials-item .item-box:last-child {
  margin-bottom: 0;
}
.testimonials-item .item-box img {
  position: absolute;
  left: 30px;
  top: 28px;
  max-width: 100px;
}
.testimonials-item .item-box h4 {
  font-size: var(--font-size);
  margin-bottom: 0;
  font-weight: 500;
  color: var(--optional-color);
}
.testimonials-item .item-box h4 span {
  font-weight: 400;
  color: var(--paragraph-color);
}
.testimonials-item .item-box:hover {
  border: 1px solid var(--white-color);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
}

.single-testimonials-card {
  margin-bottom: 25px;
}
.single-testimonials-card p {
  background-color: #F2F1F3;
  padding: 30px;
  border-radius: 25px 25px 25px 0;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--heading-font-family);
  color: var(--black-color);
}
.single-testimonials-card .info-item-box {
  position: relative;
  margin-top: 25px;
  padding-left: 72px;
}
.single-testimonials-card .info-item-box img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 55px;
}
.single-testimonials-card .info-item-box h3 {
  font-size: var(--font-size);
  margin-bottom: 0;
  font-weight: 500;
  color: var(--optional-color);
}
.single-testimonials-card .info-item-box h3 span {
  font-weight: 400;
  color: var(--paragraph-color);
}
.single-testimonials-card .info-item-box .rating-list {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 0;
}
.single-testimonials-card .info-item-box .rating-list li {
  list-style-type: none;
  margin-right: 2px;
  display: inline-block;
}
.single-testimonials-card .info-item-box .rating-list li:last-child {
  margin-right: 0;
}
.single-testimonials-card .info-item-box .rating-list li i {
  color: #FFC744;
  font-size: var(--font-size);
}

.testimonials-slides.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: #D1CFDB;
  transition: var(--transition);
  border-radius: 50%;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0 5px;
}
.testimonials-slides.owl-theme .owl-dots .owl-dot:hover span, .testimonials-slides.owl-theme .owl-dots .owl-dot.active span {
  background: var(--btn-gradient-color);
  width: 30px;
  border-radius: 30px;
}
.testimonials-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.testimonialsbg-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.blog-card {
  margin-bottom: 25px;
}
.blog-card .blog-image {
  overflow: hidden;
  border-radius: 15px;
}
.blog-card .blog-image a {
  display: block;
}
.blog-card .blog-image a img {
  border-radius: 15px;
  transition: var(--transition);
}
.blog-card .blog-content .date {
  display: inline-block;
  font-size: var(--font-size);
  font-weight: 500;
  font-family: var(--heading-font-family);
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid var(--white-color);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  color: var(--optional-color);
  transition: var(--transition);
}
.blog-card .blog-content h3 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: bold;
}
.blog-card .blog-content h3 a {
  color: var(--black-color);
}
.blog-card .blog-content p {
  margin-bottom: 0;
}
.blog-card .blog-content .blog-btn {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: var(--heading-font-family);
  transition: var(--transition);
  position: relative;
  margin-top: 20px;
}
.blog-card .blog-content .blog-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--btn-gradient-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.blog-card:hover .blog-image a img {
  transform: scale(1.1);
  filter: blur(2px);
}
.blog-card:hover .blog-content .date {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  color: var(--white-color);
}
.blog-card:hover .blog-content h3 a {
  color: var(--main-color);
}
.blog-card:hover .blog-content .blog-btn {
  padding-left: 25px;
}
.blog-card:hover .blog-content .blog-btn::before {
  opacity: 1;
  visibility: visible;
}

.blog-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.blog-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: transparent;
  color: #A66BFF;
  border: 2px solid #A66BFF;
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  font-size: 35px;
  position: absolute;
  left: -80px;
  top: 45%;
  transform: translateY(-45%);
}
.blog-slides.owl-theme .owl-nav [class*=owl-] i {
  position: relative;
  left: -2px;
  top: 2px;
}
.blog-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -80px;
}
.blog-slides.owl-theme .owl-nav [class*=owl-].owl-next i {
  position: relative;
  left: 2px;
  top: 2px;
}
.blog-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}

.blog-shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.blog-shape-1 img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.blog-grid-sorting {
  margin-bottom: 45px;
  text-align: end;
}
.single-blog-card {
  margin-bottom: 25px;
}
.single-blog-card .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.single-blog-card .blog-image a {
  display: block;
}
.single-blog-card .blog-image a img {
  border-radius: 15px;
  transition: var(--transition);
}
.single-blog-card .blog-image .date {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--heading-font-family);
  padding: 12px 25px;
  border-radius: 50px;
  color: var(--white-color);
  position: absolute;
  left: 15px;
  bottom: 15px;
  transition: var(--transition);
}
.single-blog-card .blog-content {
  margin-top: 25px;
}
.single-blog-card .blog-content h3 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: bold;
}
.single-blog-card .blog-content h3 a {
  color: var(--black-color);
}
.single-blog-card .blog-content p {
  margin-bottom: 0;
}
.single-blog-card .blog-content .blog-btn {
  color: var(--optional-color);
  font-weight: 600;
  font-family: var(--heading-font-family);
  transition: var(--transition);
  position: relative;
  margin-top: 15px;
}
.single-blog-card .blog-content .blog-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--optional-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-blog-card:hover .blog-image a img {
  transform: scale(1.1);
}
.single-blog-card:hover .blog-image .date {
  animation: bounce 1s;
}
.single-blog-card:hover .blog-content h3 a {
  color: var(--main-color);
}
.single-blog-card:hover .blog-content .blog-btn {
  padding-left: 25px;
}
.single-blog-card:hover .blog-content .blog-btn::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.blog-details-desc .article-image img {
  border-radius: 15px;
  transition: var(--transition);
}
.blog-details-desc .article-image:hover img {
  transform: scale(1.1);
}
.blog-details-desc .article-image .video-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--black-color);
  border-radius: 50%;
  color: var(--optional-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 45px;
  transition: var(--transition);
  border: 2px solid #FB64BF;
}
.blog-details-desc .article-image .video-btn i {
  transition: var(--transition);
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-details-desc .article-image .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 2px solid #FB64BF;
  animation: ripple 2s linear infinite;
}
.blog-details-desc .article-image .video-btn:hover {
  background-color: var(--optional-color);
}
.blog-details-desc .article-image .video-btn:hover i {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-details-desc .article-content .entry-list {
  padding: 0;
  margin-bottom: 18px;
}
.blog-details-desc .article-content .entry-list li {
  color: var(--black-color);
  font-size: var(--font-size);
  font-family: var(--heading-font-family);
  font-weight: 400;
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 25px;
}
.blog-details-desc .article-content .entry-list li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-content .entry-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 2.5px;
  background: var(--optional-color);
  transition: all ease 0.5s;
  border-radius: 50px;
}
.blog-details-desc .article-content .entry-list li a {
  color: var(--optional-color);
  font-weight: 500;
}
.blog-details-desc .article-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.blog-details-desc .article-content .list {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
}
.blog-details-desc .article-content .list li {
  list-style-type: none;
  margin-bottom: 20px;
  color: var(--paragraph-color);
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}
.blog-details-desc .article-content .list li:first-child {
  padding-left: 0;
}
.blog-details-desc .article-content .list li:last-child {
  margin-bottom: 0;
}
.blog-details-desc .article-content .list li i {
  position: absolute;
  left: 0;
  top: 2.8px;
  font-size: 18px;
  color: #A66BFF;
}
.blog-details-desc .article-content .list li h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0;
}
.blog-details-desc .article-content .block-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-desc .article-content .block-item img {
  transition: var(--transition);
  border-radius: 15px;
}
.blog-details-desc .article-content .block-item:hover img {
  transform: scale(1.1);
}
.blog-details-desc .article-content .article-quote {
  background-color: #F5F5F5;
  padding: 30px 30px 30px 90px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-desc .article-content .article-quote i {
  color: #CFC3E2;
  font-size: 65px;
  position: absolute;
  left: 45px;
  top: 10px;
  z-index: -1;
  animation: moveleftbounce 2s linear infinite;
}
.blog-details-desc .article-content .article-quote p {
  font-size: 22px;
  font-weight: 400;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  margin-bottom: 0;
}
.blog-details-desc .article-content .article-quote .quote-shape {
  position: absolute;
  right: -45px;
  bottom: -45px;
  max-width: 100px;
}
.blog-details-desc .article-content .article-quote .quote-shape img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.blog-details-desc .article-share {
  background-color: #F2F1F3;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}
.blog-details-desc .article-share .share-content h4 {
  margin-bottom: 0;
  font-size: var(--font-size);
  font-weight: bold;
}
.blog-details-desc .article-share .share-social {
  padding: 0;
  margin-bottom: 0;
}
.blog-details-desc .article-share .share-social li {
  display: inline-block;
  list-style-type: none;
  margin-right: 5px;
}
.blog-details-desc .article-share .share-social li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-share .share-social li a i {
  display: inline-block;
  transition: var(--transition);
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--white-color);
  color: #9B8DAC;
  font-size: 18px;
}
.blog-details-desc .article-share .share-social li a i:hover {
  color: var(--white-color);
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
}
.blog-details-desc .article-comments {
  margin-top: 35px;
}
.blog-details-desc .article-comments h3 {
  font-size: 22px;
  margin-bottom: 35px;
}
.blog-details-desc .article-comments .comments-list {
  position: relative;
  padding-left: 150px;
  margin-bottom: 35px;
}
.blog-details-desc .article-comments .comments-list img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  max-width: 128px;
}
.blog-details-desc .article-comments .comments-list h5 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--optional-color);
  font-weight: 600;
}
.blog-details-desc .article-comments .comments-list h5 span {
  font-size: var(--font-size);
  font-weight: 400;
  color: #9B8DAC;
}
.blog-details-desc .article-comments .comments-list p {
  margin-bottom: 12px;
}
.blog-details-desc .article-comments .comments-list .reply-btn {
  font-size: var(--font-size);
  font-weight: 600;
  color: var(--main-color);
  font-family: var(--heading-font-family);
}
.blog-details-desc .article-comments .comments-list.children {
  margin-left: 50px;
}
.blog-details-desc .article-leave-comment {
  border-top: 1px solid #F2F1F3;
  margin-top: 45px;
  padding-top: 35px;
}
.blog-details-desc .article-leave-comment h3 {
  font-size: 22px;
  margin-bottom: 35px;
}
.blog-details-desc .article-leave-comment .form-group {
  margin-bottom: 25px;
}
.blog-details-desc .article-leave-comment .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--black-color);
  font-weight: 500;
  font-size: 15px;
}
.blog-details-desc .article-leave-comment .form-group .form-control {
  height: 55px;
  padding: 15px 20px;
  line-height: initial;
  color: #9B8DAC;
  background-color: var(--white-color);
  border: 1px solid var(--white-color);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 15px;
  transition: var(--transition);
  font-size: var(--font-size);
  font-weight: 400;
  outline: 0;
  font-family: var(--heading-font-family);
}
.blog-details-desc .article-leave-comment .form-group .form-control::-moz-placeholder {
  color: #20073f;
}
.blog-details-desc .article-leave-comment .form-group .form-control::placeholder {
  color: #20073f;
}
.blog-details-desc .article-leave-comment .form-group .form-control:focus {
  border: 1px solid var(--main-color);
}
.blog-details-desc .article-leave-comment .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-desc .article-leave-comment .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.blog-details-desc .article-leave-comment .form-group textarea.form-control {
  min-height: 115px;
}
.blog-details-desc .article-leave-comment .form-cookies-consent {
  margin-bottom: 20px;
}
.blog-details-desc .article-leave-comment .form-cookies-consent a {
  color: var(--main-color);
}
.blog-details-desc .article-leave-comment .form-cookies-consent a:hover {
  color: var(--optional-color);
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:checked, .blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:checked + label, .blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraph-color);
  font-weight: 400;
  font-size: 15px;
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:checked + label:before, .blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  transition: all 0.2s ease;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  background: var(--white-color);
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:checked + label:after, .blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--main-color);
  position: absolute;
  top: 10.5px;
  left: 5px;
  transition: all 0.2s ease;
  border-radius: 30px;
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:hover + label:before {
  border-color: var(--main-color);
}
.blog-details-desc .article-leave-comment .form-cookies-consent [type=checkbox]:checked + label:before {
  border-color: var(--main-color);
}
.blog-details-desc .article-leave-comment .form-cookies-consent p {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 25px;
}
.blog-details-desc .article-leave-comment .form-cookies-consent p:last-child {
  margin-right: 0;
}
.blog-details-desc .article-leave-comment .default-btn {
  border: none;
}

/*================================================
Features Area CSS
=================================================*/
.features-inner-box {
  position: relative;
  margin-top: -50px;
  z-index: 1;
}

.single-features-card {
  background-color: var(--white-color);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
  padding: 25px 25px 25px 140px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 25px;
}
.single-features-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(1.5);
}
.single-features-card .features-image {
  position: absolute;
  left: 25px;
  top: 22px;
  max-width: 90px;
}
.single-features-card .content {
  transition: var(--transition);
}
.single-features-card .content h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 14px;
}
.single-features-card .content h2 a {
  color: var(--black-color);
}
.single-features-card .content p {
  margin-bottom: 0;
  transition: var(--transition);
}
.single-features-card .hover-content {
  position: absolute;
  top: 45px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-features-card .hover-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 14px;
}
.single-features-card .hover-content h3 a {
  color: var(--black-color);
}
.single-features-card .hover-content .features-btn {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-family: var(--heading-font-family);
  transition: var(--transition);
  position: relative;
}
.single-features-card .hover-content .features-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 1.5px;
  background: var(--btn-gradient-color);
  transition: all ease 0.5s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-features-card .hover-content .features-btn:hover {
  padding-left: 25px;
}
.single-features-card .hover-content .features-btn:hover::before {
  opacity: 1;
  visibility: visible;
}
.single-features-card:hover::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
}
.single-features-card:hover .content {
  opacity: 0;
  visibility: hidden;
}
.single-features-card:hover .content h3 a {
  color: var(--white-color);
}
.single-features-card:hover .content p {
  color: var(--white-color);
}
.single-features-card:hover .hover-content {
  opacity: 1;
  visibility: visible;
}
.single-features-card:hover .hover-content h3 a {
  color: var(--white-color);
}
.single-features-card:hover .hover-content p {
  color: var(--white-color);
}

/*================================================
Talk Area CSS
=================================================*/

.talk-image {
  position: relative;
  z-index: 1;
}
.talk-image .talk-circle {
  position: absolute;
  bottom: -12px;
  left: -50px;
}
.talk-image .talk-circle img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.talk-content {
  position: relative;
  z-index: 1;
  margin-top: 45px;
}
.talk-content .talk-bg-text {
  color: #EEEDEE;
  font-size: 95px;
  font-family: var(--monoton-font-family);
  font-weight: 400;
  position: absolute;
  top: 0;
  z-index: -1;
  line-height: 0;
}
.talk-content span {
  font-size: var(--font-size);
  color: var(--main-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
}
.talk-content h3 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.4;
  position: relative;
}
.talk-content h3 b {
  background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.talk-content h3 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--btn-gradient-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.talk-content p {
  margin-bottom: 0;
}
.talk-content .form-contact-us {
  margin-top: 25px;
}
.talk-content .form-contact-us .form-group {
  margin-bottom: 20px;
}
.talk-content .form-contact-us .form-group .form-control {
  height: 55px;
  color: #212529;
  box-shadow: unset !important;
  border: 1px solid var(--white-color);
  background-color: #d6d8ff;
  transition: var(--transition);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 15px;
}
.talk-content .form-contact-us .form-group .form-control::-moz-placeholder {
  color: #20073f;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.talk-content .form-contact-us .form-group .form-control::placeholder {
  color: #20073f;
  transition: var(--transition);
}
.talk-content .form-contact-us .form-group .form-control:focus {
  border-color: var(--main-color);
  background-color: transparent;
}
.talk-content .form-contact-us .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.talk-content .form-contact-us .form-group .form-control:focus::placeholder {
  color: transparent;
}
.talk-content .form-contact-us .form-group textarea.form-control {
  height: auto;
  padding-top: 15px;
}
.talk-content .form-contact-us .default-btn {
  border: none;
}
.talk-content .form-contact-us .list-unstyled {
  padding: 0;
  margin-bottom: 0;
}
.talk-content .form-contact-us .list-unstyled li {
  font-size: 14px;
  margin-top: 10px;
  color: red;
}
.talk-content .form-contact-us .text-danger {
  font-size: 18px;
  margin-top: 2px;
  margin-bottom: 0;
}
.talk-content.margin-zero {
  margin-top: 0;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-team-card {
  margin-bottom: 25px;
  text-align: center;
}
.single-team-card .team-image {
  position: relative;
}
.single-team-card .team-image .team-social {
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
}
.single-team-card .team-image .team-social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.single-team-card .team-image .team-social li:last-child {
  margin-right: 0;
}
.single-team-card .team-image .team-social li a i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: var(--white-color);
  color: var(--black-color);
  text-align: center;
  font-size: 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.single-team-card .team-image .team-social li a i:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.single-team-card .team-content {
  margin-top: 25px;
}
.single-team-card .team-content h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0;
}
.single-team-card .team-content span {
  font-size: 14px;
  color: var(--paragraph-color);
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}
.single-team-card:hover .team-image {
  position: relative;
}
.single-team-card:hover .team-image .team-social {
  bottom: 25px;
  opacity: 1;
}

.team-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  z-index: -1;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  background-image: url(../../assets/images/overview/overview-bg.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.col-lg-3:last-child .overview-card::before {
  display: none;
}

.overview-card {
  margin-bottom: 25px;
  position: relative;
}
.overview-card::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 80px;
  height: 2px;
  background-color: var(--white-color);
}
.overview-card h3 {
  font-size: var(--font-size);
  font-weight: bold;
  margin-bottom: 0;
  color: var(--optional-color);
}
.overview-card span {
  font-size: var(--font-size);
  font-family: var(--heading-font-family);
  color: var(--black-color);
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
}
.overview-card span a {
  color: var(--black-color);
}
.overview-card span a:hover {
  color: var(--main-color);
}
.overview-card .overview-shape {
  position: absolute;
  inset-block-start: -15px;
  top: -15px;
  z-index: -1;
}
.overview-card .overview-shape img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*================================================
Page Banner Area CSS
=================================================*/
.page-banner-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 150px;
}
.page-banner-content h2 {
  font-size: 70px;
  margin-bottom: 20px;
  color: var(--white-color);
}
.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--main-color);
  position: relative;
  margin-left: 25px;
}
.page-banner-content ul li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 6px;
  height: 15px;
  width: 1px;
  background: #CDC4D9;
  transform: rotate(20deg);
}
.page-banner-content ul li:first-child {
  margin-left: 0;
}
.page-banner-content ul li:first-child::before {
  display: none;
}
.page-banner-content ul li a {
  display: block;
  transition: var(--transition);
}
.page-banner-content ul li a:hover {
  color: var(--main-color);
}
.page-banner-content.wrap-content h2 {
  color: var(--black-color);
}
.page-banner-content.wrap-content ul li {
  color: var(--main-color);
}
.page-banner-content.wrap-content ul li::before {
  background: var(--paragraph-color);
}
.page-banner-content.wrap-content ul li a {
  color: var(--paragraph-color);
}
.page-banner-content.wrap-content ul li a:hover {
  color: var(--main-color);
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
  text-align: center;
}
.error-content h3 {
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 30px;
}
.error-content p {
  max-width: 550px;
  margin: auto;
}
.error-content .default-btn {
  margin-top: 25px;
}



/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area {
    padding-left: 30px;
  }
  .widget-area .widget {
    margin-bottom: 30px;
  }
  .widget-area .widget:last-child {
    margin-bottom: 0;
  }
  .widget-area .widget .widget-title {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
  }
  .widget-area .widget .widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    bottom: -1px;
    background-color: var(--main-color);
  }
  .widget-area .widget_search form {
    position: relative;
  }
  .widget-area .widget_search form .search-field {
    height: 70px;
    color: var(--black-color);
    border: 1px solid #F2F1F3;
    display: block;
    width: 100%;
    border-radius: 15px;
    padding: 15px 20px 15px 70px;
    transition: var(--transition);
    font-size: 15px;
    font-weight: 400;
    outline: 0;
    background: #F2F1F3;
  }
  .widget-area .widget_search form .search-field::-moz-placeholder {
    color: var(--paragraph-color);
    -moz-transition: var(--transition);
    transition: var(--transition);
  }
  .widget-area .widget_search form .search-field::placeholder {
    color: var(--paragraph-color);
    transition: var(--transition);
  }
  .widget-area .widget_search form .search-field:focus::-moz-placeholder {
    color: transparent;
  }
  .widget-area .widget_search form .search-field:focus::placeholder {
    color: transparent;
  }
  .widget-area .widget_search form button {
    border: none;
    background-color: transparent;
    color: var(--black-color);
    position: absolute;
    left: 32px;
    padding: 0;
    transition: var(--transition);
    top: 22.8px;
    font-size: 25px;
    line-height: 0;
  }
  .widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
    color: var(--main-color);
  }
  .widget-area .widget_categories .list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
  }
  .widget-area .widget_categories .list li {
    margin-bottom: 18px;
  }
  .widget-area .widget_categories .list li:last-child {
    margin-bottom: 0;
  }
  .widget-area .widget_categories .list li a {
    color: var(--paragraph-color);
    display: inline-block;
    font-weight: 500;
    font-family: var(--heading-font-family);
    padding: 15px 25px;
    background-color: var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 30px;
    width: 100%;
  }
  .widget-area .widget_categories .list li a:hover {
    color: var(--main-color);
  }
  .widget-area .widget_recent_post {
    position: relative;
    overflow: hidden;
  }
  .widget-area .widget_recent_post .item {
    overflow: hidden;
    margin-bottom: 25px;
  }
  .widget-area .widget_recent_post .item:last-child {
    margin-bottom: 0;
  }
  .widget-area .widget_recent_post .item .thumb {
    float: left;
    height: 90px;
    overflow: hidden;
    display: block;
    position: relative;
    width: 90px;
    margin-right: 15px;
    z-index: 1;
  }
  .widget-area .widget_recent_post .item .thumb::before, .widget-area .widget_recent_post .item .thumb::after {
    transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
    content: "";
    background-color: var(--white-color);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  .widget-area .widget_recent_post .item .thumb::before {
    width: 40px;
    height: 1px;
    left: 100%;
  }
  .widget-area .widget_recent_post .item .thumb::after {
    height: 40px;
    width: 1px;
    top: 0;
  }
  .widget-area .widget_recent_post .item .info {
    overflow: hidden;
    margin-top: 2.5px;
  }
  .widget-area .widget_recent_post .item .info span {
    display: block;
    color: var(--optional-color);
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--heading-font-family);
  }
  .widget-area .widget_recent_post .item .info .title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: var(--font-size);
    font-weight: 600;
  }
  .widget-area .widget_recent_post .item .info .title a {
    display: inline-block;
  }
  .widget-area .widget_recent_post .item:hover .thumb::before, .widget-area .widget_recent_post .item:hover .thumb::after {
    opacity: 1;
    top: 50%;
    left: 50%;
  }
  .widget-area .widget_tag_cloud .widget-title {
    margin-bottom: 18px;
  }
  .widget-area .tagcloud a {
    display: inline-block;
    background: #f5f5f5;
    color: var(--paragraph-color);
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    margin-right: 5px;
  }
  .widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
    color: var(--white-color);
    background-color: var(--main-color);
  }
  .widget-area .widget_recent_courses {
    position: relative;
    overflow: hidden;
  }
  .widget-area .widget_recent_courses .item {
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
  }
  .widget-area .widget_recent_courses .item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
  .widget-area .widget_recent_courses .item .thumb {
    float: left;
    height: 90px;
    overflow: hidden;
    display: block;
    position: relative;
    width: 90px;
    margin-right: 15px;
    z-index: 1;
  }
  .widget-area .widget_recent_courses .item .thumb::before, .widget-area .widget_recent_courses .item .thumb::after {
    transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
    content: "";
    background-color: var(--white-color);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  .widget-area .widget_recent_courses .item .thumb::before {
    width: 40px;
    height: 1px;
    left: 100%;
  }
  .widget-area .widget_recent_courses .item .thumb::after {
    height: 40px;
    width: 1px;
    top: 0;
  }
  .widget-area .widget_recent_courses .item .info {
    overflow: hidden;
  }
  .widget-area .widget_recent_courses .item .info span {
    display: block;
    color: var(--main-color);
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
  }
  .widget-area .widget_recent_courses .item .info .title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: var(--font-size);
    font-weight: 600;
  }
  .widget-area .widget_recent_courses .item .info .title a {
    display: inline-block;
  }
  .widget-area .widget_recent_courses .item:hover .thumb::before, .widget-area .widget_recent_courses .item:hover .thumb::after {
    opacity: 1;
    top: 50%;
    left: 50%;
  }
  .widget-area .widget_insight {
    border-radius: 15px;
  }
  .widget-area .widget_insight .list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
  }
  .widget-area .widget_insight .list li {
    margin-bottom: 10px;
  }
  .widget-area .widget_insight .list li:last-child {
    margin-bottom: 0;
  }
  .widget-area .widget_insight .list li a {
    position: relative;
    display: block;
    padding: 15px 25px 15px 40px;
    color: var(--paragraph-color);
    border: 1px solid #eeeeee;
    font-size: 15px;
    font-weight: 500;
    border-radius: 15px;
  }
  .widget-area .widget_insight .list li a::before {
    width: 5px;
    height: 5px;
    transition: var(--transition);
    background-color: var(--main-color);
    content: "";
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
  }
  .widget-area .widget_insight .list li a:hover, .widget-area .widget_insight .list li a.active {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);
  }
  .widget-area .widget_insight .list li a:hover::before, .widget-area .widget_insight .list li a.active::before {
    background-color: var(--white-color);
  }
  .widget-area .widget_insight .list li.active a {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);
  }
  .widget-area .widget_insight .list li.active a::before {
    background-color: var(--white-color);
  }
/*================================================
Pagination CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
  text-align: center;
}
.pagination-area .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: var(--white-color);
  border: 2px solid var(--optional-color);
  color: var(--optional-color);
  text-align: center;
  border-radius: 50px;
  position: relative;
  margin: 0 2px;
  font-size: var(--font-size);
  font-weight: bold;
  font-family: var(--heading-font-family);
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}
.pagination-area .page-numbers i {
  font-size: 20px;
}
.pagination-area .page-numbers.prev {
  background-color: #F2F1F3;
  border: 2px solid #F2F1F3;
}
.pagination-area .page-numbers.prev i {
  font-size: 25px;
  position: relative;
  top: 5px;
  left: -2px;
}
.pagination-area .page-numbers.prev:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}
.pagination-area .page-numbers.next {
  background-color: #F2F1F3;
  border: 2px solid #F2F1F3;
}
.pagination-area .page-numbers.next i {
  font-size: 25px;
  position: relative;
  top: 5px;
  left: 2px;
}
.pagination-area .page-numbers.next:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}

.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: var(--white-color);
  background-color: var(--main-color);
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 45%;
  transform: translateY(-45%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}
.go-top:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
}
.lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #DCE3FF;
  overflow: hidden;
}
.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  animation: run 15s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  border-radius: 50%;
}
.lines .line:nth-child(1) {
  margin-left: -25%;
}
.lines .line:nth-child(2) {
  margin-left: 0;
}
.lines .line:nth-child(3) {
  margin-left: 25%;
}

@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.map-location iframe {
  height: 450px;
  width: 100%;
  border: none;
  border-radius: 15px;
}




.blog-categories-menu {
    color: var(--bs-body-color);
    margin-top: 45px;
    list-style-type: none;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.blog-categories-menu .item a {
    line-height: var(--bs-body-line-height);
    background-color: var(--white-color);
    color: var(--black-color);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-size: var(--font-size);
    font-weight: 600;
    font-family: var(--heading-font-family);
    transition: var(--transition);
    padding: 10px 25px;
}

.blog-categories-menu .item a:hover {
    background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
    color: var(--white-color);
}

.blog-categories-menu .item.active a{
    background: radial-gradient(circle, #a66bff, #c666ef, #dd62df, #ee61cf, #fb64bf);
    color: var(--white-color) !important;
}

.blog-image img{
    aspect-ratio: 16/11;
    object-fit: cover;
}

button.owl-dot {
    width: 48px;
    height: 48px;
    margin: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.owl-dot::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

button.owl-dot.active::before {
    background-color: #007bff;
}

