@font-face {
    font-family: "VAG Rounded Next";
    src: url("fonts/VAGRoundedNext/VAG Rounded Next Regular.ttf") format('truetype'),
        url("fonts/VAGRoundedNext/VAG Rounded Next Regular.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "VAG Rounded Next";
    src: url("fonts/VAGRoundedNext/VAG Rounded Next SemiBold.ttf") format('truetype'),
        url("fonts/VAGRoundedNext/VAG Rounded Next SemiBold.woff") format("woff");
    font-weight: 700;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Regular.ttf");
}

/* Default CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins";
    color: #302b2b;
    font-style: normal;
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: -0.28px;
}

h1 {
    font-size: 72px;
    font-weight: 400;
    line-height: 86px;
    letter-spacing: -0.9px;
}

h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 155.357px;
}

h3 {
    font-family: "VAG Rounded Next";
    font-size: 72px;
    font-weight: 400;
    line-height: 82px;
    letter-spacing: -2.39px;
}

h4 {
    font-size: 32px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: -1.95px;
}

h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: -0.48px;
}

h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: -1.539px;
}

ul {
    list-style-type: none;
}

li {
    font-family: "VAG Rounded Next";
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.1px;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 1080px) {
    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* End of default CSS */

.section {
    max-width: 1440px;
    margin: auto;
}

.secondary-text {
    font-family: "VAG Rounded Next";
}

/* Animation */

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Primary Button */
.primary-button {
    display: flex;
}

.primary-button a {
    background-color: #f6eb13;
    border-radius: 50px;
    padding: 15px 30px;
    transition: all 0.4s ease;
    color: #302b2b;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.28px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.primary-button a:hover {
    background-color: #302b2b;
    color: #f6eb13;
}

/* Primary Button end */

/* Header */
.header-main-div {
    position: relative;
    height: 98px;
    background: transparent;
}

.header-wrapper {
    z-index: 9999;
    background: #F6673B;
    height: 98px;
    width: 100%;
    position: fixed;
}

.container {
    max-width: 1440px;
    margin: auto;
    padding: 0px 90px;
}

.header-wrapper .row {
    align-items: center;
}

.header-wrapper img {
    width: 57px;
    height: auto;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 91px;
    height: auto;
    display: flex;
}

.header-menu {
    max-width: 80%;
}

.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu li {
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.menu-header-menu-container li a {
    transition: all 0.4s ease;
}

.menu-header-menu-container li a:hover {
    color: #f2ed22;
}

.header-top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 0 6px;
}

.header-social-icons {
    width: 127px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 38px;
}

.header-social-icons a {
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.header-social-icons img {
    width: auto;
    height: 18px;
}

.header-social-icons a:hover {
    opacity: 0.7;
}

.header-menu .menu-header-menu-container .current-menu-item a {
    color: #f2ed22;
}

/* Location Dropdown style */
.location-dropdown-header.wrapper-dropdown span {
    display: inline-flex;
    align-items: center;
    color: #909090;
}

.location-dropdown-header.wrapper-dropdown span a {
    display: flex;
    align-items: center;
}

.location-dropdown-header.wrapper-dropdown {
    position: relative;
    display: inline-block;
    min-width: 200px;
    width: 100%;
    max-width: 129px;
    padding: 10px 0;
    min-height: 38px;
    border-radius: 5px;
    background: #fff;
    text-align: left;
    color: #909090;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
}

.location-dropdown-header .scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.location-dropdown-header .arrow {
    margin-left: 10px;
    margin-right: 10px;
    float: right;
    rotate: 180deg;
}

.location-dropdown-header .selected-display {
    margin-left: 8px;
    text-transform: uppercase;
}

.location-dropdown-header svg {
    transition: all 0.3s;
}

.location-dropdown-header.wrapper-dropdown::before {
    position: absolute;
    top: 50%;
    right: 16px;

    margin-top: -2px;

    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.location-dropdown-header .rotated {
    transform: rotate(-180deg);
}

.location-dropdown-header.wrapper-dropdown .dropdown {
    transition: 0.3s;

    position: absolute;
    top: 120%;
    right: 0;
    left: 0;

    margin: 0;
    padding: 0;

    list-style: none;

    z-index: 99;

    border-radius: 15px;
    box-shadow: inherit;
    background: inherit;

    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    opacity: 0;
    visibility: hidden;
}

.location-dropdown-header.wrapper-dropdown .dropdown li {
    padding: 0 15px;
    line-height: 45px;
    overflow: hidden;
    font-size: 16px;
}

.location-dropdown-header.wrapper-dropdown .dropdown li a {
    display: flex;
    align-items: center;
}

.location-dropdown-header.wrapper-dropdown .dropdown li a span {
    color: #909090;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.location-dropdown-header.wrapper-dropdown .dropdown li:last-child {
    border-bottom: none;
}

.location-dropdown-header .dropdown {
    padding: 0.5rem !important;
}

.location-dropdown-header.wrapper-dropdown .dropdown li:hover {
    background-color: #048245;
    border-radius: 10px;
}

.location-dropdown-header.wrapper-dropdown .dropdown li:hover span {
    color: #fff;
}

.location-dropdown-header.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    border-radius: 15px;
}

img.country-flag {
    width: 25px;
    margin-right: 10px;
}

/* Location Dropdown style end */

/* Mobile Header */
.mobile-menu {
    display: none;
}

/* Header end */

/* Footer */

.footer-section {
    background-color: #F6673B;
}

.footer-section-container {
    padding: 89px 70px 31px 70px;
}

.footer-wrapper {
    align-items: center;
    padding-bottom: 56px;
    border-bottom: solid 1px #fff;
}

.footer-social-icons img {
    height: 18px;
    width: auto;
    transition: all 0.4s ease-in-out;
}

.footer-social-icons img:hover {
    opacity: 0.7;
}

.footer-logo-wrapper img {
    max-width: 205px;
    width: 100%;
    height: auto;
}

.footer-links-wrapper h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.footer-links-wrapper ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-links-wrapper a:hover {
    transition: color 0.4s ease-in-out;
}

.footer-links-wrapper a:hover {
    color: #f2ed22;
}

.footer-links-wrapper {
    display: flex;
    justify-content: space-around;
}

.contact-content {
    display: flex;
    align-items: center;
}

.contact-content img {
    padding-right: 6px;
    max-width: 24px;
}

.contact-content a {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 40px;
    font-weight: 400;
}

.footer-social-media-container {
    padding-top: 33px;
}

.footer-social-media-container h3 {
    padding-bottom: 12px;
}

.copyright-privacy-policy-wrapper {
    padding-top: 29px;
}

.copyright-container h3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.9px;
}

.copyright-privacy-policy-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-policy-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.privacy-policy-container a {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.9px;
    transition: all 0.4s ease-in-out;
}

.privacy-policy-container a:hover {
    color: #f2ed22;
}

.privacy-policy-container a::before {
    content: "";
    position: absolute;
    height: 28px;
    width: 2px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    left: -10px;
    top: 6px;
}

.privacy-policy-container a:nth-child(1)::before {
    content: "";
    display: none;
}

/* Footer end */

/* Banner Section */
.banner-section {
    width: 100%;
    background-color: #fab29c;
}

.banner-section-wrapper {
    animation-duration: 4s;
    animation-name: fade;
}

.banner-section-content h4 {
    text-transform: uppercase;
    padding-top: 50px;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.28px;
}

.banner-section-content {
    text-align: center;
    padding-left: 10px;
}

.banner-section-content h1 {
    max-width: 480px;
    margin: auto;
    color: #000000;
    padding-top: 5px;
}

.banner-section-content h1 span {
    font-weight: 700;
    position: relative;
}

.banner-section-content h1 span::after {
    content: "";
    background-image: url("/wp-content/uploads/2024/10/underline.svg");
    width: 154px;
    height: 14px;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
}

.banner-section-content p {
    padding-top: 9px;
    padding-bottom: 36px;
    max-width: 100%;
    margin: auto;
    color: #000000;
}

.banner-section-content .primary-button {
    justify-content: center;
}

.banner-section-buttons {
    display: flex;
    justify-content: center;
    padding-bottom: 72px;
    flex-direction: row;
    column-gap: 59px;
}

.banner-image-wrapper {
    padding-left: 53px;
    position: relative;
    max-width: 100%;
    padding-bottom: 20px;
}

.banner-image {
    max-width: 100%;
}

.banner-logo {
    position: absolute;
    max-width: 30%;
    left: 0;
}

.mobile-banner {
    display: none;
}

.desktop-banner-image {
    padding-top: 20px;
    align-content: center;
}

.home .banner-section .primary-button {
    animation: tilt-shaking 0.2s linear 0s 10 forwards;
}

/* Banner Section end */

/* Sign up section */
.sign-up-content-container {
    background-color: #ddbbd8;
}

.sign-up-right-container-section {
    background-color: #ffffff;
    margin: auto 0;
}

.sign-up-section-right-container {
    float: left;
    max-width: 800px;
}

.sign-up-container {
    float: right;
    max-width: 500px;
}

.sign-up-content {
    padding-top: 76px;
    width: 100%;
}

.sign-up-content img {
    margin: auto;
    width: 84%;
    display: flex;
}

.sign-up-content-text {
    padding-left: 65px;
    padding-top: 46px;
}

.sign-up-content-text p {
    font-size: 18px;
    max-width: 98%;
    letter-spacing: -0.2px;
    line-height: normal;
    padding-bottom: 41px;
}

.sign-up-content-text .primary-button {
    padding-bottom: 35px;
}

.right-section-container {
    padding-left: 70px;
    padding-top: 35px;
    padding-bottom: 72px;
}

.right-section-container .row {
    align-items: center;
}

.right-section-image-wrapper {
    width: 100%;
}

.right-section-image-wrapper img {
    border-radius: 55px;
    width: 100%;
}

.right-section-content {
    padding-left: 20px;
}

.right-section-content h4 {
    color: #F6673B;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.4px;
}

.right-section-content p {
    font-size: 19px;
    line-height: normal;
    letter-spacing: -0.2px;
    max-width: 75%;
}

/* ----for info page----- */
.sign-up-content-text h3 {
    color: #F6673B;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -1.2px;
}

.right-section-description-points-text {
    padding-left: 70px;
    padding-top: 72px;
}

.right-section-description-points-text h3 {
    font-size: 72px;
    line-height: 79px;
    max-width: 84%;
}

.right-section-description-points-text p {
    font-size: 19px;
    line-height: normal;
    max-width: 86%;
    padding-top: 25px;
    padding-bottom: 18px;
}

/* Sign up Section end */

/* Get Started Video Section */
.video-container {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.video-container img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -2px;
    /*adding this to remove the video box line in the background visible in responsive view*/
}

.video-container video {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 10px);
    height: calc(100% - 29px);
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.video-container iframe {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.video-container-wrapper h4 {
    padding-top: 89px;
    padding-left: 80px;
    padding-bottom: 45px;
    max-width: 80%;
}

.right-section-points-section {
    padding-top: 110px;
    position: relative;
    z-index: 2;
}

.highlighted-points {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 30px;
}

.point-heading-wrapper {
    width: 40%;
    margin-left: 15px;
}

.point-heading-wrapper h2 span {
    font-size: 86px;
    font-style: normal;
    font-weight: 700;
    line-height: 147px;
    padding-top: 10px;
    padding-right: 24px;
}

.point-heading-wrapper h2 {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: baseline;
    font-size: 72px;
}

.point-heading-wrapper h2 img {
    height: 23px;
    width: 207px;
    position: absolute;
    bottom: 24px;
    right: 0;
}

.point-description-wrapper {
    width: 44%;
}

.point-description-wrapper h4 {
    max-width: 100%;
    font-size: 30px;
    line-height: normal;
}

.right-section-points-section .primary-button {
    padding-top: 8px;
    padding-bottom: 60px;
    justify-content: center;
}

/* Get Started Video Section end */

/* Testimonial Section */
.customer-testimonial-section {
    background-color: #fff;
}

.customer-testimonial-section-container {
    padding: 50px 46px 50px 60px;
}

.customer-testimonial-section-container p {
    width: 100%;
    padding-bottom: 15px;
    text-align: center;
    font-size: 32px;
}

.customer-testimonial-section-container p img {
    margin: -10px 5px;
}

.testimonial-section-row {
    padding-top: 55px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.customer-card {
    width: 20%;
    padding: 0 15px;
}

.customer-card img {
    width: 100%;
    height: auto;
    border-radius: 28px;
}

.customer-card p {
    color: #302b2b;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.9px;
    padding-top: 12px;
}

.testimonial-section-btn {
    width: fit-content;
    margin: auto;
    margin-top: 30px;
}

/* Testimonial Section end */

/* Information and Experience Section */
.information-section {
    background-color: #ffffff;
}

.information-section-container {
    padding-bottom: 25px;
}

.information-section-container p {
    color: #302b2b;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.95px;
}

.information-section-container h5 {
    color: #F6673B;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -1.7px;
}

.information-section-left-div {
    width: 51%;
    padding: 50px 82px 50px 71px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.information-section-right-div {
    width: 49%;
    padding: 99px 80px 72px 55px;
}

.fluid-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.main-display-image-parent {
    position: relative;
    width: 720px;
}

.main-display-image-parent img {
    width: 100%;
    height: auto;
    border-radius: 38px;
    object-fit: cover;
}

.information-section-right-div-container {
    max-width: 720px;
}

.overlay-div {
    position: absolute;
    width: 80%;
    bottom: -78px;
    right: 0;
    padding: 39px 65px 31px 33px;
    border-radius: 38px;
}

.overlay-div h5 {
    margin-bottom: 20px;
}

.infosection-repeater-col {
    position: relative;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    max-width: 47%;
}

.infosection-repeater-col h5 {
    margin-top: 15px;
    margin-bottom: 25px;
}

.infosection-repeater-col a {
    color: #302b2b;
    text-decoration: underline;
    transition: all 0.4s ease;
}

.infosection-repeater-col a:hover {
    text-decoration: none;
}

.col-gap {
    row-gap: 88px;
}

.repeater-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.repeater-flex.reverse {
    flex-direction: row-reverse;
}

.infosection-repeater-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
}

/* Information and Experience Section end */

/* Spotify Section */

.spotify-section-container .row {
    align-items: center;
}

.spotify-section-right-div {
    padding: 80px 60px 110px 60px;
    text-align: center;
}

.spotify-section-right-div h5 {
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 100px;
    letter-spacing: -1.777px;
    padding-top: 22px;
    padding-bottom: 34px;
}

.spotify-section-right-div h6 {
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.26px;
    padding-bottom: 40px;
}

.spotify-section-right-div .primary-button a {
    width: max-content;
    margin: auto;
    padding: 17px 86px;
}

.spotify-section-left-div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 116px 51px 75px 64px;
}

.spotify-section-display-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.spotify-section-right-div img {
    max-width: 185px;
    height: auto;
}

.spotify-section-absolute-logo {
    display: none;
}

.spotify-section-images-div {
    width: 100%;
    position: relative;
    margin: auto;
}

.social-media-icons-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 58%;
    margin: auto;
    padding-top: 12px;
}

.social-media-icons-wrapper a {
    transition: all 0.4s ease;
}

.social-media-icons-wrapper a:hover {
    opacity: 0.7;
}

.social-media-icons-wrapper img {
    max-height: 55px;
    width: auto;
}

.spotify-section-left-div .video-container video {
    height: calc(100% - 14px);
}

/* Spotify Section end */

/* Teddy Sports Section */
.teddy-sports-section h4 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.8px;
    padding-top: 60px;
    padding-left: 90px;
}

