@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --grey: #475467;
    --blue: #0A8DDE;
    --cream: #F1E9DC;
    --light-cream: #F9F6EF;
    --yellow: #E99B23;
    --dark-grey: #101828;
    --roboto: "Roboto", sans-serif;
    --playfair: "Playfair Display", serif;
}

body {
    background: #fffefa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
img{
    max-width: 100%;
}

h1 {
    margin-bottom: 0;
}

h2 {
    margin-bottom: 0;
}

h3 {
    margin-bottom: 0;
}

h4 {
    margin-bottom: 0;
}

h5 {
    margin-bottom: 0;
}

h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--grey);
    letter-spacing: 2%;
}



a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;

}

li {
    list-style: none;
    font-family: "Roboto", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

input {
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

figure {
    margin: 0;
}

.blue-btn {
    padding: 12px 24px;
    border: 2px solid var(--blue);
    border-radius: 4px;
    color: #fff;
    font-family: 'Roboto';
    font-size: 16px;
    background: var(--blue);
    font-weight: 500;
    transition: 0.5s;
    display: inline-block;
}

.blue-btn:hover {
    background: #0572b6;
    border-color: #0572b6;
    color: #fff;
}

.blue-btn.border-btn {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.blue-btn.border-btn:hover {
    background: var(--blue);
    color: #fff;
}

a.grey-border-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #d0d5dd;
    color: var(--dark-grey);
    border-radius: 4px;
    font-weight: 500;
    background: #fff;
}

a.grey-border-btn:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

a.grey-border-btn:hover img {
    filter: brightness(0) invert(1);
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: var(--dark-grey);
    letter-spacing: -1%;
    letter-spacing: normal;
    font-weight: 700;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-cols-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-item {
    width: 100%;
}

.item {
    width: 100%;
}

.items {
    width: 100%;
}

.gap {
    grid-gap: 20px;
}

.container {
    max-width: 1500px;
    padding-left: 60px;
    padding-right: 60px;
}

body.white header.site-header {
    background: #fff;
}

body.white section.inner-banner {
    background: #fff;
}

/*header start*/
nav.site-nav {
    display: flex;
    justify-content: space-between;
    width: 75%;
}

.profile-popup .side-nav .account {
    padding-bottom: 0;
}

.site-logo {
    width: 25%;
}


.home header.site-header {
    background-color: var(--cream);
}

header.site-header {
    background: transparent;
    font-size: 16px;
    padding: 26px 0;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--grey);
    background-color: var(--light-cream);
    z-index: 999;
    position: relative;
    width: 100%;
    transition: 0.3s;
}

header.site-header.sticky {
    background: #0C0B0B;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    padding: 10px 0;
    position: fixed;
}

.site-header .site-nav ul li a.active {
    border-bottom: 1px solid var(--blue);
}

.site-logo img {
    width: 100%;
    max-width: 180px;
}

.site-nav ul li a {
    display: inline-block;
    font-family: 'Roboto';
    font-weight: 500;
    position: relative;
    color: var(--grey);
    border-bottom: 1px solid transparent;
    text-transform: capitalize;
}

.site-nav ul li a:hover {
    border-bottom: 1px solid var(--blue);
}

.site-nav ul li a {
    position: relative;
}

.site-header {
    padding: 10px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.closed-menu {
    display: none;
}

.menu-toggle {
    display: none !important;
}

.blue-btn {
    padding: 12px 24px;
    border: 2px solid var(--blue);
    border-radius: 4px;
    color: #fff;
    font-family: 'Roboto';
    font-size: 16px;
    background: var(--blue);
    font-weight: 500;
    transition: 0.5s;
    text-transform: initial;
}

.blue-btn:hover {
    background: #0572b6;
    border-color: #0572b6;
    color: #fff;
}

.blue-btn.border-btn {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.blue-btn.border-btn:hover {
    background: var(--blue);
    color: #fff;
}

.header-btns {
    display: flex;
    gap: 16px;
}
nav.site-nav>ul>li {
    line-height: 40px;
}

nav.site-nav>ul>li>a {
    line-height: normal;
text-decoration:none;
}
ul.sub-menu {
    position: absolute;
    background: #fff;
    width: 40%;
    margin-top: 0px;
    padding: 20px;
    border-radius: 8px;
    display: none;
    flex-wrap: wrap;
    height: fit-content;
    justify-content: space-between;
}
.site-nav ul li:hover ul.sub-menu {
    display: flex;
} 

ul.sub-menu li {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sub-menu li .img {
    width: 48px;
    height: 48px;
    background: #E8F1FF;
    border-radius: 50%;
    object-fit: contain;
    line-height: 48px;
    text-align: center;
}

.sub-menu li div>p:first-child {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--dark-grey);
    padding-bottom: 4px;
}

.sub-menu li div>p:last-child {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--grey);
}

.sub-menu li .img img {
    width: 25px;
}

ul.sub-menu:after {
    content: "";
    position: absolute;
    top: -13px;
    left: 21px;
    margin-left: -5px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

ul.sub-menu.large {
    width: 100%;
    left: 50%;
    max-width: 65%;
    margin: 0px auto auto;
    transform: translateX(-50%);
    display: none;
    align-items: flex-start;
    padding: 30px;
}

ul.sub-menu.large:after {
    left: 69%;
    opacity: 0;
}
ul.sub-menu.large li {
    width: 30%;
    display: block;
}

ul.sub-menu.large li>ul {
    display: block;
    padding-left: 30px;
}

ul.sub-menu.large li>ul li {
    width: 100%;
    padding: 5px 0;
}

ul.sub-menu.large li>ul li a {
    color: var(--dark-grey);
    font-weight: 500;
    font-family: 'Roboto';
}

ul.sub-menu.large li>ul li a:hover {
    border-color: transparent;
    color: var(--blue);
}

.sub-menu.large li>p {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #0A8DDE;
}

ul.sub-menu.large li>ul li:before {
    content: "";
    background: var(--dark-grey);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 17px;
    transform: translateY(-50%);
    left: -20px;
}

.avatar-content {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #475467;
}

.avatar-content a {
    display: inline-block;
    color: inherit;
}

.avatar-content a span {
    display: inline-block;
    margin-left: 10px;
}

.profile-popup .modal-dialog {
    margin-left: auto;
    margin-right: 6%;
    max-width: 330px;
    margin-top: 100px;
}

.profile-popup .modal-footer {
    justify-content: start;
    padding: 20px;
    margin-top: 10px;
}

.profile-popup .side-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-popup .account {
    border-top: 0;
    padding-top: 0;
}
.profile-popup .modal-content {
    border-radius: 10px;
}

.profile-popup .modal-header {
    border-color: #EAECF0;
    padding: 25px;
}
.profile-popup .profile-info-card {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
}
.profile-info-card-content h4 {
    font-size: 18px;
}
.profile-info-card-content p {
    font-size: 16px;
    font-weight: 400;
}
.page-links ul li {
    margin-bottom: 10px;
    position: relative;
}

.profile-popup .page-links ul li:nth-of-type(3) {
    border-bottom: 1px solid #EAECF0;
    padding-bottom: 10px;
}

.profile-popup .page-links ul li a {
    padding: 8px 12px 8px 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    color: #475467;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.profile-popup .page-links ul li a img {
    max-width: 24px;
}

.profile-popup .account-btn a {
    border-radius: 4px;
    border-style: solid;
    border-color: var(--primary-50, #007cc5);
    border-width: 1.5px;
    padding: 12px 24px 12px 20px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    font-family: "Roboto", sans-serif;
    color: #007cc5;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.profile-popup .profile-logout a {
    display: flex;
    gap: 10px;
    color: #475467;
}
/*header end*/


/*--banner--*/
.banner {
    background: #F1E9DC;
    padding: 73px 0 210px;
    position: relative;
}

.banner:before {
    content: "";
    position: absolute;
    bottom: 265px;
    left: 44%;
    width: 147px;
    height: 67px;
    background: url(../img/circle-line.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.banner .content h1 {
    color: #101828;
    font-family: "Playfair Display", serif;
    font-size: 54px;
    line-height: 60px;
    font-weight: 800;
}

.banner .content h1 span {
    color: #0a8dde;
    font-size: inherit;
    font-family: 'Playfair Display';
}

.banner .content h1 line {
    display: block;
}

.banner .gap {
    gap: 50px;
}

.banner .content p {
    color: #475467;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 16px;
    padding-top: 24px;
}

.banner .content ul li {
    color: #475467;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-bottom: 8px;
    padding-left: 32px;
}

.banner .content ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 20px;
    height: 15px;
    background: url(../img/right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-center {
    align-items: center;
}

.banner .content ul {
    margin-bottom: 32px;
}

.banner .banner-img img {
    position: relative;
    z-index: 1;
}

/*****couldget*****/
.couldget .couldget_main {
    background: transparent;
    border-radius: 8px;
    height: 100%;
}

.couldget {
    position: relative;
    z-index: 2;
    margin-top: -139px;
}

.couldget .grid-cols-2 {
    grid-template-columns: 200px 1fr;
}

.couldget h3 {
    color: #101828;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    max-width: 560px;
    margin: 0 auto 0;
}

.couldget p {
    color: #344054;
    padding-bottom: 32px;
    padding-top: 20px;
}

.couldget .gap {
    grid-gap: 62px;
    align-items: center;
}

.couldget .btns .custon-btn {
    background: #a66a00;
    border-color: #a66a00;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.couldget .btns .custon-btn:hover {
    background: var(--dark-grey);
    border-color: var(--dark-grey);
}

/* stat-section */
.booster-stat {
    padding: 120px 0;
    position: relative;
}

.booster-stat>img {
    position: absolute;
    right: 0;
    top: 28px;
}

.stat-inner {
    border: 2px solid var(--blue);
    text-align: center;
    border-radius: 8px;
    padding: 50px 15px 40px;
    margin-bottom: 30px;
}

.stat-inner p.stat-name {
    padding: 20px 0 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.stat-inner .stat-number {
    font-size: 42px;
    font-weight: bold;
    color: var(--dark-grey);
}

section.booster-stat h2 {
    margin-bottom: 32px;
}

.stat-inner .icon img {
    width: 60px;
    height: 60px;
}

/* Platform feature */
.platform-feature {
    background-color: #F9F6EF;
    padding: 90px 0;
}

.platform-feature h2 {
    margin-bottom: 32px;
}

.feature-inner {
    padding: 24px;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    height: 100%;
}

.feature-inner .f-icon img {
    width: 48px;
    height: 48px;
}

.feature-inner .f-icon h3 {
    padding: 24px 0 12px;
    font-size: 20px;
    font-weight: 500;
}

.feature-inner p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/* Clubs-booster */
.clubs-booster .owl-carousel {
    display: block;
    padding-top: 32px;
}

.clubs-booster {
    padding: 120px 0 40px;
    background-color: #FFFEFA;
    text-align: center;
}

.clubs-row {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    max-width: 90%;
    margin: auto;
}

.clubs-booster p {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 15px;
    font-family: "Playfair Display", serif;
}

.club-info img {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
}

p.club-name {
    color: var(--dark-grey);
    padding: 0;
}

p.designation {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue);
    padding: 0;
}

.clubs-booster h2 {
    position: relative;
    display: inline-block;
}

.clubs-booster h2 img {
    position: absolute;
    bottom: 25px;
    right: -75px;
    width: 112px;
}

.owl-carousel .owl-item .club-info img {
    max-width: 96px;
    margin: auto auto 20px;
}

/* footer */
footer {
    padding: 42px 0;
    background-color: #00629E;
}

footer .form-sec img {
    width: 160px;
}

footer h2 {
    background-color: #004A78;
    text-align: center;
    color: #FCFCFD;
    font-size: 52px;
    padding: 35px 0;
}

footer h2 a {
    color: var(--yellow);
    border-bottom: 1px solid var(--yellow);
    font-family: 'Playfair Display';
}

footer h2 a:hover {
    border-bottom: none;
    color: #FCFCFD;
}

.footer-inner {
    padding: 60px 0 0;
}

.footer-menu h4 {
    font-size: 20px;
    color: var(--yellow);
    font-weight: 600;
    font-family: 'Playfair Display';
}

.footer-menu ul {
    padding: 10px 0 20px;
}

.footer-menu ul li a {
    color: #fff;
    font-size: 16px;
    display: block;
    padding-bottom: 5px;
}

.footer-menu ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-bottom p {
    color: #fff;
}

.footer-bottom p.copyright {
    font-weight: 400;
    text-align: center;
}

.footer-bottom .social-icon {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

footer .form-sec p {
    color: #fff;
    padding: 16px 0 32px;
    font-size: 16px;
    line-height: 24px;
}

footer .form-sec {
    border-radius: 16px;
    padding: 50px 32px;
    background: #004A78;
    margin-right: 62px;
}

.form-sec .input-wrapper {
    border: 1px solid rgb(255 255 255 / 60%);
    border-radius: 4px;
    padding: 8px 10px;
    color: rgb(255 255 255 / 40%);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-sec .input-wrapper label {
    display: block;
}

.form-sec .input-wrapper input {
    width: 100%;
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    color: #fff;
    font-size: 14px;
}

.form-sec input[type="submit"] {
    background: var(--yellow);
    border: 0;
    padding: 10px 32px;
    border-radius: 4px;
    color: #232323;
    font-weight: 500;
    text-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}

.form-sec input[type="submit"]:hover {
    background-color: var(--dark-grey);
    color: #fff;
}

/* video-sec */
.video-sec {
    background-color: var(--cream);
    padding: 92px 0 350px;
}

.video-sec h2 {
    max-width: 500px;
}

.video-sec p {
    padding: 20px 0 32px;
    max-width: 89%;
}

.video-btns {
    display: flex;
    gap: 20px;
}

.video-btns .blue-btn.border-btn:hover img {
    filter: brightness(0) invert(1);
}

.slider-sec .owl-carousel {
    padding: 40px 42px 40px;
    background: #F9F6EF;
    border-radius: 8px;
    position: relative;
    top: -250px;
}

.slider-sec {
    background: #fffefa;
}

.slider-sec .row {
    align-items: center;
    width: 100%;
    display: flex;
    padding-bottom: 30px;
}

.slider-text {
    width: 100%;
}

.slider-text p {
    padding: 20px 0 32px;
}

.slider-sec .owl-dots button span {
    width: 10px;
    height: 10px;
    background: #bfc3cb;
    display: inline-block;
    border-radius: 50%;
}

.slider-sec .owl-dots button.active span {
    transform: scale(1.4);
    background-color: var(--blue);
}

.slider-sec .owl-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 50%;
    margin-right: 0;
    margin-left: auto;
}

/* tab-sec */
section.tab-sec {
    background: #fffefa;
    text-align: center;
    margin-top: -100px;
    padding-bottom: 100px;
}

section.tab-sec .container>p {
    padding: 16px 0 20px;
    max-width: 670px;
    margin: 0 auto;
}

.tab-inner .nav {
    justify-content: center;
}

.nav-pills .nav-link {
    padding: 16px 24px;
    font-size: 16px;
    color: var(--grey);
    border-bottom: 2px solid transparent;
    border-radius: 0;
}

.nav-pills .nav-link:hover {
    background: rgb(10 141 222 / 10%);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: rgb(10 141 222 / 10%);
    border-color: var(--blue);
    color: var(--dark-grey);
    font-weight: 500;
}

.tab-content h3 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.product_item_main .product-detail .product-title {
    text-align: left;
    font-size: 28px;
    font-weight: 400;
    font-family: 'Open Sans';
    margin-top: 20px;
}
.product_item_main .product-detail .product-title a:hover {
    color: #000 !important;
}

/*.product_item_main .product-item .product-detail h3.product-title a.single_product_api:hover {
    color: #00c0ff !important;
}*/

.product_item_main .product-item:hover .product-title a.single_product_api {
    color: #00c0ff;
}
.product_item_main .product-detail .item-price {
    font-size: 20px;
    display: block;
    text-align: left;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: normal;
    color: #00c0ff !important;
}
.tab-content {
    text-align: left;
}

.tab-has-content {
    border: 1px solid #EAECF0;
    border-radius: 8px;
    padding: 32px 0 0;
    height: 100%;
}

.tab-content h4 {
    font-size: 32px;
    font-family: 'Playfair Display';
    color: #475467;
    margin-bottom: 0;
}

.tab-content .price {
    display: flex;
    align-items: flex-end;
    padding: 30px 0;
}

.tab-content .price p.dollar {
    margin: 0;
    padding: 0;
    font-size: 60px;
    max-width: 100%;
    display: inline-block;
    line-height: 40px;
    color: var(--dark-grey);
}
.packs-intro .tab-has-content.paid-pack.active .price p.dollar {
    color: #fff !important;
}
.packs-intro .tab-has-content.free-pack.active .price .dollar {
    color: #fff !important;
}
.tab-content.yearly .price .dollar.yearly,
.tab-content .price .dollar.monthly {
    display: inline-block;
}
.tab-content .price .dollar.yearly,
.tab-content.yearly .price .dollar.monthly {
    display: none;
}
.packs-intro .tab-content .price span.yearly-text,
.packs-intro .tab-content.yearly .price span.monthly-text {
    display: none;
}
.packs-intro .tab-content.yearly .price span.yearly-text,
.packs-intro .tab-content .price span.monthly-text{
    display: initial;
}

.product_item_main .product-item .cart-button a:hover {
    color: #fff !important;
}
.tab-content .price span {
    line-height: 15px;
}

.tab-content .small-txt {
    font-size: 20px;
    margin-bottom: 30px;
}

.tab-feature h5 {
    font-size: 16px;
    font-weight: 600;
}

.tab-feature p {
    font-size: 16px;
    font-weight: 400;
}

.tab-sec .tab-feature>p {
    margin-bottom: 20px;
}

.tab-sec .tab-feature p {
    padding-top: 0;
    font-size: 16px;
    font-weight: 400;
}

.tab-feature ul li {
    padding-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tab-feature ul li span {
    color: var(--grey);
}

.tab-feature {
    border-top: 1px solid #EAECF0;
    padding: 32px 32px 40px;
}

.tab-content .tab-top {
    padding: 0 32px;
}

.tab-has-content.blue {
    background: #E8F1FF;
}

.tab-has-content.white {
    background: #fff;
}

.tab-has-image {
    position: relative;
}

.tab-has-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tab-has-image {
    border: 1px solid #EAECF0;
    border-radius: 8px;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.tab-img-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 32px 32px 40px;
}

.tab-img-txt h4 {
    color: #fff;
    font-family: 'Roboto';
    font-size: 32px;
}

.tab-img-txt h4 span {
    color: var(--blue);
}

.tab-img-txt p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    padding: 14px 0 20px;
}

.tab-content .row {
    position: relative;
    margin: 0 -10px;
}

.tab-content .row>img {
    position: absolute;
    width: auto;
    left: -40px;
    top: -55px;
}

.tab-sec .container {
    position: relative;
}

.tab-sec .container>img {
    position: absolute;
    left: 20%;
    width: 200px;
    bottom: -215px;
}

.tab-feature ul li img {
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
}

.tab-btn {
    text-align: center;
    padding-top: 32px;
}

.tab-content .price-txt.price {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

.tab-content .price-txt.price .head {
    font-size: 36px;
    max-width: 100%;
    margin: 0;
    padding-top: 0;
    padding-bottom: 10px;
    color: var(--dark-grey);
}

.tab-feature ul li span b {
    display: block;
}

.compare-modal .modal-dialog {
    max-width: 959px;
}

.compare-modal {
    padding: 0 20px;
}

.compare-modal .modal-body {
    padding: 25px 32px;
}

.compare-modal .modal-header {
    padding: 10px 32px;
    background: #E8F1FF;
    border: 0;
}

.modal-header h2 {
    color: var(--blue);
}

.compare-modal .modal-body .popup-inner>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 32px;
}

.compare-modal .popup-inner .col-in {
    border-radius: 8px;
    border-style: solid;
    border-color: #eaecf0;
    border-width: 1px;
    padding: 24px 20px 24px 20px;
    margin-bottom: 20px;
}

.compare-modal .func>span {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-grey);
}

.compare-modal .tool-div p {
    padding: 10px 0;
    font-weight: 400;
}

.compare-modal .tool-price {
    display: flex;
    gap: 5px;
    align-items: center;
}

.compare-modal .annual-cost {
    font-size: 18px;
    color: var(--grey);
}

.compare-modal .cost {
    font-size: 24px;
    font-weight: 600;
}

.compare-modal .func {
    display: flex;
    align-items: center;
    gap: 10px;
}

/***footer mobile**/
.footer-menu.footer-acc-box .footer-acc-links {
    display: none;
}

.footer-menu.footer-acc-box .footer-acc-head {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 8px;
    border-bottom: 1px solid #fff;
}

.footer-menu.footer-acc-box .footer-acc-head span svg {
    transform: rotate(90deg);
    margin-right: 5px;
}

.footer-menu.footer-acc-box.open .footer-acc-head span svg {
    transform: rotate(270deg);
    margin-right: 5px;
}

.footer-menu.footer-acc-box .footer-acc-head h4 {
    font-family: 'Playfair Display';
    color: #fff;
}

.footer-menu.footer-acc-box.open .footer-acc-head h4 {
    color: var(--yellow);
}

.footer-menu.footer-acc-box {
    display: none;
}

/* tab-mobile */
/* Styles for custom select box */
.custom-select {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.select-selected {
    width: 100%;
    padding: 14px 10px;
    border: 2px solid #EAECF0;
    border-radius: 8px;
    color: var(--dark-grey);
    appearance: none;
    background: url("../img/chevron-down.png") no-repeat;
    background-position: 98%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
}

.select-items {
    position: absolute;
    background-color: #fff;
    border: 2px solid #EAECF0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    width: 100%;
    text-align: left;
    margin-top: -5px;
}

.select-items div {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
    padding: 5px 10px;
    border-top: 1px solid #EAECF0;
}

.select-items div:hover {
    background-color: #ddd;
}

.select-hide {
    display: none;
}

.faq-tab-content {
    display: none;
}

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

.faq-tab-content .tab-has-content {
    padding: 24px;
    text-align: left;
}

.faq-tab-content .tab-has-content h3 {
    font-family: 'Playfair Display';
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-grey);
}

#tab-select-content .tab-has-content .blue-btn {
    margin: 32px 0 16px;
    width: 100%;
    text-align: center;
}

#tab-select-content p.dollar {
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-grey);
}

.tab-sec .tab-selection {
    display: none;
}

/**popus-mobile**/
.booster-vs-modal .modal-header {
    padding: 12px 16px;
    background: #E8F1FF;
    border: 0;
}

.booster-vs-modal .modal-header h2 {
    font-size: 18px;
}

.booster-vs-modal .modal-body {
    padding: 16px;
}

.booster-vs-modal .func span {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--dark-grey);
}

.booster-vs-modal .tool-price {
    display: flex;
    gap: 10px;
}

.booster-vs-modal .tool-div p,
.booster-vs-modal .tool-div .tool-price {
    font-weight: 400;
    font-size: 13px;
}

.booster-vs-modal .tool-div .cost {
    font-weight: bold;
}

.booster-vs-modal .col-in {
    margin-bottom: 20px;
}

.booster-vs-modal p.disclaimer {
    padding: 16px 0;
    font-size: 12px;
    line-height: normal;
}

.popup-table td {
    padding: 6px 0;
}

.popup-table td p {
    font-size: 14px;
    font-weight: 400;
}

.popup-table tr>td:not(:first-child),
.popup-table tr>th:not(:first-child) {
    text-align: center;
}

.popup-table table {
    width: 100%;
    margin-bottom: 32px;
}

.popup-table p.table-p {
    text-align: center;
    padding: 12px 0;
}

/*****innerpages***/
/***About page**/
.inner-banner {
    background: var(--light-cream);
}

.inner-banner .bread-crumb {
    padding: 20px 0 0;
}

.inner-banner .bread-crumb ul {
    display: flex;
    flex-wrap: wrap;
}

.inner-banner .bread-crumb ul li img {
    margin: 0 8px;
    display: inline-block;
}

.inner-banner .bread-crumb ul>li:last-child,
.inner-banner .bread-crumb ul>li:last-child a {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

.inner-banner .bread-crumb li a,
.inner-banner .bread-crumb li {
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
}

.inner-banner .banner-inner {
    padding: 62px 0;
    text-align: center;
}

.inner-banner h1 {
    font-family: 'Playfair Display';
    font-size: 54px;
    font-weight: 900;
    max-width: 800px;
    margin: auto auto 24px;
}

.banner-inner p {
    font-size: 20px;
    max-width: 880px;
    margin: auto;
    line-height: 30px;
}

.inner-banner .banner-inner h1 {
    position: relative;
}

.inner-banner .banner-inner h1>img {
    position: absolute;
    right: -100px;
    top: -20px;
}

/***about-inner**/
.about-inner .about-row {
    padding: 120px 0;
}

.about-inner>.about-row:nth-child(even) {
    padding: 92px 0;
}

.about-inner .about-row .row {
    align-items: center;
}

.about-inner .about-img img {
    width: 100%;
    border-radius: 32px;
}

.about-inner .about-img {
    max-width: 92%;
}

.about-inner>.about-row:nth-child(even) .about-img {
    margin-right: 0;
    margin-left: auto;
}

.about-inner .about-content h2 {
    margin-bottom: 20px;
}

.about-inner .about-content p span {
    color: var(--blue);
}

.about-inner>.about-row:nth-child(even) {
    background-color: var(--light-cream);
}

.about-inner>.about-row:nth-child(even) .row {
    flex-direction: row-reverse;
}

.about-inner .about-row .blue-btn {
    margin-top: 24px;
}

/***boostr-club***/
.boostr-inner .boostr-row {
    padding: 120px 0;
}

.boostr-inner>.boostr-row:nth-child(even) {
    padding: 92px 0;
}

.boostr-inner .boostr-row .row {
    align-items: center;
}

.boostr-inner .boostr-img img {
    width: 100%;
    border-radius: 32px;
}

.boostr-inner .boostr-img {
    max-width: 92%;
}

.boostr-inner>.boostr-row:nth-child(odd) .boostr-img {
    margin-right: 0;
    margin-left: auto;
}

.boostr-inner .boostr-content h2 {
    margin-bottom: 20px;
}

.boostr-inner .boostr-content p span {
    color: var(--blue);
    text-decoration: underline;
}

.boostr-inner>.boostr-row:nth-child(even) {
    background-color: var(--light-cream);
}

.boostr-inner>.boostr-row:nth-child(odd) .row {
    flex-direction: row-reverse;
}

.boostr-inner .boostr-row .blue-btn {
    margin-top: 32px;
}

.boostr-inner .list>p {
    font-weight: 600;
    padding: 16px 0 12px;
}

.boostr-inner .list ul {
    margin-bottom: 16px;
}

.boostr-inner .list ul li {
    display: flex;
    gap: 8px;
    padding-bottom: 5px;
}

.boostr-inner .list ul li svg {
    width: 5%;
    position: relative;
    top: 5px;
}

.boostr-inner .list ul li p {
    width: 95%;
}

.boostr-inner>.boostr-row:nth-child(even) svg path {
    stroke: var(--yellow);
}

.boostr-inner>.boostr-row:nth-child(even) .blue-btn {
    background: var(--yellow);
    border-color: var(--yellow);
}

.boostr-inner>.boostr-row:nth-child(even) .blue-btn:hover {
    background: #0572b6;
    border-color: #0572b6;
}

/* latest-blog-post */
.latest-blog {
    padding: 92px 0;
    background:transparent;
}

.latest-blog h2 {
    margin-bottom: 32px;
}

.blog-post-col img {
    border-radius: 16px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-post-content {
    padding-top: 20px;
}

.blog-post-content .date {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
}

.blog-post-content h3 {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.blog-post-content h3 a:first-child {
    width: calc(100% - 40px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog-post-content h3 a {
    font-size: 24px;
    padding-right: 10px;
    font-weight: 600;
    margin: 8px 0;
    color: var(--dark-grey);
}

.blog-post-content p {
    font-size: 16px;
    color: #475467;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog-post-col img:hover {
    filter: grayscale(1);
}

.blog-post-col h3 a:hover {
    color: var(--yellow);
}

.blog-post-col svg:hover path {
    stroke: var(--yellow);
}

.blog-post-col {
    margin-bottom: 32px;
}

.blog-post-col a {
    display: block;
}

/**web presence**/
.platform-feature.web-feature h2 {
    text-shadow: none;
    margin-bottom: 32px;
    position: relative;
}

.web-feature .feature-inner {
    background: #e8f1ff;
    border-color: #99cbff;
}

.platform-feature.web-feature {
    padding: 120px 0;
    background: #fffefa;
    position: relative;
}

.platform-feature.web-feature .vector-top {
    position: absolute;
    top: -45px;
    left: 13%;
}

.platform-feature.web-feature h2 .frame {
    position: absolute;
    right: 0;
    top: -50px;
    opacity: 0.5;
}

.platform-feature.web-feature .vector-bottom svg {
    opacity: 0.3;
}

.platform-feature.web-feature .vector-bottom {
    position: absolute;
    bottom: 25px;
    left: 60%;
}

.feature-inner {
    padding: 20px;
}

/**/
.p-120 {
    padding: 120px 0;
}

.p-92 {
    padding: 92px 0;
}

.bg-cream {
    background: var(--light-cream);
}

.boostr-web .boostr-row .row {
    align-items: center;
}

.boostr-web .boostr-content p {
    padding: 16px 0 32px;
}

.boostr-web .boostr-content {
    max-width: 92%;
}

.boostr-web>.boostr-row:nth-child(even) .boostr-content {
    margin-right: 0;
    margin-left: auto;
}

.boostr-web .boostr-img img {
    width: 100%;
}

.boostr-row.has-vector {
    position: relative;
}

.boostr-row.has-vector .vec-top {
    position: absolute;
    top: 15px;
    right: 10%;
}

.boostr-row.has-vector .vec-bottom {
    position: absolute;
    left: 59%;
}

/***bottom-create-section**/

.btm-create-sec {
    padding-bottom: 62px;
}

.btm-create-sec .btn-create-box {
    padding: 40px 32px;
    background: #FFB95D;
    border-radius: 8px;
    position: relative;
}

.btm-create-sec .btn-create-box>img {
    width: 100%;
}

.btm-create-sec .btm-create-txt {
    max-width: 95%;
    margin-right: 20px;
    margin-left: auto;
}

.btm-create-sec .btm-create-txt .blue-btn {
    background: #A66A00;
    border-color: #A66A00;
}

.btm-create-sec .btm-create-txt .blue-btn:hover {
    background: #0572b6;
    border-color: #0572b6;
}

.btm-create-sec .btm-create-txt p {
    padding: 20px 0 32px;
}

.btm-create-sec .btm-create-txt h2 {
    font-size: 32px;
    line-height: 30px;
}

.btm-create-sec .vec-1 {
    position: absolute;
    top: -63px;
    left: -5px;
}

.btm-create-sec .vec-2 {
    position: absolute;
    right: -5px;
    top: -60px;
}

.btm-create-sec .btn-create-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*****Terms***********/
.banner-inner .small-blue-txt {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.term-condition-wrapper {
    word-break: normal;
}

.terms-inner ol li {
    list-style-type: auto;
}

.terms-inner ol li:has(b)::marker {
    font-weight: bold;
}

.term-condition-wrapper h2 {
    font-size: 32px;
    font-family: var(--roboto);
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: 20px;
}

.term-condition-wrapper p,
.term-condition-wrapper li,
.term-condition-wrapper a {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--grey);
}

.term-condition-wrapper a {
    color: var(--blue);
    text-decoration: underline;
}

.terms-inner>ol>li>h3,
.terms-inner>ol>li {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-grey);
}

.terms-inner>ol>li h3 {
    padding: 32px 0 20px;
}

.terms-inner ol.lower-alpha li {
    list-style: lower-alpha;
}

.terms-inner ol.lower-alpha li::marker,
ol.roman li::marker {
    font-weight: 400;
}

.terms-inner ol.roman li {
    list-style: lower-roman;
}

.term-condition-wrapper .terms-inner ol li>p {
    padding-top: 20px;
}

.terms-inner ol>li>ol {
    padding-left: 0;
}

.terms-inner ol.roman,
.terms-inner ol.lower-alpha {
    padding-left: 40px;
}

/****boostr-blog******/
.inner-banner .banner-inner.blog-banner h1>img {
    right: 0;
}

.blog-inner .container>img {
    position: absolute;
}

.blog-inner .blog-vec-1 {
    left: 85px;
    top: -85px;
}

.blog-inner .container {
    position: relative;
}

.blog-inner .container .blog-vec-2 {
    left: 50%;
    transform: translateX(-50%);
    top: -120px;
}

.blog-inner .container .blog-vec-3 {
    left: 61%;
    top: -45px;
}

.blog-inner .container .blog-vec-4 {
    right: 180px;
    top: -30px;
}

.blog-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.blog-inner {
    padding: 92px 0;
}

.blog-inner .latest-blog {
    padding: 0;
}

.search-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
}

.search-wrap input {
    border: 0;
    padding: 12px;
    color: var(--grey);
}

.search-wrap input:focus {
    box-shadow: none;
}

a.filter-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #d0d5dd;
    color: var(--dark-grey);
    border-radius: 4px;
}

a.filter-btn:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

a.filter-btn:hover img {
    filter: brightness(0) invert(1);
}

.search-wrap span img {
    position: relative;
    right: 10px;
}

.blog-top form {
    width: 60%;
}

.filter-search {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    width: 50%;
}

/***filter popup**/
.filter-modal .modal-body {
    padding: 20px;
}

.bottom-btns {
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
}

.bottom-btns .border-btn.blue-btn {
    border-color: transparent;
}

.filter-modal .modal-header h2 {
    font-size: 18px;
    font-family: 'Roboto';
    color: var(--dark-grey);
}

.categories .category-btn {
    padding: 8px 16px;
    border: 1px solid #EAECF0;
    border-radius: 4px;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.categories .category-btn:hover,
.categories .category-btn.selected {
    color: var(--blue);
    border-color: var(--blue);
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0 24px;

}

div#filterModal .modal-dialog {
    max-width: 400px;
}

.filter-modal .popup-inner h3 {
    font-size: 14px;
    color: var(--grey);
    font-weight: 500;
}

.datepicker {
    padding: 12px 0 20px;
}

.datepicker input {
    display: block;
    padding: 12px 24px;
    border: 1px solid #d0d5dd;
    color: var(--grey);
    border-radius: 4px;
    width: 100%;
}

.datepicker input:focus {
    outline: 1px solid var(--blue);
}

.datepicker input::placeholder {
    color: var(--grey);
}

/**pagination**/
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #eaecf0;
    position: relative;
}

.pagination-wrap ul.pagination {
    align-items: center;
}

.pagination-wrap .button {
    color: var(--yellow);
    padding: 10px 16px;
    border: 1px solid #FFDDB7;
    border-radius: 4px;
    background: #F9F6EF;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border: 1px solid #FFDDB7;
    border-radius: 4px;
}

.pagination .page-item:last-child .page-link img {
    transform: rotate(180deg);
}

.pagination a.page-link {
    border: 0;
    margin-left: 0 !important;
    padding: 10px 16px;
    color: var(--grey);
    background-color: transparent;
}

.pagination .active-page a.page-link {
    color: var(--yellow);
    background: transparent;
}

.pagination a.page-link:hover {
    background: #f9f6ef;
    color: var(--yellow);
}

.pagination-wrap>img {
    position: absolute;
    left: 48%;
    bottom: -15px;
    z-index: 2;
}

.pagination-wrap a.page-numbers {
    padding: 0;
    border: 0;
}

.pagination-wrap .pagination a.page-link {
    padding: 0;
}

.pagination-wrap a.page-numbers.next {
    padding: 0;
    border: 1px solid #ffddb7;
}

.pagination-wrap ul.pagination span{
    background: transparent;
    border: 0;
    padding: 10px;
}
.search-result {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-result p {
    color: var(--secondary-color);
    font-weight: 600;
}

.result-name {
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    padding: 10px 12px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.result-name .name {
    padding: 4px 8px;
    background: #f2f4f7;
    border: 1px solid #eaecf0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #344054;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.result-name .name span {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/10px auto no-repeat;
    opacity: 0.7;
    cursor: pointer;
}

.result-name .name span:hover {
    opacity: 1;
}

/**blog Detail**/
.single-post .inner-banner {
    background: transparent;
}

.single-post header {
    background: transparent;
}

.post-inner-content {
    padding: 120px 0 20px;
}

.post-inner-content p {
    font-weight: 400;
}

.post-inner-content h3 {
    font-size: 32px;
    font-weight: 600;
    padding-top: 32px;
}

.post-inner-content p {
    padding-top: 20px;

}

.post-inner-content ol {
    padding-top: 20px;
}

.post-inner-content ol li,
.post-inner-content ol li::marker {
    list-style: auto;
    font-weight: bold;
    font-size: 18px;
    color: var(--grey);
}

.inner-img img {
    width: 100%;
}

.inner-img {
    padding: 48px 0;
}

.note {
    border-left: 3px solid var(--blue);
    margin: 48px 0 28px;
}

.note p {
    padding-top: 0;
    padding-left: 20px;
}

p.note-txt {
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    padding-bottom: 32px;
    color: var(--dark-grey);
}

p.writer {
    font-size: 16px;
}

.result-name.tag h3 {
    display: block;
    width: 100%;
    padding: 20px 0;
}

.result-name.tag {
    border-radius: 0;
    border-width: 1px 0 0 0;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 32px;
}

.rate-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating p {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
}

a.share-btn {
    display: inline-block;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
    color: var(--dark-grey);
    border-radius: 8px;
}

a.share-btn img {
    margin-right: 5px;
}

a.share-btn:hover {
    background: var(--blue);
    color: #fff;
}

a.share-btn:hover img {
    filter: brightness(0) invert(1);
}

.post-img {
    height: 650px;
}

.post-img img {
    height: 100%;
    object-fit: cover;
}

.post-inner-content .row>div:last-child {
    padding-left: 60px;
}

/***newsletter**/
.newsletter form input {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    color: var(--grey);
}

.newsletter {
    background: #F9F6EF;
    border-radius: 8px;
    padding: 32px;
}
.has-newsletter-mob {
    display: none;
}


.newsletter h3 {
    padding-top: 0;
    font-size: 20px;
    text-align: left;
}

.newsletter p {
    padding-top: 0;
    font-size: 14px;
}

.newsletter form {
    padding-top: 32px;
}

.newsletter input:focus {
    outline: 1px solid var(--yellow);
}

.newsletter input[type="submit"] {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark-grey);
    font-weight: 600;
}

.newsletter input[type="submit"]:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/***support-sponsor***/
.support-sponsors {
    padding: 62px 0;
}

.support-sponsors h3 {
    color: var(--blue);
    font-size: 20px;
    border-bottom: 1px solid #d0d5dd;
    padding-bottom: 10px;
    padding-top: 0;
    text-align: left;
}

.support-sponsors .support-adds {
    padding: 60px 32px;
    background-color: #F9F8F7;
    margin-top: 28px;
}

.support-sponsors .support-adds img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/***categories link***/
.categories-link-sec h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.categories .category-link a {
    color: var(--blue);
    font-size: 14px;
    text-decoration: underline;
}

.categories-link-sec p.category-link {
    padding: 0;
}

.categories-link-sec .categories {
    padding: 0;
    column-gap: 29px;
}

.categories .category-link a:hover {
    color: var(--yellow);
}

/**recent blogs txt***/
.recent-blogs-txt h3 {
    font-size: 20px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    padding-top: 62px;
}

.recent-blog-info h4 {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}

.recent-blog-info {
    margin-bottom: 30px;
}

.recent-blog-info p {
    padding-top: 15px;
    font-size: 14px;
    line-height: 18px;
}

/****boostr-index****/
.inner-banner .banner-inner.boostr-index-banner h1>img {
    right: -20px;
    top: -40px;
}

.boostr-index-inner {
    padding: 80px 0 120px;
}

.boostr-index-inner .container>img {
    position: absolute;
}

.boostr-index-inner .container>.index-vec-1 {
    left: 18px;
    top: -45px;
}

.boostr-index-inner .container {
    position: relative;
}

.boostr-index-inner .container>.index-vec-2 {
    left: 60%;
    top: -10px;
}

.boostr-index-inner .container>.index-vec-3 {
    right: 17%;
    top: -60px;
}

.boostr-index-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.boostr-index-top .select_wrap .option p {
    color: var(--dark-grey);
}

.boostr-index-top form {
    width: 36%;
}

.boostr-index-top .filter-search {
    width: auto;
}

.boostr-index-top .left {
    width: 80%;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.boostr-index-top .right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}


/* custom-select-wrap */

.select_wrap {
    width: 80px;
    position: relative;
    user-select: none;
    padding: 12px 16px;
    border: 1px solid #d0d5dd;
    color: var(--dark-grey);
    border-radius: 4px;
}

.search-wrap:has(input:focus-visible) {
    border-color: var(--blue);
}

.select_wrap .default_option {
    background: #fff;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.select_wrap .default_option:before {
    content: "";
    position: absolute;
    top: 4px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: url("../img/double-arrow.png") no-repeat;
    background-size: contain;
}

.select_wrap .select_ul {
    position: absolute;
    top: 51px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 5px 5px;
    display: none;
    z-index: 2;
    filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
}

.select_wrap:hover {
    box-shadow: 0 4px 10px -1px rgba(22, 42, 90, 0.16);
}

.select_wrap .select_ul li {
    padding: 10px 20px;
    cursor: pointer;
}

.select_wrap .select_ul li:first-child:hover {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover {
    background: #F9F6EF;
}

.select_wrap .option {
    display: flex;
    align-items: center;
}

.select_wrap .option .icon {
    background: url('https://i.imgur.com/oEZu0sK.png') no-repeat 0 0;
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.select_wrap.active .select_ul {
    display: block;
}

/***club-card**/
.club-card {
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    background: #FCFCFF;
    position: relative;
    margin-bottom: 24px;
    height: calc(100% - 24px);
}

.bootr-club-wrapper {
    padding: 24px 0 8px;
}

.club-card>img {
    position: absolute;
    top: 16px;
    right: 16px;
}

.club-card-img {
    text-align: center;
    padding: 50px 0;
    position: relative;
    display: block;
}

.club-card-text {
    border-top: 1px solid #eaecf0;
    padding: 12px 24px;
}

.club-card-text p {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
}

.club-card-text .location {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* .card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgb(0 0 0 / 15%);
    transition: 0.3s;
}

.card-hover {
    display: none;
}

.club-card-img:hover .card-hover {
    display: flex;
} */
.club-card-img:hover:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 20%);
}

/***custom-checkbox**/
.custom-checkbox {
    position: relative;
    display: block;
    cursor: pointer;
    padding-left: 30px;
    font-size: 14px;
    color: #667085;
    margin: 15px 0;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--blue);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--blue);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container {
    padding: 10px 0;
}

/**sort-modal**/
.sort-modal .modal-body {
    padding: 20px;
}

.modal-header h2.modal-title.black {
    color: var(--dark-grey);
    font-size: 18px;
    font-family: 'Roboto';
}

/**/
.filter-modal .select_wrap {
    width: 100%;
    margin: 12px 0 20px;
}

.filter-modal .select_wrap .option p {
    font-size: 16px;
    color: #667085;
}

.select_wrap.activity .default_option:before {
    background: url("../img/chevron-down.png");
}

/***multiple selection***/
.selectMultiple {
    width: 100%;
    position: relative;
}

.selectMultiple select {
    display: none;
}

.selectMultiple>div {
    position: relative;
    z-index: 2;
    padding: 12px 12px 5px 12px;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    min-height: 48px;
    transition: box-shadow 0.2s ease;
    width: 100%;
    border: 1px solid #d0d5dd;
    cursor: pointer;
}

.selectMultiple>div:hover {
    box-shadow: 0 4px 24px -1px rgba(22, 42, 90, 0.16);
}

.selectMultiple>div .arrow {
    right: 1px;
    top: 0;
    bottom: 0;
    cursor: pointer;
    width: 28px;
    position: absolute;
}

.selectMultiple>div .arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 20px;
    height: 20px;
    background: url("../img/chevron-down.png");
}


.selectMultiple>div span {
    display: block;
    position: absolute;
    left: 12px;
    cursor: pointer;
    top: 8px;
    line-height: 28px;
    font-size: 16px;
    color: #667085;
    transition: all 0.2s ease;
    font-weight: 500;
}

.selectMultiple>div span.hide {
    opacity: 0;
    visibility: hidden;
    transform: translate(-4px, 0);
}

.selectMultiple>div a {
    position: relative;
    padding: 0 24px 6px 8px;
    line-height: 28px;
    color: #1e2330;
    display: inline-block;
    vertical-align: top;
    margin: 0 6px 0 0;
}

.selectMultiple>div a em {
    font-style: normal;
    display: block;
    white-space: nowrap;
}

.selectMultiple>div a:before {
    content: "";
    left: 0;
    top: 0;
    bottom: 6px;
    width: 100%;
    position: absolute;
    display: block;
    background: #F2F4F7;
    z-index: -1;
    border-radius: 4px;
    border: 1px solid #EAECF0;
}

.selectMultiple>div a i {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 28px;
    display: block;
}

.selectMultiple>div a i:before,
.selectMultiple>div a i:after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #667085;
    border-radius: 1px;
}

.selectMultiple>div a i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.selectMultiple>div a i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.selectMultiple>div a.notShown {
    opacity: 0;
    transition: opacity 0.1s ease;
}

.selectMultiple>div a.notShown:before {
    width: 28px;
    transition: width 0.35s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
}

.selectMultiple>div a.notShown i {
    opacity: 0;
    transition: all 0.2s ease 0.2s;
}

.selectMultiple>div a.notShown em {
    opacity: 0;
    transform: translate(-6px, 0);
    transition: all 0.3s ease 0.2s;
}

.selectMultiple>div a.notShown.shown {
    opacity: 1;
}

.selectMultiple>div a.notShown.shown:before {
    width: 100%;
}

.selectMultiple>div a.notShown.shown i {
    opacity: 1;
}

.selectMultiple>div a.notShown.shown em {
    opacity: 1;
    transform: translate(0, 0);
}

.selectMultiple>div a.remove:before {
    width: 28px;
    transition: width 0.3s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}

.selectMultiple>div a.remove i {
    opacity: 0;
    transition: all 0.2s ease 0s;
}

.selectMultiple>div a.remove em {
    opacity: 0;
    transform: translate(-12px, 0);
    transition: all 0.3s ease 0s;
}

.selectMultiple>div a.remove.disappear {
    opacity: 0;
    transition: opacity 0.4s ease 0s;
}

.selectMultiple>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    z-index: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    border-radius: 8px;
    transform: translate(0, 20px) scale(0.8);
    transform-origin: 0 0;
    filter: drop-shadow(0 12px 20px rgba(22, 42, 90, 0.08));
    transition: all 0.3s ease, transform 0.3s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s;
}

.selectMultiple>ul li {
    color: #1e2330;
    background: #fff;
    padding: 12px 16px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease 0.3s, opacity 0.4s ease 0.3s, border-radius 0.3s ease 0.3s;
}

.selectMultiple>ul li:first-child {
    border-radius: 8px 8px 0 0;
}

.selectMultiple>ul li:first-child:last-child {
    border-radius: 8px;
}

.selectMultiple>ul li:last-child {
    border-radius: 0 0 8px 8px;
}

.selectMultiple>ul li:last-child:first-child {
    border-radius: 8px;
}

.selectMultiple>ul li:hover {
    background: #F9F6EF;
    color: var(--grey);
}

.selectMultiple>ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.selectMultiple>ul li.beforeRemove {
    border-radius: 0 0 8px 8px;
}

.selectMultiple>ul li.beforeRemove:first-child {
    border-radius: 8px;
}

.selectMultiple>ul li.afterRemove {
    border-radius: 8px 8px 0 0;
}

.selectMultiple>ul li.afterRemove:last-child {
    border-radius: 8px;
}

.selectMultiple>ul li.remove {
    transform: scale(0);
    opacity: 0;
}

.selectMultiple>ul li.remove:after {
    -webkit-animation: ripple 0.4s ease-out;
    animation: ripple 0.4s ease-out;
}

.selectMultiple>ul li.notShown {
    display: none;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.4s ease;
}

.selectMultiple>ul li.notShown.show {
    transform: scale(1);
    opacity: 1;
}

.selectMultiple.open>div {
    box-shadow: 0 4px 20px -1px rgba(22, 42, 90, 0.12);
}


.selectMultiple.open>ul {
    transform: translate(0, -5px) scale(1);
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    25% {
        transform: scale(30, 30);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    25% {
        transform: scale(30, 30);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}

.selectMultiple {
    margin: 12px 0 24px;
}

body .dribbble {
    position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

body .dribbble:hover {
    opacity: 1;
}

body .dribbble img {
    display: block;
    height: 36px;
}

/**blog-result**/
.result-txt {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
}

/*****claimed profile***/
.profile-banner {
    padding-top: 72px;
    height: 294px;
}

.profile-banner .desk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-banner-bottom .row {
    justify-content: space-between;
}

.profile-intro {
    display: flex;
    padding-left: 32px;
    gap: 24px;
}

.profile-intro>img {
    border: 4px solid #fff;
    margin-top: -65px;
    border-radius: 50%;
    width: 194px;
    height: 194px;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 30px;
    color: var(--dark-grey);
    line-height: 30px;
}

.profile-info .location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0 16px;
}

.profile-info .location span {
    font-size: 18px;
    line-height: 20px;
    color: var(--grey);
    border-bottom: 1px solid var(--grey);
}

.profile-badge {
    display: inline-block;
    text-transform: uppercase;
    background: #ecfdf3;
    border-radius: 9999px;
    border: 1px solid #abefc6;
    padding: 4px 12px  4px 12px;
    color: #067647;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.profile-badge a {
    color: inherit;
}


.profile-btns {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.profile-banner-bottom {
    padding-top: 20px;
    position: relative;
}

.profile-btns a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-banner-bottom>img {
    position: absolute;
    left: 52%;
    top: 45px;
}

.profiles .mob-img {
    display: none;
}

/**/
.about-club {
    padding: 52px 0 0;
}

.about-club-top {
    border-bottom: 1px solid #EAECF0;
    margin-bottom: 32px;
}

.about-club-top p {
    border-bottom: 2px solid var(--blue);
    display: inline-block;
    padding: 0 35px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
}

.about-club h2 {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.about-club h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-grey);
}

.about-us-txt p {
    font-size: 16px;
    line-height: 26px;
    padding: 16px 0 24px;
}

.about-us-txt p a {
    color: var(--blue);
    text-decoration: underline;
    font-size: 18px;
}

.about-us-txt p a:hover {
    color: var(--yellow);
}

.about-us-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.about-us-btns a {
    padding: 12px;
    border: 2px solid #FFDDB7;
    border-radius: 8px;
    background: #FEFAF2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E99B23;
    font-weight: 500;
}

.about-us-btns a:hover {
    background: #ffddb76b;
    border-color: #ffddb76b;
}

.about-club-txt {
    position: relative;
}

.about-club-txt>img {
    position: absolute;
    bottom: -50px;
    left: 45%;
}

.business-info {
    padding: 62px 0 0;
    position: relative;
}

.business-info>img {
    position: absolute;
    right: 38px;
    top: 0;
}

.business-blue-box-col {
    padding: 20px;
    background: #E8F1FF;
    border: 2px solid #57B1FF;
    border-radius: 8px;
    height: 100%;
}

.business-blue-box-col p:first-child {
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.business-blue-box-col p:last-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
}

.club-revenue {
    padding-top: 24px;
}

.table {
    margin-top: 24px;
    width: 100%;
    border: 1px solid #D0D5DD;
    border-radius: 8px !important;
    overflow: hidden;
}

.table table {
    width: 100%;
}

.table table th {
    padding: 32px;
    font-family: 'Playfair Display';
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-grey);
    border: 0 !important;
    background: #F9F6EF;
    text-align: center;
}

.table table tr th:first-child {
    text-align: left;
}

.table>:not(caption)>*>* {
    border: 0;
}

.table tbody tr td {
    border-top: 1px solid #D0D5DD;
    padding: 27px 32px;
    font-size: 18px;
    color: var(--grey);
    text-align: center;
}

.table tbody tr td:first-child {
    border-right: 1px solid #D0D5DD;
    color: var(--dark-grey);
    font-weight: 600;
    text-align: left;
}

.table tr th,
.table tr td {
    width: 50%;
}

.about-club .support-sponsors .support-adds {
    padding: 32px;
    height: 490px;
}
.about-club .support-sponsors h3 {
    border-bottom: 1px solid #EAECF0;
}

/**club-focus**/
.club-focus {
    padding: 62px 0;
    position: relative;
}

.club-focus>img {
    position: absolute;
    right: 20%;
    top: 0;
}

.focus-card {
    padding: 24px;
    border: 1px solid #E99B23;
    border-radius: 4px;
    background: #F9F6EF;
    height: 100%;
}

.focus-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 16px;
}

.focus-card p {
    font-size: 16px;
    font-weight: 400;
}

.focus-row .row {
    row-gap: 24px;
}

/**/
.about-club .result-name.tag {
    border: 0;
    position: relative;
    padding: 0 0 42px;
    margin: 0;
}

.about-club .result-name.tag>img {
    position: absolute;
    left: 50%;
    top: 0;
}

.about-club .result-name.tag h2 {
    width: 100%;
}

.about-club .result-name.tag .name {
    border-radius: 8px;
}

/***/
.related-clubs.with-bg .owl-carousel {
    display: none;
}

.related-clubs.with-bg {
    background-color: #F8F9F9;
}

.related-clubs .club-info .location img {
    width: 15px;
    height: auto;
    margin: 0;
}
.related-clubs .club-info .related-club-img {
    border-radius: 100px;
    width: 96px;
    height: 96px;
    display: block;
    background-size: cover;
    margin: 0 auto;
    background-position: center;
}
.related-clubs .club-info {
    text-align: center;
    flex: 1;
}

.related-clubs .club-info .location {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0 16px;
    justify-content: center;
}

.related-clubs .club-info .location span {
    font-size: 16px;
    line-height: 24px;
    color: var(--grey);
}

.about-club .related-clubs {
    padding: 62px 0 62px;
}

.related-clubs.with-bg .club-name {
    font-size: 20px;
    min-height: 98px;
    font-family: 'Roboto';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*unclaimed*/
.profile-badge.unclaimed {
    display: inline-block;
    color: #fff;
    background: #e99b23;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    border-color: #e99b23;
    cursor: pointer;
}

.profile-badge.unclaimed a{
    color: inherit;
}
.newsletter form .search-wrap input {
    border: 0;
    background: transparent;
    margin: 0;
}

.related-clubs.with-bg .clubs-row {
    max-width: 95%;
    margin: auto;
}

.newsletter form .search-wrap {
    background: #fff;
    margin-bottom: 32px;
}

.about-club .newsletter {
    margin-bottom: 42px;
}

.newsletter form .search-wrap input:focus {
    outline: none;
}

.newsletter form .search-wrap:has(input:focus) {
    border: 1px solid var(--yellow);
}

.golden-forms.wrapper.mini.claim-form.active {
     display: none; 
    position: fixed;
    inset: 0;
    background: rgba(0 0 0 /30%);
    z-index: 999;
    overflow-y: auto;
}

.golden-forms.wrapper.mini.claim-form.active.show {
     display: block; 
}

.golden-forms.wrapper.mini.claim-form.active form#ubl-ajax-claim-form {
    width: 100%;
    max-width: 750px;
    margin: auto;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.golden-forms.wrapper.mini.claim-form.active form#ubl-ajax-claim-form .pfmodalclose {
    text-align: right;
}
form#ubl-ajax-claim-form .pfsearchformerrors a.button.pfsearch-err-button {
    font-size: 14px;
    color: #000;
}
.golden-forms.wrapper.mini.claim-form.active form#ubl-ajax-claim-form .form-title h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px;
}
form#ubl-ajax-claim-form .pfsearchformerrors,
form#ubl-ajax-claim-form .pfsearchformsuccess {
    margin: 10px 0;
}

