/* Noto Sans Arabic Font */
@font-face {
    font-family: 'Noto Sans Arabic';
    src: url('../fonts/Noto_Sans_Arabic/NotoSansArabic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* RTL Base Styles */
html {
    direction: rtl;
}

body {
    text-align: right;
}

.direction-ltr{
    direction:ltr
}
.direction-rtl{
    direction:rtl
}

/* Keep navbar layout same as English (logo left, menu right) */
nav.navbar .container.direction-rtl {
    direction: ltr;
}
nav.navbar .container.direction-rtl .navbar-brand {
    margin-right: 0;
    margin-left: auto;
}
nav.navbar .container.direction-rtl .navbar-nav {
    direction: ltr;
    margin-left: auto !important;
    margin-right: 0 !important;
    flex-direction: row-reverse;
}
nav.navbar .container.direction-rtl .navbar-collapse {
    direction: ltr;
}

/* Keep header top bar layout same as English */
.header-top-bar.rtl .container,
.header-top-bar.direction-rtl .container {
    direction: ltr;
}
.header-top-bar.rtl .list-inline-item,
.header-top-bar.direction-rtl .list-inline-item {
    direction: ltr;
}

/* Fix slider for RTL */
.hero-slider {
    direction: ltr;
}
.hero-slider .slick-track {
    direction: ltr;
}
.hero-slider .slick-slide {
    float: left;
}
/* Fix slider text center for Arabic */
.hero-slider .slider-item {
    justify-content: center !important;
    align-items: center !important;
}
.hero-slider .slider-item .image-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
.hero-slider .slider-item .image-container {
    overflow: hidden !important;
}
.hero-slider .slider-item .image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1);
    transition: transform 8s ease-out;
    animation: sliderZoom 8s ease-out forwards;
}
.hero-slider .slick-active .image-container img {
    animation: sliderZoom 8s ease-out forwards;
}
@keyframes sliderZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
.hero-slider .slider-item .container {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
}
.hero-slider .slider-item .container .row {
    justify-content: center !important;
}
.hero-slider .slider-item .container .row .col-12 {
    text-align: center !important;
}
.hero-slider .content,
.hero-slider .content.style {
    text-align: center !important;
    margin: 0 auto !important;
    background-color: rgba(34, 58, 102, 0.85) !important;
    padding: 30px 40px !important;
    border-radius: 10px !important;
}
.hero-slider .content.style .tag-text,
.hero-slider .content.style p,
.hero-slider .content.style h2 {
    text-align: center !important;
}
.hero-slider .content.style .btn-main {
    background-color: #e12454 !important;
    border-color: #e12454 !important;
    color: #fff !important;
}
.breadcrumbs,
.breadcrumbs .link,
.breadcrumbs a,
.breadcrumbs a:link,
.breadcrumbs li,
.breadcrumbs li a,
.breadcrumbs ol,
.breadcrumbs ol li span,
.breadcrumbs ul {
    display: flex;
    color: #223a66 !important;
    list-style-type: none;
    transition: .35s;
    font-size: small;
}
.list-group-item.active{
    background-color: initial !important;
    border: initial !important;
}
/* Style odd rows with a light background color */
.description-dark-color table tbody tr:nth-child(odd) {

}

/* Style even rows with a darker background color */
.description-dark-color table tbody tr:nth-child(even) {
    background-color: #e6e6e6;
}

.breadcrumbs li:not(:first-child)::before {
    content: " > " !important;
    margin-right: 4px;
    margin-left: 4px;
}

