/* webfonts */

@font-face {
    font-family: 'prompt-light';
    src: url('../fonts/Prompt-Light.ttf');
}

@font-face {
    font-family: 'prompt-regular';
    src: url('../fonts/Prompt-Regular.ttf');
}

@font-face {
    font-family: 'prompt-medium';
    src: url('../fonts/Prompt-Medium.ttf');
}

@font-face {
    font-family: 'prompt-semibold';
    src: url('../fonts/Prompt-SemiBold.ttf');
}

@font-face {
    font-family: 'prompt-bold';
    src: url('../fonts/Prompt-Bold.ttf');
}

@font-face {
    font-family: 'prompt-extra-bold';
    src: url('../fonts/Prompt-ExtraBold.ttf');
}
@font-face {
    font-family: 'oswald-regular';
    src: url('../fonts/Oswald-Regular.ttf');
}
@font-face {
    font-family: 'oswald-semibold';
    src: url('../fonts/Oswald-SemiBold.ttf');
}
@font-face {
    font-family: 'oswald-bold';
    src: url('../fonts/Oswald-Bold.ttf');
}

:root {
    --primary-color: #252934;
    --secondary-color: #97A880;
    --light-color: #B5B7BC;
    --white-text:#fff;
    --text-color: #252934;
    --heading-color: #252934;
    --font: 'prompt';
    --font-regular: 'prompt-regular';
    --font-medium: 'prompt-medium';
    --font-semibold: 'prompt-semibold'; 
    --font-bold: 'prompt-extra-bold';
	--oswald-regular: 'oswald-regular';
    --oswald-semibold: 'oswald-semibold';
	--oswald-bold: 'oswald-bold';
}

html {
    margin: 0;
}

body {   
    font-family: var(--font-regular); 
    overflow-x: hidden;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    font-family: var(--oswald-bold);
    line-height: 1.1;
}

h1 {
    font-size: 60px;
}
h2 {
    font-size: 45px;
}

h3, .h3 {
    font-size: 30px;
}

h4, .h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}
h6{
    font-size: 20px;   
}

a, p, button, span {
    white-space: normal;
    word-break: break-word;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}
a:focus-visible {
    outline: transparent;
}
p {
    font-size: 16px;
    margin: 0;
    color: var(--text-color);
}
img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

button {
    transition: all 0.5s;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}
.form-control:focus, input {
    outline: 0;
    box-shadow: none !important;
    color: inherit;
    background-color: transparent;
    border-color: #0D6CFF;
}
.form-select:focus {
    border-color: #0D6CFF;
    box-shadow: none;
}
header .custom-logo-link img {
    max-width: 100px;
}   
.form-control::placeholder {
    color: var(--text-color);
}
.form-control:focus {
    border-color: #F2F3F5;
    background: #F2F3F5;
}
input[type="checkbox"]:checked ~ label:before {
    background: var(--secondary-color) no-repeat center;
}
.formfield {
    position: relative;
    width: 100%;
}
.form-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.form-group label {
    font-size: 14px;
    line-height: 25px;
    color: var(--text-color);
    font-family: var(--font);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 17px;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}
.footer-wrapper .widget_media_image img {
    height: 175px !important;
    width: 200px !important;
}
/* custom-button-CSS */

.button {
    transition: all 0.5s;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 36px;
    font-size: 16px;
    border-radius: 50px;
    color: var(--primary-color);
    font-family: var(--font);
    padding: 7px 20px;
}


.btn {
    display: inline-flex;
    border: unset;
    align-items: center;
    justify-content: center;
}
.full-btn {
    width: 100%;
    min-width: auto;
}
input [type="checkbox"]:focus {
    box-shadow: none;
}
.form-control::placeholder {
    font-size: 14px;
    color: #9C9C9C;
}
.container {
    max-width: 1570px;
    padding: 0 40px;
}
.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--secondary-color);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
 

 
.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}
 
/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}
 
/* rotate third span */
 .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}
 
 .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}
                
/********************** Navbar Css Start ***************/
.navbar-brand img {
    max-width: 135px;
}
.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.header-btn {
    background: #B2D1F0;
    padding: 9px 38px;
    border-radius: 30px;
    font-size: 18px;
    font-family: var(--font-medium);
}
.navbar {
    padding: 0;
}
.cust-nav {
    padding-top: 18px;
    padding-bottom: 18px;
    box-shadow: 0 4px 6px -6px #22222269;
}
.banner-text-img {
    margin-bottom: -54px;
}
/********************** Navbar Css End ***************/

