/* Body Css */
@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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body * {
    font-family: "Poppins", sans-serif;
}
/*h1, h2, h4, h5, h6 {*/
/*    font-family: "Montserrat", sans-serif;*/
/*}*/
a {
    text-decoration: unset;
}
img {
    width: 100%;
}
.w-heading {
    color: #181314;
    font-size: 55px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: -3.706px;
    text-transform: capitalize;
}
.w-heading span {
    color: #F84A50;
    font-weight: 700;
    /*font-family: 'Montserrat';*/
}
html, body {
    overflow-x: hidden;
}
.error {
    color: red;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 600;
}
/* Topbar Css */
.topbar-row {
    background: #F84A50;
    height: 36px;
    line-height: 36px;
}
.topbar-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
}
.topbar-sec li {
    display: inline-block;
    margin: 0;
    margin-left: 5px;
}
.topbar-sec ul {
    margin: 0;
}
.top-left {
    margin-right: 40px;
}
.top-left a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    display: flex;
}
.top-left a:before {
    content: "";
    background-image: url(../images/phone-icon.png);
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 8px;
}
.top-rgt li i {
    width: 25px;
    height: 25px;
    border: 1px solid;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    border-radius: 50px;
}
/* Header Css */
header.header-row {
    position: absolute;
    width: 100%;
    z-index: 99;
}
.header-sec .logo img {
    width: 35%;
}
.header-sec a {
    width: 35%;
}
.header-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-sec ul {
    margin: 0;
}
.header-sec ul li {
    display: inline-block;
}
button.btn.btn-primary.btn-clr {
    padding: 16px 29px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-transform: capitalize;
    background: #F84A50;
    box-shadow: 0px 0px 9.4px 0px rgba(0, 0, 0, 0.25);
    border: 1px solid #F84A50;
    transition: all 0.4s linear;
    position: relative;
    display: flex;
    align-items: baseline;
    border-radius: 10px 10px 10px 0;
    z-index: 1;
}
/*button.btn.btn-primary.btn-clr:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background: transparent;*/
/*    width: 0;*/
/*    height: 100%;*/
/*    transition: 0.5s;*/
/*    z-index: -1;*/
/*    border: 1px solid #f84350;*/
/*    border-radius: 6px;*/
/*}*/
/*button.btn.btn-primary.btn-clr:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    background: transparent;*/
/*    width: 0%;*/
/*    height: 100%;*/
/*    transition: 0.5s;*/
/*    z-index: -1;*/
/*    border: 1px solid #f84350;*/
/*    border-radius: 6px;*/
/*}*/
/*button.btn.btn-primary.btn-clr:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0px 0px 6px 2px #f84750;*/
/*    background: transparent;*/
/*}*/
/*button.btn.btn-primary.btn-clr:hover:before, button.btn.btn-primary.btn-clr:hover:after {*/
/*    width: 100%;*/
/*}*/
button.btn.btn-primary.trans-clr {
    margin-left: 15px;
    padding: 16px 29px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-transform: capitalize;
    border-radius: 10px 10px 10px 0;
    border: 1.5px solid #FFF;
    box-shadow: 0px 0px 9.4px 0px rgba(0, 0, 0, 0.25);
    background: transparent;
    position: relative;
    transition: all 0.4s linear;
    display: flex;
    align-items: baseline;
    z-index: 1;
}
button.btn.btn-primary.btn-clr:after {
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 16px;
    border: 1px solid;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 100%;
    display: block;
    line-height: 22px;
    position: relative;
    margin-left: 10px;
}
button.btn.btn-primary.btn-clr:before, button.btn.btn-primary.trans-clr:before {
    border-radius: 10px 10px 10px 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F84A50;
    z-index: -1;
    animation: ripple 1.2s ease-out infinite;
    animation-delay: 0.6s;
}
@keyframes ripple {
    from {
        opacity: 1;
        transform: scale(0);
    }

    to {
        opacity: 0;
        transform: scale(1.5);
    }
}
button.btn.btn-primary.btn-clr:hover {
    background: transparent;
}
button.btn.btn-primary.trans-clr:after {
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 16px;
    border: 1px solid;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 100%;
    display: block;
    line-height: 22px;
    position: relative;
    margin-left: 10px;
}
button.btn.btn-primary.trans-clr:hover {
    background: #F84A50;
    border-color: #F84A50;
}
/*button.btn.btn-primary.trans-clr:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background: #f84750;*/
/*    width: 0%;*/
/*    height: 100%;*/
/*    transition: 0.5s;*/
/*    z-index: -1;*/
/*}*/
/*button.btn.btn-primary.trans-clr:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    background: #f84750;*/
/*    width: 0%;*/
/*    height: 100%;*/
/*    transition: 0.5s;*/
/*    z-index: -1;*/
/*}*/
/*button.btn.btn-primary.trans-clr:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0px 0px 6px 2px #f84750;*/
/*}*/
/*button.btn.btn-primary.trans-clr:hover:before, button.btn.btn-primary.trans-clr:hover:after {*/
/*    width: 51%;*/
/*}*/
/* Banner Css */
section.banner-row {
    background-image: url(../images/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 50px;
}
.banner-sec h1 {
    color: #FFF;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 90px;
    letter-spacing: -4.985px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.banner-sec h1 span {
    color: #F84A50;
    font-weight: 700;
    /*font-family: 'Montserrat';*/
}
.banner-sec p {
    color: #D2D2D2;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}
.banner-sec ul {
    margin: 0 0 18px;
}
.banner-sec ul li {
    display: inline-block;
    width: 49%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}
.banner-sec ul li:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    margin-right: 11px;
}
.banner-form {
    border-radius: 27.336px;
    border: 2.929px solid #FFF;
    background: rgba(15, 15, 15, 0.30);
    backdrop-filter: blur(7.322275161743164px);
    padding: 22px 26px;
    width: 95%;
    margin: auto;
    margin-right: 0;
}
.banner-form h2 {
    color: #FFF;
    text-align: center;
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -1.707px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.banner-form p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}
.banner-form .form-group {
    margin-bottom: 15px;
}
.banner-form .form-group input, .banner-form .form-group textarea {
    border-radius: 5.858px;
    border: 1.953px solid #FFF;
    background: transparent;
    height: 55px;
    padding-left: 27px;
    color: #E3E3E3;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    text-transform: capitalize;
}
.banner-form .form-group input::placeholder, .banner-form .form-group textarea::placeholder {
    color: #E3E3E3;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    text-transform: capitalize;
}
.banner-form .form-group textarea {
    height: 150px;
    padding-top: 10px;
}
.banner-form button.btn.btn-primary.btn-clr {
    width: 100%;
    justify-content: center;
}
/*Banner Bottom Css*/
section.banner-bottom-row {
    padding: 55px 0;
}
.banner-bottom-sec img {
    height: 55px;
    object-fit: scale-down;
}
/* Writing Css */
section.writing-row {
    padding: 69px 0 207px;
    background: #EDEDED;
}
.w-head {
    margin-bottom: 35px;
}
.writing-sec {
    border-bottom: 1px solid #EAECF0;
    border-right: 1px solid #EAECF0;
    display: flex;
    padding: 50px 29px 50px 40px;
    transition: all 0.4s linear;
    border-radius: 10.556px;
    background: #fff;
}
section.writing-row .row .col-xl-4:nth-child(5) .writing-sec, section.writing-row .row .col-xl-4:last-child .writing-sec {height: 281px;}
section.writing-row .row .col-xl-4 {
    padding: 0;
}
.writing-sec img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    margin-right: 25px;
}
.writing-sec h3 {
    color: #101828;
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.writing-sec p {
    color: #667085;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}
.writing-sec:hover {
    background: #F84A50;
    cursor: pointer;
}
.writing-sec:hover * {
    color: #fff;
}
/* Services Css */
section.services-row {
    background: linear-gradient(170deg, #F84A50 16.35%, #D63E44 88.41%);
    padding: 80px 0 120px;
    position: relative;
    z-index: 11;
}
section.services-row .container-fluid {
    padding: 0 290px;
}
section.services-row:before {
    content: "";
    background-image: url(../images/services-before.png);
    width: 100%;
    height: 560px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -560px;
    z-index: 11;
}
section.services-row:after {
    content: "";
    background-image: url(../images/services-after.png);
    width: 100%;
    height: 1000px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
}
.services-sec {
    position: relative;
    z-index: 11;
}
section.services-row .row .col-xl-5 .services-sec:before {
    content: "";
    background-image: url(../images/service-img-before.png);
    width: 829px;
    height: 589px;
    position: absolute;
    z-index: -7;
    left: -120px;
    right: 0;
    top: 60px;
    margin: auto;
    bottom: 0;
    background-position: center;
    background-size: 82%;
    background-repeat: no-repeat;
}
.services-sec p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16.986px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 32px;
}
.services-sec h2 {
    color: #FFF;
    font-size: 85px;
    font-weight: 700;
    line-height: 95px;
    letter-spacing: -5.297px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.services-sec button.btn.btn-primary.btn-clr {
    border-radius: 5.662px;
    background: #FFF;
    box-shadow: 0px 0px 8.871px 0px rgba(0, 0, 0, 0.25);
    color: #333B50;
}
.services-sec button.btn.btn-primary.btn-clr:before {
    background: #fff;
}
.services-sec button.btn.btn-primary.btn-clr:hover {
    background: transparent;
    color: #fff;
    box-shadow: unset;
    border-color: #fff;
}
section.services-row .row {
    margin-bottom: 53px;
    position: relative;
}
.services-sec img {
    width: 90%;
    margin: auto;
    display: block;
    transition: all 0.4s linear;
}
.services-sec img:hover {
    transform: scale(1.05) rotate(1deg);
    transform-origin: right;
    filter: drop-shadow(2px 4px 6px #111);
    cursor: pointer;
}
section.services-row .row-reverse .col-xl-7 .services-sec {
    width: 91%;
    margin: auto;
    margin-right: 0;
}
section.services-row .row .col-xl-5 .services-sec img {
    margin-right: 0;
}
section.services-row .row-reverse .col-xl-5 .services-sec img {
    margin-left: 0;
}
.services-sec1:before {
    content: "";
    background-image: url(../images/service-innner-before1.png);
    width: 200px;
    height: 855px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: -280px;
    top: -190px;
}
.services-sec1:after {
    content: "";
    background-image: url(../images/service-innner-after1.png);
    width: 441px;
    height: 765px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: -280px;
    top: 0;
}
.services-sec3:before {
    content: "";
    background-image: url(../images/service-innner-before2.png);
    width: 550px;
    height: 775px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: -280px;
    top: -190px;
}
.services-sec4:after {
    content: "";
    background-image: url(../images/service-innner-after2.png);
    width: 877px;
    height: 765px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: -140px;
    bottom: -340px;
}
/* Cta Css */
section.cta-row {
    padding: 70px 0 35px;
    position: relative;
}
section.cta-row:before {
    content: "";
    background-image: url(../images/cta-before.png);
    width: 829px;
    height: 829px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    bottom: -450px;
    left: 0;
    z-index: -1;
}
section.cta-row:after {
    content: "";
    background-image: url(../images/cta-after.png);
    width: 361px;
    height: 923px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    top: -180px;
    right: 0;
    z-index: -1;
}
section.cta-row .w-head {
    margin-bottom: 40px;
}
section.cta-row .w-head h3 {
    color: #181314;
    /* font-family: Montserrat; */
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -3.201px;
    text-transform: capitalize;
}
section.cta-row .w-head h3 span {
    color: #F84A50;
    font-weight: 700;
    font-family: Montserrat;
}
.cta-sec {
    background-image: url(../images/cta-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 114px;
}
.cta-sec img {
    margin-top: -150px;
    margin-bottom: 47px;
    animation: 5s pop infinite linear;
}
@keyframes pop{
    0% {
        -webkit-transform: translateY(-1vw);
        transform: scale(1);
    }
    50% {
        -webkit-transform: translateY(1vw);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: translateY(1vw);
        transform: scale(1);
    }
}
.cta-inner-sec h3 {
    color: #FFF;
    /* font-family: Montserrat; */
    font-size: 50px;
    font-weight: 300;
    line-height: 62px;
    letter-spacing: -2.896px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.cta-inner-sec h3 span {
    font-weight: 700;
    /* font-family: Montserrat; */
}
.cta-inner-sec ul {
    margin: 0 0 18px;
}
.cta-inner-sec ul li {
    display: inline-block;
    width: 40%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}
.cta-inner-sec ul li:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    margin-right: 11px;
}
/*Packages Css*/
section.packages-row {
    padding: 148px 0 60px;
}
.packages-head {
    margin-bottom: 30px;
    position: relative;
}
.packages-head h3 {
    color: #F84A50;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.packages-sec {
    background-color: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    padding: 22px 22px 47px 22px;
    transition: all 0.4s linear;
    border-radius: 0px 50px 0px 50px;
    margin-bottom: 30px;
}
.packages-sec:hover {
    background: #f84750;
    cursor: pointer;
}
.packages-sec:hover * {
    color: #fff;
}
.packages-sec:hover .package-head-box {
    background: #fff;
}
.packages-sec:hover .package-head-box h2,.packages-sec:hover .package-head-box h3,.packages-sec:hover .package-head-box h4 {
    color: #000;
}
.packages-sec:hover button.btn.btn-primary.btn-clr {
    background: #fff;
    color: #000;
}
.package-head-box {
    background-color: #FFF6F6;
    border-radius: 20px;
    text-align: center;
    padding: 22px 0 14px;
    margin-bottom: 30px;
}
.package-head-box h2 {
    font-size: 22px;
    color: #1e1e1e;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 700;
}
.package-head-box h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 10px;
    color: #282828;
}
.package-head-box h4 {
    color: #F84A50;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    font-family: 'Poppins';
}
.packages-sec ul {
    padding: 0;
    margin: 0 0 20px;
    overflow-y: scroll;
    height: 300px;
}
.packages-sec ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
.packages-sec ul::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}
.packages-sec ul::-webkit-scrollbar-thumb {
    background-color: #F84A50;
}
.packages-sec h4 {
    font-size: 20px;
    color: #1e1e1e;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}
.packages-sec ul p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.packages-sec ul li {
    margin-left: 18px;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
}
.packages-sec button.btn {
    display: block;
    margin: auto;
}
.packages-sec button.btn.btn-primary.btn-clr:hover {
    color: #000;
}
.packages-sec button.btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
}
/* Books Css */
section.portfolio-row {
    padding: 114px 0;
    background-image: url(../images/portfolio-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
section.portfolio-row .w-head {
    margin-bottom: 43px;
}
section.portfolio-row .w-head .w-heading span {
    font-weight: 600;
}
.portfolio-tabs .nav-pills .nav-link {
    border-radius: 6px;
    border: 1.5px solid #070B0F;
    box-shadow: 0px 0px 9.4px 0px rgba(0, 0, 0, 0.25);
    margin: 0 11px;
    color: #070B0F;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-transform: capitalize;
    padding: 16px 35px;
    transition: all 0.4s linear;
}
.portfolio-tabs .nav-pills .nav-link:hover {
    background: #f84750;
    color: #fff;
    border-color: #f84750;
}
.portfolio-tabs ul#pills-tab {
    margin-bottom: 50px;
}
.portfolio-tabs .nav-pills .nav-link.active {
    border-radius: 6px;
    background: #F84A50;
    box-shadow: 0px 0px 9.4px 0px rgba(0, 0, 0, 0.25);
    border-color: #F84A50;
    color: #fff;
}
.swiper-container {
    padding-bottom: 20px;
}
.swiper-slide{
    width: 300px;
}
.swiper-slide img {
    width: 100%;
}
.swiper-pagination {
    bottom: 0px !important;
}
span.swiper-pagination-bullet {
    background-color: #18C579;
}
/* Process Css */
section.process-row {
    padding: 80px 0 110px;
    position: relative;
    z-index: 999;
}
section.process-row .container-fluid {
    padding: 0 188px 0 178px;
}
section.process-row:before {
    content: "";
    background-image: url(../images/process-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -600px;
    width: 100%;
    height: 1720px;
    z-index: -1;
}
section.process-row .w-head h2 {
    color: #fff;
}
section.process-row .w-head {
    margin-bottom: 160px;
}
.process-sec {
    border-radius: 21.272px;
    border: 3.191px solid #FFF;
    padding: 22px 22px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s linear;
}
.process-sec:hover {
    border: 3.191px solid #D04045;
    background: #F84A50;
    cursor: pointer;
}
.process-sec img {
    width: 95px;
    height: 95px;
    margin: auto;
    display: block;
    margin-bottom: 15px;
}
.process-sec h2 {
    color: #FFF;
    font-size: 23px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -1.25px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.process-sec p {
    color: #DCDCDC;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}
.process-sec2,.process-sec4 {
    margin-top: 340px;
}
.process-sec:before {
    content: "";
    background-image: url(../images/01.png);
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    z-index: -1;
    width: 147px;
    height: 119px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: auto;
}
.process-sec2:before {
    background-image: url(../images/02.png);
    width: 189px;
    height: 120px;
}
.process-sec3:before {
    background-image: url(../images/03.png);
    width: 189px;
    height: 120px;
}
.process-sec4:before {
    background-image: url(../images/04.png);
    width: 209px;
    height: 119px;
}
.process-sec1:after {
    content: "";
    background-image: url(../images/down-arrow.png);
    width: 253px;
    height: 209px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -240px;
    top: auto;
    left: 100px;
}
.process-sec2:after {
    content: "";
    background-image: url(../images/up-arrow.png);
    width: 253px;
    height: 209px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -430px;
    left: 140px;
}
.process-sec3:after {
    content: "";
    background-image: url(../images/down-arrow.png);
    width: 253px;
    height: 209px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -240px;
    top: auto;
    left: 60px;
}
/* Testimonials Css */
section.testimonials-row {
    background: #EDEDED;
    padding: 75px 0 104px;
    position: relative;
}
section.testimonials-row:after {
    content: "";
    background-image: url(../images/testimonials-after.png);
    width: 100%;
    height: 370px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -210px;
}
section.testimonials-row .w-heading span {
    font-weight: 600;
}
section.testimonials-row .w-head {
    margin-bottom: 44px;
}
.testimonials-sec {
    border-radius: 11.15px;
    border: 1.115px solid #E6E6E6;
    background: #FFF;
    text-align: center;
    padding: 35px 30px 75px;
    margin-bottom: 36px;
    transition: all 0.4s linear;
}
.testimonials-sec:hover {
    background: #F84A50;
    cursor: pointer;
}
.testimonials-sec:hover * {
    color: #fff;
}
.testimonials-sec h3 {
    color: #00092C;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px;
}
.testimonials-sec p {
    color: #555555;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
}
.testimonials-sec h4 {
    color: #00092C;
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 5px;
}
.testimonials-sec h5 {
    color: #7B7B7B;
    font-size: 15.61px;
    font-weight: 500;
    line-height: 22.3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.testimonials-sec img {
    width: 89px;
    height: 89px;
    object-fit: contain;
    margin-bottom: -110px;
}
.owl-nav {
    position: absolute;
    top: 50%;
}
.owl-carousel .owl-nav .owl-prev {
    left: -86px;
    position: absolute;
}
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    left: auto;
    right: -1377px;
    top: 0;
}
/* Contact Css */
section.contact-row {
    position: relative;
    z-index: 11;
}
section.contact-row .container-fluid {
    padding-left: 310px;
    padding-right: 0;
}
section.contact-row:before {
    content: "";
    background-image: url(../images/cta-before.png);
    width: 829px;
    height: 459px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    bottom: -127px;
    left: 0;
    z-index: -1;
}
section.contact-row:after {
    content: "";
    background-image: url(../images/cta-after.png);
    width: 361px;
    height: 843px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    top: -240px;
    right: 0;
    z-index: -1;
}
section.contact-row .w-head {
    margin-bottom: 24px;
}
.contact-sec .form-group {
    margin-bottom: 16px;
}
.contact-sec .form-group input, .contact-sec .form-group textarea {
    background: #EDEDED;
    border: 1px solid #AEAEAE;
    height: 50px;
    padding-left: 24px;
    color: #505050;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.contact-sec .form-group input::placeholder, .contact-sec .form-group textarea::placeholder {
    color: #505050;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.contact-sec .form-group textarea {
    height: 150px;
    padding-top: 10px;
}
.contact-sec button.btn.btn-primary.btn-clr {
    width: 100%;
    justify-content: center;
}
.contact-sec button.btn.btn-primary.btn-clr:hover {
    color: #000;
}
.contact-sec img {
    animation: updown 3s infinite alternate-reverse;
}
@keyframes updown{
    0% {
        -webkit-transform: translateY(-1vw);
        transform: translateY(-1vw);
    }
    100% {
        -webkit-transform: translateY(1vw);
        transform: translateY(1vw);
    }
}
/* Popup Css */
.modal-body {
    padding-top: 150px;
}
.modal-body {
    padding-top: 150px;
}
.popupform ul li {
    text-align: left;
    position: relative;
    width: 100%;
    margin: 8px 0px;
    display: block;
}
.popupform ul li input[type="text"],
.popupform ul li input[type="email"],
.popupform ul li textarea {
    background: #ffffff;
    border: #dedede 2px solid;
    padding: 10px 10px 10px 34px;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    box-shadow: none !important;
    outline: none 0px !important;
}
.popupform ul li i {
    position: absolute;
    top: 15px;
    left: 14px;
    color: #F84A50;
}
.popupform ul li textarea {
    height: 161px;
}
.popupform ul li.last {
    text-align: center;
}
.popupform ul li input[type="submit"] {
    color: #fff;
    font-size: 18px;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    padding: 11px 10px;
    letter-spacing: 1px;
    outline: 0px none;
    border-radius: 50px;
    width: 195px;
    background: #F84A50;
}
.popupform ul li input[type="submit"]:hover {
    background: #F84A50;
}
.popupform ul li input[type="text"]:focus,
.popupform ul li input[type="email"]:focus,
.popupform ul li textarea:focus {
    border: #b9bbbd 2px solid !important;
}
.popupform {
    width: 450px;
    border-radius: 23px;
    padding: 31px 27px 31px;
    overflow: visible;
    border-bottom: #F84A50 5px solid;
    background-color: #fff;
    margin: auto;
    position: relative;
}
.popupform h2 {
    font-size: 26px;
    color: #F84A50;
    font-weight: 600;
    padding-left: 15px;
    border-left: #F84A50 6px solid;
    margin-bottom: 12px;
    line-height: 35px;
}
.popupform h2+p {
    line-height: 19px;
    font-size: 14px;
    margin-bottom: 12px;
}
.popupform ul {
    margin: 0;
    padding: 0;
}
.modal-content {
    background-color: transparent;
    border: 0;
}
.modal-dialog.modal-lg {
    border: 0;
}
.popupform button.btn-close {
    border: #F84A50 3px solid;
    border-radius: 72px;
    text-align: center;
    background-color: #fff;
    box-shadow: #000 0 0 10px;
    overflow: visible;
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 10px;
    position: absolute;
    right: -15px;
    top: -20px;
}
/* Footer Css */
footer.footer-row {
    background-image: url(../images/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 280px 0 0px;
}
.footer-sec img {
    width: 20%;
    margin-bottom: 26px;
}
.footer-sec p {
    color: #BFBFBF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: 73%;
    margin: 0 auto 40px;
}
.footer-sec ul {
    margin: 0 0 20px;
}
.footer-sec ul.details li {
    margin: 0 35px;
}
.footer-sec ul.details li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    transition: all 0.2s linear;
}
.footer-sec ul.details li a:hover {
    color: #f84750;
}
.footer-sec ul.details li a i {
    margin-right: 10px;
}
.footer-sec ul.social {
    margin: 0;
}
.footer-sec ul.social li {
    margin: 0 5px;
}
.footer-sec ul.social li i {
    border-radius: 19.118px;
    border: 1.8px solid #F84A50;
    width: 38px;
    height: 38px;
    line-height: 38px;
    color: #F84A50;
}
/*Copyright Css*/
.copyright-sec {
    margin-top: 30px;
    background: #4C0306;
    padding: 20px 0;
}
.copyright-sec p {
    margin: 0;
    color: #fff;
}
.copyright-sec a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.copyright-sec a:hover {
    color: #f84750;
}
/*Terms Css*/
section.inner-banner-row {
    background-image: url(../images/terms-bg.jpg);
    padding: 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
section.inner-banner-row:before {
    content: "";
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.inner-banner-sec h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
}
section.terms-row {
    padding: 70px 0 0;
}
.privacy-sec h3 {
    color: #181314;
    font-size: 32px;
    font-weight: 600;
    line-height: 35px;
    text-transform: capitalize;
    letter-spacing: -2px;
    margin-bottom: 10px;
}
.privacy-sec p {
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.privacy-sec ul {
    margin: 0;
}
.privacy-sec ul li {
    margin-bottom: 10px;
}
.privacy-sec ul li a {
    color: #555555;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-decoration: underline;
}
.privacy-sec ul li i {
    width: 20px;
}
.privacy-sec ul li a:hover {
    color: #f84750;
}
.custom-cal-sec {
    border-radius: 23px;
    padding: 60px;
    overflow: visible;
    border-bottom: #F84A50 5px solid;
    background-color: #fff;
    margin: auto;
    position: relative;
    width: 980px;
    height: 450px;
}
.custom-cal-sec button.btn-close {
    border: #F84A50 3px solid;
    border-radius: 72px;
    text-align: center;
    background-color: #fff;
    box-shadow: #000 0 0 10px;
    overflow: visible;
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 10px;
    position: absolute;
    right: -15px;
    top: -20px;
}
#custom-plan-box .cpb-left {
	/* float:left; */
	width:200px;
	margin:0px 0px 1px 0px;
}
#custom-plan-box .cpb-right {
	float:right;
	width:75%;
	margin:0px 0px 1px 0px;
}
#custom-plan-box .cpb-halfcol { 
	float:left; 
	width:50%; 
}
#custom-plan-box .cpb-halfcol .field_group {
    margin-bottom: 60px;
    display: block;
}
#custom-plan-box .cpb-halfcol .cpb-left { 
	float:left;
	width:200px;
	margin:0px 0px 1px 0px;
}
#custom-plan-box .cpb-halfcol .cpb-right {
	float:right;
	width:50%;
	margin:0px 0px 1px 0px;
}
#custom-plan-box .field_group {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}
#custom-plan-box .cpb-label {
	font-size:16px;
	font-weight:600;
	color:#303030;
	display:block;
	padding-top:8px;
}
#custom-plan-box input[type="range"] { 
	width:100%; 
}
#custom-plan-box input[type="range"] {
  -webkit-appearance: none;
  width:100%;
  height:4px;
  background: #e1e1e1;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}
#custom-plan-box .cpb-halfcol .cpb-left.one {
    width: 72% !important;
}
#custom-plan-box .cpb-halfcol .cpb-right.one {
    width: 20%;
}
#custom-plan-box input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance:none;
  appearance:none;
  width:14px;
  height:14px;
  background: #F84A50;
  cursor:pointer;
  border-radius:50%;
}
.text-right {
    text-align: right;
}
#custom-plan-box input[type="range"]::-moz-range-thumb {
  width:14px;
  height:14px;
  background:#F84A50;
  cursor:pointer;
  border-radius:50%;
}
#custom-plan-box input[type="range"]::-moz-range-thumb:hover, .section-7 #custom-plan-box input[type="range"]::-moz-range-thumb:active {
	background:#000;
}
.range-wrap {
	position:relative;
}
.range-wrap::before, .range-wrap::after {
	font-size:15px;
	font-weight:500;
}
.num_blogs_field::before {
    content: "15";
}
.num_blogs_field::after {
    content: "200";
    position: absolute;
    right: 0px;
    top: 0px;
}
.word_count_field::before {
    content: "500";
}
.word_count_field::after {
    content: "4000";
    position: absolute;
    right: 0px;
    top: 0px;
}
.blog_quality_field::before {
    content: "3 Star";
}
.blog_quality_field::after {
    content: "5 Star";
    position: absolute;
    right: 0px;
    top: 0px;
}
.range { 
	width:100%; 
}
.bubble {
  background: #e1e1e1;
  color:#000000;
  padding: 3px 5px;
  position: absolute;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  top:-25px;
}
.bubble::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #e1e1e1;
  top:24px;
  left: 50%;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.cop_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.cop_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .cop_slider {
  background-color: #F84A50;
}
input:focus + .cop_slider {
  box-shadow: 0 0 1px #F84A50;
}
input:checked + .cop_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.cop_slider.round {
  border-radius: 34px;
}
.cop_slider.round:before {
  border-radius: 50%;
}
#custom-plan-box .cpb-pricing {
	float:left;
	width:50%;
	font-size:20px;
	font-weight:600;
	line-height:58px;
	color:#303030;
}
#custom-plan-box .cpb-pricing .total_lbl {
	float:left;
	margin-right:10px;
}
#custom-plan-box .cpb-pricing .total_cost {
	font-size:46px;
	line-height:58px;
	font-weight:700;
	color:#F84A50;
}
#custom-plan-box .cpb-pricing .total_cost #calc_cost {
	color:#303030;
}
#custom-plan-box .order-btn {
	float:right;
	width:50%;
	text-align:right;
}
#custom-plan-box .order-btn .btn {
	padding:15px 50px;
	background: #F84A50;
	display: inline-block;
	color: #fff;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: normal;
	line-height: 28px;
}