.teddy-sports-content {
    text-align: center;
    padding-bottom: 25px;
}

.teddy-sports-content p {
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -1.539px;
}

.teddy-sports-content a {
    color: #302b2b;
    text-decoration: underline;
}

.teddy-sports-image-wrapper {
    max-width: 100%;
    position: relative;
    height: 200px;
}

.teddy-sports-image-wrapper .main-image {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.teddy-sports-image-wrapper .logo {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 60px;
}

.teddy-sports-container-wrapper {
    padding: 68px 65px 60px 65px;
    position: relative;
    z-index: 10;
}

.teddy-sports-container-wrapper .col-sm-4 {
    padding-left: 25px;
    padding-right: 25px;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

.teddy-sports-content a {
    transition: all 0.6s ease;
}

.teddy-sports-content a:hover {
    text-decoration: none;
}

/* Teddy Sports Section end */

/* Franchises Section */
.franchises-section {
    margin: auto;
    background-size: cover;
    background-position: right;
}

.franchises-container-wrapper {
    color: #ffffff;
    height: 883px;
    display: flex;
    align-items: flex-end;
}

.franchises-content {
    padding-left: 70px;
    padding-right: 15px;
}

.franchises-content h3 {
    max-width: 770px;
}

.franchises-content-wrapper {
    padding: 36px 0 107px 0;
}

.franchises-content-wrapper h6 {
    font-size: 28px;
    line-height: 37px;
    letter-spacing: -0.888px;
    max-width: 60%;
    margin-bottom: 20px;
}

/* Franchises Section end */

/* Introduction with Images Section */
.introduction-section {
    background-color: #ffffff;
}

.introduction-section-container h4 {
    padding: 57px 50px 48px 92px;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.8px;
    text-align: center;
}

.introduction-cards-container {
    margin-left: 80px;
    margin-right: 92px;
    padding-bottom: 110px;
    justify-content: space-between;
}

.introduction-card img,
.introduction-card video {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    object-fit: cover;
}

.introduction-card video {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.introduction-card-image-container {
    max-width: 554px;
    position: relative;
    height: 100%;
}

.introduction-overlay {
    position: absolute;
    width: 78%;
    bottom: -8%;
    right: 0;
    padding: 10px 30px 18px 30px;
    border-radius: 38px;
}

.introduction-overlay p {
    padding-bottom: 15px;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -1.25px;
}

.introduction-overlay a {
    color: #302b2b;
    font-size: 19px;
    line-height: 120%;
    letter-spacing: 0.76px;
    font-weight: 400;
    text-decoration: underline;
}

.introduction-overlay a:hover {
    text-decoration: none;
}

/* Introduction With Images Section end */

/* Country Filter Form Section */
.country-filter-form-section {
    background-color: #ddbad8;
}

.page-id-1218 .country-filter-form-section,
.page-id-1153 .country-filter-form-section,
.find-a-class .country-filter-form-section {
    background-color: #fab29c;
}

.page-id-1218 .country-filter-form-section-container,
.page-id-1153 .country-filter-form-section-container,
.find-a-class .country-filter-form-section-container {
    min-height: 70vh;
}

.country-filter-form-text-container {
    /* padding-top: 54px; */
    margin: 0 auto;
}

.country-filter-form-subheading {
    padding: 30px 0 30px 0;
}

.country-form-text-content {
    padding-left: 66px;
}


.country-filter-form-section-container.section {
    padding: 78px 50px 78px 0;
}

.country-filter-form-slider-content a p {
    color: #30262e;
    font-size: 22px;
    line-height: 28px;
    padding-top: 10px;
    letter-spacing: -0.675px;
    text-decoration: underline;
    text-align: center;
}

.country-filter-form-slider-content a p:hover {
    text-decoration: none;
}

.country-filter-form-slider-content a img {
    border-radius: 16px;
    margin: auto;
    max-width: 100px;
    min-height: 100px;
}

.country-slider {
    padding: 50px 74px 0 86px;
    max-width: 100%;
    margin: auto;
}

.slider-l,
.slider-r {
    position: absolute;
    cursor: pointer;
    top: 60px;
}

.slider-l {
    left: 20px;
}

.slider-r {
    right: 0px;
}

/* Country Filter Form Section end */

/* -------- TERRITORY PAGE START -------- */

/* Territory Banner Section */
.territory-banner-section-wrapper {
    animation-duration: 4s;
    animation-name: fade;
}

.territory-banner-section-content-container {
    text-align: center;
    padding-top: 100px;
}

.territory-banner-section-subheading {
    text-transform: uppercase;
}

.territory-banner-section-subheading span {
    position: relative;
}

.territory-banner-section-subheading span::after {
    content: "";
    background-image: url("/wp-content/uploads/2024/10/underline.svg");
    width: 48px;
    height: 10px;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}

.territory-banner-section-content-container {
    color: #000;
}

.territory-banner-section-content {
    background-color: #ddbbd8;
    text-align: center;
    max-width: 90%;
    border-radius: 120px;
    padding: 26px 6px;
    margin: auto;
    margin-top: 22px;
}

.territory-banner-section-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: -1.12px;
    padding-bottom: 6px;
    max-width: 80%;
    margin: auto;
}

.territory-banner-section-content p {
    width: 100%;
    margin: auto;
    text-align: left;
    padding: 0 0 0 10%;
}

.territory-banner-section-age-range-container p {
    width: 100%;
}

.territory-contact-details h5 {
    width: 80%;
    margin: auto;
    text-align: left;
}

.territory-class-name-list p {
    font-weight: 600;
}

.desktop-territory-banner-image {
    align-items: center;
    display: flex;
}

.territory-banner-image-wrapper {
    padding-left: 53px;
    padding-top: 30px;
    position: relative;
    max-width: 100%;
    padding-bottom: 20px;
}

.territory-banner-image {
    max-width: 100%;
}

.territory-banner-logo {
    position: absolute;
    max-width: 30%;
    left: 0;
}

.territory-banner-section-age-range-container {
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 0;
}

.territory-banner-section-content h6 {
    max-width: 88%;
    font-style: italic;
    margin: auto;
}

.age-container {
    background-color: #fab29c;
    border-radius: 70px;
    padding: 18px;
    width: 20%;
    min-width: 115px;
    text-align: center;
}

.age-container h6 {
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.52px;
    line-height: 20px;
}

.age-container p {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 20px;
    width: 100%;
    padding: 0;
    text-align: center;
}

.territory-banner-categories {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 100%;
    margin: auto;
}

.territory-banner-categories h5 {
    text-transform: uppercase;
    background-color: #fff;
    padding: 2px 10px;
    border-radius: 28px;
}

.territory-banner-info-container {
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: 80%;
}

.territory-banner-info-container h6 {
    padding-left: 17px;
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0.6px;
    margin: 0;
    word-wrap: break-word
}

.territory-mobile-banner {
    display: none;
}

.territory-banner-section-content p span.class-count {
    text-transform: lowercase;
}

.header-menu .menu-header-menu-container #menu-item-1191.current-menu-item a,
.header-menu .menu-header-menu-container #menu-item-1172.current-menu-item a,
.header-menu .menu-header-menu-container #menu-item-1226.current-menu-item a {
    color: #fff;
}

.header-menu .menu-header-menu-container #menu-item-1191.current-menu-item a:hover,
.header-menu .menu-header-menu-container #menu-item-1172.current-menu-item a:hover,
.header-menu .menu-header-menu-container #menu-item-1226.current-menu-item a:hover {
    color: #f2ed22;
}

