@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
html {
  scroll-behavior: smooth;
}
body {
    margin: 0px !important;
    padding: 0px !important;
    background-color: #FFF;
    overflow-x: hidden !important;
    font-family: 'Poppins', sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: none;
}
::selection {
	/*background: #b4b4b4;*/
	background: #d82533;
	color: #FFF;
}
::-moz-selection {
	/*background: #007dc5;*/
	background: #d82533;
	color: #FFF;
}
::-webkit-scrollbar {
    width: 10px;
    display: none;
}
::-webkit-scrollbar-track {
    background: #f1f1f1
}
::-webkit-scrollbar-thumb {
    background: #bfbfbf
}
::-webkit-scrollbar-thumb:hover {
    background: #555
}
h1, h2, h3, h4, h5, h6, p, td, th {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}
a {
    outline: none !important;
    /*cursor: none;*/
}
a:hover {
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.form-control:focus {
    box-shadow: none !important;
}
select:focus {
    outline: none;
}
/*------------CUMMON CSS------------*/
/*--------//HOME PAGE START//-----------*/
.btn {
    margin: 0 0 0 0;
    background-color: white;
    color: #000000;
    border: 2px solid #e7e7e7;
    border-radius: 50px;
    width: 120px;
    display: inline-block;
    text-align: center;
    margin-bottom: 8px;
}
.contactlist li {
    font-weight: 300 !important;
    color: #959595 !important;
    font-size: 13px !important;
    padding: 10px 5px;
}
.contactlist li span {
    font-weight: 600 !important;
    color: #424242 !important;
}
.contactlist li i {
    font-size: 15px;
    color: #000;
}
.all-float-clear {
    clear: both;
}
/*-----------------HEADER PART START------------------*/
.header-mobile{
    display:none;
    width:100%;
}
.header-lg{
    width: 100%;
}
header.main-header {
    margin: 0 auto !important;
    padding: 10px 40px 10px 40px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    max-width: 100%;
}
header.main-header .main-menu-sec {
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
    margin-top:20px;
}
header.main-header .main-menu-sec ul.main-menu-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    white-space: nowrap;
}
header.main-header .main-menu-sec ul.main-menu-list li {
    margin: 0;
    padding: 0; 
    position: relative;
}
header.main-header .main-menu-sec ul.main-menu-list li a {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #191919;
    text-transform: uppercase;
    text-decoration: none;
}
header.main-header .main-menu-sec ul.main-menu-list li.active a{
    color: #d82533;
}
header.main-header .main-menu-sec ul.main-menu-list li a{
    transition: color .3s ease;
}
header.main-header .main-menu-sec ul.main-menu-list li a:hover{
    color: #d82533;
}
.bg-color{
    background: #fff;
}
.header-contact-sec {
    max-width: 100%;
    width: 100%;
}
.h-contact-list li span img{
    margin-left: 12px;
}
.header-contact-sec ul.h-contact-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}
.header-contact-sec ul.h-contact-list li span {
    display: block;
    margin: 0 0 6px 0;
    padding: 0;
    font-size: 14px;
    /*font-family: 'Roboto', sans-serif;*/
    color: #2627d1;
    font-weight: 500;
    text-align: end;
}
.header-contact-sec ul.h-contact-list li a {
    position: relative; 
    display: block;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #000000; 
    transition: color .3s ease;
    text-align: right;
}
.header-contact-sec ul.h-contact-list li:nth-child(2){    
    margin-left: 18px;
    padding-left: 18px;
    border-left: 1px solid #ddd;
}
.header-contact-sec ul.h-contact-list li a:hover{
    color: #d82533;
}
header.main-header .main-menu-sec ul.main-menu-list li:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: transparent;
    background-position: right bottom;
    transition: all 1s ease-out;
}
header.main-header .main-menu-sec ul.main-menu-list li:hover:before {
    background-position: left bottom;
    background: linear-gradient(to right, #d82533 50%, #fff 50%);
    background-size: 200% 100%;
}
header.main-header .main-menu-sec ul.main-menu-list li.active:before {
    background-position: left bottom;
    background: linear-gradient(to right, #d82533 50%, #fff 50%);
    background-size: 200% 100%;
}
/*-----------------HEADER PART START------------------*/
/*--------------Mobile Header Start--------------*/
.header-mobile-main{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 2fr;
    grid-template-areas:    "header-mobile-logo header-mobile-contact"    "header-mobile-logo header-mobile-menu";
    grid-gap: 10px;
    position: relative;
    float: left;
}
.header-mobile-logo{
    grid-area: header-mobile-logo;
}
.header-mobile-contact{
    grid-area: header-mobile-contact;
}
.header-mobile-menu{
    grid-area: header-mobile-menu;
}
.header-mobile-menu-div{
    position: fixed;
    width: 0%;
    left: 0;
    top: 153px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}
.web-seo-card .smo:last-child{
    border-bottom:none !important;
    padding-bottom: 0 !important;
}
.web-seo-card .smo:first-child{
    padding-top: 0 !important;
}
.header-mobile-menu-div.open-nav{
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease-in-out;
}
.menu-btn{
    float: right;
    outline: none;
    border: none;
    background: #fff0;
    width: fit-content; 
    height: 50px;
    padding: 0;
}
.menu-btn:focus{
    outline: none ;
}
.menu-btn span{
    width: 50px;
    height: 2px;
    float: left;
    border-bottom: 2px solid #8c8c8c;
    margin-top: 30px;
    position: relative;
    transition: 0.5s ease-in-out;
    transform-origin:0 0;
}
.menu-btn span:before{
    content: '';
    width: 38px;
    height: 2px;
    float: left;
    border-bottom: 2px solid #8c8c8c;
    position: absolute;
    top: -12px;
    right: 0;
    transition: 0.5s ease-in-out;
    transform-origin:0 0;
}
.menu-btn span:after{
    content: '';
    width: 38px;
    height: 2px;
    float: left;
    border-bottom: 2px solid #8c8c8c;
    position: absolute;
    top: 13px;
    right: 0;
    transition: 0.5s ease-in-out;
    transform-origin:0 0;
}
.menu-btn.nav-span span{
    border: none;
    transition: 0.5s ease-in-out;
}
.menu-btn.nav-span span:after{
    transform:rotate(-45deg) translate(-1px, 2px);
    transition: 0.5s ease-in-out;
}
.menu-btn.nav-span span:before{
    transform: rotate(45deg) translate(1px, -1px);
    transition: 0.5s ease-in-out;
}
/*--------------Mobile Header End--------------*/
/*----------SOCIAL MEDIA ICON SEC------------*/
/*.icon-bar {
    position: fixed;
    z-index:999;
    right: -123px;
    top: 50%;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
    width: 370px;
    padding-top: 30px;
    border-top: 1px solid #8f8f8f;
}*/
.icon-bar a {
    display: inline-block;
    /* text-align: center; */
    /* padding: 4px; */
    /* transition: all 0.3s ease; */
    color: #000;
    /* font-size: 18px; */
    /* line-height: 23px; */
    /* font-family: 'Poppins', sans-serif; */
}
.icon-bar h5 {
    margin: 0 5px 0 0;
    color: #db4158;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    font-family: 'Poppins', sans-serif;
}
/*----------SOCIAL MEDIA ICON SEC------------*/
/*----------BANNER SEC------------*/
.mns-home-banner-right{
    float: right;
}
.banner {
    background-image: url(../../assets/img/home-banner-bg-new.png);
    background-size: cover;
    min-height: 1080px;
    width: 100%;
    padding: 0 35px;
}
.banner-service {
    margin-top: 115px;
}
.banner-heading {
    margin-top: 195px;
}
.banner-heading h3 {
    padding-top: 100px;
    line-height: 32px;
    color: #7c7c7c;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin-bottom: 17px;
}
.banner-heading h1 {
    font-size: 80px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.banner-heading a {
    font-weight: 600;
}
.banner-service h5 {
    color: #db4158;
    line-height: 2;
    border-top: 2px solid#cecece;
}
.banner-service p {
    font-size: 10px;
    color: #818181;
    line-height: 2;
}
.mns-home-banner-link{
    display: flex;
    gap:30px;
}
.mns-home-banner-link a {
    color: #db4158;
    margin-top: 50px;
    background: #fff0;
    border: 3px solid #cccccc;
    width: 194px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
/* .mns-home-banner-link a:hover{
    color: #db4158;
} */
.banner-service2 {
    padding-top: 10px;
}
.banner-service2 .icon-wrapper {
    color: #db4158;
}
.mns-banner-slider{
    width: 700px;
    margin-top: 125px;
}
.mns-banner-slider-main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}
.mns-banner-slider-div{
    display: grid;
    border-top: 1px solid #bdbdbd;
    padding-top: 15px;
}
.mns-banner-slider-div h3{
    font-size: 21px;
    color: #000000;
    font-weight: bold;
    line-height: 27px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: color .3s ease;
    position: relative;
 }
.mns-banner-slider-div p{
    font-size: 14px;
    color: #818181;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
}
.mns-banner-slider-main .owl-nav .owl-prev{
    display: none !important;
}
.mns-banner-slider-main .owl-nav{
    position: absolute; 
    right: -130px;
    top: 40px;
}
/*.mns-home-banner-right{
    margin-top: 160px;
}*/
/*----------BANNER SEC END------------*/
/*----------WHAY CHOOSE SEC START----------*/
.whychooseus-button {
    position: relative;
    margin: 15px 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.why-choose {
    position: relative;
}
.why-choose:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 47%;
    top: 0;
    background: url(../img/11.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.choose-button.h5 {
    margin: 0;
    padding-bottom: 7px;
    position: relative;
    border-bottom: 2px solid #ccc;
}
.choose-button.h5:before {
    position: absolute;
    background: brown;
    height: 2px;
    content: '';
    width: 50px;
    bottom: -2px;
    left: 0;
}
.paarr {
    margin-top: 50px !important;
}
.seo-body-part .multi-national {
    font-size: 16px !important;
    color: #636379 !important;
}
.seo-body-1-para {
    font-size: 16px !important;
}
.parrra {
    color: #000000 !important;
}
.sec-contt {
    margin-top: 10% !important;
}
/*.seo_serv {
    margin-left: 83px !important;
}*/
.whychooseus-button a {
    margin-inline-end: 30px;
    color: #0a0a0a;
    font-weight: 600;
    background-color: #e1e1e1;
    padding-left: 30px;
    padding-right: 118px;
}
.whychooseus-button h4 {
    font-weight: 500;
    font-size: 16px;
}
.whychooseus-button h4 span {
    color: #8c8c8c;
}
.why-choose {
    padding: 0px 100px;
}
.why-choose-heading {
    position: relative;
}
.why-choose-heading:before {
    content: '';
    position: absolute;
    left: -25%;
    width: 110px;
    height: 160px;
    top: 0;
    background: url(../img/12.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.why-choose-heading:after {
    content: '';
    position: absolute;
    right: 0;
    width: 78px;
    height: 78px;
    top: -40px;
    background: url(../img/13.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.why-choose-heading h1 {
    padding-top: 68px;
    font-size: 58px;
    color: #db4158;
    font-weight: 600;
    text-align: left;
    margin-left: 68px;
}
.why-choose-heading h5 {
    padding-top: 30px;
    line-height: 28px;
    text-align: left;
    color: #060606;
    font-size: 18px;
    margin-left: 70px;
}
/*.why-choose-btn {
    font-weight: 600;
    border: none;
    margin-bottom: 50px;
    margin-top: 15px;
}*/
.why-choose-btn span {
    color: #37a61d;
}
.whychooseus-button img {
    margin-inline-start: 15px;
}
.why-choose-img img {
    margin-top: 100px;
    margin-left: 18px;
}
.seo_servs .audience {
    display: grid;
    grid-template-columns: 1fr 4fr;
    width: 64%;
    margin-top: 2px;
    align-items: center;
    align-content: center;
    padding-left: 15px;
}
.seo_servs .audi_sec2 p {
    line-height: 27px !important;
    margin-top: 25px;
}
.seo_servs {
    padding-bottom: 63px;
    padding-left: 10%;
    position: relative;
}
.seo_servs:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    z-index: -1;
    border-radius: 20px;
    height: 12px;
    border-bottom: 12px solid #d0d0d0;
}
.aud_main {
    margin-top: 90px !important;
}
.target_sec h5 {
    position: relative;
}
.target_sec {
    position: relative;
    padding: 0;
}
.target_sec:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 145px;
    border-left: 3px solid #d0d0d0;
}
.target_sec h5:before {
    content: '';
    position: absolute;
    top: 10px;
    width: 8%;
    left: 0;
    border-top: 3px solid #d0d0d0;
}
.why-choose-bttn {
    background-color: black;
    padding: 13px 16px 13px 16px;
    font-size: 22px;
    border-radius: 17%;
    color: #fff;
    font-weight: 600;
}
.why-choose-bttn:hover {
    background-color: black !important;
    color: #fff !important;
}
.why-choose-bttn:focus {
    color: #fff !important;
    text-decoration: none !important;
}
.about-left-main {
    padding-left: 117px;
}
.seo_servs h5 {
    font-size: 19px;
    font-weight: 600;
    margin-left: 0;
    color: black;
    padding-left: 75px;
}
.seo_servs1 {
    padding-left: 23%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 315px;
}
.seo_servs1 .audience1 {
    display: grid;
    grid-template-columns: 1fr 4fr;
    width: 100%;
    align-items: center;
    align-content: center;
    margin-left: 16px;
}
.audi_sec22 {
    margin-top: 40px;
}
.seo_servs1 .audience12 {
    display: grid;
    grid-template-columns: 1fr 4fr;
    width: 100%;
    align-items: center;
    align-content: center;
    margin-left: 16px;
}
.seo_servs1 h5 {
    font-size: 19px;
    font-weight: 600;
    margin-left: 0;
    color: black;
}
.audi_sec22 p {
    line-height: 27px !important;
}
.target_sec1 h5 {
    position: relative;
    margin-right: 0;
    width: 100%;
    margin-top: 25px;
    padding-left: 75px;
}
.target_sec1 {
    position: relative;
    width: 100%;
}
.target_sec1:before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    height: 143px;
    border-left: 3px solid #d0d0d0;
}
.target_sec1 h5:before {
    content: '';
    position: absolute;
    top: 10px;
    width: 13%;
    left: 0;
    border-top: 3px solid #d0d0d0;
}
.aud_main .row:before {
    display: none !important;
}
.target_sec:after {
    content: "";
    position: absolute;
    display: inline-block;
    background: #db4158;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: -4px;
    bottom: -63px;
}
.target_sec1:after {
    content: "";
    position: absolute;
    display: inline-block;
    background: #db4158;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: -5px;
    top: -22px;
}
/*.seo_ser_main_sec_top .analysis_top a {
    color: #0a0a0a;
    font-weight: 600;
    font-size: 15px;
    background-color: #e1e1e1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    padding: 6px 18px 7px 18px;
    margin-bottom: 15px !important;
}*/
.whychoosseus-button p {
    text-align: center;
}
.whychoosseus-button a {
    color: #0a0a0a;
    font-weight: 600;
    font-size: 15px;
    background-color: #e1e1e1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    padding: 7px 18px 7px 18px;
}
.whychoosseus-button .why-choose-btn {
    margin-bottom: 20px;
}
.analysis_botm p {
    font-size: 14px;
    font-weight: 600;
    color: #47464e;
}
.analysis_botm {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
/*.seo_serv {
    border: 1px solid #ebebeb;
    margin-top: 35px;
    align-items: center;
    align-content: center;
    vertical-align: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
}*/
.seo_ser_main_sec_top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 63px;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
}
/*.seo_ser_main_sec_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 23px;
    gap: 57px;
}*/
/*.test {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-size: 100% 100%, 54% 61%, 57% 54%, 53% 57%, 54% 52%;
    background-repeat: no-repeat;
    background-image: linear-gradient(white, white), 
    linear-gradient(180deg, #eac018 30%, #b7b7b7 30%), 
    linear-gradient(10deg, #eac018 100%, #b7b7b7 30%), 
    linear-gradient(30deg, #eac018 100%, #b7b7b7 30%), 
    linear-gradient(20deg, #eac018 100%, #b7b7b7 30%);
    background-position: center center, left top, right top, left bottom, right bottom;
    background-origin: content-box, border-box, border-box, border-box, border-box;
    background-clip: content-box, border-box, border-box, border-box, border-box;
    transform: rotate(100deg);
}
.test1 {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-size: 100% 100%, 54% 61%, 57% 54%, 53% 57%, 54% 52%;
    background-repeat: no-repeat;
    background-image: linear-gradient(white, white), 
    linear-gradient(180deg, #1591a0 30%, #b7b7b7 30%), 
    linear-gradient(10deg, #1591a0 100%, #b7b7b7 30%), 
    linear-gradient(30deg, #1591a0 100%, #b7b7b7 30%), 
    linear-gradient(20deg, #1591a0 100%, #b7b7b7 30%);
    background-position: center center, left top, right top, left bottom, right bottom;
    background-origin: content-box, border-box, border-box, border-box, border-box;
    background-clip: content-box, border-box, border-box, border-box, border-box;
    transform: rotate(100deg);
}
.test2 {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-size: 100% 100%, 54% 61%, 57% 54%, 53% 57%, 54% 52%;
    background-repeat: no-repeat;
    background-image: linear-gradient(white, white), 
    linear-gradient(180deg, #3f955f 30%, #b7b7b7 30%), 
    linear-gradient(10deg, #3f955f 100%, #b7b7b7 30%), 
    linear-gradient(30deg, #3f955f 100%, #b7b7b7 30%), 
    linear-gradient(20deg, #3f955f 100%, #b7b7b7 30%);
    background-position: center center, left top, right top, left bottom, right bottom;
    background-origin: content-box, border-box, border-box, border-box, border-box;
    background-clip: content-box, border-box, border-box, border-box, border-box;
    transform: rotate(100deg);
}*/
/*-----------WHAY CHOOSE SEC END-----------*/
/*---------- What We do --------------*/
.what-we-do {padding-top: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    width: 100%;
    display: table;
    margin: 0;
    max-width: none;
    height: 100vh;
    /* background-image: url(../images/multidimentional.jpg); */
}
/*.web-seo-card {
    box-shadow: rgb(0 0 0 / 34%) 0px 4px 8px 0px, rgb(208 209 255) 0px 6px 20px 0px;
    margin-left: 0px;
    border-radius: 10px;
    background-image: url(../images/Layer-11.png);
    background-color: rgb(255, 255, 255);
    position: relative;
    top: 16px;
    height: 100%;
    width: 230px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.wh-heading {
    margin-left: 70px;
}
.mns-services-div {
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0px 1px 9px 0px #d6d6d6;
    width: 276px;
    background: #fff;
    transition: 0.3s ease-in-out;
}*/
.mns-services-main .col-lg-6 {
    padding: 0 !important;
}
/*.mns-services-main {
    width: 75%;
    margin-left: 156px !important;
    z-index: 1;
}*/
.mns-services-content {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 17px;
    border-bottom: 1px solid #aaaaaa;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 10fr 1fr;
    transition: all 0.3s ease-in-out;
}
/*.mns-services-main-bottom {
    margin-top: -8px;
    z-index: 0;
}*/
.mns-services-content h3 {
    font-size: 16px;
    color: #1d1f20;
    line-height: 23px;
    font-weight: 600;
    text-align: left;
    transition: 0.3s ease-in-out;
}
.mns-services-img {
    display: flex;
    justify-content: space-between;
}
.mns-services-img-div {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 8px;
    border: 1px solid #c0d0e3;

}
.mns-services-img-div img {
    width: auto;
    transition: 0.3s ease-in-out;
}
.mns-services-main .right {
    float: right;
}
.mns-services-bg-blue {
    background: #375da7;
}
.mns-services-bg-blue .mns-services-content h3 {
    color: #fff;
}
/*.mns-services-bg-blue .mns-services-img-div img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}*/
/*.mns-services-bg-hover:hover {
    background: #375da7;
    transition: 0.3s ease-in-out;
}*/
.mns-services-bg-hover:hover .mns-services-content h3 {
    color: #fff;
    transition: 0.3s ease-in-out;
}
.mns-services-bg-hover:hover .mns-services-img-div img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: 0.3s ease-in-out;
}
.service-page:before {
    content: '';
    position: absolute;
    left: -3px;
    width: 100%;
    height: 92%;
    top: 41px;
    background: url(../img/2.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.service-page:after {
    content: '';
    position: absolute;
    right: -3px;
    width: 80px;
    height: 100%;
    bottom: 70px;
    background: url(../img/4.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}
.service1 {
    position: relative;
}
.service1:before {
    content: '';
    position: absolute;
    left: -30px;
    width: 70px;
    height: 100%;
    bottom: 70px;
    background: url(../img/3.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.wh-heading h1 {
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    color: #db4158;
    font-weight: 600;
}
/*.wh-paragraph {
    margin-left: 60px;
    margin-top: 3px;
}
.wh-paragraph p {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    font-weight: 500;
    line-height: 27px;
}
.web-need-heading h1 {
    font-size: 35px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
}*/
.web-need-paragraph {
    margin-top: 20px;
}
/*.web-need-paragraph p {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    font-weight: 400;
    line-height: 20px;
}*/
.wh-image {
    margin-top: 100px;
}
.search {
    margin-top: 70px;
}
.search-engine2 {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.5s ease-in-out;
}
.search-engine3 {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.5s ease-in-out;
}
.search-engine4 {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.5s ease-in-out;
}
.search-engine1-image {
    margin-left: 0px;
    padding: 13px 13px;
    width: 100%;
}
.search-engine22-image {
    margin-left: 0px;
    padding: 13px 13px;
    width: 100%;
}
.search-engine3-image {
    margin-left: 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.search-engine4-image {
    margin-left: 0px;
    padding: 13px 13px;
    width: 100%;
}
/*.search-engine1-heading {
    margin-left: 0px;
    padding-top: 10px;
}*/
.search-engine1-heading h2 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #222222;
    font-weight: 500;
    line-height: 20px;
}
/*.search-engine1-paragraph {
    margin-left: 0px;
    margin-top: 20px;
    text-align: center;
}
.search-engine1-paragraph p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #5c5b5b;
    font-weight: 400;
    line-height: 20px;
}
.search-engine2 {
    position: relative;
    margin-top: 100px;
}*/
.search-engine2-image {
    margin-left: 0px;
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
}
.search-engine21-image {
    margin-left: 0px;
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
}
/*.search-engine2-heading {
    margin-left: 0px;
    padding-top: 20px;
    justify-content: center;
    text-align: center;
}*/
.search-engine2-heading h2 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #222222;
    font-weight: 500;
    line-height: 20px;
}
/*.search-engine2-paragraph {
    margin-left: 0px;
    margin-top: 20px;
}
.search-engine2-paragraph p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #5c5b5b;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}*/
.search-engine1 {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -17px;
}
.search-engine3 {
    position: relative;
}
.search-engine3-image {
    margin-left: 0px;
}
/*.search-engine3-heading {
    margin-left: 0px;
    padding-top: 20px;
}*/
.search-engine3-heading h2 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #222222;
    font-weight: 500;
    line-height: 20px;
}
/*.search-engine3-paragraph {
    margin-left: 0px;
    margin-top: 20px;
}
.search-engine3-paragraph p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #5c5b5b;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
}
.search-engine4 {
    position: relative;
    margin-top: 106px;
}*/
.search-engine4-image {
    margin-left: 0px;
}
/*.search-engine4-heading {
    margin-left: 0px;
    padding-top: 20px;
}*/
.search-engine4-heading h2 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #222222;
    font-weight: 500;
    line-height: 20px;
}
/*.search-engine4-paragraph {
    margin-left: 20px;
    margin-top: 20px;
}
.search-engine4-paragraph p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #5c5b5b;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}*/
.search-engine2-image img {
    height: 5px;
    width: 58px;
}
.web-seo {
    padding: 8px 0px !important;
    display: flex;
    justify-content: space-between;
    margin-left: 0px;
    margin-top: 0px;
    border-bottom: 2px solid #d7d7d7;
    content: "";
    gap: 52px;
    width: 100%;
    align-content: center;
    align-items: center;
    align-content: 15px 0px;
    margin-left: 0px;
    margin-top: 0px;
    justify-content: center;
}
.ppc {
    padding: 8px 0px !important;
    display: flex;
    justify-content: space-between;
    margin-left: 0px;
    margin-top: 0px;
    border-bottom: 2px solid #d7d7d7;
    content: "";
    gap: 52px;
    width: 100%;
    align-content: center;
    align-items: center;
    align-content: 15px 0px;
    margin-left: 0px;
    margin-top: 0px;
    justify-content: center;
}
.smo {
	padding: 8px 0px !important; 
	cursor: pointer; 
	display: flex;
	justify-content: space-between;
	margin-left: 0px;
	margin-top: 0px;
	border-bottom: 2px solid #d7d7d7;
	content: "";
	gap: 52px;
	width: 100%;
	align-content: center;
	align-items: center;
	align-content: 15px 0px;
	margin-left: 0px;
	margin-top: 0px;
	/*justify-content: center;*/
}
.develop {
    padding: 8px 0px !important;
    display: flex;
    justify-content: space-between;
    margin-left: 0px;
    margin-top: 0px;
    content: "";
    gap: 52px;
    width: 100%;
    align-content: center;
    align-items: center;
    align-content: 15px 0px;
    margin-left: 0px;
    margin-top: 0px;
    justify-content: center;
    transition: 0.2s ease-in-out;
}
/*.wh-heading::after {
    border-bottom: 4px solid #ebebeb;
    content: "";
    display: block;
    width: 14%;
    padding: 12px;
}*/
.web-seo:focus {
    color: yellow;
}
/*.wh-w-do {
    border-right: 1px solid #c2c2c2;
    margin-top: 56px;
    height: 628px;
    position: relative;
    top: 0;
    left: 0;
    height: 664px;
}*/
.wh-w-image {
    margin-top: 35px;
}
/*.move-control {
left: 20px;
}
.carousel-control-prev {
    left: 634px;
}*/
.carousel-control-prev {
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 31px;
    color: #fff;
    text-align: center;
    opacity: 6.5;
    transition: opacity .15s ease;
    padding: 0;
}
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 31px;
    color: #fff;
    text-align: center;
    opacity: 6.5;
    transition: opacity .15s ease;
    padding: 0;
}
/*.move-control {
    position: absolute;
    top: -49px;
    right: 30px;
    width: 70px;
    background: #ebebeb;
    height: 42px;
    left: auto;
    border-radius: 12px;
    align-items: center;
}
.carousel-inner {
    position: relative;
}*/
.carousel {
    position: relative;
}

.active .web-seo-img1 img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    padding: 10px;
}
.web-seo:hover .web-seo-img1 img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    padding: 10px;
}
.web-seo:hover .web-seo-img1 {
    background: url(../images/Rectangle48.png) no-repeat center;
}
.active .web-seo-img1 {
    background: url(../images/Rectangle48.png) no-repeat center;
}
.web-seo:hover .web-seo-para p {
    color: #2e3192;
}
.active .web-seo-para p {
    color: #2e3192;
}
.ppc:hover .ppc-img img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    padding: 10px;
    transition: 0.2s ease-in-out;
}
.ppc:hover .ppc-img {
    background: url(../images/Rectangle48.png) no-repeat center;
    color: green;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
}
.develop:hover .smo-img {
    background: url(../images/Rectangle48.png) no-repeat center;
    color: green;
    margin-top: 0px;
    transition: 0.2s ease-in-out;
}
.develop:hover .smo-img img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    padding: 10px;
    transition: 0.2s ease-in-out;
}
.ppc:hover .ppc-para p {
    color: #2e3192;
    font: bold;
}
.develop:hover .smo-para p {
    color: #2e3192;
    font: bold;
}
.smo-img {
    margin-left: 0px;
    transition: 0.5s ease-in-out;
}
/*.web-seo-para {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 47px;
}*/
.ppc-para {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 47px;
}
/*.smo-para {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 47px;
}
.item-smo1 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 25px;
}
.item-smo2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 32px;
}
.item-smo3 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
}*/
.smo-img .col-xs-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.smo-img img {
    padding: 10px;
    transition: 0.5s ease-in-out;
}
.smo:hover .smo-img img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    padding: 10px;
    transition: 0.5s ease-in-out;
}
.smo:hover .smo-img {
    background: #2e3092;
    border-radius: 4px;
    margin-top: 0px;
    transition: 0.5s ease-in-out;
}
.smo.active .smo-img img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    padding: 10px;
    transition: 0.5s ease-in-out;
}
.smo.active .smo-img {
    background: #2e3092;
    border-radius: 4px;
    color: green;
    margin-top: 0px;
    transition: 0.5s ease-in-out;
}
.smo:hover .smo-para p {
    color: #2e3192;
    font: bold;
}
.web-seo-para p {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    font: bold;
}
.ppc-para p {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}
.smo-para p {
    font-family: 'Poppins', sans-serif;
    cursor: pointer; 
    text-transform: capitalize; 
    color: #000000;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}
.carousel-control-next-icon {
    background-image: none;
}
.carousel-control-prev-icon {
    background-image: none;
}
/*-----------What We Do ---------------*/
/*-----------------global clients Start---------------*/
/*.countersection {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 0px;
    margin-top: 60px;
}*/
.countersection .count1 {
    background-image: url('../img/count-back1-img.png');
    padding-top: 1px;
    background-size: 400px 130px;
}
.countersection .count2 {
    background-image: url('../img/count-back2-img.png');
    padding-top: 0px;
    background-size: 400px 130px;
}
.countersection .count3 {
    background-image: url('../img/count-back3-img.png');
    padding-top: 1px;
    background-size: 400px 130px;
    margin-top: 30px;
}
.countersection .count2 .counter {
    padding-top: 21px;
}
.nav>li>a {
    display: block;
}
.nav-tabs {
    *zoom: 1;
}
.nav-tabs:before,
.nav-tabs:after {
    display: "";
    content: "";
}
.nav-tabs:after {
    clear: both;
}
.nav-tabs>li {
    float: none;
}
.nav-tabs>li>a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 2px;
    line-height: 14px;
}
.nav-tabs {
    border-bottom: 1px solid #ddd;
}
.nav-tabs>li {
    margin-bottom: -1px;
}
.nav-tabs>li>a {
    position: relative;
    line-height: 18px;
    font-size: 18px;
    font-weight: 400;
    height: 44px;
    border: none;
    margin-left: 50px;
    color: #1c1c1c;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    cursor: pointer;
}
.nav-tabs>li>a:hover {
    border-color: #eeeeee #eeeeee #dddddd;
    color: rgb(255, 0, 0);
}
.nav-tabs>.active>a,
.nav-tabs>.active>a:hover {
    color: #555555;
    cursor: default;
    background-color: #ffffff;
    border-bottom-color: transparent;
}
/*.index-nav>.active>a::after {
    position: absolute;
    content: '';
    top: 19px;
    left: -56px;
    width: 9px;
    height: 9px;
    background: #db4158;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}*/
