/*
[Master Stylesheet] 
Project: Portfolio Html
-------------------------------------------------------------------*/
/********************************************************
    body start
 *******************************************************/
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --cv-primary-color:#FD9A01;
    --cv-white-color: #ffffff;
    --cv-black-color: #000000;
    --cv-font-color: #E9E9E9;
    --cv-transition: all 0.3s;
}

html {
  scroll-behavior: smooth;
}

*,*:before,*:after{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

*::-webkit-scrollbar
{
    width: 4px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb
{
    border-radius: 1rem;
    background: var(--cv-black-color);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--cv-white-color);
}

a, a:hover, a:focus, button, button:hover, button:focus{	
	text-decoration: none;
	-webkit-transition: var(--cv-transition);
    -moz-transition: var(--cv-transition);
    -ms-transition: var(--cv-transition);
    -o-transition: var(--cv-transition);
    transition: var(--cv-transition);
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: var(--cv-transition);
    -moz-transition: var(--cv-transition);
    -ms-transition: var(--cv-transition);
    -o-transition: var(--cv-transition);
    transition: var(--cv-transition);
	margin:0;
	padding:0;	
	word-break: break-word;
    font-family: 'Barlow', sans-serif;
    text-transform: capitalize;
    color: var(--cv-white-color);
}


h5 {
    font-size: 18px;
    font-weight: 600;
}
h4{
    font-size: 20px;
    font-weight: 600;
}

h3{
    font-size: 34px;
    font-weight: 700;
}

h1{
    font-size: 66px;
    font-weight: 700;
}

input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus{
	outline: none !important;
	box-shadow:none;
    border: none;
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}

/********************************************************
    Button Style
 *******************************************************/

.cv_btn {
    min-height: 45px;
    border-radius: 5px;
    min-width: 160px;
    width: fit-content;
    line-height: 1.4;
    font-size: 18px;
    color: var(--cv-white-color);
    background-color: var(--cv-primary-color);
    padding: 10px;
    border: none;
    transition: all 0.5s;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cv_btn:hover{
    color: var(--cv-white-color);
}

.cv_btn:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.7);
    top: 0;
    height: 100%;
    width: 0%;
    transition: none;
    border-radius: 5px;
}

.cv_btn:hover::after{
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    -moz-transition: all 0.8s ease-out 0s;
    -ms-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
}

/********************************************************
    Common Style
 *******************************************************/

.cv_sections{
    padding: 100px 0;
}

.container-fluid{
    padding-right: var(--bs-gutter-x,1.9rem);
    padding-left: var(--bs-gutter-x,1.9rem);
}

.row{
    row-gap: 30px;
}

.row>*{
    padding-right: calc(var(--bs-gutter-x) * .63);
    padding-left: calc(var(--bs-gutter-x) * .63);
}

.menu-open {
    overflow: hidden;
}

.cv_body_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    background-color: rgb(0 0 0 / 40%);
    opacity: 0;
    visibility: hidden;
    transition: var(--cv-transition);
    cursor: none;
}

.menu-open .cv_body_overlay {
    opacity: 1;
    visibility: visible;
}

.cv_close {
    position: absolute;
}

