@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap");
html {
    scroll-behavior: smooth;
  }
body {
    width: 100%;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 18px;
    overflow-x: hidden;
    color: #303030;
    font-weight: 500;
    position: relative;
}
nav, footer {
    font-family: Quicksand, sans-serif;
}

body::before,
body::after {
    content: "";
    position: absolute;
    background: #e5f5fe;
    right: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    height: 70vh;
}
body::before {
    top: 0;
    clip-path: polygon(35% 0, 100% 100%, 100% 0);
}
body::after {
    bottom: 0;
    clip-path: polygon(0% 0%, 0% 100%, 85% 100%);
}
.centerShape::before {
    position: absolute;
    content: "";
    background: #e5f5fe;
    /* bottom: 0px; */
    width: 100%;
    height: 40%;
    clip-path: polygon(0 0, 100% 45%, 100% 100%, 0 55%);
    right: 0;
    z-index: -10;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}
img {
    max-width: 100%;
}
ul,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
a,
a:hover,
a:focus {
    color: inherit;
    /*text-decoration: none;*/
    outline: none;
}
a,
.btn {
    -webkit-transition: all 200ms ease-in-out 0s;
    -o-transition: all 200ms ease-in-out 0s;
    transition: all 200ms ease-in-out 0s;
}

.entry-content p {
    text-align: justify;
}

.wp-block-latest-posts__featured-image {
    min-height: 160px;
    height: 200px;
}

.wp-block-latest-posts.is-grid li {
    margin-bottom: 3em !important;
    position: relative;
    height: 570px;
}

.link-more {
    position: absolute;
    bottom: 2px;
    right: 2px;
}

