/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&family=Heebo:wght@100..900&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #1A5AA1;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "DM Sans", sans-serif;
}

section {
    position: relative;
    padding: 4rem 0;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3 {
    font-family: "DM Sans", serif;
}

h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: transparent;
    font-size: 0.9375rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    display: inline-block;
    padding: 0.9em 1.2em;
    border-radius: 500px;
    line-height: normal;
    border: 1px solid #FFFFFF;
}

.btnblue {

    color: var(--primary);

    border: 1px solid var(--primary);
}

a.themeBtn i {
    transform: rotate(328deg);
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.mainHead {
    font-size: 3.75rem;
    font-weight: 400;
    font-style: italic;
    color: #000;
    font-family: "DM Serif Display", serif;
}

.subHead {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1A5AA1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Heebo", serif;
    background: #CDE5FF;
    padding: 0.25rem 0.75rem;
    margin: auto;
    width: fit-content;
    overflow: hidden;
}

:is(.subHead, .mainHead) .char {
    font-family: inherit;
}

.mainHead .char {
    display: inline !important;
}


/* NAV HEADER CSS */

header {

    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 40px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

li.nav-item .themeBtn {
    background: transparent;
    color: #1A5AA1;
    font-size: 1.125rem;
    border: 1px solid #1A5AA1;
    border-radius: unset;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 992px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}


.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}


.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    bottom: 50% !important;
    transform: rotate(88deg);
    right: inherit;
    left: 54rem !important;

}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    margin: 0 !important;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: "";
    width: 30px;
    aspect-ratio: 1;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    /* left: 0; */
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    background: var(--white);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    transform: translate(-50%, -50%) scale(1);
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 80px;
    line-height: 1.25;
    font-weight: 400;
    text-transform: capitalize;
}

.main-slider h3 {
    margin: 0;
    color: var(--white);
    font-size: 55px;
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-family: "DM Serif Display", serif;
}



/* !MAIN HERO SLIDER CSS */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */


/* mission-section */
.mission-content h2 {
    font-size: 3.75rem;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #939393;
    -webkit-text-fill-color: white;
}

.mission-content h3 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.mission-content p {
    font-size: 22px;
    font-weight: 400;
    color: #606060;
    line-height: 1.2;
    width: 90%;
}

.mission-content {
    margin-top: 4rem;
    position: relative;
}

.mission-content::before {
    position: absolute;
    content: "";
    background: #8D8A8A;
    width: 1px;
    height: 90px;
    left: 31%;
    top: -17%;
}

.mission-content.missioncnt2 {
    margin-top: 0;
    margin-bottom: 3rem;
}

.mission-content::before {
    position: absolute;
    content: "";
    background: #8D8A8A;
    width: 1px;
    height: 80px;
    left: 31%;
    top: -13%;
}

.mission-content.missioncnt2::before {
    position: absolute;
    content: "";
    top: 77%;
}

.mission-content.missioncnt2 {
    position: relative;
}

.mission-top {
    text-align: center;
    margin-bottom: 2rem;
}

section.mission-section {
    padding: 3.75rem 0;
}

/* mission-section */


/* transform-sec */
.transform-wrap {
    border: 1px solid #DFDFDF;
    position: relative;
    height: 41rem;
}

.transform-wrap figure {
    position: relative;
}

.tranfrom-cntnt {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.tranfrom-cntnt h3 {
    font-size: 40px;
    font-weight: 400;
    color: #000;
}

.tranfrom-cntnt p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    width: 80%;
    margin: auto;
}

.trnfrm1mg {
    position: absolute;
    top: 2rem;
    right: 22px;
    border-radius: 8px 8px 8px 285px;
}


.transform-wrap figure img {
    opacity: 0;
    transition: 0.5s ease;
}

.transform-wrap::before {
    position: absolute;
    content: "";
    background: #1a5aa1db;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s ease;
}

.tranfrom-cntnt a {
    margin-top: 1rem;
    opacity: 0;
}

.transform-wrap:hover::before {
    opacity: 1;
}

.transform-wrap:hover figure img {
    opacity: 1;
}