.cv_main_wrapper{
    background-image: url(../images/body-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cv_section_heading {
    text-align: center;
    margin-bottom: 20px;
}

.cv_section_heading h3 {
    color: var(--cv-primary-color);
    margin-bottom: 5px;
}

/********************************************************
    Go to Top Style
 *******************************************************/
.cv_top_icon a {
    display: flex;
    background-color: var(--cv-primary-color);
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: var(--cv-transition)  opacity 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    animation: border-transform 4s linear infinite alternate forwards;
}

@keyframes border-transform {
  0%{
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    transform: translateY(0px);
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    transform: translateY(-20px);
  }
}

.cv_top_icon a:active {
  background-color: var(--cv-black-color);
}
.cv_top_icon a.show {
  opacity: 1;
  visibility: visible;
}

/********************************************************
    Header Section Style
*******************************************************/

.cv_header_wrapper {
    padding: 20px 0;
    position: relative;
    transition: var(--cv-transition);
}

.cv_header_wrapper.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #222637;
    animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.cv_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1520px;
    margin: auto;
    gap: 20px;
}

.cv_nav_item {
    display: flex;
    align-items: center;
    gap: 70px;
}

.cv_nav_item ul {
    display: flex;
    gap: 50px;
}

.cv_nav_item ul li a {
    font-size: 16px;
    color: var(--cv-white-color);
    padding: 15px 0;
}

.cv_nav_item ul li a:hover{
    color: var(--cv-primary-color);
}

.cv_nav_btn {
    display: flex;
    gap: 30px;
    align-items: center;
}

.cv_nav_btn span, .cv_res_logo{
    display: none;
    cursor: pointer;
}

/********************************************************
    Banner Section Style
*******************************************************/

.cv_banner_bg {
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 140px 30px 200px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cv_banner_bg::before {
    content: "";
    position: absolute;
    background-image: url(../images/banner-shapes.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 58px;
    left: 20px;
    animation: cv_ud 1.5s infinite alternate;
    max-width: 1780px;
}

@keyframes cv_ud {
    0% {
        transform: translate(0)
    }

    to {
        transform: translateY(-10px)
    }
}


.cv_banner_text {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cv_banner_text h1 {
    margin-bottom: 7px;
}

.cv_banner_text h1 span{
    color: var(--cv-primary-color);
}

.cv_banner_text p {
    max-width: 700px;
    text-align: center;
    margin: 20px auto 30px;
}

.cv_banner_text a{
    margin: auto;
}

.cv_banner_service {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cv_banner_box {
    background: url(../images/banner-box.png) no-repeat center;
    max-width: 275px;
    border-radius: 10px;
    text-align: center;
    border-bottom: none;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--cv-transition);
    background-size: contain;
}

.cv_banner_box:hover{
    transform: translateY(-5px);
}

.cv_banner_txt h5 {
    margin: 15px 0 7px;
}

.cv_banner_txt p {
    color: #E9E9E9;
    font-size: 14px;
}

.cv_banner_img{
    position: absolute;
    right: 0;
    bottom: 2px;
}

/********************************************************
    Home Pages Section Style
*******************************************************/

.cv_homepages_wrapper{
    padding: 0 0 100px;
}

.cv_homepages_content {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.cv_homepages_img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.cv_homepages_img img{
    border-radius: 10px;
    object-fit: cover;
    transition: var(--cv-transition);
    width: 100%;
}

.cv_homepages_content:hover .cv_homepages_img img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.cv_homepages_img:after {
    background: rgba(24, 24, 24, 0.74);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    backdrop-filter: blur(3px);
}

.cv_homepages_content:hover .cv_homepages_img:after {
    left: 0;
    right: 0;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cv_select_version {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    transform: scale(0);
}

.cv_homepages_content:hover .cv_select_version{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cv_homepages_content span {
    font-family: 'Barlow', sans-serif;
    position: relative;
    color: var(--cv-white-color);
    text-align: center;
    font-weight: 600;
    background: url(../images/btn-bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7px 15px;
    min-width: 235px;
    display: flex;
    justify-content: center;
    margin: auto;
    width: fit-content;
}
.cv-happy-customers-heading{
    text-align: center;
}
.cv-happy-customers-heading h1 {
    font-size: 46px;
    font-weight: 900;
    background: -webkit-linear-gradient( 58deg, #7ef6ab 17%, #1dd4eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: 0 auto;
}
.cv-happy-customers-heading p {
    font-size: 24px;
    color: #c2c9de;
    padding: 20px 0px 46px;
}

.cv-happy-customers-heading h2 {
    font-size: 60px;
    font-weight: 800;
    background: -webkit-linear-gradient(58deg, #ffa61e -33%, #fd9a01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 38px 0px 0px;
    width: fit-content;
    margin: 0 auto;
}
.demo {
    font-size: 120px;
    color: #ffffff;
    font-weight: 800;
    background: -webkit-linear-gradient( 30deg, #7ef6ab -27%, #1dd4eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    padding: 5px 0px 39px;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.cv-happy-customers-heading.aos-init.aos-animate a {
    pointer-events: none;
    color: white;
    border: 1px dashed var(--cv-primary-color);
    border-radius: 15px;
    padding: 10px 15px;
    font-size: 20px;
}
.carousel-wrapper {
    --width: 350px;
    --gap: 0;
    --num-items: 10;
    --ani-offset: calc(var(--width) * var(--num-items) * -1);
    --ani-speed: 20s;
    overflow: hidden;
    position: relative;
  }
  .carousel-wrapper::before,
  .carousel-wrapper::after{
    content: '';
    position: absolute;
    width: 20%;
    height: 100%;
    z-index: 1;
    top: 0;
  }
  .carousel-wrapper::before{
    left: 0;
    background-image: linear-gradient(to right,var(--bg-clr) 0%,transparent 50%);
  }
  .carousel-wrapper::after{
    right: 0;
    background-image: linear-gradient(to left,var(--bg-clr) 0%,transparent 50%);
  }
  
  .carousel {
    display: flex;
    align-items: center;
    animation: slide var(--ani-speed) linear infinite;
  }
  .item{
    flex: 1 0 var(--width);
    text-align: center;
    padding:1rem;
  }
  .item:last-child{
    /*background: red;*/
  }
  /* .item > img{
    width: 100%;
    height: auto;
    object-fit: cover;
  } */
  
  @keyframes slide {
    100% {
      transform: translateX(var(--ani-offset));
    }
  }
  .image-slider {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: scroll linear infinite;
    overflow:hidden ;
}
.image-slider2 {    
    animation: scroll2 linear infinite;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1920px); }
}
@keyframes scroll {				
    0% { transform: translateX(0); }
    100% { transform: translateX(-1920); }
}
/* .image-slider img {
    width: 500px;
    height: auto;
    border-radius: 10px;
} */
.image-slider .item{
    width: 550px;
    height: auto;
}
/********************************************************
    Features Section Style
*******************************************************/

.cv_feature_wrapper {
    padding-bottom: 100px;
}

.cv_feature_bg {
    background-image: url(../images/feature-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 100px 0;
    border-radius: 20px;
    position: relative;
}

.cv_feature_bg .cv_section_heading h3{
    color: var(--cv-white-color);
}

.cv_feature_box {
    background: url(../images/feature-box-big.png) no-repeat top;
    border-radius: 10px;
    text-align: center;
    border-bottom: none;
    padding: 40px 30px;
    min-height: 152px;
    cursor: pointer;
    transition: var(--cv-transition);
}

.cv_feature_box:hover{
    transform: translateY(-5px);
}

.cv_feature_box h5 {
    margin-top: 10px;
    /* color: #EFEFEF; */
    color:var(--cv-white-color);
}
.mt-20{
    margin-top: 20px !important;
}
.cv-copyright-wrapper {
    background-color: #0E0F16;
    padding: 15px 0px;
    text-align: center;
}
/********************************************************
    Responsive Layout Section Style
*******************************************************/
.cv_autoresponder_wrapper{
    padding: 0px 0px 100px;
}
.cv_autoresponder_wrapper .cv_autoresponder_img img{
    border-radius: 10px;
}
.cv_autoresponder_img{
    text-align: center;
}
.cv_layout_wrapper{
    background-image: url(../images/layout-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.cv_layout_wrapper::before{
    content: "";
    position: absolute;
    background-image: url(../images/layout-shapes.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 58px;
    left: 20px;
    animation: cv_ud 1.5s infinite alternate;
    max-width: 1786px;
}

/********************************************************
    Inner Pages Section Style
*******************************************************/

.cv_inrpage_wrapper {
    overflow: hidden;
}

.cv_pages_slider1, .cv_pages_slider2 {
    margin-bottom: 30px;
}

.cv_pages_slider2 {
    padding-left: 19px;
}

.cv_pages_box {
    text-align: center;
}

.cv_pages_img img {
    min-height: 321px;
    width: 100%;
    object-fit: cover;
}

.cv_pages_box h4{
    margin-top: 30px;
}
/* About section css start */
.qp-about-join {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px, 1fr));
    align-items: center;
    gap: 10px;
}
.qp-text-li {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    gap: 10px;
}
.qp-about-heading p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}
.qp-about-heading h4{
    font-size: 30px;
    color: #FD9A01;
    margin-bottom: 20px;
}
.qp-about-row{
    margin-top: 40px;
}
.qp-about-text{
    margin-left: 20px;
}
.qp-about-img{
    max-width: 100%;
    width: 100%;
}
.qp-about-paratext{
    font-size: 15px;
    font-weight: 400;
}
/* About Section Css End */
/********************************************************
    Compatibility Section Style
*******************************************************/

.cv_compatibility_wrapper {
    background-image: url(../images/compatibility-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    overflow: hidden;
}

.cv_compatibility_wrapper::before {
    content: "";
    position: absolute;
    background-image: url(../images/compatibility-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 100%;
    height: 100%;
    top: 0;
    animation: cv_ud 1.5s infinite alternate;
}

.cv_compat_desktop, .cv_compat_mob {
    text-align: center;
    position: relative;
    max-width: fit-content;
    margin: auto;
}

.cv_compat_chrome {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 0);
}

.cv_inner_img {
    position: relative;
}

.cv_inner_img img:last-child {
    position: absolute;
    bottom: 10px;
    animation: cv_ud 1.5s infinite alternate;
}

.cv_compat_mob{
    display: none;
}

.cv_compat_mob img:last-child {
    margin-top: 20px;
}
.cv-text-background {
    border-radius: 10px;
    padding: 20px 20px;
    /* border: 2px solid transparent;
    background-image: linear-gradient(180deg,rgb(255 255 255 / 47%) 0%, rgb(255 255 255 / 15%) 100%), linear-gradient(90deg, rgb(255 255 255 / 25%), rgb(255 255 255 / 4%));
    background-origin: border-box;
    background-clip: padding-box, border-box; */
    margin: 30px auto 0;
    background-image: url(../images/textbg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.cv_layout_img{
    text-align: center;
}
.cv_second_layout_wrapper .container-fluid{
    max-width: 1580px;
}
/********************************************************
    Top Selling Section Style
*******************************************************/

.cv_selling_bg{
    background-image: url(../images/selling-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 100px 0;
    border-radius: 20px;
    position: relative;
}

.cv_selling_bg .cv_section_heading{
    margin-bottom: -45px;
}

.cv_selling_bg .cv_section_heading h3 {
    color: var(--cv-white-color);
}

.cv_selling_content {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 65px;
}

.cv_selling_content li {
    background: #2ACF94;
    padding: 0 30px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 65px;
    max-width: 580px;
}

.cv_selling_content li:first-child {
    background: #AB4FE3;
}

.cv_selling_content li:last-child {
    background: #1FB3F2;
}

.cv_selling_content li a img{
    margin-top: -65px;
    border-radius: 10px;
    transition: var(--cv-transition);
}

.cv_selling_content li a:hover img{
    transform: translateY(45px);
}

.cv_selling_content li a h4 {
    padding-top: 20px;
} 
.cv_selling_content li a p{
    color: var(--cv-white-color);
    font-size: 16px;
    margin-top: 10px;
}

/********************************************************
    Footer Section Style
*******************************************************/

.cv_footer_wrapper {
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
}

.cv_footer_content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cv_footer_content h3 {
    font-size: 40px;
}

.cv_footer_content p {
    margin: 20px 0 30px;
}

.cv_footer_content a{
    margin: auto;
}

.cv_footer_img {
    position: absolute;
    bottom: 0;
    left: 20px;
}
.cv_footer_second_img{
    position: absolute;
    bottom: 0;
    right: 0px;
}
/**/
.cv_new_tag {
    width: 100px;
    display: flex;
    align-items: center;
    height: 35px;
    border-radius: 4px 4px 0px 4px;
    background: linear-gradient(180deg, #ff517e 0%, #e72759 100%);
    position: absolute;
    top: -10px;
    right: -15px;
    justify-content: center;
    font-size: 15px;
}

.cv_new_tag::after {
    content: "";
    position: absolute;
    border-right: 15px solid transparent;
    border-top: 10px solid #ff517e;
    right: 0;
    top: 35px;
}