/* custom bootstrap */
.container-fluid {
    max-width: 1680px;
}

.btn.btn-mia {
    color: #ffffff;
    background-color: #F42091;
}

.btn.btn-mia:hover {
    color: #F42091;
    background-color: #ffffff;
}

/* font family */
h5 {
    font-family: 'DM Sans', sans-serif;
}

a.nav-link:link {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
}

a.nav-link:hover {
    color: #F42091;
}

a.nav-link.active:link {
    color: #F42091;
}

p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

ul.our-activities-pagination li.page-item a.page-link:link {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}

html {
    scroll-behavior: smooth;
}

/* header */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    background-color: #F42091;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #ffffff;
    border-radius: 5px;
}

#myBtn:hover {
    color: #F42091;
    background-color: #ffffff;
    border: 2px solid #F42091;
}

.language-flag {
    width: 20px;
    height: auto;
    object-fit: cover;
}

/* banner */
.banner_image {
    height: 33rem;
    object-fit: cover;
    object-position: center;
}

/* Small devices (portrait phones, less than 576px) */
@media(max-width: 575.98px) {
    .banner_image {
        height: 10rem;
        object-fit: cover;
        object-position: center;
    }
}

/* Medium devices (landscape phones, less than 768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .banner_image {
        height: 20rem;
        object-fit: cover;
        object-position: center;
    }
}

/* our branches */
.our-branches {
    background-image: url('/uploads/images/our-branches/our_branches.jpg');
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0px;
}

@media screen and (max-width: 1024px) {
    .our-branches {
        padding: 40px 0px;
    }
}

@media screen and (max-width: 768px) {
    .our-branches {
        padding: 70px 0px;
    }
}

@media screen and (max-width: 425px) {
    .our-branches {
        background-attachment: scroll;
        padding: 50px 0px;
    }
}

.section-title {
    font-size: 30px;
}

.branch-circle {
    width: 150px;
    height: 150px;
    background-color: #F42091;
    border-radius: 50%;
    position: relative;
    transition: 0.5s;
}

.branch-circle:hover {
    background-image: radial-gradient(#F46A91, #F42091);
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.7);
    transition: 0.5s;
    transform: scale(1.1);
}

.branch-title {
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    padding-bottom: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
}

.branch-subtitle {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 35%);
    width: 100%;
}

.branch-international {
    font-size: 14px;
}

@media screen and (max-width: 320px) {
    .branch-circle {
        width: 120px;
        height: 120px;
    }

    .branch-title {
        font-size: 30px;
    }

    .branch-subtitle {
        font-size: 12px;
    }

    .branch-international {
        font-size: 10px;
    }
}

/* overview */
.overview-single-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* our activities */
.card.our-activities-card {
    transition: 0.5s;
}

.card.our-activities-card:hover {
    transition: 0.5s;
    transform: scale(1.05);
    box-shadow: 0 0 30px #E1E1E1;
    z-index: 2;
    cursor: pointer;
}

.card.our-activities-card:hover .our-activities-title {
    color: #F42091;
}

.our-activities-image {
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 1.5s;
}

.card.our-activities-card:hover .our-activities-image {
    transition: 1.5s;
    transform: scale(1.5);
}

ul.our-activities-pagination li.page-item a.page-link:link {
    color: #F42091;
    transition: 0.5s;
}

ul.our-activities-pagination li.page-item a.page-link:hover {
    color: #ffffff;
    background-color: #F42091;
    border: 1px solid #F42091;
    border-radius: 5px;
    transition: 0.5s;
    transform: scale(1.1);
}

ul.our-activities-pagination li.page-item a.page-link:focus {
    color: #ffffff;
    background-color: #F42091;
    box-shadow: 0 0 0 0.3rem rgba(244, 32, 145, 0.5);
    border: 1px solid #F42091;
    border-radius: 5px;
}

/* our facilities */
.card.our-facilities-card {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: 0.5s;
}

.card.our-facilities-card:hover {
    transition: 0.5s;
    transform: scale(1.02);
    box-shadow: 0 0 30px #E1E1E1;
    z-index: 2;
}

.our-facilities-image {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 30px;
    width: 100%;
    height: auto;
    transition: 0.5s;
}

.card.our-facilities-card:hover .our-facilities-image {
    border-radius: 14px;
    transform: scale(0.9) translateY(5px);
}

.card.our-facilities-card:hover .our-facilities-title {
    color: #F42091;
}

@media screen and (max-width: 768px) {
    .our-facilities-title {
        font-size: 18px;
    }

    .our-facilities-paragraph {
        font-size: 14px;
    }
}

/* our mission */
.our-mission {
    background-image: url('/uploads/images/our-mission/our_mission.jpg');
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0px;
}

@media screen and (max-width: 1024px) {
    .our-mission {
        padding: 40px 0px;
    }
}

@media screen and (max-width: 768px) {
    .our-mission {
        padding: 70px 0px;
    }
}

@media screen and (max-width: 425px) {
    .our-mission {
        background-attachment: scroll;
        padding: 50px 0px;
    }
}

/* footer */
.footer {
    background-image: url('/uploads/images/footer/1.webp');
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 30px 0px;
}

@media screen and (max-width: 425px) {
    .footer {
        background-attachment: scroll;
    }
}

.footer-title {
    color: #ffffff;
    font-size: 30px;
}

.footer-subtitle {
    color: #ffffff;
    font-size: 20px;
}

.contact-title {
    color: #ffffff;
}

.contact-info {
    color: #ffffff;
    font-size: 16px;
}

.site-copyright {
    color: #ffffff;
}

a.btn-social {
    color: white;
}

a.btn-social:link {
    color: #ffffff;
    border: 1px solid #ffffff;
    margin: 0px 2px;
    transition: 0.5s;
}

a.btn-social:hover {
    color: #F42091;
    background-color: #ffffff;
    transition: 0.5s;
    transform: scale(1.2);
}