@import url('http://fonts.googleapis.com/css?family=Poppins:wght@300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Anton', sans-serif;
}

:root {
    --bg-color: #FF5733;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: rgb(255, 255, 255);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}


body {
    background: black;
    color: var(--text-color);
}

.wa-btn {
    background: none;
    outline: 0;
    border: 0;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    margin-bottom: 20px;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.wa-btn img {
    width: 70px;
}

@media only screen and (max-width:599px) {
    .wa-btn {
        bottom: 15px;
        right: 15px;
    }

    .wa-btn img {
        width: 50px;
    }
}

.spinner-wrapper {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.spinner-border {
    height: 60px;
    width: 60px;
    color: #FF5733;
}

.navbar-logo {
    width: 250px;
    height: 70px;
}

.nav-item a {
    font-size: 15px;
    color: var(--text-color);
}

.nav-link:hover {
    color: #FF5733;
}

.nav-button {
    width: 100px;
    height: 35px;
    background: none;
    border: 2px solid white;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 15px;
}

.nav-button:hover {
    background-color: #FF5733;
    color: #ffffff;
}

.navbar-toggler {
    border: 2px solid white !important;
}

@media only screen and (max-width:575.98px) {
    .navbar-logo {
        width: 186px;
        height: 60px;
    }
}

.banner {

    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner::before {
    content: "";
    background: url("../images/Home.webp");
    /* height: 600px; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.banner h1 {
    position: relative;
    font-size: 8vw;
    text-align: center;
    font-style: italic;
    font-family: 'Anton', sans-serif;
    font-weight: bold;
    line-height: 1;
}

.banner p {
    position: relative;
    font-size: 1.6vw;
    text-align: center;
    color: rgb(255 255 255 / 95%);
    font-family: 'Anton', sans-serif;
}

.banner button {
    position: relative;
    width: 120px;
    height: 45px;
    background-color: var(--bg-color);
    border-radius: 5px;
    color: white;
    font-size: 1.5vw;
    font-family: 'Anton', sans-serif;
}

@media only screen and (max-width:575.98px) {
    .banner {
        height: 300px;
    }

    .banner h1 {
        font-size: 9vw;
    }

    .banner p {
        font-size: 2.5vw;
    }

    .banner button {
        width: 14vw;
        height: 30px;
        font-size: 2vw;
    }
}

@media only screen and (max-width: 767.98px) and (min-width:576px) {
    .banner {
        height: 400px;
    }

    .banner h1 {
        font-size: 9vw;
    }

    .banner p {
        font-size: 2.5vw;
    }

    .banner button {
        width: 14vw;
        height: 40px;
        font-size: 2vw;
    }
}

@media only screen and (max-width: 991.98px) and (min-width:768px) {
    .banner {
        height: 400px;
    }

    .banner h1 {
        font-size: 9vw;
    }

    .banner p {
        font-size: 2.5vw;
    }

    .banner button {
        width: 14vw;
        height: 45px;
        font-size: 2vw;
    }
}

#about {
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -100px;
}

#about-img {
    width: 60%;
}

#about-img img {
    width: 900px;
    height: 600px;
}

#about-content {
    width: 450px;
    /* height: 483px; */
    background-color: #FF5733;
    color: white;
    padding: 40px;
    margin-left: -100px;
}

#about-content h3 {

    font-weight: 700;
    font-size: 2vw;
}

#about-content p {
    font-size: 1vw;
    font-weight: 400;
}

#about-content button {
    margin-top: 20px;
    padding: 10px 14px;
    border: 1px solid #FF5733;
    background-color: #fff;
    border-radius: 6px;
    outline: 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

#about-content button a {
    color: #FF5733;
    text-decoration: none;
    font-weight: 600;
}

@media only screen and (max-width:599px) {
    #about {
        flex-direction: column;
        /* align-items: center;
        justify-content: center; */
        margin-top: 20px;
        height: auto;
    }

    #about-img {
        width: 90%;
    }

    #about-img img {
        width: 100%;
        height: 300px;
    }

    #about-content {
        width: 85%;
        height: auto;
        margin-top: -150px;
        margin-left: 0;
    }

    #about-content h3 {

        font-weight: 700;
        font-size: 4.8vw;
    }

    #about-content p {
        font-size: 2.5vw;
        font-weight: 400;
    }

    #about-content button {
        margin-top: 1px;
        padding: 10px 12px;
        font-size: 2vw;
    }

}

