
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

@import url(../vendor/animate.css);
@import url(../fonts/flaticon/flaticon.css);
@import url(../fonts/fontawesome/css/all.min.css);
@import url(../vendor/bootstrap/css/bootstrap.min.css);
@import url(../vendor/slick/slick.css);
@import url(../vendor/magnific-popup/dist/magnific-popup.css);
@import url(../vendor/nice-select/css/nice-select.css);

/* Root css */
:root {
	--text-color: #808285;
	--heading: #191919;
    --blue-dark: #5956e9;
	--light-gray: #fafafb;
	--dmsans: 'DM Sans', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
html{
    font-size: 100%;
}
a{
    color: inherit;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
a:hover,a:focus{
    color: inherit;
    text-decoration: none;
}
i,
span,
a{
    display: inline-block;
}
h1,
h2,
h3,
h4,
h5{
    font-weight: 700;
	letter-spacing: -0.03em;
}
h1,
h2,
h3,
h4,
h5,
h6{
    color: #000000;
    margin: 0px;
    font-family: var(--dmsans);
    font-weight: 700;
}
h1{
    font-size: 65px;
    line-height: 75px;
}
h2{
    font-size: 55px;
    line-height: 60px;
}
h3{
    font-size: 27px;
    line-height: 38px;
}
h4{
    font-size: 24px;
    line-height: 34px;

}
h5{
    font-size: 20px;
    line-height: 30px;
}
h6{
    font-size: 16px;
    line-height: 26px;
}
ul,
ol {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
p {
	margin: 0px;
}
input,
textarea {
	display: inherit;
}
input:focus,
textarea:focus{
	outline: none;
}
img {
	max-width: 100%;
}
blockquote{
	margin: 0;
}
body {
	font-family: var(--dmsans);
	font-weight: normal;
	font-style: normal;
	color: var(--text-color);
	font-size: 18px;
	line-height: 32px;
	overflow-x: hidden;
}
.bg_cover {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}


ul.social-link li{
	display: inline-block;
}
.section-title .sub-title{
    position: relative;
    font-weight: 700;
    color: var(--blue-dark);
}
.section-title .st-one{
    font-size: 24px;
    padding: 17px 35px;
    z-index: 1;
    margin-bottom: 25px;
}
.section-title .st-one:after{
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    background: url(../images/border-1.png) no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    background-position: bottom;
    top: auto;
    bottom: 0;
    height: 100%;
}
.section-title .st-two{
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 20px;
}
.section-title .st-two:before{
    margin-right: 25px;
}
.section-title .st-two:after{
    margin-left: 25px;
}
.section-title .st-two:before,
.section-title .st-two:after{
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    content: '';
    border-radius: 1.5px;
    background-color: var(--blue-dark);
}
.section-title-right .st-two:before,
.section-title-left .st-two:after{
    display: none;
}
.section-title h2{
    margin-bottom: 22px;
}
.section-title p{
    font-size: 22px;
    font-weight: 500;
}
.section-title-white .st-one:after{
    background: url(../images/border-2.png) no-repeat bottom;
    background-size: 100% 100%;
}
.section-title-white .st-two:before,
.section-title-white .st-two:after{
    background-color: #fff;
}
.section-title-white .sub-title,
.section-title-white p,
.section-title-white h2{
	color: #fff;
}
.font-45{
    font-size: 45px;
    line-height: 50px;
}

.fill-text {
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 auto;
    text-align: center;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(44, 44, 44, 0.1);
}

.container-1450{
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}
@media only screen and (min-width: 1550px){
    .container-1450{
        max-width: 1480px;
    }
}

.blue-dark{
    color: var(--blue-dark);
}

.dark-blue-bg{
    background-color: var(--blue-dark);
}

button {
	border: none;
}
.main-btn{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: center;
	padding: 12px 35px;
	background-color: var(--blue-dark);
	color: #fff;
	font-size: 16px;
	font-family: var(--dmsans);
	text-transform: capitalize;
	font-weight: 700;
	border-radius: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.main-btn:hover{
    background-color: var(--heading);
    color: #fff;
}
.main-btn.bordered-btn{
    background-color: transparent;
    border: 1px solid;
}
.bordered-btn.btn-white{
    border-color: #fff;
}
.bordered-btn.btn-white:hover{
    background-color: var(--heading);
    color: #fff;
    border-color: transparent;
}
.bordered-btn.btn-blue{
    border-color: var(--blue-dark);
    color: var(--blue-dark);
}
.bordered-btn.btn-blue:hover{
    background-color: var(--blue-dark);
    border-color: transparent;
    color: #fff;
}
.arrow-btn:after{
    display: inline-block;
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    margin-left: 10px;
}

/* Start scroll_up css */
.back-to-top {
    background: var(--blue-dark);
    border-radius: 50%;
    bottom: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 30px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 337;
}
.back-to-top:hover, .back-to-top:focus {
    background: var(--heading);
    color: #fff;
}

/*---==========================
   End Common css 
=========================---*/


/*---==========================
   02. Start Header css 
=========================---*/

.site-branding .brand-logo{
    max-width: 70px;
}

.card {
    border: none;
    text-align: center;
}
.profile-img {
    margin: 0 auto 15px;
}



.main-menu ul > li.has-children > a:before {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    display: inline-block;
    color: #162542;
    font-size: 14px;
    margin-left: 5px;
    float: right;
}
.main-menu ul li {
    display: inline-block;
    position: relative;
}
.main-menu ul li:first-child > a {
    padding-left: 0px;
}
.main-menu ul li > a {
    display: block;
    font-size: 17px;
    color: #162542;
    font-family: var(--rajdhani);
    text-transform: capitalize;
    font-weight: 700;
    padding: 35px 18px;
    line-height: 1;
}
.main-menu>ul>li>a:after{
    display: block;
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--blue-dark);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.main-menu ul li>a.active:before,
.main-menu ul>li>a.nav-link.active,
.main-menu ul li>a.active{
    color: var(--blue-dark);
}
.main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    min-width: 250px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 99;
    padding: 10px 0;
    height: auto;
    -webkit-box-shadow: 0 30px 70px 0 rgb(137 139 142 / 15%);
            box-shadow: 0 30px 70px 0 rgb(137 139 142 / 15%);
}
.main-menu ul li .sub-menu li {
    display: block;
    margin: 0;
}
.main-menu ul li .sub-menu li:last-child > a {
    border-bottom: none;
}
.main-menu ul li .sub-menu li a {
    display: block;
    padding: 0 20px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    line-height: 45px;
    margin: 0;
    color: #1b3255;
}
.main-menu ul li .sub-menu li a:hover {
    color: #fff;
    border-color: transparent;
}
.main-menu ul li .sub-menu li .sub-menu {
    left: 100%;
    top: 50%;
}
.main-menu ul li .sub-menu li:hover .sub-menu {
    top: 0%;
}
.main-menu ul li .sub-menu li:hover > a {
    color: var(--blue-dark);
}
.main-menu ul li:hover.has-children > a:before {
    color: var(--blue-dark);
}
.main-menu ul li:hover > a {
    color: var(--blue-dark);
}
.main-menu ul li>a.active:after,
.main-menu ul li:hover>a:after{
    width: 100%;
}
.main-menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.main-menu ul li .dd-trigger {
    display: none;
}
.main-menu ul li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #ececec;
}
.main-menu ul li:last-child {
    border-bottom: 0;
}
.main-menu ul li.active .sub-menu {
    border-top: 1px solid #ececec;
}
.main-menu ul li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--heading);
    padding: 13px 20px;
}
.main-menu ul li a:after{
    display: none;
}
.main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.main-menu ul li .sub-menu li a {
    color: #162542;
    padding: 0px 20px 0 40px;
    line-height: 45px;
}
.main-menu ul li .sub-menu li a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}
.main-menu ul > li.has-children .sub-menu li.has-children:hover > a:after {
    color: var(--blue-dark);
}
.main-menu ul li .dd-trigger {
    display: block;
    position: absolute;
    right: 0;
    height: 42px;
    width: 45px;
    top: 0;
    border-left: 1px solid #eaeaea;
    z-index: 2;
    background: transparent;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: #162542;
    font-size: 20px;
}
.main-menu.menu-on {
    left: 0;
}
.main-menu ul li.search-item{
    display: none;
}

