/*-----------------------------------------------------------------------------------

    Theme Name: Ownthemind
    Author: Rajesh Prajapati
    Version: 1.0

-----------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&display=swap');
@font-face {
    font-family: 'flatlion';
    src: url('../fonts/flatlion.ttf') format('truetype');
}
:root {
    --bs-primary: #DECCFF;
    --bs-primary-rgb: 222 204 255;
    --bs-secondary: #FFBADC;
    --bs-secondary-rgb: 255 186 220;
    --bs-purple: #5B5198;
    --bs-light-orange: #FFF8F2;
    --bs-dark: #020417;
    --bs-gray: #676767;
    --bs-text: #676879;
    --bs-white: #FFFFFF;
    --font-primary: "Mona Sans", serif;
    --font-secondary: "Anton", sans-serif;
    --font-script: "flatlion", cursive;
    --bs-opacity-1: 0.1;
    --bs-opacity-2: 0.2;
    --bs-opacity-3: 0.3;
    --bs-opacity-4: 0.4;
    --bs-opacity-5: 0.5;
    --bs-radius-md: 14px;
}
html {
    scroll-behavior: auto !important;
}
body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--bs-text);
    background-color: var(--bs-white);
    overflow-x: hidden !important;
    transition: all .3s ease-in-out;
}
::selection {
    color: rgb(10, 12, 0);
    text-shadow: none;
    background: var(--bs-primary);
}
a {
  display: inline-block;
  text-decoration: none !important;
}
a:hover {
    text-decoration: none !important;
}
span {
    display: inline-block;
}
ul, ol {
    list-style: none;
    padding: 0px;
}
.ul-list li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 30px;
}
.ul-list li:last-child {
    margin-bottom: 0px;
}
.ul-list li:before {
     content: "\f192";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 2px;
    left: 0px;
    color: var(--bs-purple);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var( --font-secondary);
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-dark);
    margin: 0;
}
h1 {
    font-size: 64px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 40px;
}
h4 {
    font-size: 36px;
}
h5 {
    font-size: 28px;
}
h6 {
    font-size: 22px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-60 {
    margin-top: 60px;
}
.border-radius {
    border-radius: var(--bs-radius-md);
}
.btn {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: var(--bs-radius-md);
    color: var(--bs-white);
    transition: all .3s ease-in-out 0s;
}
.btn-primary {
    background-color: var(--bs-purple);
    border-color: var(--bs-purple);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.btn-check:checked + .btn-primary,
.btn-primary:hover, .btn-primary.active,
.btn-primary.show, .btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    color: var(--bs-purple);
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}
.btn-secondary {
    color: var(--bs-purple);
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}
.btn-secondary:active,
.btn-secondary:active:focus,
.btn-secondary:active:hover,
.btn-check:checked + .btn-secondary,
.btn-primary:hover, .btn-secondary.active,
.btn-primary.show, .btn-secondary:first-child:active,
:not(.btn-check) + .btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}
.btn-outline-primary {
    color: var(--bs-purple);
    background-color: var(--bs-white);
    border-color: var(--bs-purple);
}
.btn-outline-primary:active,
.btn-outline-primary:active:focus,
.btn-outline-primary:active:hover,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary:hover, .btn-outline-primary.active,
.btn-outline-primary.show, .btn-outline-primary:first-child:active,
:not(.btn-check) + .btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    color: var(--bs-white);
    border-color: var(--bs-purple);
    background-color: var(--bs-purple);
}
.btn-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-purple);
    padding: 0px !important;
    border: 0px !important;
}
.btn-link:hover {
    color: var(--bs-secondary);
}
main {
    position: relative;
    z-index: 5;
}
.section-area {
    padding: 120px 0px;
}
.main-title {
    margin-bottom: 80px;
}
.title-t2 {
    font-size: 74px;
    text-transform: uppercase;
    color: var(--bs-purple);
    margin-bottom: 10px;
}
.title-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    color: var(--bs-text);
    margin-top: 0;
    margin-bottom: 50px;
}
.text-justify {
    text-align: justify;
}
.section-action {
    margin-top: 40px;
}
.bg-gray {
    background-color: rgb(var(--bs-primary-rgb) / var(--bs-opacity-3));
}
.bg-purple {
    background-color: var(--bs-purple) !important;
}
.bg-primary {
    background-color: var(--bs-primary) !important;
}
.bg-secondary {
    background-color: var(--bs-secondary) !important;
}
.bg-light-orange {
    background-color: var(--bs-light-orange) !important;
}
.service-card-body li {
    color: #343333;
}
.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}
/* ---------- Preloader :: Start ---------- */
body.loaded {
    overflow: hidden !important;
    height: 100% !important;
}
.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    z-index: 99999999;
}

    .loader-wrap svg {
        position: absolute;
        top: 0;
        width: 100vw;
        height: 110vh;
        fill: var(--bs-purple);
    }
    .loader-wrap .loader-wrap-heading .load-text {
        color: #fff;
        font-size: 20px;
        font-weight: 200;
        letter-spacing: 15px;
        text-transform: uppercase;
        z-index: 20;
    }