.seo-nav>li.active>a,
.seo-nav>li.active>a:focus,
.seo-nav>li.active>a:hover {
    color: #fff !important;
    border: none;
    background-color: #2a35a1;
    margin-top: -17px;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: rgb(255, 0, 0);
    border: none;
}
li {
    line-height: 18px;
}
/*.nav-tabs>li:last-child a{
    padding-bottom: 0;
}*/
.tab-content.active {
    display: block;
}
.tab-content.hide {
    display: none;
}
.globalclient {
    width: 100%;
    height: 900px;
    background: url(../../assets/img/doted.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 150px;
}
.globalclient .container-fluid {
    padding: 0 20px 0px 50px !important;
}
.globalclient-body {
	/*border-right: 1px solid #80797975;*/
	margin-left: 70px;
}
.globalclient-body h1 {
    font-size: 60px;
    color: #db4158;
    text-align: center;
    line-height: 66px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
/*.globalclient-body-part h5 {
    padding-left: 20px;
    line-height: 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: #3e3e3e;
}
.hideshow {
    padding: 20px;
    margin-top: 60px;
}*/
.countersection .countersection-sec:last-child h5 {
    border-bottom: none !important;
}
/*.circle-image {
    background-image: url(../../assets/img/crcl.png);
    width: 760px;
    height: 760px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}*/
.circle-text {
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle-text h1 {
    font-size: 28px;
    color: #db4158;
    font-weight: 600;
    line-height: 45px;
    font-family: 'Poppins', sans-serif;
}
.circle-text h1 span {
    color: black;
    font-weight: 600;
}
.countersection h4 {
    font-size: 36px;
    color: #000;
    text-align: center;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}
.countersection h5 {
	text-align: center;
	/*border-bottom: 1px solid #80797975;*/
	padding-top: 0;
	padding-bottom: 60px;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: #333333;
}
.index-nav {
    padding-left: 0px;
    border-left: 2px solid #d7e9fc;
    font-size: 12px;
    border-bottom: none;
    padding-top: 0;
}
.pointer {
    color: #484a4c;
}
.count {
    font-size: 25px;
    color: #db4158;
    text-align: center;
    margin-top: 50px;
    font-weight: 700;
}
/*.tab-content {
    display: none;
    text-align: center;
    color: #888;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}
.tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease-in-out;
}*/
.new-dots-main {
    display: flex;
}
.new-dots {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
}
.new-dots.red {
    background-color: #fff0;
}
.new-dots-main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 13px;
    left: 18px;
}
.new-dots {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}
.new-dots.red {
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease-in-out;
}
.new-dots span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #000;
    position: relative;
    left: 15px;
    top: -5px;
}
/*.new-dots.usa {
    left: 25%;
    top: 55%;
}
.new-dots.mex {
    left: 24%;
    top: 60%;
}
.new-dots.chi {
    left: 63%;
    top: 57%;
}
.new-dots.uk {
    left: 43%;
    top: 52%;
}
.new-dots.aus {
    left: 68%;
    top: 73%;
}
.new-dots.spa {
    left: 42%;
    top: 56%;
}
.new-dots.fra {
    left: 44%;
    top: 55%;
}
.new-dots.ita {
    left: 44%;
    top: 56%;
}
.new-dots.dub {
    left: 53%;
    top: 61%;
}
.new-dots.vie {
    left: 63%;
    top: 63%;
}
.new-dots.tha {
    left: 62%;
    top: 62%;
}
.new-dots.ind {
    left: 58%;
    top: 62%;
}
.new-dots.ger {
    left: 45%;
    top: 53%;
}*/
.new-dots svg {
    position: absolute;
    color: #db4158;
}
.pulse {
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0px 0px 0px -9px;
    transform: rotateX(55deg);
    z-index: 0;
}
.pulse:after {
    content: "";
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    margin: 0px 0 0 0;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    box-shadow: 0 0 1px 2px #db415873;
    animation-delay: 1.1s;
    z-index: 99;top: 0;
}
@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}
.countersection-sec {
    position: relative;
    padding-top: 60px;
}
.countersection-wt-mark {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}
/*.countersection-wt-mark h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 138px;
    font-weight: bold;
    color: #acacac;
    line-height: 152.57px;
    opacity: 0.09;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 100%;
}*/
.mns-globel-client-main {
    width: 100%;
}
/*-----------------global clients end---------------*/
/*----------------what our Client Says Start-------------*/
.about-us-page .container-fluid {
    padding-top: 50px;
    height: 650px;
}
/*.about-us-page {
    position: relative;
    overflow: hidden;
}*/
.about-us-page:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 47%;
    top: 0;
    background: url(../img/s.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.about-us-page:after {
    content: '';
    position: absolute;
    right: -58px;
    width: 59%;
    height: 946px;
    top: -32%;
    background: url(../img/about-right-bg.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
blockquote {
    border: none !important;
}
.about-us-heading h2 {
    font-size: 54px;
    color: #db4158;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 75px;
}
.about-us-paragraph {
    margin-top: 30px;
}
.about-us-paragraph p {
    font-size: 17px;
    color: #3e3e3e;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 30px;
    width: 82%;
}
/*.quote1 {
    margin-top: 40px;
}*/
.quote1 p q {
    font-size: 17px;
    color: #3e3e3e;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}
/*blockquote {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin: 0.5em;
    padding: 0.5em 2em 0.5em 3em;
    color: #797979;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
}*/
blockquote p {
    position: relative;
    width: 95%;
}
blockquote p svg:nth-child(1) {
    position: absolute;
    left: -25px;
}
blockquote p svg:nth-child(2) {
    margin-left: 20px;
}
blockquote small {
    display: block;
    font-size: 18px;
    line-height: 1.42857143;
    color: #dc2222;
    font-family: 'Poppins', sans-serif;
    margin-top: 25px;
    position: relative;
    padding-left: 70px;
    font-weight: 500;
}
blockquote small span {
    color: #343434;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #959595;
}
blockquote small:before {
    content: '' !important;
    position: absolute;
    width: 54px;
    height: 1px;
    background: #a1a1a1 !important;
    top: 50%;
    left: 0;
}
blockquote footer {
    padding: 0 2em 0 0;
    text-align: right;
}
blockquote cite:before {
    content: "\2013";
}
.about-img1 img {
    position: absolute;
    right: 195px;
    top: 94px;
}
.about-img2 img {
    position: absolute;
    right: 30px;
    top: 238px;
}
.about-img4 img {
    position: absolute;
    right: 525px;
    top: 90px;}
.about-img5 img {
    position: absolute;
    right: 600px;
    top: 387px;
}
.about-img6 img {
    position: absolute;
    right: 75px;
    top: 424px;
}
.about-img3 img {
    width: 150px;
    height: 150px;
}
.about-img3 img {
    position: absolute;
    right: 300px;
    top: 313px;
}
.about-page-images {
    position: relative;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
}
.about-page-images .item img {
    width: 110px;
    height: 110px;
    transition: 0.5s ease-in-out;
    display: block;
    object-fit: cover;
    cursor: pointer;
}
.about-page-images .item.active img {
    width: 206px;
    height: 206px;
    transition: 0.5s ease-in-out;
}
.active .about-img4 img {
    width: 206px;
    height: 206px;
    transition: 0.5s ease-in-out;
}
/*.carousel-inner>.active {
    left: -13px;
}*/
.previous {
    background-color: #f1f1f1;
    color: black;
}
.next {
    background-color: #04AA6D;
    color: white;
}
.round {
    border-radius: 50%;
}
/*----------what our Client Says End-----------*/
/*----------Services Section Start-------------*/
.service-page {
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
}
.web-seo-card::before{
    content: '';
    position:absolute;
    top:0px;
    left:0px;
    background-image: url(../images/multidimentional.jpg);
}
.service-heading1 h1{
    font-size: 60px;
    color: #db4158;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.service-paragraph1 {
    margin-top: 20px;
}
.service-paragraph1 p {
    font-size: 17px;
    color: #3e3e3e;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
}
.heading3-assets {
    padding: 9px 5px;
    width: 57px;
    height: 55px;
    margin-left: 26px;
    margin-right: 15px;
    border-radius: 6px;
    background-image: url(../images/Rectangle52.png);
    background-repeat: no-repeat !important;
}
.get-in-touch-headings h1 {
    font-size: 37px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    line-height: 35px;
    font-weight: 600;
}
.get-in-touch-headings h1 span{
    font-size: 23px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.get-in-touch-paragraph1{
    margin-top: 20px;
}
.get-in-touch-paragraph1 p {
    font-size: 16px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
}
.get-in-touch-paragraph2{
    margin-top: 20px;
}
.get-in-touch-paragraph2 p {
    font-size: 17px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
}
.service1{
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}
.service-btn {
    width: 150px;
    height: 50px;
    border: 1px solid #6391c8;
    background: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 26px;
    font-weight: bold;
    line-height: 25px;
    color: #3476c7;
    margin-left: 450px;
    text-decoration: none;
    z-index: 1;
    margin-top: 20px;
    box-shadow: none;
}
.analysis .img1 {
    padding: 5px 5px;
    width: 23px;
    height: 32px;
    margin-left: 16px;
    margin-right: 0px;
    border-radius: 6px;
    height: 44px;
}
.analysis .img2 {
    padding: 5px;
    width: 23px;
    height: 32px;
    margin-left: 13px;
    margin-right: 0px;
    border-radius: 6px;
    height: 44px;
}
.analysis .img3 {
    padding: 5px;
    width: 23px;
    height: 32px;
    margin-left: 15px;
    margin-right: 0px;
    border-radius: 6px;
    height: 44px;
}
.analysis .img4 {
    padding: 5px;
    width: 23px;
    height: 32px;
    margin-left: 13px;
    margin-right: 20px;
    border-radius: 6px;
    height: 44px;
}
.card1-heading {
    padding-top: 20px;
    padding-left: 9px;
}
.analysis::before{
    border: 1px solid #cbcbcb;
    position: relative;
    top: 8px;
}
.heading3 h3 {
    font-size: 15px;
    color: #1d1f20;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    font-weight: 600;
}
.v1 {
    border-top: 1px solid #aaaaaa;
    position: relative;
    top: 85px;
    width: 86%;
    left: 25px;
}
.get-in-touch-paragraph2 p span a{
    text-decoration: none;
    /* color: #1a4b5d; */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #db4158;
    font-weight: 500;
}
.header-contact-sec ul.h-contact-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}
.service-heading1 {
    margin-left: 95px;
}
.service-paragraph1 {
    margin-top: 20px;
    margin-left: 95px;
}
.get-in-touch-headings {
    margin-left: 95px;
}
.service-btn1 {
    float: right;
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.service-btn1 a{
    width: 145px;
    float: right;
    height: 38px;
    border: 1px solid #6391c8;
    background: #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 26px;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    z-index: 1;
}
.service-btn1::before {
    content: ''; 
    width: 65%; 
    height: 3px; 
    border-bottom: 1px solid #cccccc; 
    position: absolute; 
    top: 19px; 
    left: 95px; 
    z-index: -1;
}
.get-in-touch{
    margin-top: 90px;
}
.get-in-touch-paragraph2 p svg{
    margin: 0px 5px;
}
.get-in-touch-paragraph2 p img {
    padding: 0px 10px 0px 5px;
    border-right: 1px solid #ddd;
}
.get-in-touch-paragraph1 {
    margin-top: 20px;
    margin-left: 95px;
}
.get-in-touch-paragraph2 {
    margin-top: 20px;
    margin-left: 95px;
}
/*---------------Services Section End ---------------*/
/*-----------------Footer Start---------------*/
.footer-section {
    padding: 0px 40px;
    background-color: #000;
}
.footer-text a {
    color: #fff;
    font-size: 16px;
    padding-right: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.footer-text {
    padding-right: 10px;
    padding-top: 40px;
}
.footer-logo {
    text-align: center;
}
.footer-logo img {
    width: 18%;
}
.footer-icon {
    float: right;
    padding-top: 35px;
    text-align: right;
}
.footer-icon img {
    width: 16%;
}
.footer-icon-2 {
    text-align: right;
}
.footer-icon-2 img {
    width: 8%;
}
.footer-body p {
    text-align: center;
    color: #fff;
    padding-top: 10px;
    font-size: 15px;
}
.footer-body p a {
    color: #ec5319;
}
.footer-text-1 {
    padding-top: 11px;
}
.footer-text-1 i {
    padding-right: 10px;
    color: #fff;
}
.footer-text-1 a {
    padding-right: 30px;
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
.footer-text-1 svg {
    margin-right: 15px;
    color: #fff !important;
}
.footer-section-1 {
    border-bottom: 1px solid #3c3c3c;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    float: left;
}
.footer-section-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    float: left;
}
/*---------------------------------------------------//HOME PAGE END//------------------------------------------------------*/
/*---------------------------------------------------//WHY US PAGE START//------------------------------------------------*/
/*-----------------why ms start---------------*/
.whyms {
    padding-top: 130px;
    padding-bottom: 150px;
    padding-left: 40px;
}
.whyms h1 {
    font-size: 40px;
    color: #db4158;
    font-weight: 600;
    line-height: 1.5;
}
.whyms h1 span {
    color: black;
    font-weight: 600;
}
.whyweare-1 h1 {
    font-size: 37px;
    color: #db4158;
    font-weight: 600;
}
.whyweare-1 p {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    line-height: 27px;
    padding-top: 5px;
}
.whyweare-2 button {
    background-color: #db4158d4;
    color: white;
    padding-top: 2px !important;
    margin-left: -4px;
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    margin-right: 30px;
    margin-top: 20px;
}
.whywearepoints h3 {
    color: #db4158;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 600;
}
.whywearepoints h4 {
    color: #111111;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}
.whywearepoints p {
    font-size: 13px;
    line-height: 1.5;
    color: #616161;
    padding-bottom: 20px;
}
.missionvision1::after {
    content: '';
    border-right: 1px solid lightgray;
    position: absolute;
    height: 300px;
    top: 72px;
    left: -218px;
    opacity: 0.3;
}
.breadcrumb {
    float: right;
    padding-top: 260px;
    background-color: transparent;
}
.breadcrumb .breadcrumb-item a {
    color: #000;
    font-weight: 500;
}
.breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}
.breadcrumb .breadcrumb-item {
    color: #000;
    font-weight: 500;
}
.breadcrumb>li+li:before {
    padding: 0px 5px;
    color: #000;
    content: ">";
    font-size: 18px;
    font-weight: 500;
}
/*-----------------why ms end---------------*/
/*-----------------why we are start---------------*/
.whyweare {
    padding: 60px;
}
.whyweare::before {
    content: '';
    background-image: url(../img/why-ms-back.png);
    width: 45%;
    position: absolute;
    height: 608px;
    left: -35px;
    top: 334px;
}
.whywearepoints {
    padding-left: 12px;
    padding-top: 20px;
    line-height: 20px;
}
.separator {
    border-left: 1px solid #dfdede;
    height: 234px;
    position: absolute;
    top: 15px;
    left: 43px;
    text-align: center;
}
/*-----------------why we are end---------------*/
/*-----------------our mission & vision start---------------*/
.ourmissionvision {
    padding: 50px 60px;
}
.ourmissionvision-body h1 {
    font-size: 45px;
    color: #db4158;
    font-weight: 600;
    letter-spacing: 1px;
}
.ourmissionvision-body p {
    color: #616161;
    margin-bottom: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 2;
    padding-top: 5px;
    padding-left: 115px;
    padding-right: 115px;
}
.milestone {
    padding: 0px 60px;
    padding-top: 100px;
}
.our-provided-sec2 {
    padding: 38px 15px;
    background-color: #f0fffc;
    margin-top: 33px;
}
.mission {
    padding-left: 123px;
}
.mission-para {
    color: #4b4b4b;
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    margin-top: -23px;
    margin-bottom: 50px;
    padding-left: 112px;
    position: relative;
}
.mission-para1 {
    color: #4b4b4b;
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    margin-top: -11px;
    margin-bottom: 50px;
    padding-left: 112px;
    position: relative;
}
.mission p {
    color: #4b4b4b;
    font-weight: 500;
    font-size: 13px;
    padding-top: 5px;
    width: 80%;
}
.border-mission1,
.border-mission2,
.border-mission3,
.border-mission4 {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}
.border-mission1::before,
.border-mission2::before,
.border-mission3::before,
.border-mission4::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 60%;
    bottom: 8px;
    left: -8px;
}
.border-mission1::before {
    background-color: red;
}
.border-mission2::before {
    background-color: blue;
}
.border-mission3::before {
    background-color: #a0a006;
}
.border-mission4::before {
    background-color: green;
}
/*-----------------our mission & vision end---------------*/
/*-----------------our provided feature start---------------*/
.provide-feature {
    padding: 0px 40px;
}
.provide-feature-body h1 {
    font-size: 40px;
    color: #db4158;
    font-weight: 600;
}
.provide-feature-body p {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    padding-top: 5px;
    text-align: left;
}
.our-provided-div-1 {
    position: absolute;
    margin-top: 217px;
    padding: 0px;
}
.our-provided-div-2 {
    position: absolute;
    margin-top: 274px;
    left: 327px;
    padding: 0px;
}
.our-provided-div-3 {
    position: absolute;
    left: 572px;
    margin-top: 70px;
    padding: 0px;
}
.our-provided-div-4 {
    position: absolute;
    left: 258px;
    padding: 0px;
}
.our-provided-sec1 {
    padding: 38px 15px;
    background-color: #e6f9ff;
}
.our-provided-sec2 {
    padding: 38px 15px;
    background-color: #f0fffc;
}
.our-provided-sec3 {
    padding: 38px 15px;
    background-color: #f9f8ff;
}
.our-provided-sec4 {
    padding: 38px 15px;
    background-color: #fffcf6;
}
.our-provided h4 {
    padding-top: 27px;
    font-weight: 600;
    font-size: 14px;
}
.our-provided p {
    padding-top: 11px;
}
.milestone-body h1 {
    font-size: 45px;
    color: #db4158;
    font-weight: 600;
    letter-spacing: 1px;
}
.milestone-body p {
    color: #616161;
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    padding-top: 5px;
    padding-left: 115px;
    padding-right: 115px;
}
.milestone-end-part {
    float: left;
}
.milestone-end-part h4 {
    color: #db4158;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-top: 40px;
}
.milestone-end-part p {
    font-weight: 500;
}
.milestone-end-part2 {
    float: right;
    width: 26%;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 5px;
    position: absolute;
    margin-top: 77px;
    left: 68%;
}
.milestone-end-part3 {
    position: absolute;
    margin-top: -131px;
    margin-left: 173px;
    color: #000;
    letter-spacing: 1px;
    font-size: 13px;
}
.milestone-end-part3 p {
    margin-bottom: 5px;
}
.milestone-end-part3 p .part-x {
    color: #b14ddf;
}
.milestone-end-part3 p .part-xy {
    color: #d3c47c;
}
.milestone-end-part3 p .part-xyz {
    color: #e16678;
}
/*-----------------our provided feature end-----------------*/
.whyweare-2 button {
    padding-top: 2px !important;
}
/*========================service page start ==============================*/
/* multinational-service page start */
/*.service-page { 
    padding-top: 262px; 
    padding-bottom: 80px; 
    padding-left: 86px;
}*/
.service-heading h1{
    font-family: 'Poppins', sans-serif;
    font-size: 74px;  
    color: #da4932;
    font-weight: 600;
}
.service .service-heading::after { 
    border-bottom: 4px solid #cbcbcb;
    content: '';
    display: block;
    width: 44%;
    top: 0px;
    left: 1%;
    position: relative;
}
.service-heading h1 span{
    font-size: 74px;
    color: #272324;
    font-weight: 600;
}
.service-paragraph p {
    color: #646363;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 20px;
}
.service-paragraph {
    margin-top: -10px;
    max-width: 100%;
}
.contact-us-btn {
    position: relative; 
    margin-top: 40px; 
    padding-left: 30px;
    margin-bottom: 97px;
}
.google-imgs{ 
    margin-top: 9%;
}
.contact-us-btn::before {
    content: ''; 
    width:80%;
    height: 3px;
    border-bottom: 3px solid #cccccc !important;
    position: absolute;
    top: 22px;
    z-index: -1;
    right: 20%;
}
.contact-us-btn{
    max-width: 100%;
}
.contact-us-btn a {
    width: 191px; 
    height: 50px; 
    font-family: 'Poppins', sans-serif;
    border: 3px solid #cccccc;
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center; 
    border-radius: 26px; 
    font-weight: bold; 
    line-height: 25px; 
    color: #db4158;
    float: right;
    text-decoration: none;
    z-index: 1; 
    position: absolute;
    right: 0px;
    font-size: 18px;
}
#form12{
    padding-bottom: 35px !important;
}
.google-paragraph-1 {
    max-width: 92%;
}
.google-paragraph-2{ 
    max-width: 92%;
}
.google-group-1 .google-paragraph-1 p { 
    color: #575656;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    padding-top: 5px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.google-group-2 .google-paragraph-2 p{
    color: #575656;
     font-weight: 500;
     font-size: 13px;
     padding-top: 5px;
     padding-bottom: 20px;
     font-family: 'Poppins', sans-serif;
     line-height: 21px;
 }
.service-icon2 {
    position: absolute;
    bottom: 238px;
    left: 344px;
}
.send-us-paragraph2 p a{
    padding: 5px 0px !important;
}
.leading-group-page {
    padding-left: 86px;
    margin-top: -98px !important;
}
#design-p{
    max-width: 61%;
}
#technical-p{
    max-width: 61%;
}
#tech2{ 
    margin-left: 25px;
}
#tech-s {
    margin-left: -49px !important;
}
/* multinational-service page end */
/* starting of leading-group */
.leading-group-tab-paragraph {
    max-width: 79%; 
    margin-top: 48px;
}
.skills{ 
    margin-top: 40px;
}
.leading-group-page{
    padding-left: 86px;
}
.leading-group-heading-2 {
    max-width: 74%;
}
.leading-group-heading-2 h1 { 
    font-size: 42px;
    color: #000000;
    font-weight: bold;
    line-height: 63px;
}
.leading-group-heading-2 h1 span{ 
    color: #e44b4b;
}
.leading-group-img {
    margin-top: 90px;
    margin-bottom: 150px;
}
.experienc-paragraph { 
    max-width: 79%;
    margin-top: 30px;
}
.experienc-paragraph p{ 
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: none !important;
    padding-left: 17px;
    height: 33px;
}
.design-skills-btn{
    margin-left: 30px;
}
.design-skills-paragraph {
    margin-left: 30px;
    margin-top: 10px;
}
.design-skills-btn a {
    background: #9de1b6;
    padding: 4px 16px;
    border-radius: 44px;
    color: #000000 !important;
    text-decoration: none !important;
    cursor:none;
}
.ser-img::before { 
    width: 10%;
    content: " "; 
    position: absolute;
    left: 66%;
    top: 87%;
    height: 651px;
}
.technical-skills-btn a {
    background: #eadcb2;
    padding: 4px 20px;
    border-radius: 44px;
    color: #000000 !important;
    text-decoration: none !important;
    cursor: none;
}
.technical-skills{
    margin-left: -149px !important;
}
.technical-skill::before{
    content: '';
    height: 38px;
    border-left: 3px solid #cccccc !important;
    position: absolute;
    top: 0px;
    right: 0px;
}
.process-paragraph{
    max-width: 67%;
}
.benefits-paragraph{ 
    max-width: 67%;
}
.design-skills-paragraph {
    max-width: 54%;
}
.technical-skills-paragraph { 
    max-width: 73%;
}
.technical-skills-paragraph p{
    color: #575656;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
}
.experienc-heading{
    margin-left: 15px;
}
.leading-group-tab-paragraph p{
    color: #3e3e3e;
    font-size: 17px;
    font-family: 'Poppins', sans-serif; 
    font-weight: 400;
}
.experienc-heading h3{
    color: #000000; 
    font-weight: bold;
    font-size: 18px;
}
/*  end of leading-group */
/* multinational-service page leading-group section start */
.for-employee-tabs1 #tabs-1 {
    width: 90%;
    height: 75px;
    font-size: 18px;
    padding: 28px 13px;
    text-decoration: none !important; 
    border-radius: 48px;
    background: #ebebeb;
    justify-content: space-between;
    display: flex;
}
#tabs-1 li {
    float: left;
    list-style: none;
    border: none !important;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    outline: none;
}
.for-employee-tabs1::before {
    display: block;
    content: '';
    border-bottom: none !important;
    padding-top: 11px;
    width: 90%;
    position: relative;
    left: -1px;
    top: -52px;
}
.active13 a {
    border-color: #2e3192!important;
    background-color: #2e3192;
    border-radius: 23px;
    background: #2e3192 !important;
    padding: 12px;
    color: #ffffff !important;
    text-decoration: none !important;
}
.for-employee-tabs1 li#culture-1 a {
    width: 271px;
    height: 50px; 
    border-radius: 30px;
    background: rgba(255, 255, 255,0);
    font-size: 22px;
    padding: 9px 68px;
    color: #000000;
    text-decoration: none !important;
    font-weight: bold;
}
.for-employee-tabs1 li#environment-1 a {
    width: 272px;
    border-radius: 30px; 
    height: 50px;
    font-size: 18px;
    border: none !important;
    padding: 9px 87px;
    font-size: 22px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
    font-weight: bold;
}
.for-employee-tabs1 li#development-1 a {
    width: 270px;
    height: 50px;
    font-size: 22px !important;
    border: none !important;
    border-radius: 30px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 9px 85px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: bold;
    text-decoration: none !important;
}
.active {
    color: black;
    background-size: contain, cover;
}
.demo5::before {
    content: ''; 
    background: url(../images/imgg12.png) no-repeat;
    height: 128%; 
    width: 10%; 
    position: absolute;
    left: -2px;
    top: 251px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 2;
}
.check-btn:hover{
    background-image: linear-gradient(to bottom right, #29b2f6 51%, #2498f3 89%) !important;
    color: #fff !important;
}
.process-paragraph p{
    font-size: 16px; 
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: none !important;
    padding-left: 17px;
    height: 33px;
}
.process-heading{ 
    margin-left: 15px;
}
.process-heading h3{ 
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}
.process-paragraph {
    max-width: 79%;
    margin-top: 30px;
}
.benefits-heading h3{
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}
.benefits-paragraph p{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: none !important;
    padding-left: 17px;
    height: 33px;
}
.benefits-heading{
    margin-left: 15px;
}
.benefits-paragraph {
    max-width: 78%;
    margin-top: 30px;
}
.technical-skills::before {
    content: '';
    border-right: 1px solid #888888;
    height: 84%;
    position: absolute;
    margin-top: 6px;
    left: -57px;
}
/*.col-sm-4 {
    flex: 0 0 28.333333%;
    max-width: 30.333333%;
}*/
.sales-paragraph1{
    max-width: 55%;
}
#technical-p1{
    max-width: 62%;
}
#design-p1{ 
    max-width: 62%;
}
#tech3{
    margin-left:24px;
}
#tech-s1{ 
    margin-left: -23px !important;
}
/* multinational-service page leading-group section end */
/* Service right section css start */
.rectangle-56 img {
    width: 21%!important;
    margin-left: 739px;
    margin-top: -22% !important;
    padding: 76px;
}
.mns-services-overview{ 
    width: 100%;
    position: relative;
    margin-top: 165px;
}
.service-link {
    padding: 10px 40px;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
}
.service-link .service-link-part a {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}
.service-link .service-link-part .part1 {
    transition: all 0.8s !important;
}
.service-link .part1 {
    border-right: 2px solid #d3d3d3;
}
.service-link .service-link-part:hover {
    background-color: #5a6afe;
    position: relative;
    margin-top: -32px;
    border-radius: 7px;
    padding: 10px;
    box-shadow: 0px 2px 12px lightblue;
}
.service-link .service-link-part:hover a {
    color: #fff;
    text-decoration: none;
}
.dot::before {
    content: '';
    height: 5px;
    width: 5px;
    background-color: #45c6ff;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
    position: absolute;
    left: -15px;
    top: -42px;
}
.dot::after {
    content: '';
    height: 5px;
    width: 5px;
    background-color: #45c6ff;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 15px;
    position: absolute;
    left: -15px;
    top: 12px;
}
.dot {
    height: 5px;
    width: 5px;
    background-color: #45c6ff;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    float: right;
    top: 12px;
}
.seo-analysts {
    padding: 30px 100px 30px 55px;
}
.service {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 27px;
    padding-right: 73px;
}
.service-icon-main{
    position: absolute;
    width: 57%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 37px;
    top: 52%;
    left: 45%;
    transform: translate(-50%, -50%);
    align-items: center;
    height: 300px;
}
.service-icon1 { 
    background-color: white; 
    height: 70%;border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%); 
    text-align: center;
    display: grid; 
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
}
.service-icon1:hover {
    transition: 0.5s ease-in-out;
    transform: scale(1.5);
}
.service-icon1 img {
    width: auto !important;
    padding: 0 !important;
    margin: 0 auto;
    transition: 0.5s ease-in-out;
}
.service-icon1 hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border: 0;
    padding: 0px 0px;
    border-top: 1px solid #ededed;
    width: 100%;
    float: left;
}
.ser-botton-2{
    float: left;width: 100%;
}
.ser-botton-2-img{
    margin-top: -130px;
    margin-left: -60px;
    width: auto;
}
.service-icon1 p { 
    text-align: center; 
    font-size: 17px;
    color: #000000; 
    font-family: 'Roboto', sans-serif; 
    line-height: 20px; 
    font-weight: bold; 
    padding: 0;
}
.service-icon2 {
    background-color: white;
    width: 28%;
    height: 70%;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 25px;
    padding: 16px;
    bottom: 37px!important;
    text-align: center; 
    display: grid; 
    align-items: center; 
    align-content: center; 
    justify-content: center; 
    left: 275px !important;
    transition: 0.5s ease-in-out;
}
.service-icon2:hover {
    transition: 0.5s ease-in-out;
    transform: scale(1.5);
}
.service-icon2 hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border: 0;padding: 0px 0px;
    border-top: 1px solid #ededed;
    width: 100%;
    float: left;
}
.service-icon2 img { 
    width: auto !important;
    padding: 0 !important;
    margin: 0 auto;
}
.service-icon2 p {
    text-align: center; 
    font-size: 15px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    line-height: 20px;
    font-weight: bold;
}
.service-icon3 {
    background-color: white; 
    width: 28%; 
    height: 70%;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    border-radius: 25px;
    padding: 16px; 
    text-align: center; 
    display: grid; 
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
    bottom: 49px !important; 
    left: 600px !important; 
    position: absolute;
}
.service-icon3:hover {
    transition: 0.5s ease-in-out;
    transform: scale(1.5);
}
.web-hosting0-img img {
    background-image: url(../images/recta12.png);
    padding: 41px 27px; 
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}
.web-hosting1-img img{
    background-image: url(../images/recta12.png); 
    padding: 41px 27px;
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}
.web-hosting22-img img{
    background-image: url(../images/recta12.png);
    padding: 41px 27px;
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}
.web-hosting3-img img{
    background-image: url(../images/recta12.png);
    padding: 41px 27px;
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}
.web-hosting4-img img{ 
    background-image: url(../images/recta12.png);
    padding: 41px 27px;
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}
.web-hosting5-img img{ 
    background-image: url(../images/recta12.png);
    padding: 41px 27px;
    background-repeat: no-repeat;
    transition: 0.5s ease-in-out;
}
.leading-group-section{ 
    background-image: url(../images/back-2.png); 
    background-position: center;  
    background-repeat: no-repeat; 
    background-size: contain; 
}
.google-img-1 img {
    padding-top: 27px;
    margin-left: -10px;
}
.google-img-2 img { 
    padding-top: 27px; 
    margin-left: -10px;
}
.service-icon3 hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border: 0;
    padding: 0px 0px;
    border-top: 1px solid #ededed;
    width: 100%;
    float: left;
}
.service-icon3 img {
    width: auto !important;
    padding: 0 !important;
    margin: 0 auto;
}
.service-icon3 p {
    text-align: center; 
    font-size: 17px;
    color: #000000; 
    font-family: 'Roboto', sans-serif; 
    line-height: 20px;
    font-weight: bold;
}
.service-heading{
    font-size: 74px;
    color: #da4932;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}
.service-para{
    color: #646363;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    padding-top: 5px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.crumb1 {
    float: right;
    padding-top: 0px !important;
    background-color: transparent;
}
.crumb1 .breadcrumb-item{
    font-size: 18px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    line-height: 21px;
    text-transform: uppercase;
}
.ser-img img{
    width: 100%;
    padding: 80px ;
}
.service-text .text-1::before {
    border-left: 5px solid #ef3b58;
    content: '';
    height: 88%;
    width: 5px;
    position: absolute;
    margin-top: 5px;
    left: 0;
}
.service p {
    padding-top: 10px;
}
.ser-img::before {
    content: '';
    background-image: url(../images/rectangle56.png);
    height: 13%; 
    width: 10%; 
    position: absolute;
    left: 742px;
    top: 558px;
    z-index: 2 !important; 
    background-repeat: no-repeat, repeat;
}
.ser-img::before {
    content: '';
    background-image: url(../images/layer.png);
    height: 15%;
    width: 20%;
    position: absolute;
    left: 971px;
    top: 618px;
    z-index: 2 !important;
    background-repeat: no-repeat, repeat;
}
.ser-img::after {
    content: '';
    background-image: url(../images/layer2.png);
    height: 13%;
    width: 19%;
    position: absolute;
    left: 165px;
    top: 1px;
    background-repeat: no-repeat, repeat;
    z-index: -9 !important;
}
#service-i::after {
    content: '';
    background-image: url(../images/service-3.jpg);
    height: 13%;
    width: 19%;
    position: absolute;
    left: 165px;
    top: -66px;
    background-repeat: no-repeat, repeat;
    z-index: -9 !important;
}
/* service right section css end */
/* Our-services section css start */
/* hover on the our service */
/*.sales-heading1 .col-lg-12, .col-md-12, .col-sm-12, .col-xs-12 { 
    margin-left: 80px !important;
}*/
.web-hosting0{
    overflow: hidden; 
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.web-hosting0 .child {
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.web-hosting0:hover img {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.web-hosting1:hover img{
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.web-hosting22-img:hover img{
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.web-hosting3-img:hover img{
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.web-hosting4-img:hover img{ 
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.web-hosting5-img:hover img{
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.5s ease-in-out;
}
.our-service-page{
    padding-left: 86px;
}
.web-hosting0{
    padding-top: 25px;
    text-align: center; 
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.web-hosting0-img{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting0-heading{
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}
.web-hosting1{ 
    padding-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.web-hosting1-img{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting1-heading{
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting22{
    padding-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    flex-direction: column;
}
.web-hosting22-img{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting22-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting3{
    padding-top: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    flex-direction: column;
    padding-bottom: 100px;
}
.web-hosting3-img{ 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting3-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting4{
    padding-top: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 100px;
}
.web-hosting4-img{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting4-heading{ 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}
.web-hosting5{
    padding-top: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 100px;
}
.web-hosting5-img{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.web-hosting5-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.our-services-left::after {
    content: '';
    border-right: 1px solid #888888;
    height: 84%;
    position: absolute;
    top: -3%;
    right: 55px;
}
.our-services-right {
    padding-left: 91px;
    margin-top: -46px;
}
.webhosting-content-paragraph { 
    max-width: 59%;
    padding-left: 30px;
}
.webhosting-content-heading{ 
    padding-left: 30px;
}
.webhosting-content-paragraph {
    max-width: 96%;
}
.web-hosting0-heading h3 {
    color: #111111;
    font-size: 20px; 
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.web-hosting1-heading h3{
    color: #111111;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.our-services-left:before {
    width: 100%;
    height: 139%;
    content: " ";
    position: absolute;
    top: -38%;
    left: -81%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/back-img.png);
}
.web-hosting22-heading h3{
    color: #111111; 
    font-size: 20px; 
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.web-hosting3-heading h3{
    color: #111111;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.web-hosting4-heading h3{
    color: #111111;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.web-hosting5-heading h3{
    color: #111111; 
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.our-services-heading h1 {
    color: #000000;
    font-size: 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.our-services-heading h1 span{ 
    color: #e44b4b;
}
.our-services-paragraph {
    max-width: 87%;
}
.our-services-paragraph p{
    color: #3e3e3e;
    font-size: 17px; 
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.webhosting-content-heading h3 {
    color: #2e3192;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.webhosting-content-paragraph p{
    color: #575656;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.fieldset { 
    max-width: 83%; 
    border: solid;
    color: #dfe5f1;
    border-radius: 1em; 
    margin: 32px 0em 1em;
    padding: 0 1em 1em;
    box-shadow: 4px 3px 8px 1px #969696;
    -webkit-box-shadow: 4px 3px 8px 1px #dfe5f1;
}
.active-12{ 
    transform: scale(1.5);
}
.fieldset::after { 
    content: '';
    background: url(../images/imgg3.png); 
    background-position: right bottom;
    background-size: contain; 
    background-repeat: no-repeat;
    height: 100%;
    width: 14%;
    position: absolute;
    right: 0;
    top: 127px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 0;
}
.legend { 
    margin: 0;
    padding:0;
    box-sizing:border-box;
    transform: translatey(-50%);
    width: max-content;
    background: white;
    padding: 0 0.15em;
}
.call-to-action { 
    padding: 16px 24px;
}
.call-to-action-3{ 
    padding: 16px 1px;
}
.our-service-button { 
    display: flex;
    margin-left: 36%;
    margin-top: 290px;
}
.serviceDescription {
    display: flex;
    margin-left: 40px;
    background-color: #ffffff;
    width: 215px;
    height: 52px;
    text-align: center;
    border: solid 1px #ffffff;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 0px;
    position: relative;
    -webkit-box-shadow: 0px 0px 5px rgb(50 50 50 / 30%);
    -moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.30);
    box-shadow: 0px 0px 5px rgb(50 50 50 / 30%);
}
.get-in-touch1 {
    border-top: 16px solid #d6d6d6;
}
.main-services{
    display: flex;
}
.get-in-touch-sec1{
    margin-top: 37px !important;
    margin-bottom: 37px !important;
    display: flex;
}
.seo-analysis { 
    max-width: 94%;
    display: flex;
}
.sales-paragraph1 { 
    max-width: 75%;
}
.sales-heading1 h1 { 
    font-size: 23px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: bold;
    padding-left: 78px;
}
.sales-paragraph1 {
    margin-top: 30px;
    margin-left: 76px;
}
.sales-paragraph1 p {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    font-weight: 400;
    padding-top: 10px;
}
.sales-heading1 h1 span {
    font-size: 37px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
}
.sales-heading2 h1 {
    font-size: 23px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: bold;
}
.sales-heading2 {
    margin-left:100px;
}
.sales-heading2 h1 span { 
    font-size: 37px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
}
.sales-paragraph2 {
    margin-left: 100px;
    margin-top: 11px;
}
.sales-paragraph2 p { 
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    font-weight: 400;
}
.send-us-paragraph2 p {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    margin: 0 0 0px !important;
    font-weight: 400;
}
.send-us-paragraph2 p span {
    color: #1a4b5d;
    font-size: 17px; 
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.send-us-paragraph2 p a .svg-inline--fa.fa-w-16 {
    width: 1em !important;
}
.send-us-paragraph2 { 
    margin-top: 21px;
    margin-left: 100px;
}
.last-name {
    padding-left: 10px !important;
}
.zip-inp{
    padding-left: 10px !important;
}
.form-row { 
    margin-top: 20px;
    gap: 33px;
    margin-left: 82px !important;
}
.form-control {
    display: block;
    width: 100%; 
    height: 43px !important;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc; 
    border-radius: 4px; 
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%); 
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.last-name {
    margin-left: 35px !important;
}
.zip-inp{ 
    margin-left: 35px !important;
}
.check{
    margin-left: 35px !important;
}
.check-btn {
    width: 163px;
    height: 45px;
}
.btn-primary1 {
    background-image: linear-gradient(to bottom right, #29b2f6 51%, #2498f3 89%) !important;
    color: #fff;
}
.btn-check{
    display: inline-block;
    padding: 12px 12px !important; 
    margin-bottom: 0; 
    font-size: 14px; 
    font-weight: 400; 
    line-height: 1.42857143; 
    text-align: center; 
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.call-to-action-3 h3{
    color: #242a3a; 
    font-size: 19px;
    font-weight: bold; 
    font-family: 'Poppins', sans-serif;
}
.sales::after {
    content: '';
    border-right: 1px solid #d7d7d7;
    height: 94%;
    position: absolute;
    top:0px;
    right: 3px;
}
.leading-group-analysts::after {
    content: '';
    border-right: 1px solid #888888;
    height: 59%;
    position: absolute;
    margin-top: -664px;
    right: 144px;
}
.gtab12 {
    position: absolute;
    width: 85%;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}
.gtab12.active {
    opacity: 1;
    visibility: visible;
    top: 110px;
    left: 86px;
}
.send-us-paragraph2 p a{ 
    color: #1a4b5d;
    text-decoration: none; 
    font-size: 17px; 
    font-family: 'Poppins', sans-serif;
}
.employee-tab1C::before{
    content: '';
    background: url(../images/imgg12.png); 
    background-size: cover; 
    width: 10%; 
    position: absolute; 
    right: 0px; 
    top: 0px; 
    z-index: 1;
}
.design-skills-paragraph p{
    color: #575656; 
    font-size: 13px; 
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
}
.for-employee-tabs-12 .col-lg-4, .for-employee-tabs-12 .col-md-4, .for-employee-tabs-12 .col-sm-4 {
    margin-left: 0px !important;
}
.contact-us-btn img{
    padding: 10px;
}
.for-employee-tabs-12 .col-sm-4 {
    width: 27.333333%;
}
.for-employee-tabs-12 {
    display: flex;
    flex-wrap: wrap;
}
.contact-us-btn a:hover {
    color: #db4158;
    text-decoration: none;
}
/* Our-services section css end */
/*========================== Service Page End ===================================*/
/*-----------------------web hosting page start--------------------------------*/
.first_seec .main_cont {
    max-width: 93%;
    padding: 0 !important;
}
.first_seec {
    margin-top: 11%;
}
.main_cont .web_bback {
    position: relative;
}
.main_cont .web_bback:after {
    width: 13%;
    content: " ";
    background-image: url(../img/cld2.png);
    position: absolute;
    right: -104px;
    top: -93px;
    height: 390px;
    background-repeat: no-repeat;
}
.hosting_cont .text-center {
    position: relative;
}
.head_contents {
    position: relative;
}
.head_contents:after {
    position: absolute;
    content: " ";
    background-image: url(../img/cld1.png);
    right: -97px;
    top: 0px;
    height: 66px;
    width: 22%;
    background-repeat: no-repeat;
}
.hosting_cont .text-center p:before {
    position: absolute;
    content: " ";
    background-image: url(../img/whatin-left.png);
    left: 61px;
    top: -38px;
    height: 185px;
    width: 22%;
    background-size: contain;
    background-repeat: no-repeat;
}
.hosting_cont .text-center p:after {
    position: absolute;
    content: " ";
    background-image: url(../img/whatin-rit.png);
    right: 91px;
    top: -53px;
    height: 185px;
    width: 17%;
    background-repeat: no-repeat;
    background-size: contain;
}
.first_cont_body {
    position: relative;
}
.back_img_ss:after {
    width: 21%;
    content: " ";
    background-image: url(../img/web-rit.png);
    position: absolute;
    right: -63px;
    top: 170px;
    height: 561px;
    background-repeat: no-repeat;
}
.mapp_img {
    position: relative;
}
.mapp_img:before {
    position: absolute;
    content: " ";
    background-image: url(../img/social.png);
    left: -375px;
    top: 2px;
    height: 174px;
    width: 38%;
    background-repeat: no-repeat;
}
.web-content-body-img img {
    padding-top: 160px;
}
.main_cont .web_bback {
    position: relative;
    float: right;
    right: 56px;
}
.main_cont .web_bback img {
    position: absolute;
}
.first_const_body {
    position: absolute;
    left: -284px;
    top: 204px;
}
.second_cont_body {
    position: absolute;
    left: -92px;
    top: 412px;
}
.web-content-text p {
    width: 82%;
}
.head_contents {
    color: #3e3e3e;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.web-button .web-btn2 {
    color: #fff;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #ef3b58;
    border-radius: 50px;
    color: #fff;
    float: right;
    box-shadow: 0px 1px 15px lightcoral;
    padding: 10px 35px;margin-top: 63px;
}
.web-button {
    position: relative;
}
.web-button:before {
    content: "";
    width: 73%;
    height: 1px;
    background: #464646;
    left: 0;
    top: 84px;
    bottom: 0px;
    position: absolute;
}
.cont_div_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 27%;
    gap: 72px;
}
.cont_div_box .cont_div_img_box {
    text-align: center;
    border: 2px dotted #464646;
    padding: 9px 7px;
    border-radius: 22px;
}
.cont_div_box .cont_div_img_box p {
    font-size: 17px;
    line-height: 22px;
    font-family: 'Poppins', sans-serif;
    color: black;
}
.main_host_sec .hosting_cont { 
    max-width: 93%;
}
.main_host_sec {
    margin-top: 8%;
}
.web_host_sec {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 1fr 1fr;
    gap: 53px;
    margin-top: 2%;
}
.web_host_sec .web_host {
    width: 100% !important;
}
.web_host_sec .web_host {
    text-align: center;
}
.web_host_sec .web_host p {
    text-align: left;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 33px;
}
.web_host_sec .web_host img {
    margin-bottom: 20px;
}
.web_host_sec .web_host h5 {
    margin-bottom: 29px;
    font-size: 24px;
    font-weight: 700;
}
.web_host_sec .sec_host {
    position: relative;
}
.web_host_sec .sec_host:after {
    content: '';
    border-right: 1px solid #d8d8d8;
    height: 55%;
    position: absolute;
    right: -23px;
    top: 93px;
}
.host-content-sec {
    color: #3e3e3e;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 28px;
    padding-top: 5px;
    padding-bottom: 20px;
}
.web-host-sec {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #db4158;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
}
.last_ssec {
    margin-bottom: 70px;
}
.cont_seac_sction {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
}
.cont_mmain {
    max-width: 93%;
}
.why-cont-p {
    color: #3e3e3e;
    padding-right: 63px;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    padding-top: 5px;
    padding-bottom: 20px;
}
.why-content-brt {
    border-right: 1px solid #cccccc;
}
.web_sec {
    margin-bottom: 100px;
}
.web-content-body-img {
    width: 34%;
}
.third_seec {
    max-width: 93%;
    padding: 0 !important;
}
.back_img_ss {
    float: right;
    position: relative;
}

.text-right a {
    font-size: 20px !important;
    font-family: 'Poppins' !important;
    background-color: #ef3b58 !important;
    padding: 13px 22px 13px 22px !important;
    color: #fff !important;
    border-radius: 50px;
    margin-right: 10%;
    box-shadow: 0px 1px 15px lightcoral !important;
}

.text-right {
    margin-top: 49px !important;
}

.why-content-brt1 {
    border: 1px solid #e1e1e1;
    padding: 32px;
    position: relative;
}

.why-content-brt1 .web-buttonc {
    margin-bottom: 84px;
}

.why-content-brt1 .web-buttonc a {
    top: 26px;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    background-color: #006ee5;
    padding: 12px 45px 12px 41px;
    border-radius: 35px 0px 35px 2px;
    position: absolute;
    left: -42px;
}

.why-content-brt1 p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 27px;
    color: #636363;
}

.heading_web {
    font-size: 52px;
    font-family: 'Poppins', sans-serif;
    color: #e44b4b;
    font-weight: 600;
}

.head_content {
    color: #3e3e3e;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 2;
    padding-top: 25px;
    padding-bottom: 20px;
}

.web-hosting {
    color: black;
    font-weight: 600;
}

.web-icon1 p {
    padding-top: 10px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.web-hosting h5 {
    padding-top: 16px;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding-bottom: 20px;
}

.web-hosting p {
    font-size: 16px;
    color: #616161;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    padding-left: 30px;
    padding-right: 20px;
}

.lead-comp {
    font-size: 52px;
    color: #e44b4b;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.lead-comp-cont {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #636363;
}

.web-content-text h4 {
    color: #111111;
    line-height: 1.5;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.web-content-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #636363;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 20px;
}

.why-cont-ssp {
    color: black;
    font-weight: 600;
}

.why-content .why-content-text p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    color: #636363;
}

.why-content .why-content-text h4 {
    line-height: 1.5;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    background-color: #006ee5;
    width: 27%;
    padding: 6px 27px;
    position: relative;
    left: -66px;
    border-radius: 36px 0px 0px 0px;
    color: white;
}

.why-content .why-content-btn {
    background-color: #ef3b58;
    border-radius: 34px;
    color: #fff;
    font-size: 20px;
    font-family: 'Roboto';
    float: right;
    width: 25%;
    box-shadow: 0px 1px 15px lightcoral;
    padding: 9px 14px;
    border: none;
}

.web-hostingcc:before {
    position: absolute;
    content: '';
    border-right: 1px solid;
    height: 190px;
    right: -2px;
    bottom: 0;
    opacity: 0.3;
    margin: 0 auto;
}

.web_sec {
    margin-bottom: 100px;
}

.web-content-body-img {
    width: 34%;
}

.third_seec {
    max-width: 93%;
    padding: 0 !important;
}

.back_img_ss {
    float: right;
    position: relative;
}

.head_contents {
    width: 90%;
}

.why-cont-head {
    font-size: 52px;
    color: #db4158;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    line-height: 1.5;
}

.web-content-text h3 {
    color: #db4158;
    line-height: 1.5;
}

.web-content-text h3::before {
    content: '';
    display: block;
    border-bottom: 2px solid #b7b7b7;
    width: 13%;
    position: relative;
    top: 24px;
    left: 44px;
}

.web-content-text h3::after {
    content: '';
    display: block;
    border-bottom: 2px solid #448ccb;
    width: 19%;
    position: relative;
    top: -23px;
    left: 44px;
}

.lead-comp {
    font-size: 52px;
    color: #e44b4b;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.lead-comp-head {
    color: black;
    font-weight: 600;
}


/*-----------------------web hosting page end--------------------------------*/


/*-----------------------Online reputation managment start--------------------------------*/

.omr-heading {
    font-size: 40px;
    color: #db4158;
    font-weight: 600;
}

.omr-heading span {
    color: #db4158;
    font-weight: 600;
}

.omr p {
    color: #7e7e7e;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    padding-top: 13px;
    padding-bottom: 20px;
}

.omr .omr-heading::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 79%;
    padding: 7px;
}

.omr-img img {
    width: 125%;
}

.omr-button {
    background-color: #ef3b58;
    border-radius: 20px;
    color: #fff;
    float: right;
    box-shadow: 0px 1px 15px lightcoral;
    padding: 9px 35px;
    margin-top: 32px;
}

.omr-button a {
    color: #fff;
}
.omr .omr-icon1 p {
    color: #000;
    font-size: 13px;
}

.orm-heading {
    margin-bottom: 35px;
}

.orm-heading h2 {
    font-size: 40px;
    color: #db4158;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
}

.orm-heading h2::after {
    border-bottom: 2px solid lightgray;
    content: '';
    display: block;
    width: 20%;
    padding: 0px;
    margin-left: 603px;
    margin-bottom: 5px;
}

.orm-heading span {
    color: black;
    font-weight: 500;
}

.orm-heading p {
    color: #7e7e7e;
    font-weight: 500;
    font-size: 14px;
    /* line-height: 2; */
    padding-top: 5px;
    padding-bottom: 20px;
}

.orm-heading p span {
    color: #7e7e7e;
    display: block;
}

.orm-body h3 {
    font-weight: 600;
    font-size: 28px;
}
.orm-maintaining {
    padding: 0px 40px 80px;
}

.orm-body .orm-body-part {
    display: flex;
    padding-top: 20px;
}

.orm-body-part h4::after {
    border-bottom: 2px solid #d64152;
    content: '';
    display: block;
    width: 6%;
    padding: 0px 14px;
    margin-left: 136px;
    position: relative;
    top: -25%;
}
.orm-body-part h4 {
    font-size: 12px;
    font-weight: 600;
    padding-top: 11px;
    padding-left: 10px;
}

.orm-body-part p {
    margin-left: 9px;
    padding-top: 11px;
    font-size: 10px;
}

.orm-body-image img {
    width: 100%;
    padding-top: 39px;
}

.orm-body-br::after {
    content: '';
    border-right: 2px solid #d3d3d3a1;
    height: 297px;
    position: absolute;
    margin-top: 33px;
    left: 739px;
}

.orm-what {
    padding: 0px 40px 80px;
}

.orm-what-body h4 {
    font-size: 40px;
    color: #db4158;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
}

.orm-what-body h4 span {
    color: black;
    font-weight: 600;
}

.orm-what-body p {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
    line-height: 2;
    padding-top: 5px;
    padding-bottom: 56px;
}


/*---------------------------orm-what---------------------*/

.orm-what-content h4 {
    color: #111111;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-left: 16px;
}

.orm-what-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #616161;
    padding-bottom: 20px;
    padding-left: 65px;
}

.orm-what-content {
    padding-left: 92px;
}

.orm-what-icon {
    display: flex;
}

.orm-what-icon img {
    background-color: #fff;
    border: 1px solid red;
    border-radius: 50%;
    width: 27px;
    height: 25px;
}

.orm-what-content::before {
    content: '';
    border-right: 2px solid #d3d3d3a1;
    height: 359px;
    position: absolute;
    margin-top: -34px;
    left: 120px;
    z-index: -1;
}

.orm-what-img img {
    padding-top: 120px;
    width: 120%;
}

.orm-manag {
    padding: 0px 40px 80px;
}

.orm-manag .orm-manag-text h4 {
    font-size: 40px;
    color: #db4158;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    float: left;
}

.orm-manag-text {
    display: inline;
}

.orm-manag-text h4 span {
    color: black;
    font-weight: 600;
}

.orm-manag-text p {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
    line-height: 2;
    padding-top: 5px;
    padding-bottom: 56px;
    float: right;
}

.orm-manag-text p::before {
    border-left: 2px solid#db4158;
    content: '';
    height: 41px;
    position: absolute;
    margin-top: 5px;
    margin-left: -23px;
}

.orm-mang-body {
    display: inline-block;
}

.orm-mang-body .orm-mang-body-text h4 {
    color: #111111;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-left: 16px;
}

.orm-mang-body-text {
    display: flex;
}

.orm-mang-body p {
    font-size: 12px;
    line-height: 1.5;
    color: #616161;
    padding-bottom: 20px;
    background-color: antiquewhite;
    border-radius: 8px;
    padding: 11px;
    margin-top: 16px;
}

.orm-mang-bosy-sec {
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0px 2px 22px lightgrey;
}

.orm-mang-body .sec1 {
    background-color: #fcf5d4;
}

.orm-mang-body .sec2 {
    background-color: #e2f2ff;
}

.orm-mang-body .sec3 {
    background-color: #d4fcf5;
}

.orm-mang-body .sec4 {
    background-color: #f7deea;
}


/*-----------------------Online reputation managment end--------------------------------*/

/*-------------------------pricing page start--------------------------------------------------*/

.pricing {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
}

.pricing h1 {
    font-size: 60px;
    color: #db4158;
    font-weight: 600;
}

.pricing h1 span {
    color: black;
    font-weight: 600;
}

.pricing h1::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 68%;
    padding: 4px;
}

.pricing p {
    color: #888888;
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    padding-top: 5px;
    padding-bottom: 20px;
}

.pricing-body-1 {
    padding: 10px 40px;
    background-color: #ced7f0;
    margin: 30px 0px 0px;
}

.pricing-body-button {
    border-radius: 50px;
    /* width: 58%; */
    padding: 6px 10px 0px 10px;
    background-color: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.pricing-body-button a {
    background-color: #3776ef;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-right: 39px;
}

.pricing-body-button-2 {
    padding-top: 14px;
}

.pricing-body-button-2 span {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px 10px 4px 10px;
    background-color: #2f62ca;
    color: #fef84f;
    margin-right: 13px;
}

.pricing-body-button-2 .pricing-btn {
    /* border: 1px solid #fff; */
    padding: 9px 25px 9px 4px;
    border-radius: 50px;
    background-color: #2f62ca;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.pricing-icon1 {
    display: flex;
    text-align: center;
    /* border: 1px solid; */
    border-radius: 9px;
    background-color: #2853ac;
    color: #fff;
    width: 20%;
    padding-top: 2px;
    padding-bottom: 2px;
    float: right;
    margin-right: 20px;
    margin-top: 4px;
}

.pricing-icon2 {
    background-color: #d4335f;
    margin-top: 4px;
}

.pricing-icon2 .img-2 {
    margin-right: 13px;
}

.pricing-icon1 a span {
    display: block;
}

.pricing-icon1 a {
    color: #fff;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.pricing-icon1 img {
    width: 30px;
    height: 30px;
    position: relative;
    left: -9px;
    top: 4px;
}

.pricing-body-part {
    padding: 20px 40px;
}

.pricing-body-part .pricing-body-part2 {
    box-shadow: 0px 2px 12px lightgrey;
    padding: 6px;
    background-color: #fff;
    border-radius: 7px;
}

.pricing-body-part .first-icon {
    background-color: #2376fc;
    padding: 25px;
    border-radius: 7px;
}

.pricing-body-part .firsticon-11 {
    background-color: #d02051;
    padding: 25px;
}

.pricing-body-part .second-icon {
    display: flex;
    float: left;
}

.pricing-body-part .second-icon p {
    font-size: 18px;
    color: #fff;
}

.pricing-body-part .second-icon p span {
    display: block;
    color: #fff;
}

.pricing-body-part .second-icon img {
    border: 1px solid;
    border-radius: 50%;
    padding: 8px;
    height: 50px;
    width: 50px;
    margin-right: 15px;
    background-color: #fff;
}

.pricing-body-part .first-icon .second-icon-part {
    text-align: right;
}

.pricing-body-part .first-icon .second-icon-part .icon22 {
    position: relative;
    left: -46px;
    font-size: 12px;
    color: #fff;
}

.pricing-body-part .first-icon .second-icon-part .icon33 {
    font-size: 34px;
    position: relative;
    top: -11px;
    color: #ffe323;
    font-weight: 600;
}

.pricing-body-part .first-icon .second-icon-part .icon44 {
    font-size: 11px;
    position: relative;
    left: 14px;
    top: -22px;
    color: #fff;
}

.pricing-body-part .first-icon .first-icon-root .icon55 {
    float: left;
    color: #fff;
    letter-spacing: 1px;
    font-size: 11px;
}

.pricing-body-part .first-icon .first-icon-root .icon66 {
    text-align: right;
    color: #fff;
    letter-spacing: 1px;
    font-size: 11px;
}

.pricing-body-part .first-icon .first-icon-btn {
    border-radius: 50px;
    width: 100%;
    margin-top: 30px;
    padding: 7px 2px 0px 7px;
    box-shadow: 0px 0px 6px #2e2e2e;
    background-color: #fff;
    position: relative;
    top: 44px;
}

.pricing-body-part .first-icon .first-icon-btn .icon-btnn {
    background-color: #1c7dfc;
    color: #fff;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: rgba(255, 255, 255, 0) !important;
    background-color: #3379b700 !important;
    padding: 0px !important;
}

.pricing-body-part .first-icon .first-icon-btn .nav {
    padding-right: 0px;
    float: right;
}

.pricing-body-part .first-icon .first-icon-btn img {
    padding-right: 13px;
    float: right;
}

.pricing-body-part .first-icon .first-icon-root2 {
    position: relative;
    top: 46px;
}

.pricing-body-part .second-icon1 {
    margin-top: 30px;
}

.pricing-body-part .second-icon1::after {
    content: '';
    display: block;
    border-bottom: 1px dotted lightgray;
    padding: 25px;
}

.pricing-body-part .second-icon1 p {
    color: #e05a6e;
}

.pricing-body-part .second-icon1 .second-icon1-checkbox {
    border-radius: 50px;
    padding: 4px 8px 4px 38px;
    width: 100%;
    font-size: 9px;
    background-color: #79dd17;
    color: #fff;
    margin-top: 9px;
    position: relative;
    margin-left: -16px;
}

.pricing-body-part .second-icon1 .second-icon11-checkbox {
    background-color: #44ad9f;
}

.pricing-body-part .second-icon1 .second-icon1-checkbox .checkmark1 {
    position: absolute;
    top: 3px;
    left: 11px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: 1px solid rgb(0, 0, 0);
    background-color: #fff !important;
}

.pricing-body-part .second-icon1 .second-icon1-checkbox .checkmark1:after {
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: 1px solid rgb(6 0 0);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pricing-body-part .second-icon2 {
    margin-top: 10px;
}

.pricing-body-part .second-icon1 .second-icon2-checkbox {
    background-color: #f57e3d;
    width: 100%;
}

.pricing-body-part .second-icon1 .second-icon3-checkbox {
    background-color: #4591ec;
    width: 100%;
}

.pricing-body-part .second-icon1 .second-icon4-checkbox {
    background-color: #ff4b7e;
    width: 100%;
}

.pricing-body-part .second-icon2 .second-icon-2-part {
    display: flex;
}

.pricing-body-part .second-icon3 {
    /* display: flex; */
}

.pricing-body-part .second-icon3 .second-icon3-part {
    display: flow-root;
    margin-top: 10px;
}

.pricing-body-part .second-icon3 .second-icon3-part img {
    background-color: #feddb8;
    border-radius: 50%;
    padding: 0px;
    float: left;
    width: 30px;
}

.pricing-body-part .second-icon3 .second-icon3-part .img-icon-1 {
    background-color: #d6e093;
}

.pricing-body-part .second-icon3 .second-icon3-part .img-icon-2 {
    background-color: #b5d0ee;
}

.pricing-body-part .second-icon3 .second-icon3-part .img-icon-3 {
    background-color: #f1c2ae;
}

.pricing-body-part .second-icon3 .second-icon3-part .img-icon-4 {
    background-color: #ca98cd;
}

.pricing-body-part .second-icon3 .second-icon3-part p {
    padding-top: 5px;
    padding-left: 9px;
    font-size: 13px;
    font-weight: 600;
    float: left;
}

.pricing-body-part .second-icon3 .second-icon3-part .second-icon3-para {
    float: right;
    background-color: #f1eff0;
    color: #e7203d;
    border-radius: 21px;
    padding: 7px 20px 5px 18px;
}

.pricing-body-part .second-icon4 {
    margin-top: 13px;
    background-color: #132134;
    padding: 22px;
}

.pricing-body-part .second-icon4 p {
    color: #ffff;
    font-size: 13px;
    font-weight: 600;
}

.pricing-body-part .second-icon4 p span {
    color: #bb0726;
}

.pricing-body-part .second-icon4 p::after {
    content: '';
    display: block;
    border-bottom: 3px solid #5fa4ff;
    width: 36%;
    margin-left: 129px;
    padding-top: 8px;
}

.pricing-body-part .pricing-first-body-part {
    padding: 0px 13px;
}

.pricing-last-part {
    padding: 40px 40px;
}

.pricing-last-part .pricing-last-part2 {
    background-color: #1386fd;
    padding: 25px;
}

.pricing-last-part .pricing-last-part2 .last-icon {
    display: inline-flex;
}

.pricing-last-part .pricing-last-part2 .last-icon img {
    border: 1px solid;
    border-radius: 50%;
    padding: 8px;
    height: 70px;
    width: 70px;
    margin-right: 15px;
    background-color: #fff;
}

.pricing-last-part .pricing-last-part2 .last-icon p {
    font-size: 24px;
    font-weight: 600;
    padding-top: 19px;
    color: #fff;
}

.pricing-last-part .pricing-last-part2 .last-icon p::after {
    content: '';
    display: block;
    border-bottom: 1px solid #fff;
    width: 120%;
    float: right;
    position: relative;
    right: -33px;
    padding-top: 20px;
}

.pricing-last-part .pricing-last-part2 .last-icon-part {
    text-align: center;
    padding-top: 115px;
}

.pricing-last-part .pricing-last-part2 .last-icon-part::before {
    width: 57%;
    content: " ";
    background-image: url(../img/pricing-last-icon1.png);
    position: absolute;
    left: 29%;
    top: 13%;
    height: 201px;
}

.pricing-last-part .pricing-last-part2 .last-icon-part .icon-22 {
    position: relative;
    left: -46px;
    font-size: 19px;
    color: #fff;
    top: -62px;
}

.pricing-last-part .pricing-last-part2 .last-icon-part .icon-33 {
    font-size: 50px;
    position: relative;
    top: -69px;
    color: #ffe323;
    font-weight: 600;
    left: 19px;
}

.pricing-last-part .pricing-last-part2 .last-icon-part .icon-44 {
    font-size: 17px;
    position: relative;
    left: 106px;
    top: -85px;
    color: #fff;
}

.pricing-last-part .pricing-last-part3 {
    background-color: #1386fd;
    /* display: inline-flex; */
    padding: 20px;
}

.pricing-last-part .pricing-last-part3 p {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.pricing-last-part .pricing-last-part3 .pricing-para-1 {
    float: left;
}

.pricing-last-part .pricing-last-part3 .pricing-para-2 {
    text-align: right;
}

.pricing-last-part .pricing-last-part4 p {
    margin-top: 30px;
    color: #e05a6e;
}

.pricing-last-part .pricing-last-part4 .last-part-icon {
    border-radius: 50px;
    padding: 4px 8px 4px 32px;
    width: 100%;
    font-size: 11px;
    background-color: #79dd17;
    color: #fff;
    margin-top: 9px;
    position: relative;
    margin-left: -16px;
}

.pricing-last-part .pricing-last-part4 .last-part-icon .checkmark1 {
    position: absolute;
    top: 4px;
    left: 11px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: 1px solid rgb(0, 0, 0);
    background-color: #fff !important;
}

.pricing-last-part .pricing-last-part4 .last-part-icon .checkmark1:after {
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: 1px solid rgb(6 0 0);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pricing-last-part .pricing-last-part4::after {
    content: '';
    /* display: block; */
    border-right: 1px solid #99befd;
    position: absolute;
    bottom: -50px;
    height: 112px;
    left: 350px;
}

.pricing-last-part .pricing-last-part5::after {
    content: '';
    /* display: block; */
    border-right: 1px solid #99befd;
    position: absolute;
    bottom: -10px;
    height: 112px;
    left: 414px;
}

.pricing-last-part .pricing-last-btn {
    margin-top: 55px;
    background-color: #0397ff;
    color: #fff;
    box-shadow: 0px 2px 12px lightblue;
    margin-left: 79px;
}

.pricing-last-part .pricing-last-sec {
    display: inline-flex;
    margin-top: 25px;
}

.pricing-last-part .pricing-last-sec img {
    background-color: #feddb8;
    border-radius: 50%;
    padding: 0px;
    width: 10%;
    height: 24px;
    margin-top: 5px;
}

.pricing-last-part .pricing-last-sec p {
    font-size: 12px;
    font-weight: 600;
    background-color: #eeeeee;
    border-radius: 20px;
    margin-left: 10px;
    padding: 9px 88px 5px 18px;
}

.pricing-last-part .pricing-last-sec1 li {
    padding-left: 60px;
    padding-top: 10px;
    /* list-style: disc; */
    font-size: 12px;
    font-weight: 500;
}

.pricing-last-part .last-pricing-br {
    padding-bottom: 25px;
}

.pricing-last-part .last-pricing-br::after {
    content: '';
    /* display: block; */
    border-right: 1px solid #99befd;
    position: absolute;
    bottom: -29px;
    height: 613px;
    left: 263px;
}

.pricing-last-part .last-pricing-br1::after {
    content: '';
    /* display: block; */
    border-right: 1px solid #99befd;
    position: absolute;
    bottom: -27px;
    height: 615px;
    left: 263px;
}

.pricing-last-part .last-pricing-br2::after {
    content: '';
    /* display: block; */
    border-right: 1px solid #99befd;
    position: absolute;
    bottom: -27px;
    height: 615px;
    left: 263px;
}

.background-body {
    background-color: #edf0f2;
}

.last-background {
    background-color: #fff;
    margin-bottom: 12px;
    padding-bottom: 25px;
}

.icon-01 {
    background-color: #79dd17 !important;
}

.icon-02 {
    background-color: #36d6c0 !important;
}

.icon-03 {
    background-color: #79dd17 !important;
}

.icon-04 {
    background-color: #267fe9 !important;
}

.icon-05 {
    background-color: #ff6490 !important;
}

.small-division a {
    background-color: #0397ff;
    color: #fff;
    margin-left: 20px;
    margin-top: 34px;
}

.small-division-1 .small-sub-division {
    border: 1px dotted lightslategrey;
    margin-top: 20px;
    border-radius: 7px;
    padding: 18px;
}

.small-division-1 .small-sub-division p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding-top: 7px;
}

.small-division-1 .small-sub-division p span {
    display: block;
}

.small-sub-division5 p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 353px;
    color: #224b78;
}


/*-------------------------pricing page end----------------------------------------------------*/


/*-------------------------Seo page start----------------------------------------------*/

.seo {
    padding-top: 80px;
    padding-bottom: 80px;
    /* padding-left: 40px; */
}

.seo h1::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 61%;
    padding: 2px;
}

.seo h1 {
    font-size: 45px;
    color: #db4158;
    font-weight: 600;
}

.seo h1 span {
    color: black;
    font-weight: 600;
}

.seo p {
    color: #505050;
    font-weight: 500;
    font-size: 13px;
    line-height: 2;
    padding-top: 5px;
    padding-bottom: 20px;
}

.seo-img img {
    width: 58%;
    position: relative;
    top: -46px;
}

.seo-img a {
    background-color: #ef3b58;
    color: #fff;
    border: none;
}

.seo-banner-img img {
    width: 100%;
}

.seo-body {
    padding: 40px 40px;
}

.seo-body h5 {
    font-size: 45px;
    color: #db4158;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.seo-body h5 span {
    color: #000;
}

.seo-body .seo-body-part h5 {
    font-size: 31px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 40px;
    text-align: left;
}

.seo-body .seo-body-part h5::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 44%;
    padding: 2px;
    margin-left: 0px;
}

.seo-body .seo-body-part h5 span {
    color: #db4158;
    font-weight: 300;
}

.seo-body .seo-body-part p {
    padding-top: 20px;
}

.seo-body .seo-body-para {
    color: #111111;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-top: 10px !important;
}

.seo-body .seo-body-para img {
    padding-right: 30px;
}

.seo-body .seo-body-para::after {
    border-bottom: 1px solid lightgray;
    content: '';
    display: block;
    width: 100%;
    padding: 3px;
    margin-left: 0px;
}

.seo-body-1 {
    padding: 40px 40px;
}

.seo-body-1 .seo-body-1-part h5 {
    font-size: 31px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 40px;
    text-align: left;
}

.seo-body-1 .seo-body-1-part h5::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 36%;
    padding: 2px;
    margin-left: 0px;
}

.seo-body-1 .seo-body-1-part h5 span {
    color: #db4158;
    font-weight: 300;
}

.seo-body-1 .seo-body-1-part p {
    padding-top: 20px;
}

.seo-body-1 .seo-body-1-part p span {
    display: block;
}

.seo-body-1 .seo-body-1-para {
    color: #111111;
    line-height: 1.5;
    font-size: 13px;
    font-weight: 600;
    padding-top: 10px !important;
}

.seo-body-1 .seo-body-1-br::after {
    content: '';
    border-right: 1px solid lightgray;
    position: absolute;
    height: 200px;
    top: 18px;
    left: 310px;
}

.seo-body-1 .seo-body-1-icon22 {
    border: 2px solid #ed145b;
    border-radius: 13px;
    padding: 14px 2px 0px 0px;
    margin-top: 20px;
}

.seo-body-2 {
    border: 1px solid lightgray;
    border-radius: 7px;
    margin-top: 30px;
    padding-bottom: 20px;
}

.seo-body-2-br::after {
    content: '';
    border-right: 1px solid #fbc033;
    position: absolute;
    height: 200px;
    top: 20px;
    left: 49px;
}

.seo-body-2-br2::after {
    content: '';
    border-right: 1px solid #fbc033;
    position: absolute;
    height: 200px;
    top: 20px;
    left: 49px;
}

.seo-body-2 .seo-body-1-para {
    color: #111111;
    line-height: 1.5;
    font-size: 13px;
    font-weight: 600;
    padding-top: 10px !important;
}

.seo-body-3 p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    display: flex;
}

.seo-body-3 p i {
    padding-right: 25px;
    color: #fa4c5d;
}

.seo-body-3 p span {
    color: #000;
    font-size: 11px;
    font-weight: 300;
}

.seo-body-3 p .br {
    display: block;
}


/*---------------------------Seo page end---------------------------------------------*/


/*-------------------------------cro page start--------------------------------------*/


.cro h1 {
    font-size: 72px;
    color: #000;
    font-weight: 600;
}

.cro h1 span {
    color: #d82533;
    font-weight: 600;
}

.cro h1::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 61%;
    padding: 2px;
}

.cro p {
    color: #505050;
    font-weight: 500;
    font-size: 13px;
    line-height: 2;
    padding-top: 5px;
    padding-bottom: 20px;
}

.cro-body-head .cro-body-head-1 p {
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
}

.cro-body-head {
    border: 1px solid rgb(51, 51, 51);
    border-radius: 50px;
    padding: 6px;
}

.cro-body-head .cro-body-head-1 .img-bor1::after {
    content: '';
    border-right: 1px solid lightgray;
    position: absolute;
    height: 56px;
    left: 248px;
}

.cro-body-content .cro-body-contect-part .index-nav1 {
    padding-left: 15px;
    border-left: none;
    font-size: 17px;
    border-bottom: none;
    padding-top: 27px;
}

.index-nav1 a::after {
    position: absolute;
    content: '';
    top: 11px;
    left: -20px;
    width: 9px;
    height: 9px;
    background: #9a9a9a;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.index-nav1 .active a::after {
    position: absolute;
    content: '';
    top: 11px;
    left: -20px;
    width: 9px;
    height: 9px;
    background: #db4158;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.cro-body-content .cro-body-contect-part .hideshow1 {
    background-image: url(../img/cro-banner-img2.png);
    height: 92vh;
    padding: 98px 69px 82px 65px;
    width: 68%;
}

.cro-body-content-22 {
    border: 1px solid rgb(51, 51, 51);
    border-radius: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
}

.cro-body-content-22 p {
    line-height: 15px;
    font-size: 9px;
    padding-bottom: 0px;
    font-weight: 600;
}

.cro-body-content-2 {
    padding: 20px 40px;
}

.cro-body-content-2 h2 {
    font-size: 52px;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.cro-body-content-2 h2 span {
    color: #d82533;
}

.cro-body-content-2 p {
    text-align: center;
    color: #505050;
    font-weight: 500;
    font-size: 13px;
    line-height: 2;
    padding-top: 10px;
    padding-bottom: 20px;
}

.cro-body-content-2 p span {
    display: block;
}

.cro-body-content-2 .cro-body-content-layout h5 {
    font-size: 14px;
    font-weight: 600;
    background-color: #a3d39c;
    width: 35%;
    padding: 9px;
    border-radius: 6px;
}

.cro-body-content-2 .cro-body-content-layout h5::after {
    content: '';
    border-bottom: 1px solid #a67f58;
    position: absolute;
    width: 87%;
    left: 33px;
    top: 60px;
}

.cro-body-content-2 .cro-body-content-layout p {
    text-align: left;
    font-size: 13px;
    line-height: 22px;
    margin-top: 13px;
    padding-bottom: 0px;
}

.cro-body-content-2 .cro-body-content-layout {
    border: 1px solid #111;
    border-radius: 9px;
    padding: 15px;
    box-shadow: 7px 15px 12px lightgrey;
}

.cro-body-content-2 .grid-1 {
    margin-top: 132px;
    position: relative;
    left: 52px;
}

.cro-body-content-2 .grid-2 {
    margin-top: 132px;
    position: relative;
    left: -52px;
}

.cro-body-content-3 {
    padding: 120px 0px 15px;
    width: 100%;
    float: left;
    position: relative;
}

.cro-body-content-3 h2 {
    font-size: 52px;
    color: #000;
    font-weight: 600;
    line-height: 66px;
}

.cro-body-content-3 h2 span {
    color: #db4158;
}

.cro-body-content-3 p {
    color: #505050;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 20px;
}

.cro-body-con-text {
    padding-top: 30px;
}

.cro-body-con-text img {
    border: 2px solid lightgray;
    border-radius: 50%;
    padding: 8px;
}

.cro-body-con-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: #bd1e1e;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cro-body-con-text p {
    text-align: left;
    font-size: 12px;
}


/*-------------------------------cro page end-----------------------------------------*/


/* portforlio page start */

.content-hover-medium::before {
    content: url(../../assets/images/top-line.jpg);
    position: absolute;
    left: 0;
    top: -14px;
}

.content-hover-medium::after {
    content: url(../../assets/images/top-line.jpg);
    position: absolute;
    left: 0;
    bottom: -5px;
}

.portfolio-grid .content-hover-medium .txt-hover .inside-panel {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0);
    background: rgb(255 255 255 / 0%) !important;
    padding: 48px 0;
    padding-right: 20px;
    padding-top: 10px;
    width: 100%;
}

.portfolio-grid .content-hover-medium .txt-hover::before {
    display: none;
}

.portfolio-grid .content-hover-medium .txt-hover::after {
    display: none;
}

.portfolio-main {
    width: 100%;
    position: relative;
    margin-top: 165px;
}

.portfolio-main-bg {
    background-image: url(../../assets/images/portfolio-bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.portfolio-content {
    padding: 58px 135px;
}

.portfolio-content .title h1 {
    font-size: 66px;
    color: #272324;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    border-bottom: 4px solid #cbcbcb;
    display: inline-block;
}

.portfolio-content .title span {
    color: #db4158;
}

.portfolio-content .description {
    padding: 0;
    width: 100%;
}

.banner-text {
    padding: 0 15px;
    max-width: 640px;
}

.portfolio-content .description p {
    color: #646363;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    padding-top: 5 px;
    padding-bottom: 20 px;
    font-family: 'Poppins', sans-serif;
}

.portfolio-content .action {
    padding: 25px 0;
    display: flex;
    justify-content: flex-start;
}

.portfolio-content .action .child {
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.child-border-right {
    border-right: 1px solid #000;
    padding-right: 65px !important;
}

.portfolio-content .call-to-action-btn {
    text-transform: capitalize;
    padding: 12px 30px;
    background-color: #272324;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-top: 12px;
}

.portfolio-content .action .child .numb {
    padding-left: 40px;
}

.portfolio-content .action .child .numb h4 {
    font-size: 34px;
    font-family: 'roboto', sans-serif;
    font-weight: 600;
}

.portfolio-content .action .child .numb p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #646363;
    margin-top: 5px;
}

.signature-banner {
    padding: 45px 0;
    min-height: 150px;
    background: #ebebeb;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
}

.signature-banner::before {
    content: url('../../assets/images/portfolio-sub-before.png');
    position: absolute;
    left: 130px;
    bottom: -5px;
}

.signature-banner::after {
    content: url('../../assets/images/portfolio-sub-after.png');
    position: absolute;
    right: 100px;
    top: 0;
}

.signature-banner h1 {
    background: -webkit-linear-gradient(#8b6735, #271e10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.signature-banner p {
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 28px;
    background: -webkit-linear-gradient(#ffc061, #83602e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.portfolio-grid {
    max-width: 1560px;
    margin: auto;
    margin-top: 25PX;
    margin-bottom: 40px;
    padding: 7px;
}

.portfolio-grid .items {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.portfolio-grid .items img {
    width: 100%;
}

.portfolio-grid .items-main {
    padding: 7px;
}

.portfolio-grid .items .overlay {}

.portfolio-grid .col-md-12,
.portfolio-grid .col-md-6 {
    padding: 0;
}

.portfolio-grid .row {
    margin: 0;
}

.portfolio-grid .overlay .txt {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.portfolio-grid .overlay .txt h2 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    text-shadow: 1px 1px #0000007a;
}

.portfolio-grid .overlay .txt .update {
    display: flex;
    justify-content: space-evenly;
    color: #fff;
    font-size: 18px;
    margin-top: 100px !important;
    max-width: 400px;
    margin: auto;
    position: relative;
}

.portfolio-grid .overlay .txt p {
    color: #fff;
    font-size: 24px;
}

.portfolio-grid .overlay .txt h2::after {
    content: '';
    display: block;
    width: 220px;
    background-color: #0072bc;
    height: 2px;
    top: 15px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.portfolio-grid .items:hover .content-hover {
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    bottom: 0;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.portfolio-grid .items:hover .overlay {
    display: none;
}

.portfolio-grid .items .content-hover {
    opacity: 0;
}

.portfolio-grid .content-hover .txt-hover {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.portfolio-grid .content-hover .txt-hover .inside-panel {
    display: flex;
    justify-content: space-between;
    background: #fff;
    background: rgb(255 255 255 / 72%);
    padding: 48px 0;
    padding-right: 20px;
    padding-top: 10px;
    width: 100%;
}

.portfolio-grid .content-hover .txt-hover::before {
    content: url(../../assets/images/top-line.jpg);
    position: absolute;
    left: 0;
    top: -14px;
}

.portfolio-grid .content-hover .txt-hover::after {
    content: url(../../assets/images/top-line.jpg);
    position: absolute;
    left: 0;
    bottom: -5px;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left {
    padding: 26px 15px 15px 15px;
    width: 100%;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left h2 {
    font-size: 36px;
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left p {
    font-size: 20px;
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    margin-top: 30px;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left h2::after {
    content: '';
    display: block;
    width: 220px;
    background-color: #0072bc;
    height: 2px;
    top: 15px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left .tags {
    padding: 40px 0 15px 40px;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left .tags h4 {
    color: #d3904a;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 15px;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .left .tags span {
    background-color: #fff;
    padding: 5px 14px;
    border-radius: 15px;
    display: inline-block;
    margin-right: 10px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .right {
    padding: 10px;
    text-align: center;
    width: 50%;
    display: grid;
    place-items: center;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .right h4 {
    color: #000;
    font-size: 22px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .right img {
    padding: 0;
}

.portfolio-grid .content-hover .txt-hover .inside-panel .border-inside {
    border: 1px solid #e9ae21;
    padding: 30px 15px;
    display: grid;
    place-items: center;
}

.mid-span {
    font-size: 40px;
    position: absolute;
    top: -14px;
    color: #99befd;
    font-weight: 100;
    left: 52%;
    right: 50%;
}

@media screen and (max-width:1460px) {
    .portfolio-content {
        padding: 57px 50px;
    }
}

@media screen and (max-width:899px) {
    .portfolio-content .call-to-action-btn {
        padding: 0.75em 0.938em;
    }
    .portfolio-content {
        padding: 57px 20px;
    }
    .child-border-right {
        padding-right: 20px !important;
    }
    .portfolio-content .action .child {
        padding-right: 0px;
    }
    .signature-banner::before {
        content: url(../../assets/images/portfolio-sub-before-small.png);
        left: 10px;
        bottom: -5px;
    }
    .signature-banner::after {
        content: url(../../assets/images/portfolio-sub-after-small.png);
        position: absolute;
        right: 5px;
        top: 0;
    }
}

@media screen and (max-width:769px) {
    .portfolio-grid .content-hover .txt-hover .inside-panel .left h2 {
        font-size: 28px;
    }
    .portfolio-content .action {
        padding: 25px 0;
        display: grid;
        justify-content: flex-start;
    }
    .portfolio-content .action .child .numb {
        padding-left: 0;
    }
    .child-border-right {
        border-right: 1px solid #0000;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags span {
        background-color: #fff;
        padding: 5px 7px;
        border-radius: 14px;
        display: inline-block;
        margin-right: 4px;
        color: #000;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 500;
    }
}

@media screen and (max-width:599px) {
    .portfolio-content .title h1 {
        font-size: 46px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel {
        padding: 45px 0;
    }
    .portfolio-content .action {
        padding: 25px 0;
        display: grid;
        justify-content: flex-start;
    }
    .portfolio-content .action .child .numb {
        padding-left: 0;
    }
    .child-border-right {
        border-right: 1px solid #0000;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags span {
        background-color: #fff;
        padding: 5px 7px;
        border-radius: 8px;
        display: inline-block;
        margin-right: 4px;
        color: #000;
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        font-weight: 500;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left h2 {
        font-size: 20px;
        padding-top: 25px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left p {
        font-size: 14px;
        margin-top: 20px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags {
        padding: 0;
        padding-bottom: 30px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left {
        padding: 10px 5px;
        width: 100%;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .right h4 {
        font-size: 12px;
    }
    .portfolio-grid .overlay .txt .update {
        margin-top: 50px !important;
    }
    .portfolio-grid .overlay .txt h2 {
        font-size: 18px;
    }
    .portfolio-grid .overlay .txt .update {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .portfolio-main-bg .col-lg-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .portfolio-content .action .child {
        padding-right: 2.5em;
        padding-top: 0.625em;
        padding-bottom: 0.625em;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        -ms-flex: 0 0 52%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .portfolio-content .description {
        padding: 0;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .portfolio-grid .overlay .txt .update {
        margin-top: 30px !important;
    }
    .portfolio-grid .overlay .txt .update {
        font-size: 14px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags {
        padding: 40px 0 15px 0px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags span {
        background-color: #fff;
        padding: 5px 14px;
        border-radius: 15px;
        display: inline-block;
        margin-right: 1px;
        color: #000;
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        font-weight: 500;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .portfolio-grid .overlay .txt .update {
        font-size: 14px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags {
        padding: 00px 0 15px 0px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left .tags span {
        background-color: #fff;
        padding: 5px 14px;
        border-radius: 15px;
        display: inline-block;
        margin-right: 1px;
        color: #000;
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        font-weight: 500;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left h2 {
        font-size: 26px;
    }
    .portfolio-grid .content-hover .txt-hover .inside-panel .left p {
        font-size: 16px;
    }
}

.portfolio-grid .items:hover .content-hover-medium {
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    background: rgb(255 255 255 / 72%);
}

.portfolio-grid .items:hover .content-hover-small {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    background: rgb(255 255 255 / 72%);
}

.portfolio-grid .items .content-hover-small {
    opacity: 0;
}

.portfolio-grid .content-hover-small .txt-hover {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    padding-right: 20px;
    padding-top: 10px;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left {
    padding: 26px 15px 15px 15px;
    width: 100%;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left h2 {
    font-size: 26px;
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left p {
    font-size: 14px;
    color: #000;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    margin-top: 30px;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left h2::after {
    content: '';
    display: block;
    width: 220px;
    background-color: #0072bc;
    height: 2px;
    top: 15px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left .tags {
    padding: 0px 0 15px 0px;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left .tags h4 {
    color: #d3904a;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 15px;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .left .tags span {
    background-color: #fff;
    padding: 5px 14px;
    border-radius: 15px;
    display: inline-block;
    margin-right: 2px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .right {
    padding: 10px;
    text-align: center;
    width: 50%;
    display: grid;
    place-items: center;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .right h4 {
    color: #000;
    font-size: 14px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .right img {
    padding: 0;
}

.portfolio-grid .content-hover-small .txt-hover .inside-panel .border-inside {
    border: 1px solid #e9ae21;
    padding: 30px 10px;
    display: grid;
    place-items: center;
}


/* portfolio page end */





/* ============ Why Ms Start ===============*/

/* start why Multinational-seo? page by prajna */

.why_ms{
    margin-top: 200px;
    margin-left: 20px;
    margin-bottom: 144px;
}
.why_us{
    margin-top: 200px;
}

.why_ms_content{
    position: relative;
    margin-top: 118px;
}
.whyms_square {
    background-color: #ec525a;
    width: 423px !important;
    height: 606px;
}

.whyms_square .col-lg-4 , .whyms_square .col-md-4, .whyms_square .col-sm-4{
    margin-left: 100px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    position: relative;
}
.whyms_square_heading {
    padding-top: 33px;
    padding-left: 35px;
}

.whyms_square_heading h1 {
    font-size: 56px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 600;
}

.whyms_square_seo {
    position: absolute;
    left: 528px;
    color: black;
    TOP: 95px;
}
.get-in-touch{
    margin-bottom: 30px !important;
}
.whyms_square_seo h1 {
    font-size: 56px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
}
.whyms_square_paragraph {
    padding-top: 36px;
    padding-left: 35px;
    width: 97%;
}

.whyms_square_paragraph p {
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 400;
    line-height: 25px;
}
.whyms_btn_group {
    position: relative;
    top: -19px;
    left: 0px;
}
.whyms_btn_group .whyms_phone_button {
    position: absolute;
    top: 44px;
    left: -45px;
}
.whyms_btn_group .whyms_arrow_button {
    position: absolute;
    top: 55px;
    left: 163px;
}
.whyms_phone_button img{
    height: 46px !important;
}
.whyms_square_button {
    margin: 0 auto;
    padding-top: 54px;
    padding-bottom: 22px;
    float: left;
    margin-left: 0px;
}
.whyms_square_button::before{
    background: url(../images/phone-call.png) no-repeat left;
}
.whyms_square_button a {
    border: 1px solid #a1a1a1;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 16px;
}
.after_sales_support_headings h2{
    font-size: 25px;
    font-family: 'Poppins', sans-serif;;
    color: #000000;
    font-weight:600;
}
.after_sales_support_paragraph p{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;;
    color: #4d515f;
    font-weight: 400;
}


.after_sales_support {
    position: relative;
}
.after_sales_support::before {
    content: '';
    display: block;
    border: 1px solid #d6d6d6;
    position: absolute;
    bottom: -13px;
    left: -8px;
    height: 109%;
}
.timely_delivery::before {
    content: '';
    display: block;
    border: 1px solid #d6d6d6;
    position: absolute;
    bottom: -13px;
    left: -8px;
    height: 96%;
}
.after_sales_support_headings::after {
    content: '';
    display: block;
    width: 37%;
    border: 1px solid #d6d6d6;
    position: absolute;
    bottom: 91px;
    left: -41px;
}
.tiemly_delivery_heading::after {
    content: '';
    display: block;
    width: 82%;
    border: 1px solid #d6d6d6;
    position: absolute;
    bottom: 113px;
    left: -46px;
}
.after_sales_support_paragraph {
    padding-top: 25px;
    padding-left: 20px;
    width: 42%;
}

.timely_delivery_paragraph {
    padding-top: 25px;
    padding-left: 20px;
    width: 103%;
}
.tiemly_delivery_heading h2{
    font-size: 25px;
    font-family: 'Poppins', sans-serif;;
    color: #000000;
    font-weight:600;
}
.timely_delivery_paragraph p{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;;
    color: #4d515f;
    font-weight: 400;
}
.secure_data_heading h2{
    font-size: 25px;
    font-family: 'Poppins', sans-serif;;
    color: #000000;
    font-weight:600;
}
.secure_data_paragraph p{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;;
    color: #4d515f;
    font-weight: 400;
}
.secure_data::before {
    content: '';
    display: block;
    border: 1px solid #d6d6d6;
    position: absolute;
    bottom: -13px;
    left: -8px;
    height: 110%;
}
.secure_data {
    position: relative;
    margin-left: 43px;
}
.secure_data_paragraph {
    padding-top: 25px;
    padding-left: 20px;
    width: 42%;
}
.secure_data_heading::after {
    content: '';
    display: block;
    width: 34%;
    border: 1px solid #d6d6d6;
    position: absolute;
    bottom: 93px !important;
    left: -36px;
}
.why_ms_content {
    margin-left: 64px !important;
}
.after_sales_support::after {
    content: '';
    background: url(../images/layer44.png);
    background-position: center center;
    background-size: cover;
    opacity: 5;
    height: 292px;
    width: 53%;
    position: absolute;
    right: -41px;
    top: -50px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 0;
}

.after_sales_support {
    position: relative;
    margin-left: 124px;
}


.timely_delivery {
    position: relative;
    margin-left: auto;
    margin-right: 192px !important;
}
.whyms_square{
    margin-left:102px !important; 
}
.active12 a{
    border-color: #ec525a !important;
    border-radius:23px;
    background:rgba(255, 255, 255,0);
    padding: 12px;
    color: #ec525a !important;
    text-decoration: none !important;
}
.growth-p-heading{
    position: relative;
}
.growth-p-heading::after {
    border-bottom: 5px solid #888888;
    content: '';
    display: block;
    width: 14%;
    padding: 2px;
}
.growth-p-heading h1{
    font-size:42px;
    font-family: 'Poppins', sans-serif;;
    color: #ec525a;
    font-weight:600;
}
.growth-p-paragraph {
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    margin-top: 14px;
    width: 107%;
}
.growth-p-paragraph p::before{
    content: '';
    display: block;
    height: 11px;
    padding: 2px;
}
.for-employee-btn {
    background-color: #363636;
    border: none;
    color: white;
    padding: 0px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 110px;
}

.for-employee-tabs ul{
    white-space: nowrap;
    height: 16em;
    width: 100%;
}
.for-employee-tabs ul li{
    display: inline;
}

 #environment{
    margin-left: 7px;
}

#development{
    margin-left: 7px;
}

#platform{
    margin-left: 0px;
}
.for-employee-tabs {
    margin-top: 65px;
}
.growth-p-paragraph p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
}
#employee-tab1C p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: 8px solid #eb5159;
    padding-left: 13px;
    height: 63px;
}
#employee-tab2C p{
    font-size:15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight:400;
    border-left: 8px solid #ff0000;
    padding-left: 13px;
    height: 63px;
}
#employee-tab3C p{
    font-size:15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight:400;
    border-left: 8px solid #ff0000;
    padding-left: 13px;
    height: 63px;
}
#employee-tab4C p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: 8px solid #ff0000;
    padding-left: 13px;
    height: 63px;
}
.for-client-btn {
    background-color: #363636;
    border: none;
    color: white;
    padding: 12px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    position: absolute;
    padding: 12px 50px;
    top: 494px;
  
}
.growth-c-img {
    float: right;
    margin-top: 182px;
    position: absolute;
    top: -185px;
    left: 286px;
}
.for-client-tabs ul {
    /* overflow-x: hidden; */
    white-space: nowrap;
    height: 16em;
    width: 100%;
}
.for-client-tabs ul li {
    display: inline;
}

.for-client-tabs {
    top: 640px;
    position: absolute;
}
.for-client-tabs li#full-support a {
    width: auto;
    height: 50px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 13px 11px;
    color: #000000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.for-client-tabs li#certification a {
    width: 145px;
    height: 50px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 13px 19px;
    color: #000000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
.for-client-tabs li#professional a {
    width: 296px;
    height: 45px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 13px 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #000000;
}
.for-client-tabs li#secure a {
    width: 146px;
    height: 45px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 17px;
    padding: 11px 25px;
    color:  #000000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}


.for-employee-tabs li#development a {
    width: 262px;
    height: 43px;
    font-size: 18px;
    padding: 12px 11px;
    font-weight: bold;
}

.for-employee-tabs li#platform a {
    width: 187px;
    height: 43px;
    font-size: 18px;
    padding: 11px 12px;
    font-weight: bold;
}
.for-employee-tabs li#environment a {
    width: 145px;
    height: 43px;
    font-size: 18px;
    padding: 11px 15px;
    text-decoration: none !important;
    font-weight: bold;
}
.for-employee-tabs li#culture a {
    width: 104px;
    height: 43px;
    padding: 11px 23px;
    text-decoration: none !important;
    font-weight: bold;
}
.send-us-paragraph p {
    font-size: 14px;
}
.for-client-tabs li#secure a {
    width: 167px;
    height: 45px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 12px 25px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
.for-employee-tabs li#culture a {
    width: 112px;
    height: 46px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 12px 25px;
    color: #000000;
    text-decoration: none !important;
}
.for-employee-tabs li#environment a {
    width: 163px;
    height: 43px;
    font-size: 18px;
    padding: 11px 13px;
    text-decoration: none !important;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    /* padding: 12px 25px; */
    color: #000000;
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
}
.for-employee-tabs li#development a {
    width: 307px;
    height: 43px;
    font-size: 18px;
    padding: 12px 11px;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: bold;
    text-decoration: none !important;
}

.for-employee-tabs li#platform a {
    width: 219px;
    height: 45px;
    border: none;
    border: solid 1px #ababab;
    border-radius: 23px;
    background: rgba(255, 255, 255,0);
    font-size: 20px;
    padding: 12px 18px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    text-decoration: none !important;
}
.gtab5 {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}
.gtab5.active {
    opacity: 1;
    visibility: visible;
    top: 220px;
    left: 6px;
}
/* .gtab p::before{
    border-left: 5px solid red;
} */
#client-tab1C p{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: 8px solid #eb5159;
    padding-left: 13px;
    height: 63px;
}
  #client-tab2C p{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: 8px solid #eb5159;
    padding-left: 13px;
    height: 63px;
}
#client-tab3C p{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: 8px solid #ff0000;
    padding-left: 13px;
    height: 63px;
}
#client-tab4C p{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
    border-left: 8px solid #ff0000;
    padding-left: 13px;
    height: 63px;
}

.gtab1 {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}
.gtab1.active {
    opacity: 1;
    visibility: visible;
    top: 726px;
    left: 1px;
    position: absolute;
}
.growth-p-employee{
    margin-top: 150px;
    margin-left: 100px;
}
.for-client-btn a{
    color: white;
}
.for-employee-btn a{
    color: white;
}
.for-employee-tabs::before {
    display: block;
    content: '';
    border-bottom: 3px solid #888888;
    padding-top: 11px;
    width: 90%;
    position: relative;
    left: -1px;
    top: -52px;
}
.for-client-tabs::before {
    display: block;
    content: '';
    border-bottom: 3px solid #888888;
    padding-top: 11px;
    width: 98%;
    position: relative;
    left: -1px;
    top: -53px;
}
.img12{
    position: relative;
    top: 541px;
    left: 32px;
}
#culture a:focus{
    width: 112px;
    height: 46px;
    border: 1px solid red;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0);
    font-size: 17px;
    padding: 12px 25px;
}
.growth-p-client {
    position: relative;
    top: 56px;
}
section .growth-partner{
    width: 100%;
}

.growth-c-img::after {
    top: -179px;
    right: -36px;
    z-index: -1;
    position: absolute;
    display: inline-block;
}

.mission-heading {
    top: -24px;
    left: -7px;
    position: relative;
}
.growth-p-client {
    position: relative;
    top: 13px;
}
.mission-heading::after {
    padding-top: 11px;
    width: 56%;
    position: relative;
    left: 103px;
}
.for-client-tabs {
    top: 529px;
    position: absolute;
}
.vision-heading::after {
    padding-top: 11px;
    width: 56%;
    position: relative;
    left: 113px;
}
.gtab1.active {
    opacity: 1;
    visibility: visible;
    top: 705px;
    left: 1px;
    position: absolute;
}
.img12 {
    position: relative;
    top: 523px;
    left: 36px;
}
.secure_data_heading::after {
    position: absolute;
    bottom: 84px;
    left: -36px;
}

.for-client-tabs li#full-support a {
    width: 165px;
    height: 45px;
}

.for-client-tabs li#certification a {
    width: 162px;
    height: 45px;
}
.for-client-btn {
    padding: 0px 29px;
    font-size: 20px;
    position: absolute;
    top: 422px;
}
.gtab4.active {
    opacity: 1;
    visibility: visible;
    top: 718px;
    left: 95px;
}
.gtab4 {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}

.for-employee-tabs::before {
    padding-top: 11px;
    width: 85%;
    position: relative;
    left: -1px;
    top: -52px;
}

.mission-vision{
    margin-top: 100px;
}
.misn-vision-heading h1 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #ec525a;
    font-weight: 600;
}
.misn-vision-paragraph p{
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
}
.mission-heading h1{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    color: #010101;
    font-weight: 400;
}
.vision-heading h1{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    color: #010101;
    font-weight: 400;
}
.vision h1{
    font-size: 30px;
    font-family: 'poppins', sans-serif;
    color: #010101;
    font-weight: 400;
}
.vision-paragraph p {
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
}
.mission-paragraph p {
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    color: #4d515f;
    font-weight: 400;
}
.misn-vision-heading{
    text-align: center;
    margin-top: 140px;
}
.misn-vision-paragraph{
    text-align: center;
}
.missin {
    margin-left: 100px;
    background: url(../images/rectangle2.png) no-repeat left;
    height: 500px;
    padding: 100px;
    width: 669px;
    text-align: center;
    margin-top: 90px;
    margin-bottom: 80px;
    margin-left: 185px;
}
.vision {
    background: url(../images/ww1.png) no-repeat right;
    height: 500px;
    padding: 100px;
    text-align: center;
    width: 669px;
    margin-top: 90px;
    margin-bottom: 80px;
    margin-left: 81px;
}
.get-in-touch-sec{
    margin-left: 100px;
}
.get-in-touch-sec::before{
    display: block;
    content: '';
    border-top: 1px solid #d6d6d6;
    width: 94%;
    margin-top: -20px;
    margin-left: 0px;
}
.mission-heading::after {
    display: block;
    content: '';
    border-bottom: 4px solid #5574b8;
    padding-top: 11px;
    width: 56%;
    position: relative;
    left: 106px;
}
.mission-paragraph {
    margin-top: 19px;
    text-align: justify;
    text-align-last: left;
}
.vision-heading::after {
    display: block;
    content: '';
    border-bottom: 4px solid #5574b8;
    padding-top: 11px;
    width: 56%;
    position: relative;
    left: 106px;
}
.vision-paragraph {
    margin-top: 37px;
    text-align: justify;
    text-align-last: left;
}
.vision-heading{
    margin-top: -19px;
}
#certification{
    margin-left: 7px;
}
#professional{
    margin-left: 7px;
}
.sales-heading h1 {
    font-size: 23px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: bold;
}
.sales-heading h1 span {
    font-size: 37px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
}
.sales-paragraph p {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #636379;
    font-weight: 400;
}
.sales-paragraph {
    margin-left: 180px;
    margin-top: 11px;
}
.sales-heading {
    margin-left: 180px;
}
.send-us-paragraph {
    margin-top: 79px;
    margin-left: 178px;
}
.send-us-paragraph p {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    font-weight: 300;
}
.send-us-paragraph p a {
    color: #1a4b5d;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0px 0px !important;
}
.fa-whatsapp  {
     color:#fff;
     background:
     linear-gradient(#25d366,#25d366) 14% 84%/16% 16% no-repeat,
     radial-gradient(#25d366 58%,transparent 0);
}

.mission-heading h2{
    color: #010101;
    font-weight: 600;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
}
.vision-heading h2{
    font-size: 30px;
    color: #010101;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.vision-heading {
    position: relative;
    top: -5px;
    left: -20px;
}
 

/* ============ Why Ms End ===============*/
/*================== Contact Page Start====================*/



/*===============Contact Page End================*/
/*===============Blog Page End================*/
/* .our-work-img .img-fluid{
    position: absolute !important;
    left: 10px;
    top:10px;
    margin-bottom: 120px;
}
.c-container{
    position: relative;
}
.our-Blog p{
    font-family: 'Poppins', sans-serif;
}
.our-blog1{
     padding-left: 46px !important;
}
.latest-blog h1 span {
    font-size: 55px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #272324;
}
.our-Blog h1{
    color: rgb(12, 1, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.work{
    overflow: hidden;
    margin-top: 120px;
    margin-bottom: 120px;
}
.blog-banner{
    background-image: url(../images/main-banner-bg.jpg);
}

.our-Blog h1::after {
  background-color: #000;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 10%;
}
.latest-blog-banner {
    margin-top: 30px;
    margin-left: 45px;
    margin-right: 45px;
    padding-bottom: 45px;
}
h1:after {
    left: 0.5em;
    margin-right: -50%;
}
.seo-service-heading h2 {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000000;
    padding-left: 30px;
}
.seo-service-heading1 h2{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #000000;
    padding-left: 10px;
    }
.seo-service{
      margin-top: 65px !important;
} 
.swiper-slide .seo-service1 {
    height: auto;
    text-align: left;
    margin-left: 37px;
    margin-top: 33px;
}
.seo-service h1 span {
    margin-top: 10px;
    padding-left: 30px;
    opacity: 1;
    font-size: 84px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #efefef;
}
  .seo-service1 h1 span{
        opacity: 2;
        font-size: 45px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: #efefef;
        padding-left: 10px;
    
  }
  #slider1 {
    padding-left: 78px !important;
    border-left: 2px solid #ddd;
    margin-top: 45px;
  }
  #slide2 {
    border-bottom: 2px solid #ddd !important;
    padding-bottom: 50px;
  }
  .read-more a{
    width: 150px;
    height: 50px;
    border: 1px solid #c2c2c2;
    background: #fff;
    padding: 0px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 26px;
    font-weight: bold;
    line-height: 25px;
    border-color: #e7e7e7;
    color: #3476c7;
    float: right;
    text-decoration: none;
    z-index: 1;
  }
  
  .read-more {
    position: relative;
    margin-top: 60px;
    padding-left: 30px;
 } 
.read-more::before{
    content: '';
    width: 59%;
    height: 3px;
    border-bottom: 1px solid #cccccc !important;
    position: absolute;
    top: 22px;
    z-index: -1;
 }
.container1 {
    padding: 100px 30px;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
  }
  
.image-stack {
  position: relative;
  width:100%;
  padding-top: 4px;
}
.image-stack img{
    position: relative;
    width:100%;
  }
.image-stack__item--bottom {
    position: absolute;
    right: 73px;
    top: 40px;
    width: 66%;
    bottom: 142px;
    z-index: -1;
}
.image-stack::before{
        border: 1px solid #d7d7d7 !important;
        content: '';
        width: 100%;
        height: 100%;
        bottom: 35px;
        left: 35px;
        position: absolute;
        z-index: -1;
        margin-top: 0;  
  }
.image-stack::after {
    background-image: url(../images/background.png);
    content: '';
    width: 100px;
    height: 100px;
    top: -15px;
    right: -34px;
    top: -32px;
    position: absolute;
    z-index: -1;
}
.image-stack__item--top {
    padding-top: 20px;
    padding-bottom: 52px;
    padding-right: 28%;
    width: 125%;
}

.image-stack__item--top ::before{
    border: 1px solid grey;
    position: absolute;
    left: 12px;
}
.admin h4 {
    color: #eb4747;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding-left: 22px;
}
.date h4 {
    color: #eb4747;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding-left: 35px;
}
.admin1 h4{
    color: #eb4747;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding-left: 0px;
}

.date1 h4{
    color: #eb4747;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.seo-service-admin{
    margin-top: 10px;
    margin-bottom: 10px;
}

.seo-service-paragraph1 p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #797979;
    padding-left: 10px;
    font-weight: 400;
}
.seo-service-paragraph{
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    padding-top: 20px;
}
.blog p {
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 400;
}
.seo-service-paragraph p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    padding-top: 43px;
    margin-left: 30px;
    color: #797979;
    font-weight: 400;
}
 .seo-service .col-sm-6{
 padding-right: 20px !important;
}
.breadcrumb {
    float: right;
    padding-top: 260px;
    padding-right: 81px;
    background-color: transparent;
}
.breadcrumb .breadcrumb-item a {
    color: #000;
    font-weight: 600;
    font-family:'Poppins', sans-serif;
    font-size: 18px;
}
.breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}
.breadcrumb .breadcrumb-item {
    color: #000;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}
.swiper-button-next {
    left: 673px !important;
    right: auto !important;
    top: 45px !important;
    color: #797979 !important;
    position: relative;
}
.swiper-button-next img{
    left: 632px !important;
    right: auto !important;
    top: 45px !important;
    color: #797979 !important;
}
.swiper-button-prev {
    left: 672px !important;
    right: auto !important;
    top: 15px !important;
    color: #797979 !important;
}
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 62px;
    list-style: none;
    background-color: #ffffff !important;
    border-radius: 4px;
    margin-top: 209px;
    margin-right: 53px;
}

.latest-blog h1::after{
    display: inline-block;
    content: "";
    border-top: .2rem solid black;
    width: 6rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

  / Relevant styles /
  .image-stack1 {
    position: relative;
    width: 100%;
  }
  .image-stack1 img{
    padding-top: 43px;
}

/ carousel /
  .slick-carousel{width:200px;}
  .slick-carousel img {
  width: 100%; height:auto;
  }
  .swiper {
    width: 100%;
    height: 87%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .swiper-slide {
    flex-shrink: 2 !important;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 170%;
    object-fit: cover;
  }
  .main-swipe-slider{
      height: 655px;
  }

.our-Blog{
    margin-top: 78px;
}
.image1::before{
    background-image: url(../images/background.png);
    content: '';
    width: 100px;
    height: 100px;
    top: -15px;
    right: -19px;
    top: 28px;
    position: absolute;
    z-index: 0;
}
.image1 img{
    position: relative;
    width: 81%;
} */
/* 
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
} */
/* .swiper-button-next:after, .swiper-button-prev:after {
     font-family: swiper-icons;  
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
     font-variant: initial;
     line-height: 1; 
     display: none;
}

.breadcrumb {
    margin-top: -118px !important;
    margin-right: -363px !important;
    padding: 1px 0px;
    margin-bottom: 20px;
    list-style: none;
    border-radius: 4px;
}



.our-work{
    padding-top: 116px;
    padding-bottom: 80px;
    padding-left: 51px;
}

.our-work p {
    color: #646363;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    padding-top: 0px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.our-work-img{
    margin-left: -80px;
}

.our-work .our-work-heading::after {
    border-bottom: 3px solid lightgray;
    content: '';
    display: block;
    width: 46%;
    padding: 12px;
    position: relative;
    top: -8px;
    left: 0px;
} */

/*===============Blog Page End================*/







/*========================================  Pricing Page New Start  Rohit   ===========================================*/

.main-logo-sec {
	width: 44%;
}
.main-logo-sec img {
	width: 100%;
	object-fit: cover;
}
.header-lg {
    display: flex;
    align-items: center;
    align-content: center;
}
header.main-header .main-menu-sec {
    margin-top: 0;
}
header.main-header {
    left: 0;
    transform: inherit;
    /*box-shadow: 0px 1px 10px 0px #ccc;*/
    /*box-shadow: 0px 1px 10px 0px #e9e9e9;*/
    box-shadow: 0px 1px 10px 0px #f5f5f5;
    z-index: 9999;
    background: #fff;
}
.home_pg .main-header.bg-color {
    background: #fff;
}
header.main-header .main-menu-sec ul.main-menu-list li a {
    font-weight: 400;
}
.menu-btn span {
    margin-top: 0px;
}
.header-mobile-logo {
    width: 280px;
}
.header-mobile-main {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.footer-section-1 .col-sm-4 {
    max-width: inherit;
}
.footer-section-2 .col-sm-4 {
    max-width: inherit;
}
/*.full-pricing-sec {
    height: calc(100vh - 36px);
}*/
.pricngpg_baner_sec {
    width: 100%;
    position: relative;
    background-image: url(../images/pricing-page-banner-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 220px;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
}
.pricngpg_baner_sec_card {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 0 40px 0 40px;
}
.pricngpg_baner_sec_card-all {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: space-between;
}
.pricngpg_baner_sec_card-all .col-lg-8 {
	padding-left: 0;
}
.pricngpg_baner_sec_card-all .col-lg-4 {
	padding-right: 0;
}
.pricngpg_baner_title h1 {
    font-size: 34px;
    font-family: 'Poppins', sans-serif;
    color: #e7315e;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
}
.pricngpg_baner_title_span {
	color: #000;
	width: 100%;
	float: left;
	font-weight: 400;
	font-size: 26px;
	padding-bottom: 10px;
}
.pricngpg_baner_title p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #3e3e3e;
    font-weight: 500;
    margin: 0 0 0 30px;
    padding: 0 0 0 30px;
    border-left: 1px solid #ccc;
    line-height: 1.6;
    position: relative;
    top: -4px;
    /*height: 30px;
    line-height: 30px;*/
}
.pricngpg_baner_title {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
}
.pricngpg_curncy_box ul {
    float: right;
    margin: 0;
    border: 1px solid #e7315e;
    border-radius: 5px;
    padding: 0 0px;
    text-align: center;
}
.pricngpg_curncy_box ul li {
	margin: 0;
	padding: 0;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	transition: 0.3s ease-in-out;
}
.pricngpg_curncy_box ul li a {
    padding: 8px 10px;
    font-size: 20px;
    border-radius: 4px;
    font-weight: 500;
    color: #000;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.pricngpg_curncy_box ul li.active_curncy a {
	background: #e7315e;
	color: #fff;
}
/*.pricngpg_curncy_box ul li:hover a {
	background: #e7315e;
	color: #fff;
}*/
.pricngpg_sec {
	width: 100%;
	position: relative;
	/*padding: 0px 0 30px;*/
    padding: 0px 0 60px;
}
.pricngpg_sec_card {
    float: left;
    width: 100%;
    position: relative;
    padding: 0 4%;
}
.pricngpg_badp_baplan {
    float: right;
    width: auto;
    display: flex;
    align-items: center;
    align-content: center;
    position: relative;
}
.pricngpg_badp_wrap {
    padding: 10px 0px;
    width: 100%;
    float: left;
}
.pricngpg_badp_baplan_tab ul {
	padding: 0;
	border-radius: 50px;
	background: #fff; 
	box-shadow: 0 0 4.5px rgba(18,21,55,0.15);
}
.pricngpg_badp_baplan_tab ul li {
	margin: 0;
	padding: 0;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	transition: 0.3s ease-in-out;
}
.pricngpg_badp_baplan_tab ul li a {
    padding: 6px 20px;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
    color: #000;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}
.pricngpg_badp_baplan_tab ul li.active_badp a {
	background: linear-gradient(0deg, #2178ad, #29a0e8);
	color: #fff;
	animation: myprdlvr 0.5s linear forwards;
}
/*.pricngpg_badp_baplan_tab ul li:hover a {
	background: linear-gradient(0deg, #2178ad, #29a0e8);
	color: #fff;
}*/
.pricngpg_badp_baplan_icn {
    /*width: 52px;*/
    border-left: 1px solid #ccc;
    padding-left: 20px;
    margin-left: 20px;
    width: fit-content;
}
.pricngpg_badp_baplan_icn a {
	text-decoration: none;
}
.pricngpg_badp_baplan_icn img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.pricngpg_badp_baplan_icn .sbmt_txts {
	display: none;
}
.sbtn_cmpr .sbmt_txts {
    display: block;
    background: #ed3b64;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    width: fit-content;
    padding: 3px 15px;
    border-radius: 30px;
    width: 100px;
}
.pricngpg_badp_baplan_icn .sbmt_txts_compr {
    display: block;
    background: #000;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    width: fit-content;
    padding: 3px 15px;
    border-radius: 30px;
    width: 100px;
}
.sbtn_cmpr .sbmt_icn{
	display: none;
}
.sbtn_cmpr .sbmt_txts_compr{
	display: none;
}
.pricngpg_price_table_sec {
	position: relative;
	float: left;
	width: 100%;
	display: flex;
}
.pricngpg_price_table_left{
	*width: 22%;
	width: 70%;
	float: left;
	position: relative;
	border-right: 1px solid #ccc;
	padding-right: 50px;
}
.pricngpg_price_table_sesoem{
	width: 100%;
	float: left;
	position: relative;
}
.redydevlp_box h4 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 500;
    line-height: inherit;
    padding-bottom: 15px;
}
.redydevlp_box h4 span {
	color: #e7315e;
}
.redydevlp_box p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
    line-height: inherit;
}
.redydevlp_box p a {
	color: #e7315e;
	text-decoration: none;
}
.redydevlp_box p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 83%;
    background: #888888;
}
.sesocre_wrap_box {
	width: 100%;
	float: left;
	position: relative;
	border-bottom: 1px solid #ccc;
	padding-bottom: 18px;
	margin-bottom: 18px;
}
.sesocre_wrap_box_inr {
	width: 100%;
	float: left;
	position: relative;
	border: 1px dashed #80b5d4;
	padding: 15px 20px;
}
.sesocre_wrap_box_all {
    display: grid;
    align-items: center;
    align-content: center;
    grid-template-columns: 1fr 12fr;
    gap: 20px;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.sesocre_wrap_box_all_icn {
    background-color: #f4f4f4;
    width: 45px;
    border-radius: 6px;
    overflow: hidden;
    height: 45px;
    line-height: 45px;
}
.sesocre_wrap_box_all_icn img {
	width: 100%;
	object-fit: cover;
	padding: 12px;
}
.sesocre_wrap_box_all_title h5 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}
.sesocre_wrap_box_links ul {
	padding: 0;
	text-align: center;
}
.sesocre_wrap_box_links ul li {
	margin: 0 8px;
	padding: 0;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	transition: 0.5s ease-in-out;
}
.sesocre_wrap_box_links ul li a {
    padding: 3px 25px;
    font-size: 17px;
    border-radius: 50px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: #e8f5fc;
}
.sesocre_wrap_box_links ul li.active_sesocre a {
	background: linear-gradient(0deg, #e9315e, #f85173);
	color: #fff;
	box-shadow: 0px 5px 3.5px rgba(237,56,101,0.23);
	background-image: linear-gradient(180deg, #f75173 0%, #f75173 1%, #e72d5b 99%, #e72d5b 100%);
}
/*.sesocre_wrap_box_links ul li:hover a {
	background: linear-gradient(0deg, #e9315e, #f85173);
	color: #fff;
	box-shadow: 0px 5px 3.5px rgba(237,56,101,0.23);
	background-image: linear-gradient(180deg, #f75173 0%, #f75173 1%, #e72d5b 99%, #e72d5b 100%);
}*/
.sesocre_box_three .sesocre_wrap_box_links {
	display: none;
}
.sesocre_box_three .sesocre_wrap_box_all {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.sesocre_box_one .sesocre_wrap_box_all_icn img {
    padding: 8px;
}
.sesocre_box_one .sesocre_wrap_box_inr {
    border: 1px solid #ed3865;
    box-shadow:0px 5px 4px rgba(237,56,101,0.14);
}
.sesocre_box_one .sesocre_wrap_box_all {
    border-bottom: 1px solid #f7d7df;
}
.redydevlp_box {
    float: left;
    padding-top: 10px;
    position: relative;
    bottom: -6px;
}
.pricngpg_price_table_right{
	*width: 78%;
	width: 100%;
	float: left;
	position: relative;
	padding-left: 50px;
}
.pricngpg_price_table_right_wrap {
	width: 100%;
	float: left;
	position: relative;
}
.busdrcl_wrap {
	width: 60%;
	float: left;
	position: relative;
}
.busdrcl_wrap_all {
    width: 80%;
    float: left;
    position: relative;
    transition: all .35s ease-in-out;
}
.busdrcl_wrap_card {
	width: 100%;
	float: left;
	position: relative;
	border: 1px solid #ccc;
	box-shadow: 0 0 7.5px rgb(18 21 55 / 10%);
}
.focus_busdrcl {
	/*box-shadow: 0 0 7px rgb(0 0 0 / 80%);*/
	    border: 1px solid rgba(240,70,108,0.5);
        transition: all .35s ease-in-out;
}
.focus_busdrcl_inr {
    /*box-shadow: 0 0 7px rgb(0 0 0 / 80%);*/
        border: 2px solid #f0466c;
        transition: all .2s ease-in-out;
}
.busdrcl_wrap_card_top {
    padding: 20px;
    padding-bottom: 0;
}
.clck_tcmpr {
    position: absolute;
    right: 0;
    top: 0px;
    background: #eb3e67;
    padding: 0px 10px;
    border-radius: 0 0px 0px 40px;
    /*display: none;*/
    cursor: pointer;
    transition: all .35s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.clck_tcmpr p {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}
.focus_busdrcl .clck_tcmpr {
	display: block;
    transition: all .35s ease-in-out;
    opacity: 1;
    visibility: visible;
}
.focus_busdrcl_inr .clck_tcmpr {
    display: block;
    transition: all .35s ease-in-out;
    opacity: 1;
    visibility: visible;
}
.busdrcl_wrap_card_top_one {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 20px;
}
.busdrcl_wrap_card_title h3 {
	font-size: 32px;
    font-family: 'Poppins', sans-serif;
    color: #e7315e;
    font-weight: 600;
    text-transform: capitalize;
}
.busdrcl_wrap_card_top_price h2 {
	font-size: 48px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
        padding-right: 18px;
}
.busdrcl_wrap_card_top_price sup {
	font-weight: 500;
    padding-right: 5px;
}
.busdrcl_wrap_card_top_price small {
	font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    text-align: right;
    float: right;
    line-height: 1;
}
.busdrcl_wrap_card_top_two {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #ffdae1;
    border-top: 1px solid #ffdae1;
    padding: 6px 0;
    margin: 15px 0 20px;
}
.busdrcl_wrap_card_top_two p {
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    position: relative;
    line-height: inherit;
    text-transform: uppercase;
}
.busdrcl_wrap_card_top_three {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.busdrcl_wrap_card_top_three_tab ul {
	padding: 0;
	border-radius: 50px;
	background: #fff; 
	box-shadow: 0 0 4.5px rgba(18,21,55,0.15);
}
.busdrcl_wrap_card_top_three_tab ul li {
	margin: 0;
	padding: 0;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	transition: 0.5s ease-in-out;
}
.busdrcl_wrap_card_top_three_tab ul li a {
    padding: 6px 20px;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}
.busdrcl_wrap_card_top_three_tab ul li.active_butab a {
	background: linear-gradient(0deg, #2178ad, #29a0e8);
	color: #fff;
	animation: myprdlvr 0.5s linear forwards;
}
/*.busdrcl_wrap_card_top_three_tab ul li:hover a {
	background: linear-gradient(0deg, #2178ad, #29a0e8);
	color: #fff;
}*/
.buisnes_class_box .busdrcl_wrap_card_top_three_tab ul li.active_butabcl a {
	background: linear-gradient(0deg, #2178ad, #29a0e8);
	color: #fff;
	animation: myprdlvr 0.5s linear forwards;
}
.busdrcl_wrap_card_top_four {
    padding: 15px 0;
}
.busdrcl_wrap_card_top_four h6 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #0a68a0;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    padding-bottom: 5px;
}
.busdrcl_wrap_card_top_four ul {
	padding: 0;
}
.busdrcl_wrap_card_top_four ul li {
	margin: 0 5px 0 0;
	text-align: center;
	display: inline-flex;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    color: #003a5c;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    background: #e8f5fc;
}
.busdrcl_wrap_card_midl {
	padding: 0 20px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 12px 0;
}
.busdrcl_wrap_card_midl_lists ul {
	margin: 0;
}
.busdrcl_wrap_card_midl_lists ul li {
	margin: 0;
	padding: 8.5px 0;
	border-bottom: 1px dashed #ccc;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #000;
}
.busdrcl_wrap_card_midl_lists ul li:last-child {
	border-bottom: none;
}
.midl_lists_nmbr {
    color: #0a68a0;
}
.midl_lists_icns {
    margin-left: 8px;
    overflow: hidden;
}
.midl_lists_icns img {
    width: 14px;
    transition: transform .5s, filter 1.5s ease-in-out;
}
.midl_lists_icns:hover img {
    transform: scale(1.1);
}
.busdrcl_wrap_card_botm {
	background: #f7f8fb;
	padding: 10px 20px;
}
.busdrcl_wrap_card_botm_box p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    position: relative;
    line-height: inherit;
    text-align: center;
}
.busdrcl_wrap_card_botm_box p span {
    color: #0a68a0;
}
.busdrcl_wrap_card_botm_line {
    background: #0a68a0;
    height: 6px;
    margin-top: 10px;
    position: relative;
    width: 120px;
    margin: 10px auto 0;
}
.line_one {
    background: #ef3f69;
    height: 6px;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.line_two {
    background: #0a68a0;
    height: 100%;
    width: 60px;
    position: absolute;
    top: 0;
    right: 50%;
    display: none;
}
.sixsigma_box .busdrcl_wrap_card {
	width: 100%;
}
.sixsigma_box {
    width: 100%;
    float: left;
    position: relative;
    padding-left: 50px;
}
.sixsigma_box .busdrcl_wrap_card_title h3 {
	color: #0a68a0;
}
.sixsigma_box .busdrcl_wrap_card_top_four ul li {
    color: #000;
    background: #fbeaee;
}
.sixsigma_box .busdrcl_wrap_card_top_four h6 {
	color: #ed6285;
}
.sixsigma_box .midl_lists_nmbr {
    color: #ed6285;
}
.sixsigma_box .busdrcl_wrap_card_botm_box p span {
    color: #ed6285;
}
.sixsigma_box .busdrcl_wrap_card_top_three_tab ul li.active_sixs a {
	background: linear-gradient(0deg, #e53360, #f85173);
	color: #fff;
	animation: myprdlvr 0.5s linear forwards;
}
/*.sixsigma_box .busdrcl_wrap_card_top_three_tab ul li:hover a {
	background: linear-gradient(0deg, #e53360, #f85173);
	color: #fff;
}*/
.busdrcl_wrap_all.buisnes_class_box {
    padding-left: 5px;
}
.busdrcl_wrap_all.buisnes_drive_box {
    padding-left: 20px;
}
sup {
    top: -0.3em;
}


/*======================================  Footer New Start  ====================================*/
#footer_new_sec {
	width: 100%;
	position: relative;
	background: #282828;
    /* float: left; */
    clear: both;
}
.footer_new_botom {
    width: 100%;
    position: relative;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.footer_new_botom_social_icns {
	width: 40%;
	display: flex;
	justify-content: flex-end;
    align-items: center;
    align-content: center;
}
.twiter_ftr {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    margin-right: 12px;
    text-decoration: none;
}
.twiter_ftr:hover {
	color: #fff;
}
.twiter_ftr span {
	color: #f33161;
}
.footer_new_botom_social_icns ul {
	padding: 0;
	margin: 0;
	text-align: right;
}
.footer_new_botom_social_icns ul li {
	padding: 0;
	margin: 0;
	text-align: right;
	display: inline-block;
	margin-left: 10px;
}
.footer_new_botom_social_icns ul li a {
	color: #fff;
	font-size: 13px;
	transition: all 1s ease;
}
.footer_new_botom_social_icns ul li img {
	width: 100%;
	object-fit: cover;
}
.footer_new_botom_social_icns ul li a:hover {
	color: #e7315e;
}
.footer_new_botom_payment_icns {
	width: 20%;
    border-right: 1px solid #fff;
    text-align: center;
}
.footer_new_botom_payment_icns img {
	width: fit-content;
	object-fit: cover;
}
.footer_new_botom_payment_icns ul {
	padding: 0;
	margin: 0;
	text-align: center;
}
.footer_new_botom_payment_icns ul li {
	padding: 0;
	margin: 0 2px;
	text-align: right;
	display: inline-block;
	width: 28px;
}
.footer_new_botom_payment_icns ul li img {
	width: 100%;
	object-fit: cover;
}
.footer_new_copyright {
    width: 40%;
}
.footer_new_copyright p {
    text-align: center;
    color: #fff;
    padding: 0px;
    font-size: 13px;
}
.footer_new_subnav_links {
    width: 50%;
}
.footer_new_subnav_links ul {
	text-align: center;
}
.footer_new_subnav_links ul li {
	text-align: center;
	display: inline-block;
	margin: 0 15px;
}
.footer_new_subnav_links ul li a {
	text-align: center;
	color: #fff;
	font-size: 14px;
}
.footer_new_quick_links {
    width: 40%;
    display: flex;
    align-items: center;
    align-content: center;

}
.footer_new_quick_links ul {
	text-align: left;
}
.footer_new_quick_links ul li {
	text-align: center;
	display: inline-block;
	margin-right: 10px;
	padding-left: 10px;
	border-left: 1px solid #ffffff63;
	line-height: 1;
}
.footer_new_quick_links ul li a {
	text-align: center;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	transition: all 1s ease;
}
.footer_new_quick_links ul li:last-child {
	margin-right: 0px;
}
.footer_new_quick_links ul li a:hover {
	color: #e7315e;
}
.footer_new_cntinfo ul li {
	border: none;
	margin-right: 10px;
	padding-left: 0px;
}
.footer_new_cntinfo {
    padding-right: 10px;
}
.footer_new_cntinfo i.fa.fa-envelope {
    font-size: 12px;
}
.footer_new_cntinfo i.fas.fa-phone-alt {
    font-size: 12px;
}


/*============================================  Pricing Deliver Starts  ========================================*/
.pricngdlverpg_sec {
	width: 100%;
	position: relative;
	padding-top: 130px;
	padding-bottom: 20px;
	/*height: calc(100vh - 36px);*/
}
.pricngdlverpg_sec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/pricing-page-banner-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 135px;
}
.pricngdlverpg_sec_card {
	width: 100%;
	position: relative;
	padding: 0 40px;
}
.pricngdlverpg_wrap {
	width: 100%;
	position: relative;
}
.pricngdlverpg_wrap_sbar {
	width: 26%;
	position: relative;
	padding-right: 50px;
	float: left;
}
.pricngdlverpg_wrap_sbar_all {
	width: 100%;
	position: relative;
}
.pricngdlverpg_wrap_sbar_sembox {
    width: 100%;
    float: left;
    position: relative;
    padding: 10px 15px;
    border: 2px solid #ed3865;
    box-shadow: 0px 5px 4px rgb(237 56 101 / 14%);
    display: flex;
    align-items: center;
    align-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.pricngdlverpg_wrap_sbar_sembox_icntxt {
    display: grid;
    align-items: center;
    align-content: center;
    grid-template-columns: 1fr 12fr;
    gap: 20px;
}
.pricngdlverpg_wrap_sbar_sembox_icn {
    background-color: #f4f4f4;
    width: 50px;
    border-radius: 6px;
    overflow: hidden;
    height: 50px;
    line-height: 56px;
}
.pricngdlverpg_wrap_sbar_sembox_icn img {
	width: 100%;
	object-fit: cover;
	padding: 6px;
}
.pricngdlverpg_wrap_sbar_sembox_txt h5 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}
.pricngdlverpg_wrap_sbar_sembox_links ul {
	padding: 0;
	text-align: center;
}
.pricngdlverpg_wrap_sbar_sembox_links ul li {
	margin: 6px 0;
	padding: 0;
	text-align: center;
	display: inline-flex;
	transition: all 0.6s ease-in-out;
}
.pricngdlverpg_wrap_sbar_sembox_links ul li a {
    padding: 3px 25px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 500;
    color: #000;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    background: #e8f5fc;
    transition: all 0.65s ease-in-out;
}
.pricngdlverpg_wrap_sbar_sembox_links ul li.active_sem a {
	background: linear-gradient(0deg, #e9315e, #f85173);
	color: #fff;
	box-shadow: 0px 5px 3.5px rgba(237,56,101,0.23);
	background-image: linear-gradient(180deg, #f75173 0%, #f75173 1%, #e72d5b 99%, #e72d5b 100%);
}
/*.pricngdlverpg_wrap_sbar_sembox_links ul li:hover a {
	background: linear-gradient(0deg, #e9315e, #f85173);
	color: #fff;
	box-shadow: 0px 5px 3.5px rgba(237,56,101,0.23);
	background-image: linear-gradient(180deg, #f75173 0%, #f75173 1%, #e72d5b 99%, #e72d5b 100%);
}*/
.pricngdlverpg_wrap_sbar_card {
	width: 100%;
	float: left;
	position: relative;
	border-right: 1px solid #ccc;
	padding-right: 40px;
	padding-top: 15px;
}
.pricngdlverpg_wrap_sbar_bestfor {
    border-bottom: 1px solid #91b9d1;
    padding-bottom: 35px;
    margin-bottom: 25px;
}
.pricngdlverpg_wrap_sbar_bestfor h6 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #ed6285;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    padding-bottom: 5px;
}
.pricngdlverpg_wrap_sbar_bestfor ul {
	margin: 0;
	padding: 0;
}
.pricngdlverpg_wrap_sbar_bestfor ul li {
	font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 15px;
    display: inline-flex;
    position: relative;
    font-weight: 500;
    padding-right: 24px;
    align-items: center;
    align-content: center;
}
.pricngdlverpg_wrap_sbar_bestfor ul li:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #000;
	right: -12px;
	top: 0;
}
.pricngdlverpg_wrap_sbar_bestfor ul li:last-child {
	padding-right: 0px;
}
.pricngdlverpg_wrap_sbar_bestfor ul li:last-child:after {
	display: none;
}
.pdw_sbar_ncbm {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    padding-top: 25px;
    gap: 5px;
}
.pdw_sbar_ncbm_nc {
    width: fit-content;
    padding: 2px 15px;
    border: 2px solid #166cb4;
    border-radius: 40px;
}
.pdw_sbar_ncbm_nc p {
	font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.pdw_sbar_ncbm_bm {
    width: 50%;
    padding: 0px 0 0px 15px;
    border: 2px solid #4cd864;
    border-radius: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.pdw_sbar_ncbm_bm_lft p {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    line-height: 1;
}
.pdw_sbar_ncbm_bm_lft .hide_bm {
	display: none;
}
.pdw_sbar_ncbm_bm_rght {
    position: relative;
}
.pdw_sbar_ncbm_bm_rght .switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
    float: right;
    margin-bottom: 0;
}
.pdw_sbar_ncbm_bm_rght .switch input {
	display:none;
}
.pdw_sbar_ncbm_bm_rght .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.pdw_sbar_ncbm_bm_rght .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.pdw_sbar_ncbm_bm_rght .switch input.bm_change:checked + .slider {
  background-color: #4cd864;
}
.pdw_sbar_ncbm_bm_rght .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.pdw_sbar_ncbm_bm_rght .switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.pdw_sbar_ncbm_bm_rght .slider.round {
  border-radius: 34px;
}
.pdw_sbar_ncbm_bm_rght .slider.round:before {
  border-radius: 50%;
}
.pricngdlverpg_wrap_sbar_topfetrs {
    border-bottom: 1px solid #91b9d1;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.pricngdlverpg_wrap_sbar_topfetrs h6 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #ed6285;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    padding-bottom: 5px;
}
.pricngdlverpg_wrap_sbar_topfetrs ul {
	margin: 0;
	padding: 0;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li {
	font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: 15px;
    display: inline-flex;
    position: relative;
    font-weight: 500;
    padding-right: 24px;
    align-items: center;
    align-content: center;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li:after {
	content: '';
	position: relative;
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #000;
	right: -12px;
	top: 0;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li:last-child {
	padding-right: 0px;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li:last-child:after {
	display: none;
}
.tflbsm_icn_lists {
	/*padding-top: 15px;*/
	position: relative;
	width: 100%;
	height: 167px;
	margin-top: 15px;
}
.tflbsm_icn_lists ul {
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}
/*.tflbsm_icn_lists ul:first-child {
	display: block;
}*/
.tflbsm_icn_lists .show_tflbsm {
	display: block;
}
.tflbsm_icn_lists ul li {
	margin: 0;
	padding: 12px 0;
	display: flex;
	align-content: center;
	align-items: center;
}
.tflbsm_icn_lists ul li:after {
	display: none;
}
.tflbsm_icn_lists_icn {
	position: relative;
	margin-right: 15px;
}
.tflbsm_icn_lists_icn:before {
    content: '';
    position: absolute;
    left: 3px;
    top: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d5e3fe;
}
.tflbsm_icn_lists_icn img {
	position: relative;
	width: 16px;
}
.tflbsm_icn_lists ul li p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #005d94;
    font-weight: 500;
    position: relative;
    line-height: inherit;
    width: 100%;
}
.tflbsm_icn_lists ul li span {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #e93662;
    font-weight: 600;
    padding-left: 8px;
    position: relative;
    line-height: inherit;
}
.pricngdlverpg_wrap_sbar_somepo {
    /*margin-top: 80px;*/
    border-bottom: 1px solid #91b9d1;
    padding-bottom: 30px;
    margin-bottom: 27px;
}
.pricngdlverpg_wrap_sbar_somepo_box p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    position: relative;
    line-height: inherit;
    text-align: left;
}
.pricngdlverpg_wrap_sbar_somepo_box p span {
    color: #0a68a0;
}
.pricngdlverpg_wrap_sbar_somepo_line {
    *background: #fff;
    height: 10px;
    margin-top: 20px;
    position: relative;
    background: #0a68a0;
    width: 80%;
}
.pricngdlverpg_wrap_sbar_somepo_line .line_one {
    background: #ef3f69;
    height: 100%;
    width: 120px;
    position: absolute;
    top: 0;
    left: 0%;
    width: 35%;
}
.pricngdlverpg_wrap_sbar_somepo_line .line_two {
    background: #0a68a0;
    height: 100%;
    width: 45%;
    position: absolute;
    top: 0;
    right: 30%;
    display: none;
}
.fdct_call_box {
	width: 100%;
	display: flex;
	align-items: center;
	align-content: center;
	/*margin-top: 50px;*/
	/*margin-top: 40px;*/
}
.fdct_call_txts {
    /*border-radius: 40px 0px 40px 40px;
    background-image: linear-gradient(86deg, #e93761 0%, #e93761 10%, #09679f 100%);
    padding: 8px 20px;*/
    width: 300px;
}
/*.fdct_call_txts p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 500;
    position: relative;
    line-height: inherit;
    text-align: left;
}
.fdct_call_txts p span {
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 16px;
}
.fdct_call_txts p a {
	color: #fff;
}*/
.fdct_call_txts p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    position: relative;
    /*padding-left: 15px;*/
    line-height: 1.5;
}
.fdct_call_txts p a {
	color: #e7315e;
	text-decoration: none;
}
/*.fdct_call_txts p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 83%;
    background: #888888;
}*/
.fdct_call_icn {
    /*margin-left: 30px;*/
    width: fit-content;
    width: 80px;
    padding-right: 17px;
    border-right: 1px solid #ccc;
    margin-right: 20px;
}
.fdct_call_icn img {
	width: 100%;
	object-fit: cover;
	margin-left: -3px;
}
.fdct_call_txts p img {
    width: 15px;
    margin-right: 5px;
}
.fdct-call-icn-2 {
    border-right: 1px solid #ccc;
    margin-right: 6px !important;
    padding-right: 8px;
    width: 30px !important;
    padding-left: 5px;
}
.pricngdlverpg_wrap_main {
	width: 76%;
	position: relative;
	float: left;
}
.prdlvr_bdbcs_wrap {
	width: 100%;
	position: relative;
	float: left;
    padding-bottom: 30px;
}
.prdlvr_bdbcs_wrap.hide_bm {
    display: none;
}
.prdlvr_bdbcs_wrap_top {
	width: 100%;
	position: relative;
}
.prdlvr_bdbcs_wrap_top_box {
	display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #ccc;
    padding: 10px 20px;
    width: 100%;
    position: relative;
    cursor: pointer;
    background: #fff;
    transition: all 1s ease;
}
.prdlvr_bdbcs_wrap_top_box:before{
	content: '';
	position: absolute;
	left: -1px;
	right: -1px;
	top: -35px;
	background: linear-gradient(0deg, #f16183, #f7a8b8);
	width: -webkit-fill-available;
	height: 35px;
	visibility: hidden;
	opacity: 0;
    display: none;
}
.prdlvr_bdbcs_wrap_top_all {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 40px;
}
.prdlvr_bdbcs_wrap_top_box_titl h3 {
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    color: #e7315e;
    font-weight: 600;
    text-transform: capitalize;
    padding-right: 5%;

}
.prdlvr_bdbcs_wrap_top_box_price h2 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
    padding-right: 18px;
}
.prdlvr_bdbcs_wrap.hide_bm .prdlvr_bdbcs_wrap_top_box_price h2{
    padding-right: 5px;
}
.prdlvr_bdbcs_wrap_top_box_price sup {
    font-weight: 500;
}
.prdlvr_bdbcs_wrap_top_box_price small {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    text-align: right;
    float: right;
    line-height: 1;
}
.prdlvr_bdbcs_wrap_top_box.active_bbs {
	border: 1px solid #ed3865;
    box-shadow: 0px 5px 4px rgb(237 56 101 / 14%);
    background: linear-gradient(0deg, #f4607f, #e93561);
    transition: all 1s ease;
}
.prdlvr_bdbcs_wrap_top_box.active_bbs .prdlvr_bdbcs_wrap_top_box_titl h3 {
    color: #fff;
   transition: inherit;
}
.prdlvr_bdbcs_wrap_top_box.active_bbs:before {
	opacity: 1;
	visibility: visible;
}
.active_bbs{
	animation: myprdlvr 0.5s linear forwards;
}
@keyframes myprdlvr{
	0%{
        opacity: 0;
        visibility: hidden;
	}
	100%{
       opacity: 1;
       visibility: visible;
	}
}
/*.prdlvr_bdbcs_wrap_top_box:hover, .prdlvr_bdbcs_wrap_top_box.active_bbs {
	border: 1px solid #ed3865;
    box-shadow: 0px 5px 4px rgb(237 56 101 / 14%);
    background: linear-gradient(0deg, #f4607f, #e93561);
}
.prdlvr_bdbcs_wrap_top_box:hover .prdlvr_bdbcs_wrap_top_box_titl h3, .prdlvr_bdbcs_wrap_top_box.active_bbs .prdlvr_bdbcs_wrap_top_box_titl h3 {
    color: #fff;
}
.prdlvr_bdbcs_wrap_top_box:hover:before, .prdlvr_bdbcs_wrap_top_box.active_bbs:before {
	opacity: 1;
	visibility: visible;
}*/
.prdlvr_bdbcs_wrap_midle {
	width: 100%;
	position: relative;
	padding-top: 40px;
}
.prdlvr_bdbcs_wrap_midle_all {
	width: 100%;
	position: relative;
	display: flex;
	gap: 15px;
	height: calc(100vh - 430px);
	overflow-y: scroll;
}
.bdbcs_wrap_midle_left {
	width: 100%;
	position: relative;
}
.bdbcs_wrap_midle_centr {
	width: 100%;
	position: relative;	
}
.bdbcs_wrap_midle_rght {
	width: 100%;
	position: relative;	
}
.bdbcs_wrap_midle_box {
	width: 100%;
	position: relative;	
	/*background: #fbfcfd;*/
	border-left: 2px solid #f5b7c7;
	padding: 20px 20px;
	margin-bottom: 15px;
}
.bdbcs_wrap_midle_box_dtls {
	width: 100%;
	position: relative;	
}
.bdbcs_wrap_midle_box_titl h4 {
	position: relative;
	font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #e7315e;
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 12px;
    margin-bottom: 25px;
}
.bdbcs_wrap_midle_box_titl h4:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 2px;
	background: #e7315e;
}
.bdbcs_wrap_midle_box_cols li {
	padding-bottom: 10px;
	font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #434343;
    font-weight: 500;
    position: relative;
    line-height: inherit;
    text-align: left;
    /*cursor: pointer;*/
    transition: all 1s ease;
}
.bdbcs_wrap_midle_box_cols li:hover {
	color: #e72e5c;
}
.bdbcs_wrap_midle_box_txts {
    display: flex;
    gap: 44px;
}
.bdbcs_wrap_midle_box_cols {
	position: relative;
	width: 100%;
}
.bdbcs_wrap_midle_box_txts .bdbcs_wrap_midle_box_cols:first-child:after {
	content: '';
	width: 1px;
	height: 100%;
	background: #ccc;
	position: absolute;
	right: -20px;
	top: 0;
}
.bdbcs_wrap_midle_box_cols li:last-child {
	padding-bottom: 0;
}
.prdlvr_bdbcs_wrap_midle_all .red_colr.bdbcs_wrap_midle_box{
	border-left: 2px solid #f5b7c7;
}
.prdlvr_bdbcs_wrap_midle_all .red_colr .bdbcs_wrap_midle_box_titl h4{
	color: #e7315e;
}
.prdlvr_bdbcs_wrap_midle_all .red_colr .bdbcs_wrap_midle_box_titl h4:before{
	background: #e7315e;
}
.prdlvr_bdbcs_wrap_midle_all .sky_colr.bdbcs_wrap_midle_box{
	border-left: 2px solid #b0e8e7;
}
.prdlvr_bdbcs_wrap_midle_all .sky_colr .bdbcs_wrap_midle_box_titl h4{
	color: #25c4be;
}
.prdlvr_bdbcs_wrap_midle_all .sky_colr .bdbcs_wrap_midle_box_titl h4:before{
	background: #25c4be;
}
.prdlvr_bdbcs_wrap_midle_all .green_colr.bdbcs_wrap_midle_box{
	border-left: 2px solid #b9ddb2;
}
.prdlvr_bdbcs_wrap_midle_all .green_colr .bdbcs_wrap_midle_box_titl h4{
	color: #3da225;
}
.prdlvr_bdbcs_wrap_midle_all .green_colr .bdbcs_wrap_midle_box_titl h4:before{
	background: #3da225;
}
.prdlvr_bdbcs_wrap_midle_all .orange_colr.bdbcs_wrap_midle_box{
	border-left: 2px solid #f8daaf;
}
.prdlvr_bdbcs_wrap_midle_all .orange_colr .bdbcs_wrap_midle_box_titl h4{
	color: #f39b1d;
}
.prdlvr_bdbcs_wrap_midle_all .orange_colr .bdbcs_wrap_midle_box_titl h4:before{
	background: #f39b1d;
}
.prdlvr_bdbcs_wrap_midle_all .blue_colr.bdbcs_wrap_midle_box{
	border-left: 2px solid #b7bce4;
}
.prdlvr_bdbcs_wrap_midle_all .blue_colr .bdbcs_wrap_midle_box_titl h4{
	color: #3844b5;
}
.prdlvr_bdbcs_wrap_midle_all .blue_colr .bdbcs_wrap_midle_box_titl h4:before{
	background: #3844b5;
}
.prdlvr_bdbcs_wrap_midle_all .violet_colr.bdbcs_wrap_midle_box{
	border-left: 2px solid #e5b2e1;
}
.prdlvr_bdbcs_wrap_midle_all .violet_colr .bdbcs_wrap_midle_box_titl h4{
	color: #b523a9;
}
.prdlvr_bdbcs_wrap_midle_all .violet_colr .bdbcs_wrap_midle_box_titl h4:before{
	background: #b523a9;
}
.prdlvr_bdbcs_wrap_botom {
	width: 100%;
	float: left;
	position: relative;
	display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    padding-top: 20px;
    position: relative;
}
.prdlvr_bdbcs_wrap_botom_left h5 {
	font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 500;
    line-height: inherit;
    padding-bottom: 10px;
}
.prdlvr_bdbcs_wrap_botom_paymnt_icns {
	width: fit-content;
	float: left;
}
.prdlvr_bdbcs_wrap_botom_paymnt_icns img {
	width: 100%;
	object-fit: cover;
}
.prdlvr_bdbcs_wrap_botom_price {
	width: fit-content;
	float: left;
    overflow: hidden !important;
    min-height: 62px;
}
.prdlvr_bdbcs_wrap_botom_price h2 {
	font-size: 62px;
    font-family: 'Poppins', sans-serif;
    color: #e72e5c;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
    display: flex;
    align-items: center;
    align-content: center;
}
.prdlvr_bdbcs_wrap_botom_price h2 small {
	color: #e72e5c;
	font-size: 18px;
	font-weight: 600;
	padding-left: 5px;
}
.prdlvr_bdbcs_wrap_botom_price h2 sup {
    top: 0;
    font-size: 34px;
    font-weight: 400;
}
.prdlvr_bdbcs_wrap_botom_rght {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 30px;
}
.prdlvr_bdbcs_wrap_botom_month select {
    width: 130px;
    height: 34px;
    border-radius: 40px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 0 10px;
    font-size: 18px;
	color: #2b2b2b;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	text-align: left;
	-webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 4px;
}
.prdlvr_bdbcs_wrap_botom_btn button {
	background: #e72e5c;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	border: 1px solid #e72e5c;
	height: 55px;
	outline: none;
	padding: 0 35px;
	transition: all 1s ease;
}
.prdlvr_bdbcs_wrap_botom_btn button:hover {
	background: #000;
	border: 1px solid #000;
}
.prdlvr_bdbcs_wrap_midle_all::-webkit-scrollbar {
  display: block;
  width: 6px;
}
.prdlvr_bdbcs_wrap_midle_all {
  -ms-overflow-style: none; 
  scrollbar-width: none;  
}

/*========================  Compare Pop Up  ============================*/

.compare_pp {
	width: 100%;
    height: 100vh;
	height: 100%;
	overflow-x: hidden;
    overflow-y: hidden;
	float: left;
	position: fixed;
	left: 0;
	top: -100%;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(6px);
	/*pointer-events: none;*/
	overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: right .35s ease-in-out;
    transition: top .35s ease-in-out;
}
.compare_pp_wrap {
	width: 85%;
	float: left;
	position: relative;
	background: #fff;
	padding: 40px 50px;
	height: 100vh;
	overflow: hidden;
}
.compare_pp_wrap_scrol {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}
.compare_pp_main {
	width: 100%;
	float: left;
	position: relative;
}
.compare_pp_close_button {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #ff6174;
    color: #fff;
    font-size: 26px;
    text-align: center;
    font-weight: 300 !important;
    line-height: 30px;
    position: absolute;
    right: -25px;
    top: -24px;
    cursor: pointer;
    right: 5px;
    top: 5px;
}

.compare_pp_main_cols {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
}
.compare_pp_col_one {
    width: 100%;
    float: left;
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}
.compare_pp_col_one_all {
	width: 100%;
    float: left;
    position: relative;
}
.compare_pp_col_one_top {
    display: flex;
    gap: 45px;
    flex-direction: column;
}
.compare_pp_col_one_top_hdngs h3 {
	font-size: 30px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-weight: 600;
    padding-bottom: 8px;
    text-transform: capitalize;
}
.compare_pp_col_one_top_hdngs p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #6c6c6c;
    font-weight: 400;
}
.compare_pp_col_one_top_tab ul {
	padding: 0;
	border-radius: 5px;
	background: #ebebeb; 
	/*box-shadow: 0 0 4.5px rgba(18,21,55,0.15);*/
	padding: 5px;
	width: fit-content;
}
.compare_pp_col_one_top_tab ul li {
	margin: 0;
	padding: 0;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	transition: 0.3s ease-in-out;
}
.compare_pp_col_one_top_tab ul li a {
    padding: 6px 20px;
    font-size: 15px;
    border-radius: 5px;
    font-weight: 400;
    color: #000;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}
.compare_pp_col_one_top_tab ul li.active a {
	background: linear-gradient(0deg, #ed3865, #ed3865);
	color: #fff;

}
.compare_pp_col_one_top_tab ul li:hover a {
	background: linear-gradient(0deg, #ed3865, #ed3865);
	color: #fff;
}
.compare_pp_col_two {
    width: 60%;
    float: left;
    position: relative;
    padding: 0 30px 30px;
}
.bbdp_box{
    display: flex;
    gap: 40px;
    flex-direction: column;
}
.bbdp_box_one {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    align-content: flex-start;
}
.bbdp_box_two  {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    align-content: center;
}
.bbdp_box_one_title {
    width: 50%;
}
.bbdp_box_one_title h3 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    color: #e7315e;
    font-weight: 600;
    text-transform: capitalize;
}
.bbdp_box_one_bpln {
    width: fit-content;
}
.bbdp_box_one_bpln h6 {
    margin: 0;
    text-align: center;
    display: inline-flex;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    color: #003a5c;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    background: #e8f5fc;
}
.bbdp_box_two_price h4 {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
}
.bbdp_box_two_price h4 sup {
    top: -0.6em;
    font-size: 24px;
    font-weight: 500;
    padding-right: 5px;
}
.bbdp_box_two_price h4 sub {
    bottom: 0em;
    font-size: 16px;
    font-weight: 500;
}
.bbdp_box_two_link a {
    margin: 0;
    text-align: center;
    display: inline-flex;
    padding: 5px 15px;
    font-size: 15px;
    border-radius: 0px;
    font-weight: 400;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    background: linear-gradient(0deg, #2178ad, #29a0e8);
    color: #fff;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}
.compare_pp_col_three {
    width: 60%;
    float: left;
    position: relative;
    padding: 0 30px 30px;
}
.compare_pp_col_four {
    width: 60%;
    float: left;
    position: relative;
    padding: 0 30px 30px;
}
.compare_pp_col_four_all {
    display: table;
    height: 100%;
    vertical-align: middle;
    width: 100%;
}
.compare_pp_col_four_all_top {
    display: table-cell;
    vertical-align: middle;
}
.compare_pp_col_four_all_circl {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	text-align: center;
	border: 1px solid #ababab;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding: 8px;
	margin: 0 auto;
}
.compare_pp_col_four_all_circl h5 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #e7315e;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
}
.compare_brdr_botm_ht {
	border-bottom: 1.5px solid #898989;
}
.compare_brdr_rght_ht {
	border-right: 1px solid #ccc;
}
.bbdp_box_two_price small {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    text-align: right;
    float: right;
    line-height: 1;
}
.bbdp_box_two_link {
    width: 100%;
    float: left;
}
.compare_pp_col_one_top_tab {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 30px;
}
.bmba_card {
    width: auto;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: start;
    gap: 15px;
}
.bmba_card_labl label {
	font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #6c6c6c;
    font-weight: 400;
    margin: 0;
    margin-bottom: 6px;
    cursor: pointer;
}
.bmba_card_input input {
	display: none;
}
label.switchify.switchify-label {
	display: inline-block;
	    margin: 0;
	cursor: pointer;    
}
label.switchify.switchify-label > input.switchified {
	display: none;
}
label.switchify.switchify-label > span.switchify-switch {
	display: block;
	background-color: #cecece;
	height: 22px;
	width: 42px;
	position: relative;
	border: 1px solid #cecece;
	border-radius: 1em;
	transition: background-color 0.25s, border-color 0.25s;
}
label.switchify.switchify-label > span.switchify-switch::after {
	content: "";
	background-color: #fff;
	display: block;
	height: 18px;
	width: 18px;
	position: absolute;
	border-radius: 1em;
	left: 2px;
	transition: left 0.25s;
	top: 1px;
}
label.switchify.switchify-label > input.switchified:checked + span.switchify-switch {
	background-color: #4bcc23;
	border-color: #4bcc23;
}
label.switchify.switchify-label > input.switchified:checked + span.switchify-switch::after {
	left: calc(100% - 20px);
}
.cfpf_centr_tick {
    margin: 0 auto;
    width: 18px;
    padding: 10px 0;
}
.cfpf_centr_tick img {
    width: 100%;
}
.compare_brdr_botm_clr {
	border-bottom: 2px solid #b8c9db;
    padding-bottom: 0;
}
.compare_brdr_botm_clr .compare_brdr_rght_ht {
	padding-bottom: 0;
}
.compare_brdr_botm_thin {
	border-bottom: 1px solid #ccc;
    padding-bottom: 0;
}
.compare_brdr_botm_thin .compare_brdr_rght_ht {
	padding-bottom: 0;
}
.cfpf_titl {
    padding: 20px 0 5px;
}
.cfpf_titl h5 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #0a68a0;
    font-weight: 500;
    line-height: inherit;
}
.cfpf_left_txt {
    padding: 10px 0;
}
.cfpf_centr_txt p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #104767;
    font-weight: 500;
    line-height: inherit;
    text-align: center;
}
.cfpf_centr_txt {
    padding: 10px 0;
}
.cfpf_left_txt p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #6c6c6c;
    font-weight: 500;
    line-height: inherit;
    text-align: left;
}
.compare_pp.open {
    top: 0;
}
.bmba_card_labl_txtclr label {
	color: #000;
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}
.custom-select-wrapper select {
	display: none;
}
.custom-select {
	position: relative;
	display: inline-block;
}
.custom-select-trigger {
	  position: relative;
	  display: block;
	  width: 130px;
	  padding: 0 84px 0 22px;
	  font-size: 22px;
	  font-weight: 300;
	  color: #fff;
	  line-height: 60px;
	  background: #5c9cd8;
	  border-radius: 4px;
	  cursor: pointer;
	  height: 34px;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 40px;
    margin-top: -5px;
    color: #2b2b2b;
    background: #fff;
    border: 1px solid #ccc;
    font-weight: 500;
    line-height: 30px;
}
.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 10px; 
	height: 10px;
	top: 50%; 
	right: 10px;
	margin-top: -3px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg) translateY(-50%);
	transition: all .4s ease-in-out;
	transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%; left: 0; right: 0;
	min-width: 100%;
	margin: 15px 0;
	border: 1px solid #b5b5b5;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background: #fff;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	top: unset;
	bottom: 100%;
}
.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}
.custom-options:before {
  position: absolute;
  display: block;
  content: '';
  bottom: 100%; 
  right: 25px;
  width: 7px; 
  height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transform: rotate(45deg);
  transition: all .4s ease-in-out;
  top: 100%;
  bottom: unset;
  margin-bottom: 0px;
  margin-top: -3px;
  transform: rotate(-135deg);
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 22px;
  border-bottom: 1px solid #b5b5b5;
  font-size: 18px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 47px;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.custom-option:hover, .custom-option.selection {
    background: #e72e5c;
    color: #fff;
}
.custom-select {
    background: none;
    font-size: 0;
    border: none;
    padding: 0;
}
.mns_ftr_telpp {
    position: absolute;
    left: 2%;
    top: -28px;
    border: 1px solid #ccc;
    background: #fff;
    padding: 3px 6px;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}
.mns_ftr_telpp:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    left: 2px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
    top: 100%;
    bottom: unset;
    margin-bottom: 0px;
    margin-top: -3px;
    transform: rotate(-135deg);
}
.mns_ftr_telpp a {
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	color: #2e3192;
	text-decoration: none;
	transition: 0.5s ease-in-out;
}
.mns_ftr_telpp a:hover {
	color: #db4158;
}
.mns_ftr_mailpp {
    position: absolute;
    top: -28px;
    left: 3.4%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 3px 6px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}
.mns_ftr_mailpp:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    left: 2px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
    top: 100%;
    bottom: unset;
    margin-bottom: 0px;
    margin-top: -3px;
    transform: rotate(-135deg);
}
.mns_ftr_mailpp a {
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	color: #2e3192;
	text-decoration: none;
	transition: 0.5s ease-in-out;
}
.mns_ftr_mailpp a:hover {
	color: #db4158;
}
.show_ftrmtlpp {
	opacity: 1;
	visibility: visible;
}
/*.search-engine1:hover .grow {
    background: #25b3fe;
}
.search-engine1:hover .seo-icon-img img{
    filter: brightness(0) invert(1);
}
.search-engine3:hover .bull {
    background: #fe9650;
}
.search-engine3:hover .seo-icon-img img{
    filter: brightness(0) invert(1);
}
.search-engine2:hover .search-seo {
    background: #45d287;
}
.search-engine2:hover .seo-icon-img img{
    filter: brightness(0) invert(1);
}
.search-engine4:hover .mic {
    background: #c98bd4;
}
.search-engine4:hover .seo-icon-img img{
    filter: brightness(0) invert(1);
}*/






/*------------------------------- New CSS -------------------------------------*/
.sesocre_box_one .sesocre_wrap_box_inr {
    border: 1px dashed #80b5d4;
    box-shadow: none;
}
.sesocre_wrap_box.active .sesocre_wrap_box_inr {
    border: 1px solid #ed3865;
    box-shadow:0px 5px 4px rgba(237,56,101,0.14);
}
.sesocre_box_one .sesocre_wrap_box_all {
    border-bottom: 1px solid #dbdbdb;
}
.sesocre_wrap_box.active .sesocre_wrap_box_all {
    border-bottom: 1px solid #f7d7df;
}
.sesocre_wrap_box.sesocre_box_three.active .sesocre_wrap_box_all {
    border-bottom: none;
}
.sesocre_box_one .sesocre_wrap_box_all_icn img {
    filter: invert(48%) sepia(15%) saturate(2174%) hue-rotate(167deg) brightness(64%) contrast(120%);
}
.sesocre_wrap_box.active .sesocre_wrap_box_all_icn img {
    /*-webkit-filter: opacity(1) drop-shadow(0 0 0 #e7315e);
    filter: opacity(1) drop-shadow(0 0 0 #e7315e);*/
    filter: invert(46%) sepia(78%) saturate(6880%) hue-rotate(329deg) brightness(95%) contrast(89%);
}
.prcng_emlphn_cnt {
    width: 80%;
    float: left;
    display: flex;
    gap: 10px;
    position: relative;
    padding-left: 50px;
    justify-content: space-between;
}
.prcng_emlphn_cnt_items {
    display: flex;
    gap: 12px;
    align-items: center;
    /*margin-bottom: 15px;*/
}
.prcng_emlphn_cnt_items_icn img {
	width: 100%;
	object-fit: cover;
}
.prcng_emlphn_cnt_items_txt h6 {
    font-size: 14px;
    line-height: 1;
    color: #0048ff;
    font-weight: 500;
    padding-bottom: 5px;
}
.prcng_emlphn_cnt_items_txt a {
	font-size: 16px;
	line-height: 1;
	color: #000000;
	font-weight: 500;
	transition: color .3s ease;
}
.prcng_emlphn_cnt_items_txt a:hover {
	color: #e7315e;
}
.prcng_gtintch_all {
	width: 100%;
    float: left;
}
.prcng_gtintch_all_info h6 {
	font-size: 17px;
	line-height: inherit;
	color: #0048ff;
	font-weight: 600;
}
.prcng_gtintch_all_info h5 {
	font-size: 28px;
	line-height: inherit;
	color: #010101;
	font-weight: 600;
	padding-bottom: 8px;
	text-transform: uppercase;
}
.prcng_gtintch_all_info p {
	font-size: 16px;
	line-height: inherit;
	color: #3e3e3e;
	font-weight: 400;
}
.prcng_gtintch_gtwss_wrap_fig {
    width: 85px;
    height: 85px;
    border-radius: 100%;
    position: relative;
}
.prcng_gtintch_gtwss_wrap_fig img {
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
    /*animation: pulse-red 3s infinite;*/
}
.gtwss_online {
    position: absolute;
    background: #8dc63f;
    border: 2px solid #fff;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    right: -6px;
    top: 10px;
}
.prcng_gtintch_gtwss_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding-top: 30px;
}
.prcng_gtintch_gtwss_dtls p {
    font-size: 15px;
    color: #6a3391;
    font-weight: 500;
    text-align: right;
}
.prcng_gtintch_gtwss_dtls h4 {
	font-size: 20px;
	letter-spacing: 0px;
	line-height: inherit;
	color: #010101;
	font-weight: 600;
	text-align: right;
}
.prcng_gtintch_gtwss_dtls ul {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: right;
	/*padding-top: 12px;*/
}
.prcng_gtintch_gtwss_dtls ul li {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	display: inline-block;
	position: relative;
	padding-left: 15px;
    margin-left: 15px;
}
.prcng_gtintch_gtwss_dtls ul li:not(:first-child):before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background: #ccc;
}
.prcng_gtintch_gtwss_dtls ul li:first-child {
	padding-left: 0px;
    margin-left: 0px;
}
.prcng_gtintch_gtwss_dtls ul li img {
	width: 16px;
}
.prcng_gtintch_gtwss_dtls ul li:hover img {
	animation: gtwss-vibrate 1.5s linear infinite;
}
@keyframes gtwss-vibrate {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}
.pricngpg_price_table_left {
    border-right: none;
}
.busdrcl_wrap_all.buisnes_drive_box {
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
}
.busdrcl_wrap_all.buisnes_class_box  {
	border-bottom: 1px solid #ccc;
	/*padding-bottom: 50px;*/
}
.sixsigma_box  {
	border-bottom: 1px solid #ccc;
	/*padding-bottom: 50px;*/
}
.pricngpg_price_table_sec {
    align-items: flex-start;
    align-content: flex-start;
}
.pricngpg_price_table_left {
    width: 30%;
}
.busdrcl_wrap_all_boxs {
    width: 100%;
    float: left;
}
.busdrcl_wrap_all_boxs_flex {
    width: 100%;
    display: flex;
    padding-bottom: 30px;
}
.prcng_cewwd_card_all {
    width: 100%;
    display: flex;
    align-items: center;
}
.whwedo_all {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 30px;
    padding-left: 30px;
}
.whwedo_all:before {
    content: '';
    position: absolute;
    left: 0%;
    top: 10%;
    width: 1px;
    height: 80%;
    background: #ccc;
}
.whwedo_all_left {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
}
.whwedo_all_left_titl h4 {
	font-size: 20px;
	letter-spacing: 0px;
	line-height: inherit;
	color: #010101;
	font-weight: 600;
	text-align: left;
	text-transform: uppercase;
}
.whwedo_all_left_descp p {
    font-size: 15px;
    line-height: inherit;
    color: #3e3e3e;
    font-weight: 400;
}
.whwedo_all_rght_one_hdng h5 {
	font-size: 16px;
	letter-spacing: 0px;
	line-height: inherit;
	color: #2f2f2f;
	font-weight: 500;
	text-align: left;
}
/*.whwedo_all_rght_two {
    width: 50px;
    height: 50px;
    border: 1px solid #84cb9e;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whwedo_all_rght_two img {
	width: 100%;
	object-fit: cover;
	padding: 12px;
	animation: pulseheart_anmsn 2s infinite ease-out;
}*/
.whwedo_all_rght {
    width: auto;
    display: grid;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    /*grid-template-columns: 8fr 1fr;*/
    grid-template-columns: 6fr 1fr;
}
.whwedo_all_rght_one {
    display: flex;
    /*width: auto;*/
    gap: 12px;
    width: 100%
}
.whwedo_all_left_descp {
    width: 100%;
}
.whwedo_all_left_titl {
    width: 70%;
}
.whwedo_all_rght_one_icons_item_fig {
    width: 32px;
    height: 32px;
    border-radius: 100%;
}
.whwedo_all_rght_one_icons_item_fig img {
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.whwedo_all_rght_one_icons {
    display: flex;
    align-items: center;
    gap: 5px;
}
.whwedo_all_rght_one_icons_item {
	transition: 1s ease;
}
.whwedo_all_rght_one_icons_item:nth-child(1) {
    transform: translateX(0px);
}
.whwedo_all_rght_one_icons_item:nth-child(2) {
    transform: translateX(-10px);
}
.whwedo_all_rght_one_icons_item:nth-child(3) {
    transform: translateX(-20px);
}
.whwedo_all_rght_one_icons:hover .whwedo_all_rght_one_icons_item:nth-child(2){
	transform: translateX(0px);
}
.whwedo_all_rght_one_icons:hover .whwedo_all_rght_one_icons_item:nth-child(3){
	transform: translateX(0px);
}
.sesocre_wrap_box {
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.pricngpg_badp_wrap {
    padding: 15px 0px;
}
.pricngpg_sec {
    padding: 0px 0 15px;
}
.pricngdlverpg_wrap_sbar_card {
    border-right: none;
}
.full-del {
    min-height: calc(100vh - 385px);
    /*min-height: calc(100vh - 400px);*/
}
.prdlvr_bdbcs_wrap_midle_all {
    /*height: calc(100vh - 415px);*/
    height: calc(100vh - 386px);
}
.prdlvr_brdr_new {
    width: 100%;
    float: left;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    /*margin-bottom: 20px;*/
    border-left: 1px solid #ccc;
    padding-left: 40px;
    margin-top: 50px;
}
.prdlvr_bdbcs_wrap_midle {
    padding-top: 0;
}
.pricngdlverpg_wrap_sbar {
    width: 24%;
    padding-right: 0;
}
.prdlvr_bdbcs_wrap_top {
    padding-left: 50px;
}
.pricngdlverpg_wrap_sbar_all .prcng_gtintch_all {
    padding-right: 40px;
}
.pricngdlverpg_wrap_sbar_all .prcng_gtintch_gtwss_wrap {
    gap: 10px;
    justify-content: space-between;
}

@keyframes pulseheart_anmsn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.65);
    filter: invert(30%) sepia(89%) saturate(2079%) hue-rotate(330deg) brightness(97%) contrast(92%);
  }
  100% {
    transform: scale(0);
    filter: invert(30%) sepia(89%) saturate(2079%) hue-rotate(330deg) brightness(97%) contrast(92%);
  }
}
.sixsi_title h3 {
	color: #0a68a0;
}
@keyframes pulse-red {
  0% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(75, 226, 1, 0.7);
  }
  
  70% {
    /*transform: scale(1);*/
    box-shadow: 0 0 0 10px rgba(75, 226, 1, 0);
  }
  
  100% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(75, 226, 1, 0);
  }
}
.pricngpg_curncy_box ul li.active_curncy a {
    /*transition: transform 250ms;*/
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}
.pricngpg_curncy_box ul li {
    /*transition: transform 250ms;*/
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}
.sesocre_wrap_box.active .sesocre_wrap_box_all_icn img {
    animation: gtwss-vibrate 8s linear infinite;
}
.pricngdlverpg_wrap_sbar_bestfor {
    /*padding-bottom: 20px;
    margin-bottom: 20px;*/
    /*padding-bottom: 25px;*/
    margin-bottom: 25px;
}
@keyframes blinker {  
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(38, 39, 209, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(38, 39, 209, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(38, 39, 209, 0);
  }
}
.chat_container {
  margin: auto;
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  height: 65px;
  width: 80px;
  animation: up-down 7.5s infinite ease-in-out;
}
.chat_container #chatbot {
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  width: 80px;
  height: 40px;
  border: 3px solid #2727d1;
  border-radius: 5rem;
  box-shadow: 0px 0px 5px 2px rgba(39,39,209,0.3);
}
.chat_container #chatbot-corner {
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 45px;
    left: -35px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #2727d1;
    transform: rotate(135deg);
}
.chat_container #antenna {
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  top: -70px;
  height: 20px;
  width: 10px;
  background-color: #2727d1;
  animation: antenna-appear 7.5s infinite ease-in-out;

}
.chat_container #antenna #beam {
  position: absolute;
  top: -12.5px;
  left: -5px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #2727d1;
  animation: beam-appear 7.5s infinite ease-in-out;
}
.chat_container #antenna #beam-pulsar {
  position: absolute;
  top: -12.5px;
  left: -5px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #2727d1;
  animation: beam-pulsar-appear 7.5s infinite ease-in-out;
}
.chat_container .dot {
  height: 8px;
  width: 8px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  left: -35px;
  background-color: #2727d1;
  border-radius: 50%;
  animation: pulse-outer 7.5s infinite ease-in-out;
}
.chat_container .dot:nth-child(2) {
  left: 0;
  animation: pulse-inner 7.5s infinite ease-in-out;
  animation-delay: 0.2s;
}
.chat_container .dot:nth-child(3) {
  left: 35px;
  animation: pulse-outer 7.5s infinite ease-in-out;
  animation-delay: 0.4s;
}
.chat_container .dot:before {
    display: none;
}
.chat_container .dot:after {
    display: none;
}
@keyframes pulse-inner {
  0% {
    transform: scale(1);
  }
  7.5% {
    transform: scale(1.5);
  }
  15% {
    transform: scale(1);
  }
  22.5% {
    transform: scale(1.5);
  }
  30% {
    transform: scale(1);
  }
  37.5% {
    transform: scale(1.5);
  }
  45% {
    top: 0;
    transform: scale(1);
    height: 8px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transform: rotate(-370deg);
  }
  50% {
    top: 22.5px;
    height: 6px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    transform: rotate(10deg);
  }
  55% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(10deg);
  }
  65% {
    transform: rotate(-10deg);
  }
  65% {
    transform: rotate(0deg);
  }
  85% {
    top: 22.5px;
    height: 6px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    transform: rotate(0deg);
  }
  92.5% {
    top: 22.5px;
    height: 6px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    height: 8px;
    border-radius: 50%;
    transform: rotate(-360deg);
  }
}
@keyframes pulse-outer {
  0% {
    transform: scale(1);
  }
  7.5% {
    transform: scale(1.5);
  }
  15% {
    transform: scale(1);
  }
  22.5% {
    transform: scale(1.5);
  }
  30% {
    transform: scale(1);
  }
  37.5% {
    transform: scale(1.5);
  }
  45% {
    transform: scale(1);
    height: 8px;
  }
  55% {
    tranform: scale(1);
    height: 5px;
  }
  60% {
    height: 8px;
  }
  75% {
    height: 8px;
  }
  80% {
    tranform: scale(1);
    height: 5px;
  }
  85% {
    height: 8px;
  }
  100% {
    height: 8px;
  }
}
@keyframes antenna-appear {
  0% {
    visibility: hidden;
    top: -70px;
    height: 0;
  }
  50% {
    visibility: hidden;
    top: -70px;
    height: 0;
  }
  55% {
    visibility: visible;
    top: -70px;
    height: 20px;
  }
  95% {
    visibility: visible;
    top: -70px;
    height: 20px;
  }
  100% {
    top: -70px;
    height: 0;
  }
}
@keyframes beam-appear {
  0% {
    visibility: hidden;
    top: -12.5px;
    height: 0;
  }
  50% {
    visibility: hidden;
    top: -12.5px;
    height: 0;
  }
  55% {
    visibility: visible;
    top: -12.5px;
    height: 20px;
    width: 20px;
  }
  100% {
    visibility: visible;
    top: -12.5px;
    height: 20px;
    width: 20px;
  }
}
@keyframes beam-pulsar-appear {
  0% {
    visibility: hidden;
    top: -12.5px;
    height: 0;
  }
  50% {
    visibility: hidden;
    top: -12.5px;
    height: 0;
  }
  55% {
    visibility: visible;
    top: -12.5px;
    left: -5px;
    height: 20px;
    width: 20px;
    opacity: 1;
  }
  65% {
    top: -25px;
    left: -15px;
    height: 40px;
    width: 40px;
    opacity: 0;
    visibility: visible;
  }
  74% {
    visibility: hidden;
    opacity: 0;
  }
  75% {
    visibility: visible;
    top: -12.5px;
    left: -5px;
    height: 20px;
    width: 20px;
    opacity: 1;
  }
  85% {
    top: -25px;
    left: -15px;
    height: 40px;
    width: 40px;
    opacity: 0;
    visibility: visible;
  }
  94% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes up-down {
  0% {
    transform: translate(0);
  }
  12.5% {
    transform: translate(0, 2%);
  }
  25% {
    transform: translate(0);
  }
  37.5% {
    transform: translate(0, 2%);
  }
  50% {
    transform: translate(0);
  }
  62.5% {
    transform: translate(0, 2%);
  }
  75% {
    transform: translate(0);
  }
  87.5% {
    transform: translate(0, 2%);
  }
  100% {
    transform: translate(0);
  }
}
.mzindex{
    z-index: 99999;
}  
.js-cont {
    position: relative;
    width: 100%;
    height: inherit;
}
.js-scroll {
  position: fixed;
  z-index: inherit;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  will-change: unset;
  backface-visibility: hidden;
  -webkit-filter: blur(0);
}
/*.why_sss_all_top_fig {
    -webkit-animation: bs-animation 4s infinite; 
    animation: bs-animation 4s infinite;
}  
@-webkit-keyframes bs-animation {
    50% {
        box-shadow: 8px 8px 16px #fafafa;
    }
}
@keyframes bs-animation {
    50% {
        box-shadow: 8px 8px 16px #fafafa;
    }
}*/
@keyframes pulse-red-mrkr {
  0% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(219, 65, 88, 0.7);
  }
  
  70% {
    /*transform: scale(1);*/
    box-shadow: 0 0 0 10px rgba(219, 65, 88, 0);
  }
  
  100% {
    /*transform: scale(0.95);*/
    box-shadow: 0 0 0 0 rgba(219, 65, 88, 0);
  }
}
@keyframes rotating_invers {
   0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}



.wave {
    animation: waveIn 1.2s infinite ease-out;
    transform-origin: 50% 50%;
    color: #fff;
}
.wave-sm {
    animation-delay: .3s;
}
@keyframes waveIn{
    0% {
        opacity: 0;
        transform: scale(.3) translate(-20px, 10px);
    }
    50% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
.icon-phone-active-3 {
    width: 40px;
    color: #fff;
    line-height: 20px;
    float: right;
    position: absolute;
    left: 15px;
    top: 6px;
    transform: rotate(-13deg);
}
.sales_executiv_sldr_all {
    position: relative;
    animation: pulse-red 3s infinite;
    border-radius: 100%;
    overflow: hidden;
}
.sales_executiv_sldr_all .owl-carousel {
    z-index: unset;
    width: 85px;
    height: 85px;
    border-radius: 100%;
}
.exec-eml-name ul {
    position: relative;
    margin: 0;
    padding: 0;
}
/*.exec-eml-name ul li {
    position: relative;
    margin: 0;
    padding: 0;
    right: 0;
    top: 0;
}*/
.exec-eml-pos {
    width: 100%;
    float: left;
}
.exec-social-cont {
    width: 100%;
    float: left;
}
.wyms-chat-exec-eml-pos  {
    width: 100%;
    float: left;
}
.wyms-chat-exec-social-cont {
    width: 100%;
    float: left;
}
.wyms-chat-exec-eml-name {
    padding-top: 4px;
    padding-bottom: 12px;
    position: relative;
    overflow: hidden;
    width: 238px;
    float: left;
}
.sales_executiv_blog {
    width: 100%;
    position: relative;
    float: left;
}
.exec-eml-name-blg {
    padding-top: 4px;
    padding-bottom: 12px;
    position: relative;
    overflow: hidden;
    width: 238px;
    float: left;
}
.sales_executiv_blog .sales_executiv_sldr_all {
    width: 90px;
    height: 90px;
}
.sales_executiv_blog .sales_executiv_sldr_all .owl-carousel {
    width: 100%;
    height: 100%;
}
.sales_executiv_blog .gtwss_online {
    right: 18px;
}
.git3-img .sales_executiv_sldr_all {
    width: 80px;
    height: 80px;
}
.git3-img .sales_executiv_sldr_all .owl-carousel {
    width: 100%;
    height: 100%;
}
.git3-img {
    position: relative;
}
.exec-eml-name-git3 {
    padding-top: 4px;
    padding-bottom: 12px;
    position: relative;
    overflow: hidden;
    width: 238px;
    float: right;
}
.git3-contact-part {
    width: 100%;
    float: left;
}
.git3 {
    padding-right: 20%;
    float: left;
    position: relative;
}
.prcng_gtintch_gtwss_sldr {
    padding-top: 4px;
    padding-bottom: 0px;
    position: relative;
    overflow: hidden;
    width: 238px;
    float: left;
}
.sales_executiv_prce {
    position: relative;
    float: left;
}
.prcng_gtintch_gtwss_wrap .prcng_gtintch_gtwss_sldr {
    float: right;
}
.inr_baner_cta {
    width: 100%;
    position: relative;
    float: none;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    padding-top: 15px;
}
.inr_baner_cta_titl h5{
    font-size: 20px;
    line-height: inherit;
    color: #d82533;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    cursor: pointer;
}
.inr_baner_cta_btn{
    width: 100%;
    position: relative;
    float: left;
    border-left: 1px solid #c2c2c2;
    padding-left: 20px;
    margin-left: 20px;
}
.inr_baner_cta_btn_link{
    width: fit-content;
    font-size: 17px;
    line-height: inherit;
    color: #2627d1;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 25px;
    align-items: center;
    align-content: center;
    text-decoration: none;
}
.inr_baner_cta_btn_link h6{
    font-size: 16px;
    line-height: 22px;
    color: #2627d1;
    font-weight: 600;
    /*font-family: 'Roboto', sans-serif;*/
    font-family: 'Poppins', sans-serif;
}
.inr_baner_cta_btn_link_arrowicon{
    background: #2627d1;
    border-radius: 55%;
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    float: left;
    margin-left: 2em;
    line-height: 50px;
    align-items: center;
}
.inr_baner_cta_btn_link_arrowicon img{
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: auto;
    left: -1.7em;
    animation: arow-slide-lrr 1s ease-in-out infinite;
}
@keyframes arow-slide-lrr{
    0%, 100% {
    transform: translate(0, 0);
}
50% {
    transform: translate(15px, 0);
}
}
.what-we-do-slider-container .active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.what-we-do-slider-container .active.carousel-item-left {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.what-we-do-slider-container .carousel-item-next:not(.carousel-item-left), 
.what-we-do-slider-container .carousel-item-prev:not(.carousel-item-right){
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.arow_anmsn_btn {
    width: fit-content;
    font-size: 17px;
    line-height: inherit;
    color: #2627d1;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 25px;
    align-items: center;
    align-content: center;
    text-decoration: none;
}
.arow_anmsn_btn h6 {
    font-size: 16px;
    line-height: inherit;
    color: #2627d1;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    /*padding-right: 23%;*/
}
.arow_anmsn_btn .arow_anmsn_btn_icon {
    background: #2627d1;
    border-radius: 55%;
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    float: left;
    margin-left: 2em;
    line-height: 50px;
    align-items: center;
}
.arow_anmsn_btn .arow_anmsn_btn_icon img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: auto;
    left: -1.7em;
    animation: arow-slide-lrr 1s ease-in-out infinite;
}
.whtsap_cal_box {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    float: left;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 4fr;
}
.whtsap_cal_box_icns {
    width: 80px;
    height: 80px;
    position: relative;
    box-shadow: 8px 0px 6px -10px rgb(0 0 0 / 90%);
    background: #fff;
    z-index: 999;
}
.whtsap_cal_box_icns_whtsp {
    position: absolute;
    top: -6px;
    right: 0px;
    transform: scale(0.5);
    width: 54px;
}
.whtsap_cal_box_icns_whtsp img {
    width: 100%;
}
.whtsap_cal_box_icns_phn {
    position: absolute;
    bottom: 10px;
    left: 20px;
    transform: scale(0.9);
    width: 36px;
}
.whtsap_cal_box_icns_phn img {
    width: 100%;
}
.whtsap_cal_box_txts {
    width: 100%;
    float: left;
    position: relative;
}
.whtsap_cal_box_txts h5 {
    font-size: 20px;
    color: #2c2d2d;
    font-weight: 500;
    font-family: "Poppins";
    padding-bottom: 15px;
}
.whtsap_cal_box_txts h3 {
    font-size: 32px;
    color: #ef3b58;
    font-weight: 600;
    font-family: "Poppins";
}
.whtsap_cal_box_txts h3 a {
    color: #d82533;
    text-decoration: none;
}
.whtsap_cal_box_txts h3 a:hover {
    color: #23527c;
}
.ftr_get_in_toch_sec {
    width: 100%;
    /* float: left; */
    position: relative;
    /*padding-top: 60px;*/
    padding-bottom: 20px;
}
.ftr_get_in_toch_card {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 40px;    
}
.ftr_get_in_toch_wrap {
    width: 100%;
    float: left;
    position: relative;
    border-top: 1px solid #ccc;
    padding-top: 30px;
}
.ftr_get_in_toch_gtwss {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
}
.ftr_get_in_toch_gtwss_lfig {
    width: 26%;
    float: left;
}
.ftr_get_in_toch_gtwss_lfig img {
    width: 100%;
    object-fit: cover;
}
.ftr_get_in_toch_gtwss_txts {
    width: 74%;
    float: left;
    padding-left: 70px;
}
.ftr_get_in_toch_gtwss_txts h6 {
    font-size: 18px;
    line-height: inherit;
    color: #000000;
    font-weight: 600;
    font-family: "Poppins";
}
.ftr_get_in_toch_gtwss_txts h3 {
    font-size: 30px;
    line-height: inherit;
    color: #000000;
    font-weight: 600;
    font-family: "Poppins";
    padding: 5px 0 10px;
    text-transform: uppercase;
}
.ftr_get_in_toch_gtwss_txts p {
    font-size: 16px;
    line-height: inherit;
    color: #3e3e3e;
    font-weight: 400;
    font-family: "Poppins";
}
.ftr_get_in_toch_cesewc {
    width: 100%;
    float: left;
    position: relative;
    /*padding-left: 60px;*/
    padding-left: 50px;
}
.ftr_get_in_toch_cesewc_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cesewc_card_left_box {
    display: flex;
    gap: 14px;
    align-items: center;
}
.cesewc_card_left_box_phn {
    margin-bottom: 25px;
}
.cesewc_card_left_box_icn {
    width: 40px;
    height: 40px;
}
.cesewc_card_left_box_icn img {
    width: 100%;
    object-fit: cover;
}
.cesewc_card_left_box_txts h4 {
    font-size: 15px;
    line-height: 30px;
    color: #0048ff;
    font-weight: 500;
    font-family: "Poppins";
    line-height: 1;
    padding-bottom: 10px;
}
.cesewc_card_left_box_txts h5 {
    font-size: 17px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
    font-family: "Poppins";
    line-height: 1;
}
.cesewc_card_left_box_txts h5 a {
    color: #000000;
    text-decoration: none;
    transition: color .3s ease;
}
.cesewc_card_left_box_txts h5 a:hover {
    color: #e7315e;
}
.cesewc_card_rght_all {
    width: 100%;
    float: left;
    position: relative;
    /*padding-left: 50px;*/
    padding-left: 50px;
}
.cesewc_card_rght_all_flx {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
}
.cesewc_card_rght_tmbsey {
    width: 100%;
    float: left;
    position: relative;
    /*padding-right: 25px;*/
    padding-right: 45px;
    padding-bottom: 15px;
}
.cesewc_card_rght_tmbsey:before {
    content: '';
    position: absolute;
    right: 0;
    background-color: #cfcfcf;
    width: 1px;
    height: 100%;
    top: 0;
    display: none;
}
.cesewc_card_rght_tmbsey_hfhy {
    justify-content: end;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cesewc_card_rght_tmbsey_hfhy_icn img {
    animation: gtwss-vibrate 1.5s linear infinite;
}
.cesewc_card_rght_tmbsey_hfhy_txts p {
    font-size: 17px;
    line-height: 30px;
    color: #3e3e3e;
    font-weight: 400;
    font-family: "Poppins";
}
.cesewc_card_rght_tmbsey_slsexe {
    display: flex;
    padding-top: 16px;
    gap: 24px;
    justify-content: right;
    align-items: center;
}
.cesewc_card_rght_tmbsey_slsexe_sldr_fig {
    position: relative;
}
.cesewc_card_rght_tmbsey_slsexe .wyms-chat-emp-online {
    width: 19px;
    display: block;
    height: 19px;
    border-radius: 50%;
    background-color: #8cc63e;
    position: absolute;
    top: 0;
    border: 3px solid #fff;
    right: 0;
}
.cesewc_card_rght_tmbsey_slsexe_pos {
    width: 100%;
    float: left;
}
.cesewc_card_rght_tmbsey_slsexe_pos h6 {
    font-size: 15px;
    color: #6a3391;
    font-weight: 400;
    font-family: "Poppins";
    text-align: right;
}
.cesewc_card_rght_tmbsey_slsexe_name {
    padding-top: 5px;
    padding-bottom: 15px;
    position: relative;
    overflow: hidden;
    width: 238px;
    float: left;
}
.cesewc_card_rght_tmbsey_slsexe_name h3 {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 23px;
    color: #010101;
    font-weight: 600;
    font-family: "Poppins";
    text-align: right;
}
.cesewc_card_rght_tmbsey_slsexe_name .owl-carousel .owl-nav.disabled {
    display: none;
}
.cesewc_card_rght_tmbsey_slsexe_socl {
    width: 100%;
    float: left;
}
.cesewc_card_rght_tmbsey_slsexe_socl_all {
    display: flex;
    justify-content: flex-end;
}
.get-con-vdo{
    margin-left: -2px;
}
.slsexe_socl_icn {
    width: 16px;
    position: relative;
    margin-right: 25px;
}
.slsexe_socl_icn:before {
    content: '';
    position: absolute;
    background-color: #3c3a3a30;
    right: 0;
    width: 1px;
    height: 100%;
    top: 0px;
    margin-right: -12px;
}
.slsexe_socl_icn a img {
    width: 100%;
    object-fit: cover;
}
.slsexe_socl_icn:last-child {
    margin-right: 0;
}
.slsexe_socl_icn:last-child:before {
    display: none;
}
.slsexe_socl_icn:hover img {
    animation: gtwss-vibrate 1.5s linear infinite;
}
.cesewc_card_rght_chouex {
    width: 100%;
    float: left;
    position: relative;
    /*padding-left: 25px;*/
    border-radius: 10px;
    border: 2px dotted #19ce37;
    padding: 20px 20px;
}
.cesewc_card_rght_chouex_ctrtx {
    display: flex;
}
.cesewc_card_rght_chouex_ctrtx_txt {
    padding-right: 28%;
    padding-left: 10px;
}
.cesewc_card_rght_chouex_ctrtx_txt p {
    font-size: 16px;
    line-height: 16px;
    color: #2f2f2f;
    font-weight: 500;
    font-family: "Poppins";
}
.cesewc_card_rght_chouex_ctrtx_figrs {
    gap: 5px;
    display: flex;
    align-items: center;
}
.ctrtx_figrs_img {
    width: 40px;
    height: 40px;
    transition: 1s ease;
}
.ctrtx_figrs_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ctrtx_figrs_one {
    transform: translateX(0px);
}
.ctrtx_figrs_two {
    transform: translateX(-15px);
}
.ctrtx_figrs_three {
    transform: translateX(-30px);
}
.cesewc_card_rght_chouex_ctrtx_figrs:hover .ctrtx_figrs_img {
    transform: translateX(0px);
}
.cesewc_card_rght_chouex_whtwd {
    padding-top: 15px;
}
.cesewc_card_rght_chouex_whtwd_flx {
    display: flex;
    /*align-items: center;*/
}
.cesewc_card_rght_chouex_wpcve {
    /*padding-right: 20%;*/
    padding-right: 10%;
}
.cesewc_card_rght_chouex_wpcve h4 {
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    font-weight: 600;
    font-family: "Poppins";
    padding: 3px 0 8px;
    text-transform: uppercase;
}
.cesewc_card_rght_chouex_wpcve p {
    font-size: 15px;
    line-height: inherit;
    color: #3e3e3e;
    font-weight: 400;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
pointer-events: none;
opacity: 0.2;
}



/* ---------------------------  What We Provide Section New Changes Home  --------------------------------- */

.wwp_sapc_sec {
    width: 100%;
    float: left;
    position: relative;
}
.wwp_btn {
    padding-left: 50px;
}
.weprovide-content-para{
    width: 50%;
}
.we-provide-btn{
    width: 50%;
    padding-left: 70px;
}
.weprovide-content-para {
    padding-right: 27px;
}
.weprovide-content-para:after {
    top: 10px;
    right: -35px;
    height: 88%;
}
.we-provide-btn .why_sss_all_btn{
    gap: 18px;
    outline: none;
}
.weprovide-content-contain{
    padding-top: 25px;
}
.about-us-heading-provide{
    padding-bottom: 43px;
}
.prvti-btn{
    display: none;
}
.about-us-paragraph p{
    padding-right: 11%;
}
.about-us-page{
    position: relative;
}
.about-us-page::after{
    content: '';
    position: absolute;
    width: 30%;
    height: 30%;
    right: 0;
    top: 0;
    background: url(./assets/img/what-we-circle-orange.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}
.what-we-provide-carousel-container{
    display: flex;
    padding-top: 50px;
    width: 82%;
    justify-content: space-between;
    gap: 82px;
}
.what-we-provide-carousel-col1{
    width: 50%;
    padding-top: 10px;
}

.wh-ul-list ol{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 43px;
}
.wh-ul-list ol li{
    list-style: none;
}
.wh-ul-list ol li span{
    font-size: 17px;
    line-height: 24px;
    color: #1d1f20;
    font-weight: 600;
    font-family: "Poppins";
    padding: 8px 13px;
    border: 2px dotted #ffab0b;
    border-radius: 25px;
}
.wh-ul-list ol li.active span{
    background-color: #ffa800;
    color: #fff;
}
.explore-article h4{
    font-size: 18px;
    line-height: 30px;
    color: #2727d1;
    font-weight: 500;
    font-family: "Poppins";
    padding-left: 50px;
    padding-right: 38%;
    position: relative;
}
.explore-article h4::before{
    content: '';
    position: absolute;
    width: 34px;
    height: 2px;
    background-color: #000;
    left: 0;
    top: 13px;
}
.what-we-provide-carousel-col2{
   width: 50%;
}
.wt-slide-img-div{
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.wt-slide-img-div img{
    object-fit: contain;
    width: 100%;
    filter: brightness(0) invert(1);
}
.wt-slide-single-card{
border-radius: 20px;
background-image: linear-gradient(157deg, #074b41 0%, #074b41 1%, #095645 33%, #0d6f4d 98%, #0d6f4d 100%);
padding: 20px 30px;
padding-bottom: 15px;
width: 100%;
float: left;
position: relative;
/*box-shadow: 5px 5px 10px #ccc;*/    
background: linear-gradient(150deg, #0d6f4d, #002619 80%);
}
.wt-slide-title h3{
    font-size: 25px;
    line-height: 32px;
    color: #ffa800;
    font-weight: 600;
    font-family: "Poppins";
    padding-top: 10px;
    padding-bottom: 15px;
    min-height: 90px;
    /*padding-right: 18%;*/
    padding-right: 10%;
}
.wt-slide-title p{
    font-size: 17px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    padding-right: 9%;
}
.explore-article{
    margin-bottom: 30px;
}
.wt-slide-img-div-box{
    display: flex;
    margin-top: 30px;
    padding-top: 30px;
    justify-content: space-between;
    position: relative;
    transition: all 0.5s ease;
}
.wt-slide-img-div-box::before{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
background-color: #ffa800;
transition: all 0.5s ease;
}
.wt-slide-img-div-wrap p{
    opacity: 0;
    font-size: 14px;
    line-height: 37px;
    color: #fffefe;
    font-weight: 300;
    font-family: "Poppins";
    transition: all 0.5s ease;
}
.wt-slide-img-div-wrap.active p{
    opacity: 1;
    transition: all 0.5s ease;
} 
.wt-slide-img-div-wrap.active .wt-slide-img-div{
    border: 1px solid #fff;
    transition: all 0.5s ease;
}
.about-us-page-change .abt-hm-col.about-page-images-contain {
    padding-top: 25px;
}
.wt-slide-img-div-wrap-third .wt-slide-img-div-one {
    padding: 8px;
}
.wt-slider-card-box {
    width: 100%;
    position: relative;
    float: left;
    overflow: hidden;
}
.what-we-provide-carousel-col2{
    position: relative;
    float: left;
}
.wt-slider-card-box .tab-content {
    position: relative;
    text-align: unset;
    color: unset;
    font-weight: unset;
    font-size: unset;
    opacity: 1;
    transition: 0.5s ease-in-out;
    left: unset;
    top: unset;
}
.what-we-do-car-indi{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    left: 0;
    text-align: left;
    gap: 40px;
    top: 0;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}
.what-we-do-car-indi.carousel-indicators .active{
    width: 100%;
    height: auto;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}
.wh-item span{
    font-size: 17px;
    line-height: 24px;
    color: #1d1f20;
    font-weight: 600;
    font-family: "Poppins";
    padding: 8px 15px;
    border: 2px dotted #ffab0b;
    border-radius: 25px;
    cursor: pointer;
}
.what-we-do-car-indi.carousel-indicators .active span{
    background-color: #ffa800;
    color: #fff;
    transition: all 0.5s ease;
} 
.vert .carousel-item-next.carousel-item-left,
.vert .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.vert .carousel-item-next,
.vert .active.carousel-item-right {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100% 0);
  opacity: .5;
}

.vert .carousel-item-prev,
.vert .active.carousel-item-left {
  -webkit-transform: translate3d(0,-100%, 0);
  transform: translate3d(0,-100%, 0);
  opacity: .5;
}
.wt-sl-wrap{
    position: relative;
    margin-top: 0;
}
.wwp_sapc_sec .carousel-item {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: flipInY;
    animation-delay: 0.1s;
    border-radius: 20px;
}
.wwp_sapc_sec .carousel-inner {
    border-radius: 20px;
}


@keyframes scale-display {
    0% {
        opacity: 0;
        transform: scale(0);
    -webkit-transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    -webkit-transform: scale(1);
    }
}

@keyframes scale-display--reversed {
    0% {
        display: inline-flex;
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    99% {
        display: inline-flex;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    100% {
        display: none;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }
} 

@keyframes fadeFromBottom  {
        0%{
            opacity:0;
            -webkit-transform: translateY(100%);
            -moz-transform: translateY(100%);
            -ms-transform: translateY(100%);
            -o-transform: translateY(100%);
            transform: translateY(100%);
        }
        100%{
            opacity: 1;
            -webkit-transform: translateY(0px);
            -moz-transform: translateY(0px);
            -ms-transform: translateY(0px);
            -o-transform: translateY(0px);
            transform: translateY(0px);
            display: block;
        }
    }
@keyframes fadeFromtop  {
    0%{
        opacity:1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100%{
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(400%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.semi_crcl_wraper {
    position: relative;
    width: 100%;
}
@keyframes sonarOrnge {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(252, 113, 44, 0.1), 0 0 10px 10px #fc712c, 0 0 0 10px rgba(252, 113, 44, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(252, 113, 44, 0.1), 0 0 10px 10px #fc712c, 0 0 0 10px rgba(252, 113, 44, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarDred {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(216, 37, 51, 0.1), 0 0 10px 10px #d82533, 0 0 0 10px rgba(216, 37, 51, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(216, 37, 51, 0.1), 0 0 10px 10px #d82533, 0 0 0 10px rgba(216, 37, 51, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarBlue {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(40, 120, 219, 0.1), 0 0 10px 10px #2878db, 0 0 0 10px rgba(40, 120, 219, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(40, 120, 219, 0.1), 0 0 10px 10px #2878db, 0 0 0 10px rgba(40, 120, 219, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarGreen {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(35, 159, 70, 0.1), 0 0 10px 10px #239f46, 0 0 0 10px rgba(35, 159, 70, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(35, 159, 70, 0.1), 0 0 10px 10px #239f46, 0 0 0 10px rgba(35, 159, 70, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
.hypnotiz_crcls {
    position: absolute;
    right: 12%;
    bottom: 25%;
}
.hypnotiz_crcl {
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border: 1px solid #d8deff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position:absolute;
    margin-left: 40%;
    top:40%;
}
.hypnotiz_crcl_one {
  animation: circlesHypno 2s infinite linear forwards reverse;
}
.hypnotiz_crcl_two {
  animation: circlesHypno 2s infinite linear forwards reverse;
  animation-delay: 0.3s;

}
.hypnotiz_crcl_three {
  animation: circlesHypno 2s infinite linear forwards reverse;
  animation-delay: 0.6s;

}
.hypnotiz_crcl_four {
  animation: circlesHypno 2s infinite linear forwards reverse;
  animation-delay: 0.9s;

}
.hypnotiz_crcl_five {
  animation: circlesHypno 2s infinite linear forwards reverse;
  animation-delay: 1.2s;

}
@keyframes circlesHypno {
    from {
        transform: scale(0.1);
        opacity: 0;
    }
    to {
        transform: scale(2.5);
    }
}
.sound-multi-box-col1:hover .sd-setting-img{
    animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.sound-icon-contain-work-img{
overflow: hidden;
}
.sound-multi-box-col2:hover .sd-profile-img{
    animation: toTopFromBottom 0.5s forwards;
}
@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
.sound-multi-box-col3:hover .sd-mic-img{
    animation: toRightFromLeft 0.5s forwards;
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
.aproch_cro_left:before {
    animation: irisAnim 10s ease-in-out infinite 0.5s;
}
@keyframes irisAnim {

    20% {
        transform: translateX(30px);
    }
    
    60% {
        transform: translateX(-30px);
    }
}
.aproch_cro_rght:before {
    animation: pupilAnim 10s ease-in-out infinite 0.5s;
}
@keyframes pupilAnim {

    20% {
        transform: translateX(40px);
    }
    
    60% {
        transform: translateX(-40px);
    }
}
.circle-my-tab-cnty {
    background-size: 200% 50%;
    animation: gradient 5s ease infinite alternate;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
        background-image: linear-gradient(90deg, #aaeb9c54 50%, #e8efe66e 50%);
    }
    50% {
        background-position: 100% 50%;
        background-image: linear-gradient(90deg, #e8efe66e 50%, #aaeb9c54 50%);
    }
    100% {
        background-position: 0% 50%;
        background-image: linear-gradient(90deg, #e8efe66e 50%, #aaeb9c54 50%);
    }
}

.fp-watermark {
    display: none !important;
}
.flex-slide-wrap{
    position: relative;
}
.flex-slide{
    position: absolute;
    width: 100%;
    height: 100%;
}
.digi{
    transform: none;
    background-attachment: unset;
    left: 16%;
    bottom: -10%;
}
.smm{
    transform: none;
    background-attachment: unset;
    top: -10%;
    left: 0;
}
.cont-mark{
    transform: none; 
    background-attachment: unset;
    top: 8%;
    left: 0;
}
.email-mark{
    transform: none; 
    background-attachment: unset;
    bottom: -20%;
    right: 16%;
}
.flex-slide-wrap-digi.grow-hover:hover .digi{
    transform: none;
    left: 0%;
    bottom: 0%;
}
.flex-slide-wrap-smm.grow-hover:hover .smm{
    transform: none;
    top: 0%;
    left: 0;
}
.flex-slide-wrap-cont-mark.grow-hover:hover .cont-mark{
    transform: none;
    top: 0%;
    left: 0;
}
.flex-slide-wrap-email-mark.grow-hover:hover .email-mark{ 
    transform: none;
    bottom: 0%;
    right: 0%;
}

.digi.mover{
    animation: mover 2s infinite  alternate;
}
.smm.mover{
    animation: mover 2s .5s infinite  alternate;
}
.cont-mark.mover{
    animation: mover 2s 1s infinite  alternate;
}
.email-mark.mover{
    animation: mover 2s 1.5s infinite  alternate;
}

@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.down-arrow-link-box {
    width: fit-content;
    margin: 0 auto;
}
.down-arrow-box {
    position: relative;
    width: 35px;
    float: none;
    border: 1px solid #ccc;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    bottom: 10px;
}
/*.down-arrow {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0;
  height: 20px;
  border: 1px solid #2627d1;
  border-radius: 2px;
  animation: jumpInfinite 1.5s infinite;
  margin: 0 auto;
  right: 0;
}
.down-arrow:after {
    content: " ";
    position: absolute;
    top: 8px;
    left: -6.5px;
    width: 12px;
    height: 12px;
    border-bottom: 3px solid #2627d1;
    border-right: 3px solid #2627d1;
    border-radius: 3px;
    transform: rotateZ(45deg);
}*/

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}
/*#fullpage {
  height: 100vh;
  overflow: hidden;
}

#fullpage section {
  height: 100vh;
}*/
.scrol_footer {
    position: fixed !important;
    z-index: 99999;
    bottom: 0;
    left: 0;
}
.ftr_get_in_toch_gtwss_lfig{
    /*animation: rotate_lp 5s infinite  alternate;*/
}
@keyframes rotate_lp  {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(33deg); }
}
.price_cross_btn {
    float: left;
    padding-left: 15px;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: 0.2s ease-in-out;
}
.price_cross_btn_icn {
    background: linear-gradient(0deg, #2178ad, #29a0e8);
    color: #fff;
    animation: myprdlvr 0.5s linear forwards;
    width: 28px;
    height: 28px;
    padding: 8px;
    border-radius: 100%;
    overflow: hidden;
    float: left;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price_cross_btn_icn img {
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
}
.price_cross_btn_blok {
    opacity: 1;
    visibility: visible;
    display: block;
}
.hide_bm .per_mnth_year_dshow {
    /*display: block !important;*/
    display: flex;
}
.fg-emoji-container {
    z-index: 99999 !important;
}
.down-arrow:before, .down-arrow:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-bottom: 3px solid #2727d1;
  border-right: 3px solid #2727d1;
}
.down-arrow:before {
  animation: down-arrow-before 0.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.down-arrow:after {
  animation: down-arrow-after 0.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes down-arrow-before {
  50% {
    transform: rotate(45deg) translate(70%, 70%);
  }
  100% {
    transform: rotate(45deg) translate(70%, 70%);
  }
}
@keyframes down-arrow-after {
  50% {
    transform: rotate(45deg) translate(110%, 110%);
    opacity: 0;
  }
  51% {
    transform: rotate(45deg) translate(-130%, -130%);
  }
  100% {
    transform: rotate(45deg) translate(-70%, -70%);
    opacity: 1;
  }
}





/*===================================  New Pricing New Css =============================*/
.pricngpg_sec {
    padding: 0px 0 50px;
}
.prcng_emlphn_cnt {
    padding-left: 30px;
}
.pricngdlverpg_sec {
    padding-bottom: 55px;
}
.prcng_gtintch_all .exec-social-cont {
    padding-top: 3px;
}
.prcng_gtintch_all_info h6 {
    text-transform: capitalize;
    padding-bottom: 5px;
}
/*.prdlvr_bdbcs_wrap {
    padding-bottom: 20px;
}*/
.prdlvr_bdbcs_wrap_top {
    padding-left: 42px;
}
.pricngdlverpg_wrap_sbar_sembox {
    padding: 8px 15px;
}
.busdrcl_wrap_card_midl_lists ul li {
    padding: 10px 0;
}
.busdrcl_wrap_all.buisnes_drive_box {
    padding-left: 40px;
    padding-bottom: 30px;
}
.pricngpg_price_table_left {
    padding-right: 40px;
}
.sesocre_wrap_box {
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.sesocre_wrap_box_inr {
    padding: 18px 20px;
}
.busdrcl_wrap_all_boxs_flex {
    padding-bottom: 50px;
}





.social_side_flotng {
    position: fixed;
    bottom: 50px;
    z-index: 99;
    display: flex;
    /*mix-blend-mode: exclusion;*/
    /*background-blend-mode: exclusion;*/
    color: #000;
    align-items: center;
    right: 10px;
    justify-content: center;
    flex-direction: column;
}
.social_side_flotng .fab.fa-instagram {
    font-weight: 800;
}
.social_side_socil {
    text-align: center;
    font-size: 15px;
    flex-direction: column-reverse;
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
}
.social_side_socil li a {
    position: relative;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #000;
}
.social_side_socil li a i {
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.social_side_socil li a span {
    position: absolute;
    top: 50%;
    right: 50%;
    color: var(--heading-color);
    font-size: 13px;
    opacity: 0;
    transform-origin: center bottom;
    cursor: pointer;
    transform: translateX(0px) translateY(-50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.social_side_socil li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.2);
}
.social_side_socil li a:after, .social_side_socil li a:hover i, .social_side_socil li a span {
    transition: all 0.3s cubic-bezier(0.55,0.02,0.1,0.9);
}
.social_side_socil li a:hover:after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: all 0.5s cubic-bezier(0.75,-0.5,0,1.75);
    transition-delay: 0.2s;
}
.social_side_flotng .icon {
    text-align: center;
    width: 30px;
    line-height: 30px;
    cursor: pointer;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}
.social_side_flotng .icon:before {
    content: "";
    position: relative;
    display: inline-block;
    border-left: 1px solid #000;
    height: 50px;
    margin-bottom: 10px;
}
.social_side_socil li a:hover span {
    opacity: 1;
    transform: translateX(-10px) translateY(-50%);
}
.social_side_socil li a:hover i {
    transform: scale(0);
}

#logo-ydevs {
  max-width: 300px;
  margin: 0 auto;
  height: auto;
}
#ydevs-y {
  fill: #262626;
  transition: all 0.7s;
}
#ydevs-d {
  fill: #262626;
  transition: all 0.4s;
}
#ydevs-e {
  fill: #262626;
  transition: all 0.4s;
}
#ydevs-v {
  fill: #262626;
  transition: all 0.5s;
}
#ydevs-s {
  fill: #262626;
  transition: all 0.6s;
}
#ydevs-point {
  fill: #FF5F3D;
  transition: all 0.7s;
}
.scroll #ydevs-d, .scroll #ydevs-e, .scroll #ydevs-v, .scroll #ydevs-s {
  fill: transparent;
  transform: translateX(50px);
}
.scroll #ydevs-y {
  transform: translateX(40%);
}
.scroll #ydevs-point {
  transform: translateX(-40%);
}

#cursor{
  opacity:0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,156,125,0.1);
  border-radius: 50px;
  z-index: 1000000;
  margin: -17px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .07s linear all;
  transition: .07s linear all;
  pointer-events: none;
  box-sizing: border-box;
  background: rgba(255,156,125,0.25);
}
#cursor.zoom {
  -webkit-transform: scale(2);
  transform: scale(2);
}
#pointer{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 8px;
    height: 8px;
    margin: -0px;
    background: #ff9c7d;
    border-radius: 50px;
    z-index: 1000000;
    pointer-events: none;
}

@keyframes cursorClick{
  from,to{
    border: 1px solid rgba(255,156,125, 0.4);
    transform: scale(1);
  }
  60%{
    border: 1px solid rgba(255,156,125, 0);
    transform: scale(2);
  }
  70%{
    border: 1px solid rgba(255,156,125, 0);
    transform: scale(1.4);
  }
}

.down-arrow-link-box {
    display: none;
}
.down-arrow-box {
    display: none;
}
@media screen and (max-width: 480px) {
    .cb-cursor {
        display: none;
    }
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}
.cb-cursor a {
    cursor: default;
}
.cb-cursor button {
    cursor: default;
}
.cb-cursor a:hover {
    cursor: default;
}
.cb-cursor button:hover {
    cursor: default;
}
.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    transition: opacity 0.3s, color 0.4s;
}
/*.cb-cursor:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -24px;*/
/*    left: -24px;*/
/*    display: block;*/
/*    width: 48px;*/
/*    height: 48px;*/
/*    transform: scale(0);*/
/*    background: currentColor;*/
/*    border-radius: 50%;*/
/*    transition: transform 0.3s ease-in-out, opacity 0.1s;*/
/*    backdrop-filter: blur(1px) saturate(1);*/
/*    border: 0px solid #000;*/
/*}*/
/*.cb-cursor-text {*/
/*    position: absolute;*/
/*    top: -18px;*/
/*    left: -18px;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transform: scale(0) rotate(10deg);*/
/*    opacity: 0;*/
/*    color: #fff;*/
/*    font-size: 14px;*/
/*    line-height: 20px;*/
/*    text-align: center;*/
/*    letter-spacing: -0.01em;*/
/*    transition: opacity 0.4s, transform 0.3s;*/
/*}*/
@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion, .cb-cursor.-opaque {
        mix-blend-mode: exclusion;
    }
}
@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion:before, .cb-cursor.-opaque:before {
        background: #fff;
    }
}
.cb-cursor.-normal, .cb-cursor.-text {
    mix-blend-mode: normal;
}
.cb-cursor.-normal:before, .cb-cursor.-text:before {
    background: var(--BackgroundColorСircleHoverText);
}
.cb-cursor.-inverse {
    color: white;
}
.cb-cursor.-visible:before {
    transform: scale(0.18);
}
.cb-cursor.-visible.-active:before {
    transform: scale(0.8);
    transition-duration: 0.2s;
}
.cb-cursor.-pointer:before {
    transform: scale(0.23);
}
.cb-cursor.-text:before {
    opacity: 1;
    transform: scale(2);
}
.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
    transform: scale(1);
}
.cb-cursor.-text.-active:before {
    transform: scale(2);
    transition-duration: 0.2s;
}
.cb-cursor.-opaque:before {
    transform: scale(var(--СircleOpaque));
}
.cb-cursor.-opaque.-active:before {
    transform: scale(var(--СircleOpaqueActive));
}
.cb-cursor.-lg:before {
    color: var(--BackgroundColorСircleHover);
    transform: scale(var(--СircleScale));
}
.cb-cursor.-lg.-active:before {
    transform: scale(var(--СircleScaleLarge));
    transition-duration: 0.2s;
}
.cb-cursor.-img:before {
    content: " ";
    background-size: cover;
    background-position: center;
    background-image: var(--ImgHover);
    transform: scale(var(--СircleScale));
}
.cb-cursor.-hidden:before {
    transform: scale(0);
}
.main-logo-sec {
    width: 120px;
}
header.main-header {
    padding-top: 15px;
    padding-bottom: 15px;
}
.compr_pp_fixed {
 position: fixed !important;
}
.compare_pp_main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
}
.compare_pp_col_two {
    width: 100%;
}
.compare_brdr_botm_clr {
    height: 55px;
}
.compare_brdr_botm_ht {
    height: 165px;
}
.compare_brdr_botm_thin {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare_pp_col_three {
    width: 100%;
}
.compare_pp_col_four {
    width: 100%;
}

/* =================== New footer Get in touch design Starts ======================== */

.newFtrContainer{
    padding:0 40px;
    width:100%;
    float: left;
}
.newFtrContentArea{
    width:100%;
    float: left;
    border-top:1px solid #ccc;
    padding-top:20px;
}
.newFtrSection{
    font-family: 'Poppins', sans-serif;
}
.ftrLeftContent{
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.getinTouTitle{
    width: 320px;
    padding-top: 22px;
}
.getinTouTitle h2{
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    font-weight: 600;
    position: relative;
    top: -1px;
}
.getinTouTitle h2 span{
    display: block;
}
.getinTouTitle h3{
    font-size: 18px;
    line-height: 26px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
}
.contInfoPara{
    padding-right: 15%;
}
.contInfoPara p{
    font-size: 16px;
    line-height: 26px;
    color: #3e3e3e;
    font-weight: 400;
}
.mailBoxFtr h3{
    font-size: 15px;
    line-height: 25px;
    color: #0048ff;
    font-weight: 500;
}
.mailBoxFtr h2{
    font-size: 17px;
    line-height: 27px;
    color: #000000;
    font-weight: 500;
}
.chatOurEbox figure{
    width:88px;
    height: 88px;
    border-radius: 100%;
    overflow: hidden;
}
.chatOurEbox .chatActveBox{
    position:relative;
    width:88px;
    height: 88px;
    opacity: 1 !important;
}
.chatOurEbox .chatActveBox .actPers{
    left:auto;
    right:0;
    
}
body.home_pg .chatActveBox{
opacity:0 !important;
}

.titleHelpYou{
    display: flex;
    align-items: center;
}
.chatOurEbox figcaption{
    padding-left:25px;
}
.chatOurEbox h3{
    color:#0048ff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    width:100%;
    float: left;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 3px;
}
.chatOurEbox h3:after{
    width:20px;
    height: 3px;
    position:absolute;
    content: "";
    bottom:0;
    left:0;
    background:#9fde45;
}
.chatOurEbox p{
    color:#000000;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    width: 100%;
    float: left;
}
.titleHelpYou h3{
    color:#000000;
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    padding-left:20px;
}
.chatOurEbox{
    display: flex;
    align-items: center;
    padding-right: 60px; 
    position: relative;
}
.chatOurEbox:after{
    border-right: 1px solid #ccc;
    height:80px;
    width:1px;
    position:absolute;
    right:0;
    top:50%;
    transform: translate(0,-50%);
    content: "";
}
.chatYourExFtr{
    display: flex;  
}
.saleExecuBox{
    display: flex;   
    padding-left: 60px; 
    align-items: center; 
}
.saleExecuBox figcaption{
    padding-right: 80px;
}
.saleExecuBox h3{
    color:#6a3391;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    position: relative;
    top: -5px;
}
.saleExecuBox h2{
    color:#000;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
}
.saleExecuBox figure{
    width:88px;
    height: 88px;
    border-radius: 100% 100% 100% 0;
    overflow: hidden;
}
.saleExecuBox figure img{
width:100%;
height: 100%;
object-fit: contain;
}
.saleExecuBox .thumbNailBox{
    position:relative;
    width:95px;
}
.actPers{
    width:18px;
    height: 18px;
    border-radius: 100px;
    background:#8dc63f;
    border:2px solid #fff;
    position: absolute;
    left:-7px;
    top:11px;
}
.contLinksListftr{
    display: flex;
    margin-top:15px;
    margin-left: -16px;
}
.contLinksListftr li img{
    width:16px;
    height: 16px;
    object-fit: contain;
}
.contLinksListftr a{
    padding:0px 16px;
    display: block;
}
.contLinksListftr li{
    position:relative;
}
.contLinksListftr li:after{
    width:1px;
    height: 100%;
    position: absolute;
    right:0;
    top:0;
    content: "";
    background:#ccc;
}
.contLinksListftr li:last-child:after{
    display: none;
}
.getInTouchArea{
    display: flex;

    justify-content: space-between;
}
.mailBoxFtr img{   
    height: 40px;
    object-fit: contain;
}
.conMailTelBoxArea{
    display: flex;
}
.infoFtrList{
    display: flex;
    justify-content: space-between;
}
.ftrcontRtRow1{
    display: flex;
    align-items: center;
   padding-bottom: 5px;
}
.mailBoxFtr{
    display: flex; 
    align-items: center;
}
.mailBoxFtr figcaption{
    padding-left:15px;
}
.latTopImg img{
    width:95px;
    height: 95px;
    object-fit: contain;
}
.chatOurEbox p span {
    display: block;
}
.chatOurEbox {
    max-width: 370px;
}
.pp_chat_window_desktop_5 {
    right: 92.5% !important;
    bottom: 80px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 0 5px #7a7a7a !important;
    background: transparent !important;
    width: 88px !important;
    height: 88px !important;
}
.pp_chat_window_desktop_5 img{
    height: 90px !important;
    width: 90px !important;
}
#proprofs_online_status {
    margin-top: -75px !important;
    margin-left: 75px !important;
    background: #1ded26 !important;
}
.chatOurEbox figure img {
    width:100%;
    height: 100%;
    object-fit: contain;
}
/* =================== New footer Get in touch design Ends ======================== */

/* =================== cALL TO ACTION popup css ======================== */

.caltoActionPopup.active{
    opacity: 1;
    visibility: visible;
    display: block;
    animation:shad 0.5s linear forwards;
}
.clOseBtn {
    width:30px;
    height:30px;   
    position:absolute;
    border-radius: 100px;
    right: -18px;
    top: -12px;
    cursor: pointer;
    padding:9px;
    background:#ff6174;
}
.clOseBtn img{
    width:100%;
}
.caltoActionPopup{    
    position:absolute;
    bottom:40px; 
    right:0;
    z-index: 9999;      
    transition: all 0.5s ease;
   opacity: 0;
    display:none;
    visibility: hidden;
     animation:backx 0.5s linear forwards;    
}
.cloSePop{
    width:30px;
    height: 30px;
    position:absolute;
    right:0;
    top:0;
}
.cloSePop img{
    width: 100%;
}
.caltoActionPopup .lblForm{
    width:100%;
    float: left;
    font-size: 14px;
    line-height: 18px;
    color:#5f5f5f;
    font-weight: 400;;
}
.caltoActionPopup .filedDesign{
width:100%;
float: left;
height:40px;
width:100%;
border:1px solid #e1e1e1;
border-radius: 5px;
padding:0px 10px;
color:#5f5f5f;
}
.caltoActionPopup textarea::placeholder,
.caltoActionPopup input::placeholder{
color:#5f5f5f;
opacity: 1;
        font-weight: 400;
        font-family: "Poppins";
}

.caltoActionPopup select{
    color:#5f5f5f;
}

.caltoActionPopup textarea.filedDesign{
    padding:10px;
    height:60px;
}
.caltoActionPopup .filedDesign:focus{
    border:1px solid #d82533;
    outline:none;
    box-shadow: 0px 0px 5px 1px rgba(216,37,51,0.35);
}

@keyframes backx{
0% {
    bottom:40px; 
    opacity: 1;
    visibility: visible;
    display: block;
}

100% {
    bottom:50px;
    opacity: 0;
    visibility: hidden;
    display: none;
 }
}

.popCalAction::before{
    width:100%;
    height: 100%;
    position:absolute;
    top:-10px;
    content: "";
    z-index: -1;  
   
}



@keyframes shad{
0% {
    bottom:10px; 
    opacity: 0;
    visibility: hidden;
}

100% {
    bottom:40px;
    opacity: 1;
    visibility: visible;
 }
}


.caltoLinkText:after{
    position: absolute;
    right: 11px;
    bottom: -10px;
    content: "";
    background: url(../../assets/img/actionArrow.png) no-repeat;
    width: 20px;
    height: 19px;
    background-size: contain;
    z-index: 9;
    transform: rotate(-123deg);
    animation:arrowAnxi 0.5s linear forwards;
    transition:all 0.5s ease;
 

}

@keyframes arrowAni{
0% {
    bottom:-30px; 
    opacity: 0;
    visibility: hidden;
}

100% {
    bottom:-10px;
    opacity: 1;
    visibility: visible;
 }
}




.caltoLinkText{   
    background: #f7fafe;
    border-radius: 5px;
    padding:20px;
    transition: all 0.5s ease;
    width:300px;
    float: left;
       box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.3);
}
.caltoLinkText img{ 
width:15px;
}
.caltoLinkText:hover{ 
    background: #fafbff;
}
.caltoLinkText ul{
display:flex;
flex-direction: column;
}
.caltoLinkText ul li{
    margin-bottom: 10px;
  
}
.caltoLinkText ul li:last-child{
margin-bottom: 0;
}
.caltoLinkText ul li a{
    display:flex;
    gap:10px;
    padding:5px;
    color:#111;
    text-decoration: none;
    transition: all 0.5s ease;
}
.caltoLinkText:hover ul li a{
color:#2627d1;
}
.orboxDws{
    width:100%;
    float:left;
  
}
.orSeparator{
    font-size:14px;
    color:#919191;
    line-height: 18px;
    position:relative; 
    z-index: 1;
    text-align: center;
    margin:10px 0 5px;
  
}
.alterLink{ 
    font-size:14px;
    line-height: 24px;
    text-align: center;
}
.orSeparator span{
    background:#f7fafe; 
    padding:0 7px; 
    display: inline-block;
    opacity: 0;
}
.orSeparator:after{
    width:100%;
    height:1px;
    position:absolute;
    left:0;
    top:50%;
    transform: translate(0,-50%);
    content:"";
    background:#e1e1e1;
    z-index: -1;;
}

.btnSubmit{
    width:100%;
    float: left;
    height:40px;
    border-radius: 5px;
    color:#fff;
    background:#d82533;
    outline: none;
    border:none;
    transition: all 0.5s ease;
}
.btnSubmit:hover{
background:#000;
}
.alterLink a:hover{
    color:#d82533;
}
/* =================== cALL TO ACTION popup css end ======================== */



/* =================== New Modal Call TO ACTION popup New css start ======================== */

.cta_modal_pp .modal-dialog {
    width: 600px;
    max-width: 600px;
    border: none;
}

.cta_modal_pp .modal-header {
    padding: 0;
    border-bottom: none;
}

.cta_modal_pp .modal-header .close {
    padding: 0;
    margin: 0;
    position: absolute;
    right: -15px;
    top: -8px;
    background: #d82533;
    opacity: 1;
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 24px;
    border-radius: 100%;
    z-index: 1;
}
.cta_modal_pp .modal-header .close:hover {
    opacity: 1;
}
.cta_modal_pp .modal-content {
    border-radius: 20px;
}

.cta_modal_pp .modal-body {
    position: relative;
    padding: 0;
}

.cta_pp_card_all {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    align-items: center;
    /*height: 570px;*/
    height: auto;
    padding: 20px;
}

.ctc_left {
    background: transparent;
    border-radius: 20px 0px 0px 20px;
    height: 100%;
    align-items: center;
    display: inline-flex;
}

.cta_pp_card_rght {
    width: 100%;
    float: left;
    padding-right: 0px;
}

.ctc_pic {
    width: 405px;
    margin-left: -60px;
    position: relative;
}

.ctc_pic img {
    width: 100%;
    object-fit: cover;
}

.ctc_left:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 85%;
    background: #e7d9fc;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
}

.ctc-head {
    padding-bottom: 22px;
}

.ctc-head h4 {
    font-size: 30px;
    font-family: 'Poppins';
    line-height: inherit;
    font-weight: 700;
    padding-bottom: 10px;
    text-align: center;
}

.ctc-head p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
}

.ctc_altrntv_card {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    margin-top: 15px;
}

.cta_pp_frm_fields_icn {
    width: 15px;
    position: absolute;
    left: 18px;
    top: 10px;
}

.cta_pp_frm_fields_icn img {
    width: 100%;
}

.ctc_att_txt {
    width: 80%;
    float: left;
}

.ctc_att_txt p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    font-family: "Poppins";
}

.ctc_att_pic {
    width: 20%;
    float: left;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.gml-pp {
    width: 24px;
    position: relative;
}

.gml-pp img {
    width: 100%;
    object-fit: cover;
}

.gml-pp::after {
    content: '';
    position: absolute;
    right: -11px;
    width: 1px;
    height: 25px;
    background: #ccc;
}

.tlphone-pp {
    width: 24px;
}

.tlphone-pp img {
    width: 100%;
    object-fit: cover;
}

.cta_pp_frm_row {
    width: 100%;
    float: left;
    position: relative;
}

.cta_pp_frm_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    width: 100%;
    float: left;
}

.cta_pp_frm_input {
    width: 100%;
    height: 45px;
    background: #edf1f2;
    border-radius: 100px;
    border: 1px solid #edf1f2;
    float: left;
    position: relative;
    color: #666;
    font-size: 14px;
    text-align: left;
    padding: 0 0 0 40px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px 0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.cta_pp_frm_input:hover {
    border: 1px solid #ccc;
}

.cta_pp_frm_input:focus {
    border: 1px solid #ccc;
    outline: 1px solid #ccc;
}

.cta_pp_frm_select {
    width: 100%;
    height: 45px;
    background: #edf1f2;
    border-radius: 100px;
    border: 1px solid #edf1f2;
    float: left;
    position: relative;
    color: #666;
    font-size: 14px;
    text-align: left;
    padding: 0 0 0 15px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px 0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #edf1f2;
    -webkit-appearance: none;
    background-position-x: 95%;
    background-size: 14px;
}

.cta_pp_frm_select:hover {
    border: 1px solid #ccc;
}

.cta_pp_frm_select:focus {
    border: 1px solid #ccc;
    outline: 1px solid #ccc;
}

.cta_pp_frm_txtarea {
    width: 100%;
    height: 80px;
    background: #edf1f2;
    border-radius: 24px;
    border: 1px solid #edf1f2;
    float: left;
    position: relative;
    color: #666;
    font-size: 14px;
    text-align: left;
    padding: 12px 0 0 40px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px 0;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.cta_pp_frm_txtarea:hover {
    border: 1px solid #ccc;
}

.cta_pp_frm_txtarea:focus {
    border: 1px solid #ccc;
    outline: 1px solid #ccc;
}

.cta_pp_frm_btn_row {
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
}

.cta_pp_frm_btn {
    width: 100%;
    border-radius: 100px;
    border: none;
    float: none;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    background: #d82533;
    color: #fff;
    outline: none;
    padding: 12px 0px;
    margin: 10px 0;
    border-radius: 100px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.cta_pp_frm_btn:hover {
    background: #8cc540;
    color: #fff;
}

.cta_pp_frm_btn_icn {
    width: 20px;
    margin-left: 5px;
    display: inline-block;
    position: relative;
    top: -3px;
}

.cta_pp_frm_btn_icn img {
    width: 100%;
    object-fit: cover;
}


/* =================== New Modal Call TO ACTION popup new css end ======================== */





.busdrcl_wrap_card_top_three {
    justify-content: space-between;
}
.pricngpg_sec_card {
    padding-top: 20px;
}
.pricngpg_baner_sec_card-all {
    padding-bottom: 12px;
    align-items: center;
    align-content: center;
}
.prcng_pp_clck_icn {
    width: 26px;
    cursor: pointer;
}
.prcng_pp_clck_icn img {
    width: 100%;
}
.prcng_pp_clck_icn_vdo {
    width: 100%;
    position: relative;
    clip-path: inset(0px 0px);
}
.price_modal_pp.show {
    display: inherit !important;
    opacity: 1 !important;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    padding-right: 0px !important;
}
.price_modal_pp .modal-header .close {
    margin-top: 0;
    opacity: 1 !important;
    width: 35px;
    height: 35px;
    color: #ccc;
    background: #000;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0;
    position: absolute;
    right: 0;
    top: -12px;
    z-index: 1;
}
.price_modal_pp .modal-header .close:hover {
    color: #fff;
    background: #d82533;
}
.price_modal_pp .modal-header .close .fa-xmark {
    margin-top: -4px;
}
.price_modal_pp .modal-content {
    -webkit-box-shadow: 0 2px 5px #d82533;
    box-shadow: 0 2px 5px #d82533;
    border: 1px solid #d82533;
    border-radius: 0;
}
.price_modal_pp .modal-body {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.price_modal_pp .modal-header {
    padding: 0;
    border-bottom: none;
}
.prcng_pkg_etxt_pp {
    display: grid;
    grid-template-columns: 2fr 12fr;
    width: 100%;
    padding: 0 25px 25px 25px;
}
.prcng_pkg_etxt_pp_rght {
    width: 100%;
    float: left;
    padding-top: 25px;
}
.prcng_pkg_etxt_pp_rght_head {
    width: 100%;
    float: left;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
    margin-bottom: 25px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.prcng_pkg_etxt_pp_rght_head h3 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.prcng_pkg_etxt_pp_rght_head small {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    text-align: right;
    float: right;
    line-height: 1;
    padding-right: 5px;
}
.prcng_pkg_etxt_pp_rght_card {
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.prcng_pkg_etxt_pp_list {
    width: 100%;
    float: left;
    position: relative;
}
.prcng_pkg_etxt_pp_list.etxt_pp_list_lft {
    padding-right: 0px;
    margin-right: 80px;
}
.prcng_pkg_etxt_pp_list.etxt_pp_list_lft:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #ccc;
}
.prcng_pkg_etxt_pp_list ul {
    width: 100%;
    float: left;
    position: relative;
}
.prcng_pkg_etxt_pp_list ul li {
    position: relative;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 400;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
}
.prcng_pkg_etxt_pp_list ul li .fa-check {
    color: #6fbd00;
    margin-right: 5px;
}
.vrtcl_hdng_bg {
    width: fit-content;
    position: absolute;
    background: #d82533;
    transform: rotate(-90deg);
    padding: 10px 30px 10px 20px;
    border-radius: 30px;
    float: left;
    left: -28px;
    top: 14px;
}
.vrtcl_hdng_bg h5 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
}
.vrtcl_hdng {
    width: fit-content;
    position: absolute;
    transform: rotate(-90deg);
    padding: 0px 0px 0px 30px;
    float: left;
    left: -50px;
    bottom: 0;
}
.vrtcl_hdng h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    color: #000;
    letter-spacing: 1px;
    font-weight: 900;
    opacity: 0.075;
}
.prcng_pkg_etxt_pp_lft {
    width: 100%;
    position: relative;
}




/*---------------  Pricing Deliver Css----------------------------*/
.prdlvr_bdbcs_wrap_top_box {
    width: 30%;
}
.pricngdlverpg_wrap_sbar {
    width: 21.3%;
    padding-top: 1px;
}
.prdlvr_bdbcs_wrap_botom {
    border-top: 1px solid #ccc;
    height: auto;
}
.prdlvr_bdbcs_wrap_botom_price h2 sup {
    top: -5px;
}
.prdlvr_bdbcs_wrap_top_box_price small {
    color: #000;
}
.prdlvr_brdr_new {
    border-bottom: none;
    padding-bottom: 0px;
}
.prdlvr_bdbcs_wrap {
    padding-bottom: 0px;
}
.pricngdlverpg_sec {
    padding-bottom: 5px;
    padding-top: 120px;
}
.pricngdlverpg_wrap_sbar_sembox {
    margin-bottom: 10px;
}
.pricngdlverpg_wrap_sbar_topfetrs {
    margin-bottom: 20px;
}
.pricngdlverpg_wrap_sbar_bestfor {
    padding-bottom: 22px;
    margin-bottom: 20px;
}
.prdlvr_bdbcs_wrap_top_box_titl h3 {
    padding-right: 0;
    text-align: center;
}
.prdlvr_bdbcs_wrap_top_box {
    width: 220px;
    text-align: center;
}
.prdlvr_bdbcs_wrap_top_box_titl {
    width: 100%;
    float: left;
}
.prdlvr_bdbcs_wrap_botom_btn button {
    border: 1px solid #ed3865;
    box-shadow: 0px 5px 4px rgb(237 56 101 / 14%);
    background: linear-gradient(0deg, #f4607f, #e93561);
    transition: all 1s ease;
    width: 220px;
    text-align: center;
    padding: 6px 20px;
    font-size: 32px;
    height: auto;
}
.prdlvr_bdbcs_wrap_botom_price h2 {
    font-size: 46px;
    color: #000;
}
.prdlvr_bdbcs_wrap_botom_rght {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 60px;
    width: 520px;
    justify-content: flex-end;
}
.prdlvr_bdbcs_wrap_top_all_left {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 50px;
}
.pricngdlverpg_wrap_sbar_bestfor ul li:after {
    display: none;
}
.pricngdlverpg_wrap_sbar_bestfor ul li {
    margin: 0px 2px 5px 0;
    padding: 5px 12px;
    text-align: center;
    display: inline-flex;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    color: #003a5c;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    background: #e8f5fc;
}
.pricngdlverpg_wrap_sbar_bestfor ul li:last-child {
    padding-right: 12px;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li:after {
    display: none;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li {
    margin: 0px 2px 5px 0;
    padding: 5px 12px;
    text-align: center;
    display: inline-flex;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 500;
    color: #003a5c;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    background: #e8f5fc;
}
.pricngdlverpg_wrap_sbar_topfetrs ul li:last-child {
    padding-right: 12px;
}
.tflbsm_icn_lists ul li {
    background: none;
    margin: 0px;
    text-align: left;
    display: flex;
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
}
.tflbsm_icn_lists ul {
    position: relative;
}
.tflbsm_icn_lists ul li:last-child {
    padding-right: 0px;
}
.tflbsm_icn_lists {
    height: auto;
}
.prcng_gtintch_all_info {
    width: 100%;
    float: left;
    padding-bottom: 36px;
}
.prcng_gtintch_all_info p {
    margin-top: 0;
    font-weight: 500;
    color: #000;
}
.pricngpg_sec_card {
    padding-top: 40px;
}
.busdrcl_wrap_card_top_three_tab ul li a {
    font-size: 17px;
    line-height: 1;
}
.buisnes_class_box .busdrcl_wrap_card_top_three_tab ul li.active_butabcl a {
    animation: none;
}
.sixsigma_box .busdrcl_wrap_card_top_three_tab ul li.active_sixs a {
    animation: none;
}
.busdrcl_wrap_card_top_three_tab ul li.active_butab a {
    animation: none;
}
.pricngpg_badp_baplan_tab ul li.active_badp a {
    animation: none;
}

.ftr_email {
    display: none;
    padding-left: 5px;
}
.ftr_email a {
    width: 100% !important;
}
.footer_new_cntinfo ul li i {
    cursor: pointer;
    color: #fff;
}
.ftr_ph_number a {
    width: 120px;
    display: block;
}
.ftr_ph_number {
    display: none;
    padding-left: 5px;
}
.footer_new_cntinfo ul {
    display: flex;
    align-items: center;
}
.footer_new_cntinfo ul li {
    display: flex;
    align-items: center;
}
.footer_new_quick_links {
    width: 60%;
}
.footer_new_copyright p {
    text-align: left;
    /*padding-left: 8%;*/
}
.chatOurEbox p {
    height: 38px;
    line-height: 20px;
}







.pricngdlverpg_wrap_sbar_bestfor {
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.pricngdlverpg_wrap_sbar_topfetrs {
    margin-bottom: 25px;
}
.pricngdlverpg_wrap_sbar_all .prcng_gtintch_all {
    padding-top: 5px;
}
.prdlvr_brdr_new {
    margin-top: 50px;
}
.pricngdlverpg_wrap_sbar_sembox {
    margin-bottom: 20px;
}
.tflbsm_icn_lists ul li {
    padding: 12px 0 !important;
}
.busdrcl_wrap_card_top_price h2 {
    letter-spacing: -2px;
}
.hqro_icn_phn {
    cursor: pointer;
}
.hqro_icn_envlp {
    cursor: pointer;
}
.hqro_email {
    display: none;
    padding-right: 10px;
}
.hqro_ph_number {
    display: none;
    padding-right: 10px;
    /*width: 180px;*/
    /*float: right;*/
}
.hqro_ph_number a, .hqro_email a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 1s ease;
}
.hqro_ph_number:hover a, .hqro_email:hover a {
    color: #d82533;
}
.hqro_ph_number a {
    width: 150px;
    float: right;
    text-align: right;
}


.bdbcs_wrap_midle_box {
    border-left: none !important;
}
.bdbcs_wrap_midle_box_txts .bdbcs_wrap_midle_box_cols:first-child:after {
    display: none;
}
.bdbcs_wrap_midle_box_txts {
    gap: 20px;
}
.bdbcs_wrap_midle_box {
    padding: 12px 0px;
}
.bdbcs_wrap_midle_box_cols li {
    border-style: solid;
    border-left-color: #e7315e;
    border-width: 0px 0px 0px 3px;
    padding: 0px 5px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.bdbcs_wrap_midle_box.sky_colr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #b0e8e7;
}
.bdbcs_wrap_midle_box.violet_colr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #b523a9;
}
.bdbcs_wrap_midle_box.green_colr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #3da225;
}
.bdbcs_wrap_midle_box.orange_colr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #f39b1d;
}
.bdbcs_wrap_midle_box.blue_colr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #3844b5;
}
.exec-eml-name-new-web {
    width: 235px;
}
.saleExecuBox figcaption {
    padding-right: 0;
}
.exec-emp-img{
    width: 85px;
    height: 85px;
}
.exec-emp-img img{
    width: 100%;
}
.sales_executiv_sldr_all {
    animation: none;
}
.actPers {
    z-index: 1;
}
.hqro_email {
    padding-right: 10px !important;
}
.bdbcs_wrap_midle_box_titl h4 {
    margin-bottom: 12px;
}
.bdbcs_wrap_midle_box_titl h4:before {
    display: none;
}
.prdlvr_bdbcs_wrap_midle_all {
    gap: 40px;
}
.bdbcs_wrap_midle_box_txts {
    gap: 40px;
}



.prcng_gtintch_all_info {
    padding-bottom: 15px;
}
.prdlvr_bdbcs_wrap_botom {
    padding-top: 15px;
}
.full-del {
    min-height: calc(100vh - 380px);
}
.prdlvr_bdbcs_wrap_midle_all {
    height: calc(100vh - 400px);
}
.pricngdlverpg_wrap_sbar_topfetrs {
    margin-bottom: 0;
    border-bottom: none;
}

.tflbsm_icn_lists ul li span {
    width: 80px;
    text-align: right;
}
.compare_pp_wrap_scrol {
    overflow-y: scroll;
    /*min-height: 700px;*/
    /*max-height: 700px;*/
    min-height: 92vh;
    max-height: 92vh;
}
.row_height {
    height: 85px;
}





/*-------------------------  New Price Page SD Popup Css  ------------------------------*/
.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    text-align: center;
  }
  .blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
  }
  .blocker.behind {
    background-color: transparent;
  }
.paform.modal {
    display:block;
}
.popCenterDiv{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    float: left;
}
.paform .close-modal{
    display: none !important;
}
.paform {
	display: none;
	width: 100%;	
	float:left;
}
.plansOuterArea{
    width:100%;
   float:left;
   display: flex;
   padding:0 3%;
}
.subscFeatureOuter{
    width:100%;
    float: left;
    /* min-height: 500px; */
    background:#fff;
    border:1px solid #ed3865;
    box-shadow:0 2px 10px rgba(237, 56, 101, 0.5);
    margin-top:35px;
    position: relative;
}
.closeBtnPop a{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #ff6174;
    color: #fff;
    font-size: 26px;
    text-align: center;
    font-weight: 300 !important;
    line-height: 30px;
    position: absolute;
    right: -25px;
    top: -25px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.closeBtnPop a{
    display:flex;
}
.closeBtnPop a img{
    width:12px;
}
.popUpmainArea{
    width:100%;
    float: left;
    display: flex;
}
.leftPopupBar{
    width:115px;
    position: relative;
    z-index: 1;
}
.rightPopArea{
    width:calc(100% - 115px);
}
.featuredRowArea{
    width:100%;
    float: left; 
    padding-bottom:25px;
    /* border-bottom: 1px dashed #a9a9a9; */
    min-height: 285px;
    position:relative;
}
.featuredRowArea:after{
    background: url(../../assets/img/line.png) repeat-x;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
}
.priceTottlArea{
    width:100%;
    float: left;  
    padding-bottom: 18px;
}
.featuredListOption{
    width:100%;
    float: left;
}
.featuredListOption ul{
    width:100%;
    float: left;
}
.featuredListOption ul li{
    width:25%;
    float: left;
    position: relative;
    padding-left:30px;
    padding-right: 20px;
    margin-bottom: 12px;
}

.featuredListOption ul li:after{
    background:url("../../assets/img/checkBoxGreen.png") no-repeat;
    width:15px;
    height:15px;
    content:"";
    position:absolute;
    left:0;
    top:0;
    background-size: contain;
}
.featuredListOption ul li p{
    font-size: 16px;
    line-height: 18px;
    color:#272324;
    text-align: left;
}
.pupuLarPlanArea{
    width:100%;
    float: left;   
    flex-direction: column;
    gap: 30px;
    display: flex;  
    padding-right: 45px;
}
.priceTottlArea{
    width:100%;
    float: left; 
}
.subPricePopBtnArea{
    padding-left:20px;
    position:relative;   
}
.subPricePopBtnArea:after{
    width:1px;
    height:65px;
    left:0;
    top:-13px;
    content: "";
    background:#d7d7d7;
    position:absolute;
}
.priceAmountDol{
    padding-right: 40px;
}
.priceAmountDol h2{
    color:#e72e5c;
}
.priceAmountDol .duRationMont{
    display: block;
    font-size: 13px;
    text-align: right;
    letter-spacing: 1px;
    position: relative;
    right: -21px;
}
.priceAmountDol sup{
    font-size: 30px;
}
.amountTotDol{
    display: flex;
    align-items: flex-start;
    gap:7px;
}
.dolArSymb{
    position:relative;
    top:5px;
}
.thRee{
    font-weight: 700;
    font-size: 48px;
}
.subBtnBox{
    background:#e72e5c;
    color:#fff;
    outline: none;
    border:none;
    font-size: 30px;
    font-weight: 500;
    padding:10px 30px;    
    transition: all 0.5s ease;
    text-decoration: none;
}
.subBtnBox:hover{
    background:#d01b48;
    box-shadow:0 2px 10px rgba(231, 46, 92, .5);
    color:#fff;
}
.subBtnBox:focus{
    text-decoration: none;
    color:#fff;
}
.priceBtnSubscribe{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.rowPopular1{  
    /* border-bottom: 1px dashed #a9a9a9; */
    width:100%;
    float: left;
    padding:36px 0 36px;
    flex-direction: column;
    gap: 25px;
    display: flex;
    position:relative;
}
.rowPopular1:after{ 
    background:url("../../assets/img/line.png") repeat-x;
    width:100%;
    height:5px;
    position:absolute;
    left:0;
    bottom:0;
    content: "";
}
.btnPopular a{
    display:inline-block;
    background: linear-gradient(to bottom, rgba(50,134,182,1) 0%, rgba(11,103,160,1) 100%);
    color:#fff;
    font-size: 16px;
    line-height: 22px;
    padding:5px 25px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow:0 2px 10px rgba(11, 104, 160, 0.5);
}
.barSocialArea{
    padding-left:12px;
}
.sociMediaPriArea{
    display: flex;
    align-items: center;
}
.barSocialArea .barSociBox{
    width:202px;
    height:8px;
    background:#dcdcdc;
    position:relative;
    display: flex;
    justify-content: center;
}
.barSocialArea .barSociBox span{
    height:100%;
    display: flex;
}
.barSocialArea .barSociBox span.redCol{
    background:#e5dddd;
    width:50%;
    position:relative;
}
.barSocialArea .barSociBox span.redCol:after{
    background:#e93762;
    position:absolute;
    right:0;
    height:100%;
    top:0;
    z-index: 1;
    content: "";
}
.barSocialArea .barSociBox span.blUeCol{
    background:#cfc9c9;
    width:50%;
    position:relative;
}
.barSocialArea .barSociBox span.blUeCol:after{
    background:#0a68a0;
    position:absolute;   
    height:100%;
    top:0;
    z-index: 1;
    content: "";
    left:0
}
.starTer .barSocialArea .barSociBox span.blUeCol:after{
    width: 6.25%;
}
.starTer .barSocialArea .barSociBox span.redCol:after{
    width: 20%;
}
.stanDard .barSocialArea .barSociBox span.redCol:after{
    width: 40%;
}
.stanDard .barSocialArea .barSociBox span.blUeCol:after{
    width: 12.5%;
}
.preMium .barSocialArea .barSociBox span.redCol:after{
    width: 80%;
}
.preMium .barSocialArea .barSociBox span.blUeCol:after{
    width: 50%;
}

.bussIness .barSocialArea .barSociBox span.redCol:after{
    width: 60%;
}
.bussIness .barSocialArea .barSociBox span.blUeCol:after{
    width: 25%;
}
.ultImate .barSocialArea .barSociBox span.redCol:after{
    width: 100%;
}
.ultImate .barSocialArea .barSociBox span.blUeCol:after{
    width: 100%;
}
.barSocialArea .barSociBox span.gray{
    background:#cfc9c9;
    width:50%;
}
.barSocialArea .barSociBox.noBar{
    justify-content: flex-end;
}
.keyWords p span{
    color:#0a68a0;
}
.keyWords figure img{
    width:16px;
}
.bestForAreaRow1{
    width:100%;
    float:left;
    display: flex;   
}
.bestColfor1{
    display: flex;
    width:29%;
    position: relative;
}
.bestColfor1:after{
    width:1px;
    height:27px;
    content: "";
    position:absolute;
    right:0;
    top:50%;
    transform: translate(0,-50%);
    background:#d6d6d6;
}
.ppBtnCol{
    width:71%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.iconListPrice{
    display: flex; 
    gap:20px;
    padding-left:18px;
    width:71%;
}
.iconListPrice li{
    font-size: 17px;
}
.bestForAreaRow2{
    width:100%;
    float:left;
    display: flex;  
    align-items: center;
}
.keyWords{
    display: flex;
    gap:12px;
    /*align-items: center;*/
}
.sociProgesArea{
    display: flex;
    font-size: 15px;
    color:#272324;
    padding-right: 15px;
    position: relative;
    width:29%;
}
.sociProgesArea:after{
    width: 1px;
    height: 27px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background: #d6d6d6;
}
.sociMediaPriArea p{
    font-size: 17px;
    color:#272324;
}
.sociMediaPriArea p span{
    color:#0b68a0;
}
.outerLinkPop img{
    width:12px;
}
.starDardBox{
    width: 174px;
    position: absolute;
    background: #ed3865;
    transform: rotate(-90deg);
    padding: 8px 15px 8px 20px;
    border-radius: 30px 0px 0px 30px;
    float: left;
    left:-34px;
    top:58px;
    z-index: 2;
}
.stanDard .bestColfor1{
    width:30%;
}
.stanDard .sociProgesArea{
    width:30%;
}
.stanDard .starDardBox{  
    background:#0a68a0;
    width: 177px;
}
.stanDard .starDardBox:before {
    background: url(../../assets/img/leftCornerStnd.png) no-repeat;

}
.stanDard .starDardBox:after {
    background: url(../../assets/img/rtCornerStand.png) no-repeat;

}
.ultImate  .starDardBox:after {
    background: url(../../assets/img/rtCornerStand.png) no-repeat;

}
.ultImate  .starDardBox:before {
    background: url(../../assets/img/leftCornerStnd.png) no-repeat;
}
.ultImate .starDardBox{
    background: #0a68a0;  
}
.ultImate .colBestArea li{
    font-size: 16px;
}
.ultImate .verTiclaText{  
    top: 309px;
    left: -127px;
}

.ultImate .iconListPrice{
    gap:15px;
}
.bussIness .iconListPrice{
    gap: 17px;
}
.trial .verTiclaText{
    width: 205px;
    left: -49px;
    top: 235px;
}
.bussIness .verTiclaText{
   
    top: 300px;
}
.starTer .verTiclaText{  
    left: -95px;
    top: 290px;
}
.stanDard .verTiclaText{
    top: 290px;
}
.preMium  .verTiclaText{ 
    top: 295px;
}
.stanDard .priceAmountDol h2{
    color:#0a68a0;
}
.ultImate .priceAmountDol h2{
    color:#0a68a0;
    }
.stanDard .subBtnBox{
    background:#0a68a0;
}
.stanDard .subBtnBox:hover{
    box-shadow: 0 2px 10px rgba(10, 104, 160, .5);
}
.ultImate .subBtnBox{
    background:#0a68a0;
    box-shadow: 0 2px 10px rgba(10, 104, 160, .5);
    }
.ultImate .keyWords p span{
        color: #ed6285;
    }
.stanDard .keyWords p span{
        color: #ed6285;
    }
.stanDard .subscFeatureOuter{   
    border: 1px solid #0a68a0;
    box-shadow: 0 2px 10px rgba(10, 104, 60, 0.5);
}
.ultImate .subscFeatureOuter{
    border: 1px solid #0a68a0;
    box-shadow: 0 2px 10px rgba(10, 104, 60, 0.5);
}
.stanDard .colBestArea li{
    color: #ed6285;
}
.ultImate .colBestArea li{
    color: #ed6285;
}
.stanDard .roundBox{
    background: #fbeaee;
    color: #000;
}
.ultImate .roundBox{
    background: #fbeaee;
    color: #000;
}
.starDardBox:after{
    background:url("../../assets/img/rtCorner.png") no-repeat;
    width:8px;
    height:17px;
    right: 4px;
    top: 50px;
    position:absolute;
    content: "";
    transform: rotate(90deg);
}
.starDardBox:before{
    background:url("../../assets/img/leftCorner.png") no-repeat;
    width:8px;
    height:17px;
    position:absolute;
    right: 4px;
    top: -10px;
    content: "";
    transform: rotate(90deg);
}
.starDardBox h3{
    color:#ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    text-align: left;
}
.verTiclaText {
    width: fit-content;
    position: absolute;
    transform: rotate(-90deg);
    padding:0;
    float: left;
    left: -132px;
    top:250px;
    z-index: 1;
}
.verTiclaText h2 {
    font-family: 'Poppins', sans-serif;
    font-size:76px;
    line-height: 87px;
    color: #f4f4f4;   
    font-weight: 900;   
}
.colBestArea{
    display: flex;
    gap:8px;
    align-items: center;
    padding-right: 15px;
    position: relative;
}
.poPularPlBtn{

}
.toPfeat{
    padding-left:18px;
    padding-right: 0;
}.colBestArea.toPfeat:after{
    display:none;
}
.colBestArea li{
    color:#0a68a0;
    font-size: 17px;
    line-height: 22px;
}
.roundBox{
    color:#003a5c;
    background:#e7f5fc;
    display:inline-block;
    border-radius: 30px;
    padding:3px 14px 5px;
}
.tWoIconBox{
    display: flex;
}
.outerLinkPop{
    gap:9px;
    display: flex;
    padding-left:9px;
}
.paPularNewBtn img{
    width:44px;
}
.ppBtnNew{
    display: flex;
    align-items: center;
    color:#dfab0b;
    text-decoration: none;
    font-size: 27px;
    line-height: 37px;
    font-family: 'Dancing Script', cursive;
    gap:8px;
    
}
.paPularNewBtn a:focus{
    color:#dfab0b;
    text-decoration: none;
}
.paPularNewBtn a p{
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    color:#dfab0b;
}
.paPularNewBtn figcaption{
    position:relative;
    top:-5px;
}
.paPularNewBtn {
    position: relative;
    top: -15px;
}

/* 25 color code with class */

.sp_inDepth_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #be1823;
}
.sp_inDepth_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #be1823;
}
.sp_inDepth_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #be1823;
}

.sp_keUrlMap_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #7e0c7f;
}
.sp_keUrlMap_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #7e0c7f;
}
.sp_keUrlMap_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #7e0c7f;
}

.sp_searchConsMon_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #b60dbc;
}
.sp_searchConsMon_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #b60dbc;
}
.sp_searchConsMon_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #b60dbc;
}

.sp_conTmark_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #7f780c;
}
.sp_conTmark_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #7f780c;
}
.sp_conTmark_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #7f780c;
}

.sp_onSiteOpt_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #0c197f;
}
.sp_onSiteOpt_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #0c197f;
}
.sp_onSiteOpt_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #0c197f;
}

.sp_onPageOpt_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #0c7f7e;
}
.sp_onPageOpt_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #0c7f7e;
}
.sp_onPageOpt_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #0c7f7e;
}

.sp_offPageOpt_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #1c7f0c;
}
.sp_offPageOpt_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #1c7f0c;
}
.sp_offPageOpt_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #1c7f0c;
}

