@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;
}

:root {
    --dark: #080808;
    --dark-grey: #1A1A1A;
    --light-grey: #B3B3B3;
    --grey: #d9d9d9;
    --white: #ffffff;
    --yellow: #F79E10;

}

main {
    padding: 24px;
    background: var(--dark-grey);
}

h1 {
    font-weight: 700;
    margin: 0;
    font-size: 24px;
}

p {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: normal;
    color: var(--dark);
    margin: 0;
}

section {
    padding: 52px 0;
}

.button{
    padding: 12px 16px;
    background: var(--yellow);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
}
body{
    background: var(--dark-grey);
}
nav.navbar {
    background: var(--dark);
    padding: 8px 24px;
}

nav .nav-item .nav-link {
    color: var(--grey);
    text-transform: capitalize;
    font-weight: 700;
    font-size: 14px;
    padding:16px;
}
@media (min-width: 992px){
    nav .nav-item .nav-link{
        margin:0 8px;
    }
}
nav .nav-item .nav-link svg{
    margin-right:16px;
}
nav .nav-item .nav-link:hover{
    background:var(--dark-grey);
    border-radius:10px;
}
nav .nav-item .nav-link.active{
    background:var(--dark-grey);
    border-radius:10px;
    color:var(--white)!important;
}
nav .nav-item .nav-link:hover svg path{
    fill:var(--yellow);
}
nav .nav-item .nav-link.active svg path{
    fill:var(--yellow);
}
nav .nav-social {
    gap: 24px;
}

nav .nav-social a {
    font-size: 20px;
    color: var(--white);
}
.navFixed{
    animation-name: fadeInUp;
    animation-duration: 1s;
    position: fixed;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    top: 0;
    /*border-bottom: 1px solid var(--grey);*/
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}
@keyframes fadeInUp {
    from {
      opacity: 0;
      top: -50px;
    }
    
    to {
      opacity: 1;
      top: 0;
    }
  }
.banner-sec .swiper-slide img{
    border-radius:10px 10px 0 0;
}
/*@media (max-width:992px) {*/
/*    .banner-sec .swiper-slide img{*/
/*    height:400px;*/
/*    object-fit:cover;*/
/*}*/
/*}*/
.banner-sec .item {
    padding: 24px;
    border-radius: 0 0 10px 10px;
    background: var(--white);
}

.banner-sec .item p {
    margin-top: 16px;
}

.category-sec {
    padding-top: 22px;
}

    .category-sec .col-lg-3{
        margin-top: 30px;
}


@media (min-width: 992px) {
    .category-sec .col-lg-3:nth-child(1),
    .category-sec .col-lg-3:nth-child(2),
    .category-sec .col-lg-3:nth-child(3),
    .category-sec .col-lg-3:nth-child(4){
        margin-top: 0;
}
}

.category-sec .item {
    position: relative;
    width: 100%;
    height:100%;
    border-radius: 10px;
    cursor:pointer;
    overflow: hidden; 
}

.category-sec .item img {
    display: block;
    width: 100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius: 10px;
    transition: 0.3s;
}

.category-sec .item img:hover{
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-grey);
    opacity: .8;
    overflow: hidden;
    width: 100%;
    /*height: 0;*/
    transition: .5s ease;
    border-radius: 0 0 5px 5px;
    /*height: 30.33%;*/
    padding:8px 8px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}


.category-sec .item .text {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*-webkit-transform: translate(-50%, -50%);*/
    /*-ms-transform: translate(-50%, -50%);*/
    /*transform: translate(-50%, -50%);*/
    /*text-align: center;*/
}
.category-sec .item .text-paragraph{
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 8px;
    /* position: absolute;
    bottom: 0;
    width: 100%;
    left: 0; */
    text-align: left;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feedback{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 8px;
    z-index:1;
}
.feedback .views,
.feedback .likes{
    border-radius: 50px;
    background: var(--dark-grey);
    opacity: .8;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 400;
    gap: 8px;
    display: flex;
    align-items: center;
    color: var(--white);
    cursor: pointer;
}
.feedback .views span,
.feedback .likes span{
    line-height: 0;
}
/*-- contact sec start --*/
.contact-sec{
    background: var(--light-blue);
}
.contact-sec .row{
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    margin: 0;
}
@media (min-width:768px) {
    .contact-sec .row:nth-child(2){
        margin-left: -15px;
        margin-right: -15px;
    }  
}
.contact-sec .item form{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items:center;
}
input,
select,
textarea{
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid #ADADAD;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}
footer{
    background: var(--dark);
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
@media (max-width:768px){
    footer{
        position:static;
    }
}
footer .item ul{
    margin: 0;
    padding: 0;
}
footer .item ul li{
    display: inline;
    margin-right: 8px;
}
footer .item ul li a{
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}
footer .item p{
    font-size: 14px;
    color: var(--white);
}
/*----- swiper style stat -------*/
.swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
    background: var(--grey) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--yellow) !important;
}