form#ubl-ajax-claim-form .pfsearchformerrors li {
    color: red;
    font-size: 16px;
}

form#ubl-ajax-claim-form .pfsearchformsuccess li {
    color: var(--dark-grey);
    font-size: 16px;
    text-align: center;
}

form#ubl-ajax-claim-form section.claim-submitted p {
    text-align: center;
}

form#ubl-ajax-claim-form .pfmodalclose span {
    cursor: pointer;
    font-size: 30px;
}
form#ubl-ajax-claim-form .form-enclose .form-section label.upt2ch1 {
    font-size: 14px;
}
form#ubl-ajax-claim-form .form-enclose label.lbl-text {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    font-size: 14px;
}
form#ubl-ajax-claim-form .form-enclose label.lbl-ui {
    display: block;
    width: 100%;
}
form#ubl-ajax-claim-form .form-enclose label.lbl-ui select#submitted_field {
    height: 40px;
    font-size: 14px;
    border-radius: 8px;
    margin: 0;
    padding: 10px;
}
form#ubl-ajax-claim-form .form-enclose label.lbl-ui input.input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 40px;
    font-size: 14px;
    margin: 0;
}
form#ubl-ajax-claim-form .form-enclose label.lbl-ui textarea.textarea.no-resize {
    height: 120px;
    margin: 0;
    display: block;
    border-radius: 8px;
}