.navbar-collapse-rtl{
    -ms-flex-preferred-size:100%;
    flex-basis:100%;
    -ms-flex-positive:1;
    flex-grow:initial;
    -ms-flex-align:center;
    align-items:center
}
@media (min-width:576px){
    .navbar-expand .navbar-collapse-rtl{
        display:-ms-flexbox!important;
        display:flex!important;
        -ms-flex-preferred-size:auto;
        flex-basis:auto;
    }
}
@media (min-width:768px){
    .navbar-expand-sm .navbar-collapse-rtl{
        display:-ms-flexbox!important;
        display:flex!important;
        -ms-flex-preferred-size:auto;
        flex-basis:auto;
    }
}
@media (min-width:992px){
    .navbar-expand-md .navbar-collapse-rtl{
        display:-ms-flexbox!important;
        display:flex!important;
        -ms-flex-preferred-size:auto;
        flex-basis:auto;
    }
}
@media (min-width:1200px){
    .contact-block .logo-responsive{width:370px}
    .navbar-expand-lg .navbar-collapse-rtl{
        display:-ms-flexbox!important;
        display:flex!important;
        -ms-flex-preferred-size:auto;
        flex-basis:auto;
    }
}
.navbar-collapse-rtl {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.navbar-collapse-rtl.in {
    overflow-y: auto;
}

@media (min-width: 768px) {
    .navbar-collapse-rtl {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .navbar-collapse-rtl.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
    .navbar-collapse-rtl.in {
        overflow-y: visible;
    }
    .navbar-fixed-top .navbar-collapse-rtl,
    .navbar-static-top .navbar-collapse-rtl,
    .navbar-fixed-bottom .navbar-collapse-rtl {
        padding-right: 0;
        padding-left: 0;
    }
}
.navbar-fixed-top .navbar-collapse-rtl,
.navbar-fixed-bottom .navbar-collapse-rtl {
    max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse-rtl,
    .navbar-fixed-bottom .navbar-collapse-rtl {
        max-height: 200px;
    }
}

.container > .navbar-collapse-rtl,
.container-fluid > .navbar-collapse-rtl {
    margin-right: -15px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .container > .navbar-collapse-rtl,
    .container-fluid > .navbar-collapse-rtl {
        margin-right: 0;
        margin-left: 0;
    }
}



.download-brochure-btn:hover,
.download-brochure-btn:hover i,
.fcoursescolor,
a:hover {
    color: #e12454 !important
}

.pt-14 {
    padding-top: 3.5rem;
}

.px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.p-14 {
    padding: 3.5rem;
}

.p-16 {
    padding: 4rem;
}

.p-18 {
    padding: 4.5rem;
}

.p-20 {
    padding: 5rem;
}

.p-22 {
    padding: 5.5rem;
}

.p-24 {
    padding: 6rem;
}

.dropdown-item:hover {
    background-color: #e12454 !important;
    color: #fff !important
}

.btn.active:focus,
.btn:active:focus,
.btn:focus,
.slick-slide a,
.slick-slide:focus,
a:focus,
input.datepicker {
    outline: 0
}

.breadcrumb {
    margin: 30px 0
}

.agile-blue-bg,
.bg-primary,
.btn-main,
.btn-main-2,
.navbar-toggle .icon-bar,
.secondary-bg {
    background: #223a66
}

.Registerb,
.cities,
.description-dark-color,
.text-blue,
a.text,
h1,
h2,
h3,
h4,
h5,
h6,
p.f-16,
p.font-weight-bold {
    color: #223a66 !important
}

.text-blue:hover {
    color: #a61818 !important
}

.overlay:before,
.overly-2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 0
}

a,
a:focus,
a:hover {
    text-decoration: none
}

.appoinment-content,
.banner,
.bg-1,
.breadcrumb,
.city-image-container,
.counter-stat,
.cta,
.cta-page,
.google-map,
.overly-2,
.search-form,
.subscribe,
.testimonial,
.testimonial-block {
    position: relative
}

.client-thumb,
.counter-stat {
    text-align: center
}

.btn,
.doctor-inner-box .doctor-profile .doctor-img,
a {
    transition: .35s
}

.counter-stat p,
.testimonial-block .client-info h4 {
    margin-bottom: 0
}

.btn,
.post-sub-heading,
.sidebar-widget.tags a {
    text-transform: uppercase
}

.banner,
.city-image-container,
.doctor-inner-box {
    overflow: visible
}

.service .icon,
.testimonial-block.style-2 .testimonial-thumb {
    float: right
}

.mb-4 .f-14,
/* body {
    font-family: Arial, sans-serif
} */

html {
    overflow-x: hidden
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    color: #223a66;
    font-weight: 400;
    font-display: swap
}

.h4,
h4,
p {
    line-height: 30px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: Arial, sans-serif; */
    font-weight: 700;
    color: #222
}

b,
h2 b,
strong {
    font-weight: bolder
}

#navbarmain .nav-link,
.btn {
    /* font-family: Exo, sans-serif */
}

.h1,
h1 {
    font-size: 2.5rem
}

.font-40,
.h2,
.text-lg,
h2 {
    font-size: 40px
}

.f-1o5rem,
.h3,
h3 {
    font-size: 1.1rem
}

.h4,
h4 {
    font-size: 1.3rem
}

.h5,
h5 {
    font-size: 1.25rem
}

.f-1rem,
.h6,
h6,
input[type=email],
input[type=password],
input[type=tel],
input[type=text] {
    font-size: 1rem
}

.med {
    font-weight: 400 !important;
    line-height: 1
}

.btn-main-2:hover,
.btn-main:hover {
    background: #e12454;
    color: #fff !important
}

.btn-solid-border:hover,
.btn-transparent:hover,
.btn-white:hover,
.footer-socials li a,
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover,
.sidebar-widget.tags a:hover {
    background: #223a66;
    color: #fff
}

input[type=email],
input[type=password],
input[type=tel],
input[type=text] {
    box-shadow: none;
    height: 45px;
    width: 100%;
    outline: 0
}

.comment-reply-form input:focus,
.comment-reply-form textarea:focus,
.form-control:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus {
    box-shadow: none;
    border: 1px solid #223a66
}

.form-control {
    box-shadow: none;
    border-radius: 8px
}

.py-7 {
    padding: 7rem 0
}

.btn {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .75rem 1rem;
    border-radius: 5px;
    border: 2px solid transparent
}

.award-img,
ul.pagination.justify-content-center.pt-3 {
    display: flex
}

.comment-area span,
.fcoursescolortext,
.feature-item p,
.footer,
.footer .col-xs-12.col-sm-12.col-md-6.col-lg-4,
.fs-6,
.subtitle,
.text-sm {
    font-size: 14px
}

.btn.btn-icon i {
    border-right: 1px solid rgba(255, 255, 255, .09);
    padding-right: 15px
}

.btn:focus {
    box-shadow: none
}

.btn-main {
    color: #fff !important;
    border-color: #223a66
}

.btn-main:hover {
    border-color: #e12454
}

.btn-main-2,
.btn-main-2:hover {
    border: 1px solid #fff
}

.btn-solid-border,
.btn-solid-border:hover {
    border: 2px solid #223a66
}

.appoinment-content .emergency h2,
.backtop i,
.btn-main-2,
.block p {
    color: #fff
}

.btn-solid-border {
    background: 0 0;
    color: #223a66
}

.btn-solid-border:hover.btn-icon i {
    border-right: 1px solid rgba(255, 255, 255, .09)
}

.btn-solid-border.btn-icon i {
    border-right: 1px solid rgba(0, 0, 0, .09)
}

.btn-transparent,
.btn-white:hover {
    border-color: #223a66
}

.btn-transparent {
    background: 0 0;
    color: #222
}

.btn-white {
    background: #223a66 !important;
    border-color: #fff;
    color: #222
}

.btn-solid-white {
    border-color: #fff;
    color: #fff
}

.btn-solid-white:hover {
    background: #fff;
    color: #222
}

.btn-round {
    border-radius: 4px
}

.btn-round-full,
.btn-white,
.contact-block.mb-4.bg-grey.border,
.contact-block.mb-4.mb-lg-0.bg-grey.border,
.media.agile-blue-bg {
    border-radius: 8px !important
}

.bg-gray {
    background: #f4f4f4
}

.bg-primary-dark {
    background: #152440
}

.bg-primary-darker {
    background: #090f1a
}

.bg-dark {
    background: #222
}

.bg-gradient {
    background-image: linear-gradient(145deg, rgba(19, 177, 205, .95) 0, rgba(152, 119, 234, .95) 100%);
    background-repeat: repeat-x
}

.section {
    padding: 100px 0
}

.section-sm {
    padding: 70px 0
}

.section-bottom {
    padding-bottom: 100px
}

.subtitle {
    color: #223a66;
    letter-spacing: 1px
}

.breadcrumb,
.brochure-btn:hover i,
.btn.btn-main.btn-round-full.btn-block.mb-2:hover,
.icofont-linkedin,
.icofont-youtube-play,
.block h1,
.titilecolor,
.whiteurl,
a {
    color: #fff !important
}

.overlay:before {
    opacity: .9;
    background: #223a66
}

.overly-2:before {
    background: rgba(0, 0, 0, .8)
}

.text-md {
    font-size: 2.25rem
}

.no-spacing {
    letter-spacing: 0
}

.letter-spacing,
.post-sub-heading {
    letter-spacing: 2px
}

.agile-red-color,
.department-service li i,
.dropdown .dropdown-item:hover,
.service i,
.text-color-2,
.widget .footer-menu a:hover,
.widget-contact h6 i,
a:focus,
a:hover {
    color: #e12454
}

.content-title {
    font-size: 40px;
    line-height: 50px
}



.agile-blue-color,
.feature-item h4,
.logo h3,
.logo span,
.post-comments .comment-button:hover,
.read-more,
.section-title h2,
.table-of-content li a,
.text-color,
.text-color-primary,
.title-color,
.widget .footer-menu a,
.widget h4 {
    color: #223a66
}

.section-title {
    margin-bottom: 70px
}

.award-img,
.doctor-info li,
.service .icon,
.sidebar-widget.category ul li {
    margin-bottom: 10px
}

.gray-bg {
    background: #f7f7f7
}

#navbarmain {
    padding: 20px 0
}