.site-branding{
    display: inline-flex;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    content: '|';
}

.site-branding {
    display: inline-block;    
}

.main-menu ul li > a{
    font-style: 17px;
    font-weight: 500;
}

/*---==========================
   End Header css 
=========================---*/


/*---==========================
   03. Start Hero Section css 
=========================---*/
.hero-banner-v1{
    z-index: 1;
    padding: 155px 0 180px;   
}

.hero-banner-v1 .hero-content h1{
    margin-bottom: 35px;
    font-size: 95px;
    line-height: 90px;
}
.hero-banner-v1 .hero-content p{
    padding-right: 30%;
    font-weight: 500;
    margin-bottom: 45px;
}
.hero-banner-v1 .bg-one,
.hero-banner-v1 .bg-two{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-banner-v1 .hero-img{
    position: absolute;
    z-index: -1;
}
.hero-banner-v1 .hero-img.hero-img-one{
    bottom: 60px;
    left: 65px;
}
.hero-banner-v1 .hero-img.hero-img-one img{
    border-radius: 121px;
}
.hero-banner-v1 .hero-img.hero-img-two{
    bottom: 80px;
    right: 150px;
}
.hero-banner-v1 .hero-img.hero-img-two img{
    border-radius: 245px;
}
.hero-banner-v1 .hero-img.hero-img-three{
    bottom: 190px;
    right: 38%;
}
.hero-banner-v1 .shape{
    position: absolute;
}
.hero-banner-v1 .shape-one{
    top: 190px;
    left: 130px;
}
.hero-banner-v1 .shape-two{
    top: 190px;
    right: 40%;    
}
.hero-banner-v1 .shape-three{
    bottom: 110px;
    left: 45%;
}

/* Hero Banner Two */

.hero-banner-v2{
    padding: 120px 0 70px;
    overflow: hidden;
}
.hero-banner-v2:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    -webkit-filter: blur(110px);
            filter: blur(110px);
    background-color: rgb(89 86 233 / 60%);
    z-index: -2;
}
.hero-banner-v2 .shape{
    position: absolute;
    top: 0;
    z-index: -1;
}
.hero-banner-v2 .shape.shape-one{
    left: 0;
}
.hero-banner-v2 .shape.shape-four{
    bottom: 0px;
    left: 0;
}
.hero-banner-v2 .hero-content span.sub-title{
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 15px;
}
.hero-banner-v2 .hero-content span.sub-title i{
    margin-right: 15px;
}
.hero-banner-v2 .hero-content h1{
    margin-bottom: 30px;
}
.hero-banner-v2 .hero-content p{
    margin-bottom: 30px;
}
.hero-banner-v2 .hero-img{
    position: relative;
    min-width: 590px;
    z-index: 1;
}
.hero-banner-v2 .hero-img .hero-shape{
    position: absolute;
    z-index: -1;
}
.hero-banner-v2 .hero-img .hero-shape.hero-shape-one{
    right: -50px;
    top: 100px;
}
.hero-banner-v2 .hero-img .hero-shape.hero-shape-two{
    left: -50px;
    bottom: 100px;
}

