@font-face {
    font-family: 'Montserrat-Bold';
    font-style: Normal;
    font-display: swap;
    src: url('../font/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url('../font/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Medium';
    font-style: Normal;
    font-display: swap;
    src: url('../font/Montserrat-Medium.ttf') format('truetype');
}


@font-face {
    font-family: 'Montserrat-Regular';
    font-style: Normal;
    font-display: swap;
    src: url('../font/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'BarlowCondensed-Bold';
    font-style: Normal;
    font-display: swap;
    src: url('../font/BarlowCondensed-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'DancingScript-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url('../font/DancingScript-SemiBold.ttf') format('truetype');
}


html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}



/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --themeColor: #3676ba;
    --themeSecondColor: #001413d6;
    --fontColor: #000;
    --headingFont: 'Montserrat-Bold';
    --headingFontSize: 35px;
    --headingFontWeight: 600;
    --headingLineheight: 50px;
    --bodyFont: 'Montserrat-Regular';
    --paraFontsize: 17px;
    --paraFontLineheight: 25px;
    --paraFontWeight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--bodyFont);
}

html,
body {
    overflow-x: hidden;
}

.mt-20 {
    margin-top: 20px;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

.bg-grey {
    background: #f5f5f5;
}


.bg-blue {
    background: var(--themeColor);
}
.text-blue
{
    color: var(--themeColor);
}

.bg-green {
    background: var(--themeSecondColor);
}


.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

.dropdownMain .dropbtn.active, .navbarMain a.active {
    color: var(--themeColor);
    font-weight: 600;
    position: relative;
}

p,
ul,
ol,
address,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active,
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
    outline: 0;
}

p {
    font-family: var(--bodyFont);
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-weight: var(--paraFontWeight);
    text-align: justify;
}

a:hover,
a {
    text-decoration: none;
}

.form-control:focus {
    background-color: #fff;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
    border: 0;
}

li {
    list-style: none;
}


.padd-top-bottom {
    padding: 80px 0;
}

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

.padd-bottom {
    padding-bottom: 50px;
}


img {
    max-width: 100%;
    height: auto;
}



@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}

.scroll-margin-top {
    scroll-margin-top: 150px
}


header.site-header.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0 1.1875rem 2.375rem rgb(0 0 0 / 0%), 0 0.9375rem 0.75rem rgb(0 0 0 / 6%);
}

header.site-header .inner-Logo {
    display: none;
}

header.site-header.navbar-fixed .inner-whiteLogo {
    display: none;
}

header.site-header.navbar-fixed .inner-Logo {
    display: block;
}


header.site-header {
    position: fixed;
    z-index: 2;
    width: 100%;
}

header.site-header.sticky .whiteLogo {
    display: none;
}

.menuWrap .dropdownMain i {
    font-size: 13px;
    margin-left: 5px;
}

header.site-header.sticky .blackLogo {
    display: block;
}

header.site-header.navbar-fixed .logobox {
    padding-bottom: 0px;
}



.navbarMain.onlyDesktop li:last-child i {
    margin-right: 10px;
}


.menuWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 0%;
    padding-right: 0%;
    justify-content: space-between;
}

.menuListing.sub-menus ul li a {
    color: #000;
}

/*.menuListing.sub-menus {
    padding-left: 38px;
    padding-bottom: 20px;
}*/

.menuListing.sub-menus ul {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    /*margin-bottom: 35px;*/
    justify-content: space-between;
}

.menuListing.sub-menus ul li {
    flex: 0 0 100%;
    margin: 0px 0%;
}

.menuListing.sub-menus ul li a {
    color: #262626;
    padding: 10px;
    border-bottom: 1px solid #f7f7f730;
    width: 100%;
    text-align: left;
    color: #fff;
}

.menuListing.sub-menus ul li a:hover {
    background: #1c5da1;
}

.menuListing.sub-menus ul li a:first-child {
    padding: 10px;
}


.menuheading.menu-img img {
    width: 100%;
}

.menuheading.menu-img {
    padding: 0;
}

.dropDownInnerMnb,
.navbarMain ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: revert;
    flex-wrap: wrap;
}

