@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary-color: #dc3545;
    --secondary-color: #f68635;
    --tertiary-color: #198754;
    --blue-color: #2957a4;
    --body-color: #212121;

    --lightgray: #f5f5f5;
    --lightgreen: #fafff9;
    --josefin: "Josefin Sans", sans-serif;
    --facebook: #4267B2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #FF0000;
    --whatsapp: #25D366;
    --instagram: #c92bb7;
    --google-play: #c92bb7;
}

/* social icons */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-links a i {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    transition: all 300ms ease-in-out;
    text-align: center;
}

.social-links a i.sm {
    width: 32px;
    height: 32px;
}

.social-links a .bi-facebook {
    background-color: var(--facebook);
}

.social-links a .bi-linkedin {
    background-color: var(--linkedin);
}

.social-links a .bi-twitter-x {
    background-color: var(--twitter);
}

.social-links a .bi-youtube {
    background-color: var(--youtube);
}

.social-links a .bi-whatsapp {
    background-color: var(--whatsapp);
}

.social-links a .bi-instagram {
    background-color: var(--instagram);
}

.social-links a .bi-google-play {
    background-color: var(--google-play);
}

.social-links a:hover i {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.social-links a:hover .bi-facebook {
    color: var(--facebook);
}
.social-links a:hover .bi-google-play {
    color: var(--google-play);
}

.social-links a:hover .bi-linkedin {
    color: var(--linkedin);
}

.social-links a:hover .bi-twitter-x {
    color: var(--twitter);
}

.social-links a:hover .bi-youtube {
    color: var(--youtube);
}

.social-links a:hover .bi-whatsapp {
    color: var(--whatsapp);
}

.social-links a:hover .bi-instagram {
    color: var(--instagram);
}

/* social icons */

/* Custom Scroll */
.scroller {
    height: 240px;
    overflow: auto;
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #adadad;
    border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
    background: #2957a4;
    border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Scroll */
body {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #212121;
}

.flip-y {
    transform: rotateY(180deg);
}

.bg-blue {
    background-color: #2957a4;
}

.blue-color {
    color: #2957a4;
}

.primary-color {
    color: #dc3545;
}

.body-color{
    color: #212121;
}

.bg-white {
    background-color: #fff;
}

.bg-lightgray {
    background-color: #f4f8ff;
}

.text-orange {
    color: #f68635;
}

.section-padding {
    padding: 4rem 0;
}

a {
    text-decoration: none;
}


.global-btn {
    padding: 10px 18px;
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--body-color);
    background-color: transparent;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
}

.global-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.global-btn i {
    font-size: 14px;
}

/* blog btn */
.blog-btn {
    padding: 6px 8px;
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--body-color);
    background-color: transparent;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 15px;
    font-size: 12px;
}

.blog-btn:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.blog-btn i {
    font-size: 12px;
}


/*--------------------------------------------------------------
.header Section
--------------------------------------------------------------*/
.header {
    /* background-image: url('../img/bg.webp'); */
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; */
    padding: 10px 0;
    background-color: #2957a4;
}

/* .header::before {
    content: "";
    background:
        color-mix(in srgb, #49a7b1, transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;

} */

/* .header .container {
    position: relative;
    z-index: 3;
} */


.header .header-info-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .header-info-item i {
    color: #ffffff;
    /* background: color-mix(in srgb, #a082d2, transparent 92%); */
    background-color: rgb(255, 255, 255);
    font-size: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 5px;
    border: 1px solid rgba(255, 255, 255, 0.151);
}

.header .header-info-item a {
    text-decoration: none;
    color: #fff;
}

.header .header-info-item h3 {
    padding: 0 5px;
    font-size: 15px;
    margin: 0;
    color: #ffffff;
}

.header .header-info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 13px;
    color: #ffffff;
}

.header .header-info-item:hover i {
    background: #fff;
    color: antiquewhite;
}


.header .content .why-box {
    width: 100%;
    color: #fff;
}

.header .content .why-box img {
    width: 100%;
}

/* -----------------------------------------------------
 inner header
   ----------------------------------------------------- */

.inner-header {
    width: 100%;
    /* position: fixed; */
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 0 0rem;
    display: block;
    justify-content: space-between;
    transition: all 300ms ease-in-out;
    z-index: 9;
}

.inner-header .logo {
    display: table;
    width: 170px;
    padding: 5px 0;
}

.mainHeader .social-links {
    padding: 5px 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}


/* .inner-header .right-Email-phone {
    display: flex;
    justify-content: center;
    align-content: center;
}

.inner-header .right-Email-phone a {
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;

} */

/* inner-header .head-rightbox */
.inner-header .head-rightbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-header .head-rightbox a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    margin-right: 4px;
    display: flex;
    transition: 0.3s;
    background-color: var(--social-links-bg);
    justify-content: center;
    align-items: center;
}