.load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
}

    .load-text span:nth-child(1) {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .load-text span:nth-child(2) {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .load-text span:nth-child(3) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .load-text span:nth-child(4) {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .load-text span:nth-child(5) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .load-text span:nth-child(6) {
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
    }

    .load-text span:nth-child(7) {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

@-webkit-keyframes loading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* ---------- Preloader :: End ---------- */
/* ---------- Announcement Bar :: Start ---------- */
.announcement-bar {
    position: relative;
    z-index: 999;
    width: 100%;
    overflow: hidden;
    background-color: var(--bs-purple);
    transition: all 0.3s linear;
}
.announcement-bar-slider {
    display: flex;
    -webkit-animation: slide-har 40s linear infinite;
    animation: slide-har 40s linear infinite;
    transition: animation-duration 300ms;
}
.announcement-bar-item .announcement-bar-text {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: var(--bs-white);
    padding: 5px 0px;
    margin: 0px;
    white-space: nowrap;
}
.announcement-bar-item .announcement-bar-text:before {
    content: "\e5d6";
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    color: var(--bs-white);
    padding: 0px 15px;
}
@keyframes slider-har {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}
/* ---------- Announcement Bar :: End ---------- */
/* ---------- Navbar :: Start ---------- */
.main-header {
    position: absolute;
    left: 0;
    top: 0px;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
}
.navbar.nav-scroll {
    width: 100%;
    padding: 0;
    position: fixed;
    z-index: 999;
    top: -80px;
    padding: 15px 0px;
    background-color: var(--bs-white);
    border-bottom: 1px solid rgb(89 81 147 / 15%);
    -webkit-transition: -webkit-transform .8s;
    transition: -webkit-transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
}
.navbar.nav-scroll .logo img {
    width: 120px;
}
.navbar .logo {
    display: block;
}
.navbar .logo img {
    width: 140px;
}
.navbar .navbar-nav {
    margin-right: 30px;
}
.navbar .navbar-nav .nav-item {
    margin: 5px 20px;
}
.navbar .navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--bs-purple);
    padding: 0px;
    border-radius: 0px;
    transition: all .3sease-in-out;
}
.navbar .navbar-nav .nav-link:hover:after,
.navbar .navbar-nav .nav-link.active:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--bs-purple);
    border-radius: 2px;
    transition: all .3s ease-in-out;
}
.topnav .btn {
    padding: 14px 18px;
}
/* ---------- Navbar :: End ---------- */
/* ---------- Hero Section :: Start ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .img {
    height: 700px;
    border-radius: 10px;
}
.hero-section .hero-caption {
    position: relative;
    margin-top: 210px;
    z-index: 4;
}
.hero-section .hero-caption .hero-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 120px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--bs-purple);
    -webkit-transform: scaleX(1.5);
    -ms-transform: scaleX(1.5);
    transform: scaleX(1.5);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
}
.hero-section .hero-caption .hero-title.normal {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.hero-section .hero-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    color: var(--bs-text);
    margin-top: 30px;
    margin-bottom: 50px;
}
.hero-slider {
    position: relative;
    overflow: hidden;
}

.gallery-section {
    overflow: hidden !important;
}
.gallery-slider-thumb img {
    width: 100%;
    border-radius: var(--bs-radius-md);
}
/* ---------- Hero Section :: End ---------- */
/* ---------- About Section :: Start ---------- */
.intro-title {
    font-weight: 700;
    font-size: 26px;
    color: var(--bs-purple);
    margin-bottom: 20px;
}
.about-img {
    width: 100%;
    border-radius: var(--bs-radius-md);
}
.about-img-box {
    overflow: hidden;
    border-radius: var(--bs-radius-md);
}
.intro-text {
    text-align: justify;
}
/* ---------- About Section :: End ---------- */
/* ---------- Marquee Section :: Start ---------- */
.main-marquee {
	position: relative;
	padding: 25px 0px;
	overflow: hidden !important;
}
.main-marquee.primary-bg {
	background: var(--bs-purple);
	position: relative;
	z-index: 4;
}
.main-marquee .slide-har {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.main-marquee .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.main-marquee .slide-har.st1 .box {
	position: relative;
	-webkit-animation: slide-har 80s linear infinite;
	animation: slide-har 80s linear infinite;
}
.main-marquee .item h5 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 34px;
    color: var(--bs-white);
    white-space: nowrap;
    margin: 0px;
}
.main-marquee .item {
    padding: 0 80px !important;
    position: relative;
}
.main-marquee .item:after {
    content: '';
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    left: -20px;
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@-webkit-keyframes slide-har {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slide-har {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

/* ---------- Marquee Section :: End ---------- */



.card-01 {
    height: 100%;
    padding: 30px;
    background-color: var(--bs-white);
    border: 1px solid rgb(89 81 147 / 15%);
    border-radius: var(--bs-radius-md);
}
.card-01 .card-01-icon {
    display: flex;
    font-size: 28px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    padding: 12px;
    text-align: center;
    background-color: var(--bs-purple);
    color: #fff;
    border-radius: var(--bs-radius-md);
    margin-bottom: 60px;
}
.card-01 .card-01-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: var(--bs-dark);
    margin-bottom: 20px;
}
.card-01 .card-01-content {
    color: var(--bs-text);
}

/* ---------- Services :: Start ---------- */
.service-card {

}
.service-card-item {
    margin-bottom: 30px;
    border: 1px solid rgb(89 81 147 / 15%);
    border-radius: var(--bs-radius-md);
    background: #ede6ff;
}
.service-card-content {
    height: 100%;
    padding: 40px 40px 40px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.service-card .service-card-title {
    font-size: 42px;
    margin-bottom: 10px;
}
.service-card-item .service-card-img {
    padding: 20px;
}
.service-card-item .service-card-img img {
    border-radius: var(--bs-radius-md);
}
/* ---------- Services :: End ---------- */
/* ---------- Blogs :: Start ---------- */
.blogs-box .blogs-img-link {
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.blogs-box .blogs-tagdate {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.blogs-box .blogs-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--bs-dark);
    margin-bottom: 10px;
    height: 70px;
    overflow: hidden;
}
.blogs-box .blogs-title:hover {
    color: var(--bs-purple);
}
.blogs-box .blogs-action .btn > i {
    margin-left: 4px;
    transform: rotate(-45deg);
    transition: all 0.4s;
}
.blogs-box .blogs-action .btn:hover > i {
    margin-left: 4px;
    transform: rotate(-0deg);
    transition: all 0.4s;
}
.blogpage-section .blogs-box {
    margin-bottom: 30px;
}

.blogdetails-section .single-article {
    position: relative;
    padding: 20px;
    background-color: var(--bs-white);
    border: 1px solid rgb(89 81 147 / 15%);
    border-radius: var(--bs-radius-md);
}
.blogdetails-section .blog-post-media {
    margin-bottom: 20px;
}
.blogdetails-section .post-thumbnail img {
    border-radius: var(--bs-radius-md);
}
.blogdetails-section .blog-post-meta-list {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5px;
}
.blogdetails-section .blog-posted-by span {
    color: var(--bs-purple);
}
.blogdetails-section .blog-post-inner-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    color: var(--bs-dark);
    margin-bottom: 10px;
}

/* ---------- Blogs :: End ---------- */
/* ---------- Accordion :: Start ---------- */
.accordion-item {
    color: var(--bs-text);
    margin-bottom: 0px;
    border: 0px;
    border-radius: var(--bs-radius-md) !important;
}
.accordion-item .accordion-button {
    font-weight: 500;
    font-size: 18px;
    border-radius: var(--bs-radius-md);
    cursor: pointer;
    padding: 25px 0px;
    border-radius: 0px !important;
    border-bottom: 1px solid #DDDDDD;
    gap: 15px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: var(--bs-radius-md);
    border-top-right-radius: var(--bs-radius-md);
}
.accordion-button[aria-expanded="true"] {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-purple);
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgb(0 0 0 / 7%);
}
.accordion-item .accordion-body {
    padding: 20px 0px;
}
.accordion-item .accordion-body p:last-child {
    margin-bottom: 0px;
}
/* ---------- Accordion :: End ---------- */
/* ---------- Footer :: Start ---------- */
.main-foot {
    background-color: var(--bs-purple);
    padding: 50px 0px;
}
.main-foot .foot-inner {
    color: var(--bs-white);
    text-align: center;
    padding: 70px 0px 70px;
}
.main-foot .foot-title {
    font-family: var(--font-secondary);
    font-size: 120px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.foot-middle {
    padding-bottom: 60px;
}
.foot-hint {
    font-size: 14px;
    color: var(--bs-white);
    margin-bottom: 0px;
}
.foot-hint > a {
    color: var(--bs-white);
    text-decoration: underline !important;
}
.foot-hint > a:hover {
    color: var(--bs-primary);
    text-decoration: underline !important;
}
.foot-link {
    font-size: 14px;
    color: var(--bs-white);
    padding: 10px 0px;
    margin-right: 15px;
}
.foot-link-area .foot-link:last-child {
    margin-right: 0px;
}
.main-foot .copyright {
    font-size: 14px;
    color: var(--bs-white);
    padding: 10px 0px;
}
.main-foot .foot-social-list {
    display: flex;
    gap: 20px;
    justify-content: end;
    vertical-align: middle;
    margin-bottom: 0px;
}
.foot-social-list .social-link {
    font-size: 16px;
    color: var(--bs-white);
    width: 44px;
    height: 44px;
    line-height: 42px;
    border: 1px solid var(--bs-white);
    border-radius: 50%;
    text-align: center;
    transition: all .3s ease-in-out 0s;
}
.foot-social-list .social-link:hover {
    color: var(--bs-purple);
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}
/* ---------- Footer :: End ---------- */
/*----------- Scroll To Top :: Start -----------*/
.progress-wrap {
    position: fixed;
    bottom: 150px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    box-shadow: inset 0 0 0 3px rgb(var(--bs-primary-rgb)/var(--bs-opacity-1));
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: '\f077';
    text-align: center;
    line-height: 44px;
    font-size: 13px;
    font-weight: 900;
    color: var(--bs-secondary);
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: var(--bs-secondary);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
/*----------- Scroll To Top :: End -----------*/

.coming-section {
    text-align: center;
}
.coming-section .coming-img {
    width: 300px;
}
.coming-section .coming-title {
    font-size: 51px;
    text-transform: uppercase;
    color: var(--bs-purple);
    margin: 10px 0px;
}
.coming-section .coming-text {
   margin-bottom: 0px;
}


.mission-content {
    position: relative;
    margin-bottom: 80px;
}
.mission-hi {
    font-weight: 600;
    font-size: 30px;
    height: 60px;
    line-height: 60px;
    color: var(--bs-white);
    background-color: var(--bs-purple);
    padding: 0px 20px;
    border-radius: 4px;
    display: inline-block;
    position: absolute;
    top: -55px;
    left: 20px;
    transform: rotate(-24deg);
}
.mission-text {
    font-weight: 500;
    font-size: 38px;
    line-height: 1.6;
    color: var(--bs-dark);
    padding-right: 25px;
}
.dropcap-text::first-letter {
    padding-left: 140px;
}
.about-inner-text {
    position: relative;
    display: inline-block;
}
.about-inner-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 42px;
    line-height: 0.9;
    text-transform: uppercase;
    display: inline-block;
}
.about-inner-title span {
    font-weight: 300;
    font-size: 24px;
}
.about-img-icon {
    width: 40px;
    margin-right: 10px;
}
.offering-content {
    padding-left: 60px;
}
.offering-title {
    font-size: 42px;
    margin-bottom: 30px;
}
.offering-text {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 30px;
}
.offering-content .ul-list {
    margin-bottom: 0px;
}

.offering-section:nth-child(2n+1) .offering-content {
    padding-left: 0px;
    padding-right: 60px;
}

.testimonials-box {
    text-align: center;
    padding: 60px 80px;
    margin-bottom: 30px;
    border: 1px solid rgb(89 81 147 / 15%);
    border-radius: var(--bs-radius-md);
    background: #ede6ff;
}
.testimonials-box .testimonials-text {
    font-weight: 500;
    font-size: 20px;
    color: var(--bs-dark);
    font-style: italic;
}
.testimonials-box .testimonials-author {
    font-weight: 500;
    font-size: 18px;
    margin-top: 30px;
    color: var(--bs-purple);
}
.testimonials-wrap .col-lg-12:last-child .testimonials-box {
    margin-bottom: 0px;

}









.approach-title {
    font-weight: 500;
    font-size: 38px;
    line-height: 1.6;
    color: var(--bs-dark);
    margin-bottom: 30px;
}
.approach-text {
    margin-bottom: 40px;
}
.approach-box {
    margin-bottom: 40px;
}
.approach-para {
    margin-top: 20px;
}

.contact-info-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--bs-dark);
}
.contact-info-text {
    margin: 20px 0px;
}
.contact-info-email {
    margin-bottom: 30px;
}
.contact-email {
    font-weight: 600;
    font-size: 26px;
    color: var(--bs-purple);
    text-decoration: underline !important;
}
.contact-email:hover {
    color: var(--bs-dark);
    text-decoration: underline !important;
}
.contact-info-social {
    display: flex;
    gap: 30px;
}
.contact-info-social .contact-info-link {
    color: var(--bs-dark);
}
.contact-info-social .contact-info-link:hover {
    color: var(--bs-purple);
}



.form-group {
    margin-bottom: 20px;
}
.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--bs-dark);
}
.required {
    font-size: 20px;
    color: #d52424;
    line-height: 1;
}
.form-control {
    line-height: 34px;
    padding: 10px 20px;
    border-radius: var(--bs-radius-md);
}
.form-action .btn {
    padding: 16px 70px;
}
.form-group.field-error .form-control {
    border-color: #d52424;
    background-color: #fff3f3;
}
.form-group .text-danger {
    font-size: 14px;
}


.modal-header {
    position: relative;
    display: block;
    text-align: center;
    border: 0px;
    padding-bottom: 0px;
    padding: 50px 15px 0px;
}
.modal-header .modal-title {
    font-size: 34px;
}
.modal-header .modal-title-text {
    line-height: 1.4;
    margin: 10px 180px 0px;
}
.modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 15px;
    color: var(--bs-white);
    line-height: 1;
    background-image: none;
    background-color: var(--bs-purple);
    opacity: 1;
}
.modal-header .btn-close:hover {
    color: var(--bs-dark);
    background-color: var(--bs-primary)
}

.content-section .title-t3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
}
.content-section a {
   color: var(--bs-purple);
   text-decoration: underline !important;
}