/*.innerheader .dropdownMain .dropbtn,*/
/*.innerheader .navbarMain a,*/
/*.navbarMain a:hover {*/
/*    color: #fff;*/
/*}*/

.innerheader .dropdownMain .dropbtn,
.innerheader .navbarMain a,

.hasslefree-part {
    background: var(--themeColor);
    padding: 20px 50px;
}

/*.navbarMain a:hover {*/
/*    color: #fff;*/
/*}*/

/*.navbarMain a:after {*/
/*    background: #fff;*/
/*}*/

.hasslefree {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.last-pross img {
    width: 20%;
    margin-right: 20px;
}

.last-pross {
    width: 30%;
    display: flex;
    align-items: center;
}


.dropdownMain {
    float: left;
    overflow: hidden;
}

.dropdownMain-content .header {
    padding: 1rem;
    color: #111;
}

.logobox a,
.logobox a img {
    width: 200px;
}

header.site-header .whiteLogo {
    display: block;
}

header.site-header .blackLogo {
    display: none;
}

header.site-header.navbar-fixed .blackLogo {
    display: block;
}

header.site-header.navbar-fixed .whiteLogo {
    display: none;
}

header.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1.1875rem 2.375rem rgb(0 0 0 / 0%), 0 0.9375rem 0.75rem rgb(0 0 0 / 6%);
    animation: 15s infinite gradient;
    z-index: 999;
    padding: 0.625rem 0;
    transition: 0.3s ease-in-out;
}

header.site-header.sticky .dropdownMain .dropbtn,
header.site-header.sticky .navbarMain a {
    color: #585858;
    font-weight: 500;
}

.navbarMain a,
.dropdownMain .dropbtn {
    transition: 0.2s;
}

.dropdownMain .dropbtn,
.navbarMain a {
    color: #000;
    position: relative;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
    text-transform: capitalize;
}

.menuListing ul {
    display: block;
    padding: 0;
}


.dropdownMain .dropbtn {
    margin: 0;
    font-weight: 500;
}


header.site-header.navbar-fixed {
    top: -7.5rem;
}


#myHeader.hide {
    top: 0rem;
}

#myHeader {
    width: 100%;
    z-index: 100;
    transition: all .3s ease;
}


.dropdownMain-content {
    display: none;
    position: absolute;
    background-color: var(--themeColor);
    width: 240px;
    z-index: 1;
    top: 100%;
}

header.site-header.navbar-fixed .dropdownMain-content {
    top: 100%;
}

.dropdownMain:hover .dropdownMain-content {
    display: block;
}

.dropdown_menu-mega {
    -webkit-animation: growDown 500ms ease-in-out forwards;
    animation: growDown 500ms ease-in-out forwards;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}


.navbarMain a {
    float: left;
    font-size: 14px;
    text-align: center;
    padding: 40px 15px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Montserrat-Medium';
}


.navbarMain ul li:first-child a {
    padding-left: 0;
}

.navbarMain .menuListing a:after,
.onlyMobile,
header.site-header.sticky .whiteLogo {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

header.site-header.navbar-fixed .menuWrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.navbarMain.onlyDesktop li:last-child a.donation {
    background: var(--themeColor);
    color: #fff;
    padding: 10px 17px;
    margin-top: 27px;
    margin-left: 22px;
    border-radius: 45px;
    font-weight: 600;
}

.navbarMain.onlyDesktop li:last-child a.donation img {
    width: 25px;
    margin-right: 10px;
}

.dropdownMain .dropbtn.active, .navbarMain a.active {
    color: var(--themeColor);
    font-weight: 600;
    position: relative;
}

.sidenav,
body,
html {
    overflow-x: hidden;
}

.container.custom-container {
    max-width: 1600px;
}

.bg-blue {
    background: var(--themeColor);
}

.inter-text-para h1 {
    font-size: var(--headingFontSize);
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineheight);
    color: var(--themeColor);
    margin-bottom: 40px;
    font-family: var(--headingFont);
}