form#ubl-ajax-claim-form .form-enclose .form-section label.upt2ch1 a.pftermshortc {
    color: #0a8dde;
}
form#ubl-ajax-claim-form .form-enclose .form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
form#ubl-ajax-claim-form button#ubl-ajax-claim-button {
    padding: 8px 18px;
    border: 2px solid #0a8dde;
    border-radius: 4px;
    color: #fff;
    font-family: 'Roboto';
    font-size: 16px;
    background: var(--blue);
    font-weight: 500;
    transition: .5s;
    text-transform: initial;
}


form#ubl-ajax-claim-form button#ubl-ajax-claim-button:hover {
    background: #0572b6;
    border-color: #0572b6;
    color: #fff;
}
form#ubl-ajax-claim-form .form-enclose .form-section>section:last-child {
    grid-column: 1/-1;
    margin: 0 0 20px !important;
}

form#ubl-ajax-claim-form .form-enclose .form-section span.goption.upt2 label.options {
    margin-right: 10px;
}

form#ubl-ajax-claim-form .form-enclose .form-section > section:has(input.input[type="hidden"]) {
    display: none;
}
form#ubl-ajax-claim-form .form-enclose .form-section > section:first-child {
    grid-column: 1/-1;
}

.golden-forms.wrapper.mini.claim-form.active form#ubl-ajax-claim-form .pfmodalclose i {
    cursor: pointer;
}