/* Territory Banner Section end */

/* Book Class Section */

.book-class-section h4 {
    padding: 4px 60px 30px 64px;
    font-size: 30px;
}

.book-class-content {
    background-color: #fab29c;
    border-radius: 34px 0 0 34px;
    padding: 15px 34px 15px 34px;
    margin-bottom: 23px;
}

.book-class-content-wrapper {
    display: flex;
    gap: 30px;
}

.info-icon-container-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon-container-wrapper img {
    width: 26px;
    height: auto;
}

.class-information {
    background-color: #ffffff;
    width: 16%;
    padding: 10px 12px;
    border-radius: 38px;
    text-align: center;
    display: flex;
    align-items: center;
}

.class-information .class-information-content {
    margin: auto;
}

.info-icon-container-wrapper h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.52px;
}

.class-information-wrapper p {
    font-size: 18px;
    line-height: 28px;
}

.class-information-wrapper h5 {
    text-transform: uppercase;
}

.class-venue-information h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.26px;
    max-width: 90%;
    margin: auto;
}

.class-fee-information h6 {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.26px;
    margin: auto;
    max-width: 90%;
}

.class-fee-information h6 span {
    display: block;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -0.22px;
}

.available-classes {
    display: flex;
    gap: 30px;
}

.available-classes .class-venue-information p {
    line-height: 18px;
}