#navbarmain .nav-link {
    font-weight: 600;
    padding: 10px;
    text-transform: capitalize;
    font-size: 16px;
    transition: .25s;
    margin-top: 15px
}

.dropdown-toggle::after {
    display: none
}

.counter-stat i,
.dropdown .dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    right: 0
}

.whiteurl:hover {
    color: #f5f5f5 !important
}

.dropdown .dropdown-menu {
    background: #fff;
    min-width: 240px;
    top: 130%;
    opacity: 0;
    padding: 0;
    visibility: hidden;
    transition: .3s ease-out;
    border: 0;
    border-top: 5px solid #e12454;
    border-radius: 0
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 115%
}

.dropdown .dropdown-item {
    padding: 13px 20px;
    border-bottom: 1px solid #eee;
    background: 0 0;
    font-weight: 400;
    color: #555;
    text-align: right;
}
.rtldrp .dropdown-item{
    margin: 0 !important;
    text-align: right;
}
.header-top-bar {
    background: #223a66;
    font-size: 14px;
    padding: 10px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    color: #fff
}

.about-img img,
.feature-item {
    box-shadow: 0 0 30px 0 rgba(0, 42, 106, .1)
}

.top-bar-info li a {
    color: #fff;
    margin: 0;
    margin-left: 20px
}
.rtl .top-bar-info li a {
    margin: 0;
    margin-left: 20px;
}

.top-right-bar a span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px
}

.top-right-bar a i {
    color: #fff;
    margin-left: 10px
}

.banner {
    min-height: 550px
}

.divider {
    width: 40px;
    height: 5px;
    background: #e12454
}

.about-img img {
    border-radius: 5px
}

.award-img {
    height: 120px;
    align-items: center;
    justify-content: center
}

.img-client {
    max-width: 100%;
    height: 100%;
    border: 1px solid #e9e9e9;
    border-radius: 5px
}

.appoinment-content img {
    width: 85%
}

.appoinment-content .emergency {
    position: absolute;
    content: "";
    left: 10px;
    bottom: 20px;
    background: #223a66;
    padding: 48px
}

.appoinment-content .emergency i {
    margin-left: 10px;
    color: rgba(255, 255, 255, .7)
}

.appoinment-form,
.author-about {
    margin-top: 40px
}

.appoinment-form .form-control {
    background: #f4f9fc;
    height: 55px!important;
    border-color: rgba(0, 0, 0, .1)
}

.appoinment-form textarea.form-control,
.comment-form textarea.form-control,
.comment-reply-form .btn-main,
.comment-reply-form textarea {
    height: auto
}

.features {
    margin-top: -70px
}

.feature-item {
    flex-basis: 33.33%;
    margin: 0 10px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 15px
}

.feature-item .feature-icon i {
    font-size: 50px;
    color: #223a66
}

.feature-section.border-top {
    border-top: 1px solid rgba(0, 0, 0, .05) !important
}

.w-hours li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.counter-stat {
    padding: 55px 0 40px
}

.counter-stat i {
    color: rgba(255, 255, 255, .06);
    font-size: 70px;
    top: 0;
    -webkit-transform: translateY(25px);
    transform: translateY(25px)
}

.counter-stat span {
    font-size: 70px;
    color: #fff
}

