/********************************************************
1. body start
 *******************************************************/
:root {
    --vr-theme-color:#600ee4;
    --vr-white-color: #ffffff;    
    --vr-heading-color:#220056;
    --vr-grey-color:#8c919d;    
    --vr-text-color:#222;    
    --vr-bg-color:#101418;    
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;    
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}   
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;          
}
img {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}
.vr-top-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--vr-theme-color);
    text-transform: capitalize;
    text-align: center; 
    padding: 0 40px;
    display: inline-block;
}
.vr-heading {
    font-size: 40px;
    color: var(--vr-heading-color);
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}
.vr-paragraph{    
    font-size: 17px;    
    color: var(--vr-grey-color);
    font-weight: 400;
}
/* button css start*/
.vr-btn {
    min-width: 150px; 
    padding: 15px 20px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--vr-white-color);
    text-transform: capitalize;
    background-color: var(--vr-theme-color);   
    border-radius: 5px; 
    transition: all 0.3s ease-in-out;
}  
.vr-btn:hover {
    background: #1e63e5;
    color: var(--vr-white-color);
}
button.vr-btn{
    border: none;
}
/* button css end*/ 

/* logo */
.vr-navbar-menu .responsive-logo a img{
    display: none;
}
.vr-toggle-btn{
    display: none;
}
/* logo */
/* Preloader */
.preloader_active {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
}

.preloader_active .preloader_holder {
    position: absolute;
    left: 0;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
}

.preloader_active .preloader_holder .preloader span {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50px;
    position: absolute;
    -webkit-animation: loadingCircles 1s infinite;
    -moz-animation: loadingCircles 1s infinite;
    animation: loadingCircles 1s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.preloader_wrapper>.preloader>span:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.preloader_wrapper>.preloader>span:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.preloader_holder {
    display: none;
}

.preloader_open {
    position: fixed;
    background-color: transparent;
    z-index: 9999;
    height: 100%;
    width: 100%;
    -webkit-transition: .2s all ease;
    -o-transition: .2s all ease;
    transition: .2s all ease;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.preloader_open.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader_open.loaded:before,
.preloader_open.loaded:after {
    width: 0%;
}

.preloader_open:before,
.preloader_open:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.preloader_open:before {
    top: 0;
    left: 0;
}

.preloader_open:after {
    bottom: 0;
    right: 0;
}
.preloader_active .preloader_holder {
    background-color: var(--vr-white-color);
}
.preloader_active .preloader_holder .preloader span {
    box-shadow: 0px 0px 0px 0px var(--vr-theme-color);
}
@-webkit-keyframes loadingCircles{
    0%{-webkit-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--vr-theme-color);}
    100%{-webkit-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--vr-theme-color);}
}
@-moz-keyframes loadingCircles{
    0%{-moz-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--vr-theme-color);}
    100%{-moz-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--vr-theme-color);}
}
@keyframes loadingCircles{
    0%{transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--vr-theme-color);}
    100%{transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--vr-theme-color);}
}
.preloader_open:before, .preloader_open:after {
    background-color: var(--vr-white-color);
}
/* Preloader */

/* Go to top */
#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}

#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounceInDown 2s;
    -webkit-animation: bounceInDown 2s;
    -moz-animation: bounceInDown 2s;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}
span.fa.fa-angle-double-up {
    background: var(--vr-theme-color);
    padding: 15px 18px;
    border-radius: 50px;
    font-size: 18px;
    color: var(--vr-white-color);
    transition: all 0.3s;
}
/* Go to top */

/* header section css start */
.vr-header-wrapper {
    background-color: var(--vr-white-color);
    padding: 20px 0;
}
.main_menu_parent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.main_menu_wrapper ul,
.main_menu_wrapper li {
    display: inline-block;
    position: relative;
}
.main_menu_wrapper ul>li>a {
    padding: 12px 20px;
    display: inline-block;
    font-weight: 400;
}
.main_menu_wrapper>ul>li {
    position: relative;
}
.main_menu_wrapper ul > li > a {
    padding: 4px 20px;
    display: inline-block;
    font-weight: 500;
    color: var(--vr-text-color);
    transition: all 0.3s;
}
.main_menu_wrapper>ul>li.active > a, .main_menu_wrapper ul > li > a:hover {
    color: var(--vr-theme-color);
}
.cs_search_wrap .display_flex {
    align-items: center;
}
/* header section css end */
/* banner section css start */
.vr-banner-wrapper {
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 206px 0;
    position: relative;
    z-index: 1;
}
.vr-banner-wrapper::before {
    content: '';
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1)70%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.vr-header-wrapper .container, .vr-banner-wrapper .container {
    max-width: 1400px;
}
.vr-top-heading-div {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}
.vr-top-heading-div span.vr-left, .vr-top-heading-div span.vr-right {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--vr-theme-color);    
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
}
.vr-top-heading-div span.vr-left{
    left: 0;
}
.vr-top-heading-div span.vr-right{
    right: 0;
}
.vr-banner-left h4 {
    text-align: left;
}
.vr-banner-left .vr-top-heading{
    color: var(--vr-white-color);
}
.vr-banner-left .vr-top-heading-div span.vr-left, .vr-banner-left .vr-top-heading-div span.vr-right, .vr-client-heading .vr-top-heading-div span.vr-left, .vr-client-heading .vr-top-heading-div span.vr-right{
    background: var(--vr-white-color);
}
.vr-banner-left h1 {
    font-size: 65px;
    color: var(--vr-white-color);
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 20px;    
}
.vr-banner-left h1 span{
    color: var(--vr-theme-color);
}
.vr-banner-left p {
    font-size: 16px;
    line-height: 26px;
    color: var(--vr-white-color);
    font-weight: 400;
    max-width: 520px;
    width: 100%;
}
.vr-banner-btn{
    margin-top: 35px;
}
.vr-banner-btn .vr-btn {
    min-width: 200px;        
    font-size: 18px;
}
.vr-banner-right {
    text-align: right;    
}
.vr-banner-right img {
    max-width: 750px;
    height: 712px;
    object-fit: contain;
}
/* banner section css end */

