/* =========================================
/*
=========================================
Index
-----------------------------------------
# 00. Variable
# 01. Common
# 02. Header
# 03. Hero
# 04. Feature
# 05. Solution
# 06. Pricing
# 07. Accordion
# 08. Newsletter
# 09. Tags
# 10. Policy
# 11. Contact
# 12. 404
# 13. Footer
# 14. Responsive

*/
/* ======================================
 *  00. Variable
/* ====================================== */

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

 /* font-family: "Outfit", sans-serif; */

:root {
  --lavender: #d4d4d4;
  --pink: #ff6eb2;
  --peach: #ffad66;
  --light: #ffffff;
  --light-50: #8181b1;
  --light-100: #8d8db9;
  --light-200: #9a9ac1;
  --light-300: #a6a6c9;
  --light-400: #b3b3d0;
  --light-500: #c0c0d8;
  --light-600: #cccce0;
  --light-700: #d9d9e8;
  --light-800: #e6e6ef;
  --light-900: #ffffff;
  --dark-50: #4e4e7e;
  --dark-100: #464672;
  --dark-200: #3e3e65;
  --dark-300: #363659;
  --dark-400: #2f2f4c;
  --dark-500: #27273f;
  --dark-600: #1f1f33;
  --dark-700: #171726;
  --dark-800: #101019;
  --dark-900: #08080d;
  --input-bg: #0000004d;
  --input-border: #3d2d5a;
  --gradient-lavender-pink-peach: linear-gradient(98deg, #00c0e1 0%, #ff5af8 50%, #00c0e1 100%);
  --gradient-w-500-w-100: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  --gradient-w-100-b-500: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
}

/* ======================================
 *  01. Common
/* ====================================== */
body {
 font-family: "Outfit", sans-serif;
 font-size: 16px;
 line-height: 1.5;
 font-weight: 400;
 /* background: rgb(34,0,99); */
 /* background: radial-gradient(circle, rgba(34,0,99,1) 0%, rgba(0,0,0,1) 100%); */
 color: var(--light-900);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

p {
  line-height: 1.8;
}

input:focus {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul,li{
    list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

input::placeholder {
  color: #4e4e7e;
}
.title{
      /* -webkit-mask-image: url(../img/mask.jpg);
  mask-image: url(../img/mask.jpg);
  -webkit-mask-size: 10%;
  mask-size: 10%;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;    */
  padding-bottom: 23px;
    margin-bottom: 3px;
}

.title,
.title-2 {
  font-size: 57px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.16;
  color: #222222;
  position: relative;
  text-transform: capitalize;
}
/* .title::before{
     content: "";
    background-image: url(../img/underline.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 190px;
    height: 15px;
    right: 134px;
    bottom: 0;
    z-index: 9;
} */
.logo{
    max-width: 220px;
}

.title span,
.title-2 span {
  background: var(--gradient-lavender-pink-peach);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-2 {
  font-size: 40px;
  margin-bottom: 60px;
}

.btn {
  height: unset;
  min-height: unset;
  padding: 8px 16px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
}

.btn-secondary {
  background: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  color: var(--light-600);
  border: 1px solid var(--light-100);
}

.btn-primary {
  border: 1px solid var(--pink);
  background: var(--gradient-lavender-pink-peach);
  padding: 12px 24px;
  color: var(--light);
}

.btn-tertiary {
  border: 1px solid var(--dark-600);
  background: var(--dark-800);
  padding: 12px 24px;
  color: var(--light-600);
}

.btn-secondary:hover,
.btn-tertiary:hover {
  border: 1px solid var(--lavender);
  background: var(--lavender);
  color: var(--light);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.mx-850 {
  max-width: 850px;
  margin: auto;
}

.pr-47 {
  padding-right: 47px;
}

.pl-47 {
  padding-left: 47px;
}

.mtb-192 {
  margin: 192px 0;
}

.mt-192 {
  margin-top: 192px;
}

.mb-192 {
  margin-bottom: 192px;
}

.py-80 {
  padding: 80px 0;
}

.mr-2{
    margin-right: 10px;
}

.ml-2{
    margin-left: 10px;
}

/* ======================================
 *  02. Header
/* ====================================== */

.sec-btn{
           /* padding: 15px 25px; */
           /* background: rgb(255,193,143); */
           /* background: linear-gradient(90deg, #00c0e1 0%, #3c0071 100%); */
           border-bottom: 3px solid #00c0e1;
           color: #222222;
           border-radius: 1px;
           perspective: 1000px;
           font-weight: 600;
           font-size: 16px;
           line-height: 1;
           text-transform: capitalize;
           transition: all .3s;
           display: inline-flex;
           align-items: center;
           justify-content: center;
           overflow: hidden;
           z-index: 1;
           /* gap: 30px; */
           /* white-space: nowrap; */
           text-align: center;
           margin-right: 15px;
           padding-bottom: 5px;
}
.sec-btn span{
        position: relative;
    display: inline-block;
    padding: 0;
    transition: transform .5s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
}
.sec-btn span::before{
        position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: attr(data-text);
    transition: color .5s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
}
.sec-btn:hover{
          /* background: rgb(255,193,143); */
          /* background: linear-gradient(90deg, #00c0e1 0%, #3c0071 100%); */
          /* border: 1px solid #00c0e1; */
          color: #00c0e1;
          border-bottom: 3px solid #fff;
}
.sec-btn:hover span{
        transform: rotateX(90deg) translateY(-12px);
    color: inherit;
}
.sec-btn-u{
    background: transparent;
    border-bottom: 3px solid #00c0e1;
    color: #00c0e1;
}
.sec-btn-u:hover{
          /* background: rgb(255,193,143); */
          /* background: linear-gradient(90deg, #00c0e1 0%, #3c0071 100%); */
          border-bottom: 3px solid #00c0e1;
}

header {
  /* border-bottom: 1px solid; */
  /* border-image-source: linear-gradient(270deg,
      rgba(41, 41, 61, 0) 3.33%,
      #29293d 50%,
      rgba(41, 41, 61, 0) 96.67%); */
  /* border-image-slice: 1; */
  padding: 16px 64px;
  background: #082756;
  border: 10px solid #fff;
  border-radius: 30px;
}
header nav{
    display: inline-block;
}

header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

header nav ul li a {
  color: var(--light-900);
  padding: 0 10px;
  font-size: 18px;
}

header nav ul li a:hover {
  color:#00c0e1;
}

.desktop-header {
  display: block;
}

.mobile-header {
  display: none;
}

/* ======================================
 *  03. Hero
/* ====================================== */
.hero-area {
  padding: 100px;
  /* background: #1b1b1b; */
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}

.hero-area p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-area h1 {
    padding-bottom: 23px;
    margin-bottom: 3px;
}

.hero-btn {
  /* display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center; */
  margin: 32px 0 48px;
}
.hero-btn .sec-btn-u{
    margin-left: 20px;
}
.hero-chatbot {
height: 420px;

}
.hero-chatbot img{
        width: 80%;
        height: auto;
        object-fit: cover;
}

.hero-chat {
  padding: 31px;
  margin-bottom: 96px;
  border: 1px solid #27243b;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  backdrop-filter: blur(8px);
}

.hero-chat-list {
  display: grid;
  gap: 24px;
}

.hero-chat-item {
  display: flex;
  gap: 12px;
}

.hero-chat-item-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--light-900);
  line-height: 1.5;
  margin-bottom: 4px;
}

.hero-chat-item-content span {
  color: var(--light-50);
  font-weight: 400;
  font-size: 14px;
}

.hero-chat-item-content p {
  font-size: 16px;
}

.hero-chat-item img {
  height: 32px;
  width: 32px;
}

.hero-chat-input {
  position: relative;
  margin-top: 40px;
  color: #fff;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 8px 8px 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-chat-input input {
  color: var(--white-700);
  width: 100%;
  background: transparent;
  border: none;
}

.hero-chat-input button {
  padding: 8px;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chat-input button svg {
  width: 24px;
  height: 24px;
}

.hero-brand p {
  margin-bottom: 32px;
}

.hero-brand ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner-circle-img-wrap{
    position: relative;
}
.banner-circle-img{
    position: absolute;
     animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
  z-index: -1;
}
@keyframes up-down{
  0% {
    transform:  translate(1px,20px)  ;
  }
  24% {
    transform:  translate(1px,30px)  ;
  }
  50% {
    transform:  translate(1px,12px)  ;
  }
  74% {
    transform:  translate(1px,22px)  ;
  }
  100% {
    transform:  translate(1px,22px)  ;
  }
}

@-moz-keyframes up-down{
  0% {
    -moz-transform:  translate(1px,20px)  ;
  }
  24% {
    -moz-transform:  translate(1px,30px)  ;
  }
  50% {
    -moz-transform:  translate(1px,12px)  ;
  }
  74% {
    -moz-transform:  translate(1px,22px)  ;
  }
  100% {
    -moz-transform:  translate(1px,22px)  ;
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform:  translate(1px,20px)  ;
  }
  24% {
    -webkit-transform:  translate(1px,30px)  ;
  }
  50% {
    -webkit-transform:  translate(1px,12px)  ;
  }
  74% {
    -webkit-transform:  translate(1px,22px)  ;
  }
  100% {
    -webkit-transform:  translate(1px,22px)  ;
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform:  translate(1px,20px)  ;
  }
  24% {
    -o-transform:  translate(1px,30px)  ;
  }
  50% {
    -o-transform:  translate(1px,12px)  ;
  }
  74% {
    -o-transform:  translate(1px,22px)  ;
  }
  100% {
    -o-transform:  translate(1px,22px)  ;
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform:  translate(1px,20px)  ;
  }
  24% {
    -ms-transform:  translate(1px,30px)  ;
  }
  50% {
    -ms-transform:  translate(1px,12px)  ;
  }
  74% {
    -ms-transform:  translate(1px,22px)  ;
  }
  100% {
    -ms-transform:  translate(1px,22px)  ;
  }
}
.banner-circle-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-circle-img1{
       top: 0;
    left: 0;
    width: 40px;
}
.banner-circle-img2{
    right: 0px;
    top: 290px;
    width: 90px;
}
.banner-circle-img3{
        left: 50%;
    top: -88px;
    width: 30px;
}
.banner-circle-img4{
        right: 0;
        width: 50px;
}
.banner-circle-img5{
        left: 35%;
    bottom: -316px;
        width: 50px;
}
.banner-circle-img6{
    top: 158px;
    left: -75px;
        width: 50px;
}
body p{
      color: #222222;
      font-size: 18px;
      font-weight: 300;
      /* font-weight: 300; */
      line-height: 1.7em;
}
.sec-small-head{color: #222222;font-family: "Outfit", Sans-serif;font-size: 14px;font-weight: 600;text-transform: uppercase;letter-spacing: 1px;}
.sec-head-wrap{
    max-width: 800px;
    margin: 0 auto;
        position: relative;
    z-index: 9;
}
.padding-area{
    padding: 90px 0;
}
.pt-0{
    padding-top: 0;
}
.pb-0{
    padding-bottom: 0;
}


/* ======================================
 *  04. Feature
/* ====================================== */
.feature-area{
        /* background: #1b1b1b; */
        background-color: #1b1b1b;
        background-image: url(../img/bg.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
}
.feature-area::before {
  content: "";
  background: #0f0f0f;
  width: 100%;!;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .6;
}
.feature-area .row {
  row-gap: 20px;
}

.feature-item {
     border-radius: 12px;
    background: transparent;
 border: 1px solid #2e2e2e;
    padding: 65px 30px;
    margin-bottom: 30px;
}

.feature-item a {
  border-radius: 8px;
  border: 1px solid #302b49;
  background: linear-gradient(180deg,
      rgba(5, 5, 15, 0) 0%,
      rgba(141, 141, 185, 0.16) 100%);
  margin-top: 32px;
}
.feature-item{
    position: relative;
    z-index: 9;
}

.feature-item h3,
.price-plan-details-inner h3 {
    margin: 0px 0 16px;
    color: var(--light-900);
    font-size: 25px;
    font-weight: 600;
    position: relative;
    z-index: 9;
}

.feature-item p {
  margin: 0;
     position: relative;
    z-index: 9;

}
.feature-img-inner{
height: 190px;
}
.feature-img-inner img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.feature-img{
    margin-top: 30px;
}
.feature-item2{
    background-image: url(../img/feature-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.feature-item2::after{
    content: "";
    background-color: transparent;
    background-image: linear-gradient(180deg, #16111c9c 0%, #16111c 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
        border-radius: 12px 12px 12px 12px;
            height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.feature-item4{
        background-color: #15131D;
        border-color: #15131D;
        padding: 65px 30px 30px;
}
/* ======================================
 *  05. Solution
/* ====================================== */
.best-plan-area{
    /* background-color: #1b1b1b; */
    /* background-image: url(../img/bg.png); */
    /* background-position: center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
}
.best-plan-ani-img-wrap{
        animation: up-down linear 4s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: up-down linear 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: up-down linear 4s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: up-down linear 4s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: up-down linear 4s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
    display: inline-block;
    z-index: 9;
}
.best-plan-ani-img-wrap2{
    position: absolute;
    right: 36px;
}
.solution-item h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--light-500);
}

.solution-item p {
  margin: 16px 0 32px;
  max-width: 566px;
}

.solution-item {
  padding: 31px;
  margin-bottom: 48px;
  border: 1px solid #2f2a49;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
}

.solution-single {
  border-radius: 8px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  padding: 16px;
  display: flex;
  gap: 15px;
}

.solution-single img {
  max-width: 24px;
}

.solution-single h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--light-500);
}

.solution-single p {
  margin: 0;
  color: var(--white-500);
}

.solution-item-list {
  display: grid;
  gap: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.solution-item-chat {
  padding: 32px;
}

.solution-chat-message-item {
  display: flex;
  gap: 12px;
}

.solution-item .solution-chat-message-item img {
  width: 32px;
  height: 32px;
}

.solution-chat-message-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--light-900);
  line-height: 1.5;
  margin-bottom: 0;
}

.solution-chat-message-item h3 span {
  color: var(--light-50);
  font-weight: 400;
  font-size: 14px;
}

.solution-chat-message-item p {
  max-width: 458px;
  margin: 4px 0 0 0;
}

.solution-chat-message-item-content ol {
  padding: 10px 0 0 15px;
  margin: 0;
}

.solution-item img {
  width: 100%;
}

.solution-chat-message {
  display: grid;
  gap: 24px;
}

.solution-chat-message .hero-chat-input {
  margin-top: 0;
}

.solution-box-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.solution-box-item {
  border-radius: 8px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  padding: 16px;
}

.solution-box-item h4 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 15px;
  font-weight: 500;
  color: var(--light-500);
}

.solution-box-item ul {
  display: grid;
  gap: 8px;
  font-size: 16px;
  margin-top: 15px;
}

.solution-item:last-child {
  margin-bottom: 0;
}

/* ======================================
 *  06. Pricing
/* ====================================== */
.price-plan-details{
        background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(20, 0, 57, 1) 100%);
}
.price-plan-details .row{
    margin-top: 50px;
}
/* .price-plan-details .row:nth-of-type(even){
    flex-direction: row-reverse;
} */
.price-plan-details ul li i{
    color:#00c0e1;
    margin-right: 5px;
     font-size: 18px;
}
.price-plan-details ul li{
    margin-bottom: 15px;
        color: #FFFFFF7A;
            font-size: 18px;
    font-weight: 300;
}
.pricing-area {
    /* background: #000; */
}
.pricing-item {
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  border: 1px solid #2c2746;
  backdrop-filter: blur(8px);
  padding: 30px;
  height: 100%;
}

.pricing-item h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  font-weight: 500;
  color: #222222;
}

.pricing-tab {
  max-width: fit-content;
  margin: auto;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #2f254e;
}

.pricing-tab button {
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  color: #a6a6c9;
  background: transparent;
}

.pricing-tab button.active {
  background: var(--light-700);
  color: #363659;
}

.pricing-item h4 {
  color: var(--light-500);
  font-size: 64px;
  font-weight: 800;
  margin-top: 0px;
}

.pricing-item h4 sub {
  font-size: 32px;
  font-weight: 400;
}

.pricing-button {
  display: flex;
  /* gap: 10px; */
  margin-top: 35px;
}

.pricing-button button {
  border: 1px solid #2f254e;
  padding: 12px;
  font-weight: 600;
  background: transparent;
  color: var(--light-600);
  border-radius: 8px;
  transition: 0.3s;
}

.pricing-button button:hover {
  background: var(--light-700);
  color: #363659;
}

.pricing-button .chk-btn{
  background: linear-gradient(98deg, #a570ff 0%, #ff6eb2 50%, #ffad66 100%);
  border: 1px solid #a570ff;
  color: var(--light);
  padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
}

.pricing-button .btn{
    width: 100%;
} 

.pricing-item ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #2f254e;
  padding: 15px 0;
  font-size: 15px;
  color: #222222;
}

.pricing-item ul li span{
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #747474;
    padding: 7px;
    border-radius: 50%;
}

.pricing-item ul li span img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.pricing-item ul li:last-child {
  border-bottom: 0;
}

.pricing-item ul {
  margin-top: 35px;
}


/* ======================================
 *  07.  MORE INFORMATION
/* ====================================== */

.more-info-sec{
        /* background-image: url(../img/more-info-banner.jpg); */
        /* background-repeat: no-repeat; */
        /* background-position: center; */
        /* background-size: cover; */
        /* background-attachment: fixed; */
        /* position: relative; */
        /* background: #1b1b1b; */
}
.more-info-sec::after{
      /* content: ""; */
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute;
      background: rgb(0, 0, 0);
      background: #1b1b1b;
      opacity: 0.85;
}

/* ======================================
 *  07. Accordion
/* ====================================== */
.faq-area{
    background: rgb(0,0,0);
    background: #1b1b1b;
}
.accordion {
  display: grid;
  gap: 8px;
}
.accordion-item{
        margin-top: 30px;
}

.accordion-item:first-of-type .accordion-button {
  border-radius: 8px;
}

.accordion-button:not(.collapsed) {
  background: transparent;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0px 20px 20px;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 8px;
  background: rgb(255, 193, 143);
  background: #cdcdcd;
  border: 1px solid #00c0e1;
}

.accordion-button {
  background: transparent;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

h2.accordion-header button,
.accordion-button:not(.collapsed) {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.accordion-body {
  color: rgb(30, 30, 30);
  max-width: 778px;
}


.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus.svg);
  background-size: 17.33px;
}

.accordion-button::after {
  background-image: url(../img/plus.svg);
  background-size: 17.33px;
}

/* ======================================
 *  08. Newsletter
/* ====================================== */
.ready-section {
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 96px 0;
  border: 1px solid #34294b;
}

.ready-section .title-2 {
  margin-bottom: 20px;
}

.ready-section p {
  margin-bottom: 30px;
  font-size: 20px;
}

/* ======================================
 *  09. Tags
/* ====================================== */
.tags-area ul li a {
  background: #262044;
  color: var(--light-50);
  border: 1px solid #342d59;
  height: unset;
  min-height: unset;
  padding: 8px 16px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  display: block;
  transition: 0.3s;
}

.tags-area ul li a:hover {
  border: 1px solid var(--pink);
  background: var(--gradient-lavender-pink-peach);
  color: var(--light);
}

.tags-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tags-area {
  text-align: center;
  margin-bottom: 64px;
}

.tags-area h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--light-600);
  margin-bottom: 32px;
}

.tags-area:last-child {
  margin-bottom: 0;
}

/* ======================================
 *  10. Policy
/* ====================================== */
.policy-area .pills-tab {
  display: grid;
  justify-content: flex-start;
  gap: 20px;
}

.policy-area .pills-tab button {
  text-align: left;
  color: #363659;
  font-size: 20px;
  padding-left: 15px;
}

.policy-area .pills-tab button.active {
  background: var(--gradient-lavender-pink-peach);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-left: 4px solid #a570ff;
}

.policy-area .tab-content {
  border-left: 1px solid #1f1f33;
  padding-left: 58px;
}

.policy-area .tab-content h3 {
  border-top: 1px solid #1f1f33;
  padding-top: 45px;
  margin-top: 45px;
  font-size: 24px;
  color: #c0c0d8;
  margin-bottom: 25px;
}

.policy-area .tab-content h3:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* ======================================
 *  11. Contact
/* ====================================== */
.contact-content {
  padding: 31px;
  margin-bottom: 48px;
  border: 1px solid #2f2a49;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  color: #222222;
}

.contact-form {
  padding: 31px;
  margin-bottom: 48px;
  border: 1px solid #322a4e;
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(141, 141, 185, 0.16) 0%,
      rgba(8, 8, 12, 0) 100%);
  backdrop-filter: blur(8px);
  color: #222;
}

.contact-content h5 {
}

.contact-content img {
  margin-bottom: 25px;
}

.contact-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 67px;
}

.contact-content h4 {
  font-size: 14px;
  font-weight: 400;
}

.contact-content h5 {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
  padding: 10px 0;
  /* color: #fff; */
  display: inline-block;
  border-bottom: 1px solid #787878;
}

.contact-brand {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-brand img {
  margin: 0;
}

.contact-form .form-group input {
  color: var(--white-700);
  width: 100%;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 14px 20px;
  border-radius: 8px !important;
  margin-bottom: 20px;
  color: var(--light);
}

.contact-form .form-group .input-group {
  flex-wrap: nowrap;
  gap: 20px;
}

.contact-form .form-check-input {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  width: 24px;
  height: 24px;
}

.contact-form .form-check-input:focus {
  box-shadow: none;
  border-color: var(--lavender);
}

.contact-form .form-check-input:checked {
  background-color: var(--lavender);
  border-color: var(--lavender);
}

.contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 40px;
}

.contact-form p {
  margin: 15px 0 35px;
}

/* ======================================
 *  12. 404
/* ====================================== */
.error-area {
  text-align: center;
  padding: 280px 0 0;
}

.error-area h2 {
  margin: 0;
  font-size: 96px;
}

.error-area h3 {
  font-size: 48px;
  color: var(--light-700);
  margin-bottom: 20px;
}

.error-area p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* ======================================
 *  13. Footer
/* ====================================== */
footer {
  padding: 80px 0 0;
  /* border-top: 1px solid #201c39; */
  /* margin-top: 100px; */
  background: #1b1b1b;
  padding-top: 120px;
}

footer p {
  margin-top: 20px;
}

.footer-item h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fffffff7;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-item ul li a {
  color: #FFFFFF7A;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7em;
}

.footer-item ul li a:hover {
  color: var(--lavender);
}

.footer-item ul.prdct-list {
    column-count: 2;
}

.footer-item ul.prdct-list li{
    padding: 5px 0;
}

.footer-copyright p {
  margin: 0;
  font-size: 16px;
}

.footer-copyright {border-top: 1px solid #201c39;padding: 10px 0;margin-top: 40px;background: #1b1b1b;}

.footer-copyright ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}

.footer-copyright ul li a {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.footer-copyright ul li a:hover {
  color: var(--lavender);
}

/* ======================================
 *  14. Responsive
/* ====================================== */
@media screen and (max-width: 991px) {
  body {
    padding: 0 16px;
    background: linear-gradient(to right,
        rgba(33, 19, 52, 1) 0%,
        50%,
        rgba(38, 23, 64, 1) 100%);
  }

  header {
    padding: 15px 25px;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 30px;
    background: linear-gradient(180deg, #2b153f 0%, #180f28 100%);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu.show-menu {
    right: 0;
  }

  .mobile-menu nav ul {
    display: grid;
    gap: 15px;
    margin-top: 10px;
    justify-content: left;
  }

  .mobile-menu nav ul li a {
    color: var(--light-700);
  }

  .mobile-menu strong svg {
    position: absolute;
    right: 30px;
    height: auto;
    width: 26px;
    top: 20px;
    cursor: pointer;
    color: var(--light-700);
  }

  .mobile-header span svg {
    height: auto;
    width: 30px;
    cursor: pointer;
    color: var(--light-700);
  }

  .mobile-menu .btn {
    margin-top: 30px;
  }

  .hero-area {
    padding: 70px 0 0;
  }

  .hero-area p {
    font-size: 16px;
  }

  .title {
    font-size: 48px;
  }

  .title-2 {
    font-size: 38px;
  }

  .solution-item {
    margin-bottom: 25px;
  }

  .pl-47,
  .pr-47 {
    padding: 0;
  }

  .mt-30 {
    margin-top: 30px;
  }

  .mtb-192 {
    margin: 95px 0;
  }

  .mt-192 {
    margin-top: 95px;
  }

  .mb-192 {
    margin-bottom: 95px;
  }

  footer {
    margin-top: 95px;
  }

  .footer-copyright ul {
    justify-content: center;
  }

  .footer-copyright p {
     margin: 0;
    font-size: 14px;
    color: #000;
  }

  .footer-copyright {
    margin-top: 95px;
  }

  .ready-section p {
    font-size: 16px;
  }

  .tags-area h2 {
    font-size: 38px;
  }

  .policy-area .tab-content {
    border-left: none;
    padding-left: 0;
    margin-top: 50px;
  }

  .contact-brand {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .error-area p {
    font-size: 16px;
  }

  .error-area h3 {
    font-size: 38px;
  }

  .hero-brand ul {
    justify-content: center;
  }
}

@media screen and (max-width: 430px) {
  .title {
    font-size: 38px;
  }

  .title-2 {
    font-size: 28px;
  }

  .solution-box-list {
    grid-template-columns: 1fr;
  }
}

.hero-chatbot {
  text-align: center;
}

/* .hero-chatbot img {
  max-width: 400px;
  width: 100%;
} */

.checkout_area .form-control{
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #513c6e5c;
    box-shadow: none;
    outline: none;
    color: #ffffff;
    background-color: #2215418a;
    min-height: 50px;
}

.checkout_area select{
    padding: 12px;
    border-radius: 5px;
    background-color: #2215418a;
    border: 1px solid #fff;
    box-shadow: none;
    outline: none;
    color: #fff;
    appearance: auto;
    width: 100%;
    border: 1px solid #513c6e;
    margin-bottom: 15px;
    min-height: 50px;
}

.checkout_area .form-control::placeholder{
    color: #fff;
}

.creat_account{
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    color: #222222;
}

.login-section {
  background-image: url("../images/login-bg.jpg");
  background-size: cover;
  height: 100%;
  padding-left: calc(40px + 120 * (100vw - 991px) / 929);
  padding-right: calc(40px + 120 * (100vw - 991px) / 929);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 60px;
  padding-top: 52px;
}
@media (max-width: 991px) {
  .login-section {
    padding-left: calc(15px + 25 * (100vw - 320px) / 1600);
    padding-right: calc(15px + 25 * (100vw - 320px) / 1600);
    height: auto;
    padding-bottom: 0;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.login-section .row {
  width: 100%;
}
.login-section .login-box {
  background: rgba(58, 237, 177, 0.05);
  border: 1px solid rgba(var(--title-color), 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: calc(30px + 20 * (100vw - 991px) / 929);
  height: 100%;
  min-height: calc(100vh - 150px);
}
@media (max-width: 991px) {
  .login-section .login-box {
    height: auto;
    min-height: unset;
    padding: 30px 20px;
    margin-top: calc(60px + 50 * (100vw - 320px) / 1600);
    margin-bottom: calc(60px + 50 * (100vw - 320px) / 1600);
  }
}
.login-section .login-box h2 {
  font-size: calc(26px + 4 * (100vw - 991px) / 929);
  font-weight: 500;
  color: rgba(var(--white), 1);
  margin-bottom: calc(15px + 20 * (100vw - 991px) / 929);
  text-align: center;
  margin-top: calc(-3px + -3 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .login-section .login-box h2 {
    font-size: calc(22px + 4 * (100vw - 320px) / 1600);
    margin-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
  }
}
.login-section .login-box h2 span {
  color: rgba(var(--theme-color), 1);
}
.login-section .login-box .nav-tabs {
  border-bottom: 2px solid rgba(var(--theme-color), 0.1);
  margin-bottom: calc(25px + 5 * (100vw - 320px) / 1600);
}
.login-section .login-box .nav-tabs .nav-link {
  color: rgba(var(--content-color), 1);
  width: 100%;
  background-color: transparent;
  border: none;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  outline: none;
}
.login-section .login-box .nav-tabs .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
.login-section .login-box .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  border-bottom: 2px solid rgba(var(--theme-color), 1);
  width: 100%;
  left: 0;
  bottom: 0;
}
.login-section .login-box .nav-tabs .nav-item {
  width: 50%;
  text-align: center;
}
.login-section .social-btn {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.login-section .social-btn li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(var(--white), 0.8);
  border-radius: 8px;
}
.login-section .social-btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: calc(40px + 10 * (100vw - 320px) / 1600);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login-section .btn-absolute {
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: calc(100% - 100px);
}
@media (max-width: 991px) {
  .login-section .btn-absolute {
    position: relative;
    left: unset;
    bottom: unset;
    width: 100%;
  }
}

.login-animation {
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .login-animation {
    height: calc(360px + 140 * (100vw - 320px) / 1600);
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    margin-bottom: 40px;
  }
}
.login-animation .img-base {
  position: absolute;
  bottom: 0;
}
.login-animation .img-light {
  position: absolute;
  bottom: calc(60px + 30 * (100vw - 991px) / 929);
  mix-blend-mode: color-dodge;
}
@media (max-width: 991px) {
  .login-animation .img-light {
    bottom: 60px;
  }
}
.login-animation .img-face {
  position: absolute;
  bottom: calc(30px + 50 * (100vw - 991px) / 929);
  left: calc(30px + 60 * (100vw - 991px) / 929);
}
[dir=rtl] .login-animation .img-face {
  left: unset;
  right: calc(30px + 60 * (100vw - 991px) / 929);
}
@media (max-width: 991px) {
  .login-animation .img-face {
    bottom: 30px;
    left: 120px;
  }
  [dir=rtl] .login-animation .img-face {
    left: unset;
    right: 120px;
  }
}
.login-animation .img-face img {
  -webkit-animation: flip 3s linear infinite alternate;
          animation: flip 3s linear infinite alternate;
  mix-blend-mode: color-dodge;
}
@keyframes flip{
    0% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
100% {
    -webkit-transform: none;
    transform: none;
}
}

.login-section .btn.btn-secondary{
    margin-top: 15px;
}

.login-section input{
    background: transparent;
    border-radius: 4px;
    padding: 12px;
    box-shadow: none;
    outline: none;
    color: #fff;
}

.login-section input::placeholder{
    color: #fff;
}

.login-section input:focus{
    background-color: transparent;
    box-shadow: none;
    color: #fff;
}

/* Comparison Table */

.comparison_sec table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #686868;
}

.comparison_sec th,.comparison_sec td {
  text-align: center;
  padding: 16px;
}

.comparison_sec th:first-child, .comparison_sec td:first-child {
  text-align: left;
}

.comparison_sec th{
    border-right: 1px solid #00c0e1;
        color: #000;
    background: #00c0e1;
}
.pricing-item h4{
    color:#00c0e1;
}

.comparison_sec .fa-check {
  color: #00c0e1;
}

.comparison_sec .fa-times {
  color: #00c0e1;
}

.comparison_sec tr{
    background-color: transparent;
}

.comparison_sec td{
    border-top: 1px solid #686868;
    border-bottom: 1px solid #686868;
    border-right: 1px solid #686868;
    color: #cfcfcf;
}

.comp-table{
    overflow: auto;
}

/* Packages Page */

.feature-section .feature-box {
 background: #f3f3f3;
 padding: 30px;
 border-radius: 5px;
 position: relative;
 height: 100%;
 border: none;
}

.feature-section .feature-box .feature-top h3 {
    margin-bottom: 0;
    color: #000;
    position: relative;
    /* padding-left: 30px; */
    font-size: 18px;
}

.feature-section .feature-box .feature-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-section .feature-box .feature-top .feature-icon {
    width: calc(30px + 10*(100vw - 320px) / 1600);
    height: calc(30px + 10*(100vw - 320px) / 1600);
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box .feature-top .feature-icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.feature-section .feature-box p {
  color: #363636;
  margin-bottom: 12px;
  /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
  /* line-height: 1.5;
    font-size: 16px; */
  /* height: 115px; */
}

.feature-section .feature-box .link-overflow {
    width: 100%;
    overflow: hidden;
}

.feature-section .feature-box:after {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(98deg,
      #a570ff 0%,
      #ff6eb2 50%,
      #ffad66 100%);
    border-radius: 4px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-icon{
    display: none;
}
.feature-section .feature-box a svg {
    fill: rgba(59, 237, 178, 1);
    margin-left: 34px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box a {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateX(-112px);
    transform: translateX(-112px);
    transition: all 0.5s ease;
    align-items: center;
    color: #000;
}

.feature-section .feature-box:hover a {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* .feature-section .feature-box .feature-top h3::after {
    content: "";
    position: absolute;
    height: 30px;
    width: 1px;
    background:linear-gradient(98deg,
      #000 0%,
      #000 50%,
      #000 100%);
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
} */

.feature-section .fa-long-arrow-alt-right{
    font-size: 25px;
    margin-left: 15px;
    transition: 0.5s all;
    background: linear-gradient(98deg,      #000f 0%,      #000 50%,      #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-section .feature-box:hover .fa-long-arrow-alt-right{
    margin-left: 15px;
}

.feature-section .feature-box .feature-top .feature-icon .outline-icon {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box .feature-top .feature-icon .bold-icon {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
    transform: translate(-50%, -50%) scaleX(-1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-section .feature-box:hover .feature-icon .outline-icon {
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
    transform: translate(-50%, -50%) scaleX(-1);
}

.feature-section .feature-box:hover .feature-icon .bold-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* Checkout */

.order-summary-total{
}
.order-summary{
	padding: 25px;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(141, 141, 185, 0.16) 0%, rgba(8, 8, 12, 0) 100%);
	border: 1px solid #2c2746;
	backdrop-filter: blur(8px);
}

.order-summary-total{
}

.check-sum td{
	background: #d9d9d8;
	border: none;
}

.check-sum td{
	background: transparent;
	border: none;
	color: #222222;
}

#order-cart-section tr{
    border-top: 1px solid #747474;
}

.accpt{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-content p a{
    /* color: #c7c7c7; */
}

.contact-content p{
    /* color: #c7c7c7; */
}
.modal.show .modal-dialog{
        width: 1200px;
    margin: 0 auto;
    display: block;
        max-width: 100%;
            /* height: 400px;
    overflow-y: scroll; */
}
/****************** inner page **********************/
.inner-banner .title::before{
    right: 428px;
}
.comparison_sec{
    background: rgb(0,0,0);
background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(20,0,57,1) 100%);
}

#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #00c0e1;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #000;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #000;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #000;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #000;
        padding: 10px 20px;
        border-radius: 5px;
        background: #00c0e1;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #000;
    }

    .cookieBtns button:last-child {
        background-color: #000;
        color: #00c0e1;
    }


    .pricing-item h3 img {
    height: 20px;
}













.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.about-section .media .heading {
  transition: all .5s ease;
  font-weight: 900;
  color: #00c0e1;
  z-index: 1;
  background: var(--gradient-lavender-pink-peach);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading {
  font-size: 42px;
  color: #29234e;
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.about-section .media .media-body {
  /* padding-top: 25px; */
  z-index: 1;
}
.media-body {
  -ms-flex: 1;
  flex: 1;
}
.about-section .media .media-body .subheading {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}
.subheading {
  color: #efefef;
}
.about-section .media .media-body .text {
  color: #bebebe;
  font-size: 16px;
}
p:last-child {
  margin-bottom: 0;
}
.text {
  font-weight: 400;
  line-height: 32px;
}


.testimonial-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.testimonial-one__left {
    position: relative;
    display: block;
    margin-top: 10px;
}

.testimonial-one__img-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 90px;
    height: 90px;
    margin-left: -83px;
    margin-top: 19px;
    z-index: 2;
}

.testimonial-one__img-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--thm-black);
    color: #ffffff;
    font-size: 30px;
}

.testimonial-one__img-icon a::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 5px solid #00c0e1;
    border-radius: 50%;
}

.testimonial-one__img-icon a:hover {
    color: #ffffff;
    background-color: #cdcdcd;
}

.testimonial-one__img-top {
    position: relative;
    display: block;
    padding-left: 14px;
    padding-right: 53px;
}

.testimonial-one__img-top ul {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-left: -9px;
    margin-right: -9px;
}

.testimonial-one__img-top ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 9px 0;
    margin-bottom: 18px;
}

.testimonial-one__single-img-box {
    position: relative;
    display: block;
    z-index: 1;
}

.testimonial-one__img-top li:nth-child(1) .testimonial-one__single-img-box::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    bottom: 30px;
    right: 30px;
    background-color: #061c4e;
    border-radius: 53px 0px 53px 0px;
    z-index: -1;
}

.testimonial-one__single-img img {
    width: 100%;
}

.testimonial-one__img-top li:nth-child(1) .testimonial-one__single-img {
    border-radius: 35px 10px 53px 5px;
}

.testimonial-one__img-top li:nth-child(1) .testimonial-one__single-img img {
    border-radius: 53px 0px 53px 0px;
}

.testimonial-one__img-top li:nth-child(2) .testimonial-one__single-img img {
    border-radius: 80px 10px;
    border: 5px solid #fff;
}

.testimonial-one__img-bottom {
    position: relative;
    display: block;
    margin-left: -42px;
    margin-right: 107px;
}

.testimonial-one__img-bottom ul {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.testimonial-one__img-bottom ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 7.5px 0;
}

.testimonial-one__img-bottom ul li:nth-child(1) .testimonial-one__single-img {
    border-radius: 35px 10px 53px 5px;
}

.testimonial-one__img-bottom ul li:nth-child(1) .testimonial-one__single-img img {
    border-radius: 35px 10px 53px 5px;
    border: 5px solid #fff;
}

.testimonial-one__img-bottom ul li:nth-child(2) .testimonial-one__single-img {
    border-radius: 31px 10px 74px 5px;
}

.testimonial-one__img-bottom ul li:nth-child(2) .testimonial-one__single-img img {
    border-radius: 31px 10px 74px 5px;
    border: 5px solid #fff;
}

.testimonial-one__right {
    position: relative;
    display: block;
}

.testimonial-one__right .section-title {
    margin-bottom: 50px;
}

.testimonial-one__carousel {
    position: relative;
    display: block;
    padding-bottom: 6px !important;
}

.testimonial-one__single {
    position: relative;
    display: block;
}

.testimonial-one__client-rating {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-one__client-rating i {
    position: relative;
    display: inline-block;
    font-size: 21px;
    color: #cdcdcd;
}

.testimonial-one__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 28px;
    margin-bottom: 39px;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    width: 104px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__client-img::before {
    content: "";
    position: absolute;
    width: 104px;
    height: 104px;
    right: -7px;
    bottom: -6px;
    border-radius: 50%;
    background-color: #cdcdcd;
    z-index: -1;
}

.testimonial-one__client-img img {
    border-radius: 50%;
    width: auto;
}

.testimonial-one__client-content {
    position: relative;
    display: block;
    margin-left: 30px;
}

.testimonial-one__client-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.96px;
    text-transform: capitalize;
}

.testimonial-one__client-sub-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.64px;
    text-transform: capitalize;
    color: var(--thm-black);
    margin-top: 3px;
}

.testimonial-one__nav {
    position: absolute;
    right: 8px;
    bottom: 35px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

.testimonial-one__nav .swiper-button-next,
.testimonial-one__nav .swiper-button-prev {
    position: relative;
    width: 30px;
    height: 50px;
    color: var(--thm-black);
    font-size: 12px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.testimonial-one__nav .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 30px;
    height: 50px;
    border: 1px solid var(--thm-black);
    border-radius: 15px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-one__nav .swiper-button-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 30px;
    height: 50px;
    border: 1px solid var(--thm-black);
    border-radius: 15px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-one__nav .swiper-button-prev {
    margin-bottom: 0;
    margin-right: 30px;
}

.testimonial-one .swiper-button-next:hover,
.testimonial-one__nav .swiper-button-prev:hover {
    color: #cdcdcd;
}

.testimonial-one .swiper-button-next:hover::before,
.testimonial-one__nav .swiper-button-prev:hover::before {
    border: 1px solid #cdcdcd;
}

.testimonial-one__nav .swiper-button-next::after,
.testimonial-one__nav .swiper-button-prev::after {
    display: none;
}
.about-two__right {
  position: relative;
  display: block;
  margin-left: 47px;
  margin-right: 223px;
}
.about-two__img-box {
  position: relative;
  display: block;
}
.about-two__img {
  position: relative;
  display: block;
  bottom: 153px;
}
.about-two__img img {
  width: 100%;
}
.about-two__img-two {
  position: absolute;
  bottom: -165px;
  right: -222px;
  z-index: 2;
}
.about-two__img-two img {
  width: auto;
  max-width: none;
  border-left: 8px solid #00c0e1;
  border-top: 8px solid #00c0e1;
}
.about-two__experience {
  position: absolute;
  bottom: 15px;
  left: 0px;
  height: 137px;
  width: 201px;
  background-color: #00c0e1;
  display: flex;
  align-items: center;
  padding-left: 14px;
  /* border-bottom-right-radius: 30px; */
  z-index: 3;
}
.about-two__experience::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  /* border-bottom: 23px solid #00c0e1; */
  border-right: 30px solid transparent;
}
.about-two__experience h3 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  /* letter-spacing: -3.84px; */
  line-height: 96px;
}
.about-two__experience-text {
  position: absolute;
  display: block;
  color: #ffffff;
  font-weight: 600;
  /* letter-spacing: -0.64px; */
  line-height: 20px;
  text-transform: uppercase;
  /* transform: rotate(-90deg); */
  top: 49px;
  right: 5px;
  letter-spacing: 2px;
}
.about-two__experience-text span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.44px;
}
.footer-item ul li {
    color: #FFFFFF7A;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7em;
}
.sec-head-wrap img{
    width: 100%;
    margin-bottom: 30px;
}
.inner-banner{
    background: linear-gradient(45deg, #b4c5cd, #082756);
    /* background-image: none; */
}
.highlight{
    font-weight: 900;
    /* color: #00c0e1; */
    display: inline;
    background: var(--gradient-lavender-pink-peach);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose{
        background: url(../img/bann2.jpg)no-repeat;
        background-position: center;
        padding: 150px 0;
    }
    .box-shad-choo{
        background: #fff;
        padding: 20px;
        margin: 20px;
        border-radius: 20px;
        box-shadow: rgb(89 184 230 / 33%) 0px 4px 12px;
    }
    .box-shad-choo h3{
        font-size: 23px;
        color: #000000;
        font-weight: 600;
    }
    .box-shad-choo p{
        font-size: 16px;
        margin-bottom: 26px;
        color: #000000;
    }
    .box-shad-choo a{
        background: #0066ff;
        font-size: 18px;
        padding: 8px 20px;
        color: #fff;
        border-radius: 50px;
        margin-top: 20px;
        font-weight: 500;
        line-height: 20px;
    }
    .site-choose-bann{
        width: 80%;
        border-radius: 30px;
        overflow: hidden;
    }
    .site-choose-bann img{
        width: 100%;
    }
    .box-shad-choo img{
        width: 50px;
        height: 50px;
        margin: 10px;
    }
    .choo-box1{
        display: flex;
        justify-content: center;
        align-items: center;
    }
footer p{
    color: #FFFFFF7A;
}