* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-font: 'Rubik';
    --primary-color: '#4F5665';
    --secondary-color: '#F53855';
    --font-color: '#0B132A';
    --black-color: '#000';
    --white-color: '#fff';
    --transition: all 320ms ease-in-out;
    --font-size: 62.5%;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html {
    overflow-x: hidden;
    /* scroll-behavior: smooth; */
}

body {
    overflow: hidden;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

/*************************
        NAVBAR START
**************************/
.header-container {
    max-width: 1300px;
    height: 140px;
    margin: auto;
    position: relative;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 0px;
}

.navbar-links {
    display: flex;
}

.navbar-links .nav-item {
    margin: 30px;
}

.nav-item a {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    transition: .9s;
    /* display: inline-block; */
}

.nav-item a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #F53855;
    transition: width .5s;
}

.nav-item a:hover,
.nav-item a:hover:after {
    width: 100%;
    color: #F53855;
}

.signin-area .signin {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 18px;
    color: #0B132A;
    padding-right: 50px;
    transition: .3s;
    margin-bottom: 0;
}

.signin-area .signin:hover {
    color: #217e04e2;
}

.signup {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 18px;
    color: #f53855;
    padding: 13px 45px;
    border: 1px solid #F53855;
    border-radius: 50px;
    position: relative;
}

.signup::before {
    position: absolute;
    bottom: 0;
    height: 100%;
    display: block;
    content: "";
    width: 2px;
    left: 0;
    transition: 0.5s all ease-in;
}

.signup:hover {
    color: #040404;
}

.signup:hover::before {
    background-color: rgb(245, 56, 56, 0.3);
    border-radius: 50px;
    right: 0;
    left: auto;
    width: 100%;
    z-index: -1;
}


