@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease-in-out;
}

.body{
    width: 95%;
    margin: 0 auto;
}

h1,h2,h3,h4,h5{
    font-family: "Epilogue", sans-serif;
}

/* NAVIGATION----------------START-------------HERE--------------- */

nav {
    transition: all 0.5s ease-in-out;
}

.nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.nav-active-item{
    margin: 0 10px;
    border-radius: 100px;
    overflow: hidden;
}

.nav-active-link{
    color: #000;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    padding: 5px 10px;
    transition: all 0.5s ease-in-out;
}

.nav-active-link::before{
    content: "";
    background: #FF3600;
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.nav-active-item.active .nav-active-link{
    color: #FFF;
}

.nav-active-link:hover{
    color: #FFF;
}

.nav-active-item.active .nav-active-link::before{
    content: "";
    background: #FF3600;
    color: #FFF;
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0%;
    z-index: -1;
}

.nav-active-link:hover::before{
    left: 0;
}

.nav-show-btn,.nav-hide-btn{
    display: none;
}

#nav-bar-2{
    display: none;
}

.bttn {
    width: 170px;
    height: 40px;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    color: #FF3600;
    z-index: 1;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    border: 2px solid #FF3600;
}
.bttn span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}
.bttn span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.5s ease-in-out;
}
.bttn:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: #FF3600;
}
.bttn:hover {
    color: white;
}
.bttn:active span::before {
    background: #FF3600;
}

@media only screen and (max-width: 1200px){
    .nav-active-item {
        margin: 0 4px;
    }
}
@media only screen and (max-width: 992px){
    .nav-active-item {
        margin: 20px;
        width: max-content;
    }
    .nav-bar {
        display: block;
        width: 300px;
        position: fixed;
        top: 0;
        left: -100%;
        background: #FFF;;
        box-shadow: 0 0 10px rgb(206, 206, 206);
        height: 100vh;
        z-index: 3;
        transition: all 0.5s ease-in-out;
    }
    a.nav-hide {
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FF3600;
        color: #FFF;
        font-size: 22px;
        text-decoration: none;
        border-radius: 100px;
        margin: 15px 15px 50px auto;
    }
    .nav-show-btn,.nav-hide-btn{
        display: block;
    }
    #nav-bar-1{
        display: none;
    }
    #nav-bar-2{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    .bttn{
        display: none;
    }
}

/* NAVIGATION----------------ENDS-------------HERE--------------- */

/* BANNER----------------START-------------HERE--------------- */

.banner{
    background-image: url(../images/banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 120vh;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner::before{
    content: "";
    background: #00000067;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner .banner-txt{
    width: 75%;
    margin: 0 auto;
}

.banner h1{
    font-size: 70px;
}

.banner .b-btn{
    width: 160px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #FF3600;
    color: #FFF;
    text-decoration: none;
    margin: 0 10px;
    font-weight:600;
    transition: all 0.4s ease-in-out;
}

.banner .b-btn:hover{
    color: #FF3600;
    background: #FFF;
}

.banner #btn-2{
    background: #FFF;
    color: #FF3600;
}

.banner #btn-2:hover{
    background: #FF3600;
    color: #FFF;
}

.banner .rent{
    background: #FFF;
    padding: 30px;
    border-radius: 30px;
    margin-top: 180px;
}

.banner label{
    color: #000;
    font-weight: 500;
}

.banner #name{
    width: 100%;
    height: 40px;
    border: none;
    color: #000;
}

.banner #name:focus{
    outline: none;
}

.banner #bttn{
    border: 1px solid #FF3600;
}

.banner #bttn:hover{
    background: transparent;
    color: #FF3600;
}

