/* Fonts */
@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/Poppins/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter/Inter-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter/Inter-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.inter {
    font-family: 'Inter', sans-serif !important;
}

.poppins {
    font-family: 'Poppins', sans-serif !important;
}

/* End Fonts */
/* remove anchor decoration */
a {
    text-decoration: none !important;
}

/* end remove anchor decoration */
/* missing colors from bootstrap 5 */
.bg-apmi {
    background-color: var(--bs-blue) !important;
}

.text-apmi {
    color: var(--bs-blue) !important;
}

/* end missing colors from bootstrap 5 */
.h-c-form {
    position: relative;
    z-index: 1;
    border-radius: 2rem;
}

.h-c-form .form-disclaimer {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
}

.h-c-form input,
.h-c-form select,
.h-c-form textarea {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.h-c-form::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: -1;
    opacity: 0.6;
    border-radius: 5px;
}

.shadow.dark {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.shadow.dark::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.shadow.light {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.shadow.light::after {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.9;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.shadow.dark-lt {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.shadow.dark-lt::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.05;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.shadow.darker {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.shadow.darker::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.stripes-left {
    position: relative;
}
@media screen and (max-width: 1399px) {
    .sports-medicine-section {
        background: none !important;
    }
}
@media screen and (min-width: 1399px) {
    .sports-medicine-section {
        background-position-x: 0% !important;
    }
}
@media screen and (max-width: 1440px) {
    .apmi-hero-heading {
        font-size: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lines-between {
        position: relative;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .lines-between::before {
        content: " ";
        width: 100%;
        left: 0;
        top: 0%;
        height: 1px;
        background: white;
        position: absolute;
    }
    .lines-between::after {
        content: " ";
        width: 100%;
        right: 0;
        top: 100%;
        height: 1px;
        background: white;
        position: absolute;
    }

}
@media screen and (min-width: 1440px) {
    .apmi-hero-heading {
        font-size: 4rem;
    }
    .lines-between {
        position: relative;
    }
    .lines-between::before {
        content: " ";
        width: 40%;
        left: 0;
        top: 50%;
        height: 1px;
        background: white;
        position: absolute;
    }
    .lines-between::after {
        content: " ";
        width: 40%;
        right: 0;
        top: 50%;
        height: 1px;
        background: white;
        position: absolute;
    }

}
@media screen and (min-width: 1440px) {

    .stripes-left::before {
        content: " ";
        display: block;
        position: absolute;
        left: 1%;
        width: 4rem;
        height: 100%;
        top: 0;
        background-color: var(--bs-primary);
    }

    .stripes-left::after {
        content: " ";
        display: block;
        position: absolute;
        left: calc(1% + 4.5rem);
        width: 1rem;
        height: 100%;
        top: 0;
        background-color: var(--bs-blue);
    }
}

.sports-medicine-list li {
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    padding-left: 2px;
}
.sports-medicine-list li::marker {
    content: "\ed55";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    margin-right: 2px;
    -webkit-font-smoothing: antialiased;
}

.linear-50 {
    background: rgb(240, 240, 240);
    background: linear-gradient(0deg, rgba(240, 240, 240, 1) 0%, rgba(240, 240, 240, 1) 50%, rgb(250, 250, 250) 50%, rgba(250, 250, 250, 1) 100%);
}
.bg-ltshadow {
    background-color: rgb(240, 240, 240);
}

.site-heading::before {
    background: var(--bs-primary) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 40px;
}
.site-heading::after {
    background: var(--bs-primary) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: 20px;
    position: absolute;
    width: 5px;
}

.owl-page span {
    display: block !important;
    height: 20px !important;
    width: 20px !important;
    margin: 0 5px !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    position: relative !important;
    z-index: 1 !important;
    border: 2px solid #cccccc !important;
}
.owl-page.active span::after {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    content: "" !important;
    height: 5px !important;
    width: 5px !important;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    background: var(--bs-primary) !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}

.testimonials-area .heading::before {
    position: absolute;
    right: 60%;
    top: -30px;
    content: "\ea49";
    font-family: 'icomoon' !important;
    font-weight: 600;
    font-size: 120px;
    opacity: 0.2;
    color: #ffffff;
}
@media screen and (max-width: 600px) {

    footer .nav-link {
        font-size: 14px;
    }
    footer .address .inter {
        font-size: 14px;
    }

}

.cta-phone {
    background-color: rgba(197, 17, 32, .5);
    position: absolute;
    right: 2%;
    top: 2%;
}
.cta-phone * {
    position: relative;
    z-index: 3;
}

@keyframes phoneBuzz {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px) rotate(5deg);
    }
    50% {
        transform: translateX(5px) rotate(-5deg);
    }
    75% {
        transform: translateX(-5px) rotate(5deg);
    }
    100% {
        transform: translateX(0);
    }
}

.cta-phone .icon-phone::before {
    animation: phoneBuzz 2.5s infinite;
    display: inline-block;

}
