/********** CSS **********/
:root {
    --primary: #E1BA66;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body{
    background-color: #000000;
}

/* FAQ styles */
.title {
    text-align: center;
    font-size: 3rem;
    padding: 0.3rem;
    color: #F8F8F8;
}

.acc-container {
    padding: 1rem 2rem;
    /* border: 2px solid #E1BA66; */
    border-radius: 5% 5% 10% 10%;
    width: 100%;
    justify-self: center;
    align-self: center;
}
.acc-btn {
    width: 100%;
    color: #E1BA66;
    padding: 0.6rem 1rem;
    font-size: 1.6rem;
    cursor: pointer;
    background: inherit;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.5s linear;
}
.acc-btn:after {
    content: "\27A4";
    color: #E1BA66;
    float: right;
    transition: all 0.3s linear;
}
.acc-btn.is-open:after {
    transform: rotate(90deg);
}
.acc-btn:hover, .acc-btn.is-open {
    color: #ffffff;
    font-weight: bold;
}

.acc-content {
    max-height: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    margin: 0 2rem;
    padding-left: 1rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    border-bottom: 1px solid #ccc;
}

.credit {
    text-align: center;
    padding: 1rem;
}
.credit a {
    text-decoration: wavy underline;
    color: dodgerblue;
}
.reach{
     border: 0.5px solid #E1BA66;
     display: flex;
     justify-content: center;
     border-radius: 2px;
     background-color: #E1BA66;

}
/* FAQ styles End */

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: bolder;
    transition: .5s;
    background-color: #E1BA66;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #E1BA66;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    .banner{
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}
.carousel-inner img{
    max-height: 90vh;
    overflow: hidden;
}
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* ==========================
	 Start Feautes CSS 
=============================== */
.Feautes{
	padding-top:0;
}
.Feautes.index2{
	padding-top:100px;
}
.Feautes.testimonial-page{
	padding-top:100px;
}
.Feautes .single-features{
	text-align:center;
	position:relative;
	padding:10px 20px;
}
.Feautes .single-features::before {
	position: absolute;
	content: "";
	right: -72px;
	top: 60px;
	width: 118px;
	border-bottom: 3px dotted #E1BA66;
}
.Feautes .single-features.last::before{
	display:none;
}
.Feautes .single-features .signle-icon{
	position:relative;
}
.Feautes .single-features .signle-icon i{
	font-size:50px;
	color:#E1BA66;
	position:absolute;
	left:50%;
	margin-left:-50px;
	top:0;
	height:100px;
	width:100px;
	line-height:100px;
	text-align:center;
	border:1px solid #dddddd;
	border-radius:100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.Feautes .single-features:hover .signle-icon i{
	background:#E1BA66;
	color:#fff;
	border-color:transparent;
}
.Feautes .single-features h3{
	padding-top: 128px;
	color:#2C2D3F;
	font-weight:600;
	font-size:21px;
}
.Feautes .single-features p {
	margin-top: 20px;
}
/*=============================
	End Feautes CSS
===============================*/

/* ----------------- Form start--------------------------------- */
.background{
    width: 430px;
    height: 520px;
    position: absolute;
}
.background .shape{
    height: 200px;
    width: 200px;
    border-radius: 50%;
}
.shape:first-child{
    background: linear-gradient(
        #000000,
        #f09819
    );
}
.center_form{
    contain: content;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.shape:last-child{
    background: linear-gradient(
        to right,
        #ff512f,
        #f09819
    );
    right: -30px;
    bottom: -80px;
}
form{
    background-color: rgba(255,255,255,0.13);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
form *{
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    text-wrap: nowrap;
}

input{
    display: block;
    height: 50px;
    width: 70%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
#message{
    height: 20rem;
    width: 90%;
    color: #ffffff;
    border-radius: 2%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    font-style: italic;
    background-color: #00000000;
    border: 2px solid #E1BA66;
}
.inputs{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 90%;
}
::placeholder{
    color: #e5e5e5;
}
button{
    margin-top: 50px;
    width: 50%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}
/* ------------------------ Form End ------------------------------------------------------------- */


/** blog section **/

.blog {
    padding: 0 30px 0 30px;
    border: 2px solid #ffffff;
   padding-top: 70px;
   color: #ffffff;


}
.blog-container{
    display: flex;
    justify-content: space-around;
}
.blog .titlepage {
    padding-bottom: 30px;
    color: #ffffff;
}
.blog .titlepage p {padding-top: 5px;
    color: #ffffff;
}
.latest {
    margin-top: 30px;
    color: #ffffff;
    padding: 25px 25px 0px 25px;
    box-shadow: 3px 0 62px rgba(255, 255, 255, 0.2);
    margin-bottom: 70px;
}


.latest figure {margin: 0;}

.latest .read_more {
    margin: 0 auto;
    display: block;
    position: absolute;
    z-index: 99999;
    max-width: 174px;
    height: 51px;
    line-height: 51px;
    font-weight: normal;
    top: 22%;
    right: 0;
    left: 0;
    bottom: 0;
}

.nostrud h3 {
    color: #151515;
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
    padding-top: 52px;
}

.nostrud p {
    padding: 5px 0 60px 0;
    color: #0f100d;
    line-height: 28px;
    font-weight: normal;
}

.nostrud {position:relative;}
.nostrud::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    background: url(../images/corona_icon.png);
    bottom: -40px;
    width: 80px;
    height: 81px;
    text-align: center;
    margin: 0 auto;
}


/** end blog section **/
/* --------------------- Our services start -------------------------------- */

   /* Header */
   header {
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }

  h1 {
    margin: 0;
    color: rgb(255, 255, 255);
  }

  /* Services */
  .services {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
  }

  .service {
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    background-color: #443f3f6b;
    border-radius: 5px;
    margin-top: 20px;
  }

  .service h2 {
    margin-top: 0;
    text-align: center;
    font-size: large;
    color: #dddddd;
    text-decoration: underline;
  }
/* Media query for screens less than 768px wide */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .services {
        flex-direction: column; /* Stack services on top of each other */
        justify-content: center; /* Center services horizontally */
        align-items: center; /* Center services vertically */
    }

    .service {
        width: 100%; /* Make services full width on mobile */
    }

    h1 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}

/* --------------------- Our services end----------------------------------- */

/* --------------------- Blog start----------------------------------- */
#readmore001 {
    color: #000000;
    text-decoration: none;
}

#readmore001:hover {
    text-decoration: underline;
}
/* --------------------- Blog end----------------------------------- */

/* -------------------- Fanpage start ------------------------------------------ */
.comments{
  display:flex;
  width:100vw;
  justify-content:space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

/* ------------ fans story ----------------------- */
.fanpageheading{
  width: 100vw;
  display: flex;
  justify-content: center;
  text-decoration: underline;
  
}
.fandiv{
  display: flex;
  justify-content:center;
}
.fancards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 2px solid #E1BA66;
}

.fancards .fanred {
  background-color: #000000;
}

.fancards .fanblue {
  background-color: #000000;
}

.fancards .fangreen {
  background-color: #000000;
}

.fancards .fancard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100px;
  width: 50vw;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
  border: 1px solid #ffffff;
  
}

.fancards .fancard p.fantip {
  font-size: 1em;
  font-weight: 700;
}

.fancards .fancard p.fansecond-text {
  font-size: .7em;
}

.fancards .fancard:hover {
  transform: scale(1.1, 1.1);
}

.fancards:hover > .fancard:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}
/* ------------------ Fanpage end ------------------------------------------------  */
