@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
    transition: all 0.3s ease-in-out;
}

h1,h2,h3,h4{
    font-family: "Lora", serif;
}
h5,h6,strong{
    font-family: "Raleway", sans-serif;
}

/* NAVIGATION---------------START-----------------HERE---------------- */

nav{
    transition: all 0.5s ease-in-out;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: start;
    list-style: none;
    width: 65%;
}

nav .nav-active-item{
    margin: 0 20px; 
    position: relative;
    padding: 3px 0;
}

nav .nav-active-link{
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

nav .nav-active-link:hover{
    color:#793CFB;
}

nav .nav-active-link::before{
    content: "";
    background: #793CFB;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -50px;
    left: 0;
    transition: all 0.4s ease-in-out;
    transform: scale(0);
}

nav .nav-active-item .nav-active-link:hover:before{
    content: "";
    bottom: 0;
    transform: scale(1);
}

nav .nav-active-item:nth-child(2n) .nav-active-link:before{
    content: "";
    top: -50px;
}

nav .nav-active-item:nth-child(2n) .nav-active-link:hover:before{
    content: "";
    top: 0px;
}

nav .nav-active-item.active .nav-active-link{
    color:#793CFB;
}

.bttn{
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #793CFB;
    color: #FFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid #793CFB;
}

.bttn:hover{
    background: transparent;
    color:#793CFB;
}

nav #btn-2{
    width: 100px;
    background: transparent;
    color:#793CFB;
}

nav #btn-2:hover{
    color:#FFF;
    background: #793CFB;
}

nav .nav-hide-btn,.nav-show-btn{
    display: none;
}

@media only screen and (max-width: 1200px){
    nav .nav-active-item {
        margin: 0 10px;
    }
    nav .nav-bar {
        width: 55%;
    }
}
@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        background: #FFF;
        box-shadow: 0 0 10px rgb(197, 197, 197);
        z-index: 3;
        transition: all 0.5s ease-in-out;
    }
    nav .nav-active-item{
        width: max-content;
        margin: 20px;
    }
    nav .nav-hide {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #793CFB;
        color: #FFF;
        text-decoration: none;
        border-radius: 100px;
        margin: 15px 15px 50px auto;
        font-size: 20px;
    }
    nav .nav-active-link{   
        position: relative;
        padding: 6px 0;
    }
    nav .nav-active-link::before{
        content: "";
        bottom: 0;
    }
    nav .nav-active-item:nth-child(2n) .nav-active-link:before {
        content: "";
        top: 0px;
    }
    nav .nav-hide-btn,.nav-show-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    nav .bttn{
        display: none;
    }
    .container-fluid{
        padding-right: 12px !important;
        padding-left: 12px !important;
    }
}

/* NAVIGATION---------------ENDS-----------------HERE---------------- */

/* BANNER---------------START-----------------HERE---------------- */

.banner{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.banner h1{
    color:#793CFB;
    font-size: 60px;
}

.banner .img-1{
    height: 550px;
    object-fit: cover;
}

.banner .banner-img:hover .img-txt{
    bottom: 0;
}

.banner .img-txt{
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: #85858562;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease-in-out;
}

.swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    background: #793CFB;
}

.swiper-horizontal>.swiper-pagination-bullets{
    bottom: -20px;
    margin-bottom: 30px;
    position: relative;
}

