@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

:root{
    --default-fontfamily: "Poppins", sans-serif;
    --cairo-fontfamily: "Cairo", sans-serif;
    --nav-bg: rgba(51, 83, 102, 1);
    --main-menu-link : #fff;
    --main-menu-link-fontsize:15px;
    --mobile-main-menu-items-border:#fff;

    --btn-default-color:rgba(0, 0, 0, 1);
    --btn-default-bg:rgba(174, 220, 248, 1);
    --btn-default-hover-color:rgba(255, 255, 255, 1);
    --btn-default-font-weight:500;
    --btn-default-fontsize:15px;

    --btn-primary-color:rgba(255, 255, 255, 1);
    --btn-primary-bg:rgba(51, 83, 102, 1);
    --btn-primary-hover-color:rgba(255, 255, 255, 1);
    --btn-primary-font-weight:500;
    --btn-primary-fontsize:15px;

    --btn-secondary-color:rgba(0, 0, 0, 1);
    --btn-secondary-bg:rgba(174, 220, 248, 1);
    --btn-secondary-hover-color:rgba(0, 0, 0, 1);
    --btn-secondary-font-weight:700;
    --btn-secondary-fontsize:16px;

    --hero-heading-fontfamily:"Exo", sans-serif;

    --color-primary:rgba(51, 83, 102, 1);
    
    --label-fontfamily:"Exo", sans-serif;
    --select-bg:rgba(244, 244, 244, 1);
    --input-border: rgba(221, 221, 221, 1);

    --exo-fontfamily:"Exo", sans-serif;
}

body{
    font-family: var(--exo-fontfamily);
}
.exo-fontfamily{
    font-family: var(--exo-fontfamily) !important;
}
.poppins-fontfamily{
    font-family: var(--default-fontfamily) !important;
}
.btn-default{
    background-color: var(--btn-default-bg);
    color: var(--btn-default-color);
    border-radius: 20px;
    padding: 4px 16px;
    font-weight: var(--btn-default-font-weight);
    font-size: var(--btn-default-fontsize);
}
.btn-default:hover{
    color: var(--btn-default-hover-color);
}

.btn-primary{
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-color);
    border-color: var(--btn-primary-bg);
    border-radius: 50px;
    padding: 4px 16px;
    font-weight: var(--btn-primary-font-weight);
    font-size: var(--btn-primary-fontsize);
}
.btn-primary:hover{
    color: var(--btn-primary-hover-color);
    background-color: var(--btn-primary-bg);
}

.btn-secondary{
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-color);
    border-color: var(--btn-secondary-bg);
    border-radius: 50px;
    padding: 4px 16px;
    font-weight: var(--btn-secondary-font-weight);
    font-size: var(--btn-secondary-fontsize);
}
.btn-secondary:hover{
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-hover-color);
}

.font-300{
    font-weight: 300 !important;
}
.font-500{
    font-weight: 500 !important;
}
.font-600{
    font-weight: 600 !important;
}
.font-700{
    font-weight: 700 !important;
}