.transform-wrap:hover .tranfrom-cntnt h3 {
    color: #fff;
}

.transform-wrap:hover .tranfrom-cntnt p {
    color: #fff;
}

.transform-wrap:hover .tranfrom-cntnt a {
    opacity: 1;
}

/* transform-sec */


/* leading-sec */
h2.mainHead span {
    font-style: normal;
    font-family: 'DM Sans';
    display: inline !important;
}

.leading-cntnt p {
    font-size: 20px;
    color: #606060;
    line-height: 1.6;
}

section.leading-section {
    padding: 2rem 0;
}

section.leading-section .mainHead {
    position: relative;
}

section.leading-section .mainHead::before {
    position: absolute;
    content: "";
    background: #000;
    width: 150px;
    height: 0px;
    bottom: 2rem;
    right: 38%;
}

/* leading-sec */


/* about-section */
.about-content p {
    font-size: 20px;
    color: #606060;
    line-height: 1.6;
    width: 90%;
}

.about-content .subHead {
    background: #fff;
    margin: 0;
}

.yearsabt h2 {
    font-size: 168px;
    font-weight: bold;
    color: #1A5AA1;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 1rem;
}

.yearsabt h2 span {
    font-size: 2rem;
    font-style: italic;
    font-family: 'DM Serif Display';
}

.yearsabt {
    margin: 2rem 0 0 5rem;
}

.about-section {
    position: relative;
}

.about-section::before {
    position: absolute;
    content: "";
    background: #CDE5FF;
    width: 48%;
    height: 880px;
    bottom: 6rem;
}

.about-section figure img {
    position: relative;
    z-index: -1;
}

figure.abtfig {
    position: relative;
}

figure.abtfig a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 14rem;
    color: #c7c2c2a3;
    background: rgb(255 255 255 / 63%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: auto;
    font-size: 1.75rem;
}

/* about-section */


/* videosec */
figure.playfigure {
    position: relative;
}

figure.playfigure a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border: 1px solid #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: auto;
}

/* videosec */


/* serviving-sec */
.choose-top {
    text-align: center;
    margin-bottom: 4rem;
}

section.choose-section {
    padding: 1rem 0 0 0;
}

.choose-cntnt h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
}

.choose-cntnt p {
    font-size: 20px;
    color: #606060;
    line-height: 1.5;
    width: 90%;
    margin-left: auto;
}


.choose-wrap {
    text-align: end;
    margin-top: 42px;
}

.choose-wrap.choosewrap2 {
    text-align: start;
}

.choose-wrap.choosewrap2 .choose-cntnt p {
    margin-left: 0;
    width: 90%;
}

/* serviving-sec */


/* touch-secton */
.touch-secton {
    background: url(../images/touchbg.webp)center/cover no-repeat;
    padding: 11rem 0;
}

/* touch-secton */

/* podcast */
.podcast-cntnt {
    background: rgb(205 229 255 / 30%);
    padding: 41px;
    border: 1px solid #D9D9D9;
    border-radius: 0 0 12px 12px;
}

.podcast-cntnt h4 {
    font-size: 12.5px;
    color: #20282D;
    margin: 0 2.5rem 1rem;
    position: relative;
}

.podcast-cntnt h2 {
    font-size: 22px;
    font-weight: 500;
}

.podcast-cntnt p {
    font-size: 20px;
    color: #606060;
    line-height: 1.25;
}

.podcast-cntnt a {
    color: #223035;
    font-size: 2rem;
}

.podcast-cntnt h4::before {
    position: absolute;
    content: "";
    background: #000;
    width: 34px;
    height: 1px;
    left: -39px;
    top: 6px;
}

/* podcast */


/* touch-section */
.touch-cntnt {
    text-align: center;
}

form.newsletterform {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #223035;
}

form.newsletterform input.form-control {
    height: 5rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding-left: 1.5rem;
    font-size: 0.935rem;
    color: var(--black);
}

form.newsletterform input.form-control:focus {
    box-shadow: none;
}