.inter-text-para h2 {
    font-size: var(--headingFontSize);
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineheight);
    color: var(--themeColor);
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: var(--headingFont);
    text-transform: uppercase;
}


.inter-text-para h3 {
    font-size: 32px;
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineheight);
    color: var(--themeColor);
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: var(--headingFont);
}


.inter-text-para p {
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-weight: var(--paraFontWeight);
    text-align: justify;
}

.inter-text-para label {
    background: #545454;
    color: #fff;
    padding: 2px 15px;
    border-radius: 50px;
}

.sec-miss-viso ul {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.sec-miss-viso ul li {
    flex: 0 0 45%;
    position: relative;
}

.sec-miss-viso ul li:first-child::before {
    content: '';
    background: #f2f2f2;
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: -65px;
}

.mison-visn img {
    width: 210px;
}

.mison-visn
{
    margin-top: 50px;
}


.modl-pd {
    padding: 20px;
    float: left;
    width: 100%;
}

.teampopup .modl-pd {
    padding: 0;
}

.teampopup .inter-text-para h3 {
    font-size: 26px;
    margin-bottom: 0px;
    margin-top: 0;
}

.teampopup .inter-text-para label {
    margin-bottom: 20px;
}

.teampopup .scocial-link-found a {
    text-align: right;
    width: 100%;
    float: left;
}

.modl-pd p b {
    font-size: 25px;
    text-align: left !important;
}

.bannerPage img {
    width: 100%;
}


.banner-cont h1 {
    font-size: 89px;
    color: #fff;
    margin-bottom: 0;
    text-shadow: -8px 5px 15px #111;
    /*text-transform: capitalize;*/
    line-height: 100px;
    font-family: BarlowCondensed-Bold;
}

.banner-cont {
    position: absolute;
    bottom: 40%;
    padding: 0;
    /* left: 16%; */
    width: 100%;
    text-align: center;
}



.sec-team h3 {
    width: 100%;
    margin-top: 20px;
    color: #111;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.sec-team label {
    width: 100%;
    margin-top: 10px;
    color: #111;
}

.sec-team span {
    /* padding: 20px; */
    float: left;
    width: 100%;
    text-align: center;
}

.sec-team span i {
    font-size: 20px;
    color: var(--themeColor);
}


ul.team-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 48px;
}

ul.team-list li {
    flex: 0 0 24%;
}

.prof-linkedin
{
    text-align: center;
}

.prof-linkedin i {
    color: #fff;
    font-size: 25px;
    margin-top: 15px;
}


.others-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.others-list li {
    flex: 0 0 49.5%;
    margin-bottom: 20px;
}

.others-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 73%);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    background: var(--themeColor);
}
.others-card .item {
    position: relative;
    overflow: hidden;
    padding: 45px 30px;
}

.others-card .item:hover .overlay {
    bottom: auto;
    height: 100%;
    width: 100%;
}

.others-card .top-overlay {
    bottom: 100%;
    height: 0;
}

.others-card .item:hover .top-overlay {
    bottom: 0;
}

.others-card .bottom-overlay {
    top: 100%;
    padding: 20px;
}

.others-card .item:hover .bottom-overlay {
    top: 0;
    padding-top: 0;
}

.inter-text-para h3.title {
    font-size: 30px;
    color: #141414;
    text-transform: capitalize;
}

.others-list .inter-text-para h2 {
    font-size: 25px;
}

.others-list .inter-text-para h2 i {
    color: #000;
}

.bottom-overlay .inter-text-para h3 {
    font-size: 30px;
    text-transform: capitalize;
}

.others-list li:nth-child(odd) .others-card {
    background: #f2f2f2;
}

.others-list li:nth-child(even) .others-card {
    background: #c8e3ff;
}

.before-hover img {
    width: 25%;
}

/*.servicesList ul {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*}*/

.servicesList ul li {
    text-align: center;
    background: #f2f2f2;
    transition: 0.4s;
    float: left;
    width: 100%;
}

.serviceSlider .swiper-wrapper
{
    padding-bottom: 20px;
}

.sec-relService .servicesList ul li {
    flex: 0 0 19%;
    background: #ffffff;
}