.counter-stat p {
    color: rgba(255, 255, 255, .7)
}

.cta-section,
.mb--80 {
    margin-bottom: -80px
}

.service {
    padding-top: 120px
}

.service .service-item {
    background: #fff;
    margin-top: -2
}

.cta-page:before,
.cta:before,
.testimonial:before {
    height: 100%;
    right: 0;
    top: 0;
    content: "";
    position: absolute
}

.service h4 {
    padding-right: 20px
}

.service .content {
    clear: both
}

.service-block {
    padding: 20px;
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, .03);
    box-shadow: 0 0 38px rgba(21, 40, 82, .07)
}

.service-block img {
    width: 100%;
    border: 5px solid #fff
}

.department-service {
    margin-bottom: 40px
}

.department-service li {
    margin-bottom: 10px;
    padding-right: 10px;
    margin-right: 18px
}

.department-service li::marker {
    content: '\eed8';
    font-family: IcoFont;
    font-weight: 900;
    color: #e12454
}

.doctors .btn-group .btn {
    border-radius: 0;
    margin: 0 2px;
    text-transform: capitalize;
    font-size: 16px;
    padding: .6rem 1.5rem;
    cursor: pointer
}

.doctors .btn-group .btn.active,
.doctors .btn-group .btn:focus,
.doctors .btn-group .btn:hover {
    box-shadow: none !important;
    border-color: transparent;
    background: #e12454;
    color: #fff
}

.bootstrap-datetimepicker-widget table td span.active,
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover,
.btn.btn-main.btn-white:hover {
    background-color: #e12454 !important
}

.doctors .btn-group .btn.focus {
    box-shadow: none !important;
    border-color: transparent
}

.doctors .btn-group>.btn-group:not(:last-child)>.btn,
.doctors .btn-group>.btn:not(:first-child),
.doctors .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-radius: 3px
}

.doctor-inner-box .doctor-profile {
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 16px 0 rgba(200, 183, 255, .2)
}

.doctor-inner-box .doctor-profile .doctor-img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.doctor-info li {
    color: #222
}

.doctor-info li i {
    margin-left: 20px;
    color: #e12454
}

.cta {
    background: url("../images/bg/bg-4.jpg") 50% 50%/cover no-repeat
}

.cta:before {
    width: 100%;
    background: rgba(34, 58, 102, .95)
}

.mb-30 {
    margin-bottom: 30px
}

.comment-list ul li,
.contact-form-wrap .form-group,
.testimonial-block,
.testimonial-block .client-info {
    margin-bottom: 20px
}

.cta-2 {
    background: url("../images/bg/cta-bg.png") center center no-repeat
}

.cta-page:before {
    width: 100%;
    background: url("../images/general/light_icon.svg") 0 0/cover no-repeat
}

.testimonial:before {
    width: 48%;
    background: url("../images/about/core.jpg") 0 0/cover no-repeat;
    clip-path: circle(93.9% at 94% 50%);
}

.testimonial .slick-dots,
.testimonial-block .slick-dots {
    text-align: right
}

.testimonial-block p {
    background: #fff;
    font-size: 18px
}

.testimonial-block i {
    font-size: 60px;
    position: absolute;
    left: 46px;
    bottom: 89px;
    opacity: .08
}

.testimonial-wrap-2 .slick-dots {
    margin-right: -10px
}

.testimonial-block.style-2 {
    background: #fff;
    padding: 30px;
    margin: 0 4px 30px
}

.testimonial-block.style-2 .testimonial-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin-left: 20px;
    margin-bottom: 30px;
    border: 5px solid #eff0f3;
    margin-top: -5px
}

.testimonial-block.style-2 .client-info p {
    clear: both;
    background: 0 0
}

.testimonial-block.style-2 i {
    bottom: -20px;
    color: #e12454;
    opacity: .3
}

@media (max-width:480px) {

    .h2,
    h2 {
        font-size: 1.3rem;
        line-height: 36px
    }

    .register-form-area {
        padding-right: 30px !important;
        padding-left: 30px !important
    }

    .text-lg {
        font-size: 28px
    }

    .banner .block h1 {
        font-size: 38px;
        line-height: 50px
    }

    .banner {
        min-height: 450px;
        background: url("../images/bg/slider-bg-1.jpg") 0 0/cover no-repeat !important
    }

    .doctors .btn-group {
        display: block
    }

    .doctors .btn-group .btn {
        margin: 8px 3px
    }

    .testimonial-wrap {
        margin-right: 0
    }

    .testimonial::before {
        display: none
    }
}

@media (max-width:400px) {
    .text-lg {
        font-size: 28px
    }

    .banner .block h1 {
        font-size: 28px;
        line-height: 40px
    }

    .banner {
        min-height: 450px;
        background: url("../images/bg/slider-bg-1.jpg") 0 0/cover no-repeat !important
    }

    .doctors .btn-group {
        display: block
    }

    .doctors .btn-group .btn {
        margin: 8px 3px
    }

    .testimonial-wrap {
        margin-right: 0
    }

    .testimonial::before {
        display: none
    }
}

@media (max-width:768px) {
    .breadcrumbs {
        display: block;
    }

    .banner .block h1 {
        font-size: 56px;
        line-height: 70px
    }

    .banner {
        background: url("../images/bg/slider-bg-1.jpg") 0 0/cover no-repeat !important
    }

    .doctors .btn-group {
        display: block
    }

    .doctors .btn-group .btn {
        margin: 8px 3px
    }

    .testimonial-wrap {
        margin-right: 0
    }

    .testimonial::before {
        display: none
    }
}