form#ubl-ajax-claim-form .form-enclose .form-section span.goption.upt2 {
    display: flex;
    align-items: start;
}

form#ubl-ajax-claim-form .form-enclose .form-section>section:nth-last-child(3) {
    grid-column: 1/-1;
}

form#ubl-ajax-claim-form .form-enclose .form-section > section:nth-last-child(2) {
    grid-column: 1/-1;
}
form#ubl-ajax-claim-form .form-enclose .form-section > section:last-child {
    grid-column: 1/-1;
}
/***pricing page***/
.banner-inner.pricing-banner h1 {
    max-width: 883px;
}

.banner-inner.pricing-banner .small-blue-txt {
    padding: 4px 12px;
    border: 1px solid var(--blue);
    display: inline-block;
    border-radius: 30px;
    font-weight: 500;
}

.form-check.form-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 32px;
    align-items: center;
    position: relative;
}

.form-check.form-switch>img {
    position: absolute;
    left: 60%;
    top: 36px;
}

.form-check-input:checked {
    background-color: var(--blue);
    border-color: var(--blue);
}

.form-switch .form-check-input {
    width: 44px;
    height: 24px;
    margin-top: 0;
}

.form-switch .form-check-input:focus {
    box-shadow: none;
}

.form-check.form-switch .form-check-label span {
    color: var(--blue);
}

