*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #F5BD1F;
    font-family: 'Bellerose Light', 'Bell MT', Arial;
    letter-spacing: 0.1em;
    line-height: 2;
    scroll-behavior: smooth;
}

body
{
    background-color: #000000;
}

::-webkit-scrollbar {
    display: none;
}

/* ============================== top navigation ============================== */

.bg
{
    background-color: black;
}

.navbar
{
    padding: 0;
    backdrop-filter: blur(5px);
}

.navbar-toggler:focus
{
    box-shadow: none;
}

@media(max-width: 767px)
{
    .nav-item
    {
        border-bottom: #F5BD1F solid 0.5px;
    }
}

.nav-link
{
    color:#ffffff;
}

.nav-link:hover, .nav-link:focus
{
    color:#F5BD1F;
}

/* ============================== footer =============================== */

footer, footer div, #footericons div, #footericons img, .bottombutton, #footericons, #footerinfo p ,#footerinfo p strong, #footerinfo a, #footericons p, #footericons p strong, #footericons div a
{
    background-color: #F5BD1F;
    color: black;
    font-style: bold;
    font-size: 16px;
}

footer
{
    padding: 50px 20px;
    color:#ffffff;
    font-size: 13px;
    font-weight: 100;
}

.footer
{
    justify-content: center;
}

footer div
{
    margin: 10px 20px;
}

#footericons img
{
    height: 30px;
    width: 30px;
    margin: 0px 10px;
}

.bottombutton
{
    color: #ffffff;
    text-decoration: none;
}

/* ============================= back to top button ===================== */

#myBtn {
	display: none; 
	position: fixed; 
	bottom: 50px; 
	right: 50px; 
	z-index: 2; 
	border: none; 
	outline: none; 
	background-color: #000000; 
	cursor: pointer;
	border-radius: 50px;
    border-color: #ffffff;
    border-style: solid;
    border-width: 2px;
	height: 60px;
	width: 60px;
    transition: 0.5s;
}

#myBtn:hover {
    border-color: #000000;
    background-color: #dddddd;
	height: 70px;
	width: 70px;
}

#top_img {
	height: 30px;
	width: 30px;
    z-index: 1;
    background-color: transparent;
    margin-bottom: 5px;
}

@media only screen and (max-width: 700px) {
	#myBtn
    {
        bottom: 30px; 
	    right: 30px;
        height: 50px;
	    width: 50px;
    }
}

@media only screen and (max-width: 700px) {
	#top_img
    {
        height: 30px;
        width: 30px;
    }
}

/* ============================== index ================================= */

.main
{
    height: 100vh;
    display: grid;
    place-items: center;
}

.index_title
{
    font-size: clamp(5.5em, 4vw, 4em);
    font-weight: 400;
    margin: 0;
    padding: 20px;
    animation: fadeInAnimation ease 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes background-pan
{
    from
    {
        background-position: 0% center;
    }
    to
    {
        background-position: -200% center;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.index_title > .magic
{
    animation: background-pan 3s linear infinite;
    background: linear-gradient(
        to right, 
        #f5bd1f,
        #16d8ff, 
        #ab00ff,
        #f5bd1f
    );
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0em;
    line-height: 1;
}

.title_nav
{
    display: flex;
}

.title_nav a
{
    margin: 0px 20px;
    text-decoration: none;
    color:#F5BD1F;
    font-size: 16px;
}

#about p
{
    font-weight: 500;
}

.about-section
{
    align-items: center;
}

.index-service
{
    border: 1px solid #F5BD1F;
    border-radius: 20px;
    margin-bottom: 2em;
}

.index-image
{
    display: flex;
    align-items: end;
    justify-content: center;
}

.middle
{
    transition: .5s ease;
    opacity: 0;
    z-index: 2;
    position: absolute;
    background-color: none;
    text-align: center;
    backdrop-filter: blur(5px);
}

.index-image:hover .middle
{
    opacity: 1;
}

.text
{
    background-color: none;
}

/* ================================ our photographer page ================================ */


.paginate-main
{
    margin: 50px auto;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.pagination a 
{
    color: black;
    border: 1px solid #ddd; 
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.paginate-img
{
    align-items: center;
    justify-content: center;
}

.paginate-form
{
    align-items: center;
    justify-content: center;
}

.input-container 
{
    position: relative;
    margin: 50px auto;
    width: 100%;
}

.input-container input[type="text"] 
{
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
}

.input-container .label 
{
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container input[type="text"]:focus ~ .label,
.input-container input[type="text"]:valid ~ .label 
{
    top: -20px;
    font-size: 16px;
    color: #F5BD1F;
}

.input-container .underline 
{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #F5BD1F;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container input[type="text"]:focus ~ .underline,
.input-container input[type="text"]:valid ~ .underline 
{
    transform: scaleX(1);
}
  
/* ============================= service page ================== */

.top
{
    background-image: url('../images/wallpaper.jpg');
    height: 125px;
    width: 100vw;
    text-align: center;
    display: grid;
    place-items: center;
    margin-top: 5px;
}

.top-title
{
    color: #000000;
    font-weight: 500;
    backdrop-filter: blur(10px);

}   

/* ============================= request page =========================== */

.form-input input, .form-input label, .form-input
{
    color: #ffffff !important; 
    line-height: 0 !important;
    font-size: 20px !important;
}

.form-input
{
    border: 1px #F5BD1F solid;
    border-radius: 20px;
    padding: 20px;
}

.req-btn
{
    color: #F5BD1F;
    width: 50px !important;
    margin: 0 auto !important;
}

.form-textarea textarea
{
    color: #ffffff !important; 
}

.comment-textarea
{
    color: #ffffff;
    border: 1px #F5BD1F solid;
    border-radius: 20px;
    padding: 0px 20px;
}

.service-dropdown
{
    border: 1px #F5BD1F solid;
    border-radius: 20px;
    padding: 0px 20px;
}

.service-dropdown option
{
    background-color: #000000;
    border: 0.5px #F5BD1F solid;
    padding: 5px;
}

.form-checkbox
{
    margin-left: 30px;
}