/* -------------- font google --------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/* ----------- global ---------------- */

body {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.error{
    color: #fff;
    font-size: 20px;
    background-color: transparent;
    border: 2px solid #ff3030;
    padding: 10px 20px;
    z-index: 8;
    width: 380px;
}

span{
    color: #ff0000;
    display: contents;
    font-weight: 600;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #ff0800;
}
.background{
    width: 100%;
    height: auto;
    background-color: #04071e;
    z-index: -2;
}

h1,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.folio{
    padding-top:15px;
}




.popup {
    z-index: 4;
    position: fixed;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }

  .popup button.show-modal,
  .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .popup.active .show-modal {
    display: none;
  }

  .popup.popup.active .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.699);
  }
  .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #04071e;
    border: 2px solid #ff0000;

    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
  }
  .popup.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .modal-box i {
    font-size: 70px;
    color: #ff0000;
  }
  .modal-box span{
    color: #ff0000;
  }
  .modal-box h2 {
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
  }
  .modal-box h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
  }
  .modal-box .buttons {
    margin-top: 25px;
    text-align: center;

  }
  .modal-box button {
    font-size: 12px;
    padding: 5px 5px;
  }


  .modal-box form {
    margin: 0 auto;
    max-width: 360px;
  }
  .modal-box input {
    background: #ffffff;
    border: 2px solid transparent;
    box-sizing: border-box;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }

  .modal-box button {
    background: #ff0000;
    border: 2px solid #ff0000;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    padding: 0 25px;
    width: 100%;
  }
  .modal-box button:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
  }

  #keypad {
    background-color: transparent;
    display: grid;
    grid-template-columns: auto auto auto;
    margin-top:10px
  }
  #keypad p {
    background-color: rgba(255, 255, 255, 0.0);
    border: 0.2rem solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.2rem;
    padding: 5px 5px;
    text-align: center;
  }
  #keypad p:hover {
    background-color: #FF0000;
    border: 0.2rem solid #FF0000;
  }
  #keypad p:active {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
  }
  #keypad p[data-value="clear"] {
    font-size: 1rem;
  }
  #keypad p[data-value="back"] {
    font-size: 1rem;
  }

  


.highlighted {
    margin-top: 30px;
    width: 300px;
    height: 100px;
    box-shadow: 20px 20px 20px #0000008c;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.highlighted::before{
    content: "";
    background-image: conic-gradient(
        rgb(255, 0, 0) 50deg,
        transparent 120deg
    );
    width: 150%;
    height: 150%;
    position: absolute;
    animation: rotate 1s linear infinite;
}
.highlighted::after{
    content: "MY PROJECT";
    cursor: pointer;
    width: 280px;
    height: 90px;
    background: #ff0000;
    color: #ffffff;
    position: absolute;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 27px;
    letter-spacing: 5px;
}
@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-360deg);
    }
}

body.dark{
    --primary-color: #3A3B3C;
    --panel-color: #ff0000;
    --text-color: #ffffff;
    --black-light-color: #ffffff;
    --border-color: #4D4C4C;
    --toggle-color: #DDD;
    --dark-color: #fff;
    --box1-color: #3A3B3C;
    --box2-color: #3A3B3C;
    --box3-color: #3A3B3C;
    --title-icon-color: #ffffff;
    --highlight-color:#ffffff;
    --back-color:#b8b8b8;
    --hovered-color: #000000;
    --idled-color: #fff;
    --reverse-color: #4DA3FF;
}

:root{
    /* ===== Colors ===== */
    --primary-color: #422D93;
    --panel-color: #000;
    --text-color: #000;
    --black-light-color: #707070;
    --border-color: #e6e5e5;
    --toggle-color: #DDD;
    --box1-color: #4DA3FF;
    --box2-color: #e76800;
    --box3-color: #E7D1FC;
    --title-icon-color: #fff;
    --highlight-color:#4DA3FF;
    --back-color:#a3cfff;
    --hovered-color: #fff;
    --idled-color: #4DA3FF;
    --reverse-color: #000;
    
    /* ====== Transition ====== */
    --tran-05: all 0.5s ease;
    --tran-03: all 0.3s ease;
    --tran-03: all 0.2s ease;
}

.slide-container {
    height: 540px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    height: 620px;
  }
  .slide-testimonial .image {
    height: auto;
    width: 200px;
  }

  .recommended{
    padding: 5px 5px;
    margin-left: 110px;
    margin-top: 10px;
    margin-right: 110px;
    font-weight: 600;
    font-style: italic;
    background-color: #000;
  }

  .slide-testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
  }
  .slide p {
    text-align: center;
    padding: 0 160px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
  }
  .slide .quote-icon {
    font-size: 30px;
    color: #ff0800;
  }
  .slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .slide-details .name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
  }
  .details .job {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
  }

  .details .job2 {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
  }

  /* swiper button css */
  .slide-nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }
  .slide-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .slide-nav-btn::after,
  .slide-nav-btn::before {
    position: relative;
    font-size: 40px;
    color: #ff0000;
    z-index: -2;
  }
  .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .swiper-pagination-bullet-active {
    background-color: #ff0800;
        
  }
  
  .slide-testimonial .image2{
    width: 300px;
  }

  @media screen and (max-width: 768px) {
    .slide p {
      padding: 0 20px;
    }
    .slide-nav-btn {
      display: none;
    }
  }
  