.form-check.form-switch .form-check-label {
    font-weight: 500;
    color: #344054;
}

.packs-intro {
    position: relative;
}

.packs-intro:after {
    content: "";
    width: 100%;
    height: 33%;
    background: #f9f6ef;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.packs-intro .tab-feature {
    background: #fff;
    position: relative;
    height: 100%;
}

.packs-intro .tab-content h4 {
    color: var(--dark-grey);
    font-weight: 500;
}

.packs-intro .tab-has-content.free-pack.active .tab-top h4 {
    color: #fff !important;
}
.packs-intro .tab-has-content.paid-pack.active .tab-top h4 {
    color: #fff !important;
}
.packs-intro .tab-content .price span {
    padding-left: 5px;
    font-weight: 500;
    color: var(--grey);
    line-height: 5px;
}

.packs-intro .tab-has-content.paid-pack.active .price span {
    color: #fff !important;
}
.packs-intro .tab-has-content.free-pack.active .price span {
    color: #fff !important;
}
.packs-intro .tab-content .small-txt {
    font-size: 18px;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    max-width: 325px;
}

.packs-intro .tab-has-content.paid-pack.active .tab-top .small-txt {
    color: #fff !important;
}
.packs-intro .tab-has-content.free-pack.active .tab-top .small-txt {
    color: #fff !important;
}
.packs-intro .tab-feature ul {
    padding-top: 20px;
    min-height: 390px;
}