/* partner section css start */
.vr-partner-wrapper {
    padding: 0px 30px;
    background-color: var(--vr-theme-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin-top: -180px;
    border-radius: 20px;
    margin-bottom: 80px;
}
.vr-partner-wrapper .swiper-container {
    overflow: hidden !important;
    padding: 80px 0;
}
.vr-partner-heading span{
    display: block;
    color: var(--vr-theme-color);    
    font-weight: 800;
}
.vr-partner-wrapper .swiper-slide{
    text-align: center;    
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}
.vr-partner-wrapper .swiper-slide img {
    max-width: 103px;
    height: 50px;
    object-fit: contain;
}
.vr-partner-wrapper .swiper-slide:hover{
    transform: translateY(-10px)scale(1.1);
}
.vr-partner-wrapper .swiper-slide:hover{
    opacity: 1;
}
/* partner section css end */

/* about section css start */
.vr-about-wrapper {
    background-color: var(--vr-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    width: 100%;
    position: relative;
}
.vr-about-box {
    padding: 40px 17px 65px 18px;
    border-radius: 10px;
    background-color: #f7fcff;
    border: 1px solid #c6eaff;
    transition: all 0.3s ease-in-out;
}
.vr-about-inner{
    text-align: center;
}
.vr-about-inner span{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow:-9.804px 15.096px 10px rgba(38,171,250,0.2);
    background-color: #5fc3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all 0.3s ease-in-out;
}
.vr-about-inner span img {
    max-width: 34px;
    height: 30px;
    object-fit: contain;
}
.vr-about-inner h5{
    font-size: 20px;
    color: #38b5ff;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    margin-top: 30px;
}
.vr-about-inner .vr-paragraph{
    margin-top: 24px;
}
.vr-about-btn{
    max-width: 140px;
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    background-color: #f7fcff;
    border: 1px solid #c6eaff;    
    margin: -25px auto 0 auto;
    transition: all 0.3s ease-in-out;
}
.vr-about-btn a{
    font-size: 12px;
    letter-spacing: 1px;    
    color: #5fc3ff;
    text-transform: uppercase;
    font-weight: 700;
}
.vr-about-left-img {
    text-align: right;
}
.vr-about-left-img img {
    max-width: 470px;
    width: 100%;
}
.vr-about-right .vr-heading {
    text-align: left;
}
.vr-about-right .vr-top-heading{
    text-align: left;
}
.vr-about-right .vr-paragraph {    
    margin: 22px 0 30px 0;
}
/* about section css end */

/* activity section css start */
.vr-activity-wrapper {
    padding: 80px 0;
    background-color: var(--vr-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.vr-activity-box {
    position: relative;
}
.vr-activity-heading {
    padding-bottom: 50px;
    max-width: 500px;
    margin: auto;
    text-align: center;
}
.vr-service-img > img {
    max-width: 104px;
    height: 90px;
    object-fit: contain;    
    transition: all 0.8s;
}
.vr-activity-box {
    background: var(--vr-white-color);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.07);
    padding: 40px 20px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}
.vr-activity-box:hover .vr-service-img > img{
    transform: translateY(-5px);
}
.vr-activity-inner>img:first-child {
    margin-left: 5px;
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}
.vr-activity-inner h3 {
    font-size: 20px;
    color: var(--vr-text-color);
    font-weight: 600;
    text-transform: capitalize;
    padding-top: 10px;
    transition: all 0.3s;
}
.vr-activity-inner p {
    font-size: 15px;
    font-weight: 400;
    color: var(--vr-grey-color);
    padding: 20px 0;
}
.vr-activity-box:hover .vr-activity-inner h3{
    color: var(--vr-theme-color);
}
.vr-activity-inner .vr-paragraph {
    font-size: 16px;    
    margin: 10px 0 0px 0;
    color: var(--vr-text-color);
}
.vr-more img {
    margin-left: 5px;
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}
/* activity section css end */

/* why choose us section css start */
.vr-choose-wrapper{
    background-color: #fcf9ff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    width: 100%;    
}
.vr-choose-img {
    text-align: center;
}
.vr-choose-img img {
    max-width: 400px;
    width: 100%;
}
.vr-choose-heading .vr-top-heading, .vr-choose-heading .vr-heading {
    text-align: left;
}
.vr-choose-heading {
    max-width: 600px;
    padding-bottom: 30px;
}
.vr-choose-box {
    background-color: var(--vr-white-color);
    border-radius: 5px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.05);
}
.vr-choose-box > img {
    max-width: 90px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: 20px;
    right: -35px;
    opacity: 0.5;
}
.vr-choose-box span {
    height: 70px;
    width: 70px;
    background-color: var(--vr-theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;        
}
.vr-choose-box span img{
    max-width: 28px;
    height: 32px;
    object-fit: contain;
}
.vr-choose-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--vr-text-color);
    text-transform: capitalize;
    padding-top: 15px;
}
/* why choose us section css end */

/* counter section css start */
.vr-counter-wrapper {
    background-image: url(../images/counter.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
.vr-counter-wrapper::before{
    content: '';
    background: rgba( 0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.vr-counter-parent {    
    text-align: center;    
}
.vr-count > span {
    width: 90px;
    height: 90px;
    background: var(--vr-theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.vr-count > span img {
    max-width: 45px;
    height: 45px;
    object-fit: contain;
}
.counting {
    font-size: 45px;
    color: var(--vr-white-color);
    font-weight: 700;
}
.vr-count-heading h5 {
    font-size: 18px;
    color: var(--vr-white-color);
    font-weight: 600;
    text-transform: capitalize;
}
.vr-count:hover span{
    transform: translateY(-10px);
}
/* counter section css end */

/* client section css start */
.vr-client-wrapper {
    padding: 80px 0 60px 0;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(../images/testimonial-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
}
.vr-client-wrapper.vr-client-inner-pages {
    background: var(--vr-white-color);
    margin-bottom: 80px;
}
.vr-client-heading .vr-heading {
    max-width: 600px;
    margin: auto;
    color: var(--vr-white-color); 
}
.vr-client-wrapper.vr-client-inner-pages .vr-client-heading .vr-heading{
    color: var(--vr-heading-color);
}
.vr-client-wrapper.vr-client-inner-pages .vr-client-heading .vr-top-heading{
    color: var(--vr-theme-color);
}
.vr-client-wrapper.vr-client-inner-pages .vr-client-heading .vr-top-heading-div span.vr-right, .vr-client-wrapper.vr-client-inner-pages .vr-client-heading .vr-top-heading-div span.vr-left{
    background: var(--vr-theme-color);
}
.vr-client-heading p {
    font-size: 16px;
    font-weight: 500;
    color: var(--vr-white-color);
    max-width: 390px;
    width: 100%;
    padding-top: 20px;
}
.vr-client-box {
    background-color: var(--vr-white-color);
    border-radius: 15px;
    padding: 50px 30px 45px 40px;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.vr-client-wrapper.vr-client-inner-pages .vr-client-box {
    background-color: #fcf9ff;
}
.vr-client-heading {
    padding-bottom: 20px;
    text-align: center;
}
.vr-client-heading .vr-top-heading {
    color: var(--vr-white-color);
}
.vr-client-box-inner .vr-client-heading {
    display: flex;
    align-items: center;
}
.vr-client-name {
    margin-left: 20px;
    text-align: left;
}
.vr-client-name h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--vr-heading-color);
    transition: all 0.3s ease-in-out; 
}
.vr-client-name p {
    font-size: 16px;
    font-weight: 500;
    color: var(--vr-theme-color);
    padding-top: 0;
}
.vr-client-text .vr-paragraph {
    font-size: 15px;    
}
.vr-qoute-img {
    position: absolute;
    top: -15px;
    right: 20px;
}
.vr-qoute-img span img {
    max-width: 50px;
    height: 40px;
    object-fit: contain;
}
.vr-client-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
}
.vr-client-wrapper .swiper-container {
    padding-bottom: 50px;
    overflow: hidden !important;
}
.vr-client-wrapper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: var(--vr-white-color);
}
.vr-client-wrapper .swiper-pagination-bullet-active {
    background-color: var(--vr-white-color);
}
.vr-client-wrapper .swiper-slide{
    transition: all 0.3s ease-in-out;
}
.vr-client-wrapper .swiper-slide:hover .vr-client-box{
    box-shadow:1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
}
/* client section css end */

/* project section css start */
.vr-project-wrapper{
    padding: 80px 0;
    background-color: var(--vr-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.vr-project-wrapper .vr-activity-heading { 
    max-width: 370px;
}
.vr-project-box {
    background: var(--vr-white-color);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.07);
    padding:40px 30px;
    transition: all 0.3s;
}
.vr-project-box:hover{
    transform: translateY(-10px);
}
.vr-project-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.vr-project-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--vr-text-color);
    text-transform: capitalize;
    padding: 18px 0 10px 0;
    transition: all 0.3s;
}
.vr-project-box:hover .vr-project-content h4{
    color: var(--vr-theme-color);
}
.vr-project-content p {
    font-size: 15px;
    font-weight: 400;
    color: var(--vr-grey-color);
    margin-bottom: 15px;
}
/* project section css end */

/* blog section css start */
.vr-blog-wrapper {
    padding: 80px 0;
    background-color: var(--vr-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin-bottom: 100px;
}
.vr-blog-heading {
    padding-bottom: 50px;
    max-width: 500px;
    width: 100%;
    margin: auto;
    text-align: center;
}
.vr-blog-heading .vr-paragraph{
    margin-left: auto;
    color: var(--vr-theme-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.vr-blog-heading img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
    margin: 2px 0 0 5px;
}
.vr-blog-heading .vr-paragraph:hover{
    letter-spacing: 2px;
}
.vr-blog-content{
    position: relative;
}
.vr-blog-img {
    overflow: hidden;
    border-radius: 15px 15px 0px 0px;
}
.vr-blog-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;    
    border-radius: 15px 15px 0px 0px;
    transition: all 0.3s ease-in-out;    
}
.vr-blog-box:hover .vr-blog-img img{
    transform: scale(1.2)rotate(5deg);
}
.vr-blog-content {
    padding: 25px 20px 25px 20px;
    position: relative;
    background: var(--vr-white-color);
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);    
    border-radius: 0px 0px 15px 15px;
}
.vr-blog-content>img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}
.vr-blog-content h4 {
    font-size: 20px;
    color: var(--vr-text-color);
    font-weight: 600;
    text-transform: capitalize;
}
.vr-blog-content .vr-paragraph { 
    font-size: 15px;
    margin: 15px 0;
}
.vr-blog-footer {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.vr-blog-footer-info {
    display: flex;
    align-items: center;
}
.vr-blog-footer-info:last-child {
    margin-left: 20px;
}
.vr-blog-footer-info a {
    font-size: 16px;
    color: var(--vr-theme-color);
    font-weight: 400;
    margin-left: 8px;
}
.vr-blog-footer-info img {    
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.vr-readmore {
    font-size: 16px;
    font-weight: 500;
    color: var(--vr-theme-color);    
    text-transform: capitalize;
    transition: all 0.3s;
}
.vr-readmore:hover{
    color: var(--vr-theme-color);
    letter-spacing: 1px;
}
/* blog section css end */
/* footer section css start */
.vr-footer-wrapper {
    padding: 80px 0;
    background-color:var(--vr-bg-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.vr-inner-pages-footer{
    margin-top: 100px;
}
.vr-footer-logo{
    margin-top: 6px;
}
.vr-footer-logo img {
    max-width: 215px;
    height: 41px;
    object-fit: contain;
}
.vr-footer-text .vr-paragraph {
    color: var(--vr-white-color);
    margin: 28px 0 10px 0; 
    font-size: 16px;
}
.vr-footer-text a{
    font-size: 16px;
    font-weight: 400;
    color: var(--vr-white-color);
    transition: all 0.3s ease-in-out;
}
.vr-footer-icon ul{
    margin-top: 25px;
    text-align: left;    
}
.vr-footer-icon ul li{
    display: inline-block;
    margin-right: 10px;
}
.vr-footer-icon ul li a {
    width: 44px;
    height: 44px;
    color: var(--vr-white-color);
    background-color: var(--vr-theme-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.vr-footer-icon ul li a:hover{
    background-color: var(--vr-theme-color);    
    color: var(--vr-white-color);    
    transform: translateY(-5px);
}
.vr-footer-icon ul li a img {
    max-width: 19px;
    height: 16px;
    object-fit: contain;
}
.vr-footer-linvr-heading .vr-heading {
    text-align: left;
    color: var(--vr-white-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 36px;
    position: relative;
}
.vr-footer-link ul li{    
    margin-bottom: 10px;
}
.vr-footer-link ul li a {
    color: var(--vr-white-color);
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}
.vr-footer-link ul li a:hover {
    letter-spacing: 1.5px;
}
.vr-footer-link ul li img {
    margin: -2px 10px 0 0;
    max-width: 15px;
    height: 15px;
    object-fit: contain;
}                       
.vr-footer-form{
    margin-top: 10px;
}
.vr-footer-form input {
    height: 50px;
    width: 100%;
    background-color: var(--vr-white-color);    
    border-radius: 5px;
    color: var(--vr-text-color); 
    font-weight: 400;
    border: none;
    padding: 0 20px;
    margin-bottom: 15px;
}
.vr-footer-form input::placeholder{
    font-size: 14px;
    color: var(--vr-text-color); 
    font-weight: 400;
}
.vr-footer-form .vr-btn {
    width: 100%;    
}
/* footer section css end */
/* copyright section css start */
.vr-copyright-wrapper {
    background-color: var(--vr-text-color);
}
.vr-copyright-wrapper p {
    font-size: 16px;
    color: var(--vr-white-color);
    font-weight: 400;    
    text-align: center;
    padding: 15px 0 10px 0;
}
.vr-copyright-wrapper a{
    color: var(--vr-theme-color);
    font-weight: 500;
}
/* copyright section css end */
/* swiper slider */
.vr-client-wrapper .swiper-pointer-events, .vr-partner-wrapper .swiper-pointer-events{
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
}
/* swiper slider */
/* Breadcrumb CSs Start */
.cs_pagetitle {
    position: relative;
    background-size: cover;    
    padding: 80px 0px;
    background-image: url(../images/testimonial-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    color: var(--vr-white-color);
    z-index: 1;
}
.cs_img_overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background-color: rgb(0 0 0 / 72%);
    z-index: -1;
}
.page_title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: var(--vr-white-color);
    float: left;
    margin: 0px;
    font-size: 36px;
    text-transform: capitalize;
}
.cs_pagetitle ul.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}
.cs_pagetitle ul.breadcrumb li {
    display: inline-block;
    list-style: none;
    padding-top: 5px;
}
.cs_pagetitle ul.breadcrumb li a {
    color: var(--vr-white-color);
    font-size: 18px;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/* Breadcrumb CSS End */

/* Blog Page CSS Start */
.cs_blog_wrapper{
    padding: 80px 0;
}
.cs_blog_img_box {
    position: relative;
}
.cs_blog_img {
    overflow: hidden;
    transition: all 0.4s;
}
.cs_blog_img img {
    transition: all 0.4s;
    position: relative;
    min-height: 230px;
    max-height: 230px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}
.cs_blog_date {
    position: absolute;
    bottom: -27px;
    left: 22px;
    color: var(--vr-theme-color);
    font-weight: 400;
}
.cs_blog_date h1 {
    color: var(--vr-text-color);
    font-size: 36px;
    font-weight: bold;
    background: var(--vr-white-color);
    width: 85px;
    text-align: center;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.cs_blog_date p {
    color: var(--vr-white-color);
    background: var(--vr-theme-color);
    width: 85px;
    text-align: center;
}
.cs_blog_text {
    margin-top: 40px;
}
.singleBlogWrapper .cs_blog_text {
    margin-top: 0px;
}
.cs_blog_text h3 {
    font-size: 20px;
    color: var(--vr-text-color);
    font-weight: 600;
    transition: all 0.3s;
    padding-top: 10px;
}
.cs_blog_text p {
    color: #898d94;
    padding: 8px 0px;
    text-align: justify;
    line-height: 1.5;
    font-size: 14px;
}
.cs_blog_user_comment {
    display: flex;
    align-items: center;
}
.cs_blog_user a {
    color: #898d94;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.cs_blog_comment {
    padding-left: 40px;
}
.cs_blog_comment a {
    color: #898d94;
    font-size: 14px;
}
/* Sidebar */
.cs_blog_sidebar_search_section {
    position: relative;
    margin-bottom: 30px;
}
.cs_blog_sidebar_search_section input[type="text"] {
    border: 1px solid #ececec;
    padding: 10px 40px 10px 20px;
    width: 100%;
    border-radius: 6px;
}
.cs_blog_sidebar_search_section i {
    color: #8585a5;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 18px;
}
.cs_blog_sidebar_categories {
    margin-top: 30px;
}
h4.widget-title {
    font-size: 20px;
    color: #272727;
    font-weight: 600;
    line-height: 32px;
    transition: all 0.3s;
}
.cs_blog_sidebar_categories ul {
    float: left;
    width: 100%;
    margin: 0px;
    padding-left: 20px;
    color: var(--vr-theme-color);
    list-style-type: disc;
    margin-top: 10px;
}
.cs_blog_sidebar_categories li {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #f3f0f0;
    padding-bottom: 5px;
}
.cs_blog_sidebar_categories ul li a {
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #858585;
    font-size: 15px;
}
.cs_blog_sidebar_post {
    margin-top: 30px;
}
.cs_latestPost_field {
    margin-top: 20px;
}
.cs_latestPost_field ul li {
    display: flex;
    margin-bottom: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.cs_latestPost_field ul li .cs_blog_thumb {
    margin-right: 10px;
    width: 70px;
    display: inline-block;
}
.cs_blog_thumb img {
    border: none;
    border-radius: 3px;
}
.cs_blog_title_wrap {
    width: calc(100% - 80px);
}
.cs_blog_title {
    font-weight: 400;
    text-transform: capitalize;
    color: #858585;
}
p.cs_sbar_blog_date {
    color: var(--vr-theme-color);
}
.cs_blog_sidebar_tags {
    margin-top: 30px;
}
.cs_sidebar_tags_box {
    margin-top: 30px;
}
.cs_blog_sidebar_tags ul {
    list-style-type: none;
}
.cs_blog_sidebar_tags ul li {
    border: none;
    margin-bottom: 20px;
    display: inline-block;
    margin-right: 7px;
}
a.ed_btn.ed_orange {
    color: var(--vr-white-color);
    background: var(--vr-theme-color);
    padding: 7px 10px;
    border: 1px solid var(--vr-theme-color);
    transition: all 0.4s;
}
/* Sidebar */
/* Blog Page CSS End */

/* Blog Single Page CSS Start */
.cs_single_blog_user_comment {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.cs_single_blog_uname a {
    color: #858585;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs_single_blog_user_comment .cs_blog_time {
    margin-left: 40px;
}
.singleBlogWrapper .cs_blog_img img {
    min-height: 400px;
    max-height: 400px;    
}
.cs_blog_time a {
    color: #898d94;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs_blog_time i {
    color: var(--vr-theme-color);
}
.cs_blog_comment {
    padding-left: 40px;
}
.cs_blog_comment a {
    color: #898d94;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cs_single_blog_img1_box1 {
    display: flex;
    justify-content: space-around;
    background: #f5f5f5;
    padding: 20px;
    align-items: center;
    margin: 30px 0;
}
.cs_single_blog_img1 {
    position: relative;
    width: 160px;
    margin-right: 10px;
}
.cs_single_blog_img1:before {
    content: "\f10e";
    right: 20px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--vr-theme-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 32px;
    background: var(--vr-white-color);
    border: 5px solid var(--vr-theme-color);
    padding-left: 8px;
    border-radius: 100%;
}
.cs_single_blog_img1 img {
    border-radius: 80px;
    border: 3px solid var(--vr-theme-color);
    width: 113px;
    height: 113px;
    object-fit: cover;
}
.cs_single_blog_text1 {
    width: 670px;
    position: relative;
}
.cs_blog_text p {
    color: #898d94;
    padding: 8px 0px;
    text-align: justify;
    line-height: 1.5;
}
.cs_single_blog_text1 h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--vr-theme-color);
    padding-left: 0px;
}
.cs_single_blog_text1 span {
    font-size: 16px;
    color: #808080c2;
    font-weight: 500;
}
.cs_single_blog_text1:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--vr-theme-color);
    position: absolute;
    right: 50%;
    font-size: 84px;
    margin: auto;
    top: 50%;
    opacity: .1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.cs_img_text_container img {
    width: 370px;
    display: inline-block;
    margin: 6px 15px 6px 0;
}
.cs_comment_box {
    margin-top: 50px;
}
.cs_comment_holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}
.cs_comment_user {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 30px;
}
.cs_comment_user img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}
.cs_comment_detail {
    width: calc(100% - 130px);
}
h5.cs_user_name {
    color: var(--vr-theme-color);
    font-size: 18px;
}
.cs_comment_detail p {
    padding: 0px 0px;
    font-size: 15px;
}
.cs_reply_btn {
    color: var(--vr-theme-color);
    margin-left: 15px;
}
.cs_comment_detail p:nth-child(2) {
    font-size: 14px;
    margin: 5px 0;
}
.cs_comment_detail p {
    padding: 0px 0px;
    font-size: 15px;
}
.cs_comment_form {
    margin-top: 70px;
}
.cs_comment_form_heading {
    padding-bottom: 20px;
}
.cs_field_holder {
    margin-bottom: 30px;
}
.cs_form_field {
    width: 100%;
    border: 1px solid #ececec;
    padding: 0 20px;
    height: 50px;
    display: flex;
}
textarea.cs_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
    border: 1px solid #ececec;
}
.cs_img_text_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.cs_img_text_container p {
    display: inline-block;
    width: calc(100% - 385px);
}
/* Blog Single Page CSS End */

/* Contact Page CSS Start */
.cs_contact_wrapper{
    padding: 80px 0;
}
.cs_contact_box {
    text-align: center;
}
.cs_contact_box h1 {
    color: var(--vr-heading-color);
    font-size: 20px;
    font-weight: 600;
    padding: 25px 0px 15px;
}
.cs_contact_box p {
    color: var(--vr-text-color);
}
.cs_contact_form {
    background: var(--vr-white-color);
    box-shadow: 0px 0px 30px 0px rgba(157, 134, 183, 0.1);
    padding: 50px 30px;
}
.cs_contact_form .cs_sub_heading {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
    color: var(--vr-heading-color);
}
.cs_contact_form .cs_field_holder {
    margin-bottom: 20px;
}
.cs_form_field {
    width: 100%;
    border: 1px solid #ececec;
    padding: 0 20px;
    height: 50px;
    display: flex;
}
.cs_field_holder textarea#message {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}
.cs_map_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
.cs_map_section iframe {
    width: 100%;
    border: none;
}
.ve-contact-form-parent {
    padding-top: 50px;
}
/* Contact Page CSS End */

/* Header CSS Start */
@media(min-width:992px){
    .vr-header-wrapper.vr-header-fixed {
        position: fixed;
        box-shadow: 0 0 25px 0 rgba(0,0,0,0.08);
        transition: all 0.7s ease-in-out;
        -webkit-animation: slideInDown .7s;
        -moz-animation: slideInDown 0.7s;
        -ms-animation: slideInDown 0.7s;
        -o-animation: slideInDown 0.7s;
        animation: slideInDown 0.7s;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
    }
    .menu_btn {
        display: none;
    }
    ul.sub_menu {
        position: absolute;
        width: max-content;
        min-width: 200px;
        top: 56px;
        left: 0;
        z-index: 9;
        transform: translate(20px, 0px);
        transition: 0.3s;
        opacity: 0;
        visibility: hidden;
        border: none;
        border-radius: 0 0 10px 10px;
        padding: 0 0 15px;
        background: var(--vr-white-color);
        box-shadow: 0px 6px 6px 0 rgba(0, 0, 0, 0.06);
    }
    ul.sub_menu li {
        display: block;
        text-align: left;
        padding: 0;
    }
    ul.sub_menu li a {
        display: block;
        padding: 12px 20px 0;
        overflow: hidden;
        position: relative;
    }
    .main_menu_wrapper>ul>li:hover ul.sub_menu {
        transform: translate(0px, 0px);
        visibility: visible;
        opacity: 1;
    }
}
@media(max-width:991px){
    .menu_btn {
        width: 50px;
        height: 50px;
        display: inline-block;
        text-align: center;
        line-height: 26px;
        border: 1px solid transparent;
        border-radius: 50%;
        padding: 21px 0 16px 0;
    }
    .menu_btn span {
        display: block;
        width: 18px;
        height: 2px;
        transition: 0.3s;
        margin: 0 auto 3px;
        background: #222;
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(1) {
        transform: translate(0px, 4px) rotate(-48deg);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(3) {
        transform: translate(0px, -6px) rotate(48deg);
    }
    .main_menu_wrapper {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 999;
        overflow: hidden;
        overflow-y: auto;
        background: var(--vr-white-color);
        box-shadow: 2px 4px 28px 0px rgba( 0, 0, 0, 0.1);
    }
    .main_menu_wrapper.open {
        left: 0;
    }
    .main_menu_wrapper,
    .main_menu_wrapper.open {
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    .main_menu_wrapper li {
        width: 100%;
        text-align: left;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--main-border-color);
    }
    .main_menu_wrapper li.has_submenu {
        padding-left: 0;
    }
    .main_menu_wrapper li.has_submenu>ul {
        display: none;
    }
    .main_menu_wrapper li:last-child {
        border: none;
        padding-bottom: 0;
    }
    .main_menu_wrapper li>ul>li {
        padding-left: 25px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 15px 20px 0px;
        width: 100%;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        position: absolute;
        bottom: 0;
        content: '';
        background: var(--vr-theme-color);
    }
    .main_menu_wrapper li.has_submenu:after {
        right: 21px;
        width: 12px;
        height: 2px;
        top: 25px;
    }
    .main_menu_wrapper li.has_submenu:before {
        right: 26px;
        width: 2px;
        height: 12px;
        top: 20px;
    }
    .main_menu_wrapper li.has_submenu.open::before {
        content: unset;
    }
    .main_menu_wrapper::-webkit-scrollbar {
        width: 3px;
    }
    .main_menu_wrapper::-webkit-scrollbar-track {
        background-color: var(--main-border-color);
    }
    .main_menu_wrapper::-webkit-scrollbar-thumb {
        background-color: var(--main-txt-color);
    }
    .vr-header-wrapper {        
        padding: 10px 0;
    }
}
/* Header CSS Start */

/* Responsive CSS Start */
@media(max-width:1550px){
    .vr-banner-right img {
        max-width: 100%;
        height: auto; 
    }
}
@media(max-width:1440px){
    .vr-banner-left h1 {
        font-size: 50px;
    }
}
@media(max-width:1199px){        
    .vr-navbar-menu ul li{
        margin-right: 30px;
    }
    .vr-banner-wrapper {
        padding:100px 0 50px 0;     
    }
    .vr-banner-right {     
        padding: 0px 0 0 0;
    }
    .vr-banner-right img {
        max-width: 100%;
    }    
    .vr-about-left-img {
        text-align: left;
    }
    .vr-blog-footer span:nth-child(2) {
        margin-left: 10px;
    }
    .vr-blog-footer span svg {
        margin-right: 2px;
    }
    .vr-client-box:after{
        max-width: 400px;
    }
    .vr-blog-img img {
        height: 220px;     
    }
}

@media(max-width:991px){
    .vr-header-right {
        max-width: 200px;
        width: 100%;
    }
    .vr-banne-right {
        margin-top: 30px;
    }
    .vr-navbar-menu .responsive-logo a img{
        display: block;
    }    
    .vr-brand-logo { 
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        position: relative;
    }    
    .vr-header-parent {      
        background: none;
    }    
    .vr-banner-left h1 {     
        max-width: 500px;
    }                
    .vr-banner-btn {
        margin-top: 20px;
    }
    .vr-banner-btn .vr-btn {
        min-width: 150px;
        font-size: 15px;
    }        
    .vr-banner-right {     
        text-align: center;
    }
    .counting {
        font-size: 30px;
    }
    .vr-about-right {
        margin-top: 30px;    
    }
    .vr-about-right .vr-dark-btn{
        margin: auto;
    }
    .single-content {
        flex: 0 0 33.33%;
        max-width: 33.33%;        
    }       
    .vr-count-heading h5 {
        font-size: 14px;
    }
    .vr-client-box:after{
        display: none;
    }
    .vr-footer-link-parent, .vr-footer-last-parent {
        margin-top: 30px;
    }
    .vr-activity-box.activity-second {
        margin: 30px 0;
    }
    .vr-team-img img {        
        max-width: 100%;
        height: auto;
    }
    .vr-banne-right img {
        max-width: 100%;
        height: auto;     
    }
    .counting {
        margin-top: 0;
    }
    .vr-menu-right {
        text-align: center;
    }
    .vr-service-img {     
        text-align: center;
    }
    .vr-service-img img {
        max-width: 100%;     
    }
    .vr-count > span {
        width: 85px;
        height: 85px;
    }
    .vr-count > span img {
        max-width: 44px;
        height: 44px;     
    }    
    .vr-choose-box h4 {
        font-size: 18px;
    }
    .vr-choose-wrapper {
        padding-bottom: 0px;
    }
    .vr-about-botm-parent .row {
        flex-direction: column-reverse;
    }
    .vr-heading {
        font-size: 30px;
    }
    .vr-choose-img {
        text-align: center;
        margin-top: 20px;
    }
    .ve-contact-form-parent > .row {
        flex-direction: column-reverse;
    }
    .cs_contact_box p {
        font-size: 14px;
    }
    .cs_contact_box h1 {
        padding: 15px 0px 10px;
    }
    .cs_contact_box {
        margin-bottom: 20px;
    }
    .ve-contact-form-parent {
        padding-top: 20px;
    }
}

@media(max-width:767px){       
    .single-content {
        flex: 0 0 50%;
        max-width: 50%;        
    } 
    .vr-banner-right img {
        max-width: 100%;
        height: auto;
    }
    .vr-about-left-img img {
        max-width: 400px;        
    }
    .vr-choose-box {
        max-width: 300px;
        margin: auto;
    }
    .vr-choose-heading .vr-top-heading, .vr-choose-heading .vr-heading {
        text-align: center;
    }
    .vr-choose-heading {
        text-align: center;
    }
    .vr-about-left-img {
        text-align: left;
    }
    .vr-client-wrapper.vr-client-inner-pages {
        margin-bottom: 50px;
    }
    .singleBlogWrapper .cs_blog_img img {
        min-height: 300px;
        max-height: 300px;
    }
    .cs_single_blog_text1 {
        width: 330px;
    }
    .cs_img_text_container {
        display: block;
    }
    .cs_img_text_container p {
        width: 100%;
    }
    
}
@media(max-width:575px){
    .vr-banner-left, .vr-banner-left h4 {
        text-align: center;
    } 
    .vr-banner-left h1 {
        max-width: 600px;
        margin: auto;
    }
    .vr-banner-left p {
        margin: 15px auto 0;
    }
    .vr-banner-wrapper {     
        background-position: inherit;
    }    
    .vr-banner-left h4 {
        font-size: 14px;
        max-width: 425px;
    }
    .vr-banner-left h1 {
        font-size: 30px;     
    }
    .vr-banner-left p {
        font-size: 13px;
        line-height: normal;     
    }
    .vr-banner-btn{
        display: block;
    }         
    .vr-header-right {     
        display: none;
    }
    .vr-toggle-btn {
        right: 15px;
    }    
    .vr-banner-wrapper {
        padding: 50px 0;
    }
    .vr-banner-wrapper::before {
        background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8)0%);
    }
    .cs_single_blog_uname a, .cs_blog_time a, .cs_blog_comment a {
        font-size: 13px;
    }
    .cs_single_blog_user_comment {
        margin-top: 20px;
    }
    .cs_single_blog_user_comment .cs_blog_time {
        margin-left: 0px;
    }
    .cs_blog_comment {
        padding-left: 0px;
    }
    .cs_single_blog_user_comment {        
        flex-wrap: wrap;
        gap: 10px;
    }
}
@media(max-width:480px){
    .vr-about-right .vr-paragraph {
        margin: 20px 0 20px 0;
        font-size: 14px;
    }
    .vr-top-heading {
        font-size: 18px;
        padding: 0 30px;
    }
    .vr-top-heading-div span.vr-left, .vr-top-heading-div span.vr-right {
        width: 20px;
        height: 3px;
    }
    .vr-about-left-img img {
        max-width: 300px;
    }
    .vr-heading, .vr-work-wrapper .vr-heading {        
        font-size: 25px;     
    }
    .vr-blog-heading .vr-heading{
        font-size: 22px;
    }
    .vr-blog-heading .vr-paragraph{
        font-size: 14px;
    }
    .vr-partner-heading .vr-heading {
        font-size: 17px;
    }
    .vr-activity-wrapper, .vr-about-wrapper, .vr-counter-wrapper, .vr-work-wrapper, .vr-gallery-wrapper, .vr-blog-wrapper, .vr-client-wrapper, .vr-menu-wrapper, .vr-cta-wrapper, .cs_blog_wrapper  {
        padding: 50px 0;     
    }
    .vr-choose-wrapper {
        padding-top: 50px;
    }
    .vr-project-wrapper{
        padding-bottom: 50px;
    }
    .vr-partner-wrapper .swiper-container {
        padding: 50px 0;
    }
    .vr-count > span {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    .vr-count > span img {
        max-width: 34px;
        height: 34px;
    }
    .counting {
        font-size: 25px;
    }
    .vr-count-heading h5 {
        font-size: 13px;
        font-weight: 500;
    }
    .vr-choose-img img {
        max-width: 300px;
    }  
    .vr-partner-wrapper {
        margin-top: -140px;        
        margin-bottom: 40px;
    } 
    .vr-blog-wrapper {
        margin-bottom: 50px;
    } 
    .vr-blog-heading {
        padding-bottom: 20px;     
    }
    .vr-footer-text .vr-paragraph {     
        font-size: 13px;
    }
    .vr-footer-linvr-heading .vr-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .vr-footer-link ul li a {        
        font-size: 14px;     
    }
    .vr-footer-link ul li {
        margin-bottom: 0px;
    }
    .vr-footer-wrapper {
        padding-bottom: 50px;     
    }
    .vr-client-wrapper.vr-client-inner-pages {
        margin-bottom: 0px;
    }
    .vr-client-name h6 {
        font-size: 18px;
        font-weight: 600;     
    }
    .vr-client-name p {
        font-size: 14px;     
    }
    .vr-client-name {
        margin-left: 10px;     
    }
    .vr-client-text .vr-paragraph {
        font-size: 13px;
    }
    .vr-inner-pages-footer {
        margin-top: 60px;
    }
    .cs_single_blog_img1_box1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cs_single_blog_text1 p, .cs_comment_detail p {
        text-align: center;        
    }    
    .cs_single_blog_img1:before{
        display: none;
    }
    .cs_single_blog_img1 img {
        width: 90px;
        height: 90px;
    }
    .cs_comment_holder {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cs_comment_user, .cs_comment_user img {
        width: 80px;
        height: 80px;
        margin-right: 0;
    }
    .cs_comment_detail {
        width: 100%;
    }
    .cs_comment_form {
        margin-top: 40px;
    }   
    .singleBlogWrapper .cs_blog_img img {
        min-height: 240px;
        max-height: 240px;
    } 
    .page_title h2 {
        font-size: 25px;
    }
    .cs_pagetitle {
        padding: 50px 0px;
    }
    .cs_pagetitle ul.breadcrumb li, .cs_pagetitle ul.breadcrumb li a{
        font-size: 14px;
    }
    .vr-activity-heading {
        padding-bottom: 20px;
    }
    .cs_contact_wrapper {
        padding: 50px 0;
    }
    .cs_map_section iframe {
        height: 350px;
    }
    .cs_contact_form {
        padding: 30px 20px;
    }
    .cs_contact_form .cs_sub_heading {
        margin-bottom: 20px;
        font-size: 18px;
    }
}
@media(max-width:425px){            
    .vr-partner-wrapper {     
        border-radius: 10px;
        margin-bottom: 30px;
    }
    .vr-activity-heading {
        padding-bottom: 30px;     
    }        
    .vr-client-box{
        margin-top: 20px;
    }    
    .vr-client-wrapper .swiper-container {
        padding-bottom: 40px;
    }    
    .vr-menu-list {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .vr-menu-list .vr-menu-img img {
        margin-right: 0;
    }
    .vr-menu-content {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .vr-blog-content {
        padding: 25px 10px; 
    }
    .vr-cta-heading .vr-heading {
        font-size: 25px;     
    }
    .vr-client-box {
        padding: 30px 20px 25px 20px;
    }
    .vr-project-box {
        padding: 30px 15px;
    }
}
@media(max-width:375px){    
    .single-content {
        flex: 0 0 100%;
        max-width: 100%;        
    }    
    .vr-gallery-img{
        margin-left: 15px;
    }       
    .vr-main-btn {
        flex-direction: column;
    }
    .vr-main-btn a:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .vr-banner-left {     
        text-align: center;
    }
    .main_menu_wrapper {
        left: -250px;
        width: 250px;
    }
}
/* Responsive CSS End */