.mobile-nav {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.icon-nav {
    font-size: 48px;
    color: #333;
}

.icon-nav[name="close"] {
    display: none;
}

.nav-item[name="none"] {
    display: none;
}

/****************************
          HEADER END          
 ****************************/

.bnr-container {
    max-width: 1300px;
    margin: auto;
}

.banner {
    padding: 60px 0px 0px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}

.banner-img {
    margin-bottom: 90px;
}

.banner-title {
    color: var(--font-color);
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 50px;
    padding-right: 86px;
    margin: 20px 0px 90px 0px;
}

.banner-dtl {
    padding: 25px 62px 45px 17px;
}

.banner-dtl p {
    color: #4F5665;
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 2;
}

.btn {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    background-color: #F53838;
    color: #fff;
    padding: 15px 77px;
    border-radius: 10px;
    margin-top: 35px;
    box-shadow: 0px 20px 27px rgba(245, 56, 56, 0.35);
    display: inline-block;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.btn::after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    transform: scale(.1);
}

.btn:hover {
    color: #fff;
    background-color: transparent;
    border: none;
}

.btn:hover::after {
    background-color: #F53838;
    transform: scale(1);
}


.banner-count {
    width: 95%;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 34px 0px;
    box-shadow: 0px 0px 5px #EEEFF2;
}

.banner-count ul {
    display: flex;
    align-items: center;
}


.banner-count .icon {
    background-color: #FFECEC;
    width: 55px;
    height: 55px;
    text-align: center;
    border-radius: 70px;
    margin-right: 30px;
}


.banner-count i {
    line-height: 55px;
    color: #F53838;
    font-size: 20px;
}

.banner-count .count-number,
h4 {
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
}

.banner-count span {
    color: #4F5665;
    font-family: var(--primary-font);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.banner-count .border {
    margin-left: 155px;
}

/************************
        Banner END
*************************/
.container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-section {
    padding: 100px 0px 130px 0px;
    background: linear-gradient(180deg, #F8F8F8 -45.04%, rgba(248, 248, 248, 0.00) 88.56%);
}

.services {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    column-gap: 20px;
}

.services-img {
    justify-self: center;
}

.services-content {
    align-self: flex-end;
    padding-right: 60px;
}

.services-content .sr-title {
    color: #0B132A;
    font-family: var(--primary-font);
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
}

.services-content p {
    color: #4F5665;
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 30px;
    margin: 9px 0px 16px 0px;
}

.services-content .srv li {
    font-family: var(--primary-font);
    color: #4F5665;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    margin-left: 30px;
}

.services-content .srv li:not(:last-of-type) {
    margin-bottom: 15px;
}

.services-content .srv li::before {
    content: url(../img/cheack.svg);
    position: absolute;
    top: 5px;
    left: -30px;
}

/***********************************
             PRICE PLAN
***********************************/
.price-plan {
    padding: 90px 0px;
    background: linear-gradient(180deg, #F8F8F8 -45.04%, rgba(248, 248, 248, 0.00) 88.56%);
}

.plan-title {
    margin: 0 auto;
    text-align: center;
    max-width: 595px;
    margin-bottom: 60px;
}

.plan-heading {
    color: #0B132A;
    font-family: var(--primary-font);
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 16px;
}

.plan-description {
    color: #4F5665;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.pricing-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    justify-content: center;
    height: 760px;
}

.pricing-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s;
}

.pricing-box:hover {
    border: 2px solid #F53838;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.plan-header {
    text-align: center;
}

.plan-type {
    margin: 25px 0px 30px 0px;
    color: #0B132A;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 500;
}

.plan-list {
    margin: 0 auto;
    /* margin-bottom: 100px; */
}

.list-item {
    color: #4F5665;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
}

.list-item i {
    color: #2FAB73;
    padding-right: 15px;
}

.select-plan {
    text-align: center;
    font-family: var(--primary-font);
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translatex(-50%);
}

.select-plan .plan-price {
    color: #0B132A;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 20px;
}

.plan-price span {
    color: #4F5665;
    font-weight: 400;
}

.plan-btn {
    color: #F53838;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #F53838;
    padding: 13px 60px;
    display: inline-block;
    border-radius: 50px;
    position: relative;
}

.plan-btn::before {
    position: absolute;
    bottom: 0;
    height: 100%;
    display: block;
    content: "";
    width: 2px;
    left: 0;
    transition: 0.5s all ease-in;
}

.plan-btn:hover {
    color: #fff;
}

.plan-btn:hover::before {
    background-color: rgb(245, 56, 56, 100);
    border-radius: 50px;
    right: 0;
    left: auto;
    width: 100%;
    z-index: -1;
    box-shadow: 0px 20px 27px rgba(245, 56, 56, 0.35);
}

/**********************************
        section-featured
**********************************/
.featured-sec {
    padding: 60px 0px 40px 0px;
}

.featured-in {
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

.featured-in-heading {
    color: #0B132A;
    font-family: var(--primary-font);
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding: 0px 130px;
    margin-bottom: 20px;
}

.featured-desc {
    color: #4F5665;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding: 0px 70px;
    margin-bottom: 155px;
}

.featured-img {
    margin: auto;
    display: block;
    margin-bottom: 60px;
}

.featured-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.featured-logos img {
    filter: brightness(0);
    opacity: 15%;
}

.amazone {
    height: 190px;
}

/**********************************
        Testimonials
**********************************/
.testimonials-sec {
    padding-bottom: 300px;
}

.testimonial-title {
    margin: 0 auto;
    text-align: center;
    max-width: 555px;
    margin-bottom: 50px;
}

.testimonial-heading {
    color: #0B132A;
    font-family: var(--primary-font);
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
    padding: 0px 50px;
    margin-bottom: 20px;
}

.testimonial-desc {
    color: #4F5665;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.testimonials {
    display: flex;
    justify-content: space-between;
}

.testimonial {
    border-radius: 10px;
    border: 2px solid #DDD;
    width: 400px;
    height: 230px;
    padding: 30px;
    font-family: var(--primary-font);
    transition: all 0.4s;
}

.testimonial:hover {
    border: 2px solid #F53838;
}

.testimonial-header {
    display: flex;
    align-items: center;
}

.name-list {
    padding-left: 20px;
}

.name-list h4 {
    color: #0B132A;
    font-size: 18px;
    font-weight: 500;
}

.name-list span {
    color: #4F5665;
    font-size: 14px;
    font-weight: 400;
}

.score {
    color: #0B132A;
    font-size: 16px;
    font-weight: 400;
    padding-left: 80px;
}

.score i {
    color: #FEA250;
    font-size: 14px;
    padding-left: 10px;
}

.testimonial p {
    color: #0B132A;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 3px;
}

/*****************************
            CTA-sec
******************************/
.cta-sec {
    position: relative;
}

.center-box {
    max-width: 100%;
    width: calc(100% - 31%);
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translatex(-50%);
    box-shadow: 0px 0px 15px #eee;
    background-color: #fff;
    border-radius: 10px;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primary-font);
    padding: 50px 70px;
}

.cta-head {
    width: 370px;
}

.cta-title {
    color: #0B132A;
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    padding-bottom: 15px;
}

.cta-desc {
    color: #4F5665;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.cta--btn {
    padding: 20px 65px;
    margin: 0;
}

/*******************************/
/*           footer            */
/*******************************/
.footer {
    background-color: #F8F8F8;
    padding: 60px 0px;
}

.footer-sec {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    font-family: var(--primary-font);
    column-gap: 20px;
    margin-top: 125px;
}

.footer-desc {
    color: #4F5665;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
    margin-right: 70px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin: 30px 0px 35px 0px;
}

.social-link i {
    font-size: 18px;
    width: 37px;
    height: 37px;
    color: #F53838;
    border: 1px solid #F53838;
    border-radius: 50%;
    line-height: 37px;
    text-align: center;
    box-shadow: 0 5px 10px #888;
}

.social-link i:hover {
    transform: scale(1.1);
}

.copyright {
    color: #AFB5C0;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.footer-col {
    justify-self: end;
}

.footer-heading {
    color: #0B132A;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 20px;
}

.footer-link:link,
.footer-link:visited {
    color: #4F5665;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    display: block;
    padding-bottom: 14px;
}

.footer-link:hover,
.footer-link:active {
    color: #000000;
}