/********************** Banner Css Start ***************/
.home-banner {
    background: #000;
    padding-top: 168px;
    padding-bottom: 225px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 100%, 100% 94%, 100% 0, 0 0);
}
.home-banner::before {
    position: absolute;
    z-index: 1;
    content: "";
    background: #0000006b;
    width: 100%;
    height: 100%;
    top: 0;
}
.main-heading {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    font-family: Koulen;
    font-size: 300px;
    -webkit-text-fill-color: transparent;
}

.home-banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-text {
    font-size: 30px;
    color: #fff;
}
.sub-heading {
    font-size: 60px;
    color: #fff;
    margin-bottom: 40px;
}
.sub-heading span {
    display: block;
    color: #1b94e7;
}
.app-btn-box {
    display: flex;
    gap: 15px;
}
.app-btn {
    background: #1b94e7;
    padding: 7px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-family: var(--font-medium);
    color: #fff;
}
.app-btn a {
    color: #fff;
}
.home-about-content {
    margin-right: 80px;
}
.about-box {
    display: flex;
    border-radius: 5px;
    background: #1b94e7;
    padding: 40px 40px 50px 52px;
}

.about-box img {
    max-width: 220px;
    border-radius: 5px;
}
.about-box {
    display: flex;
    border-radius: 5px;
    background: #1b94e7;
    padding: 40px 42px 40px 51px;
    align-items: center;
    gap: 40px;
}
.about-text-box p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}
.color-2 {
    background: #A9A9A9;
}
.mb-28 {
    margin-bottom: 28px;
}
.section-small-heading {
    font-size: 26px;
    margin-bottom: 15px;
}
.section-heading {
    font-size: 42px;
    margin-bottom: 10px;
}
.about-text-box h4 {
    margin-bottom: 20px;
}

.home-about-image {
    position: relative;
}
.home-about-image::before {
    content: "";
    position: absolute;
    right: -35px;
    bottom: 0;
    height: 55%;
    width: 50px;
    z-index: -1;
    background: #F77C46;
}
.home-about-section {
    padding-top: 100px;
    padding-bottom: 40px;
}
.home-about-wrapper {
    position: relative;
}
.bg-text {
    font-size: 220px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    -webkit-text-fill-color: white;
    opacity: 0.15;
    position: absolute;
    right: -120px;
    z-index: -1;
    top: -120px;
    text-transform: uppercase;
}
img.app-slide-image {
    max-width: 425px;
    width: 100%;
    margin-right: -18px;
    z-index: 1;
}
.app-slide-image-box {
    display: flex;
    align-items: flex-end;
    
}
.app-slide-content h2, .app-slide-content .app-slider-list li, .home-about-content .about-text-box h4 {
    color: #fff;
}
.app-slide-content {
    background: #1b94e7;
    padding: 100px 73px 90px;
    margin-bottom: 90px;
    border-radius: 0 300px 0 0;
}
.home-app-slider {
    padding-top: 65px;
    padding-bottom: 90px;
    overflow: hidden;
}
.slider-main-heading {
    text-align: center;
    font-size: 70px;
    text-transform: uppercase;
    font-family: var(--oswald-bold);
    margin-bottom: 30px;
}
.app-slide {
    max-width: 1300px;
    padding: 0 36px;
}
.app-slider-arrow-box .app-arrow svg path {
    fill: #fff;
}
.app-arrow {
    height: 75px;
    width: 75px;
    background: #1b94e7;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.app-slider-arrow-box {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-right: 170px;
    margin-top: 20px;
}
.app-arrow.app-prev {
    transform: rotate(180deg);
}
.app-slider-list li {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}
.app-slider-list li::before {
    background: url(../images/tick.svg);
    position: absolute;
    background-repeat: no-repeat;
    content: "";
    left: -30px;
    height: 21px;
    top: 2px;
    width: 21px;
}
.app-slider-list {
    padding-left: 30px;
    margin-top: 30px;
}