@media (max-width:1200px) {
    .contact-block .logo-responsive{width:200px}
}
@media (max-width:992px) {
    .banner {
        background: url("../images/bg/slider-bg-1.jpg") 0 0/cover no-repeat !important
    }

    .testimonial-wrap {
        margin-right: 0
    }

    .testimonial::before {
        display: none
    }
}

.contact-form-wrap .form-group .form-control {
    height: 60px;
    border: 1px solid #eef2f6;
    box-shadow: none;
    width: 100%;
    background: #f4f9fc
}

.contact-form-wrap .form-group-2 {
    margin-bottom: 13px
}

.contact-form-wrap .form-group-2 textarea {
    height: auto;
    border: 1px solid #eef2f6;
    box-shadow: none;
    background: #f4f9fc;
    width: 100%
}

.social-icons li {
    margin: 0 6px
}

.social-icons a {
    margin-left: 10px;
    font-size: 18px
}

.google-map #map {
    width: 100%;
    height: 500px
}

.mt-90 {
    margin-top: 90px
}

.contact-block {
    text-align: center;
    border: 5px solid #eef2f6;
    padding: 20px
}

.contact-block i {
    font-size: 50px;
    margin-bottom: 15px;
    display: inline-block;
    color: #e12454
}

.blog-item-content h2 {
    font-weight: 600;
    font-size: 38px
}

.nav-links .page-numbers {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #eee;
    text-align: center;
    padding-top: 13px;
    font-weight: 600;
    margin-left: 10px
}

.comment-area .comment-thumb {
    margin-left: 20px;
    margin-bottom: 30px
}

.comment-area h5 {
    font-size: 18px;
    font-weight: 500
}

.posts-nav h6 {
    font-weight: 500
}

.quote {
    font-size: 22px;
    color: #223a66;
    padding: 40px;
    font-style: italic;
    border-right: 5px solid #e12454;
    margin: 25px 0
}

.tag-option a {
    border: 1px solid #eff0f3;
    padding: 6px 12px;
    color: #223a66;
    font-size: 14px
}

.comment-form .form-control {
    background: #f7f8fb;
    border-radius: 5px;
    border-color: #f7f8fb;
    height: 50px
}

.post.post-single {
    border: none
}

.post.post-single .post-thumb {
    margin-top: 30px
}

.post-sub-heading {
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
    font-size: 16px;
    margin-bottom: 20px
}

.post-social-share {
    margin-bottom: 50px
}

.post-comments {
    margin: 15px 0
}

.col-lg-12.mb-4.ps-2,
.comment-wrap {
    margin-right: 20px
}

.comment-list ul,
.post-comments .media {
    margin-top: 20px
}

.post-comments .media>.pull-right {
    padding-left: 20px
}

.post-comments .comment-author {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500
}

.post-comments .comment-author a {
    color: #223a66;
    font-size: 14px;
    text-transform: uppercase
}

.post-comments time {
    margin: 0 0 5px;
    display: inline-block;
    color: grey;
    font-size: 12px
}

.post-comments .comment-button {
    color: #223a66;
    display: inline-block;
    margin-right: 5px;
    font-size: 12px
}

.backtop i,
.footer-contact-block i,
.mb-4 .f-14 {
    font-size: 20px
}

.post-comments .comment-button i {
    margin-left: 5px;
    display: inline-block
}

.post-excerpt {
    margin-bottom: 60px
}

.post-excerpt h3 a {
    color: #000
}

.post-excerpt p {
    margin: 0 0 30px
}

.post-excerpt blockquote.quote-post {
    margin: 20px 0
}

.post-excerpt blockquote.quote-post p {
    line-height: 30px;
    font-size: 20px;
    color: #223a66
}

.comments-section {
    margin-top: 35px
}

.post-author {
    margin-left: 20px
}

.post-author>img {
    border: 1px solid #dedede;
    max-width: 120px;
    padding: 5px;
    width: 100%
}

.comment-wrap {
    border: 1px solid #dedede;
    border-radius: 1px;
    padding: 10px;
    position: relative
}

.comment-wrap .author-avatar {
    margin-left: 10px
}

.comment-wrap .media .media-heading {
    font-size: 14px;
    margin-bottom: 8px
}

.comment-wrap .media .media-heading a {
    color: #223a66;
    font-size: 13px
}

.comment-wrap .media .comment-meta {
    font-size: 12px;
    color: #888
}

.comment-wrap .media p {
    margin-top: 15px
}

.comment-reply-form {
    margin-top: 80px
}

.comment-reply-form input,
.comment-reply-form textarea {
    height: 35px;
    border-radius: 0;
    box-shadow: none
}

.sidebar-widget {
    margin-bottom: 30px;
    padding-bottom: 35px
}

.sidebar-widget h5 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px
}

.sidebar-widget h5:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #e12454
}

.sidebar-widget.latest-post .media img {
    border-radius: 7px
}

.sidebar-widget.latest-post .media h6 {
    font-weight: 500;
    line-height: 1.4
}

.f-12,
.sidebar-widget.latest-post .media p {
    font-size: 12px
}

.sidebar-widget.category ul li a {
    color: #222;
    transition: .3s
}

.sidebar-widget.category ul li a:hover {
    color: #223a66;
    padding-right: 5px
}

.sidebar-widget.category ul li span {
    margin-right: 10px
}

.sidebar-widget.tags a {
    font-size: 12px;
    letter-spacing: .075em;
    line-height: 41px;
    height: 41px;
    font-weight: 500;
    border-radius: 20px;
    color: #666;
    display: inline-block;
    background-color: #eff0f3;
    margin: 0 0 10px 7px;
    padding: 0 25px;
    transition: .2s
}

.footer .copyright a,
.logo {
    font-weight: 600
}

.sidebar-widget.schedule-widget {
    background: #f4f9fc;
    padding: 25px
}

