@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 {
    --theme-color: rgb(7, 62, 99);
    --theme-color-second: rgb(6, 48, 77);
    --theme-rounded: 30px;
    --theme-light-color-1: rgb(248, 248, 248);
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--theme-light-color-1);
}

.color_theme {
    color: var(--theme-color);
}

.bg_theme {
    background-color: var(--theme-color)
}

.rounded_theme {
    border-radius: var(--theme-rounded)
}

.btn,
.form-control,
.form-select,
.card,
.modal-content {
    border-radius: var(--theme-rounded);
}

.modal-content{
    padding: 15px;
}
.modal-content .modal_title{
    font-size: 20px;
}

.btn {
    border-radius: var(--theme-rounded);
}

.btn-primary {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.btn-primary:hover {
    background-color: var(--theme-color-second) !important;
    border-color: var(--theme-color-second) !important;
}

input,
select,
button,
a,
span {
    box-shadow: none !important
}

img {
    border-radius: 10px
}

.ajs-message {
    color: white !important
}

.required::after {
    content: " *";
    color: red
}
.nav-link{
    font-size: 17px;
    font-weight: 600;
    color: rgb(93, 94, 112) !important;
}
.dropdown-menu {
    border-radius: 20px;
    overflow: hidden;
}

.dropdown-item:hover {
    background-color: var(--theme-color) !important;
    color: white !important;
}

.jumbotron {
    height: 105vh
}

.head_text {
    font-weight: 700;
    font-size: 35px
}

.section_content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section_head {
    margin-bottom: 40px;
}

.section_head .title {
    font-size: 30px;
    font-weight: 600;
}

.section_head .subtitle {
    font-size: 18px;
}

.go_book_btn {
    transition: 0.3s
}

.go_book_btn:hover {
    background-color: var(--theme-color-second)
}

.mb_section {
    margin-bottom: 100px;
}

.jumbotron {
    position: relative;
    overflow: hidden;
}

.jumbotron .head_image {
    position: absolute;
    overflow: hidden;
    top: 500px;
    bottom: 0;
    right: -20%;
    width: 135%;
    height: 575px;
    border-radius: 80px;
    transform: rotate(-45deg);
}

.jumbotron .head_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/head-masjid.png');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(45deg) translate(-13%, -8%) scale(135%);
}

.zoom_hover{
    transition: 0.3s;
}
.zoom_hover:hover{
    transform: scale(105%);
}
@media(min-width:768px) {
    .jumbotron {
        height: 90vh
    }
    .head_text {
        font-size: 55px
    }

    .jumbotron .head_image {
        position: absolute;
        overflow: hidden;
        top: 450px;
        right: 10%;
        width: 50%;
        height: 110%;
        transform: rotate(-45deg);
    }

    .jumbotron .head_image::before {
        transform: rotate(45deg) translate(-22%, -13%) scale(150%);
    }
}

@media(min-width:992px) {
    .jumbotron .head_image {
        position: absolute;
        overflow: hidden;
        top: 150px;
        right: 0;
        width: 45%;
        height: 110%;
        transform: rotate(-45deg);
    }

    .jumbotron .head_image::before {
        transform: rotate(45deg) translate(-13%, -13%) scale(130%);
    }
}