.servicesList ul li:hover {
    box-shadow: 1px 7px 6px 0px #00000029;
}

.servicesList ul li:hover h3 {
    color: var(--themeColor);
}

.servicesList ul li a {
    float: left;
    width: 100%;
    padding: 20px 0;
}

.servicesList ul li img {
    width: 80px;
}

.servicesList .inter-text-para h3 {
    font-size: 17px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: 'Montserrat-SemiBold';
    margin: 0
}


.btn-service i {
    font-size: 25px;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
    color: var(--themeColor);
}

.enqury-form.sec-contact {
    padding-left: 50px;
}

.sec-enquiry .inter-text-para h2 {
    margin-top: 0px;
}

.contact-sec input[type="text"],
.contact-sec input[type="email"],
.contact-sec input[type="tel"],
.contact-sec input[type="file"],
.contact-sec select,
.contact-sec textarea {
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #00000061 !important;
    background: none;
    outline: none;
    color: #000;
    box-shadow: none;
    padding: 0.375rem 0;
    font-size: 15px;
    padding-left: 25px;
    padding-bottom: 10px;
}

input[type="file"] {
    padding-left: 38px;
}


.subbttn {
    background: var(--themeColor);
    border: none;
    color: #ffffff;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 7px 28px;
    position: relative;
    border-radius: 50px;
}

.subbttn:hover {
    background: #1b528d;
}

.subbttn i {
    position: absolute;
    right: -11px;
    font-size: 10px;
    color: #fff;
    background: var(--themeColor);
    border-radius: 50%;
    padding: 5px 5px;
    bottom: 18px;
    width: 20px;
    height: 20px;
    left: auto;
    top: 12px;
}


.form-group.contact-sec .btn-read-more span i {
    position: absolute;
    right: -11px;
    font-size: 10px;
    color: #fff;
    background: var(--themeColor);
    border-radius: 50%;
    padding: 5px 5px;
    bottom: 18px;
    width: 20px;
    height: 20px;
    left: auto;
    top: 12px;
}


.sec-contact .subhold.text-right {
    /* text-align: right; */
    float: right;
}

.subhold.text-right {
    text-align: right;
}

.form-group.contact-sec.submit-sec {
    flex: 0 0 100%;
    margin-bottom: 0;
}

textarea.form-control {
    background: transparent;
    color: #fff;
    min-height: calc(1.5em + 2.75rem + 6px);
    padding: 0;
    font-size: 15px;
    padding-left: 25px;
}

.form-control {
    background: transparent;
    color: #000;
}

.form-control:focus {
    background: transparent;
    color: #000;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 0.5;

    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
    opacity: 0.5;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
    opacity: 0.5;
}

.subhold.text-right {
    text-align: right;
}

.cont-us-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cont-us-form .contact-sec {
    flex: 0 0 32%;
}

.cont-us-form .contact-sec.msg-box {
    flex: 0 0 100%;
}

.form-group.contact-sec i {
    position: absolute;
    left: 0;
    top: 8px;
}

.contact-sec {
    margin-bottom: 50px;
    position: relative;
}

footer.sec-footer {
    background: var(--themeColor);
    padding-top: 45px;
}
.sec-ft-copyright {
    background: var(--themeSecondColor);
    padding: 12px 0;
}

.copyright-info {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #ffffff26;
    margin-top: 35px;
}

.copyright-info a {
    border-right: 1px solid #fff;
    padding: 0 10px;
    color: #fff;
    font-size: 14px;
}

.copyright-info a:last-child {
    border-right: 0px solid #fff;
}

.quote {
    font-family: 'DancingScript-SemiBold';
    font-size: 28px;
    line-height: 38px;
}

.sec-intro-inner .inter-text-para h1 {
    margin: 0;
    text-transform: capitalize;
}

.sec-intro-inner {
    padding: 30px 0;
}

.btn-inner-close a i {
    color: #fff;
    float: right;
    font-size: 50px;
}

.socialLinks a {
    color: #fff;
    font-size: 32px;
    margin-right: 15px;
}