@media only screen and (max-width:767px) and (min-width:600px) {
    #about {
        flex-direction: column;
        /* margin-top: 400px; */
    }

    #about-img {
        width: 90%;
    }

    #about-img img {
        width: 100%;
        height: 400px;
    }

    #about-content {
        width: 85%;
        height: auto;
        margin-top: -180px;
        margin-left: 0;
    }

    #about-content h3 {

        font-weight: 700;
        font-size: 22px;
    }

    #about-content p {
        font-size: 12px;
        font-weight: 400;
    }

    #about-content button {
        margin-top: 1px;
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media only screen and (max-width:1000px) and (min-width:768px) {
    /* #about {
        margin-top: 80px;
    } */

    #about-img img {
        width: 550px;
        height: 600px;
    }

    #about-content {
        width: 350px;
        height: 500px;
    }

    #about-content h3 {

        font-weight: 700;
        font-size: 22px;
    }

    #about-content p {
        font-size: 12px;
        font-weight: 400;
    }

    #about-content button {
        margin-top: 1px;
        padding: 10px 12px;
        font-size: 12px;
    }

}

@media only screen and (max-width:1240px) and (min-width:1001px) {
    #about {
        margin-top: 100px;
    }

    #about-img img {
        width: 700px;
        height: 600px;
    }

    #about-content {
        width: 350px;
        height: 500px;
    }

    #about-content h3 {

        font-weight: 700;
        font-size: 22px;
    }

    #about-content p {
        font-size: 12px;
        font-weight: 400;
    }

    #about-content button {
        margin-top: 1px;
        padding: 10px 12px;
        font-size: 12px;
    }
}

.footer {
    height: auto;
}

.footer-img {
    width: 25vw;
    margin-left: -10px !important;
}

.footer h1 {
    color: #FF5733 !important;
}

.footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.2vw;
    line-height: 2.5;
}

.footer a:hover {
    border-bottom: 2px solid #FF5733;
}

.social {
    gap: 20px;
    font-size: 2vw !important;
}