.instagram-section {
    background: #252934;
    padding-top: 70px;
    padding-bottom: 120px;
}
.social-images-wrapper {
    display: flex;
    gap: 15px;
}
.social-images-wrapper.top {
    margin-bottom: 15px;
}
.ista-bg-text {
    font-size: 135px;
    letter-spacing: 6.5px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: #ffffff00;
    opacity: 0.20;
    text-transform: uppercase;
}
.insta-bg-text-box h2 {
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
}
.insta-bg-text-box {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}
.instagram-wrapper {
    text-align: center;
}
.social-images-box h6  a{
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
}
.social-images-box {
    position: relative;
}
.goal-content-wrapper {
    max-width: 600px;
    margin-right: auto;
    margin-left: 100px;
}
.content-goal-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.goal-inner-content h5 {
    margin-bottom: 10px;
}
.goal-inner-content p {
    font-size: 18px;
}
.content-goal-image {
    flex: 0 0 50px;
}
.goal-image-box img {
    max-height: 800px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}

/********************** faq Css Start ***************/
.home-faq-section {
    padding-top: 103px;
    padding-bottom: 103px;
    background: #1b94e7;
}
.faq-image-box {
    background: #fff;
    border-radius: 10px;
    padding: 55px 42px 47px;
    margin-right: 130px;
}
.faq-img img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
 /*   max-height: 400px; */
    object-position: top;
}
.faq-image-box h2 {
    font-family: var(--oswald-semibold);
    text-transform: uppercase;
    margin-bottom: 40px;
    max-width: 300px;
}

#home-faq .accordion-button h4 {
    font-size: 20px;
    font-family: var(--oswald-semibold);
    max-width: 613px;
    line-height: 32px;
    padding-right: 20px;
}
#home-faq .accordion-item {
    margin-bottom: 18px;
    border-radius: 10px;
    background: #FFF;
    overflow: hidden;
    border: 0;
}
#home-faq .accordion-button {     
    padding: 20px 46px;
    min-height: 105px;
    background: #fff;
}
#home-faq .accordion-button.collapsed:hover {
    background: #A9A9A9;
    color: #fff;
}
#home-faq .accordion-button.collapsed:hover::after {
    filter: brightness(0.5) !important;
}
#home-faq .accordion-button.collapsed:hover h4 {
    color: #fff;
}

#home-faq .accordion-button.collapsed:hover:after {
    filter: contrast(0);
}
#home-faq .accordion-button.collapsed:focus {
    background: #252934 !important;
}
#home-faq .accordion-button.collapsed:focus:after {
    filter: contrast(0);
}
#home-faq .accordion-button.collapsed:focus h4 {
    color: #fff;
}
#home-faq .accordion-body {
    padding: 5px 46px 34px;
    font-size: 16px;
    color: #475266;
    line-height: 154%;
}
#home-faq .accordion-item:last-child {
 margin-bottom: 0px;
}
.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="20" viewBox="0 0 19 20" fill="none"><path d="M9.5 0.5C8.67158 0.5 8.00002 1.17156 8.00002 1.99998V8.50002H1.49998C0.671565 8.50002 0 9.17158 0 10C0 10.8284 0.671564 11.5 1.49998 11.5H8.00002V18C8.00002 18.8284 8.67158 19.5 9.5 19.5C10.3284 19.5 11 18.8284 11 18V11.5H17.5C18.3284 11.5 19 10.8284 19 10C19 9.17158 18.3284 8.50002 17.5 8.50002H11V1.99998C11 1.17157 10.3284 0.5 9.5 0.5Z" fill="%23475266"/></svg>');
    transform: scale(1) !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="4" viewBox="0 0 19 4" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.85895 0.5H17.1137C18.1525 0.5 19 1.16906 19 1.96759C19 2.78772 18.1525 3.45678 17.1137 3.45678H1.85895C0.847449 3.45678 0 2.78772 0 1.96759C0 1.16904 0.847477 0.5 1.85895 0.5Z" fill="%23475266"/></svg>');
    background-position: 50%;
}