.socialLinks {
    margin-top: 35px;
}

.quickLinks a {
    float: left;
    width: 100%;
    color: #fff;
    margin: 7px 0;
}

.footer-linksec h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 36px;
}

.quickLinks i {
    margin-right: 10px;
    font-size: 12px;
}

.quickLinks a {
    float: left;
    width: 100%;
    color: #fff;
    margin: 7px 0;
    text-transform: capitalize;
}

.quickLinks.extraLinks a {
    float: left;
    width: 50%;
}

.inter-text-para.left-para {
    padding-right: 130px;
}
.sec-enquiry .inter-text-para label {
    margin-bottom: 25px;
}

.sec-inspiration .inter-text-para p
{
    text-align: center;
}
.otherBoxImg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 185px;
    opacity: 0.2;
}

img.inner-service-img {
    filter: grayscale(1);
}

img.about-img {
    width: 100%;
    padding-left: 35px;
}


 .serviceSlider .swiper-pagination-bullet {
    background: #787474;
    opacity: 1;
    width: 10px;
    height: 5px;
    border-radius: 20px;
}

.serviceSlider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--themeColor);
    width: 25px;
    height: 5px;
    border-radius: 20px;
}
.boxlogo-footer img{
    border: 1px solid #ffffff4f;
}
.p-thank-100 {
    padding: 280px 0;
}
    
.pg-thankyou h1 {
    font-size: 65px;
    font-weight: var(--headingFontWeight);
    line-height: 80px;
    color: var(--themeColor);
    margin-bottom: 20px;
    font-family: var(--headingFont);
    text-transform: uppercase;
}

.pg-thankyou h2 {
    font-size: 35px;
    font-weight: var(--headingFontWeight);
    line-height: 50px;
    margin-bottom: 30px;
    font-family: var(--headingFont);
    text-transform: uppercase;
}

.btn-sec-thank {
    margin-top: 40px;
}

.btn-gohome a {
    background: var(--themeColor);
    color: #fff;
    padding: 10px 30px;
    margin-top: 27px;
    margin-left: 0;
    border-radius: 45px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
}
.btn-gohome a span{
    margin-left: 5px;
    font-size: 12px;
}

.inter-text-para.footer-add p {
    font-size: 16px;
    margin-top: 20px;
}

.partnersList .inter-text-para h3 {
    color: #545454;
    font-size: 23px;
}
.partnersList .inter-text-para img {
    width: 186px;
    margin-top: 35px;
}

ul.partnersList {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

ul.partnersList li {
    flex: 0 0 47%;
}

.quickLinks .income-tax span a {
    padding-left: 20px;
    font-size: 15px;
    position: relative;
}

.quickLinks .income-tax span a:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 6px;
    height: 6px;
    top: 9px;
    left: 0;
}

.sec-donate {
    padding-top: 150px;
}
.sec-donate .inter-text-para h1 {
    margin-bottom: 10px;
}

.sec-donate .inter-text-para h4 {
    font-size: 26px;
    font-weight: var(--headingFontWeight);
    line-height: 35px;
    color: var(--themeColor);
    margin-bottom: 10px;
    font-family: var(--headingFont);
}

.schloatship-accordion .accordion-button {
    color: #fff;
    background-color: #000;
    box-shadow: none;
    font-size: 22px;
    font-weight: 600;
    border-radius: 0;
}
.schloatship-accordion {
    margin-top: 50px;
}

.schloatship-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #545454;
    box-shadow: none;
    font-size: 22px;
    font-weight: 600;
    border-radius: 0;
}
.schloatship-accordion .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url('../images/down-arrow-wht.png');
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}
.schloatship-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('../images/down-arrow-wht.png');
    transform: var(--bs-accordion-btn-icon-transform);
}

.schloatship-accordion .accordion-item {
    border-radius: 0;
}

.schloatship-accordion .accordion-item {
    border: 0;
}

.schloatship-accordion .accordion-item {
    margin-bottom: 10px;
}