/* ------------------------------------------
right-Email-phone
------------------------------------------ */
.inner-header .right-Email-phone .Email-phone-getstarted,
.inner-header .right-Email-phone .Email-phone-getstarted:focus {
    color: white;
    background: var(--primary-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    transition: 0.3s;
    text-decoration: none;
}

.inner-header .right-Email-phone .Email-phone-getstarted:hover,
.inner-header .right-Email-phone .Email-phone-getstarted:focus:hover {
    color: white;
    background: color-mix(in srgb, var(--primary-color), transparent 15%);
}
.top-header
{
    display: flex;
    justify-content: end;
    width: 100%;
    border-bottom: 1px solid #ccc;
    align-items: center;
    gap: 15px;
    background: #2956a3;
    padding: 0 2rem;
}
.top-header ul
{
    display: flex;
    margin: 0;
    gap: 16px;
}
.top-header ul li
{list-style: none;}
.top-header ul li a
{color: #ffffff;}
.second-header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 3px 2rem;
}
/* ----------------------------------------
header-right-social-icons
---------------------------------------- */
.header-right-social-icons {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    z-index: 99;
}

.header-right-social-icons::before {
    content: "\f1e0";
    font-family: fontAwesome;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.5s;
    display: flex;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.header-right-social-icons:hover::before {
    height: 40px;
}

.header-right-social-icons li {
    position: absolute;
    transition: 1s;
}

.header-right-social-icons li a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #262626;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.5s;
}

.header-right-social-icons li:nth-child(1) a {
    background-color: #3b5999;
}

.header-right-social-icons li:nth-child(2) a {
    background-color: #2957a4;
}

.header-right-social-icons li:nth-child(3) a {
    background-color: #FF0000;
}

.header-right-social-icons li:nth-child(4) a {
    background-color: #25D366;
}

.header-right-social-icons li:nth-child(5) a {
    background-color: #e4405f;
}

.header-right-social-icons:hover li:nth-child(1) a {
    transform: translateY(48px) rotate(360deg);
    transition-delay: 0.8s;
}

.header-right-social-icons:hover li:nth-child(2) a {
    transform: translateY(96px) rotate(360deg);
    transition-delay: 0.6s;
}

.header-right-social-icons:hover li:nth-child(3) a {
    transform: translateY(144px) rotate(360deg);
    transition-delay: 0.4s;
}

.header-right-social-icons:hover li:nth-child(4) a {
    transform: translateY(192px) rotate(360deg);
    transition-delay: 0.2s;
}

.header-right-social-icons:hover li:nth-child(5) a {
    transform: translateY(240px) rotate(360deg);
    transition-delay: 0s;
}

.header-right-social-icons:hover li:nth-child(6) a {
    transform: translateY(288px) rotate(360deg);
    transition-delay: 0s;
}




/* .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }

/* Global Header on Scroll
  ------------------------------*/
/* .scrolled .header {
    --background-color: rgba(0, 78, 144, 0.9);
  } */


/* --------------------------------------------------------
hero
-------------------------------------------------------- */
.hero .hero-logo {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 220px;
    padding: 15px 0 0 0;
}

.hero .hero-logo img {
    width: 100%;
    height: 100%;
    text-align: center;
}

.hero .hero-content {
    text-align: center;
    padding: 20px 0 20px 0;
    /* border: 1px solid red; */

}

.hero .hero-content p {
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
    text-transform: capitalize;
}

/* --------------------------------------------
 header-btn
 -------------------------------------------- */
.header .header-btn {
    text-align: center;
}

.header .more-btn {
    margin-top: 30px;
    display: inline-block;
    background-color: #9176c8;
    /* padding: 1.25em 3em; */
    padding: 9px 13px;
    color: #fff;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #ffffff30;
    font-size: 13px;
}

.header .more-btn i {
    font-size: 14px;
}

.header .more-btn:hover {
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
}

/* --------------------------------------------
 logo
 --------------------------------------------  */
.header .logo-img {
    width: 100%;
    height: 100%;
}

.header .logo-img img {
    width: 100%;
}

.heading {
    display: table;
    margin: 0 auto 1.5rem;
}

.heading h2,
.heading .h2 {
    text-transform: uppercase;
    font-weight: 700;
    text-align-last: center;
    text-align: center;
    font-size: 2.2rem;
}



.heading p {
    font-size: 1.1rem;
    text-align: justify;
    text-align-last: center;
}

.subheading {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}


.banner-section {
    width: 100%;
    /* height: calc(100vh - (184px + 56px)); */
}

.banner-section img {
    object-fit: contain;
}

button[class^="carousel-control"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

button[class^="carousel-control"] span {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: maroon;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 50%;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.Athletics-section .Athletics-box {
    background: #49a7b1;
    padding: 0;
    background: center / cover no-repeat;
    min-height: 100%;
    height: calc(100vh - (162px + 56px));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* flex-direction: column; */
    position: relative;
    isolation: isolate;
}

/* .Athletics-section .Athletics-box:hover {
    background-color: red;
    background-blend-mode: difference;
} */

.Athletics-section .Athletics-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #49a7b150;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}


.Athletics-section .Athletics-box:hover::before {
    opacity: 1;
}

.Athletics-section .Athletics-box:nth-child(1) {
    border-right: 1px solid #fff;
}

.Athletics-section .Athletics-box h3 {
    width: 100%;
    color: white;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
    background: linear-gradient(transparent, #000000);
    margin: 0;
    padding: 3rem 1.5rem 2rem;
}

.Athletics-section .Athletics-box h4 {
    margin-bottom: 30px;
    text-align: center;
    color: white;
    font-weight: 200;
}

.Athletics-section .Athletics-box .more-btn {
    display: inline-block;
    color: white;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
}

.Athletics-section .Athletics-box .more-btn i {
    font-size: 14px;
}

/* .Athletics-section .Athletics-box .more-btn:hover {
    color: #eb6ea6;
    background: transparent;
    border: 1px solid #eb6ea6;
} */


/* ----------------------------------------
 why-box2
 ---------------------------------------- */
.Athletics-section .why-box2 {
    background: #49a7b1;
    padding: 80px 30px;

}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.Sumona-section {
    padding: 30px;
}

.Sumona-section .why-box {
    background: #49a7b1;
    background-image: url(../img/Colour-2a.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Sumona-section .why-box h3 {
    color: white;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
}

.Sumona-section .why-box h4 {
    margin-bottom: 30px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 200;
}

.Sumona-section .why-box .more-btn {
    padding: 10px 18px;
    display: inline-block;
    background-color: white;
    color: #222222;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;

}

.Sumona-section .why-box .more-btn:hover {
    background-color: #af4a2e;
    color: #fff;
}

.Sumona-section .why-box .more-btn i {
    font-size: 14px;
}

.Sumona-section .why-box .more-btn1 {
    padding: 10px 18px;
    display: inline-block;
    background-color: #af4a2e;
    color: #ffffff;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: default;
    border: 2px solid #ffffff88;

}

.Sumona-section .why-box .more-btn i {
    font-size: 14px;
}

/* ----------------------------------------
 why-box1 
 ---------------------------------------- */
.Sumona-section .why-box1 {
    background: #49a7b1;
    padding: 80px 30px;
    background-image: url(../img/Athletics.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.Sumona-section .why-box1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(237 51 56 / 70%);
    z-index: -1;
}

/* .Sumona-section .why-box1 .more-btn {
   
    padding: 10px 12px;
    display: inline-block;
    background-color: white;
    color: #222222;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;

}

.Sumona-section .why-box1 .more-btn i {
    font-size: 14px;
} */

/* .Sumona-section .why-box1 .more-btn:hover {
    color: #ffba52;
    background: transparent;
    border: 1px solid #ffba52;
} */

/* ----------------------------------------
 why-box2
 ---------------------------------------- */
.Sumona-section .why-box2 {
    background: #49a7b1;
    padding: 80px 30px;
    background-image: url(../img/sice-img.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.Sumona-section .why-box2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(103 154 73 / 82%);
    z-index: -1;
}
.Sumona-section .why-box4 {
    background: #49a7b1;
    padding: 80px 30px;
    background-image: url(https://www.sumona.org/assets/img/appp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.Sumona-section .why-box4::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(40 88 165 / 77%);
    z-index: -1;
}

.Sumona-section .why-box3 {
    padding: 80px 30px;
    background-image: url(../img/lady.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.Sumona-section .why-box3::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(241 110 16 / 85%);
    z-index: -1;
}




/* --------------------------------------------------
 modal form
 -------------------------------------------------- */
.ENQUIRY_modal_form .ENQUIRY_pop_up {
    background-color: #e6e6e6;
    border: none;
}


.ENQUIRY_modal_form .ENQUIRY_heading {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
}

.ENQUIRY_modal_form .modal-fadebg {
    background-color: rgba(41, 86, 164, 0.565);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.ENQUIRY_modal_form .ENQUIRY_modal-body {
    padding-top: 0;
    border-radius: none;
}

.ENQUIRY_modal_form .ENQUIRY-content {
    border-radius: 0;

}

.ENQUIRY_modal_form .custom_form-control {
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    padding: 10px 0;
    font-size: 14px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.151);
}


.ENQUIRY_modal_form .custom_form-control:focus {
    outline: 0;
    border-bottom: 1px solid var(--blue-color);
    padding: 10px;
    background-color: #f1f1f1;
    box-shadow: none;
}

.ENQUIRY_modal_form .ENQUIRY_button {
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    width: 100%;
    padding: 8px 26px;
    margin: 0;
    transition: 0.3s;
    border-radius: 0;
    outline: none;
    text-transform: uppercase;
    margin-top: 1.25rem;
    font-weight: 600;
}

.ENQUIRY_modal_form .ENQUIRY_button:hover {
    background-color: var(--body-color);
}

.ENQUIRY_modal_form .ENQUIRY_close {
    box-shadow: none;
}

/* ---------------------------------------------------
 address-email
 --------------------------------------------------- */
.address-email {
    /* padding: 0 30px 0px 30px; */
    display: none;
}


.address-email-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d36416;
    padding: 15px 15px 15px 30px;
    justify-content: center;
}

/* .address-email-item1{
    padding-bottom: 0;
} */

.address-email-item h3 {
    font-size: 15px;
    margin-left: 5px;
    color: #fff;
    margin-bottom: 0;
}

.address-email-item .address-one {
    display: block;
    text-decoration: none;
    border: none;
}

.address-email-item .address-h3 {
    width: calc(100% - 45px);
}

.address-email a {
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, white, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, rgb(255, 255, 255), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.address-email a:hover {
    color: rgb(211 100 22);
    border-color: rgb(211 100 22);
    background-color: white;
}

/* --------------------------------------------------------
footer
-------------------------------------------------------- */
.footer {
    background-color: #f5f5f5bf;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-links-box-logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-about .logo img {
    max-width: 60%;
}

.footer .footer-about p {
    font-size: 14px;
}

.footer h4 {
    font-size: 27px;
    color: var(--body-color);
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    padding: 0 20px;
}

.footer .footer-links-box {
    padding: 20px 0;
    border-top: 2px solid var(--cyan);
}



.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: var(--body-color);
    line-height: 1;
    text-decoration: none;
}

.footer .copyright {
    padding-top: 30px;
    padding-bottom: 60px;
    text-align: center;
    border-top: 1px solid color-mix(in srgb, var(--body-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

footer .contact-item {
    display: flex;
    margin-top: 10px;
}

footer .contact-item .head-office-details .head-office-title {
    font-weight: 600;
    color: var(--body-color);
}

footer .contact-item p {
    margin-bottom: 0;
    line-height: 2;
}

footer .contact-item p a {
    color: var(--body-color);
    text-decoration: none;
}

footer .contact-item .details-call-num {
    padding: 10px;
}

footer .contact-item .details-call-num .details-call-num-icon i {
    font-size: 22px;
}

footer .footer-links-box .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-links-box .contact-icon i {
    font-size: 30px;
}


.footer .footer-hr {
    width: 98%;
    margin: 0 auto;
    color: rgb(173, 173, 173);
}

/* ----------------------------------------------
footer_btn_box
  ---------------------------------------------- */
.footer_btn_box {
    display: none;
    z-index: 99;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.footer_btn_box .footer_bottom_btn {
    background-color: var(--blue-color);
    padding: 7px 0px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    /* border-radius: 5px 20px; */
    list-style: none;
    text-align: center;
}

.footer_btn_box .footer_bottom_btn:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / 35%);
}

.footer_btn_box .footer_bottom_btn a {
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
services-section
--------------------------------------------------------------*/
/* .services-section .services-Psycho-head {
    color: var(--blue-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
} */

.services-section .team-member {
    overflow: hidden;
    height: 100%;
    width: 100%;
    /* border: 1px solid #3a3a3a27; */
}

.services-section .team-member .member-img {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--red);
}

.services-section .team-member .member-img img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.services-section .team-member .member-info {
    /* padding: 25px 15px; */
    /* padding: 25px 0px; */
    text-align-last: center;
}

.services-section .team-member p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--red);
    text-align: center;
}

.services-section .team-member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 10px;
    text-align: justify;
    text-align-last: center;
}




/*  */
/* ------------------------------------------------
 section-floor
 ------------------------------------------------ */
.services-section .lap_img {
    width: 100%;
    height: 100%;
}

.services-section .lap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section .lap_content {
    /* max-width: 520px; */
    padding: 3rem;
    background-color: #f4f8ff;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.services-section .lap_content h4 {
    /* font-size: 1.4rem; */
    font-weight: 700;
    margin-bottom: 0;
    padding: 12px 0;
    color: var(--primary-color);
    /* text-align: center; */
}

.services-section .lap_content .services-section-para {
    padding-right: 20px;
}

.services-section .lap_content p {
    /* display: block; */
    margin-top: 10px;
    text-align: justify;
    /* text-align-last: center; */
}

.services-section .lap_content .regis-link {
    text-align: start;
}

.services-section .lap_content .regis-link a {
    color: #000;

}


/* .services-section .lap_content h6 {
    color: var(--blue-color);
  } */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.Types-Sessions {
    background-color: #2957a4;
}

.Types-Sessions p {
    text-align: center;
    font-size: 1.7rem;
    margin-top: 2rem;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
}

/* 
.Types-Sessions .icon-box {
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--clr);
    flex-direction: column;
}



.Types-Sessions .icon-box .icons-box-img {
    width: 80px;
    height: 80px;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: hsl(from var(--clr) h calc(s - 3) calc(l - 50));
}

.Types-Sessions .icon-box .icons-box-img svg {
    fill: #fff;
    transition: all 300ms ease-in-out;
}

.Types-Sessions .icon-box:hover .icons-box-img svg {
    fill: none;
    stroke: #fff;
    stroke-width: 3px;
}

.Types-Sessions .icon-box .icons-box-img img,
.Types-Sessions .icon-box .icons-box-img svg {
    width: 100%;
    height: 100%;
}

.Types-Sessions .icon-box h5 {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    color: hsl(from var(--clr) h s calc(l - 50));
}

.Types-Sessions .icon-box p {
    margin-bottom: 0;
}

.Types-Sessions .icon-box:hover i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
} */

/* .Types-Sessions .icon-boxes .col-md-6:nth-child(2) .icon-box,
.Types-Sessions .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: -40px;
    border: 3px solid red;
} */

/* 0000000000000000000000000000000 */
/*--------------------------------------------------------------
performance
--------------------------------------------------------------*/
.performance-banner {
    width: 100%;
    position: relative;
}

.performance-banner img {
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.performance-banner .performance-banner-content {
    display: flex;
    justify-content: end;
    text-align-last: center;
    width: 65%;
}

.performance-banner .performance-banner-content h1 {
    font-weight: 700;
    color: #fff;
}

.performance-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    justify-content: flex-end;
}


/* container-left */
.performance-banner .container-left {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    justify-content: flex-start;
}

/* performance-banner-content-left */
.performance-banner-content-left {
    display: flex;
    justify-content: center;
    text-align-last: center;
    width: 62%;
    margin-top: 4%;
}

.performance-banner .performance-banner-content-left h1 {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
}




/* performance-overview */
.performance-overview .performance-overimg {
    width: 220px;
    margin: 0 auto;

}

.performance-overview .performance-overimg img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
}

.performance-overview .performance-content {
    /* text-align-last: center; */
    font-size: 18px;
    /* margin-bottom: 3rem; */
}

.performance-overview .performance-content-inner {
    /* font-size: 18px; */
    /* margin-top: 40px; */
    padding: 0rem 2rem 2rem;
    width: 100%;
    margin: 0 auto;
    /* text-align-last: center; */
    background-image: linear-gradient(45deg, #dc3545, #198754, #2957a4);
    position: relative;
    isolation: isolate;
}

.performance-overview .performance-content-inner::before {
    position: absolute;
    inset: 1px;
    content: '';
    background-color: #ffffff;
    z-index: -1;

}

.performance-overview .performance-content-inner h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    transform: translateY(-15px);
    text-align: center;
    font-size: 1.8rem;
}

.performance-overview .performance-content-inner p {
    /* text-align: center; */
    /* padding: 1rem 2rem 2rem; */
    /* font-size: 1.1375rem; */
    font-weight: 700;
    text-align: justify;
    text-align-last: center;
}

.performance-overview .performance-content-inner h4 span {
    background-color: #fff;
    padding: 0px 30px 0 30px;
}


.performance-overview .performance-lower-para p {
    font-size: 1.125rem;
    text-align: justify;
}


/* -------------------------------------------------------------------
Who are we
------------------------------------------------------------------- */
/* .who-are-section{
    background-color: #ffe5d5;
} */



/* -------------------------------------------------------------
 behavioural-services
 ------------------------------------------------------------- */
/* .behavioural-services {
    background-color: #edf9ff;
} */

.behavioural-services .behavioural-box .behavioural-img {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--clr);
}

.behavioural-services .behavioural-box .behavioural-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.behavioural-services .behavioural-box .behavioural-meta .behavioural-cat {
    text-transform: uppercase;
    font-size: 16px;
    /* font-weight: normal; */
    /* color: var(--clr); */
    color: var(--body-color);
}

.behavioural-services .behavioural-box .behavioural-content h3 {
    color: var(--clr);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.behavioural-services .behavioural-box .global-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
    border: 1px solid var(--clr);
}

.behavioural-services .behavioural-box .global-btn:hover {
    color: #fff;
    background-color: var(--clr);
}

.behavioural-services .behavioural-box .global-btn i {
    font-size: 14px;
}

/* ------------------------------------
our-team-section
------------------------------------ */
.our-team-section {
    background-color: #ffffff;
}

.our-team-section .our-team-box .our-team-img {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--clr);
}

.our-team-section .our-team-box .our-team-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.our-team-section .our-team-box .our-team-meta .our-team-cat {
    text-transform: uppercase;
    font-size: 16px;
    /* font-weight: normal; */
    /* color: var(--clr); */
    color: var(--body-color);
}

.our-team-section .our-team-box .our-team-content h3 {
    color: var(--clr);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.our-team-section .our-team-box .global-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
    background: transparent;
    border: 1px solid var(--clr);
}

.our-team-section .our-team-box .global-btn:hover {
    color: #fff;
    background-color: var(--clr);
}

.our-team-section .our-team-box .global-btn i {
    font-size: 14px;
}

/* ---------------------------------
modal  */
.Archana-modal-wrapper {
    background-color: #2c2c2cc2;
}

.Archana-modal-content {
    border-radius: 0;
    /* background-color: #2957a4; */
}

.Archana-modal-content .team-contentboxmodal-Archana {
    padding-right: 15px;
}

.Archana-modal-content .team-contentboxmodal-Archana .team-img {
    width: 200px;
    float: left;
    margin: 0 20px 10px 0;
}

.Archana-modal-wrapper .Archana-modal-content .team-contentboxmodal-Archana .team-img img {
    width: 100%;
    height: auto;
}


.Archana-modal-wrapper .Archana-modal-content .team-contentboxmodal-Archana .our-team-meta-modal {
    font-size: 12px;
    margin-bottom: 10px;
}

.Archana-modal-wrapper .Archana-modal-content .team-contentboxmodal-Archana .our-team-meta-modal .our-team-modal-subheading {
    text-transform: uppercase;
    font-size: 16px;
    /* color: var(--cyan); */
}

.Archana-modal-wrapper .Archana-modal-content .team-contentboxmodal-Archana .our-team-meta-modal h3 {
    color: var(--arch);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.Archana-modal-wrapper .Archana-modal-content .team-contentboxmodal-Archana p {
    line-height: 2;
    text-align: justify;
}

.Archana-modal-wrapper .Archana-modal-content .Archana-modal-btn {
    padding: 10px 18px;
    display: inline-block;
    border: 1px solid var(--arch);
    color: var(--arch);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    background: transparent;
    font-size: 14px;
    /* letter-spacing: 2px; */
}

.Archana-modal-wrapper .Archana-modal-content .Archana-modal-btn:hover {
    color: #fff;
    background-color: var(--arch);
}

.Archana-modal-wrapper .Archana-modal-content .Archana-modal-btn i {
    font-size: 14px;
}

.Archana-modal-wrapper .Archana-modal-content .modal-header .btn-close {
    padding-right: 32px;
    padding-top: 10px;
    filter: invert(0);
}

/* -----------------------------------------
 founder-and-ceo 
 ----------------------------------------- */
.founder-banner {
    width: 100%;
    /* height: 650px; */
}

.founder-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* Prof. of Eminence (Dr.) Sanjeev P. Sahni */
.founder-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    border: 1px solid var(--primary-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
}

.founder-btn:hover {
    color: var(--body-color);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

.founder-btn i {
    font-size: 14px;
}

.founder-btn-box .founder-btn1 {
    background-color: var(--primary-color);
    color: #fff;

}

/* .founder-btn-box .founder-btn1:hover img {
    filter: invert();
    transition: all ease-in-out 0.4s;
}

.founder-btn img {
    width: 14px;
}

.founder-btn:hover img {
    border: 1px solid rgb(255, 238, 0);
    width: 14px;
    filter: invert();
    transition: all ease-in-out 0.4s;
} */

/* ------------------------------------------------
 founder-ceo-section
 ------------------------------------------------ */
.founder-ceo-section .statsContainer {
    margin: 2.5rem 0;
    padding: 3rem 0;
    text-align: justify;
    text-align-last: center;
    background-color: #fff;
}

.founder-ceo-section .statBox:not(:first-child) {
    border-left: 1px solid rgb(0 0 0 / 10%);
}


.founder-ceo-section .statBox .h2 {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.125rem;
}

.founder-ceo-section p {
    text-align: justify;
}

.founder-ceo-section .statBox p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ------------------------------------------
 books-publications
 ------------------------------------------ */
.books-publications {
    background-color: #ffffff;
}

.books-publications .behavioural-box .behavioural-img {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--clr);
}

.books-publications .behavioural-box .behavioural-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.books-publications .behavioural-box .behavioural-meta .behavioural-cat {
    text-transform: uppercase;
    font-size: 16px;
    /* font-weight: normal; */
    /* color: var(--clr); */
    color: var(--body-color);
}

.books-publications .behavioural-box .behavioural-content h3 {
    color: var(--clr);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.books-publications .behavioural-box .global-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
    border: 1px solid var(--clr);
}

.books-publications .behavioural-box .global-btn:hover {
    color: #fff;
    background-color: var(--clr);
}

.books-publications .behavioural-box .global-btn i {
    font-size: 14px;
}

/* ------------------------------------------------------------
 Testimonial
 ------------------------------------------------------------ */
/* .Testimonial-section {
    background-color: #fff;
} */


.hm-testimonials-box {
    height: 100%;
    background-color: #ffffff;
    padding: 3rem;
    position: relative;
    border-bottom: 2px solid hsl(from var(--tlc) h calc(s - 3) calc(l - 50));
    isolation: isolate;
    background-color: var(--tlc);
}

.hm-testimonials-box::before {
    content: '\275D';
    position: absolute;
    left: 10px;
    top: 0;
    font-size: 6rem;
    line-height: 1;
    pointer-events: none;
    opacity: 0.04;
    z-index: -1;
}

.hm-testimonials-box::after {
    content: '\275D';
    position: absolute;
    right: 10px;
    bottom: 0;
    font-size: 6rem;
    line-height: 1;
    pointer-events: none;
    opacity: 0.04;
    z-index: -1;
    transform: rotate(180deg);
}

.hm-testimonials-box p {
    font-size: 1.3rem;
}

.hm-testimonials-box .name-testi {
    display: flex;
    align-items: center;
    gap: 10px
}

.hm-testimonials-box .name-testi .testi-img {
    max-width: 60px;
    border-radius: 50%;
    overflow: hidden
}

.hm-testimonials-box .name-testi .testi-img img {
    width: 100%;
}

.hm-testimonials-box .name-testi p {
    font-weight: 700;
    margin-bottom: 0;
    color: hsl(from var(--tlc) h calc(s - 3) calc(l - 50));
}

.hm-testimonials-box .name-testi span {
    font-size: 12px;
}

/*--------------------------------------------------------------
scroll-top
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    width: 44px;
    background-color: var(--primary-color);
    color: #fff;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--blue-color), transparent 10%);
    color: #fff;
}

/* .scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
} */
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/* ---------------------------------------
corporate-counselling 
--------------------------------------- */
/* .corporate-counselling .corporate-contnet {
    background-color: #f5f5f5bf;
    padding: 30px;
} */

.corporate-top-para {
    /* font-size: 1.2rem; */
    text-align: justify;
}

/* .corporate-counselling b{
    color: var(--primary-color);
} */
.corporate-img-content {
    text-align: justify;
    margin-top: 40px;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

/* ---------------------------------------------------------
Dance Movement Therapy
--------------------------------------------------------- */
/* .dance-therapy {
    background-color: #f3f7ff;
} */

.dance-therapy .behavioural-box .behavioural-img {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--clr);
}

.dance-therapy .behavioural-box .behavioural-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.dance-therapy .behavioural-box .behavioural-meta .behavioural-cat {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--body-color);
}

.dance-therapy .behavioural-box .behavioural-content h3 {
    color: var(--clr);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.dance-therapy .behavioural-box .global-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
    border: 1px solid var(--clr);
}

.dance-therapy .behavioural-box .global-btn:hover {
    color: #fff;
    background-color: var(--clr);
}

.dance-therapy .behavioural-box .global-btn i {
    font-size: 14px;
}

/* ---------------------------------------------------------
dance-therapyTime
--------------------------------------------------------- */
.dance-therapyTime p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ----------------------------------------------------------
 global img style
 ---------------------------------------------------------- */
/* .hm-img-box {
    margin: 20px 0;
} */

.hm-img-box .hm-img-img {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--clr);
}

.hm-img-box .hm-img-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-img-box .hm-img-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.hm-img-box .hm-img-meta .hm-img-cat {
    text-transform: uppercase;
    font-size: 16px;
    /* font-weight: normal; */
    /* color: var(--clr); */
    margin-bottom: 0;
    color: var(--body-color);
}

.hm-img-box .hm-img-content h3 {
    color: var(--clr);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.hm-img-box .global-btn {
    padding: 10px 18px;
    display: inline-block;
    color: var(--body-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    /* letter-spacing: 2px; */
    border: 1px solid var(--clr);
    background: transparent;
}

.hm-img-box .global-btn:hover {
    color: #fff;
    background-color: var(--clr);
}

.hm-img-box .global-btn i {
    font-size: 14px;
}

/* -----------------------------------------------
 icon-box-global
 ----------------------------------------------- */
.global-icon-box {
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 2rem;
    background-color: var(--clr);
    /* border: 2px solid red; */
    flex-direction: column;
}

/*  .heading h2{
    font-size: 2.5rem;
}

 .heading p{
    font-size: 1.2rem;
} */

.global-icon-box .icons-box-img {
    width: 80px;
    height: 80px;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: hsl(from var(--clr) h calc(s - 3) calc(l - 50));
}

.global-icon-box .icons-box-img svg {
    fill: #fff;
    transition: all 300ms ease-in-out;
}

.global-icon-box:hover .icons-box-img svg {
    fill: none;
    stroke: #fff;
    stroke-width: 3px;
}

.global-icon-box .icons-box-img img,
.global-icon-box .icons-box-img svg {
    width: 100%;
    height: 100%;
}

.global-icon-box h5 {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.4;
    color: hsl(from var(--clr) h s calc(l - 50));
}

.global-icon-box p {
    margin-bottom: 0;
    /* color: hsl(from var(--clr) h s calc(l - 50)); */
}

.global-icon-box:hover i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
}

.icon-box-course {
    background-color: #dc3545;
}

.icon-box-course:hover {
    background-color: #2957a4;
}

/* global-banner */
.global-banner {
    background-color: var(--blue-color);
    padding: 3rem 0;
}

.global-banner .global-heading h2 {
    text-transform: uppercase;
    font-weight: 700;
    text-align-last: center;
    text-align: center;
    font-size: 2.2rem;
    color: #fff;
}

.list-group-item {
    list-style-type: disc;
    /* Default bullet style */
    margin-left: 20px;
    /* Indent the bullets */
}


/* -------------------------------------- 
anger-management
--------------------------------------  */
.global-service-ulbox {
    padding: 20px 0;
    margin-left: 20px;
}

.global-service-ulbox video {
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.global-service-ulbox li {
    padding-left: 0;
    line-height: 2;
    border: none;
    font-size: 1rem;
    /* text-transform: capitalize; */
}


.global-service-ulbox li::marker {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.global-service-ulbox li a {
    color: var(--blue-color);
}

.global-vdo {
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

.global-vdo .global-iframe {
    width: 100%;
    height: 675px;
    object-fit: cover;
}

/* width="100%" height="675" */
/* ----------------------------------------------------------------
 sumona-gallery
 ---------------------------------------------------------------- */
.sumona-gallery-item {
    overflow: hidden;
    position: relative;
}

.gll-img {
    height: 100%;
    overflow: hidden;
    background-color: #000;
    position: relative;
}

.gll-img a {
    height: 100%;
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.gll-img:hover a {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /* opacity: 0.5; */
}

/* 
.gall-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    }
    */

.gll-img .gall-overlay {
    position: absolute;
    color: white;
    font-size: 2rem;
    opacity: 0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000006e;
}

.gll-img:hover .gall-overlay {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.sumona-gallery img {
    width: 100%;
    height: 100%;
}


/* --------------------------------------------------
carrer
-------------------------------------------------- */
.appointment-section h3 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.appointment-section .account-block {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-image: url(../img/career/caree.jpg);
    position: relative;
    z-index: 1;
    object-fit: cover;
    /* height: 500px; */
}

.appointment-section .account-block::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #011c3aa6;
    z-index: -1;
}

.appointment-section .account-block .account-testimonial {
    text-align: center;
    color: #fff;
    height: 100%;
    padding: 2rem;
    text-align: start;
    display: flex;
    align-items: end;
}

.appointment-section .form-control-careers {
    border-radius: 50px;
    border: 1px solid rgba(77, 77, 77, 0.192);
}

.form-label-careers {
    font-size: 0.875rem;
    color: rgba(77, 77, 77, 0.822);

}

.appointment-section h4 {
    color: #fff;
    /* text-transform: uppercase; */
}

.appointment-section p {
    font-size: 0.9rem;
    text-align: start;
}

/*  */
.swiper {
    width: 100%;
    height: 100%;
}

.sibs-swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.sibs-swiper-slide h3 {
    color: var(--primary-color);
    /* color: var(--secondary-color); */
    font-size: 2.5rem;
    font-weight: 600;
}

.sibs-swiper-content {
    text-align: center;
}

.sibs-swiper-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}


/* make-appoint-form */
.make-appoint-form {
    padding: 50px 50px 0 50px;
}

/* news coverage */
/*
============================*/
.news-item {
    position: relative;
    overflow: hidden
}

.news-item:hover .news-overlay {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s ease 0s;
    top: 0px;
}

.news-item:hover .news-button a i {
    bottom: 0px;
    transition: all 0.4s ease 0s;
}

.news-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(34, 37, 58, 0.95);
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease 0s;
}

.news-overlay-text {
    text-align: center;
}

.news-overlay-text {
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

.news-overlay-text .news-button a i {
    color: #011e40;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid #f1c40f;
    line-height: 50px;
    bottom: -140px;
    position: relative;
    transition: all 0.4s ease 0s;
    background: #f1c40f;
}

.news-overlay-text .news-button a i:hover {
    background: #fff;
    border-color: #011e40;
    transition: all 0.4s ease 0s;
}

.news-load-more-btn {
    text-align: center;
    margin-top: 20px;
}

.news-load-more-btn a {
    background: #f58020;
    color: #011e40;
    display: inline-block;
    padding: 10px 26px;
    text-transform: capitalize;
    margin: 0px 10px;
    position: relative;
    z-index: 5;
    font-weight: 600;
    position: related;
    transition: all 0.4s ease 0s;
}

.news-load-more-btn a:hover {
    background: #f9ce2c;
}

.news-load-more-btn a::before {
    content: "\f178";
    font-family: fontawesome;
    float: right;
    top: 0px;
    position: relative;
    color: #011e40;
    padding-left: 10px;
    transition: all 0.4s ease 0s;
    margin-left: 10px;
}

/* report */
/* news-article */
.newsBox .inner {
    height: 100%;
    padding: 2rem;
    display: block;
    color: initial;
    border: 1px solid rgb(0 0 0 / 10%);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.date {
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-color);
}

.news-article h5 {
    /* text-transform: uppercase; */
    font-size: 1.15rem;
}

/* news-article */
/* professional-slide */
.professional-slide {
    text-align: center;
    font-size: 18px;
    background: var(--lightgray);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.professional-slide h3 {
    color: var(--primary-color);
    /* color: var(--secondary-color); */
    font-size: 2.5rem;
    font-weight: 600;
}

.professional-content {
    text-align: center;
}

.professional-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

/* Our 3-Session Program */
.our-session-program {
    height: 100%;
    background-color: #ffffff;
    padding: 3rem;
    position: relative;
    border-bottom: 2px solid hsl(from var(--tlc) h calc(s - 3) calc(l - 50));
    isolation: isolate;
    background-color: var(--tlc);
}

.our-session-program p {
    font-size: 1.3rem;
}

.our-session-program .name-testi {
    display: flex;
    align-items: center;
    gap: 10px
}

.our-session-program .name-testi .testi-img {
    max-width: 60px;
    border-radius: 50%;
    overflow: hidden
}

.our-session-program .name-testi .testi-img img {
    width: 100%;
}

.our-session-program .name-testi p {
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(from var(--tlc) h calc(s - 3) calc(l - 50));
}

.our-session-program .name-testi span {
    font-size: 12px;
}

/* customize swiper */
div[class^="swiper-button"] {
    color: #fff;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 300ms linear;
}

div[class^="swiper-button"].solid,
div[class^="swiper-button"]:hover {
    background-color: var(--blue-color);
    border-color: transparent;
}

div[class^="swiper-button"]::after {
    font-size: 16px;
}

.bottomControls {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.bottomControls.position-absolute {
    bottom: 2rem;
    width: 100%;
}

.bottomControls div[class^="swiper-"] {
    position: static;
    margin: 0 !important;
}

.bottomControls .swiper-pagination {
    width: max-content;
}

/* customize swiper */

/* contact  */
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-us .info {
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    overflow: hidden;
}

.contact-us .info h3 {
    font-weight: 600;
    font-size: 24px;
    color: var(--blue-color);
}

.contact-us .info p {
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-us .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid color-mix(in srgb, #000, transparent 90%);
}

.contact-us .info-item+.info-item a {
    color: #000;

}

.contact-us .info-item i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact-us .info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    /* color: var(--blue-color); */
}

.contact-us .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact-us .info-item p a {
    color: #000;
}

.contact-us input {
    border-radius: 50px;
    border: 1px solid rgba(77, 77, 77, 0.192);
}


/* .contact-us .form-group {
    padding-bottom: 8px;
}

.contact-us input[type=text],
.contact-us input[type=email],
.contact-us textarea {
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--primary-color), transparent 80%);
  } */

/* .contact-us input[type=text]:focus,
  .contact-us input[type=email]:focus,
  .contact-us textarea:focus {
    border-color: var(--accent-color);
  }
  
  .contact-us input[type=text]::placeholder,
  .contact-us input[type=email]::placeholder,
  .contact-us textarea::placeholder {
    color: color-mix(in srgb, var(--primary-color), transparent 70%);
  }
  
  .contact-us input[type=text],
  .contact-us input[type=email] {
    height: 48px;
    padding: 10px 15px;
  } */

.contact-us textarea {
    padding: 10px 12px;
    height: 150px;
}

.contact-us button[type=submit]:hover {
    background: color-mix(in srgb, var(--primary-color) 90%, black 15%);
}


/* ---------------------------------------------------
Blogs
--------------------------------------------------- */
.blogMainHeading{
    padding: 1.6rem 0;
    /* border: 1px solid red; */
}
.blogMainHeading h1{
    font-weight: bold;
    font-size: 1.75rem;
    text-transform: capitalize;
}
/*  */

.blogBox .inner {
    display: block;
    font-size: 13px;
    height: 100%;
    border-radius: var(--primary-radius);
    background-color: var(--lightgray);
    transition: all 300ms ease-in-out;
}

.blogBox .inner:hover {
    color: var(--body-color);
    transform: translateY(-5px);
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%)
}

.blogBox .inner .img-fluid {
    position: relative;
    overflow: hidden;
}

.blogBox .inner .img-fluid img {
    border-radius: var(--primary-radius);
    width: 100%;
    object-fit: cover;
}

.blogBox .inner .blog-details {
    padding: 1rem;
}

.blogBox .inner .blog-details ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.blogBox .inner .blog-details ul li {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid;
    line-height: 1;
    font-size: 10px;
    text-transform: uppercase;
    display: flex;
    gap: 5px;
    color: var(--body-color);
}

.blogBox .inner .blog-details ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.blogBox .inner .blog-details ul li i {
    color: var(--primary-color);
}

.blogBox .inner .blog-details .h6 {
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1rem;
    display: block;
    text-transform: capitalize;
    /* border: 1px solid red; */
}

.blogBox .inner:hover .blog-details p {
    text-decoration: 1px underline var(--primary-color);
}

.blogBox .inner .blog-details p {
    margin-bottom: 0;
    color: var(--body-color);
}
.table td{
    padding: 5px;
}

/* ---------------------------------------
 blogDetail 
 --------------------------------------- */
.blogDetail-page .inner {
    padding: 2rem;
    background-color: #fff;
}

.blogBanner {
    margin-bottom: 1.5rem;
}

.blogBanner img {
    width: 100%;
    object-fit: cover;
}

.courtesy {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: .875em;
}

.courtesy span:not(:last-child),
.courtesy .blogProprofileMainbox span {
    padding-right: 1rem;
    border-right: 1px solid rgb(0 0 0 / 10%);
}

.blogProprofileMainbox {
    gap: 1rem;
    align-items: center;
    display: flex;
}

.blogProfileImg {
    width: 40px;
}

.blogProfileImg img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.blogTextarea img {
    margin-bottom: 1rem;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.blogTextarea em{
    font-size: 0.813rem;
}

.blogDetail-page .heading .h3 {
    font-size: 1.5rem;
}

.blogheading {
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 15px;
}
.blogheading h4{
    font-weight: bold;
}

.blog-subheading {
    margin-bottom: 20px;
    margin-top: 15px;
    font-weight: bold;
}

.global-service-ulbox ol li::marker {
    color: var(--primary-color);
    font-size: 0.813rem;
}

/* Blogs */

/* Testimonials */

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.hm-logoContainer {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.brand-logos {
    width: auto;
    height: auto;
    margin: 0 3rem;
    width: 150px;
    position: relative;
    flex-wrap: nowrap;
}

.brand-logos img {
    width: 100%;
}

.brand-logos p {
    width: 100%;
    line-height: 1.2;
    font-size: 12px;
    margin-top: 7px;
}

/* button */
.readmore {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 1rem;
}

.readmore .button {
  text-transform: uppercase;
  border-radius: 50px;
  color: #000;
  position: relative;
  display: inline-block;
  text-align: center;
  min-width: 150px;
  padding: 1rem 1.3rem;
  text-decoration: none;
  overflow: hidden;
  font-size: 0.8rem;
  cursor: pointer;
  vertical-align: middle;
  z-index: 1;
  border: 0;
  background: var(--blue-color);
  color: #FFF;
  border: 1px solid var(--blue-color);
  transition: color 0.3s ease;
  line-height: 1;
}

.readmore .button:hover {
  color: var(--blue-color);
  background: transparent;
}

.readmore .button.white {
  color: #000;
  background: var(--white);
  color: var(--blue-color);
  border: 1px solid var(--white);
}

.readmore .button.white:hover {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.readmore .button.outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.readmore .button.outline:hover {
  border: 1px solid var(--white);
  color: var(--blue-color);
  background: var(--white);
}