.packs-intro .tab-feature p {
    font-size: 16px;
    font-weight: 400;
}

.packs-intro .tab-has-content {
    padding: 0;
    overflow: hidden;
    filter: drop-shadow(0px 4px 4px rgb(0 0 0 / 15%));
}

.packs-intro .tab-content .tab-top {
    padding: 30px;
}

.packs-intro .tab-has-content.free-pack .tab-top,
.packs-intro .tab-has-content.paid-pack .tab-top {
    background: #CFE5FF;
    color: var(--dark-grey) !important;
}

.packs-intro .tab-has-content.free-pack.active .tab-top,
.packs-intro .tab-has-content.paid-pack.active .tab-top {
    background: #2496E8;
}

.packs-intro .tab-has-content.free-pack.active .tab-top *,
.packs-intro .tab-has-content.paid-pack.active .tab-top * {
    color: #000 !important;
}

.packs-intro .tab-content .price {
    position: relative;
}

.packs-intro .tab-content .price>img {
    position: absolute;
    right: 15px;
}
.packs-intro .tab-has-content.paid-pack .price > img {
    filter: invert(1);
}

.packs-intro .tab-has-content.paid-pack.active .price > img {
    filter: invert(0);
}
.packs-intro .tab-has-content.free-pack.active .price > img {
    filter: invert(1) brightness(100);
}
.packs-intro .container {
    position: relative;
}

.packs-intro .container>img.crown {
    top: -110px;
    position: absolute;
    right: 13%;
}

.packs-intro .container img.star-group-vec {
    position: absolute;
    bottom: -133px;
    right: 15%;
}

.packs-intro .container img.spiral-vec {
    position: absolute;
    left: 12%;
    top: 55%;
}

.packs-intro .container img.sparkle-vec {
    position: absolute;
    right: 7%;
    top: 70%;
}

.transparent-pricing {
    padding: 90px 0 120px;
}

.transparent-pricing .container>p {
    padding: 16px 0 32px;
}

/***pricing-tab**/
.trans-price-tab-wrap {
    padding-left: 50px;
}

.pricing-tab {
    overflow: hidden;
}

.pricing-tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 51px;
    transition: 0.3s;
    border-bottom: 2px solid #EAECF0;
    background: no-repeat;
    color: #667085;
    font-weight: 600;
}

.pricing-tab button:hover {
    color: var(--blue);
}

.pricing-tab button.active {
    border-color: var(--blue);
    color: var(--blue);
    border-width: 2px;
}

.pricing-tab-content {
    display: none;
    border-top: none;
    min-height: 560px;
}

.pricing-tab-content .table table tr th:first-child {
    text-align: center;
}

.pricing-tab-content .table tr td:first-child {
    text-align: center;
    width: 25%;
}

.pricing-tab-content .table tr td p {
    font-weight: 400;
}

.trans-princing-inner .desk img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: none;
}
.trans-princing-inner .desk img.trans-img-show{
    display: block;
}

.pricing-tab-content .table {
    margin-bottom: 0;
}