.sp_sMo_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #0d0dbc;
}
.sp_sMo_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #0d0dbc;
}
.sp_sMo_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #0d0dbc;
}

.sp_compHost_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #0dbabc;
}
.sp_compHost_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #0dbabc;
}
.sp_compHost_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #0dbabc;
}

.sp_localBusList_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #25bc0d;
}
.sp_localBusList_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #25bc0d;
}
.sp_localBusList_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #25bc0d;
}

.sp_gMbTime_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #a9bc0d;
}
.sp_gMbTime_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #a9bc0d;
}
.sp_gMbTime_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #a9bc0d;
}

.sp_conVerRate_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #bc3a0d;
}
.sp_conVerRate_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #bc3a0d;
}
.sp_conVerRate_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #bc3a0d;
}

.sp_googleAntMont_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #e73052;
}
.sp_googleAntMont_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #e73052;
}
.sp_googleAntMont_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #e73052;
}

.sp_scheMaMarkUp_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #cf30e7;
}
.sp_scheMaMarkUp_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #cf30e7;
}
.sp_scheMaMarkUp_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #cf30e7;
}

.sp_adVancedComp_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #4845de;
}
.sp_adVancedComp_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #4845de;
}
.sp_adVancedComp_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #4845de;
}

.sp_pageLoadTime_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #45bfde;
}
.sp_pageLoadTime_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #45bfde;
}
.sp_pageLoadTime_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #45bfde;
}

