/* my framework */
body {
    font-family: 'Work Sans', sans-serif;
    background-color: hsl(206deg 4% 6%);
}

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

ul {
    list-style: none;
}

a {
    color: #fff;
}

.text-center {
    text-align: center;
}

:root {
    --hue-color: 206;
    --text-gradient : linear-gradient(hsl(var(--hue-color), 4%, 24%), hsl(var(--hue-color), 4%, 8%));
    --black-color: hsl(var(--hue-color), 4%, 4%);
    --black-color-alt: hsl(var(--hue-color), 4%, 8%);
    --container-color: hsl(var(--hue-color), 4%, 10%);
    --title-color: hsl(var(--hue-color), 4%, 95%);
    --text-color: hsl(var(--hue-color), 4%, 75%);
}

.active {
    color: #fff !important;
}

/* Responsive */

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}
    
/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}
    
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
    
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* end framework */

/* start navbar */

.navbar {
    padding: 20px 0;
    overflow: hidden;
    position: fixed;
    width: 100%;    
    background-color: hsl(206deg 4% 6%);
    z-index: 999;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    width: 2rem;
}

.navbar .logo img {
    width: 100%;
}

.navbar .ul-list .list-item {
    display: inline-block;
}

.list-item a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: .4s;
    font-weight: 600;
    color: #1e2121;
}

.list-item.active a,
.list-item a:hover {
    color: #fff;
}

.menu-toggle-btn{
    position: absolute;
    right: 20px;
    top: 16px;
    float: right;
    height: 90px;
    line-height: 47px !important;
    font-size: 26px;
    cursor: pointer;
    display: none !important;
    transition: .4s;
}

.menu-toggle-btn:hover {
    color: #fff;
}

/* Media for Navbar Style */ 

@media (max-width : 991px) {
    .navbar {
        z-index: 9999999;
    }

    .navbar .ul-list .list-item {
        display: block;
        text-align: center;
    }

    .display {
        display: none
    }

    .menu-toggle-btn {
        display: block !important;
        color: #fff;
    }
}

@media (max-width : 665px) {
    .navbar .ul-list {
    width: 50%;
}
}

.sidebar {
    height: 100%; 
    width: 100%; 
    position: fixed; 
    z-index: 1; 
    top: 0;
    right: 0;
    background-color: #111; 
    overflow-x: hidden; 
    padding-top: 60px; 
    display: none;
    z-index: 9999999;
}

.sidebar ul {
    text-align: center;
}

.sidebar a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.25rem;
    text-transform: uppercase;
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: .4s;
    font-weight: 600;
}

.sidebar a:hover {
    color: #fff;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
    transition: all 0.5s ease-in-out;
}

.openbtn:hover{
    color: #fff;
}

@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }
    .sidebar a {
        font-size: 18px;
    }
}

/* End Navbar */

/* Start landing */

.landing .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 8rem;
}

.landing .image {
    width: 285px;
    position: relative;
}

.landing .image img {
    width: 100%;
    position: absolute;
    left: 5rem;
    top: -2rem;
    z-index: 9999;
}

.landing .text {
    margin: 12rem 0 0 0;
    z-index: 1;
}

.landing .text .home-title {
    line-height: 6rem;
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 7.5rem;
}

.landing .text .home-subtitle {
    line-height: 6rem;
    background: var(--text-gradient);
    color: #ddd;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 4rem;
    margin-top: -40px;
    margin-bottom: 25px;
}

.landing .text .home-info h3 {
    margin: 0px 0 20px 0;
    color: #fff;
    font-size: 2.25rem;
}

.landing .text .home-info p {
    line-height: 1.8;
    color: #989595cc;
    margin-bottom: 30px;
}

.landing .text .home-info button {
    padding: 1.5rem 1.75rem;
    border-radius: .5rem;
    transition: .3s;
    border: none;
    background-color: var(--black-color);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.landing .text .home-info button:hover {
    background-color: var(--black-color-alt);
}

.landing .text .home-info button span:first-of-type {
    padding: 0 10px 0px 20px;
}

@media (max-width:768px) {
    
    .landing .text {
        text-align: center;
    }

    .landing .text .home-title {
        font-size: 4.5rem;
        color: rgb(205 195 195);
    }

    .landing .text .home-subtitle {
        font-size: 2.5rem;
    }

    .landing .text {
        z-index: 9999;
    }

}

/* End landing */

/* Start sponsors */

.sponsor {
    padding: 60px 0 60px 0;
}

.sponsor .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    row-gap: 5rem;
    justify-items: center;
    align-items: center;
}

.sponsor .container .col {
    width: 90px;
}

.sponsor .container .col img {
    width: 100%;
}

@media (max-width:768px) {
    
    .sponsor .container {

        grid-template-columns: repeat(2, 1fr);
    }
}

/* End sponsors */

/* Start Spaces */

.Spaces {
    padding: 60px 0 80px 0;
    color: #fff;
}

/* TO Use It In Diffrent Section */
.special  {        
    text-align: center;
    font-size: 4.5rem;
    background: var(--text-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding: 0 0 40px 0;
}

.Spaces .spaces-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
}

.Spaces .spaces-content .spaces-info .col {
    display: flex;
    padding: 25px 0 0 0;
}

.Spaces .spaces-content .spaces-info .col i {
    flex-basis: 21px;
    padding: 8px 9px 0 0;
}