.color-primary{
    color: var(--color-primary);
}
.navbar{
    background-color: var(--nav-bg);
}
.main-menu-link{
    color: var(--main-menu-link) !important;
    font-size: var(--main-menu-link-fontsize);
}
@media (max-width: 992px) {
    .main-menu{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .main-menu-link{
        position: relative;
    }
    .main-menu-link::before{
        content: '';
        position: absolute;
        bottom: 0;
        height: 2px;
        width: 100%;
        background-color: var(--mobile-main-menu-items-border);
    }
}
.navbar-brand img{
    max-width: 156px;
}

.hero-section{ 
    background: url(img/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-heading{
    font-size: 56px;
    color: #333333;
    font-weight: 600;
    font-family: var(--hero-heading-fontfamily);
}
.hero-description{
    font-size: 20px;
    color: #595959;
    font-family: var(--default-fontfamily);
}
.hero-img{
    object-fit: scale-down;
    max-width: 362px;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-heading{
        font-size: 42px;
    }
    .hero-description{
        font-size: 16px;
    }
    .hero-img-box{
        display: none !important;
        background: url(img/hero-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (max-width: 768px) {
    .hero-heading{
        font-size: 38px;
    }
    .hero-description{
        font-size: 16px;
    }
    .hero-img-box{
        display: flex !important;
        background: url(img/hero-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 76%;
    }
    .hero-section .row{
        display: flex;
        flex-direction:column-reverse;
        text-align: center;
    }
}

.form-label{
    font-family: var(--label-fontfamily);
    font-weight: 700;
}
.select-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 10 10'%3E%3Cpath d='M5 7L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    color: var(--color-dark);
    padding: 11px;
    border-color: var(--select-bg);
    background-color: var(--select-bg);
}


.MOP-card{
    border: 0;
    border-radius: 20px;
    max-width: 500px;
}
.MOP-card .card-header{
    border-radius: 20px;
    border-bottom:0;
    background: 
        linear-gradient(to right, rgba(174, 224, 255, 1), rgba(255, 255, 255, 1)) 0 0 no-repeat, 
        linear-gradient(to bottom, #fff, #fff) 0 100% no-repeat;
    background-size: 100% 50%;
}
.MOP-card-avatar{
    width: 100%;
    border: 3px solid #fff;
    border-radius: 22px;
}
.MOP-card-heading h2{
    font-family: "Exo", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: end;
    margin: 0;
}  
.MOP-card-heading p{
    font-size: 18px;
    font-weight: 500;
    text-align: end;
}
.MOP-card-title{
    font-family: "Exo", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.MOP-card-detail{
    display: flex;
    justify-content:space-between;
}
.MOP-card-detail h3{
    font-size: 22px;
    font-family: "Exo", sans-serif;
    font-weight: 700;
}
.MOP-card-detail p{
    font-size: 22px;
    text-align: end;
}

@media (max-width: 992px) {
    .MOP-card-detail{
        flex-direction: column;
    }
}




.form-card{
    border-radius: 26px;
    border-color: rgba(221, 221, 221, 1);
}

.input-field{
    font-size: 16px;
    font-weight: 400;
    padding-left: 20px;
    color: var(--color-dark);
    padding: 11px;
    border-color: var(--input-border);
}


/* ========  Landing page - START  ============ */

.blue-bg{
    background-color: rgba(36, 57, 74, 1);
    color: #fff;
}
.lightblue-bg{
    background-color: rgba(247, 251, 254, 1);
    color: #000;
}
.brand-logo{
    display: block;
    max-width: 320px;
    padding: 20px;
    width: 100%;
    margin: auto;
}
.PP-heading{
    font-weight: 400;
    font-size: 42px;
}

.hero-text{
    font-size: 24px;
    font-family: var(--default-fontfamily);
}
@media (max-width: 768px) {
    .PP-heading{
        font-size: 32px;
    }
    .hero-text{
        font-size: 16px;
    }
}
.PP-subheading{
    font-weight: 400;
    font-size: 24px;
}

.PP-subheading::before{
    content: '';
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    margin-top: 12px;
    margin-left: -45px;
}
.PP-subheading::after{
    content: '';
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    margin-top: 12px;
    margin-left: 5px;
}


.PP-subheading-yellow{
    font-weight: 800 !important;
    font-size: 32px;
    color: rgba(197, 161, 17, 1);
}

.PP-subheading-yellow::before{
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(197, 161, 17, 1);
    position: absolute;
    margin-top: 18px;
    margin-left: -45px;
}
.PP-subheading-yellow::after{
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(197, 161, 17, 1);
    position: absolute;
    margin-top: 18px;
    margin-left: 5px;
}
@media (max-width: 768px) {
    .PP-subheading{
        font-size: 18px;
    }

    .PP-subheading-yellow{
        font-weight: 800 !important;
        font-size: 22px;
        color: rgba(197, 161, 17, 1);
    }

    .PP-subheading-yellow::before{
        content: '';
        width: 25px;
        height: 2px;
        background: rgba(197, 161, 17, 1);
        position: absolute;
        margin-top: 12px;
        margin-left: -30px;
    }
    .PP-subheading-yellow::after{
        content: '';
        width: 25px;
        height: 2px;
        background: rgba(197, 161, 17, 1);
        position: absolute;
        margin-top: 12px;
        margin-left: 5px;
    }
}



.main-section{
    display: flex;
    justify-content: center;
}
.main-card-section{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(204, 237, 255, 1);
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}

.main-card-floating-text{
    margin: auto;
    margin-top: -20px;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    padding: 4px 14px;
    background-color: rgba(204, 237, 255, 1);
    width: max-content;
    border-radius: 10px;
}

@media (max-width: 420px) {
    .main-card-floating-text{
        font-size: 16px;
        padding: 4px 10px;
    }
    .sm-small{
        font-size: 14px;
    }
}
.network-details-box-v2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.network-details-box-v2 img{
    object-fit: scale-down;
}

.text-darkblue{
    color: rgba(36, 57, 74, 1);
}
.text-blue{
    color: rgba(174, 220, 248, 1);
}
.text-yellow{
    color: rgba(197, 161, 17, 1);
}

/* ===== Resonsive Gallary ====== */

.gallary-box {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    justify-content:center;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .gallary-column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .gallary-column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .gallary-column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .gallary-column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }

/* ===== Resonsive Gallary ====== */


.network-logo{
    max-width: 120px;
}

@media (max-width: 768px) {
    .network-logo{
        max-width: 80px;
    }
}
.network-details{
    font-size: 24px;
    max-width: 400px;
    margin: 0;
    font-weight: 400;
}
.network-details span{
    font-weight: 500;
}

@media (max-width: 768px) {
    .network-details{
        max-width: 340px;
        font-size: 18px;
    }
}
.network-stars{
    max-width: 380px;
    width: 100%;
}

.network-img-box{
    display: flex;
    justify-content: center;
}
.network-img{    
    object-fit: scale-down;
    max-width: 370px;
    width: 100%;
    transform: scale(1.8);
}

@media (max-width: 768px) {
    .weekly-card-box {
        background-color: rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        border: 3px solid rgba(204, 237, 255, 1);
    }
}

.weekly-card-section{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 25px;
}
.weekly-card{
    max-width: 250px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(204, 237, 255, 1);
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}
.weekly-card img{
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
    width: 62px;
    border-radius: 6px;
    margin: auto;
    display: block;
}


@media (max-width: 768px) {
    .weekly-card-section{
        display: block;
    }
    .weekly-card{
        max-width: 100%;
        background: none;
        border: none;
        margin-bottom: 25px;
    }
    .weekly-card .card-body{
        display: flex;
        gap:12px;
        padding: 0;
        font-size: 16px;
    }
    .weekly-card .card-body div{
        display: flex;
        flex-direction:column;
    }
    .weekly-card img{
        padding: 10px;
        width: 46px;
        margin: 0;
    }
    .weekly-card .card-body p{
        text-align: start;
        margin: 0;
    }
    footer{
        text-align: center;
    }
    .footer-info{
        order: 1;
        padding-bottom: 20px;
    }
}




.features-section{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 25px;
}
.features-card{
    max-width: 250px;
    background: none;
    border: none;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}
.features-card .card-body{
    padding-left: 10px;
    padding-right: 10px;
}
.features-no{
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
    font-size: 22px;
    width: 62px;
    border-radius: 6px;
    margin: auto;
    display: block;
}

.brand-img{
    width: 100%;
    margin: auto;
    display: block;
}
.features-badge{
    color: rgba(197, 161, 17, 1);
    font-size: 28px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    margin: auto;
}
@media (max-width: 768px) {

    .features-section{
        display: flex;
        flex-wrap: wrap;
        justify-content:center;
        gap: 25px;
    }
    .features-card{
        max-width: 100%;
        font-size: 16px;
    }
    .features-card p{
        margin: auto;
    }
    .features-no{
        display: flex;
        justify-content: center;
        font-size: 22px;
        width: 46px;
        height: 52px;
    }
    .brand-img{
        width: 75%;
    }
    .features-badge{
        font-size: 18px;
        margin: auto !important;
    }
    
    .mobile-divider{
        width: 80%;
        margin: auto;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.5);   
    }
}

.training-img{
    object-fit: scale-down;
    max-width: 320px;
    width: 100%;
    transform: scale(1.8);
}

.training-card{
    max-width: 380px;
    font-size: 20px;
}

.training-card .features-no{
    width: 56px;
    height: 50px;
    padding: 10px;
}

.training-card p{
    width: 100%;
}

.contact-heading{
    text-align: center;
}
.form-card-v2{
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 25px;
    border: 3px solid rgba(204, 237, 255, 1);
}

@media (max-width: 768px) {
    
    .training-card p{
        font-size: 18px;
    }
    .contact-heading{
        text-align: center !important;
    }
    .contact-section{
        background-color: rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        border: 3px solid rgba(204, 237, 255, 1);
    }

    .form-card-v2{
        background-color: transparent;
        border: none;
        box-shadow: none !important;
    }
}


.per-day-badge{
    margin: auto;
    margin-top: 20px;
    width: max-content;
    padding: 6px 6px 6px 20px;
    border-radius: 30px;
    font-size: 24px;
    background: rgba(174, 220, 248, 1);
    color: rgba(69, 69, 69, 1);
    font-family: "Exo", sans-serif;
}
.per-day-badge span{
    margin-left: 5px;
    padding: 4px 15px;    
    background-color: #fff;
    height: 100%;
    display: inline-block;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

/* ========  Landing page - END  ============ */


/* ========  Landing page - white - START  ============ */

.lightblue-bg{
    background-color: rgba(247, 251, 254, 1);
    color: #000;
}
.brand-logo{
    display: block;
    max-width: 320px;
    padding: 20px;
    width: 100%;
    margin: auto;
}
.PP-heading-v2{
    font-weight: 500;
    font-size: 42px;
    color: rgba(36, 57, 74, 1);
}

.hero-text-v2{
    font-size: 24px;
    font-family: var(--default-fontfamily);
}
@media (max-width: 768px) {
    .PP-heading-v2{
        font-size: 32px;
    }
    .hero-text-v2 {
        font-size: 16px;
    }
}
.PP-subheading-v2{
    font-weight: 400;
    font-size: 24px;
    color: rgba(36, 57, 74, 1);
}

.PP-subheading-v2::before{
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(36, 57, 74, 1);
    position: absolute;
    margin-top: 12px;
    margin-left: -45px;
}
.PP-subheading-v2::after{
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(36, 57, 74, 1);
    position: absolute;
    margin-top: 12px;
    margin-left: 5px;
}


.PP-subheading-darkBlue{
    font-weight: 800 !important;
    font-size: 32px;
    color: rgba(36, 57, 74, 1);
}

.PP-subheading-darkBlue::before{
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(36, 57, 74, 1);
    position: absolute;
    margin-top: 18px;
    margin-left: -45px;
}
.PP-subheading-darkBlue::after{
    content: '';
    width: 40px;
    height: 2px;
    background: rgba(36, 57, 74, 1);
    position: absolute;
    margin-top: 18px;
    margin-left: 5px;
}
@media (max-width: 768px) {
    .PP-subheading-v2{
        font-size: 18px;
    }

    .PP-subheading-darkBlue{
        font-weight: 800 !important;
        font-size: 22px;
        color: rgba(36, 57, 74, 1);
    }

    .PP-subheading-darkBlue::before{
        content: '';
        width: 25px;
        height: 2px;
        background: rgba(36, 57, 74, 1);
        position: absolute;
        margin-top: 12px;
        margin-left: -30px;
    }
    .PP-subheading-darkBlue::after{
        content: '';
        width: 25px;
        height: 2px;
        background: rgba(36, 57, 74, 1);
        position: absolute;
        margin-top: 12px;
        margin-left: 5px;
    }
}



.main-section-v2{
    display: flex;
    justify-content: center;
}
.main-card-section-v2{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgb(36 57 74);
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}

.main-card-floating-text-v2{
    margin: auto;
    margin-top: -20px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    padding: 4px 14px;
    background-color: rgb(36 57 74);
    width: max-content;
    border-radius: 10px;
}

@media (max-width: 420px) {
    .main-card-floating-text-v2{
        font-size: 16px;
        padding: 4px 10px;
    }
    .sm-small{
        font-size: 14px;
    }
}
.network-details-box-v2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.network-details-box-v2 img{
    object-fit: scale-down;
}

.text-gray{
    color: rgba(69, 69, 69, 1);
}
.text-red{
    color: rgba(255, 0, 0, 1);
}


/* ===== Resonsive Gallary ====== */

.gallary-box-v2 {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    justify-content:center;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .gallary-column-v2 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .gallary-column-v2 img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .gallary-column-v2 {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .gallary-column-v2 {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }

/* ===== Resonsive Gallary ====== */


.network-logo-v2{
    max-width: 120px;
}

@media (max-width: 768px) {
    .network-logo-v2{
        max-width: 80px;
    }
}
.network-details-v2{
    font-size: 24px;
    max-width: 400px;
    margin: 0;
    font-weight: 400;
}
.network-details-v2 span{
    font-weight: 600;
}

@media (max-width: 768px) {
    .network-details-v2{
        max-width: 340px;
        font-size: 18px;
    }
}
.network-stars-v2{
    max-width: 380px;
    width: 100%;
}

.network-img-box-v2{
    display: flex;
    justify-content: center;
}
.network-img-v2{    
    object-fit: scale-down;
    max-width: 370px;
    width: 100%;
}

@media (max-width: 768px) {
    .weekly-card-box-v2 {
        background-color: rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        border: 3px solid rgb(36 57 74);
    }
}

.weekly-card-section-v2{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 25px;
}
.weekly-card-v2{
    max-width: 250px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(51, 83, 102, 0.5);
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}
.weekly-card-v2 img{
    background: rgba(120, 120, 120, 0.06);
    padding: 12px;
    width: 62px;
    border-radius: 6px;
    margin: auto;
    display: block;
}


@media (max-width: 768px) {
    .weekly-card-section-v2{
        display: block;
    }
    .weekly-card-v2{
        max-width: 100%;
        background: none;
        border: none;
        margin-bottom: 25px;
    }
    .weekly-card-v2 .card-body{
        display: flex;
        gap:12px;
        padding: 0;
        font-size: 16px;
    }
    .weekly-card-v2 .card-body div{
        display: flex;
        flex-direction:column;
    }
    .weekly-card-v2 img{
        padding: 10px;
        width: 46px;
        margin: 0;
    }
    .weekly-card-v2 .card-body p{
        text-align: start;
        margin: 0;
    }
    footer{
        text-align: center;
    }
    .footer-info{
        order: 1;
        padding-bottom: 20px;
    }
}




.features-section-v2{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 25px;
}
.features-card-v2{
    max-width: 250px;
    background: none;
    border: none;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
}
.features-card-v2 .card-body{
    padding-left: 10px;
    padding-right: 10px;
}
.features-no-v2{
    width: 56px;
    height: 50px;
    padding: 10px;
    background: rgba(247, 247, 247, 1);
    border-radius: 8px;
}

.brand-img{
    width: 100%;
    margin: auto;
    display: block;
}
.features-badge-v2{
    color: rgba(69, 69, 69, 1);
    background: rgb(255 255 255);
    font-size: 18px;
    font-weight: 600;
    padding: 2px 20px;
    border-radius: 20px;
    width: fit-content;
    margin: auto;
    border: 1px solid rgba(237, 237, 237, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {

    .features-section-v2{
        display: flex;
        flex-wrap: wrap;
        justify-content:center;
        gap: 25px;
    }
    .features-card-v2{
        max-width: 100%;
        font-size: 16px;
    }
    .features-card-v2 p{
        margin: auto;
    }
    .features-no{
        display: flex;
        justify-content: center;
        font-size: 22px;
        width: 46px;
        height: 52px;
    }
    .brand-img{
        width: 75%;
    }
    .features-badge-v2{
        font-size: 18px;
        margin: auto !important;
    }
    
    .mobile-divider{
        width: 80%;
        margin: auto;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.5);   
    }
}

.training-img-v2{
    object-fit: scale-down;
    max-width: 320px;
    width: 100%;
    
}

.training-card-v2{
    max-width: 380px;
    font-size: 20px;
}

.training-card-v2 .features-no-v2{
    width: 56px;
    height: 50px;
    padding: 10px;
}

.training-card-v2 p{
    width: 100%;
}

.contact-heading-v2{
    text-align: center;
}
.form-card-v3{
    background-color: rgba(255, 255, 255, 1);
    border-radius: 25px;
    border: 3px solid rgba(34, 55, 72, 0.5);
}

.form-card-v3 input{
    border-color:rgba(157, 157, 157, 1) !important;
}


@media (max-width: 768px) {
    
    .training-card p{
        font-size: 18px;
    }
    .contact-heading-v2{
        text-align: center !important;
    }
    .contact-section-v2{
        background-color: rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        border: 3px solid rgb(36 57 74);
    }

    .form-card-v3{
        background-color: transparent;
        border: none;
        box-shadow: none !important;
    }
}


.per-day-badge-v2{
    margin: auto;
    margin-top: 20px;
    width: max-content;
    padding: 4px 4px 4px 20px;
    border-radius: 30px;
    font-size: 24px;
    background: rgba(36, 57, 74, 1);
    color: rgba(255, 255, 255, 1);
    font-family: "Exo", sans-serif;
}
.per-day-badge-v2 span{
    margin-left: 5px;
    padding: 4px 15px;    
    background-color: #fff;
    color: rgba(69, 69, 69, 1);
    height: 100%;
    display: inline-block;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.text-worth{
    color: rgba(69, 69, 69, 1);
    border: 1px solid rgba(171, 171, 171, 1);
    width: max-content;
    padding: 3px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    margin: auto;
}
/* ========  Landing page - White - END  ============ */


footer{
    background-color: rgba(51, 83, 102, 1);
    color: #fff;
}
.footer-brand{
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    color:#fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}
.whatsapp-btn-box{
    display: flex;
    flex-wrap: wrap;
}
.whatsapp-btn,.whatsapp-btn:hover{
    background-color: #ffffff;
    border: 1px solid #ced4da4b;
    text-wrap: nowrap;
}
.footer-menu{
    padding: 0;
    list-style: none;
}
.footer-items{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 2;
    font-weight: 300;
}



/* =======  Join Our Network  ======= */
.MyLoginForm .form-control{
    border: 1px solid transparent;
}
.MyLoginForm .form-control:focus{
    box-shadow: none;
    border: 1px solid rgba(51, 83, 102, 1) !important;
}