.available-classes-information {
    width: 84%;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    margin: auto;
}

.available-classes p {
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
}

.available-class-timing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 60%;
    border-radius: 14px;
    padding: 5px 10px;
}

.available-classes-book-button {
    display: flex;
}

.available-classes-book-button a {
    background-color: #ff0;
    border-radius: 14px;
    padding: 2px 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    color: #000;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.available-classes-book-button a:hover {
    background-color: #000;
    color: #ff0;
}

/* Book Class Section end */

/* Territoy Video Section */

.territory-video-section {
    padding: 107px 0 60px;
}

.territory-video-section-container .row {
    align-items: center;
}

.territory-video-container video {
    width: 100%;
    max-height: 342px;
    object-fit: cover;
    /* background-image: url("/wp-content/uploads/2024/04/Teddy-Padel-padel-for-kids-lightweight-rackets-fun-stories-from-Teddy-Sports-World.png");
  background-repeat: no-repeat;
  background-size: cover; */
}

.territory-video {
    padding-left: 57px;
}

.territory-text {
    padding-left: 52px;
}

.territory-text-container h3 {
    color: #008733;
    font-size: 85px;
    font-style: normal;
    font-weight: 700;
    max-width: 98%;
    line-height: 110.4px;
    letter-spacing: -4.509px;
}

/* Territory Video Section end */

/* Client Feedbacks Section */

.client-feedbacks-section {
    background-color: #ddbbd8;
}

.client-feedback-text {
    background-color: #a7d5b8;
    border-radius: 34px;
    padding: 36px 0 24px 33px;
}

.client-feedback-text h3 {
    color: #008733;
    font-size: 34px;
    line-height: 50px;
    letter-spacing: -1.7px;
}

.client-feedback-text p {
    padding-top: 10px;
    font-size: 19px;
    line-height: 26px;
    max-width: 82%;
    letter-spacing: -0.95px;
}

.client-feedback-text-content {
    padding-top: 78px;
    padding-left: 128px;
    padding-bottom: 53px;
}

.client-feedbacks-section-container .row {
    align-items: center;
}

.client-images-wrapper {
    padding-left: 60px;
}

.client-image-overlay-text h6,
.client-image-overlay-text p {
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -1.359px;
    text-align: center;
}

.client-image-overlay-text p {
    padding-top: 10px;
}

.client-image-overlay-text h6 {
    text-decoration: underline;
}

.client-images-wrapper .col-sm-4 {
    margin: auto;
    padding: 10px 15px;
}

.teacher-image-wrapper {
    position: relative;
}

.teacher-background-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -1px;
}

.teacher-image {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 4px);
    height: calc(100% - 8px);
    margin: auto;
}

.teacher-slider .slick-dots li button:before {
    font-size: 38px;
}

.teacher-image-wrapper svg {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 2px);
    height: calc(100% - 10px);
}

.teacher-slider img,
.teacher-slider svg {
    margin: auto;
}

.teacher-slider svg {
    height: calc(100% - 2px);
}

/* Client Feedbacks Section end */

/* Kids to Learn Section */

.kids-to-learn-section {
    background-color: #ddbbd8;
}

.kids-to-learn-mobile-image-section {
    display: none;
}

.kids-to-learn-section-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 109px 121px 38px 38px;
}

.kids-to-learn-section-heading-wrapper h3 {
    color: #F6673B;
    width: 82%;
    font-size: 116px;
    font-weight: 700;
    line-height: 124.4px;
    letter-spacing: -5.271px;
}

.kids-to-learn-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px 107px 52px;
}

.kids-to-learn-section-text-content p {
    font-size: 37px;
    font-weight: 400;
    line-height: 59px;
    letter-spacing: -1.125px;
    padding-bottom: 48px;
}

.kids-to-learn-section-text-content {
    width: 52%;
}