.sp_heatMap_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #ae44ff;
}
.sp_heatMap_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #ae44ff;
}
.sp_heatMap_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #ae44ff;
}

.sp_blogPageCrt_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #46c94c;
}
.sp_blogPageCrt_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #46c94c;
}
.sp_blogPageCrt_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #46c94c;
}

.sp_sMadsMang_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #bec946;
}
.sp_sMadsMang_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #bec946;
}
.sp_sMadsMang_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #bec946;
}

.sp_googAdsMang_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #c96e46;
}
.sp_googAdsMang_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #c96e46;
}
.sp_googAdsMang_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #c96e46;
}

.sp_gplAdsMng_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #b1be68;
}
.sp_gplAdsMng_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #b1be68;
}
.sp_gplAdsMng_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #b1be68;
}

.sp_shOppAnaly_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #4f403a;
}
.sp_shOppAnaly_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #4f403a;
}
.sp_shOppAnaly_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #4f403a;
}

.sp_lndPageCre_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #000000;
}
.sp_lndPageCre_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #000000;
}
.sp_lndPageCre_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #000000;
}

.sp_fortNightRpt_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #7f2f0c;
}
.sp_fortNightRpt_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #7f2f0c;
}
.sp_fortNightRpt_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #7f2f0c;
}

.sp_dediCatedSup_clr .bdbcs_wrap_midle_box_titl h4 {
    color: #bc0d21;
}
.sp_dediCatedSup_clr .bdbcs_wrap_midle_box_cols li {
    border-left-color: #bc0d21;
}
.sp_dediCatedSup_clr .bdbcs_wrap_midle_box_cols li:hover {
    color: #bc0d21;
}