.map-btn {
    background: #fff;
    border: none;
    color: var(--themeColor);
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 7px 28px;
    position: relative;
    border-radius: 50px;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .container.custom-container {
        max-width: 1366px;
    }
    .banner-cont h1 {
        font-size: 75px;
        line-height: 85px;
    }
    .p-thank-100 {
        padding: 200px 0;
    }
}

@media (min-width: 1300px) and (max-width: 1399px) {
    .servicesList .inter-text-para h3 {
        font-size: 15px;
    }
    .inter-text-para.left-para {
        padding-right: 65px;
    }
    .footer-linksec h4 {
        font-size: 16px;
    }
    .quickLinks a {
        font-size: 14px;
    }
    .inter-text-para h2 {
        font-size: 30px;
    }
    .banner-cont h1 {
        font-size: 70px;
        line-height: 85px;
    }
    .banner-cont {
        bottom: 30%;
    }
    
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .servicesList .inter-text-para h3 {
        font-size: 15px;
    }
    .inter-text-para.left-para {
        padding-right: 65px;
    }
    .footer-linksec h4 {
        font-size: 16px;
    }
    .quickLinks a {
        font-size: 14px;
    }
    .inter-text-para h2 {
        font-size: 30px;
    }
    .banner-cont h1 {
        font-size: 70px;
        line-height: 85px;
    }
    .banner-cont {
        bottom: 50%;
    }
    .sec-miss-viso ul li {
        flex: 0 0 45%;
        position: relative;
    }
    
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .servicesList .inter-text-para h3 {
        font-size: 15px;
    }
    .inter-text-para.left-para {
        padding-right: 65px;
    }
    .footer-linksec h4 {
        font-size: 16px;
    }
    .quickLinks a {
        font-size: 14px;
    }
    .inter-text-para h2 {
        font-size: 30px;
    }
    .banner-cont h1 {
        font-size: 55px;
        line-height: 65px;
    }
    .banner-cont {
        bottom: 50%;
    }
    .sec-miss-viso ul li {
        flex: 0 0 45%;
        position: relative;
    }
    .serviceSlider .swiper-pagination-bullet {
        background: #787474;
        opacity: 1;
        width: 10px;
        height: 5px;
        border-radius: 20px;
    }
    
    .serviceSlider .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--themeColor);
        width: 25px;
        height: 5px;
        border-radius: 20px;
    }
    .logobox a, .logobox a img {
        width: 140px;
    }
    .navbarMain a {
        padding: 30px 7px;
        letter-spacing: 0px;
        font-size: 12px;
    }
    
    .navbarMain.onlyDesktop li:last-child a.donation {

        margin-top: 27px;
        margin-left: 22px;
    }
    .navbarMain.onlyDesktop li:last-child a.donation img {
        width: 20px;
        margin-right: 10px;
    }
    .inter-text-para p {
        font-size: 15px;
    }
    .servicesList ul li,
    .sec-relService .servicesList ul li {
        flex: 0 0 100%;
    }
    .serviceSlider .swiper-wrapper
    {
        padding-bottom: 20px;
    }
    .copyright-info a {
        font-size: 11px;
    }
    .sec-team h3 {
        font-size: 17px;
    }
    .sec-team p {
        font-size: 14px;
    }
    .others-list li .others-card
    {
        min-height: 500px;
    }
    .boxlogo-footer {
        margin-bottom: 49px;
    }
    .socialLinks {
        text-align: center;
    }
}





