body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
img {
	max-width: 100%;
	height: 0 auto;
}
a {
	text-decoration: none !important;
}
a:focus {
	outline: none !important;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0px;
}
a:focus, a:hover {
	text-decoration: none !important;
}

/* Fonts Poppins Family */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff'),
         url('../fonts/Poppins-Regular.ttf') format('truetype'),
         url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Medium.woff2') format('woff2'),
         url('../fonts/Poppins-Medium.woff') format('woff'),
         url('../fonts/Poppins-Medium.ttf') format('truetype'),
         url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
         url('../fonts/Poppins-SemiBold.woff') format('woff'),
         url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
         url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Bold.woff2') format('woff2'),
         url('../fonts/Poppins-Bold.woff') format('woff'),
         url('../fonts/Poppins-Bold.ttf') format('truetype'),
         url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
.header-sec{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
}
.darkHeader{
    top: 0;
    background: #fff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: smoothScroll 1s;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-250px);
	}
	100% {
		transform: translateY(0px);
	}
}
.header-logo img {
    width: 130px;
    height: auto;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
 .header-bottom{
    background-color: #fff;
    padding: 10px 0;
 } 
.header-menu ul {
    margin: 0;
    padding: 0;
}
.header-menu ul li {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin-right: 14px;
}
.header-menu ul li:last-child{
    margin-right: 0;
    margin-left: 50px;
}
.header-menu ul li:nth-child(5){
    margin-right: 0;
}
.header-menu ul li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #020202;
    font-weight: 500;
    text-transform: uppercase;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-menu ul li a:hover {
    color: #fc5133;
}
.header-menu, .header-call{
    display: inline-block;
    vertical-align: middle;
}
.header-menu .header-btn a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 8px;
    background-image: linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-menu .header-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
.header-menu .header-btn a:hover, .header-menu .header-btn a:focus, .header-menu .header-btn a:active {
    color: #fff
}
.header-menu .header-btn a:hover:before, .header-menu .header-btn a:focus:before, .header-menu .header-btn a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
.header-call{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 20px;
}
.header-call span{
    background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.header-call strong{
    text-align: left;
}
.header-call strong a{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #020202;
    font-weight: bold;
    text-transform: capitalize;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-call strong a:hover{
    color: #fc5133;
}
.header-call-now{
    font-size: 12px;
    color: #020202;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.0;
}
.banner-sec {
    position: relative;
    background: url("../images/banner-img.jpg") no-repeat top left;
    background-size: cover;
    padding: 141px 0;
    margin-top: 118px;
}
.banner-sec::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: url("../images/banner-shape-img.png") no-repeat top left;
    width: 91px;
    height: 370px;
}
.banner-wave-img{
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-content{
    padding-left: 90px;
    position: relative;
    z-index: 1;
}
.banner-head{
    position: relative;
    font-size: 40px;
    color: #020202;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.banner-head strong{
    display: inline-block;
    position: relative;
     background: linear-gradient(
        180deg,
        #fb4f33 0%,
        #fd7b05 40%,
        #fbc911 75%,
        #ffd21a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.banner-head strong::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        180deg,
        #fb4f33 0%,
        #fd7b05 50%,
        #fbc911 100%
    );
    border-radius: 4px;
}
.banner-txt{
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    margin-bottom: 30px;
}
.banner-btn a{
    display: inline-block;
    text-transform: uppercase;
    border-radius: 10px;
    background-color: #fc5133;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 13px 30px;
    overflow: hidden;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s
}
.banner-btn a:last-child{
    margin-left: 10px;
    background-color: #fbc911;
    color: #020202;
}
.banner-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
.banner-btn a:hover, .banner-btn a:focus, .banner-btn a:active {
    color: #fff
}
.banner-btn a:hover:before, .banner-btn a:focus:before, .banner-btn a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
.services-sec{
    padding-top: 80px;
    padding-bottom: 80px;
}
.services-head{
    text-align: center;
    font-size: 36px;
    color: #020202;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 70px;
}
.services-head strong{
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.services-head strong::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 60%;
    height: 3px;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 50%, #fbc911 100%);
    border-radius: 4px;
    transform: translateX(-50%);
}
.services-part img{
    border-radius: 15px;
    filter: drop-shadow(0px 5px 0px #fccc12);
}
.services-part2 img{
    filter: drop-shadow(0px 5px 0px #fd5143);
}
.services-part-title{
    font-size: 20px;
    color: #020202;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 15px;
}
.services-part-txt{
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    margin-bottom: 20px;
}
.services-part-btn a{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    background: linear-gradient(
        90deg,
        #ffd21a 0%,
        #fbc911 35%,
        #fd7b05 70%,
        #fb4f33 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    text-transform: capitalize;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-part-btn a::after {
    position: absolute;
    content: "";
    bottom: 1px;
    left: 50%;
    background: linear-gradient(
    90deg,
    #ffd21a 0%,
    #fbc911 35%,
    #fd7b05 70%,
    #fb4f33 100%
    );
    width: 100%;
    height: 1px;
    transform: translateX(-50%);
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-part-btn a:hover::after{
    width: 0;
}
.choose-sec{
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.choose-sec::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/choose-bg-img.png") no-repeat bottom center;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.choose-part{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
.choose-head{
    position: relative;
    text-align: center;
    font-size: 36px;
    color: #020202;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 70px;
}
.choose-head strong {
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.choose-head strong::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 50%, #fbc911 100%);
    border-radius: 4px;
    transform: translateX(-50%);
}
.choose-part span{
    background-color: #fccc18;
    border-radius: 50%;
    min-width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.choose-part2 span{
    background-color: #fd4f3a;
}
.choose-part3 span{
    background-color: #fe7a05;
}
.choose-part-title{
    text-transform: capitalize;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    line-height: 1.2;
}
.choose-part-txt{
	font-size: 16px;
    color: #000000;
    font-weight: normal;
    margin-top: 10px;
}
.choose-line{
    position: relative;
}
.choose-line::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #fecbb1;
}
.about-sec{
    padding-top: 80px;
    padding-bottom: 80px;
    background: url("../images/bubble-img.png") no-repeat bottom 40px right;
    background-size: auto;
}
.about-right-head{
    position: relative;
    font-size: 36px;
    color: #020202;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-right-head strong{
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.about-right-head strong::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 50%, #fbc911 100%);
    border-radius: 4px;
    transform: translateX(-50%);
}
.about-right-txt{
    font-size: 16px;
    color: #001e40;
    font-weight: normal;
    margin-bottom: 30px;
}
.about-right-btn a {
    display: inline-block;
    font-size: 16px;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    background-image: linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    padding: 13px 30px;
    border-radius: 10px;
    overflow: hidden;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s
}
.about-right-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
.about-right-btn a:hover, .about-right-btn a:focus, .about-right-btn a:active {
    color: #fff
}
.about-right-btn a:hover:before, .about-right-btn a:focus:before, .about-right-btn a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
.testimonial-sec{
    position: relative;
    padding-bottom: 80px;
}
.testimonial-sec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    border-top: 2px solid #feada3;
    width: 100%;
    height: 2px;
}
.testimonial-wrap {
    text-align: center;
}
.testimonial-wrap{
    text-align: center;
}
.testimonial-head{
    position: relative;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #fd4f3a;
    background-color: #fff;
    padding: 8px 40px;
    border-radius: 30px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}
.testimonial-head strong{
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.testimonial-title{
    position: relative;
    font-size: 36px;
    color: #020202;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
}
.testimonial-title strong{
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.testimonial-title strong::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 60%;
    transform: translateX(-50%);
    height: 3px;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 50%, #fbc911 100%);
    border-radius: 4px;
}
.sp-testimonial-free{
	border-radius: 14px !important;
	padding: 25px 15px !important;
	margin: 30px 0 !important;
    background: url("../images/quote-img.png") #ffffff no-repeat !important;
    background-size: auto !important;
    background-position: bottom 40px right 30px !important;
	min-height: 365px !important;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sp-testimonial-content p{
	font-size: 16px !important;
	color: #000 !important;
	font-weight: normal !important;
	font-style: italic !important;
	text-align: left !important;
	padding: 0 !important;
}
.sp-testimonial-client-name{
	font-size: 18px !important;
	color: #000 !important;
	font-weight: bold !important;
	text-transform: capitalize !important;
	text-align: left !important;
}
.sp-testimonial-free-section .sp-testimonial-client-designation{
	text-align: left !important;
}
.sp-testimonial-free-section .sp-testimonial-client-rating{
	display: flex !important;
}
.ready-sec{
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    -webkit-background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    -moz-background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    overflow: hidden;
}
.ready-sec::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../images/net-img.png") no-repeat bottom left;
    background-size: auto;
    width: 128px;
    height: 185px;
}
.ready-sec::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../images/round-img.png") no-repeat center right;
    background-size: auto;
    width: 293px;
    height: 491px;
}
.ready-sec .container{
    position: relative;
    z-index: 1;
}
.ready-head{
    font-size: 50px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.ready-txt{
    font-size: 19px;
    color: #ffffff;
    font-weight: 600;
}
.ready-btn a{
    display: inline-block;
    text-transform: uppercase;
    border-radius: 10px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 13px 30px;
    overflow: hidden;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s
}
.ready-btn a:last-child{
    margin-left: 10px;
    background-color: #fbc911;
    color: #020202;
}
.ready-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
.ready-btn a:hover, .ready-btn a:focus, .ready-btn a:active {
    color: #fff
}
.ready-btn a:hover:before, .ready-btn a:focus:before, .ready-btn a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
footer{
    background-color: #f1f1f1;
    padding-top: 60px;
}
.footer-part .footer-logo{
    max-width: 160px;
}
.footer-part-txt{
    margin-top: 20px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}
.footer-social{
    margin-top: 20px;
}
.footer-social a{
    background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.footer-social a:last-child{
    margin-right: 0;
}
.footer-title{
    font-size: 19px;
    color: #000000;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.footer-list ul{
    margin: 0;
    padding: 0;
}
.footer-list ul li{
    list-style: none;
    padding-bottom: 10px;
}
.footer-list ul li:last-child{
    padding-bottom: 0;
}
.footer-list ul li a {
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.footer-list-last ul li{
    padding-bottom: 15px;
}
.footer-list ul li:last-child{
    padding-bottom: 0;
}
.footer-list-last ul li a{
    text-transform: none;
}
.footer-list ul li strong{
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.footer-list ul li a:hover{
    color: #fb4f33;
    padding-left: 3px;
}
.footer-list ul li span {
    background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    border-radius: 50%;
    min-width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.footer-copyright{
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    font-weight: normal;
    margin-top: 50px;
    background-image: linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    padding: 12px 0;
    position: relative;
    z-index: 1;
}
.footer-copyright a{
    color: #fff;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.footer-copyright a:hover{
    color: #000000;
}


#back2Top.show {
    opacity: 1;
    right: 15px;
}
#back2Top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 25px;
    z-index: 999;
    padding-top: 5px;
    cursor: pointer;
    position: fixed;
    bottom: 54px;
    right: -30px;
    color: #fff;
    background-image: -moz-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -ms-linear-gradient(92deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    text-align: center;
    opacity: 0;
    transition: ease 0.2s all 0s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.page .entry-header, .blog_page_header {
    background: url("../images/banner-img.jpg") no-repeat top left !important;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 276px 0 !important;
    margin: 118px 0 50px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.page .entry-title, .blog_page_title {
    text-align: center !important;
    color: #000 !important;
    width: 100% !important;
    font-size: 26px !important;
    font-weight: bold !important;
    text-transform: capitalize !important;
    position: relative !important;
    z-index: 99 !important;
    margin-bottom: 5px !important;
}
.breadcrumb-container {
    width: 100%;
    color: #fd7b05;
    position: relative;
    font-size: 15px;
}
.breadcrumb-container a {
    color: #fd7b05;
}
.contact_page_heading {
    color: #020202;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: bold;
    padding-bottom: 15px;
    position: relative;
}
.contact_page_heading:before {
    position: absolute;
    content: "";
    bottom: 7px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #fc5133;
}
.contact_page_heading strong {
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.contact_page_info {
    position: relative;
    color: #000;
    margin-top: 25px;
    padding-left: 60px;
}
.contact-img {
    position: absolute;
    top: 3px;
    left: 0;
    background: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
}
.contact-text {
    color: #666;
    font-size: 16px;
}
.contact_page_info strong {
    color: #000 ;
    font-weight: 500;
    font-size: 18px;
}
.contact_page_info a {
    color: #666;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: normal;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.contact_page_info a:hover{
    color: #fc5133;
}

.contact_right {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 25px 20px;
    border-radius: 5px;
}
.get-sec .frm_fld input {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
    border-radius: 4px;
    /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
}
.get-sec .frm_fld input::placeholder{
    font-size: 16px;
    font-weight: normal;
    color: #666 ;
}
.get-sec .frm_fld select {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
    border-radius: 4px;
    /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
	
    font-size: 16px;
    font-weight: normal;
    color: #666 ;
    appearance: none;
    background: url("../images/dropdown.png") #fff no-repeat center right 10px;
    background-size: auto;
}
.get-sec .frm_fld textarea {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
    border-radius: 4px;
    /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
    height: 120px;
}
.get-sec .frm_fld textarea::placeholder{
    font-size: 16px;
    font-weight: normal;
    color: #666 ;
}
.get-sec .send_btn input {
    margin-top: 30px !important;
    text-transform: uppercase !important;
    background-image: linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    color: #fff !important;
    padding: 13px 22px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
	border-radius: 10px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.get-sec .send_btn input:hover {
    background-color: #f178b5 !important;
}
.get-sec .contact-deatails .frm_fld p, .get-sec .contact-deatails .send_btn p{
    margin-bottom: 0;
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-color: #fc5133 !important;
}
.ref_form_box {
	padding: 35px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 10px;
}
.ref_form_box p {
	margin-bottom: 0 !important;
}
.ref_form_box_heading {
	color: #020202;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
.ref_form_box_heading strong {
	display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
	font-weight: bold;
}
.ref_form_box_label {
	color: #666;
	margin-top: 15px;
    margin-bottom: 5px;
}
.ref_form_box_input input {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box_input select {
	background: url("../images/dropdown.png") #fff no-repeat center right 10px;
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	border-radius: 2px;
	color: #555;
	padding: 10px 30px 10px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
        outline: 0;
}
.ref_form_box_input textarea {
	resize: none;
	height: 144px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box .contact_btn input {
	font-weight: 600;
	background: #fd7b05 !important;
	font-size: 16px;
	margin-top: 20px;
	border-radius: 10px;
	padding: 13px 40px 12px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.ref_form_box .contact_btn input:hover{
	background: #fc5133 !important;
}
span.wpcf7-list-item {
	margin: 0 !important;
	display: block;
}
.wpcf7-list-item label {
	display: block;
	position: relative;
	margin-top: 8px;
	color: #555;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.half_check .wpcf7-list-item {
	width: 45%;
}
.wpcf7-list-item label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.wpcf7-list-item-label {
	position: relative;
	padding-left: 22px;
}
.wpcf7-list-item-label::before {
	position: absolute;
	top: 1px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label:before {
	background-color: #ccc;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
	background-color: #fd7b05;
	border-color: #fd7b05;
}
.wpcf7-list-item-label:after {
	content: "";
	position: absolute;
	display: none;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
	display: block;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.review-content {
    padding: 40px 20px;
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 2px 6px 2px;
    border-radius: 10px;
    min-height: 100%;
}
.review-content .review-txt{
    color: #000;
    font-size: 16px;
    font-weight: normal;
	font-style: italic;
}
.review-content img {
    margin-top: 20px;
}
.reviews-name {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    position:relative;
}
.reviews-name::after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, #ffd21a 0%, #fbc911 35%, #fd7b05 70%, #fb4f33 100%);
    width: 40px;
    height: 3px;
	border-radius: 30px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.inner_content {
    padding: 20px 0;
}
.inner_page_img img{
    width: 100%;
}
.inner_titl {
    color: #020202;
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}
.inner_titl strong {
    display: inline-block;
    position: relative;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 40%, #fbc911 75%, #ffd21a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.inner_titl:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 50%, #fbc911 100%);
    border-radius: 4px;
}
.inner_txt {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    margin-top: 20px;
}
.inner_list_txt{
    margin-top: 20px;
}
.inner_list_txt ul {
   padding: 0;
   margin: 0
}
.inner_list_txt ul li {
    background: url("../images/list-img.png");
    background-position: top 4px left;
    padding-left: 28px;
    background-repeat: no-repeat;
    background-size: 18px;
    color: #000;
    font-size: 16px;
    font-weight: normal;
    list-style: none;
    padding-bottom: 6px;
}
.inner_bottm_sec {
    background: #f1f1f1;
    padding: 30px 20px;
    text-align: center;
}
.inner_bottm_sec .inner_titl:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(180deg, #fb4f33 0%, #fd7b05 50%, #fbc911 100%);
    border-radius: 4px;
}
.core-img img{
    margin-bottom: 20px;
}
.core-box {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    min-height: 100%; 
}
.core-box .inner_titl{
	font-size: 22px;
}
.inner-btn {
    margin-top: 20px;
}
.inner-btn a {
    display: inline-block;
    font-size: 15px;
    color: #fff !important;
    font-weight: 500;
    text-transform: capitalize;
    background-image: linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -moz-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    background-image: -webkit-linear-gradient(1deg, #fbc911 0%, #fd7b05 51%, #fb4f33 100%);
    padding: 13px 25px;
    border-radius: 10px;
    overflow: hidden;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s
}
.inner-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
.inner-btn a:hover, .inner-btn a:focus, .inner-btn a:active {
    color: #fff
}
.inner-btn a:hover:before, .inner-btn a:focus:before, .inner-btn a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
.inner_center_titl:after {
    left: 50%;
    transform: translatex(-50%);
}
.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}
.footer_btn1 {
    background: #020202;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important; 
    text-transform: capitalize;
}
.footer_btn2 {
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    padding-top: 9px;
}
.footer_btn3 {
    background: #fbc911;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important; 
    text-transform: capitalize;
}
.thankyou-btn a {
    text-decoration: none !important;
    color: #fff;
    background: #fc5133;
    text-align: center;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    transition: ease 0.5s all 0s;
}
.thankyou-btn a:hover{
    background-color: #171717;
}
.error_page {
    padding: 40px 0 80px;
}


/*================Responsive==============*/

@media only screen and (min-width : 300px) and (max-width : 1023px){
	.header-menu, .header-call, .banner-wave-img, .services-head strong::before, .choose-head strong::before, .choose-line::after, .choose-line::after, .about-right-head strong::before, .testimonial-title strong::before{
		display: none;
	}
	.darkHeader{
		animation: none;
	}
	.header-logo img {
        width: 90px;
		height: auto;
	}
	.banner-sec{
		margin-top: 88px;
	}
	.banner-content{
		padding-left: 0;
	}
	.banner-head{
		font-size: 28px;
	}
	.services-head, .choose-head, .about-right-head, .testimonial-title, .ready-head{
		font-size: 26px;
	}
    .rmp-menu-title-image {
        width: 50%;
        height: 100%;
    }
	.banner-btn a{
		 font-size: 15px;
		 padding: 12px 20px;
	}
	.page .entry-header, .blog_page_header {
        padding: 150px 0 !important;
        margin: 88px 0 50px !important;
    }
	.services-sec, .choose-sec, .ready-sec{
		padding: 40px 0;
	}
	.about-sec{
		padding: 40px 0 70px;
	}
	.services-head, .choose-head{
		 margin-bottom: 50px;
	}
	.about-right-btn a, .ready-btn a{
		font-size: 15px;
		padding: 12px 25px;
	}
	.testimonial-head{
		font-size: 15px;
	}
	.testimonial-head{
		 margin-bottom: 50px;
	}
	.testimonial-title{
		margin-bottom: 30px;
	}
	.testimonial-sec{
		padding-bottom: 40px;
	}
}

@media only screen and (min-width : 300px) and (max-width : 991px){
    .header-call{
        display: inline-flex;
        position: fixed;
        top: 28px;
        right: 90px;
		margin: 0;
    }
	.banner-sec::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to right, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 60%) 20%, rgb(0 0 0 / 0%) 100%);
		background: -webkit-linear-gradient(to right, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 60%) 20%, rgb(0 0 0 / 0%) 100%);
		background: -moz-linear-gradient(to right, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 60%) 20%, rgb(0 0 0 / 0%) 100%);
		
	}
	.banner-sec {
        padding: 80px 0;
    }
	.footer-copyright{
		padding-bottom: 60px;
	}
	
}

@media only screen and (max-width : 320px) {
	.inner_page_img img {
        margin-bottom: 30px;
    }
	.contact_right{
		margin-top: 30px;
	}
}

@media only screen and (min-width : 321px) and (max-width : 480px) {
	.inner_page_img img {
        margin-bottom: 30px;
    }
	.contact_right{
		margin-top: 30px;
	}
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {
	.inner_page_img img {
        margin-bottom: 30px;
    }
	.contact_right{
		margin-top: 30px;
	}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.header-menu ul li{
		margin-right: 0;
	}
	.header-menu ul li:last-child{
		 margin-left: 0;
	}
	.header-call{
		margin-left: 1px;
	}
	.header-menu .header-btn a{
		padding: 10px 18px;
	}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : portrait) {
	.header-menu ul li{
		margin-right: 0;
	}
	.header-menu ul li:last-child{
		 margin-left: 0;
	}
	.header-call{
		margin-left: 1px;
	}
	.header-menu .header-btn a{
		padding: 10px 18px;
	}
}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : landscape) {
	.header-menu ul li{
		margin-right: 0;
	}
	.header-menu ul li:last-child{
		 margin-left: 0;
	}
	.header-call{
		margin-left: 1px;
	}
	.header-menu .header-btn a{
		padding: 10px 18px;
	}
}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
	.header-menu ul li{
		margin-right: 0;
	}
	.header-menu ul li:last-child{
		 margin-left: 0;
	}
	.header-call{
		margin-left: 1px;
	}
	.header-menu .header-btn a{
		padding: 10px 18px;
	}
}

@media screen and (min-width: 1424px) {
	.banner-sec{
		padding: 193px 0;
	}
	.banner-content {
		padding-left: 160px;
	}
	.choose-sec{
		padding: 57px 0;
	}
	.ready-sec{
		padding: 60px 0;
	}
	.page .entry-header, .blog_page_header{
		 padding: 292px 0 !important;
	}
}

@media screen and (min-width: 1624px) {
	.banner-sec{
		padding: 238px 0;
	}
	.banner-content {
		padding-left: 160px;
	}
	.choose-sec{
		padding: 80px 0;
	}
	.ready-sec{
		padding: 80px 0;
	}
	.page .entry-header, .blog_page_header{
		 padding: 337px 0 !important;
	}
}

@media screen and (min-width: 1920px) {
	.banner-sec{
		padding: 305px 0;
	}
	.banner-content {
		padding-left: 160px;
	}
	.choose-sec{
		padding: 114px 0;
	}
	.ready-sec{
		padding: 80px 0;
	}
	.page .entry-header, .blog_page_header{
		 padding: 404px 0 !important;
	}
}

@media screen and (min-width: 2048px) {
	.banner-sec{
		padding: 334px 0;
	}
	.banner-content {
		padding-left: 160px;
	}
	.choose-sec{
		padding: 128px 0;
	}
	.ready-sec{
		padding: 100px 0;
	}
	.page .entry-header, .blog_page_header{
		 padding: 433px 0 !important;
	}
}

@media screen and (min-width: 2550px) {
	.banner-sec{
		padding: 447px 0;
	}
	.banner-content {
		padding-left: 160px;
	}
	.choose-sec{
		padding: 185px 0;
	}
	.ready-sec{
		padding: 100px 0;
	}
	.page .entry-header, .blog_page_header{
		 padding: 545px 0 !important;
	}
}