.btn {
    /*font-size: 15px;*/
    padding: 8px 15px;
    font-weight: 500;
}
.btnPrimary {
    background: #ff0859;
    background: -moz-linear-gradient(
        left,
        #ff0859 0%,
        #ee477e 50%,
        #ff0859 100%
    );
    background: -webkit-linear-gradient(
        left,
        #ff0859 0%,
        #ee477e 50%,
        #ff0859 100%
    );
    background: linear-gradient(
        to right,
        #ff0859 0%,
        #ee477e 50%,
        #ff0859 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0859', endColorstr='#ff0859',GradientType=1 );
    color: #fff;
    -webkit-box-shadow: 0px 6px 16px 0px #fe0a5a57;
    box-shadow: 0px 6px 16px 0px #fe0a5a57;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
    background-position: left top;
}
.btnPrimary:hover {
    background-position: right top;
    color: #fff;
}
.btnPrimaryOutline {
    background-color: transparent;
    border: 2px solid #ff095a;
    color: #ff095a;
}
.btnPrimaryOutline:hover {
    background-color: #ff095a;
    color: #fff;
}
.minWdBtn {
    min-width: 150px;
}
.titleStyle {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 10px;
}
.titleStyle.themeTitle {
    color: #fd004e;
}

.wp-block-latest-posts__post-title {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.5rem;
}

.headerSection {
    padding: 20px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.headerSection.fixed-header {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    background-color: #ffffff;
}
.logo a img {
    width: 480px;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.fixed-header .logo a img {
    width: 400px;
}

.link-more {
    text-align: right;
}

.navLinks {
    text-align: right;
}
.navLinks ul.menu > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.navLinks ul.menu > li + li {
    margin-left: 20px;
}
.navLinks .icon.icon-angle-down {
    display: none;
}
.navLinks ul.menu > li > a {
    color: #000;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    padding: 5px 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.navLinks ul.menu > li > .sub-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
    text-align: left;
    padding: 5px 0;
    border-radius: 4px;
    -webkit-transition: all 200ms ease-in-out 0s;
    transition: all 200ms ease-in-out 0s;
    white-space: nowrap;
    z-index: 9;
}
.navLinks ul.menu > li:hover > .sub-menu {
    opacity: 1;
    pointer-events: initial;
    visibility: visible;
    top: 100%;
}
.navLinks .sub-menu a {
    font-size: 15px;
    padding: 6px 15px;
    display: block;
}
.navLinks ul.menu > li > a:hover,
.navLinks .sub-menu a:hover {
    color: #fe095b;
}
.menu-bottom-container {
    text-align: center;
}

/* .navLinks > ul > li {
    display: inline-block;
    margin-left: 20px;
}
.navLinks > ul > li > a {
    color: #000;
    font-weight: 700;
    font-size: 18px;
    display: block;
    padding: 5px 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
} */

/*hide menu on targetted landing pages*/
/*
.page-id-604 .navCol, .page-id-595 .navCol {
    display: none;
}
*/

/*recaptcha move to left */
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}

.grecaptcha-badge:hover {
width: 256px !important;
}

@media (min-width: 992px) {
    /* .dropdown-menu{margin-top:0; }
  .dropdown.hover:hover .dropdown-menu{
    display:block!important;
  }
  .navbar-expand-lg .navLinks .navbar-nav .nav-link {
  	padding: 5px 0;
  } */

    .navLinks ul.menu > li > .sub-menu {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        top: 150%;
    }
    .navLinks ul.menu > li:hover > .sub-menu {
        opacity: 1;
        pointer-events: initial;
        visibility: visible;
        top: 100%;
    }
}
.navTgl {
    display: block;
    width: 30px;
    cursor: pointer;
    position: relative;
    z-index: 99;
}
.tglLine {
    width: 100%;
    height: 3px;
    display: block;
    background-color: #666;
    border-radius: 2px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.tglLine2 {
    margin: 4px 0;
}
.actNav .tglLine1 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 15% 10%;
    -ms-transform-origin: 15% 10%;
    transform-origin: 15% 10%;
}
.actNav .tglLine2 {
    opacity: 0;
    filter: alpha(opacity=0);
}
.actNav .tglLine3 {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 15% 90%;
    -ms-transform-origin: 15% 90%;
    transform-origin: 15% 90%;
}

img.small-image {
    max-width: 210px;
    margin-top: 10px;
    margin-left: auto;
}
.bannerSection {
    padding: 120px 0 0;
}
.linesimage-bg {
    background-image: url("/wp-content/uploads/2020/01/home-lines-1.png");
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    padding: 45px 20px;
    margin-top: 70px;
}
.header-banner-section .banner-image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 10px;
}
.bannerImgStyle {
    width: 100%;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}

.spacerCol {
    padding: 100px 0;
}

.spacerColTop {
    padding: 110px 0px 80px 0px;
}

.save-profiler-sec input.form-control.input-dollar {
    text-align: right;
}
.save-profiler-sec li {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
}
.save-profiler-sec .input-group {
    width: 153px;
    padding: 0;
}

.footer-logo img {
    max-width: 345px;
}
.save-profiler-sec .form-control {
    border-left: 0px;
    font-size: 18px;
    font-weight: 800;
    background-color: #f7f7fd;
    text-align: right;
}
.save-profiler-sec .lblStyle {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}
.save-profiler-sec .form-control:focus {
    border-color: #e0e0f0;
    box-shadow: none;
}
.save-profiler-sec .input-group-text {
    font-weight: 800;
    color: #fd004e;
    font-size: 18px;
    background-color: #f7f7fd;
}
.save-profiler-sec {
    padding: 35px 40px;
    border: 6px solid #f1e2e7;
    border-radius: 15px;
    max-width: 590px;
    margin-left: auto;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.save-profiler-sec .hightlited-text .lblStyle,
.save-profiler-sec .hightlited-box .lblStyle {
    color: #fd004e;
}
.save-profiler-sec .hightlited-box .form-control,
.save-profiler-sec .hightlited-box .input-group-text {
    color: #fff;
    background: #fd004e;
    border-color: #fd004e;
}
.save-profiler-sec h6 {
    text-align: left;
}
span.quotes img {
    /* max-width: 30px; */
    max-width: 24px;
}
.message-area {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    /* padding: 20px 50px; */
    padding: 20px 25px;
    margin-top: 25px;
    min-height: 230px;
    /* transition: all 300ms ease-in-out 0s; */
}
.message-area p {
    font-size: 17px;
    color: #000;
    /* margin-top: 4px; */
    margin: 0;
}
.home-testimonials .slick-slider {
    margin: 0 auto;
}
.home-testimonials .swiper-slide {
    padding: 0 20px;
    /* margin: 50px 10px 80px; */
}
span.quotes {
    position: relative;
    /* left: -30px;
    top: 11px; */
    left: -15px;
    top: 0;
}
.heading-tetimonial {
    text-align: center;
    color: #fd004e;
}
.name-position h3 {
    font-size: 18px;
    color: #fd004e;
}
.name-position h5 {
    font-size: 14px;
}
.name-position {
    padding-top: 22px;
}
.home-testimonials .slick-prev {
    left: 50%;
    bottom: 0;
    transform: translate(-100%, -50%);
    top: auto;
    background: linear-gradient(59deg, #ff095a, #ee457d);
    padding: 8px 13px;
    border-radius: 10px;
    width: auto;
    box-shadow: 0px 6px 16px 0px #fe0a5a57;
    height: auto;
}
.home-testimonials .slick-next {
    right: 50%;
    bottom: 0;
    transform: translate(120%, -50%);
    top: auto;
    padding: 8px 13px;
    background: linear-gradient(59deg, #ff095a, #ee457d);
    border-radius: 10px;
    width: auto;
    height: auto;
    box-shadow: 0px 6px 16px 0px #fe0a5a57;
}
.home-testimonials .slick-next,
.home-testimonials .slick-prev {
    bottom: -60px;
}
.card1-contentCol h4 {
    font-weight: 700;
    color: #ff095a;
}
.card1-contentCol {
    font-size: 16px;
}
.card1-imgCol + .card1-contentCol {
    padding-top: 20px;
}
.card1-contentCol > p + a {
    margin-top: 10px;
}

.contact-us form {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    padding: 60px;
    background: #fff;
}

.form-control:focus {
    box-shadow: none;
}

.contact-us button.btn.btn-primary {
    border: none;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    display: block;
}
.iconFld {
    position: relative;
}
.formStyle .form-group {
    margin-bottom: 30px;
}
.formStyle .form-control {
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
}
.iconFld .form-control {
    padding: 5px 40px 5px 0px;
    background: transparent;
}
.iconFld .icons {
    position: absolute;
    z-index: 20;
    top: 50%;
    right: 10px;
    width: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}
.iconFld .icons img {
    display: block;
}
.labelStyle {
    color: #2f3134;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}
.formStyle textarea.form-control {
    height: 98px;
}

.contact-us h2.heading-tetimonial {
    margin-bottom: 60px;
}
.contact-us {
    position: relative;
}
.net-image-overlap img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: 700px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}
/************** Features Css Starts *****************/
.features h2 {
    text-transform: uppercase;
}
.banner-inner-page {
    padding-top: 180px;
}
.features {
    max-width: 1240px;
    margin: 0 auto;
}
/************** Features Css Ends *****************/
.footerCol {
    padding: 40px 0;
    background-color: #fff;
}

ul.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.social-media li {
    margin: 0 10px;
}
ul.social-media a {
    display: inline-block;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: linear-gradient(59deg, #ff095a, #ee457d);
    padding-top: 7px;
    box-shadow: 0px 6px 16px 0px #fe0a5a57;
}
ul.social-media li a img {
    max-width: 24px;
    margin: 0 auto;
    display: block;
    margin-top: 3px;
}
ul.social-media p.copyrighted-text {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
p.copyrighted-text {
    font-size: 16px;
    color: #000;
    width: 100%;
    text-align: right;
    font-weight: 800;
    margin: 0;
}
p.copyrighted-text span {
    font-size: 15px;
    color: #ff095a;
    text-align: center;
}

.fullpage-video {
    height: 100%;
    width: 98%;
}

.splash p {
    font-size: 20px;
}

/* Presscentre-Console page start */
.header-img {
    position: relative;
    overflow: hidden;
}
.header-img:before {
    position: absolute;
    content: "";
    background: #e5f5fe;
    bottom: 0px;
    width: 100%;
    height: 100%;
    transform: skew(52deg);
    right: -74%;
    z-index: -10;
    top: 0;
}
.press_console.press-profiler-sec,
.press_console.save-with-press-sec {
    padding: 0px 0px 90px;
}
.press_console.banner-image > img {
    max-width: 620px;
}
.press_console.save-with-press-sec h1 {
    text-transform: uppercase;
}
.boxShadow {
    -webkit-box-shadow: 0px 20px 29px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 20px 29px rgba(0, 0, 0, 0.22);
}
.press_consol-save {
    position: relative;
    overflow: hidden;
}
.press_consol-save:after {
    position: absolute;
    content: "";
    background: #e5f5fe;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    clip-path: polygon(0 18%, 0% 100%, 100% 100%);
}
/* Presscentre-Console page close */

.hCardStyleContent > p + p {
    padding-top: 10px;
}
.order-lg-last > .hCardStyleImgCol {

}
.innerPageSpace {
    padding-top: 200px;
}
.videoPlaceholder {
    position: relative;
}
.playIcon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.videoModalStyle .modal-body {
    padding: 0;
}
.videoModalStyle .close {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    background-color: #fff;
    padding: 0px 8px 2px;
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    opacity: 1;
}

.wp-video {
    margin: auto;
}

/* contact page */
.addressCol {
    border: 3px solid #f1e2e7;
    background-color: #fff;
    padding: 50px;
    width: 395px;
    color: #2f3134;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
}
.addressCol > ul > li + li {
    margin-top: 20px;
}
.addressRow {
    position: relative;
    padding-left: 50px;
}
.addressIconCol {
    display: inline-block;
    width: 20px;
    position: absolute;
    left: 0;
    top: 0;
}
.addressColMargin {
    margin-left: 150px;
}
.learnMoreCol {
    padding: 40px 0;
}

.maxWdTitle {
    max-width: 1200px;
    margin: 0 auto;
}
.pressProfilerFeatures .hCardStyle {
    padding: 30px 0;
}
.pressProfilerFeatures .hCardStyle .hCardStyleImgCol {
    text-align: center;
    padding: 20px 10px;
}
.pressProfilerFeatures .hCardStyleContent {
    padding: 20px;
}
.centerImgsCol {
    margin: 0 auto;
    max-width: 1000px;
}

.limit-width {
    max-width: 1450px;
    margin: 0 auto;
}
.smTitle {
    font-size: 1.7rem;
}
.pressFormats {
    margin: 0 auto;
    max-width: 900px;
}
.listStyle > li {
    position: relative;
    padding-left: 20px;
    font-size: 26px;
    line-height: normal;
    margin: 10px 0;
    color: #000;
}

.listStyle {
    font-size: 1.3rem;
}

.listStyle > ul > ul > li {
    font-size: 90%;
}

.listStyle > ul > li::before {
    content: "";
    background-repeat: no-repeat;
    background-image: url("/wp-content/uploads/2020/01/list-bullet.svg");
    position: absolute;
    left: 0;
    margin-top: 10px;
    width: 6px;
    height: 13px;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
}

.listStyle a {
    text-decoration: underline;
}
.listStyle > li > ul {
    font-size: 90%;
    font-weight: 400;
    line-height: normal;
}
.listStyle > li > ul > li {
    position: relative;
    padding-left: 20px;
}
.listStyle ul > li > ul > li {
    position: relative;
    padding-left: 20px;
}
.listStyle > li > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background-image: url("/wp-content/uploads/2020/01/right-arrow.png");
    background-repeat: no-repeat;
    width: 16px;
    height: 14px;
}
.marginauto {
    margin: 0 auto !important;
}
.learnMoreCol .cardStyle-1 .vc_column-inner {
    padding: 0;
    max-width: 260px;
    margin: 0 auto;
}
.learnMoreCol .cardStyle-1 p {
    color: #757575;
}
.formStyle br {
    display: none;
}
.formStyle p:empty {
    display: none;
}
.learnMoreCol .cardStyle-1 .viewmore a {
    background-color: transparent;
    border: 2px solid #ff095a;
    color: #ff095a;
    min-width: 150px;
    padding: 10px 15px;
    -webkit-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    transition: all 400ms ease-in-out 0s;
    font-size: 15px;
}
.learnMoreCol .cardStyle-1 .viewmore a:hover {
    background-color: #ff095a;
    color: #fff;
}
.viewmore.vdicon a {
    padding-left: 42px !important;
    position: relative;
    background: #ff0859;
    background: -moz-linear-gradient(
        left,
        #ff0859 0%,
        #ee477e 50%,
        #ff0859 100%
    );
    background: -webkit-linear-gradient(
        left,
        #ff0859 0%,
        #ee477e 50%,
        #ff0859 100%
    );
    background: linear-gradient(
        to right,
        #ff0859 0%,
        #ee477e 50%,
        #ff0859 100%
    );
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0859', endColorstr='#ff0859',GradientType=1 );
    color: #fff;
    -webkit-box-shadow: 0px 6px 16px 0px #fe0a5a57;
    box-shadow: 0px 6px 16px 0px #fe0a5a57;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
    background-position: left top;
    color: #fff !important;
}
.viewmore.vdicon a::before {
    position: absolute;
    content: "";
    width: 26px;
    height: 26px;
    background-image: url("/wp-content/uploads/2020/01/play-video-1.svg");
    left: 20px;
    background-repeat: no-repeat;
    top: 5px;
}

.spTopImgs {
    padding: 0 0 50px;
}
.spTopImgs .linesimage-bg {
    margin: 0;
}
.spffPage {
    padding-top: 150px;
}
.spImgStyle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spBannerImgCol {
    margin: 0 10px;
}
.card1-contentCol .vc_single_image-img.attachment-full {
    cursor: pointer;
}
/* .slick-slide {
  opacity: 0;
}
.slick-slide.slick-active {
  opacity: 1;
} */
.message-area,
.sp-testimonial-free {
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.sp-testimonial-free {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.home-testimonials .slick-center .sp-testimonial-free {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.home-testimonials .slick-center .message-area {
    -webkit-box-shadow: 0px 6px 16px 0px #fe0a5a57;
    box-shadow: 0px 6px 16px 0px #fe0a5a57;
}
/*********************************
*******media-quary *************
****************************************/

@media (min-width: 1591px) {
    .container {
        max-width: 1450px;
    }
}

@media (max-width: 1590px) {
    .titleStyle {
        font-size: 36px;
    }
    body {
        font-size: 16px;
    }
    .spacerCol {
        padding: 50px 0;
    }
    .logo a img {
        width: 380px;
    }
    .fixed-header .logo a img {
        width: 350px;
    }
    .headerSection {
        padding: 30px 0;
    }
    .footerCol {
        padding: 20px 0;
    }
    .footer-logo img {
        max-width: 260px;
    }
    .innerPageSpace {
        padding-top: 150px;
    }
    .playIcon {
        width: 80px;
    }
    .addressColMargin {
        margin-left: 20px;
    }
    .spffPage .linesimage-bg {
        margin-top: 20px;
    }
}

@media (max-width: 1199px) {
    .titleStyle {
        font-size: 30px;
    }
    .linesimage-bg {
        padding: 30px 30px;
        margin-top: 30px;
    }
    .logo a img {
        width: 260px;
    }
    .fixed-header .logo a img {
        width: 230px;
    }
    .navLinks ul.menu > li > a {
        font-size: 16px;
    }
    .headerSection.fixed-header {
        padding: 20px 0;
    }
    .home-testimonials .swiper-slide {
        padding: 0 15px;
    }
    .message-area {
        border-radius: 10px;
        padding: 15px 30px;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        position: relative;
    }
    span.quotes {
        position: absolute;
        left: 5px;
        top: 10px;
        width: 25px;
        display: inline-block;
    }
    span.quotes img {
        max-width: 100%;
    }
    .learnMoreCol .card1-contentCol {
        font-size: 14px;
    }
    .card1-contentCol h4 {
        font-size: 20px;
    }
    .spacerCol {
        padding: 40px 0;
    }
    .playIcon {
        width: 60px;
    }
    .addressColMargin {
        margin-left: 10px;
    }
    .addressCol {
        padding: 50px 35px;
        width: 360px;
    }
    .spffPage .linesimage-bg {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .navCol {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #1e1f21;
        text-align: center;
        overflow-y: auto;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
        -webkit-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }
    .navLinks {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: 100%;
    }
    .navLinks ul.menu {
        padding: 50px 0px 20px;
    }
    .navLinks ul.menu > li > a {
        color: #fff;
    }
    .navLinks ul.menu > li {
        padding: 8px 0;
        display: block;
        margin-left: 0;
    }
    .navLinks ul.menu > li + li {
        margin: 0;
    }
    .actNav .navCol {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .actNav .tglLine {
        background-color: #fff;
    }
    body.actNav {
        overflow: hidden;
    }
    .navLinks {
        text-align: center;
    }
    .navLinks > ul > li > a {
        color: #ffffff;
    }
    .navLinks .sub-menu a {
        font-size: 14px;
        padding: 4px 10px;
    }
    .navLinks ul.menu > li > .sub-menu {
        display: none;
    }
    .navLinks ul.menu > li.actSubMenu > .sub-menu {
        display: block;
    }
    .bannerSection {
        text-align: center;
    }
    .bannerSection h3 {
        margin-top: 50px;
    }
    .hCardStyleImgCol img {
        width: 400px;
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    .press_console.banner-image > img,
    .hCardStyleImgCol img {
        max-width: 100%;
    }
    .press-profiler-sec {
        text-align: center;
    }
    .save-profiler-sec {
        display: block;
        margin: 0 auto;
    }
    p.copyrighted-text {
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 20px;
    }
    .save-with-press-sec {
        text-align: center;
    }
    .save-profiler-sec {
        text-align: left;
    }
    ul.social-media {
        margin-bottom: 10px;
    }
    h1,
    h2 {
        font-size: 32px;
    }
    a.btn.learnmore {
        margin-top: 0px;
    }
    header button.btn.login-btn {
        display: block;
        margin: 0 auto;
    }
    .learnMoreCol .card1-contentCol {
        font-size: inherit;
    }
    .card1-contentCol h4 {
        font-size: 24px;
    }
    .message-area {
        padding: 20px 30px;
    }

    .home-testimonials .swiper-slide {
        /* margin: 30px 10px 30px; */
    }

    .home-testimonials .slick-prev:before,
    .home-testimonials .slick-next:before {
        font-size: 20px;
    }
    .home-testimonials .slick-prev,
    .home-testimonials .slick-next {
        padding: 8px 10px;
    }
    footer {
        text-align: center;
        padding: 35px 0;
    }
    p.copyrighted-text {
        font-size: 14px;
    }
    .titleStyle {
        font-size: 26px;
    }
    .contact-us form {
        padding: 40px;
    }
    .footer-logo {
        margin-bottom: 10px;
    }
    .footer-logo img {
        max-width: 200px;
    }
    ul.social-media a {
        height: 36px;
        width: 36px;
        padding-top: 4px;
    }
    ul.social-media li a img {
        max-width: 20px;
        margin-top: 5px;
    }
    .innerPageSpace {
        padding-top: 130px;
    }
    .addressColMargin {
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
    }
    .spffPage .linesimage-bg {
        padding: 30px 10px;
    }
    .pressProfilerFeatures .hCardStyleContent {
        text-align: center;
    }
    .pressProfilerFeatures .hCardStyle .hCardStyleImgCol img {
        max-width: 60%;
    }
    .pressProfilerFeatures .hCardStyle .hCardStyleImgCol {
        text-align: center;
        padding: 10px;
    }
    .pressProfilerFeatures .hCardStyle {
        padding: 20px 0;
    }
    .spBannerImgCol {
        margin: 0;
    }
    .contactPage .formBtmBtn {
        text-align: center !important;
    }
    .message-area {
        min-height: 400px;
    }
}
@media (max-width: 767px) {
    .learnMoreCol .cardStyle-1 {
        max-width: 100%;
        padding: 20px 0;
    }
    .learnMoreCol .card1-imgCol > a > img {
        width: 250px;
    }
    .centerShape::before {
        height: 20%;
    }
    .save-profiler-sec {
        padding: 25px 25px;
        border: 4px solid #f1e2e7;
    }
    .save-profiler-sec .lblStyle,
    .save-profiler-sec .form-control,
    .save-profiler-sec .input-group-text {
        font-size: 14px;
    }
    .home-testimonials .slick-slider {
        padding-bottom: 50px;
    }
    .spacerCol {
        padding: 30px 0;
    }
    .spacerColTop {
        padding: 100px 0;
    }

    .innerPageSpace {
        padding-top: 110px;
    }
    .home-testimonials .slick-next,
    .home-testimonials .slick-prev {
        bottom: 0;
    }
}
@media (max-width: 700px) {
    .message-area {
        min-height: 270px;
    }
    .spacerColTop {
        padding: 80px 0;
    }
}
@media (max-width: 575px) {
    .titleStyle {
        font-size: 22px;
    }
    .save-profiler-sec .input-group {
        width: 100px;
    }
    .save-profiler-sec {
        padding: 15px;
    }
    .save-profiler-sec .lblStyle,
    .save-profiler-sec .form-control,
    .save-profiler-sec .input-group-text {
        font-size: 13px;
        line-height: 16px;
    }
    .message-area p {
        font-size: 14px;
    }
    .card1-contentCol h4 {
        font-size: 20px;
    }
    .contact-us form {
        padding: 20px 20px 30px;
    }
    .iconFld .form-control {
        padding: 5px 25px 5px 0px;
        font-size: 14px;
    }
    .iconFld .icons {
        right: 0;
        width: 18px;
    }
    .headerSection {
        padding: 20px 0;
    }
    .headerSection.fixed-header {
        padding: 12px 0;
    }
    .bannerSection {
        padding: 90px 0 0;
    }
    .linesimage-bg {
        padding: 20px 20px;
    }
    .header-banner-section .banner-image {
        margin: 0;
    }
    img.small-image {
        margin-top: 15px;
    }
    .bannerImgStyle {
        border: 3px solid #fff;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }
    .bannerSection h3 {
        margin-top: 20px;
    }
    .innerPageSpace {
        padding-top: 90px;
    }
    .playIcon {
        width: 40px;
    }
    .spffPage .linesimage-bg {
        padding: 15px 10px;
    }
    .message-area {
        min-height: 200px;
    }
}

@media (max-width: 414px) {
    .pressProfilerFeatures .hCardStyle .hCardStyleImgCol img {
        max-width: 80%;
    }
}
@media (max-width: 385px) {
    .message-area {
        min-height: 300px;
    }
}
/* New-style */

.calButtons {
    text-align: center;
    padding: 20px 0 0;
}
.calButtons ul li {
    display: inline-flex;
    margin-right: 20px;
}
.easylogo {
    margin-bottom: 0;
}

.contactPage .formBtmBtn {
    text-align: left !important;
}
.sp-testimonial-free-section .sp-testimonial-free-item {
    text-align: left !important;
}
.home-testimonials .sp-testimonial-free-wrapper .sp-testimonial-free-section {
    padding: 0 !important;
}
.hCardStyle .wpb_raw_code.wpb_content_element.wpb_raw_html {
    margin-bottom: 0 !important;
}
