/* table of contents---------------------------

1. Typhography
2. header section
3. banner section
4. aboutus section
5. service section
6. portfolio section
7. testimonial section
8. pricing section
9. blog section
10. contact section
11. footer section


*/
/*=================================
   1. typhography
=================================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Rubik:wght@300;400;500;600;700&display=swap');

html{
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
body{
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    background: #ffffff;
    color: #000000;
    font-family: 'Rubik', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    color: #000000;
}
p{
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}
/*=============================
    common style
==============================*/
a{
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s ease;
}
a:focus,
a:hover{
    color: #EA4343;
    text-decoration: none;
}
::selection{
    background: #EA4343;
    color: #ffffff;
}
img{
    width: 100%;
    height: auto;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a{
    color: inherit;
}
h1{
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    color: #EA4343;
}
h2{
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
}
h3{
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}
h4{
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
}
h5{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
h6{
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}
.b-primary, input[type="submit"] {
    display: inline-block;
    line-height: 30px;
    padding: 15px 40px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400!important;
    transition: all 0.4s ease;
    border: none;
    background: linear-gradient(117.24deg, #F99303 5.75%, #EA4343 106.02%);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}
.b-primary:hover, input[type="submit"]:hover{
    background: linear-gradient(to right, #EA4343, #F99303)!important;
    color: #ffffff;
}
.dark-mode .b-primary:hover{
    background: #1B1E22!important;
    color: #EA4343;
}
.b-primary:focus{
    color: #ffffff;
}
.btn-theme{
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}
.btn-theme:hover{
    color: #ffffff;
}
.btn-theme i{
    transform: translateX(-15px);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}
.btn-theme:hover i{
    color: #ffffff;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.pos-relative{
    position: relative;
}
.section-bg-heading {
    display: block;
    font-size: 45px;
    z-index: -1;
    position: absolute;
    top: -25%;
    left: 0;
    color: #EDEDED;
    font-weight: 500;
    text-transform: uppercase;
}
.service-section .section-bg-heading {
    top: 0%;
}

.sub-heading {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: rgb(234, 67, 67);
    letter-spacing: 1px;
    padding-bottom: 20px;
    z-index: 1;
}
.section-heading span{
    color: #EA4343;
}
/*========================
    spacing
=======================*/
.section-padding{
    padding: 100px 0;
}
.top-spacing{
    padding-top: 100px;
}
.pt-30{padding-top: 30px;}
.pb-15{padding-bottom: 15px;}
.pb-10{padding-bottom: 10px;}
.pb-40{padding-bottom: 40px;}
.pb-45{padding-bottom: 45px;}
.pt-20{padding-top: 20px;}
.pt-60{padding-top: 60px;}
.pb-30{padding-bottom: 30px;}
.pb-20{padding-bottom: 20px;}
.pb-60{padding-bottom: 60px;}
.pl-60{padding-left: 60px;}
.pb-80{padding-bottom: 80px;}
.pt-40{padding-top: 40px;}
.pl-40{padding-left: 40px;}
.pt-50{padding-top: 50px;}
.pl-10{padding-left: 10px;}
/*================================
    header-section start
===============================*/
.header-section{
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 9;
    top: 0;
}

.social-icon ul {
    margin: 0;
    padding: 0;
}


.header-section .top-header{
    padding: 10px 0;
    border-bottom: 1px solid #EA4343;
}
.header-contact{
    width: 70%;
    height: auto;
}
.header-contact ul li{
    display: inline-block;
    padding-right: 20px;
}
.header-contact ul li i{
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    font-size: 14px;
    color: #000000;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 0 0 #EA4343 inset;
}
.header-contact ul li:hover i{
    background-color: #EA4343;
    color: #ffffff;
}
.header-contact ul li span {
    font-size: 14px;
    opacity: 0.9;
}
.social-icon ul li{
    display: inline-block;
}
.social-icon ul li a i{
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    font-size: 14px;
    color: #000000;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 0 0 #EA4343 inset;
}
.social-icon ul li a:hover i{
    background-color: #EA4343;
    color: #ffffff;
}
/*================================
    header-section Ends
===============================*/
/*================================
    main header start
===============================*/
.sticky {
    position: fixed !important;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    margin-top: 0;
    padding-bottom: 0;
    background: #ffffff;
    transition: all 0.7s ease;
    box-shadow: 1px 1px 3px #bac0c5;
    z-index: 99;
}
.logo img{
    width: 140px;
    height: auto;
}
.dark-mode .light-logo{
    display: none;
}
.main-menu ul li {
    display: inline-block;
    margin: 0 10px;
}
.main-menu ul li:last-child {
    margin-right: 0;
}
.main-menu ul li a{
    font-size: 16px;
    position: relative;
    padding: 20px 10px;
    text-decoration: none;
    color:#000;
}
.main-menu ul li a:focus{
    text-decoration: underline;
}
.main-menu ul li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    opacity: 0;
    visibility: hidden;
    background-color: #EA4343;
    border-radius: 4px;
    transition: all 0.4s ease;
}
.main-menu ul li a:hover:after{
    width: 100%;
    opacity: 1;
    visibility: visible;
    left: 0;
}
/*================================
    main header Ends
===============================*/
/*================================
   banner section start
===============================*/
.banner-section{
   padding-top: 240px!important;
   overflow:hidden;
}
.hero-img-area {
    position: relative;
    height: 100%;
}
.hero-img-area::before {
    position: absolute;
    content: "";
    top: -12%;
    left: -20%;
    width: 200%;
    height: 112%;
    background-image: url(../images/hbg.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.hero-img-area img {
    position: relative;
    margin-left: 32%;
    height: 100%;
     max-width: 495px !important;
}
.hero-img-area::after {
    position: absolute;
    left: -2%;
    top: 0;
    height: 100%;
    width: 100%;
    background: #EA4343;
    content: "";
    z-index: -1;
    border-radius: 5px;
    display: none;
}
.banner-section:before {
    position: absolute;
    content: "";
    top: -32px;
    right: -31%;
    width: 100%;
    height: 100%;
    background-image: url('../images/shape-1.png');
    background-repeat: no-repeat;
    background-position: center;
    z-index: -2;
}
.banner-section:after {
    position: absolute;
    content: "";
    left: -528px;
    bottom: -345px;
    width: 100%;
    height: 100%;
    background-image: url('../images/vector-13.png');
    background-repeat: no-repeat;
    background-position: center;
    z-index: -4;
}
.banner-sub-heading.text-type {
    display: block;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}
p.desc-text{
    border-left: 3px solid #EA4343;
    padding-left: 15px;
    margin-bottom: 40px;
}
.banner-counter .counter-box{
    margin-right: 70px;
}
.banner-counter span.counter{
    font-size: 40px;
    font-weight: 600;
    border-bottom: 1px solid #000000;
    font-family: 'Playfair Display', serif;
}
.banner-counter span.counter:after{
    content: "+";
}
.counter-info p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
}
#play-btn{
    color: #ffffff;
    transition: all 0.4s ease;
    margin-left: 40px;
}
#play-btn i {
   width: 50px;
   height: 50px;
   margin-left: 25px;
   border-radius: 50%;
   color: #ffffff;
   background-color: #EA4343;
   display: inline-block;
   line-height: 50px;
   position: relative;
   z-index: 0;
   text-align: center;
   animation: video 2.5s linear infinite;
}
.banner-section .thumbbail-wrap {
    position: absolute;
    right: 0;
    top: 191px;
    width: 50%;
    height: auto;
}
.side-thumbnail::before {
    position: absolute;
    content: "";
    top: -64px;
    left: 20px;
    width: 82%;
    height: 100%;
    background-image: url(../images/shape-red.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -2;
    transform: rotate(6deg);
    /* animation: 8s ease-in 0s infinite alternate-reverse none running round; */
}
.side-thumbnail:after {
    position: absolute;
    content: "";
    top: 74px;
    right: -40px;
    width: 100%;
    height: 112%;
    background-image: url(../images/shape-yellow.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -2;
    transform: rotate(0deg);
}
.shape-white {
    position: absolute;
    bottom: -200px;
    right: -36px;
    width: 100%;
    height: auto;
    z-index: 0;
}
.shape-dark{
    display: none;
}
/* shape */
.shape img{
    width: 60px;
    height: auto;
}
.ball-1 {
    position: absolute;
    bottom: 30%;
    right: 0;
    animation: move-top 4s ease-in-out infinite;
}
.ball-2 {
    position: absolute;
    top: 300px;
    left: 43%;
    animation: move-top 4s ease-in-out infinite;
    animation-delay: 1s;
}
.ball-3 {
    position: absolute;
    top: 450px;
    left: 43%;
    animation: move-top 4s ease-in-out infinite;
}
.ball-4 {
    position: absolute;
    top: 600px;
    left: 50%;
    animation: spin 5s linear infinite;
}
.ball-5 {
    position: absolute;
    left: 100px;
    top: 10%;
    animation: spin 5s linear infinite;
}
.ball-6 {
    position: absolute;
    top: 150px;
    right: 15%;
    animation : move-left 4s ease-in-out infinite;
}
.ball-7 {
    position: absolute;
    bottom: 6%;
    right: 25%;
    animation : move-left 4s ease-in-out infinite;
}
.ball-8 {
    position: absolute;
    bottom: 500px;
    left: 9%;
    animation: spin 5s linear infinite;
}
.ball-11 {
    position: absolute;
    top: 30%;
    left: 30%;
    animation: animate 4s ease-in infinite;
}
.ball-22 {
    position: absolute;
    top: 32%;
    left: 15%;
    animation: animate 4s ease-in infinite;
}
.ball-33 {
    position: absolute;
    top: 135px;
    left: 50%;
   animation : move-left 4s ease-in-out infinite;
}
/*================================
   banner section Ends
===============================*/
/*===============================
    aboutus section start
================================*/
.aboutus-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.aboutus-thumb-section {
    width: 26%;
    height: auto;
    left: 19.5%;
}
.aboutus-thumb {
    position: absolute;
    top: 27px;
    right: 81px;
    width: 55%;
}
.aboutus-thumb .aboutus-2{
    display: none;
}
.aboutus-bg-heading{
    display: block;
    font-size: 45px;
    z-index: 0;
    position: absolute;
    top: 14%;
    left: 87px;
    color: #EDEDED;
    font-weight: 500;
    text-transform: uppercase;
}
.aboutus-section .aboutus-content {
    width: 50%;
    height: auto;
    margin-left: 90px;
    background: linear-gradient(134.69deg, #E3E9ED -74.61%, #FFFFFF 74.83%);
    box-shadow: -6px 3px 15px rgba(0, 0, 0, 0.25);
    padding: 100px 20px 40px 90px;
    padding-right: 20%;
}
.shape-1 {
    position: absolute;
    top: 135px;
    left: 10%;
    animation: spin 5s linear infinite;
}
.shape-2 {
    position: absolute;
    top: 275px;
    left: 17%;
    animation: animate 4s ease-in infinite;
}
.shape-3 {
    position: absolute;
    left: 10%;
    bottom: 2px;
    animation: animate 4s ease-in infinite;
}
/*===============================
    aboutus section ends
================================*/
/*=================================
    resume section start
===================================*/
.resume-section{
    background-image: url('../images/resume-bg-light.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.nav-link.b-primary{
    background: linear-gradient(133.59deg, #E3E9ED -4.26%, #FFFFFF 95.55%);
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    color: #000000;
}
.nav-link.b-primary.active{
    background: linear-gradient(131.06deg, #F99303 -9.83%, #EA4343 122.49%);
}
.resume-content span.sub-title{
    font-size: 16px;
    color: #EA4343;
    padding-bottom: 10px;
    display: block;
}
.resume-content span.time-out {
    display: inline-block;
    padding: 6px 18px;
    background-color: #EA4343;
    border-radius: 4px;
    color: #ffffff;
    margin-top: 25px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}
.resume-inner .experience-list:after {
    position: absolute;
    content: "";
    top: 0;
    right: -45px;
    width: 5px;
    height: 100%;
    background-color: #DFDFDF;
    z-index: -1;
}
.resume-inner .experience-list:before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #DFDFDF;
    display: inline-block;
    bottom: 0;
    right: -49px;
}
.resume-inner .experience-single{
    background: linear-gradient(140.74deg, #E3E9ED -1.97%, #FFFFFF 97.1%);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 30px 50px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    z-index: 0;
}
.resume-inner .experience-single:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.7s ease;
    background: linear-gradient(117.77deg, #F99303 -9.8%, #EA4343 99.12%);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
} 

.experience-single, .resume-single{
    transition: .6s all;
}

.resume-single-inner .heading, .experience-single-inner .heading{
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    transition: .6s all;
}
.experience-single:hover .heading, .resume-single:hover .heading {
    color: #fff;
}
.experience-single:hover p, .resume-single:hover p{
    color: #fcfcfc;
}
.experience-single:hover, .resume-single:hover{
    color: #fcfcfc;
}
.experience-single:hover:before{
    opacity: 1;
}
.resume-inner .experience-single-inner{
    position: relative;
    z-index: 0;
    transition: all 0.4s ease;
}
.resume-inner .experience-single-inner:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 5px;
    left: 114%;
    top: 30px;
    transform: translateY(-7px);
    background: rgb(223, 223, 223);
    z-index: -1;
}
.resume-inner .experience-single-inner:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border: 5px solid #ffffff;
    border-radius: 100%;
    left: 122.5%;
    top: 22px;
    transform: translateY(-7px);
    background: #EA4343;
    transition: all 0.4s ease;
}
.resume-inner .experience-single-inner:hover:after{
    border: 5px solid #000000;
    background: #efffff;
}
/*resume list */
.resume-inner .resume-list:before{
    position: absolute;
    content: "";
    top: 0;
    left: -45px;
    width: 5px;
    height: 100%;
    background-color: #DFDFDF;
    z-index: -1;
}
.resume-inner .resume-list:after{
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #DFDFDF;
    display: inline-block;
    top: 0;
    left: -49px;
}
.resume-inner .resume-single{
    background: linear-gradient(140.74deg, #E3E9ED -1.97%, #FFFFFF 97.1%);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 30px 50px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    z-index: 0;
}
.resume-inner .resume-single:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.7s ease;
    background: linear-gradient(117.77deg, #F99303 -9.8%, #EA4343 99.12%);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
} 
.resume-inner .resume-single:hover:before{
    opacity: 1;
}
.resume-inner .resume-single-inner:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 5px;
    right: 100%;
    bottom: 30px;
    transform: translateY(-7px);
    background: #DFDFDF;
    z-index: -1;
}
.resume-inner .resume-single-inner:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border: 5px solid #ffffff;
    border-radius: 100%;
    right: 107%;
    bottom: 22px;
    transform: translateY(-7px);
    background: #EA4343;
    transition: all 0.4s ease;
}
.resume-single-inner:hover:after{
    border: 5px solid #000000;
    background: #efffff;
}
/* shape */
.resume-shape-1 {
    position: absolute;
    right: 100px;
    top: 212px;
    animation : move-top 4s ease-in-out infinite;
}
.resume-shape-2 {
    position: absolute;
    top: 50%;
    left: 100px;
    animation : move-top 4s ease-in-out infinite;
}
.resume-shape-3 {
    position: absolute;
    bottom: 0;
    left: 15%;
    animation : move-left 4s ease-in-out infinite;
}
/*=================================
    resume section ends
===================================*/
/*================================
    service section start
/*=================================*/
.service-section{
    background-image: url('../images/service-bg-light.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.service-box-single{
	width: 100%;
	height: auto;
	perspective: 1000px;
	border-radius: 4px;
}
.service-box-inner {
    position: relative;
    width: 100%;
    min-height: 341px;
    text-align: center;
    transition: transform 0.8s;
    border-radius: 10px;
    transform-style: preserve-3d;
}
.service-box-single:hover .service-box-inner{
	transform: rotateY(180deg);
}
.service-box-single .srv-icon i {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    font-size: 50px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    color: #EA4343;
    margin-bottom: 20px;
    background: linear-gradient(324.68deg, #E3E9ED -19.89%, #FFFFFF 113.53%);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}
.service-box-single .service-desc p{
    font-size: 14px;
    font-weight: 400;
}
.service-box-front {
    position: absolute;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 2px 3px 9px rgb(0 0 0 / 20%);
    padding: 55px 20px;
    border-radius: 10px;
    padding-bottom: 36px;
}
.service-box-back {
	width: 100%;
	min-height: 316px;
	padding-top: 50px;
	background: linear-gradient(#EA4343, #F99303, #EA4343);
	color: white;
	transform: rotateY(180deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    box-shadow: 2px 3px 9px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 4px;
}
.service-box-back .srv-icon i{
    color: #ffffff;
    background: #F99303;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}
.service-box-back .srv-icon:hover i{
	animation-iteration-count: 1;
	animation:hover-icon 1s ease-in ;
}
/* service shape */
.shape.srv-shape-1 {
    position: absolute;
    right: 5%;
    top: 120px;
    animation: 5s linear 0s infinite normal none running spin;
}
.shape.srv-shape-2 {
    position: absolute;
    right: 15%;
    top: 50%;
    animation: 5s linear 0s infinite normal none running spin;
}
.shape.srv-shape-3 {
    position: absolute;
    right: 15%;
    top: 20%;
    animation: animate 4s ease-in infinite;
}
.shape.srv-shape-4 {
    position: absolute;
    right: 5%;
    top: 38%;
    animation: animate 4s ease-in infinite;
}
.shape.srv-shape-5 {
    position: absolute;
    top: 9%;
    left: 56%;
    animation: move-left 4s ease-in-out infinite;
}
.shape.srv-shape-6 {
    position: absolute;
    bottom: 40%;
    left: 15%;
    animation: move-top 4s ease-in-out infinite;
}
.shape.srv-shape-7 {
    position: absolute;
    left: 5%;
    top: 38%;
    animation: move-left 4s ease-in-out infinite;
}
.shape.srv-shape-8 {
    position: absolute;
    top: 18%;
    right: 32%;
    animation: animate 4s ease-in infinite;
}
/*================================
    service section ends
==================================*/
/*================================
   portfolio section start
==================================*/
.portfolio-section .menu-section{
    width: 20%;
    height: auto;
}
.portfolio-section .portfolio-items-wrapper{
    width: 80%;
    height: auto;
}
.portfolio-menu{
	margin-bottom:30px;
	cursor:pointer;
}
.portfolio-menu li{
    display: block;
    border-radius: 4px;
	transition:all 0.4s ease;
    text-align: center;
    background: linear-gradient(222.29deg, #E3E9ED -2.35%, #FFFFFF 92.6%);
    box-shadow: -3px -3px 7px rgba(255, 255, 255, 0.25);
}
.portfolio-menu li:hover{
	color:#ffffff;
    background: linear-gradient(222.29deg, #F99303 -2.35%, #EA4343 92.6%);
}
.portfolio-menu li.active{
    color: #ffffff;
    background: linear-gradient(222.29deg, #F99303 -2.35%, #EA4343 92.6%);
}
.portfolio-single {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    width: 31%;
    height: auto;
    padding: 0;
    margin: 10px;
    filter: drop-shadow(2px 2px 10px #E3E9ED);
}
.portfolio-single .portfolio-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EA4343;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}
.portfolio-content .play-btn i {
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    width: 50px;
    height: 35px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 4px;
    cursor: pointer;
}
.portfolio-single:hover .portfolio-content{
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
}
/* portfolio shape */
.shape.port-shape-1 {
    position: absolute;
    left: 5%;
    top: 20px;
    animation: 5s linear 0s infinite normal none running spin;
}
.shape.port-shape-2 {
    position: absolute;
    right: 15%;
    bottom: 15%;
    animation: move-top 4s ease-in-out infinite;
}
.shape.port-shape-3 {
    position: absolute;
    right: 15%;
    top: 20%;
    animation: animate 4s ease-in infinite;
}
.shape.port-shape-4 {
    position: absolute;
    right: 5%;
    top: 38%;
    animation: animate 4s ease-in infinite;
}
.shape.port-shape-5 {
    position: absolute;
    top: 0%;
    left: 56%;
    animation: move-left 4s ease-in-out infinite;
}
.shape.port-shape-6 {
    position: absolute;
    bottom: 18%;
    left: 15%;
    animation: move-top 4s ease-in-out infinite;
}
.shape.port-shape-7 {
    position: absolute;
    left: 5%;
    top: 38%;
    animation: move-left 4s ease-in-out infinite;
}
.shape.port-shape-8 {
    position: absolute;
    top: 18%;
    right: 32%;
    animation: animate 4s ease-in infinite;
}
.shape.port-shape-9 {
    position: absolute;
    bottom: -30px;
    left: 50%;
    animation: move-left 4s ease-in-out infinite;
}
/*================================
   portfolio section ends
==================================*/
/*================================
   testimonial section start
==================================*/
.testimonial-section {
    background-image: url("../images/test-light-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 100px;
    padding-bottom: 139px;
    width: 100%;
    height: auto;
    z-index: 0;
}
.test-bg-heading {
    display: block;
    font-size: 45px;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 125px;
    color: #EDEDED;
    font-weight: 500;
    text-transform: uppercase;
}
.testimonial-slider .slider-item {
    padding: 0 0 82px 0;
}
.test-thumbnail {
    width: 27%;
    height: auto;
}
.test-content .quote-icon i {
    position: absolute;
    top: -50px;
    left: 7px;
    font-size: 50px;
    animation: animate 4s linear infinite;
    transform-origin: center;
}
.test-content.pos-relative {
    width: 70%;
    height: auto;
    padding-left: 50px;
}
.test-content.pos-relative p {
    font-weight: 300;
    font-style: italic;
}
.test-meta-wrap .client-info h5{
    font-size: 18px;
    padding-bottom: 10px;
    color: #EA4343;
    font-weight: 400;
    font-style: italic;
}
.test-meta-wrap .client-info p{
    font-size: 14px;
    font-style: italic;
}
.test-react i {
    color: #F99303;
    font-size: 14px;
    animation:animate 4s linear infinite;
    transform-origin: center;
  }
/*  testimonial shape  */
.test-shape-section .test-shape {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: rgba(249, 147, 3, 0.5);
    animation: ball 1s ease infinite;
}
.test-shape-section .test-shape-1 {
    position: absolute;
    top: 33%;
    left: 10%;
}
.test-shape-section .test-shape-2 {
    position: absolute;
    left: 5%;
    bottom: 44%;
}
.test-shape-section .test-shape-3 {
    position: absolute;
    bottom: 23.5%;
    left: 15%;
}
.test-shape-section .test-shape-4 {
    position: absolute;
    right: 15%;
    top: 33%;
}
.test-shape-section .test-shape-5 {
    position: absolute;
    top: 33%;
    right: 35%;
}
.test-shape-section .test-shape-6 {
    position: absolute;
    top: 33%;
    right: 60%;
}
.test-shape-section .test-shape-7 {
    position: absolute;
    right: 18%;
    bottom: 44%;
}
.test-shape-section .test-shape-8 {
    position: absolute;
    right: 26%;
    bottom: 44%;
}
.test-shape-section .test-shape-9 {
    position: absolute;
    bottom: 23.5%;
    left: 42%;
}
.test-shape-section .test-shape-10 {
    position: absolute;
    bottom: 23.5%;
    right: 26%;
}
/*================================
   testimonial section ends
==================================*/
/*================================
    pricing section start
==================================*/
.pricing-single {
    background: linear-gradient(169.8deg, #E3E9ED 1.75%, #FFFFFF 101.78%);
    box-shadow: -4px 0px 10px #d8e1e8;
    border-radius: 150px 0 150px 0;
    padding: 35px 0;
    position: relative;
    transition: all 0.4s ease-in-out;
}
.pricing-single:hover{
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    transform: translateY(-10px);
}
.pricing-single h3{
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #EA4343;
}
.pricing-single .pricing-rate {
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
    padding: 0 38px;
    border-radius: 0 47px 0 49px;
    letter-spacing: 1px;
    position: absolute;
    right: 0;
    top: 105px;
    background: linear-gradient(121.72deg, #F99303 2.8%, #EA4343 98.67%);
    box-shadow: 0px -4px 10px #FFFFFF;
}
.pricing-single .pricing-body {
    padding: 40px 50px;
    margin-top: 75px;
}
.pricing-single .pricing-body h5{
    padding-bottom: 10px;
    color: #F99303;
}
.pricing-body span{
    display: block;
    font-size: 18px;
}
.pricing-item ul li{
    font-size: 14px;
    padding-bottom: 18px;
}
.pricing-single .theme{
    border-radius: 0 47px 0 49px;
}
.pricing-single .time-out{
    font-size: 14px;
    padding-left: 40px;
    color: #EA4343;
    padding-top: 10px;
}
/* pricing shape */
.pricing-shape{
    width:200px;
    height: auto;
}
.pricing-shape.pricing-shape-1 {
    position: absolute;
    top: 30%;
    left: 60px;
    animation: animate 4s ease-in infinite;
}
.pricing-shape.pricing-shape-2 {
    position: absolute;
    bottom: 0;
    right: 60px;
    animation: animate 4s ease-in infinite;
}
.pricing-shape.pricing-shape-3 {
    position: absolute;
    top: 30%;
    right: 60px;
    animation: move-top 4s ease-in-out infinite;
}
.pricing-shape.pricing-shape-4 {
    position: absolute;
    bottom: 0;
    left: 60px;
    animation: move-top 4s ease-in-out infinite;
}
/*================================
    pricing section ends
==================================*/
/*================================
    blog section start
==================================*/
.blog-single {
    overflow: hidden;
    box-shadow: -4px -4px 10px #FFFFFF;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.blog-thumb img{
    z-index: 0;
    border-radius: 10px;
}
.blog-single:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.50;
    z-index: 0;
    border-radius: 10px;
}
.blog-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    height: auto;
    z-index: 1;
}
.blog-single-overly{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 10px;
    padding: 40px 22px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease;
    transform: scale(0.9);
}
.blog-single:hover .blog-single-overly{
    opacity: 1;
    visibility: visible;
    left: 0;
    transform: scale(1.0);
}
.blog-single:before{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(158.72deg, #F99303 -12.2%, #EA4343 137.16%);
    border-radius: 10px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease;
}
.blog-single:hover:before{
   width: 100%;
   left: 0;
   opacity: 1;
   visibility: visible;
}
.blog-single-overly span {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}
.blog-single .blog-single-overly p{
    font-size: 14px;
    color: #ffffff;
}
.meta-desc{
    border-top: 1px solid #ffffff;
}
.meta-desc .blog-date:after {
    position: absolute;
    content: "";
    width: 1px;
    top: 4px;
    right: -65px;
    height: 20px;
    background-color: #ffffff;
}
.blog-single:hover .blog-single-overly{
    opacity: 1;
    visibility: visible;
    left: 0;
}
/*================================
    blog section ends
==================================*/
/*================================
    contact section start
==================================*/
.contact-sidebar h4{
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.contact-sidebar ul li{
    margin-bottom: 20px;
}
.contact-sidebar .social-share span{ 
    font-size: 20px;
    font-weight: 500;
}
.contact-sidebar ul li span.title {
    font-size: 20px;
    display: block;
    font-weight: 400;
    line-height: 30px;
}
.contact-sidebar ul li span p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin-top: 10px;
}
/* contact-form */
.contact-form{
    padding: 30px 50px;
    background: linear-gradient(109.27deg, #F8F9FB 2.47%, #FFFFFF 101.69%);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
}
.contact-form h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
#warning{
    color: #EA4343;
    padding-bottom: 10px;
}
.contact-form form{
    width: 100%;
    height: auto;
}
.contact-form select{
    width: 100%;
    height: auto;
    padding: 9px 20px;
    border: 1px solid #E3E9ED;
    outline: none;
    margin-bottom: 20px;
    appearance: none;
    cursor: pointer;
}
.select-box:after {
    content: "\f107";
    position: absolute;
    top: -13px;
    right: 1px;
    width: 43px;
    height: 43px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 42px;
    background: linear-gradient(169.82deg, #F99303 -54.29%, #EA4343 173.54%);
}
.contact-form form label{
    color: #EA4343;
    width: 100%;
}
.contact-form form input {
    width: 100%;
    height: auto;
    padding: 9px 20px;
    border: 1px solid #E3E9ED;
    outline: none;
    margin-bottom: 20px;
}
.contact-form form textarea{
    width: 100%;
    height: auto;
    padding: 9px 20px;
    border: 1px solid #E3E9ED;
    outline: none;
    margin-bottom: 30px;
}
/*================================
    contact section ends
==================================*/
/*================================
   footer section start
==================================*/
.footer-child .footer-contact{
    padding-top: 40px;
}
.footer-child .footer-social{
    padding-top: 40px;
}
.footer-social ul li{
    display: inline-block;
    padding-right: 15px;
}
.footer-social ul li:last-child{
    padding-right: 0;
}
.footer-social ul li a i {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #EA4343;
    background: linear-gradient(148.78deg, #EFF8FF -10.73%, #FFFFFF 108.36%);
    box-shadow: -3px -3px 8px #FFFFFF;
    border-radius: 4px;
    transition: all 0.4s ease;
}
.footer-social ul li a:hover i{
    background: linear-gradient(148deg, #F99303 -116.26%, #EA4343 169.36%);
    color: #ffffff;
}
.footer-contact ul li{
    display: block;
    padding-left: 0;
}
.footer-child.three {
    margin-top: 20px;
}
.footer-contact ul li:first-child{
    padding-left: 0;
}
/*  footer-shape */
.footer-shape img{
    width: 100px;
    height: auto;
}
.footer-shape-1 {
    position: absolute;
    top: -160px;
    left: 50px;
    animation: animate 4s ease-in infinite;
}
.footer-shape-2 {
    position: absolute;
    top: 5%;
    left: 14%;
    animation: move-top 4s ease-in-out infinite;
}
.footer-shape-3 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    animation: move-left 4s ease-in-out infinite;
}
.footer-shape-4 {
    position: absolute;
    right: 7%;
    bottom: 30%;
    animation: move-top 4s ease-in infinite;
}
.footer-shape-5 {
    position: absolute;
    top: 20%;
    left: 50px;
    animation: animate 4s ease-in infinite;
}
.footer-shape-6 {
    position: absolute;
    top: 0;
    right: 7%;
    animation: animate 4s ease-in infinite;
}
.footer-shape-7 {
    position: absolute;
    right: 16%;
    bottom: 40%;
    animation: move-left 4s ease-in-out infinite;
}
/*  footer bottom */
.coppyright-section{
    background-color: #F4FAFF;
    padding: 20px 0;
    margin-top: 90px;
}
.coppyright-section p span {
    font-size: 18px;
    color: #EA4343;
    font-weight: 500;
}
/*  scroll to up button  */
.to-top{
	position: fixed;
	right: 40px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #EA4343;
	display:inline-block;
	overflow: hidden;
	text-align: center;
	line-height: 40px;
	pointer-events: none;
	opacity: 0;
    z-index: 2;
}
.to-top:before{
	position: absolute;
	content: "\f30c";
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #EA4343;
	color: #ffffff;
	display:inline-block;
	text-align: center;
	line-height: 40px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	transition: all 0.4s ease;
}
.to-top:hover:before{
	bottom: 50px;
}
.to-top:after{
	position: absolute;
	content: "\f30c";
	right: 0;
	bottom: -50px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #EA4343;
	color: #ffffff;
	display:inline-block;
	text-align: center;
	line-height: 40px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	transition: all 0.4s ease;
}
.to-top:hover:after{
	bottom: 0px;
}
.to-top.active{
	bottom: 40px;
	pointer-events:auto;
	opacity: 1; 
}
.to-top i{
	color: #ffffff;
}
/*================================
    footer section ends
==================================*/
/*=================================
    animation
==================================*/
@keyframes video {
	0% {
	  box-shadow: 0 0 0 0 #EA4343, 0 0 0 10px #EA4343, 0 0 0 20px #ffffff;
	}
	100% {
	  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
	}
  }
  @keyframes hover-icon {
	16.65% {
	  transform: translateX(8px);
	}
	33.3% {
	  transform: translateX(-6px);
	}
	49.95% {
	  transform: translateX(4px);
	}
	66.6% {
	  transform: translateX(-2px);
	}
	83.25% {
	  transform: translateX(1px);
	}
	100% {
	  transform: translateX(0);
	}
  }
@keyframes animate {
  16%   { transform:scale(1.1); }
  32%  { transform:scale(1.0); }
  48%  { transform:scale(1.1); }
  64%  { transform:scale(1.0); }
  80% { transform:scale(1.1); }
  100% { transform:scale(1.0); }
}
@keyframes move-top{
	0%   { transform: translateY(0);}
	50%  { transform:  translateY(-20px);}
	100% { transform: translateY(0);}
}
@keyframes move-left{
	0%   { transform: translateX(0);}
	50%  { transform:  translateX(-20px);}
	100% { transform: translateX(0);}
}
 @keyframes round{
    0%{
        transform: translateX(0);
    }    
    50%{
        transform: translateX(-20px);
    }    
    0%{
        transform: translateX(0);
    }
}
/*========slick slider=============*/
.slider .prev-arrow {
    position: absolute;
    content: "";
    bottom: 100px;
    right: 15px;
    width: 65px;
    height: 50px;
    z-index: 1;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    background: linear-gradient(218.75deg, #F99303 -14.42%, #EA4343 106.7%);
    box-shadow: -3px -3px 7px #FFFFFF;
}
.slider .next-arrow {
    position: absolute;
    content: "";
    bottom: 100px;
    right: 110px;
    width: 65px;
    height: 50px;
    z-index: 1;
	text-align: center;
    line-height: 50px;
    color: #ffffff;
	border-radius: 4px;
	cursor: pointer;
    background: linear-gradient(218.75deg, #F99303 -14.42%, #EA4343 106.7%);
    box-shadow: -3px -3px 7px #FFFFFF;
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } 
  }
  @keyframes ball {
    0%   {transform: scale(1.0); background-color: #F99303;}
    50%  {transform: scale(1.2); background-color:#DC3636;}
    100% {transform: scale(1.0); background-color: #F99303;}
  }