/* ------------ all button css ---------- */

.main-btn {
    display: inline-block;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 55px;
    border: 2px solid #ff0000;
    border-radius: 5px;
    background-color: #ff0000;
    color: #fff;
}

.main-btn:hover {
    background-color: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
}

.swiper-pagination-bullet-active{
    color: #008616;
}

.main-btn1 {
    display: inline-block;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: 55px;
    border: 3px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    color: #ffffff;
}

.main-btn1:hover {
    background-color: #ffffff;
    color: #000000;
    border: 3px solid #fff;
}


/* ------------ all animation ---------- */

@keyframes video {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes bounceTop-1 {

    0%,
    100% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0px);
    }
}

@keyframes animation-1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    78.5% {
        transform: rotate(945deg);
    }

    to {
        transform: rotate(1080);
    }
}

@keyframes spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(130deg);
    }
}

@keyframes spinner-right-spin {
    0% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }

    to {
        transform: rotate(-130deg);
    }
}

/* -------------- preloader css ---------- */
.Spacing{
    padding-top: 50px;
}

.Spacing2{
    padding-top: 20px;
}

.mode-toggle .switch{
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 40px;
    width: 80px;
    border-radius: 25px;
    background-color: var(--toggle-color);
    user-select: none;
}
.switch:before{
    content: "";
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    background-color: var(--panel-color);
    border-radius: 50%;
    transition: var(--tran-03);
    transition: 0.5s;
    user-select: none;
}
body.dark .switch:before{
    left: 5px;
    transition: 0.5s;
    user-select: none;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    z-index: 99999;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
}

.preloader .loader .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: spinner-linspin 1568ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%;
}

.preloader .loader .spinner-right .spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: #000000;
    animation: spinner-right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;

}

.preloader .loader .spinner-left .spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: #eceff8;
    animation: spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both;
}

.preloader .loader .spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    border-color: #000203 #000000 #eceff8;
    border-radius: 50%;
    border-width: 6px;
}


/* ----------- navbar css----------- */

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.sticky {
    position: fixed;
    background-color: #04071e;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.navbar {
    position: relative;
    padding: 8px 8px;
}


.navbar-brand .image {
    max-width: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 5px 12px;
        background-color: rgb(4, 7, 30, 0.9);
        box-shadow: 0 15px 20px 0 rgb(0 0 0 / 10%);
    }
      
    .slide-testimonial .image2{
        width: 250px;
      }

    .slide-testimonial .image{
        width: 200px;
      }

    
}

.navbar-toggler{
    height: 50px;
}

.navbar-light .navbar-toggler-icon {
    color: #fff;
    border-color: green;
    background-color: #008616;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-item {
    position: relative;
    text-align: center;
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover{
    color: #ff0000;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 0;
    left: 50%;
    border-radius: 50%;
    background-color: #ff0000;
    opacity: 0;
    transition: all .3 ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item .nav-link::before {
        position: relative;
    }
}

.navbar-nav .nav-item .nav-link.active::before,
.navbar-nav .nav-item .nav-link:hover::before {
    opacity: 100%;
}

.image-1{
    width: 300px;
    height: 100%;
}
/* ----------- home css ---------- */

#main{
    padding-top: 90px;
    color: #fff;
}

.showcase-box{
    width:430px;
    height: 250px;
    border-radius: 10px;
    margin:20px 20px 10px 20px;
    overflow: hidden;

}
.showcase-box img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.showcase-heading{
    padding-left: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    color: #B2B2B2;
}
.header-hero {
    padding-top: 300px;
    position: relative;
    top: 0;
    height: 100vh;
    background-position: bottom center;
    overflow:hidden;
}

.header-hero .shape {
    position: absolute;
}

.header-hero-content {
    position: relative;
    z-index: 1;
}


.header-hero-content .header-title {
    font-size: 50px;
    margin-left: 10px;
    color: #fff;
}

.header-hero-content .header-title span{
    font-size: 80px;
    color: #ff0800;

}
.header-hero-content .text {
    margin-top: 30px;
}

.header-hero-content ul {
    margin-top: 30px;
}

.header-hero-content .header-video {
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    margin-top: 6px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    background-color: #ff0800;
    transition: 0.3s ease-in-out;
    color: #fff;
}