.sidebar-widget.schedule-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee
}

.search-form i {
    position: absolute;
    left: 15px;
    top: 35%
}

.footer {
    padding-bottom: 10px;
    margin-top: -16px
}

.lh-35 {
    line-height: 35px
}

.logo {
    letter-spacing: 1px
}

.widget .divider {
    height: 3px
}

.footer-contact-block span {
    font-weight: 400;
    color: #223a66;
    padding: 0 10px 0 0
}

.footer-btm {
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.footer-socials li a {
    width: 45px;
    height: 45px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    padding-top: 10px
}

.widget-contact h6 {
    font-weight: 500;
    margin-bottom: 18px
}

.subscribe .form-control {
    border-radius: 50px;
    height: 60px;
    padding-right: 25px;
    border-color: #eee
}

.subscribe .btn {
    position: absolute;
    left: 6px;
    top: 6px
}

.backtop {
    position: fixed;
    background: #e12454;
    z-index: 9999;
    display: inline-block;
    right: 10px;
    width: 60px;
    height: 60px;
    bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 50px
}

.city-image-container:hover .city-image-title,
.reveal {
    opacity: 1
}

.reveal {
    transition: .3s;
    cursor: pointer
}

.banner .form-group {
    margin-top: 1rem !important
}

.banner .block {
    display: inline-block;
    margin: 7% 5%
}

.banner .block .row {
    background-color: rgba(255, 255, 255, .5)
}

.banner .block .btn {
    padding: .9rem 2rem !important;
    border-radius: 0 !important
}

.img-clip-style-right {
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%)
}

.img-clip-style-left {
    -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%)
}

.pb-0 {
    padding-bottom: 0 !important
}

.text-dark-grey {
    color: #717272 !important
}

.text-light-black {
    color: #444242 !important
}

.agile-red-bg,
.event-item:hover .agile-blue-bg {
    background: #e12454
}

.event-item p {
    line-height: 22px;
    font-size: 18px;
    font-weight: 500
}

.service .description-dark-color {
    min-height: 369px;
    display: table
}

.description-dark-color .btn {
    max-height: 63px;
    position: relative;
    bottom: 0 !important
}

p.pb-0.mb-2.description-dark-color.f-14 {
    color: #223a66 !important;
    display: inline
}

p.pb-0.mb-0.description-dark-color.f-14 {
    display: inline
}

.about-page,
.agile-background-request-from {
    background: url('../images/general/horizontal.svg') right -400px center/contain repeat-y
}

.service {
    background: url('../images/general/light_icon.svg') right -550px center/contain no-repeat #f4f9fc
}

.contact-form-wrap,
.department-single {
    background: url('../images/general/light_icon.svg') left -550px center/contain no-repeat
}

.trainers-page {
    background: url('../images/general/horizontal.svg') right -400px center/contain no-repeat
}

.color,
.grey-background {
    background-color: #f4f9fc
}
.grey-gradiant-background {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(244,249,252,1) 50%, rgba(255,255,255,0) 100%);
}

.city-image {
    width: 100%;
    display: block;
    transition: .5s ease-in-out
}

.city-image-title {
    background: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 36%, #223a66 90%);
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .6s;
    cursor: pointer
}

.city-image-title span {
    position: absolute;
    top: 83%;
    transform: translateY(-50%);
    right: 20px;
    left: 0;
    font-size: 25px
}

.large-city-title span {
    top: 92%
}

.bg-grey {
    background: #f4f9fc !important
}

.training-programs {
    background: url('../images/general/horizontal.svg') right -400px center/contain no-repeat #fff
}

.courses-page {
    background: url('../images/general/horizontal.svg') right -400px center/contain repeat-y #fff
}

.testimonials-page {
    background: url('../images/general/light_icon.svg') right -550px top/contain no-repeat #fff
}

.table-of-content li a:hover,
.text-bold {
    font-weight: 700
}

.bootstrap-datetimepicker-widget table td.separator,
p.text-white.fs-3 {
    font-weight: 700 !important
}

.f-14,
.f-16 {
    font-size: 16px !important
}

.search-btn {
    padding: 1rem 2rem;
    border-radius: 7px
}

.search-feature-item {
    padding: 40px 30px 30px;
    background: url('../images/general/light_icon.svg') bottom -160px center/cover no-repeat #fff
}

.course-content h2 {
    font-size: 24px
}

.f-11 {
    font-size: 11px
}

.m-minus-10 {
    margin: -10px
}


.font-xsm {
    font-size: x-small;
}

.btn-small-padding {
    padding: 7px 15px !important
}

.course-info-small-mediums-ul {
    padding: 0;
    list-style-type: none;
    display: block !important;
    clear: both
}

.course-info-small-mediums-ul li {
    float: right;
    margin-left: 20px
}

.page-link {
    color: #223a66;
    background-color: #fff;
    background-color: #223a668f
}

.page-item.active .page-link {
    background-color: #223a66;
    border-color: #223a66
}

.page-link:hover {
    color: #e12454;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.service-block img {
    height: 280px !important;
    margin: auto
}

.service-block {
    height: auto !important;
    min-height: 518px !important
}

.border-radius {
    border-radius: 10px
}

.media-body.min-height {
    min-height: 115px
}

@media (min-width:1200px) {
    .container {
        max-width: 1300px
    }
}

.ReviewText__Container-sc-1nyg8v7-0,
.fcoursesh {
    min-height: 90px !important
}

#datetimepicker12 table td,
#datetimepicker12 table th {
    height: 50px;
    width: 50px;
    border-radius: 50%
}

.bootstrap-datetimepicker-widget table td span {
    border-radius: 50% !important
}