.social-images-box img {
    width: 100%;
}
.footer-logo {
    max-width: 135px;
    margin: 0 auto;
}
.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer {
    background: #252934;
    padding-top: 54px;
    padding-bottom: 33px;
}
.footer-heading {
    color: #fff;
    font-size: 41px;
    font-family: var(--oswald-semibold);
    max-width: 991px;
    margin-top: 30px;
    margin-bottom: 50px;
}
.footer-divider {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    height: 1px;
    opacity: 0.1;
}
.footer-social-box li a {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: #ffffff1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.footer-social-box {
    margin-top: 35px;
}
.footer-social-box ul {
    display: flex;
    gap: 15px;
}
.app-slider-wrapper {
    margin: 0 40px;
}
.app-slider-wrapper .slick-list {
    overflow: visible;
}

/********************** Privacy policy Css Start ***************/
.page-banner {
    position: relative;
    padding-top: 180px;
    padding-bottom: 180px;
}

.page-banner::before {
    position: absolute;
    z-index: 1;
    content: "";
    background: #00000094;
    width: 100%;
    height: 100%;
    top: 0;
}

.page-banner-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.page-banner-wrapper h1 {
    font-size: 120px;
    color: transparent;
    text-transform: uppercase;
    -webkit-text-stroke: 1px white;
}
.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 20%;
}
.page-text-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.rich-text-wrapper h2 {
    font-size: 32px;
    padding-top: 15px;
    margin-bottom: 11px;
    font-family: var(--font-semibold);
}
.wp-block-heading:first-child {
    padding-top: 0;
}
.rich-text-wrapper p {
    margin-bottom: 7px;
    line-height: 22px;
}
.rich-text-wrapper ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom:15px;
}
.rich-text-wrapper ul li {
    margin-bottom:3px;      
}
.rich-text-wrapper a {
    text-decoration: underline;
}
.page-banner-wrapper h1 {
    font-size: 80px;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
}

.credit {
    color: #B2D1F0;
    padding: 15px 0 0;
}
p.credit a {
    text-decoration: underline;
    color: #b2d1f0;
}
.customize-unpreviewable{
	color:#B2D1F0;
}


/********************** support page Css Start ***************/
.form-group .form-control {
    width: 100%;
    font-size: 16px;
    border: 1px solid #b6d1f1;
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--primary-color);
}
.form-row {
    gap: 12px;

    justify-content: space-between;
    margin-bottom: 12px;
}
.form-group {
    width: 100%;
}
.primary-color {
    background-color: #b6d1f1 !important;
    color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    border: unset !important;
    justify-content: center !important;
    align-items: center !important;
    text-transform: uppercase;
    font-family: var(--font-semibold) !important;
    font-size: 16px !important;
    transition: all 0.5s;
    
}
.support-wrapper {
    max-width: 700px;
    margin-left: 80px;
    margin-right:20px
}
    .support-heading {
    font-size: 32px;
    margin-bottom: 12px;
}
.help-center-contact-form .support-subheading {
    margin-bottom: 20px;
}
.btn-box {
    display: flex;
    justify-content: flex-end;
}
.form-control:focus, input {
    outline: 0;
    box-shadow: none !important;
    color: inherit;
    background: transparent;
    border: 1px solid #262934;
}
.btn-box {
    padding-top: 10px;
}
.btn-box p {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.black-heading {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 28px;
}
.footer-wrapper .navbar-nav {
    flex-direction: row;
}
footer .menu-link {
    color: #B5B7BC;
    border-right: 1px solid #B5B7BC;
    padding: 0 10px;
}
#menu-secondary-menu li:last-child .menu-link{
    border-right: unset;
}

.credit img {
    width: 128px;
    margin-left: 6px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.primary-color {
    border-radius: 30px;
}
a:focus { outline: 0; }

a {
   outline: none;
}
.support-subheading {
    margin-bottom: 20px;
}

form.wpcf7-form.sent .form-row {
    display: none;
}
.support-wrapper .wpcf7-response-output {
    margin-left: 0 !important;
    font-size: 42px;
    padding-left: 0 !important;
    max-width: 640px;
    font-family: var(--font-bold);
    text-align: left;
    border: unset !important;
}
.support-wrapper form.wpcf7-form.invalid .wpcf7-response-output {
    font-size: 21px;
    max-width: 100%;
}
.wpcf7-form.sent .black-heading,.wpcf7-form.sent .support-heading,.wpcf7-form.sent .support-subheading {
display:none;
}
.rich-text-wrapper h1{
    margin-bottom: 11px;
}
.banner-bg-mob{
    display: none;
}