@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --primary-blue: #005aab;
    --secondary-blue: #0083c8;
    --third-blue: #05d4f9;
    --gray: #8e8e93;
    --wheat: #eff5f8;
    --arrow-gray: #d9d9d9;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    padding: 30px 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}

.bg-secondary-blue {
    background-color: var(--secondary-blue) !important;
}

.bg-wheat {
    background-color: var(--wheat);
}
.text-primary-blue {
    color: var(--primary-blue);
}
.text-gray {
    color: var(--gray);
}
.custom-link {
    color: black !important;
    font-weight: 500;
}
.custom-link:active {
    background-color: white;
}
.slider-image {
    height: 90vh;
    object-fit: cover;
}
.gallery-image {
    aspect-ratio: 1 / 1;
}
.word-wrap {
    word-wrap: break-word;
}
.border-gray {
    border-color: rgba(0, 0, 0, 0.3);
}
footer {
    background-image: url("../images/footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
footer::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    opacity: 0.8;
    z-index: 0;
}
.conclusion ul {
    list-style-type: none !important;
    padding-left: 12px !important;
}
.icon,
.conclusion ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.625rem;
}
.conclusion ul li::before {
    content: "❖";
    position: absolute;
    top: 3px;
    left: 0;
}
.icon img {
    position: absolute;
    top: 3px;
    left: 0;
}
.hero {
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 70%;
    position: relative;
    z-index: 1;
    margin-bottom: -100px !important;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    z-index: -1;
}
.logo-img {
    width: 150px;
}
.nav-item .nav-link {
    padding: 8px;
}

.hover-scale-gray {
    transition: 0.2s ease-in;
}
.hover-scale-gray:hover {
    scale: 1.5;
    filter: grayscale(100%);
}

.read-more-btn {
    background: var(--primary-blue);
    transition: all 0.3s ease-in-out;
}
.arrow {
    position: relative;
    overflow: hidden;
    width: 15px;
    height: 15px;
}

.arrow::before,
.arrow::after {
    content: "";
    display: block;
    background-image: url("../images/icons/arrow.svg");
    width: 15px;
    height: 15px;
    transition: all 0.5s ease-in-out;
}

.arrow::before {
    position: absolute;
    top: 200%;
    right: 200%;
}

.arrow::after {
    position: absolute;
    bottom: 0%;
    left: 0%;
}

.read-more-btn:hover {
    background: #000;
}

.read-more-btn:hover .arrow::after {
    position: absolute;
    bottom: 100%;
    left: 100%;
}

.read-more-btn:hover .arrow::before {
    top: 0;
    right: 0;
}
.submit-btn {
    background: transparent;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.arrow-white {
    position: relative;
    overflow: hidden;
    width: 15px;
    height: 15px;
}

.arrow-white::before,
.arrow-white::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    transition: all 0.6s ease;
}

.arrow-white::before {
    position: absolute;
    background-image: url("../images/icons/arrow.svg");

    top: 200%;
    right: 200%;
}

.arrow-white::after {
    position: absolute;
    background-image: url("../images/icons/arrow-white.svg");
    bottom: 0%;
    left: 0%;
}

.submit-btn:hover {
    background: var(--primary-blue);
    color: white !important;
}
.submit-btn:hover .arrow-container {
    background-color: white !important;
}
.submit-btn:hover .arrow-white::after {
    position: absolute;
    bottom: 100%;
    left: 100%;
}

.submit-btn:hover .arrow-white::before {
    top: 0;
    right: 0;
}

.custom-card {
    border: none !important;
    position: relative;
}

.custom-card-image {
    width: 25rem;
    height: 25rem;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}
.custom-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border-radius: 0 0 1.5rem 0;
    padding: 0 1rem 1rem 0;
}
.title::after {
    width: 3rem;
    height: 2.6rem;
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    right: -3rem;
    border-top-left-radius: 2.25rem;
    box-shadow: -0.6rem -0.6rem white;
}

.title::before {
    width: 3rem;
    height: 2.6rem;
    content: "";
    position: absolute;
    background-color: transparent;
    left: 0;
    bottom: -2.5rem;
    border-top-left-radius: 2.25rem;
    box-shadow: -0.6rem -0.6rem white;
}
.title > img,
.title-right > img {
    background-color: white;
    color: #000;
    font-size: 0.875rem;
    padding: 0.3rem 0.625rem;
    max-width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 1rem;
}
.title-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--wheat);
    border-radius: 0 0 0 1.5rem;
    padding: 0 1rem 1rem 1rem;
}
.title-right::after {
    width: 3rem;
    height: 2.6rem;
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    left: -3rem;
    border-top-right-radius: 2.25rem;
    box-shadow: 0.6rem -0.6rem var(--wheat);
}

.title-right::before {
    width: 3rem;
    height: 2.6rem;
    content: "";
    position: absolute;
    background-color: transparent;
    right: 0;
    bottom: -2.6rem;
    border-radius: 0 2.25rem 0 0 !important;
    box-shadow: 0.6rem -0.6rem var(--wheat);
}
.array-gray {
    background-color: var(--arrow-gray) !important;
}
.custom-card:hover .hover-scale-gray {
    scale: 1.2;
    filter: grayscale(100%);
}
.custom-card:hover .read-more-btn {
    background-color: var(--primary-blue) !important;
    color: white !important;
}

.custom-card:hover .arrow::after {
    position: absolute;
    bottom: 100%;
    left: 100%;
}

.custom-card:hover .arrow::before {
    top: 0;
    right: 0;
}
.custom-hero-card {
    border-radius: 2rem;
    position: relative;
}

.profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.custom-hero-content {
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}
.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    left: 0;
    padding: 30px !important;
    border-radius: 1.5rem;
}

.hero-title > p {
    background-color: white;
    color: var(--primary-blue);
    font-size: 1.65rem;
    font-weight: 600;
    padding: 0.3rem 0.625rem;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 1rem;
}
.phone-number {
    border-bottom: 2px solid #05d4f9;
    padding-bottom: 4px;
}
.carousel-item {
    transition: transform 1s ease-in-out;
}

@media (max-width: 768px) {
    .logo-img {
        width: 110px;
    }
    .nav-item .nav-link.active,
    .nav-item .nav-link:hover {
        border-bottom: 2px solid var(--primary-blue);
    }
}
@media (max-width: 991px) {
    .hero-title > p {
        padding: 12px;
        font-size: 1.1rem;
    }
    .carousel-item img {
        height: 50vh;
    }
}
@media (min-width: 768px) {
    .w-md-75 {
        width: 75% !important;
    }
}
@media (min-width: 992px) {
    .w-lg-50 {
        width: 50% !important;
    }
    .nav-item .nav-link {
        padding: 30px 10px;
        border-bottom: 4px solid transparent;
        transition: color 0.3s ease-in, border-bottom 0.3s ease-in;
    }
    .nav-item .nav-link.active,
    .nav-item .nav-link:hover {
        border-bottom: 4px solid var(--primary-blue);
    }
}