.footer_new_copyright {
    width: auto;
    padding-left: 14%;
}
.footer_new_quick_links {
    width: 100%;
}
.footer_new_botom_social_icns {
    width: 30%;
}
.footer_new_cntinfo ul li a {
    line-height: 1.26;
    vertical-align: middle;
}

.leftAreaFtr{
    width:47%;
    flex: 47%;
    max-width: 47%;
}
.rightAreaFtr{
    width:53%;
    flex: 53%;
    max-width: 53%;
}
.saleExecuBox .thumbNailBox{
     width:auto;
}
.saleExecuBox{
    padding-left:66px;
}
.saleExecuBox figcaption{
    padding-right: 40px;
}
.exec-emp-img{
    width:88px;
    height:88px;
}
.sales_executiv_sldr_all .owl-carousel{
    width:88px !important;
    height:88px !important;
}


 /* ------------- new css ftr ============= */

.ftrcontRtRow1{
    padding-bottom: 0;
}
.saleExecuBox .thumbNailBox {
    width: auto;
}
.getinTouTitle{
    padding-top: 22px !important;
}
.getinTouTitle {
    padding-top: 23px !important;
}
.getinTouTitle h3{
    margin-bottom: 13px;
}

/*-------------  For footer fixed css  starts  -------------------*/
#footer_new_sec {
    position: fixed !important;
    bottom: 0 !important;
    animation: none !important;
    z-index: 9999;
}
/*.home_pg #footer_new_sec {*/
/*    position: fixed !important;*/
/*    bottom: 0 !important;*/
/*    animation: none !important;*/
/*    z-index: 9999;*/
/*}*/
/*-------------  For footer fixed css  ends  -------------------*/


/*Sweet Alert Popup Css*/

div:where(.swal2-container) {
    z-index: 9999!important;
}


.plan_errobx  {
    width: 100%;
    max-width: 400px;
}

.plan_errobx  .swal2-confirm {
    background: linear-gradient(0deg, #e53360, #f85173);
    color: #fff;
    border-radius: 50px;
    font-weight: 400;
    font-size: 17px;
    padding: 6px 20px;
    transition: transform 0.6s ease-out;
}


.plan_errobx  .swal2-confirm:hover {
    background: linear-gradient(0deg, #2178ad, #29a0e8);
    transition: transform 0.6s ease-in;
}

