.bootstrap-datetimepicker-widget table th.picker-switch {
    border-radius: 5px !important
}

.bootstrap-datetimepicker-widget table td.today:before {
    border-bottom-color: #e12454 !important
}

.font-18 {
    font-size: 18px
}

#datetimepicker12 .btn-primary {
    color: #fff;
    background-color: #e12454;
    border-color: #e12454;
    border-radius: 50%
}

.terms-and-conditions-div p {
    padding-right: 25px;
    text-align: justify
}

.table-of-content li {
    padding-bottom: 7px
}

.table-of-content li::marker {
    color: #223a66
}

.square-list-type {
    list-style-type: square
}

.square-list-type li {
    text-align: justify;
    padding-bottom: 7px
}

.square-list-type li::marker {
    color: #e12454
}

.brochure-btn i {
    color: #223a66 !important;
    font-weight: 800
}

.download-brochure-btn {
    cursor: pointer !important
}

.agile-blue-bg.pt-4.px-4.pb-3.text-center {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important
}

.btn.btn-main.btn-white:hover {
    border: 0;
    color: #fff !important
}

input.datepicker,
select {
    background: #f4f9fc;
    height: 55px;
    border-color: rgba(0, 0, 0, .05);
    width: 100%;
    border-radius: 8px
}

.mb-4 .f-14 {
    line-height: 26px;
    font-weight: 500
}

.lineUp {
    animation: 5s ease-out anim-lineUp !important
}

.word {
    margin: auto;
    color: #fff;
    font: 700 2.5em tahoma;
    text-shadow: 5px 2px #222324, 2px 4px #222324, 3px 5px #222324
}

.lineUpB {
    animation: 5s ease-in-out anim-lineUp !important
}

@keyframes anim-lineUp {
    0% {
        opacity: 0;
        transform: translateY(90%)
    }

    20% {
        opacity: 0
    }

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

.fs-5 {
    font-size: 1.5em !important
}

b,
strong {
    font-size: 14
}

.agile-blue-bg.pt-4.px-4.pb-3.text-center.rounded-2 {
    padding-bottom: 25px
}

svg {
    padding: 0
}

img.icon.d-flex.align-items-center {
    width: 60px !important;
    height: 60px
}

.d-md-block {
    top: 40%
}

.copyright.text {
    color: #223a66
}

a.text {
    text-decoration: underline;
}

p.text-white.fs-3 {
    font-size: 1.5rem;
}

p.f-16 {
    padding-right: 20px;
    font-weight: 700;
}

li.page-item {
    list-style-type: none;
}

.fcoursesps {
    top: 60px;
}

.Registerb {
    background-color: #f4f9fc;
    max-height: 350px;
    box-shadow: rgb(0 0 0 / 17%) 0 5px 15px !important;
}

.titiletext {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background-color: #223a66;
    color: #fff;
}

.fcoursespb {
    top: 40
}

.Register {
    color: #000 !important
}

h3.mt-3 {
    font-size: 1.1rem !important
}

.fontspace {
    padding-right: 5px
}
.contact-block .logo-responsive{width:370px}
.corsesDescription,
.eventDescription,
.fcoursescolortext {
    background-color: #fff;
    padding: 20px;
    box-shadow: rgb(0 0 0 / 35%) 0 5px 15px !important
}
.categoryDescription {
    color: #000;
    padding: 20px;
    box-shadow: rgb(0 0 0 / 35%) 0 5px 15px !important
}
.categoryDescription h2{
    font-size: medium;
}
.categoryDescription .subject h2{
    font-size:larger;
}
.categoryDescription p{
    color: #000;
    font-size: small;
}
.rtl{
    text-align: right;
}

.fontlocation {
    font-weight: 700 !important;
    font-size: 23px !important;
    margin-top: 1rem !important
}

.fontdate {
    font-size: 30px;
    font-weight: 700
}

.course-details {
    FONT-SIZE: 15PX
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 48px
}

.dates {
    font-family: monospace !important;
    font-size: 40px !important
}

.justify {
    text-align: justify
}

.justifyCities {
    font-size: 16px
}

.btnHome {
    font-size: 18px !important
}

.formmHome {
    margin-top: 18px !important
}

.corsesDescription,
.categoryDescription p,
.team .team-content p {
    font-size: 14px !important
}

.agile-background-request-from {
    padding-top: 50px
}

.request {
    padding-top: 80px
}

select {
    word-wrap: normal;
    padding: 7 !important;
    word-wrap: normal
}

section.contact-form-wrap.section {
    margin-top: -142px !important
}

.card.shadow-sm.p-3.mb-3.bg-light {
    background: #f4f9fc !important;
    box-shadow: rgba(0, 0, 0, .35) 0 5px 15px !important
}

h2 b {
    font-size: 14 !important
}

h5.card-title.pt-2,
label.font-18.city {
    word-wrap: break-word;
    width: 300px !important
}

.px-2.border.shadow-sm {
    background: #fff
}

h5.card-title.pt-2 {
    font-size: 15.5px
}

label.font-18,
span.span-cities {
    font-size: 15px
}

.card-body.city {
    height: 100px;
    padding: 10
}

.department-service li::marker {
    content: " " !important
}

p.text-capitalize.mb-3 {
    font-size: 23px;
    font-weight: 600
}

.span-cities {
    position: absolute;
    top: 83%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 20px;
    background: #223a66;
    padding: 1%
}

div#titlediv {
    animation: none !important
}

.bg-1 {
    background-color: #223a66 !important
}

input[type=checkbox],
input[type=radio] {
    position: absolute;
    margin-top: .3rem;
    margin-right: -1.25rem;
    padding-right: 22px
}

u {
    color: #6c757d !important
}