@media only screen and (max-width: 1200px){
    .banner h1 {
        font-size: 50px;
    }
    .banner span.fw-medium {
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .banner h1 {
        font-size: 40px;
    }
    .banner p{
        font-size: 14px;
    }
    .banner span.fw-medium {
        font-size: 11px; 
    }
    .banner .img-1{
        height: 400px;
    }
    .banner .img-txt{
        padding: 30px 10px;
    }
    .banner h4{
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .banner h1 {
        font-size: 35px;
    }
    .banner .banner-info .d-flex{
        justify-content: center;
    }
    .banner span.fw-medium {
        font-size: 17px;
        line-height: 1; 
    }
    .banner .img-1{
        height: 300px;
    }
    .banner .banner-content{
        text-align: center;
        margin: 60px 0 30px 0;
    }
    .banner h4{
        font-size: 16px;
    }
    .project .button{
        margin: 5px !important;
    }
}

/* BANNER---------------ENDS-----------------HERE---------------- */

/* PROJECT---------------START----------------HERE---------------- */

.project .button{
    padding: 6px 20px;
    background: #FFF;
    box-shadow: 0 0 10px 10px rgba(212, 212, 212, 0.11);
    margin: 0 10px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.project .pro-content{
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.411);
    margin: 20px 5px;
    border-radius: 10px;
    overflow: hidden;
}

.project .img{
    height: 250px !important;
}

.project .pro-content:hover .img{
    transform: scale(1.1) rotate(3deg);
}

.project h5:hover{
    color: #793CFB !important;
    cursor: pointer;
}

.project .pro-info{
    border-top: 1px solid #F4F4F4;
    border-bottom: 1px solid #F4F4F4;
}

.project p{
    color:#7a7a7a;
    font-size: 14px;
}

.project .button:hover{
    background: #793CFB;
    color: #FFF;
}

.project .button.active{
    background: #793CFB;
    color: #FFF;
}

@media only screen and (max-width: 1200px){
    .project .pro-txt{
        padding: 20px 9px !important;
    }
    .project h5{
        font-size: 19px;
    }
}
@media only screen and (max-width: 992px){
    .project .pro-txt{
        padding: 20px 15px !important;
    }
    .project h5{
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .project .pro-txt{
        padding: 20px 12px !important;
    }
    .project p{
        font-size: 14px;
    }
    .project .pro-dtl{
        width: 100% !important;
    }
    .project h5{
        font-size: 18px;
    }
}

/* PROJECT---------------ENDS-----------------HERE---------------- */

/* CHECK---------------START-----------------HERE---------------- */

.check{
    position: relative;
    margin-top: 100px;
}

.check .container-fluid{
    background: #F1F0F8;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.check h1{
    font-size: 60px;
    line-height: 0.9;
}

.check .check-info{
    overflow: hidden;
    border-radius: 15px;
    margin: 0 2px;
    box-shadow: 0 0 10px rgb(199, 199, 199);
}

.check .check-info:hover .img{
    transform: scale(1.1) rotate(3deg);
}

.check span{
    font-size: 14px;
}

.check h5:hover{
    color: #793CFB !important;
    cursor: pointer;
}

.check .check-content{
    position: absolute;
    top: -100px;
    right: 25px;
    width: 60%;
}

@media only screen and (max-width: 1200px){
    .check .check-content {
        width: 65%;
    }
}
@media only screen and (max-width: 992px){
    .check .check-content {
        top: -70px;
        width: 50%;
    }
}
@media only screen and (max-width: 767px){
    .check .check-content {
        position: static;
        width: 100%;
    }
    .check .check-content-txt {
        text-align: center;
        margin: 20px 0;
    }
    .check h1 {
        font-size: 40px;
    }
    .check .bttn {
        margin: 0 auto;
    }
}

/* CHECK---------------ENDS-----------------HERE---------------- */

/* SALE---------------START-----------------HERE---------------- */

.sale .sale-txt{
    background: #FFF;
    text-align: center;
    width: 280px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -200%;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
}

.sale .img{
    height: 450px;
}

.sale .sale-content:hover .sale-txt{
    left: 0;
}

.sale span{
    font-size: 12px;
    color:#7a7a7a;
}

@media only screen and (max-width:1200px){
    .sale .img {
        height: 400px;
    }
}
@media only screen and (max-width:992px){
    .sale .img {
        height: 300px;
    }
}
@media only screen and (max-width: 767px){
    .sale{
        padding-top: 100px !important;
    }
}

/* SALE---------------ENDS-----------------HERE---------------- */

/* TEAM---------------START-----------------HERE---------------- */

.team .team-content{
    margin-bottom: 50px;
    cursor: pointer;
}

.team .swiper-slide:nth-child(2n) .team-content{
    position: relative;
    bottom: -50px;
}

@media only screen and (max-width: 1200px){
    .team img{
        height: 250px;
    }
}
@media only screen and (max-width: 767px){
    .team .team-title{
        text-align: center;
    }
}

/* TEAM---------------ENDS-----------------HERE---------------- */

/* TREND---------------START-----------------HERE---------------- */

.trend .trend-content{
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(170, 170, 170, 0.418);
    overflow: hidden;
}

.trend .trend-content:hover .img{
    transform: scale(1.1);
}

@media only screen and (max-width: 992px){
    .trend .trend-content{
        margin: 20px 0;
    }
}

/* TREND---------------ENDS-----------------HERE---------------- */

/* TESTIMONAIL---------------START-----------------HERE---------------- */

.testimonial{
    background: #F1F0F8;
    padding: 100px 0;
}

.testimonial .qts{
    position: absolute;
    top: 0;
    right: -20px;
}

.testimonial .img{
    clip-path: polygon(0 40%, 25% 0%, 25% 0, 85% 0%, 100% 0, 100% 15%, 100% 85%, 100% 100%, 85% 100%, 15% 100%, 0 100%, 0% 85%);
    border-radius: 15px;
}

.testimonial .test-content{
    background: #F8F8FC;
    padding: 50px;
    border-radius: 15px;
}

.testimonial .rating i{
    color: rgb(255, 208, 0);
    margin-right: 5px;
    font-size: 18px;
}

.testimonial .test-main{
    position: relative;
    top: -80px;
    margin-bottom: -80px;
}

@media only screen and (max-width: 767px){
    .testimonial .qts{
        right: 0;
    }
    .testimonial .test-content{
        padding: 30px 15px;
    }
}

/* TESTIMONAIL---------------ENDS-----------------HERE---------------- */

/* BRAND---------------START-----------------HERE---------------- */

.brand .brand-content{
    background: #FFF;
    box-shadow: 0 0 10px 10px rgba(211, 211, 211, 0.267);
    border-radius: 10px;
    margin: 15px 0;
}

.brand .brand-content:hover{
    transform: translateY(-10px);
}

.brand img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    padding: 0 10px;
}

/* BRAND---------------ENDS-----------------HERE---------------- */

/* HOME---------------START-----------------HERE---------------- */

.home h1{
    font-size: 60px;
}

.home .home-info{
    background: #FFF;
    box-shadow: 0 0 10px 10px rgba(211, 211, 211, 0.267);
    border-radius: 10px;
    padding: 30px 40px;
    position: absolute;
    bottom:50px;
    left: -100px;
    width: 100%;
}

.home .img{
    position: relative;
    right: -25px;
}

@media only screen and (max-width: 992px){
    .home .home-info {
        padding: 25px 10px;
    }
    .home p{
        font-size: 16px !important;
    }
}
@media only screen and (max-width: 767px){
    .home .home-content{
        padding: 0 !important;
        text-align: center;
        margin: 20px 0;
    }
    .home p{
        width: 100% !important;
    }
    .home .bttn{
        margin: 0 auto;
    }
    .home h1{
        font-size: 40px;
    }
    .home .img{
        right: 0;
        height: 250px;
    }
    .home .home-info {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 95%;
    }
    .home .home-info p{
        font-size: 14px !important;
    }
}

/* HOME---------------ENDS-----------------HERE---------------- */

/* LEAD---------------START-----------------HERE---------------- */

.lead{
    position: relative;
    margin: 350px 0;
}

.lead .container-fluid{
    background: #F1F0F8;
    padding: 70px 70px;
}

.lead h1{
    font-size: 60px;
    line-height: 1;
}

.lead .lead-content{
    background: #FFF;
    padding: 50px;
    border-radius:  15px;
    position: absolute;
    width: 55%;
    top: -350px;
    right: 70px;
    box-shadow: 0 0 10px 10px rgba(187, 187, 187, 0.397);
}

.lead #name {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 0 10px;
    font-size: 16px;
    border: 1px solid #F0EFF7;
}

.lead #name:focus{
    outline: none;
}