.pricing-tab-content .table tr th,
.pricing-tab-content .table tr td {
    width: auto;
}
.trans-price-tab-wrap .table tr th, .trans-price-tab-wrap .table tr td{
    width: auto;
}
.pricing-tab-content .table tr td p:last-child {
    padding-top: 8px;
}
/**tab**/
.table td[colspan="2"]{
    padding: 0;
}
.table table table tr>td:first-child{
    width:30%;
}
.trans-price-tab-wrap.tab tr.blue {
    background: #F2F7FF;
}
.trans-price-tab-wrap.tab {
    padding: 0;
    display: none;
}
.trans-price-tab-wrap.tab th {
    font-size: 24px;
}

.transparent-pricing p {
    font-size: 18px;
    font-weight: 400;
}

.trans-price-tab-wrap.tab tr td p:not(:first-child) {
    padding-top: 10px;
}

.trans-price-tab-wrap.tab .table >table>tbody>tr>td:first-child p {
    font-weight: 500;
}
.trans-price-tab-wrap.tab .table {
    margin-top: 0;
}
.trans-price-tab-wrap.tab tr.white {
    background: #fff;
}
.table table table tbody tr td:first-child {
    text-align: center;
}
/***mobile**/
.trans-price-acc.mob{
    display: none;
  }
.trans-price-box h4 img {
    width: auto;
}

.trans-price-head h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trans-price-box {
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background-color: #fff;
    cursor: pointer;
}
.trans-price-box .trans-price-txt {
    display: none;
}
.trans-price-head h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-grey);
}
.trans-price-box .pack-box {
    padding-top: 16px;
}

.trans-price-box .pack-box p {
    font-size: 14px;
    line-height: 18px;
    padding-top: 4px;
}

.trans-price-box .pack-box p:first-child {
    color: var(--dark-grey);
}
.trans-price-box .minus {
    display: none;
}
.trans-price-box.open .minus {
    display: block;
}
.trans-price-box.open .plus {
    display: none;
}
/****faq-sec**/
.faq-sec {
    padding: 62px 0;
    position: relative;
    background: #F8F9F9;
}

.faq-sec img.faq-vec {
    position: absolute;
    left: 10%;
    top: 20px;
}

.faq-sec img.arrow-vec {
    position: absolute;
    right: 0;
    top: 0;
}

.faq-sec h2 {
    text-align: center;
    position: relative;
}

.faq-sec p.para {
    padding: 16px 0 32px;
    text-align: center;
    max-width: 873px;
    margin: auto;
}

.faq-sec h2>img {
    position: absolute;
    top: -35px;
    margin-left: 20px;
}

.faq-accordion {
    max-width: 850px;
    margin: auto;
}

.faq-acc-box {
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 22px 24px;
    background-color: #fff;
    cursor: pointer;
}
.faq-acc-box .faq-acc-txt {
    display: none;
}
.faq-acc-box.open .faq-acc-txt {
    display: block;
}
.faq-acc-head h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-acc-box.open .faq-acc-head h4 img {
    transform: rotate(180deg);
}
.faq-acc-txt p {
    padding-top: 16px;
    font-weight: 400;
    font-size: 16px;
}
/***pricing-btn-sec**/
.pricing-btm-sec-inner {
    text-align: center;
    background: #FFB95D;
    padding: 30px 30px 40px;
    border-radius: 8px;
}

.pricing-btm-sec {
    padding: 62px 0;
}

.pricing-btm-sec-inner img {
    margin-bottom: 32px;
}

.pricing-btm-sec-inner p {
    padding: 20px 0 32px;
    max-width: 768px;
    margin: auto;
}

.pricing-btm-sec-inner h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: normal;
}

.pricing-btm-sec-inner a {
    background: #A66A00;
    border-color: #A66A00;
}

/* contact page start  */
.lets-connect {
    padding: 60px 0 120px;
    position: relative;
}

.lets-connect-shapes {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 1;
}
.lets-connect-shapes img:nth-of-type(1) {
    margin-left: -40px;
    margin-top: 20px;
}
.lets-connect-shapes img:nth-of-type(2) {
    margin-top: 30px;
    margin-left: -40px;
}
.lets-connect-shapes img:nth-of-type(3) {
    position: relative;
    left: -20px;
}
.lets-connect-shapes img:nth-of-type(4) {
    position: relative;
    left: -100px;
}
.lets-connect-shapes img:nth-of-type(5) {
    position: relative;
    top: -20px;
}
.contact-form {
    padding: 0 30px;
}
.contact-img {
    padding: 0 30px;
    position: relative;
}

.contact-img .shape {
    position: absolute;
    left: -113px;
    bottom: 20px;
    z-index: -1;
}

.contact-form > p {
    max-width: 448px;
    margin: 10px 0;
}

.contact-form form {
    margin: 40px 0 0;
}
.contact header.site-header {
    background: transparent;
}

.bread-crumb ul {
    display: flex;
}

.bread-crumb li, .bread-crumb li a {
    color: var(--grey);
    font-size: 14px;
    font-weight: 500;
}
.bread-crumb li.active {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

.bread-crumb ul li img {
    margin: 0 8px;
    display: inline-block;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: inline-block;
    padding-bottom: 5px;
    color: #344054;
    transition: all 0.2s linear;
    font-weight: 500;
    font-size: 14px;
}


.form-group label sup {
    color: #F04438;
    font-size: inherit;
}
.input-control {
    display: block;
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #D0D5DD;
    background: #fff;
    border-radius: 5px;
}

.form-group select {
    display: block;
    width: 100%;
    padding: 12px 10px;
    border: 1px solid rgb(0 0 0 / 23%);
    border-radius: 5px;
    color: #667085;
}

.form-group textarea {
    width: 100%;
    height: auto;
   /* resize: none; */
}

.form-group .checkbox-container {
    padding: 0 0 0 40px;
    max-width: 540px;
    font-weight: 400;
    color: #475467;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .checkbox-container a {
    display: inline-block;
    color: #0A8DDE;
    font-weight: 400;
    text-decoration: unset;
    border-bottom: 1px solid;
    padding-bottom: 2px;
}
  
  /* Hide the browser's default checkbox */
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .form-group .send-btn {
    width: 100%;
    display: block;
    background: #0A8DDE;
    border: 0;
    padding: 12px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 5px;
}


.can-help-you {
    background: #F8F9F9;
    padding: 80px 0;
    position: relative;
}
.content-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
.can-help-you_img {
    width: 100%;
}
.can-help-you_content {
    width: 100%;
}

.can-help-you_content h2 {
    font-size: 42px;
    margin: 0 0 20px;
}
.can-help-you_content ul {
    margin: 30px 0;
}
.can-help-you_content ul li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 15px;
    margin: 0 0 30px;
}

.can-help-you_content .list_content h4 {
    font-size: 20px;
}
.can-help-you_content .list_content p {
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 15px;
}

.can-help-you_content .list_content a {
    display: inline;
    background: #0A8DDE;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

.contact-method {
    padding: 120px 0;
    position: relative;
}
.contact-method h2 {
    text-align: center;
    margin: 0 0 20px;
}
.contact-method p {
    margin: 0 0 20px;
    text-align: center;
}
.contact-method_card {
    margin: 40px 0  0;
}

.contact-method_card > .row {
    row-gap: 30px;
}
.contact-method_card .feature-inner p {
    text-align: left;
}
.contact-method_card .feature-inner {
    background: #fefaf2;
}
.contact-method_card .feature-inner span {
    display: inline-block;
    color: #2496E8;
    font-weight: 600;
}

.can-help-you_img .shape {
    padding-left: 100px;
    
}

.can-help-you > .shape {
    position: absolute;
    right: 40px;
    bottom: 20px;
}

.contact-method .shape {
    position: absolute;
    left: calc(49% + 180px);
    transform: translateX(-50%);
    top: 0;
}

.contact-method .shape-2 {
    position: absolute;
    bottom: 30px;
    left: 24px;
}




.contact-img .shape img {
    height: auto!important;
}

.can-help-you_content ul {
    padding-right: 250px;
}
/* contact page end  */

/*sign-up form start */

.booster_sign_up_form {
    padding: 80px 0;
    background: #fff;
}
.booster_sign_up_form .right_form {
    background: #F1E9DC;
    height: 100%;
    padding: 40px;
}
.custom-user-register-from input::placeholder {
    color: #667085 !important;
}

.booster_sign_up_form .right_form h2 {
    text-align: center;
    color: #182230;
    font-size: 48px;
    letter-spacing: -0.02em;
    font-weight: 800;
    max-width: 630px;
    margin: 0 auto 20px;
    opacity: 0.8;
}

input.from-control {
    width: 100%;
    background-image: none !important;
    border-radius: 4px;
    border-style: solid;
    border-color: #d0d5dd;
    border-width: 1px;
    padding: 10px 12px 10px 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    position: relative;
    color: #667085 !important;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--roboto);
}
.custom-user-register-from input {
    width: 100%;
    background-image: none !important;
    border-radius: 4px  !important;
    border-style: solid;
    border-color: #d0d5dd;
    border-width: 1px;
    padding: 10px 12px 10px 12px  !important;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    position: relative;
    color: #667085 !important;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--roboto);
}

.custom-user-register-from {
    border: none;
    padding: 0px;
}
input.from-control::placeholder{
       font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--roboto);
    color: #667085 !important;
}

.booster_sign_up_form label {
    color: #344054;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    display: block;
    width: 100%;
    margin-bottom: 5px;
    font-family: var(--roboto);
}

.sign_up_form_cls .form-group:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

img#__lpform_input_idx_0_icon {
    display: none !important;
}

img#__lpform_input_idx_3_icon {
    display: none !important;
}

.sign_up_form_cls .form-floating {
    margin-bottom: 20px;
}

.sign_up_form .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.sign_up_form .form_heading h3 {
    color: #101828;
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--playfair);
    margin-bottom: 10px;
}

.sign_up_form .form_heading > p {
    font-size: 16px;
}
.sign_up_form .form_heading {
    margin-bottom: 32px;
    padding: 0 10px;
}

.sign_up-btn {
    border-radius: 4px;
    padding: 12px 24px 12px 24px;
    display: block;
    text-align: center;
    background: #0A8DDE;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-right: 0px !important;
    color: #fff;
    font-family: var(--roboto);
    border: 2px solid #0A8DDE;
    transition: all 0.2s linear;
    width: 100%;
}

.custom-user-register-from .sign_up-btn:focus {
    box-shadow: none;
}
.sign_up-btn:hover{
    background: #0572b6;
    border-color: #0572b6;
    color: #fff;
}

a.sign_up-btn:hover{
    background: transparent;
    color: #0A8DDE;
}

a.sign_in-btn {
    border-radius: 4px;
    padding: 12px 24px 12px 24px;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--roboto);
    border: 1px solid  #d0d5dd;
    transition: all 0.2s linear;
    color: #344054;
}