.footer-rights {

    background-color: #FF5733;

    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-rights p {
    font-size: 1.5vw;
}

.footer i:hover {
    color: #FF5733;
}

@media only screen and (max-width:575.98px) {

    .footer-img {
        width: 50vw;
    }

    .footer-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .footer-col {
        width: 100% !important;
        padding-left: 10px;
    }

    .footer a {
        font-size: 3vw;
    }

    .footer-rights p {
        font-size: 3vw;
    }
}

@media only screen and (max-width: 767.98px) and (min-width:576px) {
    .footer-img {
        width: 50vw;
    }

    .footer-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .footer-col {
        width: 100% !important;
        padding-left: 10px;
    }

    .footer a {
        font-size: 2.2vw;
    }

    .footer-rights p {
        font-size: 2.5vw;
    }
}

@media only screen and (max-width: 991.99px) and (min-width:768px) {
    .footer a {
        font-size: 1.32vw;
    }

    .footer h1 {
        font-size: 2vw;
    }

    .footer-rights p {
        font-size: 2.2vw;
    }
}

@media only screen and (max-width: 1317px) and (min-width:992px) {
    .footer a {
        font-size: 1.32vw;
    }

    .footer h1 {
        font-size: 2vw;
    }
}

.poster-frame {
    padding: 20px;
}

.poster-frame h1 {
    text-align: center !important;
    font-size: 5vw;
    font-weight: bold;
    font-style: italic;

}

.poster-frame p {
    text-align: center;
    font-size: 1.7vw;
    color: rgb(255 255 255 / 70%);
    margin-bottom: 50px;
}

.row1 {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.row2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    border: none;
    width: 40rem;
    height: auto;
    background: #ffffff;
    justify-content: center;
    align-items: center;
}

.card-img-top {
    height: 45rem;
}

.card-body button {

    padding: 12px 50px;
    border: 1px solid #FF5733;
    border-radius: 6px;
    outline: 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    background-color: #FF5733;
}

.card-body button:hover {
    box-shadow: none;
}

@media only screen and (max-width:575.98px) {


    .poster-frame h1 {
        font-size: 7vw;
    }

    .poster-frame p {
        font-size: 3vw;
        margin-bottom: 30px;
    }



    .card-body button {
        font-size: 10px;
    }
}

@media only screen and (max-width: 767.98px) and (min-width:576px) {
    .card-body button {
        font-size: 12px;
    }
}

/* Plan Detail  */
.plan-details {
    padding: 20px;
    margin-bottom: 50px;
    height: auto;
}

.plan-details h1 {
    font-size: 3vw;
    margin-bottom: 50px;
}

.plan-details p {
    font-size: 1.2vw;
    margin-bottom: 30px;
}

.plan-details ul {
    margin-top: 50px;
    font-size: 1.2vw;
    color: #FF5733;
    margin-left: -20px;
}

.plan-details li {
    font-size: 1.2vw;
    list-style: none;
}

.plan-details button {
    margin-top: 50px;
    padding: 12px 40px;
    border: 1px solid #FF5733;
    border-radius: 6px;
    outline: 0;
    box-shadow: 5px 5px 5px rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    background-color: #FF5733;
    font-weight: bold;
    text-transform: Uppercase;
}

.plan-details button:hover {
    box-shadow: none;
}

@media only screen and (max-width:575.98px) {
    .plan-details h1 {
        font-size: 5vw;
    }

    .plan-details p {
        font-size: 3.2vw;
    }

    .plan-details ul {
        font-size: 3.2vw;
    }

    .plan-details li {
        font-size: 3.2vw;
    }

    .plan-details button {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 767.98px) and (min-width:576px) {
    .plan-details h1 {
        font-size: 5vw;
    }

    .plan-details p {
        font-size: 2.5vw;
    }

    .plan-details ul {
        font-size: 2.5vw;
    }

    .plan-details li {
        font-size: 2.5vw;
    }

    .plan-details button {
        padding: 10px 30px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 991.99px) and (min-width:768px) {
    .plan-details h1 {
        font-size: 4vw;
    }

    .plan-details p {
        font-size: 2vw;
    }

    .plan-details ul {
        font-size: 2vw;
    }

    .plan-details li {
        font-size: 2vw;
    }

    .plan-details button {
        padding: 12px 35px;
        font-size: 14px;

    }
}

@media only screen and (max-width: 1317px) and (min-width:992px) {
    .plan-details h1 {
        font-size: 3vw;
    }

    .plan-details p {
        font-size: 1.5vw;
    }

    .plan-details ul {
        font-size: 1.5vw;
    }

    .plan-details li {
        font-size: 1.5vw;
    }

    .plan-details button {
        padding: 12px 35px;
        font-size: 14px;
    }
}

.contact_us {
    display: flex;
    flex-direction: column;
    background: url("../images/gym4.png ");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-items: center;
    height: auto;
    padding: 50px;
    margin-bottom: 50px;
}

.contact_us h1 {
    font-size: 5vw;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

.contact_us p {
    font-size: 1.7vw;
    color: rgb(255 255 255 / 75%);
    text-align: center;
    margin-bottom: 20px;
}

.form-input input {
    width: 300px;
    height: 40px;
    border-radius: 5px;
    font-size: 12px;
}
#f-select{
    width: 300px;
    height: 40px;
    border-radius: 5px;
    font-size: 12px;
}
.form-label {
    font-size: 18px;
}

.contact_us textarea {
    border-radius: 5px;
    font-size: 15px;
   
}

.textarea {
    width: 620px;
}

.form-button button {
    margin-top: 20px;
    padding: 12px 40px;
    border: 1px solid #FF5733;
    border-radius: 6px;
    outline: 0;
    box-shadow: 5px 5px 5px rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    background-color: #FF5733;
    font-weight: bold;
}

.form-button button:hover {
    box-shadow: none;
}

@media only screen and (max-width:575.98px) {
    .contact_us h1 {
        font-size: 6vw;
    }

    .contact_us p {
        font-size: 3.2vw;
    }

    .form-in {
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    .form-input label {
        font-size: 12px;
    }

    .form-input input {
        font-size: 12px;
    }

    .textarea {
        margin-top: 30px;
        width: 100%;
    }
    #f-select{
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) and (min-width:576px) {
    .contact_us h1 {
        font-size: 6vw;
    }

    .contact_us p {
        font-size: 3.2vw;
    }

    .form-in {
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    .form-input label {
        font-size: 12px;
    }

    .form-input input {
        font-size: 12px;
    }

    .textarea {
        margin-top: 30px;
        width: 100%;
    }
    #f-select{
        font-size: 12px;
    }
}

/* Payment Page */
.payment-qr {
    display: flex;
    margin: 20px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.payment-qr h1 {
    font-size: 3vw;
}

.payment-qr p {
    font-size: 1.5vw;
    margin-bottom: 30px;
    text-align:center !important;
}

.payment-qr img {
    width: 200px;
    margin-bottom: 20px;
}

.note {
    font-size: 1vw;
    margin-bottom: 70px;
    text-align: center;
}

@media only screen and (max-width:575.98px) {
    .payment-qr h1 {
        font-size: 7vw;
    }

    .payment-qr p {
        font-size: 3.5vw;
    }

    .note {
        font-size: 2.8vw;
    }
}

@media only screen and (max-width: 768px) and (min-width:576px) {
    .payment-qr h1 {
        font-size: 5.5vw;
    }

    .payment-qr p {
        font-size: 2.2vw;
    }

    .note {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 991.99px) and (min-width:768px) {
    .payment-qr h1 {
        font-size: 4.5vw;
    }

    .payment-qr p {
        font-size: 2vw;
    }

    .note {
        font-size: 1.8vw;
    }
}

@media only screen and (max-width: 1317px) and (min-width:992px) {
    .payment-qr h1 {
        font-size: 3.5vw;
    }

    .payment-qr p {
        font-size: 1.6vw;
    }

    .note {
        font-size: 1.2vw;
    }
}



.vh1 {
    text-align: center;
    font-size: 5vw;
    margin-bottom: 50px;
}

/* .videos h1:hover {
    color: #FF5733;
} */

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.video-card {
    width: 50%;
    height: auto;
    border-radius: 5px;
    background-color: #FF5733;
    color: white;
    text-transform: uppercase;
    font-weight: bold;

}

.video {
    width: 100%;
}

@media only screen and (max-width:575.98px) {

    .vh1 {
        font-size: 7vw;
        margin-top: -50px;
    }

    .video-card {
        width: 80%;
    }
}
@media only screen and (max-width: 768px) and (min-width:576px) {
    .vh1 {
        font-size: 6vw;
        margin-top: -50px;
    }

    .video-card {
        width: 80%;
    }
}
@media only screen and (max-width: 991.99px) and (min-width:768px){
    .vh1 {
        font-size: 4vw;
        margin-top: -50px;
    }

    .video-card {
        width: 60%;
    }
}

.plan-card{
    text-align: center;
    padding: 40px 30px 52px;
    border: 1px solid #464646;
    -webkit-transform: skewY(-4deg);
    -ms-transform: skewY(-4deg);
    transform: skewY(-4deg);
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    margin-bottom: 30px;
    position: relative;
    height: 550px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.plan-card:hover {
    background: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
}
.plan-card h3{
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
}
.plan-card:hover h3{
    color: #111111;
}
.plan-price{
    margin-bottom: 30px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
    display: flex;
    gap: 20px;
    justify-content: center;
}
.plan-card .old-price{
    color: #c4c4c4;
    text-decoration: line-through;
}
.plan-card:hover .old-price{
    color:#111111;
}
.plan-card .new-price{
    color: #FF5733;
}
.plan-price h2{
    font-size: 40px;
  
    font-weight: 600;
    
}
.plan-card ul{
    margin-bottom: 40px;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
}
.plan-card ul li {
    font-size: 14px;
    color: #c4c4c4;
    line-height: 32px;
    list-style: none;
}
.plan-card:hover li{
    color:#111111;
}
.plan-button{
    display: block;
    background: #FF5733;
    -webkit-transform: skewY(4deg);
    -ms-transform: skewY(4deg);
    transform: skewY(4deg);
    text-decoration: none;
}
.primary-btn {
   
    font-size: 14px;
    padding: 17px 30px 16px;
    color: #ffffff;
    
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
}
.plan-card a{
    color: #FFFFFF;
}
.card-row{
    display: grid;
    grid-template-columns: auto auto auto;
    place-items: center;
}
@media only screen and (max-width:575.98px){
    .plan-card h3{
        font-size: 5vw;
    }
    .plan-price h2{
        font-size: 6vw;
    }
    .plan-card ul li {
        font-size: 3vw;
    }
    .primary-btn {
   
        font-size: 3vw;
    }
    .plan-card{
        height: auto;
        padding: 50px 10px;
    }
}
@media only screen and (max-width: 768px) and (min-width:576px) {
    .plan-card h3{
        font-size: 4vw;
    }
    .plan-price h2{
        font-size: 5vw;
    }
    .plan-card ul li {
        font-size: 2vw;
    }
    .primary-btn {
   
        font-size: 2vw;
    }
    .plan-card{
        height: auto;
        padding: 50px 10px;
    }
}
/* Blogs */
.blogs .blog-heading{
    text-align: center;
    font-size: 5vw;
    margin-bottom: 20px;
    margin-top: 30px;
    font-style: italic;
}
.blog-container {
   
   
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }
  .blog-card {
   
    max-width: 800px;
    box-shadow: 2px 2px 5px #9E9E9E, -1px -1px 5px #9E9E9E;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-card .img-container {
    flex: 2;
    width: 800px;
    height: 250px;
    overflow: hidden;
  }
  .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card-content {
    flex:2;
    padding: 10px 30px;
  }
 
  .card-content h1 {
    margin-bottom: 20px;
    color: #FF5733;
    font-size: 2vw;
  }
  .card-content a{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .auth-date{
    margin-top: 25px;
    border-top: 1px solid #cdcdcd;
  }
  .card-content .author,.date {
    
    font-weight: 700;
    margin-top: 5px;
    padding: 25px 0 10px 0;
    color: #555;
  }
  
  @media only screen and (max-width:575.98px) {
    .blog-card{
        flex-direction: column;
        width:90%;
    }
    .blog-card .img-container{
        width: 100%;
        height: 200px;
    }
    .img-container img{
        width: 100%;
    }
    .card-content h1{
        font-size: 3.5vw;
    }
    .card-content a{
        font-size: 2.8vw;
    }
  }
  @media only screen and (max-width: 768px) and (min-width:576px){
    .blog-card{
        flex-direction: column;
        width:90%;
    }
    .blog-card .img-container{
        width: 100%;
        
    }
    .img-container img{
        width: 100%;
    }
    .card-content h1{
        font-size: 3.5vw;
    }
    .card-content a{
        font-size: 2vw;
    }
  }
  @media only screen and (max-width: 991.99px) and (min-width:768px){
    .card-content h1{
        font-size:2.5vw;
    }
    .card-content a{
        font-size: 2vw;
    }
  }
/* Blog description */
  .blog-description h1{

    color:#FF5733;
    font-size: 2.5vw;
    margin-top: 20px;
    padding: 20px;
  }
  .blog-description p{
    font-size: 1.2vw;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
  }
  @media only screen and (max-width:575.98px){
    .blog-description img{
        height:200px;
    }
    .blog-description h1{
        font-size: 5vw;
        
    }
    .blog-description p{
        font-size: 2.5vw;
        margin-top: -15px;
    }
    .blog-description .auth-date{
        margin-top: -20px;
        padding: 20px;
    }
  }
  @media only screen and (max-width: 768px) and (min-width:576px){
    .blog-description img{
        height:280px;
    }
    .blog-description h1{
        font-size: 4vw;
        
    }
    .blog-description p{
        font-size: 2vw;
        margin-top: -15px;
    }
    .blog-description .auth-date{
        margin-top: -20px;
        padding: 20px;
    }
  }
  @media only screen and (max-width: 991.99px) and (min-width:768px){
    .blog-description img{
        height:350px;
    }
    .blog-description h1{
        font-size: 3.5vw;
        
    }
    .blog-description p{
        font-size: 1.5vw;
        margin-top: -15px;
    }
    .blog-description .auth-date{
        margin-top: -20px;
        padding: 20px;
    }
  }
/* About Page */
.about-section {
    padding: 50px 15px;
}
.about-heading {
    font-size: 2vw;
    font-weight: bold;
    margin-bottom: 30px;
    color: #FF5733;
}
.about-text {
    font-size: 1.3vw;
    line-height: 1.6;
}
.about-section h2{
    color: #FF5733 !important;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 2vw;
}
@media only screen and (max-width:575.98px){
    .about-heading{
        font-size: 3vw;
    }
    .about-text{
        font-size: 2.2vw;
    }
    .about-section h2{
        font-size: 2.5vw;
    }
}
@media only screen and (max-width: 768px) and (min-width:576px){
    .about-heading{
        font-size: 3vw;
    }
    .about-text{
        font-size: 2.2vw;
    }
    .about-section h2{
        font-size: 2.5vw;
    }

}
@media only screen and (max-width: 991.99px) and (min-width:768px){
    .about-heading{
        font-size:2.8vw;
    }
    .about-text{
        font-size: 1.8vw;
    }
    .about-section h2{
        font-size: 2.4vw;
    }

}
@media only screen and (max-width: 1317px) and (min-width:992px){
    .about-heading{
        font-size:2.2vw;
    }
    .about-text{
        font-size: 1.5vw;
    }
    .about-section h2{
        font-size: 2vw;
    }
}
  