@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* variables define */
:root {
    --theme-color: #EE4710;
    --heading-font-color: #1e1e1e;
    --font-family: "Inter", sans-serif;
}

/* Global style start  */
* {
    padding: 0;
    margin: 0;
}

body {
    background: #fff;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    list-style: none;
}

.wr-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
}

.wr-section_space {
    padding: 80px 0;
}

.wr-section-color {
    background: #fff;
}

.wr-subtitle {
    display: block;
    margin: 0 0 8px;
    color: var(--theme-color);
    font: 500 16px/26px var(--font-family);
}

.wr-title {
    margin: 0;
    color: var(--heading-font-color);
    font: 500 48px/57px var(--font-family);
}

.wr-description > p {
    margin: 18px 0 0;
    color: rgba(30, 30, 30, 0.8);
    font: 400 18px/25px var(--font-family);
}

.wr-btn {
    border: 0;
    gap: 10px;
    z-index: 0;
    height: 50px;
    overflow: hidden;
    min-width: 160px;
    cursor: pointer;
    color: #ffffff;
    position: relative;
    padding: 12px 30px;
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    text-decoration: none;
    letter-spacing: 0.5px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    font: 400 15px/25px var(--font-family);
    background: linear-gradient(90deg, #DD1885 0%, var(--theme-color) 100%), var(--theme-color);
}

.wr-btn:not(.wr-secondary-btn):hover {
    background: linear-gradient(0, #DD1885 0%, var(--theme-color) 100%), var(--theme-color);
}

.wr-primary-btn,
.wr-secondary-btn {
    padding: 28px 40px;
}

.wr-secondary-btn {
    background: #F7F7F8;
    color: var(--heading-font-color);
}

.wr-secondary-btn:hover {
    outline: none;
    color: #fff;
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}

.wr-secondary-btn:hover::before {
    width: 300px;
    height: 300px;
}

.wr-secondary-btn::before {
    content: "";
    left: 50%;
    z-index: -1;
    width: 40px;
    height: 40px;
    bottom: -40px;
    position: absolute;
    border-radius: 50%;
    background: var(--theme-color);
    transform: translateX(-50%);
    transition: width 0.5s, height 0.5s;
}

/* Global style end here  */
/* navbar style start here  */
.wr-navbar {
    gap: 20px;
    display: flex;
    padding: 24px 30px;
    position: relative;
    justify-content: space-between;
}

.wr-navbar .navbar-collapse {
    flex-grow: unset;
}

.wr-navbar .wr-navbar_list {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.wr-navbar .wr-navbar_list li .wr-navbar-link {
    padding: 12px 18px;
    color: var(--heading-font-color);
    text-transform: capitalize;
    font: 400 15px/25px var(--font-family);
}

.wr-header {
    position: relative;
    z-index: 3;
}

.wr-header::before {
    top: 0;
    right: 0;
    position: absolute;
}

/* navbar style end here  */
/* banner styling start here  */
.wr-banner-bg {
    position: relative;
    background: linear-gradient(to bottom, #fff 0%, #F4F5FA 100%);
}

.wr-banner-bg::after {
    top: 0;
    left: 0;
    content: '';
    z-index: 0;
    width: 100%;
    height: 100%;
    margin-top: -100px;
    position: absolute;
    background: url("../images/bannerbackground.webp");
    background-size: cover;
    background-position: 50%;
}

.wr-banner-content-wrapper {
    padding: 80px 0 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.wr-banner-content {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

.wr-banner-content .wr-title{
    font-size: 57px;
    line-height: 68px;
}
.wr-banner-content .wr-description > p {
    font-size: 20px;
    padding: 0 25px;
    line-height: 29px;
    color: rgba(30, 30, 30, 0.6);
}

.wr-highlited-text {
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(90deg, #DD1885 0%, #EE4710 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wr-button-wrapper {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin: 44px 0 0;
    align-items: center;
    justify-content: center;
}

.wr-experience-list {
    gap: 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 44px 0 0;
    align-items: center;
    list-style-type: none;
    justify-content: center;
}

.wr-experience-list li {
    gap: 8px;
    display: flex;
    list-style: none;
    align-items: center;
    color: rgba(0, 0, 0, 0.8);
    font: 400 15px/18px var(--font-family);
}

.wr-experience-list li > i {
    padding: 7px 7.5px;
    border-radius: 50%;
    color: #17B26A;
    display: inline-block;
    background: rgba(23, 178, 106, 0.16);
}

.wr-banner-img {
    margin: 0;
    width: 100%;
}

.wr-banner-img img {
    width: 100%;
}

/* banner styling end here  */
/* FAQ styling start here  */
.wr-faq-wrapper {
    gap: 40px;
    display: flex;
    align-items: start;
}

.wr-faq-content {
    width: 100%;
    max-width: 480px;
}

.wr-faq-content .wr-description > p {
    font-size: 16px;
}

.wr-faq-content .wr-title {
    font-weight: 600;
}

.wr-faq-content .wr-btn {
    height: 54px;
    font-size: 18px;
    margin-top: 30px;
    line-height: 28px;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.wr-accordion {
    width: 100%;
    border: none;
    max-width: 800px;
    border-radius: 0%;
    min-height: 480px;
}

.wr-accordion .wr-accordion-item {
    border: none;
    padding: 20px;
    border-radius: 14px;
    background: #F4F5FA;
}
.wr-accordion .wr-accordion-item .accordion-button {
    border: none;
    color: #000;
    min-width: 499px;
    box-shadow: none;
    background: transparent;
}
.wr-accordion-item + .wr-accordion-item {
    margin: 10px 0 0;
}

.wr-accordion-item h2 {
    gap: 10px;
    padding: 0;
    color: #000;
    display: flex;
    font-style: normal;
    font: 400 20px/32px var(--font-family);
}

.wr-accordion-item h2 span {
    color: #000;
    display: inline-block;
    font: 400 18px/28px var(--font-family);
}

.wr-accordion-item .accordion-body,
.wr-accordion-item .accordion-button {
    padding: 0;
}

.wr-accordion-item .accordion-body {
    margin-top: 15px;
}

.wr-accordion-item .accordion-body p {
    margin: 0;
    color: #585858;
    font: 400 16px / 26px var(--font-family);
}

.wr-accordion-item .accordion-button::after {
    display: none;
}

.wr-accordion-item .accordion-button span::after {
    top: 50%;
    right: 0;
    content: "\2b";
    font-size: 15px;
    font-weight: 900;
    line-height: 17px;
    position: absolute;
    transform: translateY(-50%);
    color: var(--heading-font-color);
    font-family: "Font Awesome 6 free";
}

.wr-accordion-item .accordion-button[aria-expanded="true"] span::after {
    content: "\f068";
}

/* FAQ Styling end here  */
/* Demos Styling start here  */
.wr-demo-section {
    overflow: hidden;
    position: relative;
    background: #F4F5FA;
}

.wr-right-shape {
    top: 207px;
    width: 690px;
    right: -494px;
    height: 638px;
    display: block;
    position: absolute;
    pointer-events: none;
}

.wr-left-shape {
    left: -491px;
    width: 642px;
    bottom: 168px;
    height: 653px;
    display: block;
    position: absolute;
    pointer-events: none;
}

.wr-demo-wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
    text-align: center;
}

.wr-demo-wrapper > .wr-btn-primary {
    font-size: 18px;
    line-height: 28px;
    margin: 50px 0 0;
}

.wr-demo-header {
    gap: 18px;
    display: flex;
    max-width: 580px;
    width: 100%;
    margin: 0 auto 60px;
    text-align: center;
    flex-direction: column;
    position: relative;
}

.wr-demo-header > span {
    display: flex;
    margin-bottom: -65px;
    justify-content: center;
    font: 800 10rem/8rem var(--font-family);
    background: linear-gradient(to bottom, #d8dbe7 38%, #f0f2f8 95%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.wr-demo-header > span em {
    display: inline;
    font-size: 7rem;
    line-height: 4rem;
    font-style: normal;
    background: linear-gradient(to bottom, #d8dbe7 38%, #f0f2f8 95%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.wr-demo-header .wr-title {
    font-weight: 600;
}

.wr-demo-header .wr-description > p {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: rgba(30, 30, 30, 0.8);
}

.wr-demo-body {
    padding: 0;
    width: 100%;
    margin: -17px;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.wr-demo-body ~ .wr-primary-btn {
    margin: 0 auto;
}

.wr-demo-body li {
    padding: 17px;
    list-style: none;
    width: calc(100% / 3);
}

.wr-demo-body li figure {
    margin: 0;
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 1px solid #00000008;
    transition: 0.5s all ease-in-out;
}

.wr-demo-body li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: object-position 2s linear;
}

.wr-demo-body li figure .wr-large-animation {
    transition-duration: 5s;
}

.wr-demo-content {
    width: 100%;
    max-width: 510px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 8px 20px;
    border: 1px solid #00000008;
    transition: all .4s ease-in-out;
}

.wr-demo-content:hover {
    box-shadow: 0px 10px 30px 0px rgba(16, 24, 40, 0.06);
}

.wr-demo-content:hover figure img {
    object-position: bottom;
}

.wr-demo-content:hover figure::after {
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.wr-demo-body figcaption {
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 3;
    visibility: hidden;
    position: absolute;
    transition: 0.3s all ease-in-out;
    transform: translate(-50%, -50%);
}

.wr-demo-body .wr-demo-content:hover figcaption {
    opacity: 1;
    visibility: visible;
}

.wr-preview-btn {
    height: 40px;
    display: flex;
    color: #fff;
    padding: 8px 20px;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: var(--theme-color);
    font: 500 16px/24px var(--font-family);
    box-shadow: 0px 10px 30px 0px rgba(16, 24, 40, 0.20);
}

.wr-demo-content-description {
    gap: 10px;
    display: flex;
    padding: 0 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    align-items: center;
    justify-content: space-between;
}

.wr-demo-content-description h6 {
    margin: 0;
    color: #000;
    font: 500 16px/24px var(--font-family);
}

.wr-demo-content-description > span {
    padding: 4px 15px;
    border-radius: 5px;
    display: inline-block;
    font: 600 11px / 22px var(--font-family);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    text-transform: uppercase;
}

.wr-green-bgclr {
    background: #dbf2e7;
    color: #1b855d;
}

.wr-red-bgclr {
    color: #e75050;
    background: #ffeded;
}

.wr-blue-bgclr {
    color: #0b6bca;
    background: #cce5ff;
}

/* Demos Styling end here  */
/* Tabs styling start here  */
.wr-tabs-section {
    width: 100%;
    padding: 40px 0 0;
    position: relative;
    background: #F4F5FA;
}

.wr-tabs-section::after {
    bottom: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 550px;
    display: block;
    position: absolute;
    background: url('../images/rectangle-shape.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.wr-tabs-section::before {
    bottom: 0;
    content: '';
    width: 100%;
    z-index: 1;
    height: 580px;
    display: block;
    position: absolute;
    background: url('../images/rectangle-shape01.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.wr-tabs-wrapper {
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.wr-tabs-header {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wr-tabs-header .wr-title {
    width: 100%;
    font-size: 36px;
    line-height: 43px;
    font-weight: 600;
    max-width: 460px;
}

.wr-tabs-header .wr-description {
    width: 100%;
    max-width: 510px;
}

.wr-tabs-header .wr-description > p {
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
    color: rgba(30, 30, 30, 0.8);
}

.wr-tabs-items {
    margin: 40px auto 0;
    display: block;
    max-width: 1200px;
    text-align: center;
}

.wr-tabs-content {
    margin: 0;
    gap: 10px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.03);
}

.wr-tab-link {
    cursor: pointer;
    list-style: none;
    color: #585858;
    padding: 12px 43px;
    border-radius: 10px;
    transition: all 0.5s ease;
    font: 500 16px/26px var(--font-family);
}

.wr-tab-link:hover {
    color: #000000;
    background: #fff;
}

.wr-tab-link.active {
    color: #000000;
    background: #fff;
}

.wr-tabscontent-wrapper {
    padding: 40px 0 60px 0;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wr-tab-content {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: none;
    color: #888;
    font-size: 15px;
    font-weight: 300;
    overflow: hidden;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    border: 10px solid #FFF;
    box-shadow: 0 263px 73px 0 rgba(0, 0, 0, 0.00), 0px 168px 67px 0px rgba(0, 0, 0, 0.01), 0px 95px 57px 0px rgba(0, 0, 0, 0.03), 0px 42px 42px 0px rgba(0, 0, 0, 0.04), 0px 11px 23px 0px rgba(0, 0, 0, 0.05);
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.wr-tab-content video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-bottom: -10px;
}

.wr-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

/* Tabs Styling end here  */
/* Textslider styling start here  */
.wr-textslider-wrapper {
    gap: 85px;
    width: 100%;
    display: flex;
    margin: 0 auto;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
    background: #fff;
    max-width: 1920px;
    flex-direction: column;
}

.wr-textslider {
    gap: 20px;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
}

.wr-textslider .wr-textslider-item {
    top: 0;
    left: 0;
    position: absolute;
    padding-left: 20px;
    pointer-events: none;
    animation: leftright 20s linear infinite;
}

.wr-textslider .wr-textslider-itemcopy {
    animation-name: leftright-reverse;
}

.wr-textslider span {
    color: #F4F5FA;
    display: inline-block;
    font: 800 110px/93px var(--font-family);
}

/* Textslider Styling end here  */
/* Feature Styling start here  */
.wr-feaure-wrapper {
    gap: 20px;
    display: grid;
    padding: 50px 0 0 0;
    grid-template-columns: repeat(5, 1fr);
}

.wr-feaure-wrapper li {
    list-style: none;
}

.wr-feature-description span {
    display: block;
    color: #182230;
    font: 400 18px/28px var(--font-family);
}

.wr-feature-content {
    gap: 10px;
    height: 100%;
    display: flex;
    padding: 65px 20px;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    transform: translateY(0);
    transition: transform .25s ease-in-out;
    box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.02),
    40px 0 70px 0 rgba(0, 0, 0, 0.02),
    -40px 0 70px 0 rgba(0, 0, 0, 0.02),
    0 -40px 70px 0 rgba(0, 0, 0, 0.02);
}

.wr-feature-content:hover {
    transform: translateY(-5px);
}

.wr-feature-content figure {
    margin: 0;
    max-width: 50px;
    max-height: 50px;
}

.wr-feature-content figure img {
    width: 100%;
    height: 100%;
}

.wr-stunning-section {
    position: relative;
    overflow: hidden;
}

.wr-stunning-section .wr-left-shape {
    top: -33px;
    z-index: 2;
    left: -551px;
    width: 642px;
    height: 653px;
}

.wr-stunning-section .wr-left-shape svg {
    height: 100%;
    width: 100%;
    opacity: 0.3;
    fill: #7F56D9;
    filter: blur(85px);
}

.wr-stunning-section .wr-right-shape {
    top: 487px;
    height: 638px;
}

.wr-stunning-header {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    flex-direction: column;
}

.wr-stunning-header .wr-title {
    font-weight: 600;
}

.wr-stunning-header .wr-description {
    max-width: 600px;
    text-align: center;
}

.wr-stunning-wrapper {
    display: flex;
    align-items: center;
    border-radius: 20px;
    position: relative;
    background: #F4F5FA;
    margin: 220px 0 140px 0;
    box-shadow: 0px 263px 73px 0px rgba(0, 0, 0, 0.00), 0px 168px 67px 0px rgba(0, 0, 0, 0.01), 0px 95px 57px 0px rgba(0, 0, 0, 0.03), 0px 42px 42px 0px rgba(0, 0, 0, 0.04), 0px 11px 23px 0px rgba(0, 0, 0, 0.05);
}

.wr-stunning-content {
    width: 100%;
    max-width: 800px;
    padding: 80px 50px;
    text-align: start;
}

.wr-stunning-content .wr-title {
    font-size: 36px;
    line-height: 43px;
    font-weight: 600;
    padding-right: 245px;
}

.wr-stunning-content .wr-description > p {
    font-size: 16px;
    line-height: 26px;
    padding-right: 35px;
    margin-bottom: 30px;
    max-width: 540px;
}

.wr-icons {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 18px;
    align-items: center;
}

.wr-stunning-img {
    height: 100%;
    position: relative;
    margin: -130px 0 -150px 0;
}

/* .wr-stunning-img > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} */
.wr-playicon {
    top: 50%;
    left: 30px;
    z-index: 9;
    width: 120px;
    height: 120px;
    display: flex;
    cursor: pointer;
    position: absolute;
    border-radius: 50%;
    background: #fff;
    align-items: center;
    justify-content: center;
    transform: translateY(-67%);
    box-shadow: 0px 4.8px 36px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12.000000953674316px);
}

/* Feature Styling end here  */
/* Striking Styling start here  */
.wr-striking-header {
    gap: 50px;
    display: flex;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
}

.wr-striking-header > h1 {
    margin: 0;
    background: linear-gradient(90deg, #DD1885 0%, #EE4710 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font: 800 132px/80% var(--font-family);
}

.wr-striking-heading .wr-title {
    font-weight: 600;
}

.wr-striking-heading .wr-description {
    max-width: 630px;
}

.wr-striking-features {
    gap: 85px;
    display: flex;
    padding-top: 50px;
    flex-direction: column;
    overflow: hidden;
    min-height: 450px;
    max-height: 450px;
    position: relative;
}

.wr-striking-features::after {
    left: 0;
    content: '';
    bottom: 0;
    width: 100%;
    z-index: 2;
    height: 160px;
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.wr-striking-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
    height: 100%;
}

.wr-striking-item .wr-striking-feature-listcopy {
    animation-name: leftright-reverse;
}

.wr-striking-feature-list {
    margin: 0;
    gap: 20px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    animation: leftright 60s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 20px;
}

.wr-striking-feature-listv2 {
    animation: rightleft 60s linear infinite;
}

.wr-striking-feature-listv2copy {
    animation: rightleft-reverse 60s linear infinite;
}

.wr-striking-feature-list
.wr-striking-feature-list li {
    list-style: none;
    position: relative;
}

.wr-striking-tag {
    display: flex;
    color: #484848;
    min-width: 385px;
    background: #FFF;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    font: 400 15px / 20px var(--font-family);
    border: 1px solid #00000008;
    box-shadow: 0px 12px 10px -4px rgba(16, 24, 40, 0.04);
    padding: 5px 10px;
}

.wr-striking-tag span {
    padding: 13px 14px;
}

.wr-striking-tag span i {
    width: 34px;
    height: 34px;
    display: flex;
    font-size: 17px;
    color: #F04438;
    border-radius: 8px;
    align-items: center;
    background: #F7F7F8;
    justify-content: center;
}

.wr-new-feature {
    top: -8px;
    right: -13px;
    color: #fff;
    min-height: 20px;
    padding: 0px 5px;
    position: absolute;
    border-radius: 6px;
    align-items: center;
    display: inline-flex;
    background: #F04438;
    justify-content: center;
    font: 600 10px/16px var(--font-family);
}

/* Striking Styling end here  */
/* Users Styling start here  */
.wr-users-section {
    position: relative;
    background: #F4F5FA;
}

.wr-users-section::after {
    left: 0;
    content: '';
    bottom: 0;
    width: 100%;
    z-index: 2;
    height: 400px;
    position: absolute;
    background: linear-gradient(180deg, rgba(244, 245, 250, 0.00) 0%, #FFF 70%);
}

.wr-users-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wr-users-heading .wr-title {
    font-weight: 600;
}

.wr-users-heading .wr-description {
    max-width: 690px;
    text-align: center;
}

.wr-users-listing {
    gap: 30px;
    display: flex;
    padding: 0 15px;
    margin-top: 50px;
}

.wr-users-list {
    gap: 30px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.wr-users-list li {
    list-style: none;
}

.wr-user-detail {
    gap: 18px;
    padding: 24px;
    display: flex;
    max-width: 377px;
    background: #FFF;
    border-radius: 10px;
    flex-direction: column;
}

.wr-user-rating {
    gap: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wr-user-rating span {
    display: block;
    color: #182230;
    font: 400 14px/20px var(--font-family);
}

.wr-user-rating strong {
    display: block;
    color: #182230;
    font: 500 14px/20px var(--font-family);
}

.wr-user-detail p {
    margin-bottom: 0;
    text-align: start;
    color: rgba(0, 0, 0, 0.8);
    font: 400 15px / 22px var(--font-family);
}

.wr-user-name {
    gap: 10px;
    display: flex;
    align-items: center;
}

.wr-user-name img {
    height: 34px;
    width: 34px;
    object-fit: cover;
    border-radius: 50%;
}

.wr-user-name h3 {
    gap: 4px;
    display: flex;
    color: #000;
    margin-bottom: 0;
    align-items: start;
    flex-direction: column;
    font: 600 14px/17px var(--font-family);
}

.wr-user-name h3 span {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    font: 400 12px/16px var(--font-family);
}

/* User styling end here  */
/* Template styling start here  */
.wr-template-section {
    width: 100%;
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

.wr-template-section::after {
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 300px;
    position: absolute;
    background: #F4F5FA;
}

.wr-template-wrapper {
    gap: 10px;
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 0 100px;
    max-width: 1600px;
    align-items: center;
    border-radius: 20px;
    background: #0D1829;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    box-shadow: 0px 263px 73px 0px rgba(0, 0, 0, 0.00), 0px 168px 67px 0px rgba(0, 0, 0, 0.01), 0px 95px 57px 0px rgba(0, 0, 0, 0.03), 0px 42px 42px 0px rgba(0, 0, 0, 0.04), 0px 11px 23px 0px rgba(0, 0, 0, 0.05);
}

.wr-template-wrapper > span {
    left: -124.579px;
    bottom: -125.5px;
    pointer-events: none;
    position: absolute;
    width: 827px;
    display: block;
    z-index: 99;
    height: 271px;
    fill: var(--Info-200, #B2DDFF);
    filter: blur(132px);
}

.wr-template-content .wr-title {
    width: 100%;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    max-width: 470px;
    line-height: 43px;
    display: inline-block;
}

.wr-template-content .wr-description > p {
    width: 100%;
    font-size: 16px;
    max-width: 500px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.wr-template-content .wr-btn {
    height: 55px;
    margin-top: 30px;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.wr-template-img {
    margin: 0;
    gap: 20px;
    flex: none;
    min-height: 600px;
    max-width: 600px;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
}

.wr-sliderimg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 285px;
    object-fit: cover;
    padding-top: 20px;
    position: absolute;
    background-size: cover;
    background: url("../images/slider-01.webp");
    animation: vertical-top 20s linear infinite;
}

.wr-slider-item {
    width: calc(100% / 2);
}

.wr-template-img :nth-child(2) .wr-sliderimg {
    right: 0;
    left: auto;
    background: url("../images/slider-02.webp");
    animation: vertical-bottom 20s linear infinite;
}

.wr-template-img :nth-child(2) .wr-sliderimg-copy {
    animation-name: vertical-bottomreverse;
}

.wr-sliderimg-copy {
    animation-name: vertical-topreverse;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateX(100%);
}

/* Template styling end here  */
/* Footer styling start here  */
.wr-footer-wrapper {
    background: #0D1829;
}

.wr-footer-content {
    gap: 20px;
    display: flex;
    padding: 24px 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wr-copyright-info {
    color: #EAEAEA;
    display: inline-block;
    font: 400 14px/20px var(--font-family);
}

.wr-footermenu-list {
    margin: 0;
    gap: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.wr-footermenu-list li {
    list-style: none;
}

.wr-footermenu-list li a {
    color: #EAEAEA;
    text-decoration: none;
    display: inline-block;
    font: 400 14px/20px var(--font-family);
}

/* Footer styling end here  */

/* Keyframes start here  */
@keyframes vertical-top {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@keyframes vertical-topreverse {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes vertical-bottom {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes vertical-bottomreverse {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes leftright {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes leftright-reverse {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes rightleft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rightleft-reverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Keyframes end here  */
/* Responsive start here  */
@media (max-width: 1600px) {
    .wr-stunning-content .wr-title {
        padding-right: 80px;
    }
}

@media (max-width: 1550px) {
    .wr-stunning-img {
        margin: -140px 0 -160px 0;
    }

    .wr-stunning-content .wr-title {
        padding-right: 80px;
    }
}

@media (max-width: 1440px) {
    .wr-stunning-img {
        margin: -190px 0 -230px 0;
    }

    .wr-stunning-content .wr-title {
        padding: 0;
    }
}

@media (max-width: 1366px) {
    .wr-stunning-content {
        padding: 80px 15px;
    }

    .wr-feaure-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .wr-navbar .navbar-toggler {
        border: 0;
        flex: none;
        padding: 0;
        width: 48px;
        height: 48px;
        color: #fff;
        box-shadow: none;
        margin-left: auto;
        border-radius: 10px;
        font: 700 20px/42px var(--font-family);
        background: linear-gradient(90deg, #DD1885 0%, var(--theme-color) 100%), var(--theme-color);
    }

    .wr-navbar .navbar-collapse {
        left: 0;
        top: 96px;
        z-index: 1;
        width: 100%;
        position: absolute;
        background: white;
        border-radius: 10px;
        box-shadow: 0px 10px 30px 0px rgba(16, 24, 40, 0.06);
    }

    .wr-playicon {
        width: 80px;
        height: 80px;
    }

    .wr-navbar .wr-navbar_list li {
        width: 100%;
        text-align: start;
    }

    .wr-navbar .wr-navbar_list li + li {
        border-top: 1px solid #eee;
    }

    .wr-stunning-wrapper {
        flex-direction: column;
        margin: 80px 0 140px 0;
    }
    .wr-tabscontent-wrapper{
        padding-bottom: 0;
        min-height: auto;
    }
    .wr-tabs-section{
        padding: 0;
    }
    .wr-faq-section{
        padding-top: 0;
    }
    .wr-stunning-img {
        margin: 0px 0 -142px 0;
    }

    .wr-playicon {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .wr-template-wrapper {
        padding: 0 15px;
    }

    .wr-icons {
        justify-content: center;
    }

    .wr-stunning-content {
        text-align: center;
        padding: 20px 15px;
    }

    .wr-feaure-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .wr-demo-body {
        margin: 0;
    }

    .wr-demo-body li {
        width: calc(100% / 2);
    }

    .wr-users-listing {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wr-stunning-img > img {
        width: 100%;
    }

    .wr-faq-wrapper {
        flex-direction: column;
    }

    .wr-faq-content {
        max-width: 100%;
        text-align: center;
    }

    .wr-template-wrapper {
        flex-direction: column;
    }

    .wr-template-wrapper {
        padding: 30px 20px;
    }

    .wr-template-img {
        margin-top: 20px;
    }

    .wr-template-content {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .wr-banner-content .wr-title {
        font-size: 40px;
        line-height: 50px;
    }

    .wr-faq-content .wr-title,
    .wr-users-heading .wr-title,
    .wr-striking-heading .wr-title,
    .wr-stunning-header .wr-title,
    .wr-demo-header .wr-title {
        font-size: 36px;
        line-height: 43px;
    }

    .wr-banner-img {
        margin: 20px 0 0;
    }

    .wr-banner-content .wr-description > p {
        font-size: 18px;
        line-height: 25px;
    }

    .wr-striking-header > h1 {
        font-size: 90px;
    }

    .wr-demo-body {
        margin: 0;
    }

    .wr-demo-body li {
        width: 100%;
    }

    .wr-demo-content {
        margin: 0 auto;
    }

    .wr-tabs-content {
        flex-direction: column;
    }

    .wr-feaure-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .wr-faq-content .wr-btn {
        width: 100%;
        max-width: 480px;
    }

    .wr-faq-wrapper {
        flex-direction: column;
    }

    .wr-template-content .wr-btn {
        width: 100%;
        max-width: 480px;
    }

    .wr-template-content .wr-title,
    .wr-template-content .wr-description > p {
        max-width: 100%;
    }

    .wr-user-detail {
        margin: 0 auto;
    }

    .wr-accordion .wr-accordion-item .accordion-button {
        min-width: auto;
    }

    .wr-tabs-header {
        text-align: center;
        flex-direction: column;
    }

    .wr-striking-header {
        padding: 0 15px;
        text-align: center;
        flex-direction: column;
    }

    .wr-demo-wrapper > .wr-btn-primary {
        width: 100%;
        max-width: 480px;
        margin: 57px auto 0 auto;
    }

    .wr-stunning-content .wr-title,
    .wr-stunning-content .wr-description > p {
        padding: 0;
    }

    .wr-stunning-wrapper {
        flex-wrap: wrap;
    }

    .wr-tabs-section::before,
    .wr-tabs-section::after {
        display: none;
    }

    .wr-users-section {
        padding: 80px 15px 0;
    }

    .wr-accordion-item h2 span {
        width: 100%;
        max-width: 460px;
    }

    .wr-stunning-img {
        margin: 0px 0 -130px 0;
    }
    .wr-footer-content{
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .wr-template-img {
        display: none;
    }
}

@media (max-width: 575px) {
    .wr-demo-header > span {
        font-size: 5rem;
        line-height: 5rem;
    }

    .wr-demo-header > span em {
        font-size: 3rem;
        line-height: 2rem;
    }

    .wr-navbar .text-end {
        display: none;
    }

    .wr-stunning-img {
        margin: 0 0 -95px 0;
    }

    .wr-stunning-wrapper {
        margin-bottom: 50px;
    }
    .wr-slider-section{
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .wr-stunning-img {
        margin: 0 0 -75px 0;
    }

    .wr-feaure-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 375px) {
    .wr-stunning-img {
        margin: 0 0 -60px 0;
    }

    .wr-demo-content:hover figcaption {
        width: max-content;
    }
}

/* Responsive End here  */