@media only screen and (max-width: 1200px){
    .banner .banner-txt {
        width: 85%;
    }
    .banner h1{
        font-size: 60px;
    }
    .banner h5{
        font-size: 16px;
    }    
    .banner .rent{
        padding: 20px;
        margin-top: 100px;
    }
}
@media only screen and (max-width: 992px){
    .banner .banner-txt {
        width: 100%;
    }
    .banner h1{
        font-size: 50px;
    }
    .banner h5{
        text-align: center;
    }
    .banner form{
        margin: 15px 0;
    }
    .banner .rent{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px){
    .banner h1{
        font-size: 25px;
    }
    .banner p{
        width: 100% !important;
        font-size: 14px;
    }
    .banner h5{
        text-align: center;
    }
    .banner .b-btn {
        width: 130px;
        font-size: 14px;
    }
    .banner .rent{
        margin-bottom: 12px;
        margin-top: 50px;
    }
    .banner #name{
        font-size: 14px;
    }
}

/* BANNER----------------ENDS-------------HERE--------------- */

/* ABOUT----------------START-------------HERE--------------- */

.about #img-1{
    border-radius: 500px;
    width: 400px;
}

.about #img-2{
    border-radius: 500px;
    width: 300px;
    position: absolute;
    right: 0;
    bottom: -100px;
}

@media only screen and (max-width: 992px){
    .about #img-2{
        width: 200px;
    }
    .about #img-1{
        width: 300px;
    }
    .about #img-3{
        width: 240px !important;
        top: 30px !important;
        right: 0 !important;
    }
    .about h1{
        font-size: 28px;
    }
    .about h4{
        font-size: 16px;
    }
    .about p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .about #img-2{
        display: none;
    }
    .about #img-1{
        width: 100%;
        height: auto;
    }
    .about #img-3{
        display: none;
    }
    .about h1{
        font-size: 25px;
    }
    .about .abt-content{
        text-align: center;
    }
    .about .bttn{
        margin: 0 auto;
    }
    .about .abt-info{
        text-align: left;
    } 
}

/* ABOUT----------------ENDS-------------HERE--------------- */

/* SERVICE----------------START-------------HERE--------------- */

.service{
    background: #FFF8F6;
    padding: 100px 0;
    border-radius: 50px;
}

.service h4{
    font-size: 22px;
}