@media (max-width: 1024px) {
    .p-thank-100 {
        padding: 200px 0;
    }
    header.site-header.navbar-fixed {
        top: -175px;
    }

    header.site-header {
        padding-top: 15px;
    }

    header.site-header.navbar-fixed {
        padding: 10px 0;
    }

    .sideNaviMob {
        display: flex;
        justify-content: end;
        float: left;
        width: 100%;
        align-items: center;
    }

    .sideNaviMob span img {
        width: 45px;
    }

    .onlyMobile {
        display: block;
        width: 100%;
    }

    .mobmenuList ul {
        padding: 0 16px;
    }

    .navbarMain.onlyDesktop {
        display: none;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: 10px 16px;
        float: left;
        width: 100%;
    }

    .mobmenuList .accordion {
        float: left;
        width: 100%
    }

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 16px;
        width: 100%
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        background: var(--themeColor) !important;
        padding: 11px !important
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 11px 11px;
        font-weight: 700;
        font-size: 18px;
        background: #fff0;
        text-transform: capitalize;
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: initial;
        box-shadow: none;
        font-weight: 700
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        padding: 5px 0;
        border-bottom: 1px solid #bdbdbd94;
        position: relative;
        float: left;
        width: 100%;
        background: #fff0;
        font-weight: 700;
        font-size: 15px;
    }

    .mobmenuList .accordion-button::after {
        background-size: 18px;
        transition: transform 0.2s ease-in-out;
        border: 1px solid #d5d5d5;
        padding: 12px;
        background-position: center;
    }

    .mobmenuList .accordion-button:not(.collapsed)::after {
        background-image: url(../images/down-arrow.png);
        transform: rotate(180deg);
    }

    .sidenav .subMenuList a {
        font-size: 16px;
        position: relative;
        padding-left: 16px;
        float: left;
        width: 100%;
        text-transform: capitalize;
    }

    .sidenav .subMenuList a::before {
        content: '';
        background: var(--themeColor);
        width: 6px;
        height: 6px;
        position: absolute;
        top: 17px;
        left: 0;
    }

    a.closebtn {
        position: absolute;
        right: 37px;
        top: 0;
        z-index: 999;
        width: 50px;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: #111;
        padding: 8px 11px;
        width: 100%;
        float: left;
        font-weight: 700;
        font-size: 18px;
    }


    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        right: 0;
        top: 24px;
        width: 50px;
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        right: 15px;
        top: 0;
        width: 60px;
    }

    .menuWrap {
        padding-left: 0%;
        padding-right: 0%;
    }

    .mobmenuList .socialLinks {
        display: flex;
        justify-content: center;
        float: left;
        width: 100%;
    }

    .mobmenuList .socialLinks a {
        color: var(--themeColor);
        font-size: 32px;
        margin-right: 0;
        padding: 0;
        text-align: center;
        width: 60px;
        float: initial;
    }

    .mobmenuList .accordion .accordion-item:last-child {
        border-bottom: 0;
    }
    a.donation {
        background: var(--themeColor);
        color: #fff;
        padding: 6px 12px;
        margin-top: 0px;
        margin-left: 0;
        border-radius: 45px;
        font-weight: 600;
        font-size: 13px;
        margin-right: 35px;
    }

    a.donation img {
        width: 22px;
        margin-right: 10px;
    }
   
    
}