.kids-to-learn-section-heading-wrapper img {
    width: 17%;
}

.kids-to-learn-section-content-wrapper {
    width: 37%;
}

.kids-to-learn-section-content-wrapper img {
    width: 100%;
}

.kids-to-learn-section-content-wrapper .primary-button {
    justify-content: center;
    margin-top: 42px;
}

/* Kids to Learn Section end */

/* -------- TERRITORY PAGE END -------- */

/* -------- INFO PAGE START -------- */

/* Info Banner Section */

.info-banner-section {
    background-color: #fab29c;
    padding-top: 40px;
}

.info-banner-section-wrapper {
    animation-duration: 4s;
    animation-name: fade;
}

.info-banner-section-wrapper .row {
    align-items: center;
}

.info-banner-video-container {
    width: 94%;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.info-banner-video-background-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -2px;
    /*adding this to remove the video box line in the background visible in responsive view*/
}

.info-banner-video-container video {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 3px);
    height: calc(100% - 7px);
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.info-banner-video-container iframe {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.info-banner-logo {
    position: absolute;
    max-width: 30%;
    right: 0;
    top: 0;
    z-index: 2;
}

.info-banner-section-content {
    text-align: center;
    padding-left: 15px;
}

.info-banner-section-content h4 {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.28px;
    /* padding-top: 50px; */
}

.info-banner-section-content h2 {
    margin: auto;
    color: #000;
    font-size: 72px;
    line-height: 120%;
    letter-spacing: -1.8px;
    padding: 1px 0 3px 0;
    max-width: 95%;
}

.info-banner-section-content h2 span {
    position: relative;
}

.info-banner-section-content h2 span::after {
    content: "";
    background-image: url("/wp-content/uploads/2024/10/underline.svg");
    background-repeat: no-repeat;
    width: 188px;
    height: 14px;
    position: absolute;
    top: 82px;
    left: 0px;
    right: 0;
}

.info-banner-section-content p {
    max-width: 92%;
    margin: auto;
    padding-bottom: 54px;
}

.info-banner-section-buttons {
    padding-bottom: 30px;
}

.info-banner-section-buttons .primary-button {
    justify-content: center;
    margin-bottom: 14px;
}

.info-banner-section-buttons .primary-button a {
    justify-content: center;
    max-width: 242px;
    width: 100%;
}

.info-banner-video {
    align-content: center;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 50px;
}

.page-id-373 .info-banner-section .primary-button {
    animation: tilt-shaking 0.2s linear 0s 10 forwards;
}

/* Info Banner Section end */

/* Info FAQ Section */
.info-faq-section {
    max-width: 100%;
}

.info-faq-content-container {
    background-color: #FAB29C;
    padding-right: 30px;
}

.info-faq-right-container-section {
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.info-faq-section-right-container {
    float: left;
    max-width: 800px;
}

.info-faq-container {
    float: right;
    max-width: 500px;
}

.info-faq-content {
    padding-top: 76px;
    width: 100%;
}

.info-faq-content h3 {
    font-size: 71px;
}

.info-faq-content-video {
    width: 100%;
    height: auto;
    position: relative;
    margin: 30px auto 82px;
}

.info-faq-content-video video,
.info-faq-content-video img{
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 3px);
    height: calc(100% - 7px);
    margin: auto;
}

.info-faq-content-video img.info-faq-video-background-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -2px;
    /*adding this to remove the video box line in the background visible in responsive view*/
}