.service .serv-content{
    background: #FFF;
    border-radius: 20px;
    border: 1px solid #ECECEC;
    padding: 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service .serv-content::before{
    content: "";
    background: #FF3600;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 0;
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.service .serv-content:hover::before{
    content: "";
    bottom: 0;
    border-radius: 0;
}

.service .serv-content:hover h4, .serv-content:hover p{
    color: #FFF !important;
}

.service .serv-content:hover small::before{
    background: #FFF;
}

.service small{
    position: relative;
    z-index: 2;
}

.service small::before{
    content: "";
    background: #ff37002c;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:-40px;
    left: -10px;
    border-radius: 100px;
    transition: all 0.5s ease-in-out;
}

.service img{
    position: relative;
}

.serv-btn{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF3600;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    font-size: 20px;
    transform: rotate(-40deg);
    transition: all 0.5s ease-in-out;
}

.service .serv-content:hover .serv-btn{
    background: #000;
    transform: rotate(0);
}

@media only screen and (max-width: 1200px){
    .service .serv-content{
        padding: 25px 15px;
    }
    .service h4{
        font-size: 17px;
    }
}
@media only screen and (max-width: 992px){
    .service h4{
        font-size: 20px;
    }
    .service .serv-content{
        margin: 12px 0;
    }
    .service .serv-title{
        width: 75% !important;
    }   
}
@media only screen and (max-width: 767px){
    .service h1{
        font-size: 25px;
    }
    .service .serv-title{
        width: 100% !important;
    }   
}

/* SERVICE----------------ENDS-------------HERE--------------- */

/* OUR----------------START-------------HERE--------------- */

.our .our-content{
    border: 1px solid #ECECEC;
    padding: 15px 15px;
    border-radius: 20px;
}

.our span{
    background: #ECECEC;
    color: #000;
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
}

.our h4{
    font-size: 22px;
}

.our .our-price{
    border-top: 1px solid #ECECEC;
}

.our .serv-btn:hover{
    background: #000;
    transform: rotate(0);
}

.our small{
    font-size: 14px;
    color: #7a7a7a;
}

.our-bttn{
    width: 140px;
    position: relative;
    margin: 60px auto 0;
    z-index: 2; 
}

.swiper-button-next:after, .swiper-button-prev:after{
    content: "";
}

.swiper-button-next, .swiper-button-prev{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF3600;
    color: #FFF;
    border-radius: 100px;
    font-size: 20px;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
    background: #000;
    transform: none !important;
}

@media only screen and (max-width: 992px){
    .our .our-title{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .our .our-title{
        width: 100% !important;
    }
}

/* OUR----------------ENDS-------------HERE--------------- */

/* CATE----------------START-------------HERE--------------- */

.cate .cate-content{
    border-radius: 20px;
    position: relative;
}

.cate .cate-content::before{
    content: "";
    background: #00000079;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.cate .cate-content:hover img{
    transform: scale(1.1);
}

.cate .img-info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    align-content: space-between;
    padding: 30px;
    z-index: 2;
}

.cate .serv-btn{
    margin: 0 0 0 auto;
}

.cate .cate-content:hover .serv-btn{
    background: #000;
    transform: none;
}

@media only screen and (max-width: 1200px){
    .cate img{
        height: 300px;
    }
    .cate h3{
        font-size: 18px;
    }
}
@media only screen and (max-width: 992px){
    .cate .cate-content{
        margin: 13px 0;
    }
    .cate img{
        height: 400px;
    }
    .cate h3{
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px){
    .cate img{
        height: 300px;
    }
}

/* CATE----------------ENDS-------------HERE--------------- */

/* FAQ----------------START-------------HERE--------------- */

.faq .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
}

.faq .accordion-item .accordion-button {
    box-shadow: none;
}

.faq .img{
    border-radius: 500px;
    width: 400px;
    margin: 0 auto;
    display: block;
}

.faq .img-1{
    position: absolute;
    top: 100px;
    right: 50px;
    width: 300px;
}

.faq .img-4{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.faq .img-2{
    border-radius: 10px;
    margin: 0 0 0 auto;
    position: absolute;
    bottom: 0;
    right: 0;
    animation: move 3s infinite linear;
}
@keyframes move {
    0%{
        transform: translateX(-50px);
    }50%{
        transform: translateX(0px);
    }100%{
        transform: translateX(-50px);
    }
}

@media only screen and (max-width: 1200px){
    .faq h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 992px){
    .faq h1{
        font-size: 23px;
    }
    .faq h5{
        font-size: 16px !important;
    }
    .faq p{
        font-size: 14px;
    }
    .faq .img{
        width: 100%;
    }
    .faq .img-1 {
        top: 0px;
        right: 0px;
        width: 200px;
    }
}
@media only screen and (max-width: 767px){
    .faq .faq-content{
        margin: 20px 0;
        text-align: center;
    }
    .faq .img{
        width: 100%;
    }
    .faq .accordion-body p{
        text-align: left;
    }
    .faq .img-1 {
        top: 0px;
        right: 0px;
        width: 200px;
        display: n;
    }
}

/* FAQ----------------ENDS-------------HERE--------------- */

/* VIDEO----------------START-------------HERE--------------- */

.video{
    background-image: url(../images/video.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.video::before{
    content: "";
    background: #0000006e;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video .play{
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF3600;
    color: #FFF;
    font-size: 25px;
    border-radius: 100px;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;
}

.video .play:hover{
    background: #FFF;
    color: #FF3600;
}

.video .img{
    width: 200px;
    aspect-ratio: 3/1;
    object-fit: contain;
}

.brand{
    border-top: 1px solid #ffffff86;
    padding-top: 70px;
}

.overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000088;
    backdrop-filter: blur(5px);
    z-index: 3;
    display: none;
    align-items: center;
}

.overlay .over-hide{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF3600;
    color: #fff;
    border-radius: 100px;
    font-size: 20px;
    text-decoration: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.overlay iframe{
    width: 75%;
    height: 400px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

.brand img{
    width: 100%;
    aspect-ratio: 3/1;
    object-fit: contain;
}

@media only screen and (max-width: 1200px){
    .video .video-content{
        width: 75% !important;
    }
    .video .img{
        width: 170px;
    }
}
@media only screen and (max-width: 992px){
    .video .video-content{
        width: 100% !important;
    }
    .overlay iframe{
        width: 90%;
    }
}
@media only screen and (max-width: 767px){
    .video .img{
        width: 140px;
    }
    .overlay iframe{
        width: 100%;
        height: 350px;
    }
}

/* VIDEO----------------ENDS-------------HERE--------------- */

/* WHY----------------START-------------HERE--------------- */

.why h4{
    font-size: 20px;
}

.why .img-1{
    border-radius: 500px;
}

.why .img-2{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

@media only screen and (max-width: 1200px){
    .why .img{
        padding: 0 !important;
    }
    .why h1 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
     .why .img{
        margin: 0 20px !important;
    }
    .why p{
        font-size: 14px;
    }
    .why h4{
        font-size: 17px;
    }
    .why .why-title{
        width: 100% !important;
    }
}
@media only screen and (max-width: 767px){
     .why .img{
        margin: 0 40px !important;
    }   
    .why h1{
        font-size: 25px;
    }
    .why .why-content{
        margin: 20px 0;
    }
}

/* WHY----------------ENDS-------------HERE--------------- */

/* TESTIMONIAL----------------START-------------HERE--------------- */

.testimonial .test-content{
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 30px;
}

.testimonial .rating i{
    color: #FF3600;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial p{
    color:#7a7a7a;
    border-bottom: 1px solid #ECECEC;
}

@media only screen and (max-width: 992px){
    .testimonial .test-title{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .testimonial .test-title{
        width: 100% !important;
    }
    .testimonial h1{
        font-size: 25px;
    }
}

/* TESTIMONIAL----------------ENDS-------------HERE--------------- */

/* Book----------------START-------------HERE--------------- */

.book{
    background: #000;
    background-image: url(../images/book-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px;
    padding: 100px 0;
}

@media only screen and (max-width: 992px){
    .book h1{
        font-size: 25px;
    }
    .book p{
        width: 100% !important;
    }
}
@media only screen and (max-width: 767px){
    .book .book-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .book .bttn{
        margin: 0 auto;
    }
}

/* Book----------------ENDS-------------HERE--------------- */

/* BLOG----------------START-------------HERE--------------- */

.blog .overflow-hidden{
    border-radius: 10px;
}

.blog h4{
    font-size: 22px;
}

.blog .b-btn:hover{
    color: #FF3600 !important;
}

@media only screen and (max-width: 1200px){
    .blog .blog-title{
        width: 75% !important;
    }
    .blog h4{
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .blog .blog-title{
        width: 100% !important;
    }
    .blog h1{
        font-size: 25px;
    }
    .blog .blog-txt{
        margin: 20px 0 !important;
    }
}

/* BLOG----------------ENDS-------------HERE--------------- */

/* FOOTER----------------START-------------HERE--------------- */

.footer{
    background: #000;
    background-image: url(../images/footer-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    padding: 70px 0 50px 0;
    margin-bottom: 50px;
}

.footer li a{
    color:#FFF;
    text-decoration: none;
}

.footer li a:hover{
    color:#FF3600;
}

.footer #email{
    background: #363634;
    border-radius: 100px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: none;
}

.footer .serv-btn:hover{
    background: #FFF;
    color: #FF3600;
    transform: rotate(0);
}

.footer .icn{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF3600;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    font-size: 20px;
    margin-left: 8px;
}

.footer .icn:hover{
    background: #FFF;
    color: #FF3600;
}

@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 992px){
    .footer .ft-icns{
        justify-content: center !important;
        margin-top: 15px;
    }
    .footer .footer-info{
        text-align: center;
    }
}

/* FOOTER----------------ENDS-------------HERE--------------- */

/* ABOUT-----------------PAGE----------------START-------------HERE--------------- */

/* BANNER_2----------------START-------------HERE--------------- */

.banner-2{
    background-image: url(../images/breadcrums.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items:center;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}

.banner-2::before{
    content: "";
    background: #00000062;
    width: 100%; 
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;   
}

.banner-2 h1{
    font-size: 65px;
}

@media only screen and (max-width: 767px){
    .banner-2 h1{
        font-size: 48px;
    }
}

/* BANNER_2----------------ENDS-------------HERE--------------- */

/* VISION----------------START-------------HERE--------------- */

.vision .img{
    border-radius: 50px;
}

.vision li.button {
    padding: 10px 20px;
    background: #FFF8F6;
    margin: 0 5px;
    border-radius: 100px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.vision li.button.active{
    background: #FF3600;
    color: #FFF;
}

.vision li.button:hover{
    background: #FF3600;
    color: #FFF;
}

/* VISION----------------ENDS-------------HERE--------------- */

/* TEAM----------------START-------------HERE--------------- */

.team .overflow-hidden{
    border-radius: 20px;
    position: relative;
}

.team .icns{
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    background: #8d8d8d6e;
    padding: 8px 25px;
    border-radius: 100px;
    transition: all 0.5s ease-in-out;
}

.team .icn{
    color: #fff;
    font-size: 25px;
    margin: 0 10px;
}

.team .team-content:hover .icns{
    bottom: 20px;
}

.team .team-content:hover .img{
    transform: scale(1.1);
}

.team .icn:hover{
    color: #FF3600;
}

@media only screen and (max-width: 992px){
    .team .team-content{
        margin: 20px 0;
    }
}

/* TEAM----------------ENDS-------------HERE--------------- */

/* CONTACT----------------START-------------HERE--------------- */

.contact {
    border: 2px solid #ECECEC;
    padding: 40px;
    border-radius: 50px;
    margin: 100px 0;
}

.contact .icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFF;
    border-radius: 100px;
    color: #FFF;
    margin-right: 10px;
    text-decoration: none;
}

.contact .icn:hover{
    color: #FF3600;
    background: #FFF;
}

.contact #contact-content-1{
    border-radius: 40px;
    padding: 50px 30px;
    position: relative;
    background: #FF3600;
}

.contact .img-1{
    position: absolute;
    bottom: 0;
    right: 0;
}

.contact #name{
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 25px;
}

.contact #name:focus{
    outline: none;
}

.contact .c-btn{
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF3600;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
}

.contact .c-btn:hover{
    background: #000;
}

.contact .img-2{
    position: absolute;
    bottom: -150px;
    right: 0;
    width: 300px;
}

@media only screen and (max-width: 992px){
    .contact #contact-content-1 {
        padding: 40px 20px;
    }
    .contact h1{
        font-size: 25px;
    }
    .contact{
        padding: 30px 15px;
    }
    .contact .img-2{
        bottom: -100px;
        width: 200px;
    }
}
@media only screen and (max-width: 767px){
    .contact #contact-content-1 {
        padding: 30px 15px;
    }
    .contact .c-btn{
        margin: 0 auto;
    }
    .contact h1{
        font-size: 23px;
    }
    .contact{
        padding: 30px 0px;
    }
    .contact ul{
        margin: 0 !important;
    }
    .contact .img-2{
        display: none;
    }
}

/* CONTACT----------------ENDS-------------HERE--------------- */

/* ABOUT-----------------PAGE----------------ENDS-------------HERE--------------- */