@media (min-width: 992px) and (max-width: 1024px){
    .inter-text-para.footer-add p {
        font-size: 16px;
        margin: 40px 0;
        text-align: center;
    }
    
    .banner-cont h1 {
        font-size: 60px;
        line-height: 75px;
    }
    .banner-cont {
        bottom: 74%;
    }
    .others-card .item {
        padding: 25px 20px;
        min-height: 500px;
    }
    .sec-miss-viso ul li {
        flex: 0 0 45%;
    }
    .sec-miss-viso ul li:first-child::before {
        right: -50px;
    }
    .sec-team h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .servicesList ul li,
    .sec-relService .servicesList ul li {
        flex: 0 0 100%;
    }
    .serviceSlider .swiper-wrapper
    {
        padding-bottom: 20px;
    }
    .logobox {
        text-align: center;
        margin-bottom: 50px;
    }
    .socialLinks {
        margin-top: 35px;
        text-align: center;
    }
    .copyright-info a {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .banner-cont h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .banner-cont {
        bottom: 75%;
    }
    .inter-text-para h2 {
        font-size: 29px;
        line-height: 39px;
    }
    .quote {
        font-family: 'DancingScript-SemiBold';
        font-size: 26px;
        line-height: 36px;
    }
    .about-img,
    .genesis-img
    {
        margin-top: 50px;
    }
    .sec-miss-viso ul li {
        flex: 0 0 45%;
    }
    .sec-miss-viso ul li:first-child::before {
        display: none
    }
    ul.team-list {
        margin-top: 0px;
    }
    ul.team-list li {
        flex: 0 0 42%;
        margin-top: 56px;
    }
    .others-list li {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .servicesList ul li,
    .sec-relService .servicesList ul li {
        margin-bottom: 30px;
        flex: 0 0 100%;
    }
    .inter-text-para.left-para {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .enqury-form.sec-contact {
        padding-left: 0;
    }
    .others-card .item {
        padding: 20px 20px;
    }
    .others-link
    {
        display: none;
    }
    .copyright-info {
        display: block;
    }
    .copyright-info a {
        border-right: 0;
        padding: 0;
        font-size: 11px;
        float: left;
        width: 100%;
        text-align: center;
        margin-bottom: 7px;
    }
    .footer-linksec {
        float: left;
        width: 100%;
        margin-top: 29px;
    }
    .socialLinks {
        margin-top: 35px;
        text-align: center;
    }
    .logobox {
        text-align: left;
    }
    .inner-service-img {
        margin-top: 50px;
    }
    .sec-intro-inner .inter-text-para h1 {
        font-size: 28px;
    }
    .btn-inner-close a i {
        font-size: 45px;
    }
    .quickLinks.extraLinks a,
    .quickLinks a {
        font-size: 14px;
    }
    .quickLinks.extraLinks a {
        width: 100%;
    }
    .sec-contact .subhold.text-right {
        text-align: center;
        float: initial;
    }
    .sec-team h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }
    .footer-linksec h4 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .schloatship-accordion {
        padding-left: 0;
        margin-top: 50px;
    }
    .p-thank-100 {
        padding: 170px 0;
    }
    .pg-thankyou h1 {
        font-size: 35px;
        line-height: 47px;
        margin-bottom: 10px;
    }
    .pg-thankyou h2 { 
        font-size: 22px;
        line-height: 25px;
    }

    .padd-top-bottom {
        padding: 45px 0;
    }
    .banner-cont h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .banner-cont {
        bottom: 60%;
    }
    .inter-text-para h2 {
        font-size: 29px;
        line-height: 39px;
    }
    .quote {
        font-family: 'DancingScript-SemiBold';
        font-size: 26px;
        line-height: 36px;
    }
    .about-img,
    .genesis-img
    {
        margin-top: 50px;
    }
    .sec-miss-viso ul li {
        flex: 0 0 100%;
    }
    .sec-miss-viso ul li:first-child::before {
        display: none
    }
    ul.team-list {
        margin-top: 0px;
        gap: 0;
    }
    ul.team-list li {
        flex: 0 0 100%;
        margin-top: 56px;
    }
    .others-list li {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .servicesList ul li,
    .sec-relService .servicesList ul li {
        margin-bottom: 30px;
        flex: 0 0 100%;
    }
    .inter-text-para.left-para {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .cont-us-form .contact-sec {
        flex: 0 0 100%;
    }
    .enqury-form.sec-contact {
        padding-left: 0;
    }
    .others-card .item {
        padding: 20px 20px;
    }
    .others-link
    {
        display: none;
    }
    .copyright-info {
        display: block;
    }
    .copyright-info a {
        border-right: 0;
        padding: 0;
        font-size: 11px;
        float: left;
        width: 100%;
        text-align: center;
        margin-bottom: 7px;
    }
    .footer-linksec {
        float: left;
        width: 100%;
        margin-top: 29px;
    }
    .socialLinks {
        margin-top: 35px;
        text-align: center;
    }
    .logobox {
        text-align: left;
    }
    .inner-service-img {
        margin-top: 50px;
    }
    .sec-intro-inner .inter-text-para h1 {
        font-size: 28px;
    }
    .btn-inner-close a i {
        font-size: 45px;
    }
    .quickLinks.extraLinks a,
    .quickLinks a {
        font-size: 14px;
    }
    .sec-contact .subhold.text-right {
        text-align: center;
        float: initial;
    }
    ul.partnersList li {
        flex: 0 0 100%;
    }
    .partnersList .inter-text-para h3 {
        line-height: 33px;
    }
}

