@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Karla", sans-serif;
    transition: all 0.3s ease-in-out;
}

h1,h2,h3,h4,h5{
    font-family: "Archivo", sans-serif;
}

/* NAVIGATION------------START------------HERE------------------ */

nav{
    border-bottom: 1px solid #dbdbdb;
    background: #FFF7F5;
    transition: all 0.5s ease-in-out;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: end;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 65%;
}

nav .nav-active-item{
    margin: 0 20px;
    position: relative;
}

nav .nav-active-item::before{
    content: "";
    background: #FF592D;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}

nav .nav-active-item:hover::before{
    transform: scale(1);
}

nav .nav-active-link{
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

nav .nav-active-item:hover .nav-active-link{
    color: #FF592D;
} 

nav .nav-active-item.active .nav-active-link{
    color: #FF592D;
} 

nav .nav-active-item.active::before{
    content: "";
    background: #FF592D;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

nav .nav-hide-btn,.nav-show-btn{
    display: none;
}

.bttn {
    position: relative;
    overflow: hidden;
    width: 180px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100px;
    background: #FF592D;
    color: #fff;
}
.bttn:hover::before {
    transform: scaleX(1);
}
.bttn-cnt {
    position: relative;
    z-index: 1;
}
.bttn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: #E4461C;
    transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 992px){
    nav .nav-bar {
        width: 300px;
        height: 100vh;
        display: block;
        background: #FFF;
        position: fixed;
        top: 0;
        left: -100%;
        box-shadow: 0 0 10px #ff5a2d80;
        overflow-y: auto;
        z-index: 2;
        transition: all 0.5s ease-in-out;
    }
    nav .nav-active-item{
        width: max-content;
        margin: 30px 20px;
    }
    nav .nav-hide {
        background: #FF592D;
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
        font-size: 22px;
        text-decoration: none;
        color: #FFFF;
        margin: 20px 20px 40px auto;
    }
    nav .bttn{
        display: none;
    }
    nav .nav-hide-btn,.nav-show-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    nav img{
        width: 150px !important;
    }
}
  
/* NAVIGATION------------ENDS------------HERE------------------ */

/* BANNER------------START------------HERE------------------ */

.banner{
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF7F5;
}

.banner h5{
    color: #FF592D;
}

.banner h1{
    font-size: 44px;
    line-height: 1.2;
}

.banner h1 span::before{
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FF592D;
    z-index: 0;
    border-radius: 100px;
}

.banner p{
    color: #7a7a7a;
}

.banner .img-2{
    width: 400px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.banner .img-3{
    width: 70px;
    background: #FFF;
    border-radius: 20px;
    position: absolute;
    z-index: 1;
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.671);
    animation: updown 4s linear infinite;
}
@keyframes updown {
    0%,100%{
        transform: scale(0.8);
    }50%{
        transform: scale(1);
    }
}

@media only screen and (max-width: 1200px){
    .banner h1{
        font-size: 40px;
    }
}
@media only screen and (max-width: 992px){
    .banner h1{
        font-size: 30px;
    }
    .banner p {
        font-size: 13px;
        padding: 0 !important;
    }
}
@media only screen and (max-width: 767px){
    .banner h1{
        font-size: 25px;
    }
    .banner .banner-count .d-flex{
        justify-content: center;
    }
    .banner .row.pt-2{
        justify-content: center;
    }
    .banner .img-2 {
        width: 100%;
    }
    .banner .img-1{
        width: 100%;
    }
    .banner #banner-content-2{
        margin-top: 60px;
        text-align: center;
    }
    .banner .bttn {
        margin: 0 auto;
    }
}

/* BANNER------------ENDS------------HERE------------------ */

/* WE------------START------------HERE------------------ */

.we h5{
    color:#FF592D;
}

.we p{
    color: #7a7a7a;
}

.we .img-1{
    width: 270px;
    border-radius: 20px;
}

.we .img-2{
    width: 330px;
    border-radius: 20px;
}

.we .img-3{
    width: 70px;
    background: #FFF;
    box-shadow: 0 0 10px rgb(141, 141, 141);
    border-radius: 10px;
    position: absolute;
    animation: updown 4s linear infinite;
}

@media only screen and (max-width: 992px){
    .we h1{
        font-size: 30px;
    }
    .we p {
        font-size: 13px;
    }
    .we h4{
        font-size: 15px !important;
    }
    .we .img-1,.img-2{
        margin: 10px 0 !important;
        width: 100% !important;
    }
    .we .img-3{
        display: none;
    }
}
@media only screen and (max-width: 767px){
    .we .we-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .we .we-info{
        margin-bottom: 30px;
    }
    .we .bttn{
        margin: 0 auto;
    }
    .we h1{
        font-size: 25px;
    }
}

/* WE------------ENDS------------HERE------------------ */

/* SPORT------------START------------HERE------------------ */

.sport h5{
    color: #FF592D;
}

.sport p{
    color: #7a7a7a;
}

.sport .img-1{
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.sport small{
    background: #FF592D;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 27px;
    color: #FFF;
}

@media only screen and (max-width: 992px){
    .sport h1{
        font-size: 25px;
    }
    .sport p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .sport .img-1 {
        height: 300px;
        width: 100%;
    }
    .sport .sport-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .sport .sport-info{
        text-align: left;
    }
}

/* SPORT------------ENDS------------HERE------------------ */

/* WHY------------START------------HERE------------------ */

.why{
    background: #FFF7F5;
    padding: 100px 0;
    margin-top: 100px;
}

.why h5{
    color: #FF592D;
}

.why p{
    color: #7a7a7a;
}

.why h4{
    font-size: 23px;
    color: #000;
}

.why .col-sm-6:nth-child(2) .why-info,.col-sm-6:nth-child(3) .why-info{
    background: #FF592D;
}

.why .col-sm-6:nth-child(2) i,.col-sm-6:nth-child(3) i{
    color: #FFF !important;
}

.why .col-sm-6:nth-child(2) h4,.col-sm-6:nth-child(3) h4{
    color: #FFF !important;
}

.why .why-info{
    background: #FFF;
    box-shadow: 0 0 10px #ff5a2d54;
    padding: 12px 20px;
    border-radius: 20px 20px 0 20px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1200px){
    .why h4 {
        font-size: 18px;
    }
    .why h1{
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .why .why-info {
        padding: 12px 10px;
    }
    .why h4 {
        font-size: 14px;
        padding-left: 6px !important;
    }
    .why h1{
        font-size: 25px;
    }
    .why p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .why .why-content{
        margin: 20px 0;
        text-align: center;
    }
    .why .why-info{
        text-align: left;
    }
    .why h4{
        font-size: 12px;
    }
    .why h1{
        font-size: 23px;
    }
}

/* WHY------------ENDS------------HERE------------------ */

/* SERVICES------------START------------HERE------------------ */

.service .serv-txt{
    background: #FF592D;
    padding: 20px 25px;
    border-radius: 20px 0 0 0;
    height: 220px;
    width: 100%;
}

.service .serv-info{
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service .serv-info::before{
    content: "";
    background: #00000069;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service .img-txt{
    position: absolute;
    bottom: -90px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.service .serv-info:hover .img-txt{
    bottom: 20px;
}

@media only screen and (max-width: 1200px){
    .service p.w-50 {
        width: 60% !important;
    }
}
@media only screen and (max-width: 992px){
    .service p.w-50 {
        width: 100% !important;
    }
    .service .img-txt {
        left: 10px;
        right: 5px;
    }
    .service p {
        font-size: 11px !important;
    }
    .service .serv-txt {
        padding: 30px 15px;
    }
    .service h2{
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px){
    .service .col-md-7{
        padding: 0 20px !important;
    }   
    .service .serv-info {
        margin: 8px 0 !important;
        border-radius: 0 !important;
    }
    .service .serv-txt {
        border-radius: 0 !important;
        margin: 10px 0;
    }
    .service p {
        font-size: 12px !important;
    }
}

/* SERVICES------------ENDS------------HERE------------------ */

/* PRICE------------START------------HERE------------------ */

.price{
    background: #FFF7F5;
    padding: 100px 0;
}

.price h5{
    color: #FF592D;
}

.price p{
    color: #7a7a7a;
}

.price .price-content{
    background: #FFFFFF;
    box-shadow: 0 0 10px #ff5a2d7c;
    border-radius: 10px;
    padding: 35px 30px 50px 30px;
    position: relative;
}

.price ul{
    border-top: 1px solid #dbdbdb;
}

.price li{
    color: #7a7a7a;
    font-weight: 500;
}

.price li span{
    color: #FF592D;
}

.price .p-btn{
    color: #FFF;
    background: #ff5a2d;
    width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #ff5a2d88;
}

.price .p-btn:hover{
    background: #E4461C !important;
    color: #FFF !important;
}

@media only screen and (max-width: 992px){
    .price .price-content {
        padding: 30px 10px 50px 10px;
    }
    .price p {
        font-size: 14px;
    }
    .price .price-title{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .price .price-content {
        top: 0 !important;
        margin: 20px 0;
    }
    .price .price-title{
        width: 100% !important;
    }
}

/* PRICE------------ENDS------------HERE------------------ */

/* TESTIMONIAL------------START------------HERE------------------ */

.testimonial{
    background-image: url(../images/testimonial.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.testimonial::before{
    content: "";
    background: #000000c2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial .test-content{
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
}

.testimonial p{
    color: #7a7a7a;
}

.testimonial h5{
    color: #FF592D;
}

.testimonial small{
    position: absolute;
    bottom: 20px;
    right: 30px;
}

@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------------ENDS------------HERE------------------ */

/* BLOG------------START------------HERE------------------ */

.blog {
    background: #FFF7F5;
    padding: 100px 0;
}

.blog h5{
    color:#FF592D;
}

.blog p{
    color: #7a7a7a;
}

.blog .blog-content:hover img{
    transform: scale(1.1);
}

.blog .blog-content:hover h3{
    color: #FF592D !important;
}

.blog .b-btn:hover{
    color: #FF592D !important;
}

@media only screen and (max-width: 1200px){
    .blog h3{
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 992px){
    .blog .blog-title{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .blog .blog-title{
        width: 100% !important;
    }
}

/* BLOG------------ENDS------------HERE------------------ */

/* FOOTER------------START------------HERE------------------ */

.footer {
    background:#FFF7F5 ;
    padding: 60px 0;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}

.footer p{
    color: #7a7a7a;
}

.footer li a{
    color: #7a7a7a;
    text-decoration: none;
    font-weight: 500;
}

.footer li a:hover{
    color: #FF592D;
}

.pre-footer{
    background: #FFF7F5;
}

@media only screen and (max-width: 1200px){
    .footer h4 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}

/* FOOTER------------ENDS------------HERE------------------ */

/* BANNER_2-----------START------------HERE------------------ */

.banner-2{
    background: #FFF7F5;
    width: 100%;
    height: 300px;
    border-bottom: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
}

.banner-2 h1{
    font-size: 50px;
}

/* BANNER_2-----------ENDS------------HERE------------------ */

/* JOIN-----------START------------HERE------------------ */

.join{
    background-image: url(../images/join.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    padding: 100px 0;
    position: relative;
    margin-top: 100px;
}

.join::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #000000a2;
    position: absolute;
    top: 0;
    left: 0;
}

.join h5{
    color: #FF592D;
}

.join p{
    color: #e7e7e7;
}

@media only screen and (max-width: 1200px){
    .join .join-content{
        width: 60% !important;
    }
}
@media only screen and (max-width: 992px){
    .join .join-content{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .join .join-content{
        width: 100% !important;
    }
}

/* JOIN-----------ENDS------------HERE------------------ */

/* TEAM-----------START------------HERE------------------ */

.team h5{
    color: #FF592D;
}

.team p{
    color: #7a7a7a;
}

.team #team-content-2{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.team #team-content-2::before{
    content: "";
    background: #ff5a2d71;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.4s ease-in-out;
}

.team #team-content-2:hover::before{
    bottom: 0;
}

.team .img-txt{
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease-in-out;
}

.team #team-content-2:hover .img-txt{
    bottom: 20px;
}

.team .icn{
    width: 35px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #FF592D;
    text-decoration: none;
    border-radius: 100px;
}

@media only screen and (max-width: 1200px){
    .team .team-content{
        text-align: center;
        margin: 20px 0 !important;
        padding: 0 !important;
    }
    .team .bttn{
        margin: 0 auto;
    }
}

/* TEAM-----------ENDS------------HERE------------------ */

/* SERVICES_2----------START------------HERE------------------ */

.service-2 h1{
    font-size: 35px;
    width: 80%;
}

.service-2 img{
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

.service-2 .serv-content{
    margin: 65px 0;
}

.service-2 .img-txt-2{
    background: #FF592D;
    border-radius: 10px;
    width: 270px;
    text-align: center;
    padding: 20px 15px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease-in-out;
    margin-bottom: -50px;
}

@media only screen and (max-width: 767px){
    .service-2 .serv-txt-2 {
        margin: 0 !important;
        padding: 0 !important;
    }
    .service-2 .col-lg-4:nth-child(1) .serv-content{
        margin-bottom: 0 !important;
        text-align: center;
    }
    .service-2 h1{
        width: 100%;
    }
}

/* SERVICES_2----------ENDS------------HERE------------------ */

/* CONTACT----------START------------HERE------------------ */

.address small{
    background: #FF592D;
    width: 70px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 30px;
    color: #FFF;
}

.address p{
    color: #7a7a7a;
}

.contact #name{
    border: 1px solid #dddddd;
    width: 100%;
    height: 45px;
    padding: 0 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 767px){
    .address .add-content{
        margin: 20px 0;
    }
    .contact .contact-content{
        margin: 20px 0;
        text-align: center;
    }
    .contact iframe{
        height: 250px !important;
    }
    .contact .bttn{
        margin: 0 auto;
    }
}

/* CONTACT----------ENDS------------HERE------------------ */