.col-lg-6.pt-3.ps-2 {
    margin-right: 5px
}

.shadow-custom {
    box-shadow: rgb(0 0 0 / 35%) 0 5px 15px !important
}

.shadow-sm {
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0 !important
}

.img-fluid {
    width: 100% !important;
    height: auto !important
}

h2.text-color.mt-3 {
    font-size: 34px !important
}

svg.bi.bi-envelope.mx-2 {
    margin-right: 0 !important
}

.row.align-items-center .testimoni {
    overflow-y: scroll;
    height: 400px
}

.offset-lg-6 {
    margin-right: 50% !important
}

.flags {
    float: left;
    content: "";
    clear: both;
    margin-left: 0;
    display: table;
    margin-top: -99px
}

@media (min-width:768px) {
    .eventbac {
        box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0 !important;
        border: 1px solid #dee2e6 !important;
        color: #223a66;
        background-color: #f4f9fc !important
    }

    h2.fs-2,
    h3.mb-5.text-lg {
        font-size: 30px !important
    }
}

@media (min-width:992px) {
    .container {
        flex-wrap: wrap !important
    }

    .img-fluid {
        max-width: 100%;
        height: auto
    }
}

.sub-title-white {
    color: #fff !important;
    background-color: #223a66;
    font-size: 120%;
    padding: 1%
}

.cardtitlea,
.cardtitlea p,
.textbn {
    color: #223a66;
    line-height: 35px;
    text-align: right;
    background-color: #223a66
}

.cardtitlea:hover,
.cardtitlea:hover p,
.textbn:hover {
    color: #fff !important;
    background: #e12454
}

.textbn {
    font-size: 15px;
    font-weight: 500
}

.fcoursesps {
    position: absolute;
    left: 30px;
}
.fcoursesps_ar {
    position: absolute;
    left: 30px;
}
.fcoursespb {
    position: absolute;
    left: 30px !important
}

.page-title {
    position: relative;
    color: #fff;
    padding: 60px 0;
    margin-top: 5px;
}

.card-title {
    min-height: 70px !important
}

.list-inline-item {
    margin-left: 0 !important
}

.service .card:hover {
    box-shadow: 10px 5px 5px red
}

.description-dark-color .row {
    display: table-footer-group !important
}

footer a:hover,
.nav-link:hover,
#navbarmain .nav-link:hover,
.breadcrumbs li a span:hover,
.dropdown-item:hover~#navbarmain .nav-link {
    color: #e12454 !important
}

#navbarmain .nav-link {
    color: #223a66 !important;
}
.phone{
    direction:ltr
}
.lh-1,
.lh-1 p,
.lh-1 a,
.lh-1 span,
.lh-1 div {
    line-height: normal;
}

.CourseInstances {
    background-color: white;
    transition: all .2s ease-in-out;
}

.CourseInstances:hover {
    transform: scale(1.1);
}

.registered table {
    margin: 0 auto;
    border-collapse: collapse;
    font-family: Agenda-Light, sans-serif;
    font-weight: 100;
    background: #223a66;
    color: #fff;
    text-rendering: optimizeLegibility;
    border-radius: 5px;
}

.registered table thead th {
    font-weight: 600;
}

.registered table thead th,
table#miyazaki tbody td {
    padding: .8rem;
    font-size: 1.4rem;
}

.registered table tbody td {
    padding: .8rem;
    font-size: 1.4rem;
    color: #444;
    background: #eee;
}

.registered table tbody tr:not(:last-child) {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 600px) {

    .registered table thead {
        display: none;
    }

    .registered table tbody td {
        display: block;
        padding: .6rem;
    }

    .registered table tbody tr td:first-child {
        background: #666;
        color: #fff;
    }

    .registered table tbody td:before {
        content: attr(data-th);
        font-weight: bold;
        display: inline-block;
        width: 6rem;
    }
}


.loading-spinner div {
    box-sizing: border-box !important
}

.loading-spinner>div {
    position: absolute;
    width: 152px;
    height: 152px;
    top: 24px;
    right: 24px;
    border-radius: 50%;
    border: 24px solid #000;
    border-color: #fe718d transparent #fe718d transparent;
    animation: loading-spinner 1s linear infinite;
}

.loading-spinner>div:nth-child(2) {
    border-color: transparent
}

.loading-spinner>div:nth-child(2) div {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

.loading-spinner>div:nth-child(2) div:before,
.loading-spinner>div:nth-child(2) div:after {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: -24px;
    right: 40px;
    background: #fe718d;
    border-radius: 50%;
    box-shadow: 0 128px 0 0 #fe718d;
}

.loading-spinner>div:nth-child(2) div:after {
    right: -24px;
    top: 40px;
    box-shadow: 128px 0 0 0 #fe718d;
}

.loadingio-spinner-dual-ring {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0);
}

.loading-spinner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

.loading-spinner div {
    box-sizing: content-box;
}

.loading-container {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FFF8;
    width: 100%;
    height: 100%;
}

.loading {
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -50px;
    margin-right: -50px;
    width: 100px;
    height: 100px;
}

@keyframes loading-spinner {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
.page-link{
    color: white !important;
    cursor: pointer;
}
.page-link:hover{
    color: red !important;
}

  @media (max-width: 767px) {
    /* Apply full-width on mobile (small screens) */
    .testimonial .testimonial-cover .container .row .col-lg-6.ab {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 768px) {
    /* Apply offset and width for larger screens */
    .testimonial .testimonial-cover .container .row .col-lg-6.ab {
        width: 50% !important;
        margin-right: 50% !important;
    }
}
@media (max-width: 767.98px) {
    .contact-block .logo-responsive{width:300px}
    .smaller-logo {
        height: 60px;
        width: auto;
    }
}