.lead label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
}

@media only screen and (max-width: 1200px){
    .lead .lead-content{
        width: 50%;
    }
}
@media only screen and (max-width: 992px){
    .lead .lead-content {
        width: 50%;
        padding: 30px 12px;
        right: 30px;
    }
    .lead .container-fluid{
        padding: 60px 30px;
    }
}
@media only screen and (max-width: 992px){
    .lead{
        margin: 0;
    }
    .lead .container-fluid{
        padding: 60px 12px;
    }
    .lead .lead-content {
        width: 100%;
        position: static;
    }
    .lead label{
        font-size: 14px;
    }
    .lead .lead-info{
        text-align: center;
        padding: 0 !important;
        margin: 20px 0;
    }
    .lead h1{
        font-size: 30px;
    }
}

/* LEAD---------------ENDS-----------------HERE---------------- */

/* SUBSCRIBE---------------START-----------------HERE---------------- */

.subscribe{
    background: #F1F0F8;
    padding: 60px 0;
}

.subscribe form{
    background: #FFF;
    box-shadow: 0 0 10px 10px rgba(182, 182, 182, 0.116);
    width: 50%;
    margin: 0 auto;
    border-radius: 15px;
    padding: 20px;
}

.subscribe #email{
    background: transparent;
    width: 80%;
    height: 40px;
    border: none;
}