.Spaces .spaces-content .spaces-info h3 {
    color: #413e3ec2;
    font-size: 15px;
}

.Spaces .spaces-content .image {
    width: 385px;
}

.Spaces .spaces-content .image img {
    width: 100%;
}

@media (max-width:768px) {
    
    .Spaces .spaces-content .image{
        width: 250px;
    }

}

/* End Spaces */

/* start Case  */

.case {
    padding: 60px 0 80px 0;
}

.case .case-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
}

.case .case-info .case-text h3 {
    line-height: 2rem;
    color: #413e3ec2;
}

.case .case-info .case-text {
    width: 70%;
}

.case .case-info .image img {
    width: 100%;
}

.case .case-info button {
    padding: .9rem 1rem;
    border-radius: .5rem;
    transition: .3s;
    border: none;
    background-color: var(--black-color);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    margin-top: 20px;
}

.case .case-info button:hover {
    background-color: var(--black-color-alt);
}

.case .case-info button span {
    padding: 0 7px 0px 13px;
}

@media (max-width:768px) {
    
    .case .case-info button {
        font-size: 15px;
    }

    .case .case-info {
        grid-gap: 15px;
    }

    .case .case-info .case-text {
        width: auto;
    }
}

/* End Case  */

/* Start Discount */

.discount {
    padding: 60px 0 80px 0;
}

.discount .discount-info {
    background-color: var(--container-color);
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 250px max-content;
    justify-content: center;
    column-gap: 5rem;
    padding: 30px;
    border-radius: .75rem;
}

.discount .discount-info .discount-text h2 {
    font-size: 28.5px;
    color: var(--title-color);
    margin-bottom: 15px;
}

.discount .discount-info .discount-text p {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 19px;

}

.discount .discount-info .discount-text button {
    padding: .9rem 1rem;
    border-radius: .5rem;
    transition: .3s;
    border: none;
    background-color: var(--black-color);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

.discount .discount-info .discount-text button:hover {
    background-color: var(--black-color-alt);
}

.discount .discount-info .discount-text button span {
    padding: 0 7px 0px 13px;
}

.discount .discount-info .image img {
    width: 100%;
}

@media (max-width:991px) {

    .discount .discount-info {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5px;
    }

    .discount .discount-info .discount-text button {
        font-size: 12px;
    }

}

/* End Discount */

/* start products */

.products {
    padding: 60px 0 80px 0;
    color: #fff;
}

.products .products-container {
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    column-gap: 1rem;
}

.products .products-container .product-content {
    background-color: var(--container-color);
    margin-bottom: 10px;
    position: relative;
    padding: 25px;
    border-radius: 15px;
    height: 13rem;
    width: 10rem;
}

.products .products-container .product-content img {
    width: 95px;
    position: absolute;
    top: -37px;
}

.products .products-container .product-content .products-text {
    position: absolute;
    bottom: 10px;
    text-align: center;
}

.products .products-container .product-content .products-text h3 {
    margin-bottom: 12px;
}

.products .products-container .product-content .products-text span {
    color:var(--text-color) ;
}

.products .products-container .product-content .products-text button {
    padding: 7px 10px 7px 10px;
    border-radius: .5rem;
    transition: .3s;
    border: none;
    background-color: var(--black-color);
    color: #fff;
    cursor: pointer;
    margin-left: 37px;
}

.products .products-container .product-content .products-text button i {
    font-size: 16px;
}

.products .products-container .product-content .products-text button:hover {
    background-color: var(--black-color-alt);
}

@media (max-width:1265px) {

    .products .products-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .products .products-container .product-content {
        margin-bottom: 50px;
    }
}

@media (max-width:999px) {

    .products .products-container {
        grid-template-columns: repeat(2, 1fr);

    }

}

/* End products */

/* start footer */

.footer {
    padding: 60px 0 80px 0;
}

.footer .container {
    position:relative;
}

.footer .footer-container {
    display: grid;
    justify-items: center;
    align-items: flex-start;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
}

.footer .footer-container .footer-content img {
    width: 2rem;
}

.footer .footer-container .footer-content h2 {
    color: #fff;
    margin-bottom: 10px;
}

.footer .footer-container .footer-content li {
    padding:  10px 0 10px 0 ;
    font-size: 18px;
}

.footer .footer-container .footer-content li a {
    color: var(--text-color);
}

.footer .footer-container .footer-content li a:hover {
    color: #fff;
}

.footer .footer-container .footer-content input {
    border: none;
    outline: none;
    background-color: var(--container-color);
    color: #fff;
    width: 22rem;
    padding: 31px 10px;
    border-radius: 10px;
}

@media (max-width:991px) {

    .footer .footer-container {
        grid-template-columns: repeat(3, 1fr);

    }

    .footer .footer-container .footer-content:first-of-type {
        display: none;
    }

    .footer .footer-container .footer-content input {
        width: 12rem;
        padding: 20px 8px;
    }

}

.footer2 {
    padding: 10px 0 10px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.footer2 span {
    font-weight: bold;
    color: var(--main-color);
}

/* End footer */

/* btn to top */

.fa-chevron-up {
    position: fixed;
    bottom: 40px;
    right: 35px;
    cursor: pointer;
    background: var(--container-color);
    color: white;
    outline: none;
    padding: .45rem;
    transition: all 0.2s ease-in-out;
    display: none;
    font-size: 24px;
}

.fa-chevron-up:hover {
    background: var(--black-color);
}