:root {
    --primary: #0d6efd;
    --basic: #d57f3e;
    --delete: #ec1d1d;
    --body: #888;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1)
}

body {
    font-family: Roboto, "sans-serif";
    line-height: 1.7;
    color: var(--body);

}

h1, h2, h3, h4, h5, h6, .display-4 {
    color: var(--basic);
    font-weight: bold;
}

a {
    color: var(--basic);
    text-decoration: none;
}

/*
Navbar
 */

.navbar-brand {
    font-size: 25px;
}

.nav {

}

.navbar .nav-link {
    font-size: 14px;
    font-weight: 700;
}

.btn {
    padding: 14px 18px;
    border-width: 2px;
    border-radius: 0;
}

/*
Hero
 */
.hero {
    background-image: url("../img/backround/tennis-g6ba9fe125_1280.jpg");
    barckround-postition: center;
    background-size: cover;
    /*background-attachment: fixed;*/
    z-index: 2;
}


.hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: lightgray;
    z-index: -1;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;

}

/*
Footer
 */
.footer-top {
    padding: 90px;
    background-color: whitesmoke;
}

.footer-top a {
    color: var(--body);
    font-size: 20px;
}

.footer-top a:hover {
    color: #FFFFFF;
    font-size: 20px;
}

/*
Text
 */
.text-basic {
    color: var(--basic);
}

/*
Pricing
 */
.check {
    font-size: 20px;
    color: var(--primary);
    margin-right: 8px;
}

.not {
    font-size: 20px;
    color: red;
    margin-right: 8px;

}

.pricing ul li {
    margin-top: 8px;
}

/*
Cards
 */
.card-effect {
    box-shadow: var(--box-shadow);
    background-color: #FFFFFF;
    padding: 25px;
    transition: all 0.35s ease;
    border-radius: 20px;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}

/*
Icons
 */

.iconbox {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--basic);
    color: #FFFFFF;
    font-size: 32px;
    border-radius: 100px;
}

/*
Buttons
 */

.btn-basic {
    background: var(--basic);
    color: white;
    border-radius: 10px;
}
.btn-delete {
    background: var(--delete);
    color: white;
    border-radius: 10px;
}
.btn-delete:hover {
    color: var(--delete);
}

.btn-basic:hover {
    color: var(--basic);
}
.btn-basic-outline {
    border-radius:10px;
}
.btn-basic-outline:hover {
    border-color: var(--basic);
    font-color: var(--basic);

}
.text-basic {
    color: var(--basic);
}

/*
Brand
 */

.brand-name{
    color: #21201e;
    font-family: "Roboto Medium"
}


/*
Calender Heading
 */

.parent-heading {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.backward-button { grid-area: 1 / 2 / 2 / 3; }
.time-heading { grid-area: 1 / 3/ 2 / 4; }
.forward-button { grid-area: 1 / 4 / 2 / 5; }

/*
Faq
 */



.faq-heading{
    border-bottom: #777;
    padding: 20px 60px;
}
.faq-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hr-line{
    width: 60%;
    margin: auto;

}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
}
.faq-body{
    margin: auto;
    /* text-align: center; */
    width: 50%;

}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
    background-color: #F9F9F9;
}
/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}
.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
/*
Scroll bar
 */

/* WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
}

::-webkit-scrollbar-thumb {
    background-color: #888; /* Thumb color */
    border-radius: 6px; /* Rounded corners */
}

/* Firefox */
/* Note: These styles might change in future versions of Firefox */
/* You might need to use the `scrollbar-color` property */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color */
* {
    scrollbar-color: #f1f1f1 #888;
}

/* IE 11 */
/* Note: These styles might not be supported in future versions of IE */
/* You might need to use the `-ms-overflow-style` property */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-overflow-style */
* {
    -ms-overflow-style: none; /* Hide scrollbar in IE */
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.flash-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.flash-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