.header-hero-content .header-video:hover {
    color: #fff;
    background-color: transparent ;
    transition: 0.3ms ease-in-out;
}

.header-hero-content .header-video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(231, 8, 8, 0.8);
    z-index: -1;
    animation: video 2s linear infinite;
}

.header-image {
    position: relative;
    margin-top: 15px;
    animation: bounceTop-1 3s ease infinite;
}

.faq-image {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .header-hero-content {
        margin-top: 30%;
    }
    .header-hero {
        padding-top: 80px;
    
    }
}
    
@media (max-width: 1650px){
    .header-container{
        position: fixed;
        left: -300px;
    }

}

@media (max-width: 769px){
    .header-hero {
        padding-top: 30px;
    
    }
    .about-area{
        text-align: center;
    }

    .header-hero-content .header-title {
        font-size: 40px;
    }
    
    .header-hero-content .header-title span{
        font-size: 55px;
    }

    .showcase-box {
        max-width: 350px;
        height: 200px;
        margin: 10px;
    }

    .header-hero-content .d-flex{
        text-align: center;
    }

    .d-flex {
        text-align: center;
        padding-left: 10px;
    }

}


@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .header-image img {
        height: 0;
    }
}

.highlighted::after{
    width: 200px;
    height: 60px;
    font-size: 15px;
    font-weight: 600;
}

.highlighted {
    width: 210px;
    height: 70px;
    box-shadow: 16px 14px 20px #0000008c;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.header-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/header/header-shape-3.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.header-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 25%;
    height: 0%;
}

.vbox-close {
    color: #fff;
    background: transparent;
    font-size: 40px;
    right: 12%;
}

.background-clip{
    position: absolute;
    width: auto;
    height: 101vh;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
  

/* --------- feature css ---------- */
.feature-section .single-feature {
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 17px 0 rgba(0, 0, 0, 0.16);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .feature-section .single-feature {
        box-shadow: none;
    }
}

.feature-section .single-feature .icon {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    margin: 0 auto 30px;
    background-color: #4da3ff;
    color: #fff;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.feature-section .single-feature .icon.color-2 {
    background-color: #04db28;
}

.feature-section .single-feature .icon.color-4 {
    background-color: #dbcd01;
}

.feature-section .single-feature .icon.color-3 {
    background-color: #ff2e2e;
}

.feature-section .single-feature .icon.color-5 {
    background-color: #d100a4;
}

.feature-section .single-feature .icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    top: -8px;
    right: -8px;
    z-index: -1;
    opacity: .2;
    transition: all .3s ease-out 0s;
}

.feature-section .single-feature:hover .icon::after {
    top: 8px;
    right: 8px;
}

.feature-section .single-feature .content h3 {
    font-weight: 600;
    margin-bottom: 25px;
}

.section-title{
    text-align: center;
}

.section-title img{
    width: 55vw;
    margin-top: 20px;
}
/* ------- about css -------- */

.about-area {
    overflow: hidden;
}

.about-image {
    display: inline-block;
    position: relative;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.about-image .about-shape {
    position: relative;
    width: 394px;
    height: 394px;
    transition: 0.3s;
    background-color: var(--panel-color);
    border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .about-image .about-shape {
        width: 350px;
        height: 350px;
    }
}

.about-image .about-shape::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 5px solid var(--reverse-color);
    transition: 0.3s;
    transform: scale(1.1);
}

.about-image .app {
    max-width: 280px;
    position: absolute;
    top: 25px;
    left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .about-image .app {
        max-width: 250px;
    }
}

.title {
    font-size: 35px;
    font-weight: 600;
}

.text {
    margin-top: 20px;
}

.about-content .main-btn {
    margin-top: 40px;
}

.about-content .main-btn1 {
    margin-top: 40px;
}

/* --------- Testimonial css ---------- */

.testimonial-section {
    padding: 100px 0;
    background-color: #1d2a5d;
}

.testimonial-section .tns-controls {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
}

.testimonial-section .tns-controls button {
    border: none;
    background: 0 0;
}

.testimonial-section .tns-controls button svg {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 8%;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .13);
    color: #fff;
    z-index: 22;
}

.testimonial-section .tns-controls button svg:hover {
    background-color: #fff;
    color: #1d2a5d;
}

.testimonial-section .tns-controls button .fa-angle-left {
    left: 10%;
}

.testimonial-section .tns-controls button .fa-angle-right {
    right: 10%;
}

.testimonial-section .testimonial-active-wrapper {
    position: relative;
}

.testimonial-section .testimonial-wrapper {
    padding: 40px;
}

.testimonial-section .single-testimonial {
    text-align: center;
    position: relative;
    padding-top: 20px;
    padding-bottom: 45px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 9;
}

.testimonial-section .single-testimonial::before {
    top: -20px;
    right: -20px;
    opacity: .26;
    z-index: -1;
}