.subscribe #email:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    .subscribe form{
        width: 75%;
    }
}
@media only screen and (max-width: 767px){
    .subscribe form{
        width: 100%;
    }
    .subscribe h4{
        font-size: 18px;
    }
    .subscribe h1{
        font-size: 30px;
    }
}

/* SUBSCRIBE---------------ENDS-----------------HERE---------------- */

/* FOOTER---------------START-----------------HERE---------------- */

.footer{
    background: #F1F0F8;
    padding: 0 0 60px 0;
}

.footer .icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #793CFB;
    color: #FFF;
    border-radius: 100px;
    text-decoration: none;
    margin-right: 7px;
    border: 1px solid #793CFB;
}

.footer .icn:hover{
    background: transparent;
    color: #793CFB;
}

.footer li a{
    color:#7a7a7a;
    text-decoration: none;
}

.footer li a:hover{
    color: #793CFB;
}

.footer li{
    padding: 5px 0;
}

.pre-footer{
    background: #F1F0F8;
}

@media only screen and (max-width: 1200px){
    .footer h5{
        font-size: 17px;
    }
}
@media only screen and (max-width: 992px){
    .footer h5{
        font-size: 17px;
    }
    .footer .footer-content{
        margin: 20px 0;
    }
}

/* FOOTER---------------ENDS-----------------HERE---------------- */

/* ABOUT----------------PAGE---------------START-----------------HERE---------------- */

/* BANNER_2---------------START-----------------HERE---------------- */

.banner-2{
    background: #793CFB;
    width: 100%;
    padding: 100px 0;
}

.banner-2 h1{
    font-size: 55px;
}

@media only screen and (max-width: 1200px){
    .about h1{
        font-size: 32px;
    }
}
@media only screen and (max-width: 992px){
    .about h1{
        font-size: 25px;
    }
    .about p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .about .about-content{
        text-align: center;
        margin: 20px 0;
    }
    .about .bttn{
        margin: 0 auto;
    }
    .about img{
        height: 250px !important;
    }
}

/* BANNER_2---------------ENDS-----------------HERE---------------- */

/* AGENCY---------------START-----------------HERE---------------- */

.agency .icn{
    color:#A8A8A8;
    margin: 0 6px;
    font-size: 18px;
}

.agency .icn:hover{
    color:#793CFB
}

.agency .agency-info{
    border-bottom: 1px solid #dadada;
    padding: 20px 0;
}

.agency .agency-content{
    margin: 20px 0;
}

@media only screen and (max-width: 1200px){
    .agency .agency-dtl{
        width: 100% !important;
    }
}
@media only screen and (max-width: 992px){
    .agency .agency-info{
        padding: 10px 0;
    }
}
@media only screen and (max-width: 767px){
    .agency .agency-content{
        text-align: center;
    }
    .agency .agency-sub-content{
        flex-direction: column;
    }
    .agency img{
        width: 150px !important;
        margin: 0 auto;
    }
    .agency .agency-info{
        flex-direction: column;
        text-align: center;
    }
    .agency .agency-info-main{
        padding: 0 !important;
    }
    .agency p{
        font-size: 14px;
    }
    .agency h6{
        font-size: 14px;
    }
}

/* AGENCY---------------ENDS-----------------HERE---------------- */

/* BLOG---------------START-----------------HERE---------------- */

.blog .overflow-hidden{
    border-radius: 10px;
}

.blog img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog .blog-content:hover img{
    transform: scale(1.1);
}

/* BLOG---------------ENDS-----------------HERE---------------- */

/* ADDRESS---------------START-----------------HERE---------------- */

.address .add-content{
    box-shadow: 0 0 10px 10px rgba(112, 112, 112, 0.247);
    padding: 30px 10px;
    border-radius: 10px;
}

.address small{
    background: #FFF;
    box-shadow: 0 0 10px 2px rgba(112, 112, 112, 0.247);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto;
    position: relative;
    top: -60px;
    margin-bottom: -30px;
}

/* ADDRESS---------------ENDS-----------------HERE---------------- */

/* CONTACT---------------START-----------------HERE---------------- */

.contact #name{
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #E6E6E6;
    margin-bottom: 20px;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    .address .add-content{
        margin: 25px 0;
    }
}
@media only screen and (max-width: 992px){
    .contact .contact-content{
        text-align: center;
        margin: 20px 0;
    }
    .contact .bttn{
        margin: 0 auto;
    }
}

/* CONTACT---------------ENDS-----------------HERE---------------- */

/* ABOUT----------------PAGE---------------ENDS-----------------HERE---------------- */