.hero-img {
    height: 690px;
    width: 495px
}

/* Hero Banner v3 */

.hero-banner-v3{
    padding: 120px 0 270px;
}
.hero-banner-v3 .hero-pattern{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-banner-v3 .shape{
    position: absolute;
    z-index: -1;
}
.hero-banner-v3 .shape.shape-one {
    top: 15%;
    left: 5%;
}
.hero-banner-v3 .shape.shape-two {
    top: 11%;
    left: 8%;
}
.hero-banner-v3 .shape.shape-three {
    top: 13%;
    right: 7%;
}
.hero-banner-v3 .shape.shape-four {
    top: 25%;
    right: 6%;
}
.hero-banner-v3 .shape.shape-five {
    bottom: 15%;
    left: 6%;
}
.hero-banner-v3 .shape.shape-six {
    bottom: 25%;
    left: 12%;
}
.hero-banner-v3 .hero-content .video-popup{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.hero-banner-v3 .hero-content h1{
    font-size: 70px;
    line-height: 75px;
    color: #fff;
    margin-bottom: 20px;
}
.hero-banner-v3 .hero-content p{
    color: #fff;
    margin-bottom: 30px;
}
.hero-banner-v3 .hero-content .main-btn{
    padding: 13px 40px;
}

/*---==========================
   End Hero Section css 
=========================---*/

/*---==========================
   04. Start About Section css 
============================---*/



/*---==========================
   End About Section css 
=========================---*/

/*---==============================
   05. Start Service Section css 
==============================---*/

.service-item{
    position: relative;
    z-index: 1;
    padding: 50px 55px 40px;
    border-radius: 7px;
    background-color: #fff;
    border: 1px solid rgba(88, 86, 233, 0.2);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.service-style-one:hover{
    background-color: #fff;
    border-color: transparent;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(89, 86, 233, 0.1);
            box-shadow: 0px 10px 60px 0px rgba(89, 86, 233, 0.1);
}
.service-item .icon{
    margin-bottom: 10px;
}
.service-item .icon i{
    font-size: 75px;
    line-height: 1;
    color: var(--blue-dark);
}
.service-item .text h3.title{
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 35px;
}
.service-item .text p{
    margin-bottom: 10px;
}
.service-item:hover .list-style-two li{
    color: var(--heading);
}
.service-item .text .list-style-two li{
    margin-bottom: 10px;
}
.service-area-v1 .service-wrapper{
    padding-left: 90px;
    padding-right: 90px;
    background-color: #fff;
}
.service-style-three:hover,
.service-style-two:hover{
    background-color: var(--blue-dark);
    border-color: transparent;
}
.service-style-three:hover:after,
.service-style-two:hover:after{
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}
.service-style-three:after,
.service-style-two:after{
    position: absolute;
    content: '';
    bottom: 60px;
    right: 40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
    z-index: -1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.service-style-three{
    -webkit-box-shadow: 0px 10px 60px 0px rgba(89, 86, 233, 0.1);
            box-shadow: 0px 10px 60px 0px rgba(89, 86, 233, 0.1);
    border: none;
}
.service-style-three:hover .text .btn-link-two,
.service-style-three:hover .text p,
.service-style-three:hover .text h3.title,
.service-style-three:hover .text .list-style-two li,
.service-style-three:hover .btn-link,
.service-style-three:hover .icon i,
.service-style-two:hover .text h3.title,
.service-style-two:hover .text .list-style-two li,
.service-style-two:hover .btn-link,
.service-style-two:hover .icon i{
    color: #fff;
}
.service-area-v2 .service-wrapper{
    position: relative;
    z-index: 2;
    margin-top: -150px;
    padding: 80px 90px 50px;
    border-radius: 7px;
}
.service-style-three:hover .text .btn-link-two:before{
    background-color: #fff;
}
/*---==========================
   End Service Section css 
=========================---*/


/*---==============================
   07. Start Counter Section css 
================================---*/
.counter-area-v2 .counter-item,
.counter-area-v1 .counter-item{
    position: relative;
    z-index: 1;
}
.counter-area-v1 .counter-item{
    padding: 65px 50px;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(76, 76, 76, 0.1);
            box-shadow: 0px 10px 60px 0px rgba(76, 76, 76, 0.1);
}
.counter-area-v2 .counter-item:hover:after,
.counter-area-v1 .counter-item:hover:after{
    visibility: visible;
    opacity: 1;
}
.counter-area-v2 .counter-item.item-active:after,
.counter-area-v2 .counter-item:after,
.counter-area-v1 .counter-item:after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e9e056;
    -webkit-filter: blur(57.5px);
            filter: blur(57.5px);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.counter-area-v2 .counter-item .icon,
.counter-area-v1 .counter-item .icon{
    font-size: 70px;
    color: var(--blue-dark);
    margin-bottom: 30px;
}
.counter-area-v2 .counter-item .text h2,
.counter-area-v1 .counter-item .text h2{
    margin-bottom: 8px;
}

.counter-area-v2 .counter-item{
    padding: 60px 45px 53px;
    border-radius: 7px;
    background-color: transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.counter-area-v2 .counter-item.item-active,
.counter-area-v2 .counter-item:hover{
    background-color: #fff;
}
.counter-area-v2 .counter-item .text p{
    color: var(--heading);
    font-weight: 700;
}
.counter-area-v2 .counter-item.item-active:after{
    visibility: visible;
    opacity: 1;
}

.counter-area-v3 .shape{
    position: absolute;
    z-index: -1;
}
.counter-area-v3 .shape.shape-one {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background-color: rgba(119, 122, 242, 0.06);
    top: 70px;
    right: 12%;
}
.counter-area-v3 .shape.shape-two{
    top: 16%;
    right: 9%;
}
.counter-area-v3 .counter-item{
    padding: 50px 30px 40px;
    border-radius: 7px;
    background-color: #fff;
    border: 1px solid transparent;
    box-shadow: 0px 10px 60px 0px rgba(89, 86, 233, 0.2);
    transition: all .3s;
}
.counter-area-v3 .counter-item:hover{
    border-color: var(--blue-dark);
}
.counter-area-v3 .counter-item .icon{
    margin-bottom: 25px;
}
.counter-area-v3 .counter-item .text h2.number{
    color: var(--blue-dark);
}
.counter-area-v3 .counter-item .text p{
    font-weight: 500;
}

/*---==========================
   End Counter Section css 
=========================---*/

/*---=============================
    08. Start Testimonial css 
==============================---*/
.pattern-bg{
    position: relative;
    z-index: 1;
}
.pattern-bg:after{
    position: absolute;
    right: 150px;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/shape/pattern-shape-1.png) no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}
.ratings li{
    display: inline-block;
}
.testimonial-area-v1 .shape-img{
    position: absolute;
    top: 100px;
    right: 15%;
    z-index: 1;
}
.testimonial-area-v1 .shape-img:after{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 240px;
    height: 300px;
    border: 1px solid #fff;
    border-radius: 110px;
    z-index: -1;
}
.testimonial-area-v1 .shape-img img{
    border-radius: 110px;
}
.testimonial-area-v1 .img-holder img{
    border-radius: 217px;
}
.testimonial-area-v1 .testimonial-item .testimonial-content i{
    font-size: 55px;
    color: #fff;
    margin-bottom: 20px;
}
.testimonial-area-v1 .testimonial-item .testimonial-content h3{
    font-size: 40px;
    line-height: 55px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 35px;
}
.testimonial-area-v1 .testimonial-item .testimonial-content .author-title p,
.testimonial-area-v1 .testimonial-item .testimonial-content .author-title h4{
    color: #fff;
}
.testimonial-slider-one {
    position: absolute;
    right: -20%;
    bottom: 40%;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    display: inline-block;
}
.testimonial-slider-one {
    margin-left: 20px;
}
.testimonial-slider-one {
    background-color: #fff;
}
.testimonial-slider-one {
    border-color: #fff;
}

/* Testimonial Area v2 */

.testimonial-area-v2 .text-wrapper{
    padding-left: 70px;
}
.testimonial-area-v2 .testimonial-item .testimonial-content h3{
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 30px;
}
.testimonial-area-v2 .testimonial-item .testimonial-content .quote-rating{
    margin-bottom: 20px;
}
.testimonial-area-v2 .testimonial-item .testimonial-content .quote-rating .quote i{
    font-size: 55px;
    color: var(--blue-dark);
}
.testimonial-area-v2 .testimonial-item .testimonial-content .quote-rating .ratings li span{
    color: var(--heading);
    font-size: 22px;
    font-weight: 700;
    margin-right: 10px;
}
.testimonial-area-v2 .testimonial-item .testimonial-content .quote-rating .ratings li i{
    color: var(--blue-dark);
}
.testimonial-area-v2 .testimonial-item .testimonial-content .author-title{
    padding-left: 70px;
    position: relative;
}
.testimonial-area-v2 .testimonial-item .testimonial-content .author-title:before{
    position: absolute;
    top: 17px;
    left: 0;
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--blue-dark);
}
.testimonial-area-v2 .testimonial-item .testimonial-content .author-title  h4{
    margin-bottom: 3px;
}
.testimonial-area-v2 .testimonial-item .testimonial-content .author-title p.position{
    font-weight: 500;
    color: var(--heading);
    font-size: 20px;
}
.testimonial-two-dots {
    margin: 0 10px;
}
.testimonial-two-dots {
    background-color: var(--blue-dark);
}
.testimonial-two-dots {
    border-color: var(--blue-dark);
}

/* Testimonial Area v3 */

.testimonial-area-v3 .shape{
    position: absolute;
    z-index: -1;
}
.testimonial-area-v3 .shape.shape-one{
    position: absolute;
    top: 100px;
    right: 300px;
}
.testimonial-slider-three{
    margin-left: -15px;
    margin-right: -15px;
}
.testimonial-slider-three {
    margin: 0 10px;
}
.testimonial-slider-three {
    background-color: #fff;
}
.testimonial-slider-three {
    border-color: #fff;
}
.testimonial-slider-three .testimonial-item{
    margin-left: 15px;
    margin-right: 15px;
}
.testimonial-area-v3 .testimonial-item{
    background-color: #fff;
    border-radius: 7px;
    padding: 50px 50px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.testimonial-area-v3 .testimonial-item .author-thumb{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
    max-width: 90px;
    height: 90px;
    margin-right: 25px;
}
.testimonial-area-v3 .testimonial-item .author-thumb img{
    width: 100%;
    border-radius: 50%;
}
.testimonial-area-v3 .testimonial-item .testimonial-content p{
    margin-bottom: 25px;
}
.testimonial-area-v3 .testimonial-item .testimonial-content .author-quote-title .quote{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    max-width: 30px;
    margin-right: 20px;
}
.testimonial-area-v3 .testimonial-item .testimonial-content .author-quote-title .quote i{
    color: var(--blue-dark);
    font-size: 30px;
}
.testimonial-area-v3 .testimonial-item .testimonial-content .author-quote-title  .author-title{
    margin-top: -3px;
}
.testimonial-area-v3 .testimonial-item .testimonial-content .author-quote-title  .author-title p.position{
    margin-bottom: 0;
    font-weight: 500;
}

/* Testimonial Area v4 */


.testimonial-area-v4 .img-holder{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonial-area-v4 .img-holder:after{
    position: absolute;
    bottom: -100px;
    left: -115px;
    content: '';
    width: 550px;
    height: 550px;
    background-color: #fafafb;
    border-radius: 50%;
    z-index: -1;
}
.testimonial-area-v4 .testimonial-item{
    padding: 60px 50px;
    border-radius: 7px;
    border: 5px solid rgba(89, 86, 233, .102);
}
.testimonial-area-v4 .testimonial-item .testimonial-content p{
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 30px;
    color: var(--heading);
}
.testimonial-area-v4 .testimonial-item .testimonial-content .author-title-thumb .author-thumb{
    flex: 0 0 65px;
    max-width: 65px;
    height: 65px;
    margin-right: 25px;
}
.testimonial-area-v4 .testimonial-item .testimonial-content .author-title-thumb .author-thumb img{
    border-radius: 50%;
    width: 100%;
}
.testimonial-area-v4 .testimonial-item .testimonial-content .author-title-thumb .author-title p.position{
    color: var(--blue-dark);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
}
.testimonial-area-v4 .testimonial-slider-one {
    bottom: 50%;
    transform: translateY(50%) rotate(-90deg);
}
.testimonial-area-v4 .testimonial-slider-one {
    background-color: rgba(89, 86, 233, 0.3);
}
.testimonial-area-v4 .testimonial-slider-one {
    border-color: rgba(89, 86, 233, 0.3);
}
.testimonial-area-v4 .testimonial-slider-one {
    background-color: var(--blue-dark);
}
.testimonial-area-v4 .testimonial-slider-one {
    border-color: var(--blue-dark);
}
/*---==========================
    End Testimonial css 
=========================---*/


/*---==========================
    09. Start CTA Section css 
=========================---*/
.cta-area-v1 .cta-wrapper{
    position: relative;
    z-index: 1;
    padding: 80px 140px;
}
.cta-area-v1 .cta-wrapper:after{
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    background:url(../images/map.png) no-repeat right;
    background-size: contain;
    z-index: -1;
}
.cta-area-v1 .cta-wrapper .section-title h2{
    font-size: 70px;
    line-height: 80px;
}
.cta-area-v1 .cta-wrapper .section-title .fill-text{
    -webkit-text-stroke-color: #fff;
}
.cta-area-v1 .cta-img{
    position: absolute;
    right: 90px;
    bottom: -110px;
    border-radius: 151.49px;
    overflow: hidden;
}

/*---==========================
    End CTA Section css 
=========================---*/


/*---========================
    13. Start Elements  css 
==========================---*/

.list-style-two li,
.list-style-one li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.list-style-one li{
    font-weight: 700;
    color: var(--heading);
    padding-bottom: 10px;
}
.list-style-two li:before,
.list-style-one li:before{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'Font Awesome 5 Pro';
}
.list-style-one li:before{
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--blue-dark);
    margin-right: 15px;
    content: '\f00c';
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.list-style-two li{
    font-weight: 500;
}
.list-style-two li:before{
    content: '\f061';
    margin-right: 15px;
}
/*---==================
    End Elements  css 
====================---*/

/*---==========================
    15. Start Contact css 
=========================---*/

.information-style-one .icon span{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
}
.information-style-one .icon span i{
    margin-right: 10px;
}

.contact-area-v1{
    overflow: hidden;
}
.contact-area-v1 .text-wrapper h2{
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 25px;
}
.contact-area-v1 .text-wrapper h2 .fill-text{
    -webkit-text-stroke-color: #191919;
}
.contact-area-v1 .text-wrapper p{
    margin-bottom: 40px;
}
.contact-area-v1 .img-holder{
    position: relative;
    z-index: 1;
    margin-right: -105px;
    text-align: right;
} 
.contact-area-v1 .img-holder .shape{
    position: absolute;
    z-index: -1;
}
.contact-area-v1 .img-holder .shape.shape-icon-one{
    top: -80px;
    right: 0;
}
.contact-area-v1 .img-holder .shape.shape-icon-two{
    right: -50px;
    bottom: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--blue-dark);
    -webkit-filter: blur(100px);
            filter: blur(100px);
}
.contact-area-v1 .img-holder img{
    border-radius: 185px;
}

.img-holder {
    width: 395px;
    height: 590px;
}

.text-wrapper h2{
    margin-bottom: 15px;
}
.text-wrapper p{
    margin-bottom: 30px;
}


/*---==========================
    End Contact Section css 
=========================---*/


.topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 24px 30px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.site-branding {
    position: absolute;
    left: 8%; 
}

.site-branding img {
    height: 80px;
}

.topnav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topnav li {
    margin: 0 15px;
}

.topnav li a {
    color: #5956e9;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.topnav li a:hover {
    color: black;
}

.topnav .icon {
    display: none; 
    position: absolute;
    right: 20px; 
    font-size: 24px;
    color: #5956e9;
    cursor: pointer;
}

@media (max-width: 968px) {
    .topnav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        background: white;
        width: 100%;
        padding: 10px 10px;
        position: absolute;
        top: 60px;
        left: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .topnav {
        padding: 34px 30px;
    }
    .site-branding img {
        height: 60px;
    }

    .topnav ul.show {
        display: flex;
    }

    .topnav li {
        margin: 10px 0;
    }

    .topnav .icon {
        display: block; 
    }

    .site-branding {
        margin-left: 0%;
    }
}

.template_details p {
    text-align: left;
}

.template_details ul {
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
}


.ref::before {
    font-weight: bold;
    content: "$25 USD";
  }

.ref2::before {
    content: "$10 USD";
  }

.text-success::before {
    font-weight: bold;
    content: " -- $25 USD";
  }

.price::before {
    content: "$50 USD";
}

/*---==========================
    16. Start Footer css 
=========================---*/

.blue-dark{
    color: var(--blue-dark);
}

.text-wrapper h3{
    line-height: 45px;
    font-size: 40px;
}

.text-wrapper p{
    text-align: left;
}

/* Footer Gradient */

.footer-social-icon ul li a {
    text-decoration: none;
}

.footer-social-icon {
    justify-content: left;
    text-align: left;
}

.footer-social-icon ul li a i{
    background: #5956e9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    margin: 0 10px;
}

.footer-social-icon ul li a i:hover{
    color: white;
    background-color:#5956e9 ;
    transform: translateY(-8px);
}

.footer-social-icon ul li:nth-child(2) a i{
    margin-left: 11px;
    margin-right: 11px;
}

.footer-social-icon ul li:nth-child(2) a i:hover{
    background: #5956e9;
    color: white;
    transform: translateY(-8px);
}

.footer-social-icon ul li:last-child a i:hover{
    color: white;
    background: #5956e9;
    transform: translateY(-8px);
}