.info-faq-content-video iframe {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info-faq-right-section-wrapper {
    padding: 26px 30px 54px 82px;
}

.info-faq-para-button-wrapper {
    max-width: 68%;
}

.info-faq-right-section-wrapper .primary-button {
    margin: auto;
    margin-top: 30px;
    max-width: max-content;
}

.info-faq-right-section-wrapper p a {
    color: #302b2b;
    text-decoration: underline;
    transition: all 0.6s ease;
}

.info-faq-right-section-wrapper p a:hover {
    text-decoration: none;
}

.info-faq-right-section-wrapper p a {
    color: #302b2b;
    text-decoration: underline;
}

.info-faq-right-section-wrapper p {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: -0.6px;
}

.info-faq-query-points {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.info-faq-query-points img {
    max-width: 52px;
}

.info-faq-query-points h3 {
    font-size: 29px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.896px;
}

.info-faq-question-container {
    padding-top: 63px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.booking-faqs-content {
    display: none;
}

.showFAQs .booking-faqs-content {
    display: block;
}

/* Info FAQ Section end */

/* Info Ways to Play Section */
.info-ways-to-play-section {
    padding-top: 20px;
}

.info-ways-to-play-section-container {
    padding: 0px 40px 54px;
}

.info-ways-to-play-section-container h4 {
    text-align: center;
}

.info-ways-to-play-section-wrapper {
    padding-top: 68px;
    justify-content: center;
}

.ways-to-play-card {
    text-align: center;
}

.info-way-to-play-disclaimer a {
    color: #30262e;
    text-decoration: underline;
    text-align: right;
}

.info-way-to-play-disclaimer p {
    padding-right: 41px;
}

.info-way-to-play-disclaimer {
    text-align: right;
    padding-top: 64px;
}

.info-way-to-play-disclaimer a {
    transition: all 0.6s ease;
}

.info-way-to-play-disclaimer a:hover {
    text-decoration: none;
}

.ways-to-play-card img {
    border-radius: 45px;
}

.ways-to-play-card h5 {
    color: #F6673B;
    padding: 22px 0 12px;
    line-height: 30px;
    letter-spacing: -0.5px;
    max-width: 78%;
    margin: auto;
}

.ways-to-play-card h6 {
    line-height: 30px;
    letter-spacing: -0.5px;
    max-width: 80%;
    margin: auto;
    font-size: 18px;
}

.ways-to-play-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Info Ways to Play Section end */

/* Info Franchises Section */
.info-franchises-section h2 {
    text-align: center;
    padding-top: 109px;
    padding-left: 26px;
    font-size: 80px;
    font-weight: 700;
    line-height: 124.4px;
    letter-spacing: -2.364px;
}

.info-franchises-video-container {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.info-franchises-video-container img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -2px;
    /*adding this to remove the video box line in the background visible in responsive view*/
}

.info-franchises-video-container video {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 10px);
    height: calc(100% - 29px);
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info-franchises-video-container iframe {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info-franchises-section-wrapper .row {
    align-items: center;
}

.info-franchises-section-buttons {
    display: flex;
    gap: 30px;
}

.info-franchises-section-point h3 {
    color: #F6673B;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.39px;
}

.info-franchises-section-point p {
    font-size: 19px;
    line-height: normal;
    letter-spacing: -0.4px;
}

.info-franchises-section-point {
    padding-bottom: 21px;
}

.info-franchises-section-points-wrapper {
    padding: 64px 0 109px 30px;
}

.info-franchises-section-buttons {
    padding-top: 43px;
}

.info-franchises-section-buttons .primary-button a {
    padding: 15px 26px;
}

/* Info Franchises Section end */

/* -------- INFO PAGE END -------- */

/* -------- BLOG PAGE START --------- */

.blog-posts-section-container {
    padding-top: 35px;
}

.blog-posts-section-container .row {
    align-items: center;
    padding-bottom: 115px;
}

.featured-image-container {
    width: 80%;
    margin: auto;
    height: 480px;
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px;
}

.posts-content-container h3 {
    color: #302b2b;
    font-size: 37px;
    line-height: 40px;
    letter-spacing: -0.74px;
    max-width: 72%;
    padding-bottom: 20px;
}

.posts-content-container p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.48px;
    max-width: 92%;
    padding-bottom: 20px;
}

.posts-content-container p span {
    font-weight: 700;
}

.search-sort-container-wrapper {
    display: flex;
    justify-content: space-between;
    width: 60%;
    padding-left: 80px;
    padding-bottom: 60px;
}

.search-container,
.sort-container {
    display: flex;
    align-items: center;
    border: 1px solid #302b2b;
    border-radius: 20px;
    padding: 4px 16px;
}

.search-container input {
    border: none;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    width: 90%;
}

.search-container form {
    max-width: 90%;
}

.search-container img {
    width: 18px;
    height: auto;
}

.search-container input:focus,
.sort-container select:focus {
    outline: none;
}

#post-name::placeholder {
    color: #302b2b;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
}

.sort-container p {
    color: #302b2b;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.sort-container select {
    padding-left: 4px;
    border: none;
    width: 130px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    background-color: transparent;
    color: #302b2b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("/wp-content/uploads/2024/06/Clip-path-group-1.svg");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right;
}

.sort-container select::-ms-expand {
    display: none;
}

/* -------- BLOG PAGE END --------- */

/* -------- BLOG POST PAGE START (detail page) ----------- */

.post-banner-section {
    background-color: #FAB29C;
    padding: 50px 0;
}

.post-banner-section-content {
    text-align: center;
    padding-left: 15px;
}

.post-banner-section-wrapper .row {
    align-items: center;
}

.post-banner-section-content h4 {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.28px;
    /* padding-top: 50px; */
}

.post-banner-section-content h2 {
    margin: auto;
    color: #000;
    font-size: 72px;
    line-height: 120%;
    letter-spacing: -1.8px;
    padding: 14px 0 20px 0;
}

.post-banner-section-content p {
    max-width: 92%;
    margin: auto;
    padding-bottom: 60px;
}

.post-featured-image-container {
    width: 90%;
    height: 100%;
    position: relative;
    margin: auto;
}

.post-featured-image-container .attachment-post-thumbnail {
    height: calc(100% - 8px);
    width: calc(100% - 2px);
    position: absolute;
}

.post-featured-image-container .attachment-thumbnail {
    position: absolute;
    z-index: 3;
    right: 0;
    width: 30%;
    height: auto;
}

.post-banner-image-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.blog-post-image-container {
    display: flex;
    justify-content: center;
}

.blog-post-image,
.detail-page-slider {
    width: 80%;
}

.blog-post-image {
    display: flex;
    justify-content: center;
}

.blog-post-image img,
.detail-page-slider img {
    max-width: 554px;
    max-height: 554px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px;
    margin: auto;
}

.blog-post-image-text {
    padding-right: 60px;
}

.blog-post-description-text {
    font-size: 25px;
}

.blog-post-image-text h4 {
    padding-bottom: 28px;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: -1.52px;
}

.blog-post-description-text ul {
    list-style: disc;
    list-style-position: inside;
    margin: 20px auto;
}

.blog-post-description-text ol {
    list-style-position: inside;
    margin: 20px auto;
}

.blog-post-description-text li {
    font-weight: 400;
}

.post-introduction-image-content-wrapper p {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 40px;
}

.blog-post-description-text {
    padding: 60px 60px 50px 80px;
}

.no-post {
    padding-left: 80px;
}

.blog-post-description-text h4 {
    font-size: 39px;
}

.blog-post-description-text p a {
    color: #302b2b;
}

.post-slider-and-content-wrapper {
    padding-top: 139px;
}

/* -------- BLOG POST PAGE END (detail page) ----------- */

/* -------- CONTACT US PAGE --------- */

.contact-us-section {
    background-color: #FAB29C;
    min-height: calc(100vh - 554px);
    display: flex;
}

.contact-us-section-container {
    animation-duration: 4s;
    animation-name: fade;
}

.contact-image-wrapper {
    position: relative;
    max-width: 327px;
    padding-top: 41px;
}

.contact-image {
    width: 100%;
}

.contact-image-logo {
    position: absolute;
    max-width: 30%;
    right: 0;
    top: 36px;
}

.contact-us-container-wrapper {
    padding: 120px 90px;
}

.contact-us-content-container p {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -1.125px;
    padding-top: 46px;
}

.contact-form-wrapper {
    /* max-width: 524px; */
    margin: auto;
}

.contact-form-fields {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    align-items: center;
    row-gap: 20px;
    justify-content: space-between;
    padding-bottom: 20px;
}

.contact-form-fields p span input {
    height: 32px;
}

.contact-form-fields p span input,
.contact-form-fields p span textarea {
    width: 100%;
    border: none;
    outline: none;
    font-family: "Poppins";
    color: #30262e;
    font-size: 20px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: -1px;
    display: block;
}

.contact-form-fields p span .wpcf7-not-valid-tip {
    font-size: 12px;
    line-height: normal;
}

.contact-form-fields p span textarea {
    height: 144px;
    resize: none;
}

.contact-form-fields p span input::placeholder,
.contact-form-fields p span textarea::placeholder {
    font-family: "Poppins";
    color: #909090;
    font-size: 20px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: -1px;
}

.contact-form-wrapper p .wpcf7-spinner {
    display: none;
}

.contact-form-wrapper p .submit-button {
    border-radius: 80px;
    background: #f6eb13;
    padding: 18px 48px;
    border: none;
    font-family: "Poppins";
    color: #30262e;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.32px;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.contact-form-wrapper p .submit-button:hover {
    background-color: #302b2b;
    color: #f6eb13;
}

.contact-form-wrapper p {
    display: flex;
}

.contact-form-wrapper p:first-of-type:not(.contact-form-fields p) {
    padding-bottom: 8px;
}

.contact-form-wrapper p:has(.submit-button) {
    justify-content: center;
}

.contact-us-content-container h3 {
    line-height: 54px;
}

.contact-form-fields p {
    width: 48.5%;
    display: initial;
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
}

.contact-form-fields p:has(textarea) {
    width: 100%;
}

.contact-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link img {
    max-width: 42px;
    width: 100%;
    height: auto;
}

.contact-link a {
    color: #302b2b;
    font-size: 22px;
    transition: all 0.2s ease;
}

.contact-link a:hover {
    text-decoration: underline;
}

/* -------- CONTACT US PAGE END --------- */

/* Tooltip Section Style */
.lesson {
    padding-right: 8px;
    cursor: pointer;
    position: relative;
    width: fit-content;
    padding-top: 4px;
}

.tooltip {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: fixed;
    height: 100vh;
    width: 100vw;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.tooltip-heading {
    display: flex;
    justify-content: space-between;
}

.tooltip-container {
    margin: auto;
    background: #bbe4ff;
    border-radius: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    max-width: 94%;
    max-height: 90%;
    padding: 25px;
    z-index: 1000;
    color: #000000;
    position: relative;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tooltip-container::-webkit-scrollbar {
    display: none;
}

.tooltip-content-col h3 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.39px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-right: 24px;
}

.tooltip p,
.tooltip li,
.tooltip a {
    font-size: 22px;
    line-height: normal;
    letter-spacing: -0.4px;
}

.tooltip p {
    margin: 6px 0;
    text-align: left;
}

.close-tooltip,
.close-tooltip-info-banner {
    font-size: 32px;
    cursor: pointer;
    color: #000000;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 99999;
}

.tooltip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 40px;
}

.primary-button.book-now {
    display: flex;
    width: 200px;
    padding-top: 60px;
}

.primary-button.book-now a {
    width: 100%;
    justify-content: center;
}

.tooltip-content-col {
    width: 100%;
}

.profile-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-img h4 {
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.4px;
    font-weight: 600;
    padding: 0;
}

.profile-img {
    text-align: center;
    max-width: 25%;
}

.tooltip .profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.profile-content {
    width: 80%;
}

.tooltip-button-col {
    width: 20%;
}

.tooltip-button-col a {
    background-color: #f6eb13;
    color: #000;
    border-radius: 24px;
    padding: 6px 10px;
    transition: all 0.4s ease;
}

.tooltip-button-col a:hover {
    background-color: #000;
    color: #f6eb13;
}

a.disabled-link {
    pointer-events: none;
    background-color: #ccc;
}

.tooltip-bottom-col {
    width: 100%;
}

/* Tooltip Section Style END */

/* 404 page */

.four-0-four-section {
    background-color: #FAB29C;
    min-height: calc(100vh - 554px);
    display: flex;

}

.four-0-four-section-container .row {
    align-items: center;
}

.four-0-four-section-right-div {
    padding: 80px 60px 110px 60px;
    text-align: center;
}

.four-0-four-section-right-div h5 {
    color: #F6673B;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -1.777px;
    padding-top: 22px;
    padding-bottom: 34px;
}

.four-0-four-section-right-div h6 {
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.26px;
    padding-bottom: 40px;
}

.four-0-four-section-right-div .primary-button a {
    width: max-content;
    margin: auto;
    padding: 17px 86px;
}

.four-0-four-section-left-div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 51px 75px 64px;
}

.four-0-four-images-wrapper {
    position: relative;
    margin-top: 80px;
}

.four-0-four-image {
    width: 100%;
}

.four-0-four-image-logo {
    position: absolute;
    max-width: 30%;
    right: 0;
    top: -8px;
}

/* 404 page END */

/* 21 August 2024 */
div[class$="theme--light"] {
    display: none !important;
}

.territory-video-section {
    display: none;
}

.main-content-loading {
    padding-bottom: 16px;
}

#no-data-message {
    padding-top: 20px;
}