.sign_up_form .footer_link > p {
    text-align: center;
    color: #475467;
    font-family: var(--roboto);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.sign_up_form .footer_link > p a {
    color: #0a8dde;
    font-family: var(--roboto);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.booster_sign_up_form .right_form img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 100px auto;
}
.from-copy-right {
    margin-top: 20px;
}

.from-copy-right p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #475467;
}

.booster_sign_up_form label sup {
    color: #F04438;
    vertical-align: bottom;
    top: -9px;
    display: none;
}
.couldget_main .slider-sec  .owl-dots {
    max-width: 100%;
    justify-content: center;
}



.main-nes.connectbooster {
background: #00629e;
padding: 30px 20px 50px 20px;
}
.main-nes.connectbooster input {
height: 54px;
font-size: 16px;
border-radius: 8px;
font-weight: 400;
color: #3d3d3d;
border: 2px solid #d7d7d7;
width: 100%;
padding: 17px;
}
.main-nes.connectbooster .wrapp-mm {
max-width: 1170px;
margin-left: auto;
margin-right: auto;
}
.main-nes.connectbooster .frm-grp {
margin-bottom: 14px;
}
.main-nes.connectbooster input[type="submit"] {
background: #fffe00;
border-color: #fffe00;
font-weight: 700;
font-size: 20px;
text-transform: uppercase;
padding: 0;
}
.main-nes.connectbooster h2 {
font-family: 'Arvo' !important;
margin-top: 0;
text-align: center;
font-weight: 700;
color: #fff;
margin-bottom: 46px;
font-size: 36px;
    padding: 0;
    background: transparent;
}



#pfmaincontent2 .loginpagerow {
    max-width: 1150px;
    margin: 0 auto;
}

p.registerlogin {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 27px;
    font-size: 15px;
}

.loginpagerow .btn-rgt {
    margin-top: 150px;
}
#user-registration p {
    color: #344054;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 2px;
}
#user-registration input {
    border-radius: 4px;
    border: 1px solid  #D0D5DD;
    padding: 10px 12px;
    color: #667085;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
#user-registration input::placeholder {
    color: #667085;
}

#user-registration .ur-frontend-form {
    padding: 20px;
}


#user-registration input[type="submit"] {
    border-radius: 4px;
    background: #0A8DDE;
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 12px 24px;
    transition: all 0.2s linear;
    border: 1px solid #0A8DDE;
    margin-bottom: 10px;
}

#user-registration input[type="submit"]:hover {
    background: transparent;
    color: #0A8DDE;
}

#user-registration  .wp_google_login__button {
    border-width: 1px;
}

#user-registration .user-registration-LostPassword {
    text-align: center;
    color: #0A8DDE;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-top: 32px;
}

#user-registration .user-registration-LostPassword a {
    color: inherit;
}
/*responsive */
@media(max-width:991px){
    .slider-sec.slider-sec-new {
    margin-top: -250px;
}
}
@media only screen and (max-width:575px){
.main-nes.connectbooster h2 {
line-height: normal;
font-size: 28px;
margin-bottom: 30px;
}
}

.platform-feature.web-feature .row .col-xl-4.col-md-4 {
    margin-bottom: 25px;
}

.slider-sec.slider-sec-new .owl-carousel {
    top: 0;
}
.slider-sec.slider-sec-new {
    padding-bottom: 145px;
}

.slider-sec.slider-sec-new {
    padding-bottom: 0;
    margin-top: -200px;
    background: transparent;
}
.slider-sec.slider-sec-new .owl-carousel {
    top: 250px;
}
section.boostr-web .boostr-row.p-92.bg-cream {
    background: #f1e9dc;
    padding-top: 140px;
}
section.boostr-web.strategies .boostr-row.p-92.bg-cream:first-child {
    padding-top: 350px;
}
div#club-carousel {
    padding-top: 10px;
    padding-bottom: 10px;
}

p.club-name {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    max-width: 1000px;
    color: #75726e;
    padding-top: 34px;
    font-family: "Playfair Display", serif;
}
.club-info p.designation {
    text-align: right;
    max-width: 768px;
    color: #b99c6d;;
    font-size: 24px;
    padding-top: 20px;
    font-family: "Playfair Display", serif;
	    font-weight: 600;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: #00629e !important;
    width: 12px;
    height: 12px;
}


p.designation.clubs-booster-content {
    font-family: 'Roboto';
}
p.clubs-booster-content {
    font-family: 'Roboto';
}

.grecaptcha-badge {
	left: 0 !important;
	width: 68px !important;
}

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







section.hello_navigation {padding-top: 43px;background: #fff;}
.container_hello_tester {
max-width: 1300px;
}
.container_hello_tester {
width: 100%;
max-width: 1200px;
margin: auto;
padding-left: 15px;
padding-right: 15px;
}
.hello_navigation_flex {
display: flex;
justify-content: space-between;
gap: 10px;
align-items: center;
}
.single-volunteer .hello_navigation .hello_flex {
display: flex;
}
.hello_navigation .hello_flex {
display: flex;
align-items: center;
gap: 20px;
}
.hello_navigation .hello_flex {display: flex;align-items: center;gap: 20px;text-align: center;}
.hello_navigation .logo {
overflow: hidden;
}
.hello_navigation .logo {
height: 140px;
width: 140px;
background: #fff;
box-shadow: rgba(50,50,93,.25) 0px -3px 5px -1px,rgba(0,0,0,.3) 1px 5px 3px -1px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
.container_hello_tester .logo img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.hello_navigation .content h4 {
margin: 0;
font-size: 15px;
font-weight: 500;
font-family: "Open Sans", serif;
}
.hello_navigation .content h2 {
margin: 0;
color: #000;
font-weight: 700;
font-size: 27px;
padding: 9px 0 16px;
font-family: "Open Sans", serif;
}
.container_hello_tester h3 a {color: #1cc6ff !important;display: block;font-size: 17px;}

.hello_navigation .content h3 {
margin: 0;
color: #000;
font-weight: 700;
font-size: 27px;
line-height: normal;
}

.page-template-volunteer-details .form_close h4 {
    margin: 0;
    text-align: right; 
    color: #aca2a2;
    font-size: 15px;
    font-weight: 500;
    font-family: "Open Sans", serif;
}

.page-template-volunteer-details .form_close {
background: #fff;
}

.page-template-volunteer-details .hrader_form.mainformdatasubject {
background: #fff;
}


.form_close {
margin-bottom: 10px;
}

.page-template-volunteer-details.page-template-volunteer-details-php {
background: #fff;
}
.hello_footer {
margin: 12px 0 70px;
}

.page-template-volunteer-details.page-template-volunteer-details-php .hello_footertop {
padding: 0px 0;
background-color: #ffffff;
}

.form_header_gray_sucess {
    text-align: center;
    padding: 15px;
}

.succes_content_btn {
    padding: 12px 24px;
  
    border-radius: 4px;
    color: #fff;
    font-family: 'Roboto';
    font-size: 16px;
    background: var(--blue);
    font-weight: 500;
    transition: 0.5s;
    text-transform: initial;
    display: inline-block;
}

.succes_content_btn:hover {
    background: #0572b6;
    border-color: #0572b6;
    color: #fff;
}

.succes_img img {
    max-width: 170px;
}

.succes_content h3 {
    color: #28A745;
}

.succes_content p {
    margin: 16px auto;
    width: 100%;
    max-width: 800px;
}


.hello_footer .hello_flex {
display: flex;
align-items: center;
justify-content: center;
gap: 25px;
max-width: 600px;
margin: auto;
}
.hello_footer .hello_flex .logo {
width: 200px;
display: flex;
flex-direction: column;
align-items: center;
}
.hello_footer .hello_flex .logo h3 {
text-align: center;
font-weight: 500;
font-size: 16px;
margin-top: 0;
font-family: "Open Sans", serif;
}
body footer .container_hello_tester .logo img {
    object-fit: contain;
    width: 100%;
    border-radius: 0;
}

.hello_footer .hello_flex .logo img {
    max-width: 75px;
}
.hello_footer .content p {
max-width: 628px;
font-size: 13px;
margin-bottom: 0;
font-family: "Open Sans", serif;
}
section.hello_footer {
margin-top: 50px !important;
padding-bottom: 50px !important;
}


.hidden {
display: none!important;
visibility: hidden!important;
}
.withbg.volunteeritemonly .text-heading-two p {
color: #212529;
}

.folding_table_flex p {
    color: #000;
}

.item_paragraphing p span {
    display: block;
    margin-top: 12px;
    font-family: inherit;
}

@media screen and (max-width:575px){
.about-us-btns {
    gap: 16px;
    row-gap: 12px;
}
body .read-more {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 10px;
}
body .read-more a {
    padding: 0;
}
form#ubl-ajax-claim-form .form-enclose .form-section {
    grid-template-columns: 100%;
}  
}

footer.driver-popover-footer {
  background: none;
  padding: 0;
}


.driver-popover-prev-btn.driver-popover-btn-disabled {
    display: none !important;
}



/* Normal (default) */
[style-format="normal"] {
  font-weight: normal;
  font-style: normal;
}

/* Bold */
[style-format="bold"] {
  font-weight: bold;
}

/* Italic */
[style-format="italic"] {
  font-style: italic;
}


#formembedsubmisson h1,#formembedsubmisson h2,#formembedsubmisson h3,#formembedsubmisson h4,#formembedsubmisson h5,#formembedsubmisson h6{
	border: none;
	background: none;
	box-shadow: none;
	text-align: left;
	padding: 0;
	color: #000;
}


#formembedsubmisson h1 {
    font-size: 32px;
}

#formembedsubmisson h2 {
    font-size: 26px;
}

#formembedsubmisson h3 {
    font-size: 22px;
}

#formembedsubmisson h4 {
    font-size: 18px;
}

#formembedsubmisson h5 {
    font-size: 16px;
}

#formembedsubmisson h6 {
    font-size: 14px;
}

body #formembedsubmisson h1, body #formembedsubmisson h2, body #formembedsubmisson h3, body #formembedsubmisson h4, body #formembedsubmisson h5, body #formembedsubmisson h6 {
    border: none;
    background: none;
    box-shadow: none;
    text-align: left;
    padding: 0;
    color: #000;
    margin: 5px 0;
    height: auto;
    line-height: normal;
    height: auto;
}

.page-template-templatesnewww .user-registration-password-hint {
	display: none;
}


#user_pass_field .password-input-group {
	position: relative;
	float: left;
	width: 100%;
}

#togglePassword {
	position: absolute;
	right: 12px;
	top: 14px;
}

.user-registration-password-strength {
	margin-top: 12px !important;
	float: left;
	width: 100%;
}

.page-template-Campaign-php .type.paypalselct {
	display: none;
}

.payment-type.form-name-donation-csrm {
	display: none;	
}

.stripecards-div {
	margin-top: 20px;
}



.ur-frontend-form #ur-recaptcha-node {
    max-width: max-content;
    margin: 0 auto 20px;
}

  