.testimonial-section .single-testimonial::after {
    top: -40px;
    right: -40px;
    opacity: .13;
    z-index: -2;
}

.testimonial-section .single-testimonial::before,
.testimonial-section .single-testimonial::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: inherit;
}

.testimonial-section .single-testimonial .info .image-2 {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.image-2 img{
    width: 120px;
}

.testimonial-section .single-testimonial .info h3 {
    margin-bottom: 8px;
}

.testimonial-section .single-testimonial .info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-section .single-testimonial .info h5 {
    color: #ff0000;
}
.testimonial-section .single-testimonial .quote {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 50px;
    line-height: 1;
    color: #ff4747;
}

/* ------ pricing css --------- */

.single-pricing {
    box-shadow: 0 15px 17px 0 rgba(255, 0, 0, 0.16);
    margin-bottom: 50px;
    border-top: 10px solid #ff0000;
    padding-bottom: 20px;
    background-image: url(../img/features/color.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single-pricing .pricing-title {
    background-color: #ff0000;
    width: 100%;
    padding: 5px 5px;
}


.single-pricing .pricing-title .title {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}

.single-pricing .pricing-price {
    margin-top: 30px;
}

.single-pricing .pricing-price .pricing {
    font-size: 35px;
    font-weight: 600;
    color: #38424d;
    line-height: 35px;
}

.single-pricing .pricing-price .text {
    font-size: 18px;
    margin-top: 18px;
    font-weight: 400;
}


.single-pricing .pricing-list {
    margin-top: 30px;
}

.single-pricing .pricing-list li {
    line-height: 39px;
    font-weight: 600;
}

.single-pricing .pricing-btn {
    margin-top: 28px;
}

.single-pricing .next .pricing-btn .main-btn.main-btn-2 {
    background-color: #ff0000;
    color: #fff;
    border-color: #ff0000;

}

.single-pricing .pricing-btn .main-btn.main-btn-2:hover {
    background-color: #fff;
    color: #ff0000;
    border-color: #ff0000;
}

/* --------- faq css ---------- */

.faq-section .accordion-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(142, 142, 142, .16);
}

.faq-section .accordion-item button {
    position: relative;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    background-color: #fff;
    color: #1d2a5d;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/accordion.svg);
}

.accordion-button:focus {
    box-shadow: none;
}

/* --------- download css ---------- */

.download-area {
    overflow: hidden;
}

.download-area .download-image .download-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #b3d7ff;
    border-radius: 50%;
    z-index: -1;
    animation: animation-1 2s linear infinite;
}


.download-area .download-image .image-3 {
    position: relative;
    max-width: 250px;
    padding-top: 0px;
    padding-bottom: 60px;
    animation: bounceTop-1 3s linear infinite;
}

.download-content ul {
    margin-top: 35px;
}

.download-content ul li {
    display: inline-block;
    margin-top: 15px;
}

.download-content ul li a {
    width: 210px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.download-content ul li a.app-store {
    background-color: #0898e7;
}

.download-content ul li a.play-store {
    background-color: #008616;
}

/* ----------- footer css --------- */

.footer-area {
    position: relative;
    overflow: hidden;
    background-color: #04071e;
}

.footer-area .footer-shape {
    position: absolute;
}

.footer-area p{
    color: #fff;
    padding-top: 10px;
}

.footer-area h4{
    color: #fff;

}
.footer-area .logo {
    max-width: 200px;
}

.footer-about {
    max-width: 320px;
    text-align: center;
}

.footer-about .social {
    margin-top: 15px;
}

.footer-about .social li {
    display: inline-block;
    margin-right: 25px;
}

.footer-about .social li a {
    font-size: 20px;
    color: #fff;
    transition: all .3s ease-out 0s;
}

.footer-about .social li a:hover {
    color: #ff0000;
}

.footer-link-wrapper {
    width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .footer-link {
        padding-top: 30px;
    }
}

.footer-link .link {
    padding-top: 10px;
}

.footer-link .link li {
    margin-top: 10px;
}

.footer-link .link li a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    transition: all .3s ease-out 0s;
}

.footer-link .link li a:hover {
    color: #ff0000;
}

.footer-title .title {
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .footer-contact {
        padding-top: 30px;
    }
}

.footer-contact .contact-list li .contact-info .info-content .text a {
    color: #fff;
    transition: all .3s ease-out 0s;
}

.footer-contact .contact-list li .contact-info .info-content .text a:hover {
    color: #ff0000;
}

.footer-copyright .copyright {
    border-top: 2px solid #fff;
    padding-top: 10px;
    padding-bottom: 25px;
}

.footer-copyright .copyright .copyright-text .text a {
    color: #fff;
}

.footer-copyright .copyright .copyright-text {
    padding-top: 10px;
}