.teacher-detail-row {
    display: flex;
    gap: 20px;
}

.teacher-detail-col {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.tooltip .teacher-detail-col p {
    line-height: 20px;
}

.tooltip .teacher-detail-col .teacher-bio-link {
    max-width: 88%;
    margin: auto;
}

.teacher-detail-col a {
    color: #000;
    font-size: 18px;
}

.teacher-detail-col a:hover {
    opacity: 0.6;
}

.teacher-detail-col p {
    text-align: center;
}

p.teacher-details {
    display: flex;
    flex-direction: column;
    margin: 0 auto auto auto;
    width: 149px;
    text-align: center;
}

p.teacher-details img,
p.teacher-details svg {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
}

p.teacher-details strong {
    font-size: 15px;
    margin: auto;
    margin-top: 10px;
}

/* 09 Decemeber 2024 */

/* Two Col Spherical Image And Content Section starts here */
.two-col-spherical-image-and-content-section {
    padding: 65px 15px 130px;
}

.two-col-spherical-image-and-content-section .row {
    align-items: center;
}

.two-col-spherical-image-and-content-text-wrapper.info-franchises-section-points-wrapper {
    padding: 0;
    padding-left: 30px;
}

.two-col-spherical-image-and-content-text-wrapper h3 {
    font-size: 76px;
    font-weight: 500;
    line-height: 79px;
    letter-spacing: -1.52px;
}

.two-col-spherical-image-and-content-text-wrapper h4 {
    padding: 68px 0 12px;
    font-size: 36px;
    line-height: 79px;
    letter-spacing: -0.88px;
}

.two-col-spherical-image-and-content-text-wrapper a {
    color: #302b2b;
}

.two-col-spherical-image-and-content-text-wrapper p {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.76px;
}

.two-col-spherical-image-and-content-text-wrapper .primary-button{
    margin-top: 20px;
}

/* Two Col Spherical Image And Content Section ends here */

/* 12 December 2024 */

/* Twol col image and content birthday section starts here*/
.birthday-section-wrapper .row {
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.two-col-content-wrapper {
    display: flex;
    background-color: #A7D5B8;
    align-items: center;
}

.two-col-content-wrapper h3 {
    font-size: 57px;
    line-height: 74px;
    letter-spacing: -1.14px;
    padding-bottom: 60px;
}

.two-col-content-wrapper p {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.68px;
}

.two-col-content a {
    color: #302b2b;
}

.two-col-content .primary-button{
    margin-top: 20px;
}

.two-col-image-wrapper {
    padding: 122px 65px;
    max-width: 590px;
    margin-right: auto;
}

.two-col-image-wrapper img {
    width: 100%;
    height: auto;
}

.two-col-content {
    padding: 30px 30px 50px;
    margin-left: auto;
    max-width: 835px;
}

.birthday-section-wrapper .row .col-sm-5 {
    display: flex;
    align-items: center;
}

/* Tow col image and content birhtday section ends here */

/* Classes and age guide section starts here */
.classes-and-age-guide-section {
    text-align: center;
    padding: 25px 15px 65px;
}

.classes-and-age-guide-section h2 {
    font-size: 67px;
    line-height: 79px;
    padding: 0 15px 92px;
}

.classes-and-age-guide-card-content p {
    padding: 12px 20px;
    background-color: #ddbad8;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 18px;
    width: max-content;
    margin: auto;
}

.classes-and-age-guide-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.classes-and-image-guide-image {
    padding-bottom: 13px;
}

.classes-and-age-guide-card-content h4 {
    padding-top: 39px;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.9px;
}

/* Classes and age guide section ends here */

/* 19-12-2024 */
/* Image Gallery Section */
.image-gallery-section {
    padding: 60px 30px 30px;
}

.image-gallery-section h3 {
    padding: 0 15px 30px;
    text-align: center;
    font-size: 71px;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-auto-rows: 350px;
    grid-gap: 15px;
}

.grid-item {
    position: relative;
    width: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: fit-content;
    height: fit-content;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-content img {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #302b2b;
    cursor: pointer;
}

.popup-wrapper {
    cursor: pointer;
    width: 100%;
    height: 100%;
}


/* End Image Gallery Section */

/* Location Section */

.location-section {
    padding: 60px 30px;
    display: none;
}

.location-section h3 {
    text-align: center;
    padding-bottom: 30px;
    font-size: 71px;
}

.location-map {
    width: 100%;
}

.location-map iframe {
    width: 100%;
}

/* End Location Section */

/* Pop Up */

#home-popup,
#site-popup {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99999;
}

.home-pop-up-container,
.site-pop-up-container {
    background: #fff;
    /* overflow: scroll; */
    scrollbar-width: none;
    max-width: 94%;
    max-height: 90%;
    border-radius: 20px;
    width: 100%;
    margin: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 95px;
    position: relative;
}

.close-home-popup,
.close-site-popup {
    position: absolute;
    top: 25px;
    right: 30px;
    cursor: pointer;
}

.pop-up-video-container {
    display: flex;
    align-items: center;
}

.pop-up-video {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.pop-up-video-background-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -2px;
    /*adding this to remove the video box line in the background visible in responsive view*/
}

.pop-up-video video {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 3px);
    height: calc(100% - 7px);
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pop-up-video img.site-popup-img{
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 4px);
    height: calc(100% - 7px);
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pop-up-logo {
    position: absolute;
    max-width: 156px;
    width: 30%;
    left: 0;
    top: 10%;
    z-index: 2;
}

.site-pop-up-logo{
    position: absolute;
    max-width: 156px;
    width: 30%;
    top: -5%;
    left: 6%;
    z-index: 2;
}

.pop-up-content-container {
    font-family: "VAG Rounded Next";
}

.pop-up-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pop-up-content-container h4 {
    font-size: 48px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.96px;
}

.site-pop-up-content-container h4 p{
    font-family: 'Poppins';
    font-size: 50px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: normal;
    padding: 0;
}

.site-pop-up-content-container p{
    padding: 20px 0;
    font-family: 'VAG Rounded Next';
    font-size: 22px;
}
.site-pop-up-content-container .site-pop-up-buttons p{
    padding: 0;
}

.site-pop-up-content-container img{
    margin-bottom: 20px;
    max-height: 100px;
    width: auto;
}

.pop-up-content-container h5 {
    font-weight: 400;
    line-height: 32px;
    padding: 42px 0 22px;
}

.pop-up-content-container .primary-button a {
    width: 50%;
    justify-content: center;
}

.site-pop-up-buttons{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ta-left{
    text-align: left;
}

.site-pop-up-buttons .primary-button a {
    width: 172px;
    justify-content: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
}

.popup-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 27px;
    padding-left: 14px;
}

.popup-social-icons a img {
    max-height: 47px;
    width: auto;
}

/* End Pop Up */

/* block editor */

.editor-section h3 {
    padding: 0px 15px;
    text-align: center;
    padding-top: 50px;
    color: #F6673B;
}

.editor-content-block {
    padding: 60px;
}

.editor-content-block p {
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 40px;
}

.editor-content-block li {
    font-family: "Poppins";
    font-weight: 400;
    list-style-position: inside;
    font-size: 28px;
    padding-bottom: 10px;
}

.editor-content-block a {
    color: #F6673B;
    transition: all 0.4s ease-in-out;
}

.editor-content-block a:hover {
    opacity: 0.6;
}

/* end block editor */

/* 6/3/2025 */
.territory-contact-details a {
    color: #000;
}

.territory-contact-details p {
    font-weight: 700;
}

.country-filter-form-section-container.section {
    opacity: 1;
}
/*09-04*/
/* Coach Section */
.certified-coaches {
    background-color: #ddbad8;
}
.certified-coaches-section.section{
    padding-top:60px;
}
.certified-coaches-title{
    text-align: center;
}
.certified-coaches-title h3 {
    font-size: 60px;
    font-weight: 700;
}
.certified-coaches-title p {
    width: 80%;
    margin: 0 auto;
    font-size: 24px;
    padding: 30px 35px;
}
.certified-coaches-slider{
    width:70%;
    padding-bottom:60px;
    margin:0 auto;
}
.coach {
    /* width: 33%;
    float: left; */
    text-align: center;
    margin-bottom:50px;
}
.coach h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.62px;
}
.coach_phone > a{
    color: #000;
}
.popupforteacher {
    width: 100%;
    display: none;
}
body.fixed{
    overflow: hidden;
    height: 100vh;
}
.popupforteacher.active {
    opacity: 1; 
    position: fixed;
    /* top:130px;
    left: 0;
    z-index: 999; */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 99999;
}
.popupforteacher .tooltip-row {
    width: 100%;
}
.popupforteacher .tooltip-container{
    background:#f7f38f;
}
.tooltip-content-col.col-4 {
    width: 40%;
    float: left;
    text-align:center;
    /* padding-top: 20px; */
    margin: auto;
}
.tooltip-content-col.col-8 {
    width: 58%;
    float: left;
}
.wrapper_coach_btn {
    margin-top: 20px;
}
p.coach_bio {
    word-wrap: break-word;
}
.coach_btn {
    background: #F6673B;
    padding: 10px 20px;
    border-radius: 20px;
}
/*.coach_email{
    margin-left: 30px;
}*/
.certified-coaches-filters select {
    max-width: 65% !important;
    justify-content: end !important;
    margin: 0 auto;
}
.coach-img-container {
    /* width: 95%; */
    max-width: 400px;
    height: auto;
    position: relative;
    margin: 0 auto;
}
.coach-img-container div {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.info-our-team-section-wrapper .row{
    display: flex;
    margin: auto;
}
span.team-title {
    display: block;
    margin-bottom: 20px;
    color: #F6673B;
    font-weight: 600;
    margin-top: -20px;
}
.teddy-color{
    color: #F6673B;
}
.coach-img-container img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
    margin: -2px;
}
.mb-4{
    margin-bottom: 50px;
}
.our_team h4{
    margin-bottom: 40px;
}
.info-our-team-section {
    padding-top: 40px;
}
.info-our-team-section-wrapper {
    animation-duration: 4s;
    animation-name: fade;
}
.info-our-team-section-content {
    text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 900px) {
    .certified-coaches-slider-col .find-a-class-filter-container h4 {
        width: 55% !important;
        padding: 0 !important;
    }
    .certified-coaches-slider-col .find-a-class-filter-container {
        flex-direction: unset !important;
    }
}
@media screen and (max-width: 767px) {
    .find-a-class-filters.certified-coaches-filters select {
        padding: 10px 25px;
    }
    .certified-coaches-title p{
        width: 100%;
        padding: 30px 0px;
    }
    .certified-coaches-slider {
        width: 100%;
        padding-bottom: 50px;
    }
    .certified-coaches-filters{
        width: 100% !important;
    }
    .coach {
        width: 100%;
        float: none;
        text-align: center;
    }
    .popupforteacher > .tooltip-container{
        margin: 0;
    }
    .tooltip-content-col.col-4{
        width: 100%;
        float: unset;
        text-align: center;
    }
    .tooltip-content-col.col-8 {
        width: 100%;
        float: unset;
        text-align: center;
    }
    .tooltip-content-col.col-8 h3 {
        display: block;
    }
    .team-title{
        text-align: center;
    }
}