form.newsletterform input.form-control::placeholder {
    color: #223035;
    font-size: 0.9375rem;
}

form.newsletterform .btn {
    color: #223035;
    font-size: 0.9375rem;
}

/* touch-section */

/* contact-section */


.contactForm input {
    width: 100%;
    height: 59px;
    border-bottom: 1px solid #85979B;
    margin-bottom: 1.125rem;
    background: transparent;
    border-right: unset;
    border-left: unset;
    border-top: unset;
    border-radius: unset;
    outline: unset !important;
    box-shadow: unset !important;
}

.contactForm textarea {
    width: 100%;
    border-bottom: 1px solid #85979B;
    margin-bottom: 1.125rem;
    resize: none;
    background: transparent;
    border-right: unset;
    border-left: unset;
    border-top: unset;
    border-radius: unset;
    outline: unset !important;
    box-shadow: unset !important;
}

.contactForm input::placeholder {
    font-size: 12px;
    color: #85979B;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
}

.contactForm textarea::placeholder {
    font-size: 12px;
    color: #85979B;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
}

form.contactForm.contact-form {
    margin-top: 2rem;


}

form.contactForm.contact-form .form-control:focus {
    background: transparent;
}

textarea.form-control::placeholder {
    font-size: 12px;
    color: #03251E;
    font-family: "DM Sans", sans-serif;
}

form.contactForm.contact-form button.themeBtn {
    background: transparent;
    border-color: #1A5AA1;
    color: #fff;
    background: #1A5AA1;
}

form.contactForm.contact-form button.themeBtn i {
    transform: rotate(328deg);
}

.contact-right p {
    font-size: 20px;
    line-height: 1.5;
    color: #606060;
}

.contact-right .subHead {
    margin-left: 0;
}

/* contact-section */

/* patnre-sec */
.patner-section {
    padding-bottom: 0;
}

ul.patner-list {
    display: flex;
    align-items: center;

}

ul.patner-list li {
    width: 100%;
    height: 177px;
    border: 1px solid #D9D9D9;
    border-left: none;
    /* padding: 60px 90px; */
    display: grid;
    place-items: center;
}

ul.patner-list li:last-child {
    border-right: none;
}

ul.patner-list li img {
    /* width: 180px; */
    /* aspect-ratio: 3/2; */
    /* object-fit: contain; */
}


/* patnre-sec */


/* review-sec */
.reviews-wrap p {
    font-size: 24px;
    font-weight: 400;
    color: #606060;
    line-height: 1.4;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
    margin-bottom: 2rem;
}

.reviews-wrap h2 {
    font-size: 25px;
    font-weight: 500;
    color: #000;
}

.reviews-wrap h5 {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #20282D;
    margin: 0;
    font-family: 'Heebo';
}

.reviews-wrap {
    border: 1px solid #D9D9D9;
    padding: 55px 90px;
    background: transparent;
    border-radius: 25px;
}

.swiper.talentSlider {
    margin-right: -20rem;
    padding-left: 2rem;
}

.review-right h2 {
    font-size: 25px;
    font-style: italic;
    font-family: 'DM Serif Display';
}

.review-right .subHead {
    margin-left: 0;
    margin-bottom: 5rem;
}

.review-right p {
    font-size: 20px;
    font-weight: 400;
    color: #606060;
    line-height: 1.2;
}

img.img-fluid.quote11 {
    position: absolute;
    left: -2rem;
    top: 3rem;
}

.talents .swiper-button-prev:after,
.talents .swiper-button-next:after {
    font-family: 'Font Awesome 5 Pro';
    font-size: 28px;
}

.talents .swiper-button-prev:after {
    content: '\f177';
}

.talents .swiper-button-next:after {
    content: '\f178';
}

.talents .swiper-button-next,
.talents .swiper-button-prev {
    background: transparent;
    width: 50px;
    height: 50px;
    color: #062A26;
    border-radius: unset;
    transition: 0.5s ease-in-out;
    border: 1px solid #CDE5FF;
    top: 80%;
    border-radius: 160px;
}

.talents .swiper-button-next:hover,
.talents .swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--white);
}

