@import url('https://fonts.googleapis.com/css2?family=Amaranth:wght@400;700&family=Catamaran:wght@300;400;600;700&family=Open+Sans:wght@300;400&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Catamaran', sans-serif;
}

.logo {
    max-width: 250px;
}

.banner {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    /* 
    justify-content: center;
    flex-direction: column; */
}

.banner.event {
    height: 400px;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--bs-white);
    padding: 20px;
    text-align: center;

}

.banner .overlay h2 {
    font-size: 40px;
    font-weight: 700;
}

.banner .join-us {
    background-color: #006534;
    font-size: 22px;
}

.icon {
    font-size: 50px;
}

.banner h2 {
    font-family: 'Amaranth', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FF0;
    -webkit-text-stroke: 1px #004274;
}

.banner h4 {
    font-family: 'Amaranth', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFF;
}

.banner .btn {
    color: var(--bs-white) !important;
    background-color: #004274;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin-top: 20px;
}

.contactbtn {
    border: 2px solid var(--bs-success);
    color: var(--bs-success) !important;
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.contactbtn:hover {
    background-color: var(--bs-success);
    color: var(--bs-white) !important;
}

.padding-xxl {
    padding: 120px 0px;
}

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

.page-header {
    background-size: auto;
    background-position: right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.page-header .cover {
    background-image: linear-gradient(to right, rgba(0, 66, 116, 0.8), rgba(0, 66, 116, 0));
    width: 100%;
    padding: 50px 10px
}

.page-header .title {
    color: #FFF;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;

}

section {
    font-size: 20px;
}

section .blur {
    background-color: rgba(6, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

section .quote {
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 600px;
    color: #FFF;
    font-size: 30px;
    display: flex;
    align-items: center;
}

section.team img:hover {
    transform: scale(1.15);
}

section.team .position-relative {
    overflow: hidden;
}

img {
    max-width: 100%;
    transition: all 0.6s ease-out 0s;
}

footer {
    background-color: var(--bs-body-color);
    color: var(--bs-white);
    padding: 40px;
    /* margin-top: 40px; */
}

.social {
    margin-top: 25px;
}

.social p {
    font-weight: bold;
    font-size: 22px;
}

.social .links {
    display: flex;
    gap: 10px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    background-color: var(--bs-white);
    border-radius: 50%;
}

.social a:hover {
    background-color: var(--clr);
    color: var(--bs-white);
}

.social a i {
    margin-bottom: -5px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li a {
    text-decoration: none;
    color: var(--bs-white);
    font-size: 16px;
    display: block;
    /* border-bottom: 1px solid var(--bs-light); */
    padding: 10px 0px;
}

.copyright {
    background-color: #FFF;
    text-align: center;
    padding: 20px 10px;
}

@media screen and (min-width: 1200px) {
    body .container {
        max-width: 1200px;
        width: 100%;
    }
}

nav {
    background-color: #140D40;
}

.navbar-nav a {
    font-size: 20px;
    font-weight: bold;
    color: #e8e7e7;
    text-transform: uppercase;
}

.navbar-nav a:hover {
    color: #FFF;
}

/* .container-padding {
    padding: 0px 100px 100px 100px;
} */

.custom-card {
    background-color: #3E2093;
    color: #FFF;
    font-size: 16px;
    padding: 30px;
    border-radius: 10px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.custom-card>* {
    z-index: 222222;
}

.custom-card::before {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    background-color: #FA949D;
    bottom: -32px;
    right: -32px;
    border-radius: 50%;
}

.custom-card::after {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1111;
    background-color: #8758FA;
    bottom: 52px;
    right: 52px;
    border-radius: 50%;
}

.google-map {
    width: 100%;
    min-height: 460px;
    position: relative;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

@media screen and (max-width: 570px) {
    .container-padding {
        padding: 20px;
    }

    .logo {
        max-width: 150px;
    }

    footer,
    .copyright {
        padding: 20px;
    }

    .padding-xxl {
        padding: 60px 0px;
    }

    .collapse.navbar-collapse.show {
        padding: 30px 20px;
    }

    .hide-on-mobile {
        display: none;
    }

    .google-map {
        margin-top: 30px;
    }
}

.loader-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 22222222222;
}