.talents .swiper-button-next {
    left: 20%;

}

.talents .swiper-button-prev {
    left: 17%;
}

section.team-behind.talents {
    padding-bottom: 6rem;
}


.swiper.talentSlider .swiper-slide.swiper-slide-active .reviews-wrap {
    background: #cde5ff8a;
    border-color: #1A5AA1;
}

/* review-sec */


/* footer css start */

footer {
    background: #001833;
    position: relative;
    padding: 6rem 0 0;
    z-index: 1;
}

footer:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/foterbg-right.webp) no-repeat top right/ cover;
    width: 60.3%;
    z-index: -1;
}

.footer-left p {
    font-size: 1.25rem;
    color: var(--white);
    line-height: 28px;
    margin: 0.6rem 0 1.5rem;
}

.footer-left .d-flex ul {
    display: flex;
    align-items: flex-start;
    gap: 21px;
}

.footer-left .d-flex ul li h5 {
    font-size: 1.25rem;
    color: #85979B;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    margin: 0 0 1rem;
}

.footer-left .d-flex ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--white);
}

.footer-left .d-flex ul li a i {
    font-size: 1.2rem;
}

.footer-left .d-flex ul li a+a {
    margin-top: 10px;
}

.subscribe-flex ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3.94rem;
}

.subscribe-flex ul li h2 {
    font-size: 25px;
    color: #CDE5FF;
    margin: 0 0 1.2rem;
}

.subscribe-flex ul li p {
    font-size: 1.25rem;
    color: #ffffffdd;
    font-weight: 300;
    line-height: 27px;
}

.subscribe-flex ul li a {
    display: table;
    white-space: nowrap;
    font-size: 1.25rem;
    color: #ffffffdd;
    font-weight: 300;
}

.subscribe-flex ul li a+a {
    margin-top: 6px;
}

.subscribe-form {
    position: relative;
    margin: 4.3rem 0 0;
}

.subscribe-form input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    font-size: 0.9375rem;
    padding: 1rem 0;
    font-weight: 300;
}

.subscribe-form input::placeholder {
    color: var(--white);
}

.subscribe-form button {
    background: #002043;
    border: 0;
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

.subscribe-form button i {
    transform: rotate(45deg);
}

.copyright {
    background: #011E3E;
    padding: 2rem 0;
    margin-top: 5rem;
}

ul.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.footer-social li a {
    width: 22px;
    height: 22px;
    background: #85979B;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #002043;
    font-size: 12px;
}

p.copyrght {
    text-align: center;
    font-size: 0.9375rem;
    color: #85979B;
    margin: 0;
}

ul.terms {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

ul.terms li a {
    font-size: 0.9375rem;
    color: #85979B;
    font-weight: 400;
    border-right: 1px solid rgb(255 255 255 / 10%);
    display: inline-block;
    padding: 0 22px;
}

ul.terms li:last-child a {
    padding-right: 0;
    border-right: 0;
}

/* footer css end */
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

li.nav-item .themeBtn i {
    transform: rotate(19deg);
}

li.nav-item .themeBtn:hover {
    background: var(--primary);
    color: #fff;
}

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

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

/* INNER CSS START */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 80px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    text-align: center;
    font-family: DM sans;
    line-height: 1.2;
}

.innerBan {
    position: relative;
}

section.about-choose {
    padding: 120px 0;
}

.invididual-content .themeBtn {
    color: #000000;
    border: 1px solid #000000;
}

.invididual-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: #606060;
    width: 88%;
}

.invididual-sec {
    padding: 6.25rem 0;
}

.invididual-sec .subHead {
    margin-bottom: 23px;
}

.podcast-page .podcsat-wrap {
    margin-bottom: 50px;
}

.podcast-page {
    padding: 100px 0 50px;
}

.about-mission {
    padding-bottom: 0;
}

section.invididual-sec .mainHead {
    font-size: 40px;
}

section.invididual-sec figure img {
    width: 100%;
}

.invididual-content {
    padding-left: 2rem;
}

/* INNER CSS END */