@font-face {
    font-family: 'santoshi'; /* Name of the font */
    src: url('../font/Satoshi-Light.woff') format('woff'); /* Path to your .woff file */
    font-weight: 200; /* Optional */
}
@font-face {
    font-family: 'santoshi'; /* Name of the font */
    src: url('../font/Satoshi-Regular.woff') format('woff'); /* Path to your .woff file */
    font-weight: 400; /* Optional */
}
@font-face {
    font-family: 'santoshi'; /* Name of the font */
    src: url('../font/Satoshi-Medium.woff') format('woff'); /* Path to your .woff file */
    font-weight: 500; /* Optional */
}
@font-face {
    font-family: 'santoshi'; /* Name of the font */
    src: url('../font/Satoshi-Bold.woff') format('woff'); /* Path to your .woff file */
    font-weight: 700; /* Optional */
}
@font-face {
    font-family: 'santoshi'; /* Name of the font */
    src: url('../font/Satoshi-Black.woff') format('woff'); /* Path to your .woff file */
    font-weight: 900; /* Optional */
}
/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.row.align-items-center{
    align-items: center;
}
/* Columns */
[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* 12 Column System */
.col-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-2-half {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-8 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
}

.col-11 {
    flex: 0 0 91.666%;
    max-width: 91.666%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive Example */
@media (max-width: 768px) {
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.relative {
    position: relative;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.width-70{
    max-width:70%;
}
section {
    position: relative;
}

body {
    font-family: "santoshi";
    overflow-x: hidden !important;
    color: var(--themeDark);
    position: relative;
    font-weight: 300;
    letter-spacing: 0.5px;
    cursor: url('../img/cursor.webp'), auto;
    background: url('../img/web-bg.webp') repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

body.no-scroll {
    overflow-y: hidden;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

body:has(.menu-offcanvas.active) {
    overflow-y: hidden;
}

:root {
    --themeColor: #B31222;
    --themeColor2: #1F2559;
    --textColor: #3F3F46;
    --borderColor: #C2C2C4;
}

.gradient-heading {
    background: -webkit-linear-gradient(0deg,#09090B, var(--themeColor2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white {
    color: #fff !important;
}

.container {
    max-width: 1295px;
    position: relative;
    padding-inline: 20px;
    z-index: 4;
    margin: auto;
}

.container-full {
    max-width: 100%;
    padding-inline: 20px;
}

.special-heading {
    font-family: 'santoshi';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "santoshi";
}

a,
button,
svg {
    transition: .5s !important;
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding-left: 0 !important;
}

input {
    box-shadow: none;
    outline: none !important;
    color: #fff;
}

textarea {
    box-shadow: none;
    outline: none !important;
    color: #fff;
}

.theme-color {
    color: var(--themeColor2);
}

.text-bold {
    font-weight: 600;
}

.bi-btn {
    padding: 15px 30px;
    background-color: var(--themeColor);
    color: #fff;
    border: none;
    transition: .5s;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer !important;
    border-radius: 5px;
    box-shadow: inset 0px 0px 8px rgb(255 255 255 / 100%);
    font-family: "Roboto Mono", monospace !important;
    text-transform: uppercase;
    letter-spacing: -.5px;
    display: block;
    width: fit-content;
}

.bi-btn:hover {
    background-color: #000 !important;
    scale: .96;
}

.bi-btn.transparent {
    background-color: transparent;
    color: var(--themeDark);
}

.bi-btn.outline {
    border: 1px solid transparent
}

.bi-btn.outline:hover {
    border-color: var(--themeColor);
}

.bi-btn.tranparent {
    background-color: transparent;
    text-decoration: underline !important;
}

.bi-btn.tranparent.dark {
    color: var(--themeDark);
}

.bi-btn.white {
    background: #fff;
    color: var(--themeColor);
}
.bi-btn.alt {
    background-color: var(--themeColor2);
    color: #fff;
}

.bi-btn.white:hover {
    background-color: #000 !important;
    color: #fff !important;
}
.bi-btn.black{
    background-color: #272727;
}
.bi-btn.black:hover{
    background-color: var(--themeColor2) !important;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #fff;
}

.top-bar {
    text-align: center;
    background: url('../img/top-bar.png') no-repeat center top;
    background-size: cover;
    color: #fff;
    padding: 5px 10px 20px;
    margin-bottom: -10px;
}

.bi-hero {
    display: flex;
    align-items: center;   
    position: relative;
    z-index: 5;
}
.hero-wrapper {
    padding: 10px 50px 30px;
    border: 1px solid var(--borderColor);
    border-radius: 12px;
}
.hero-wrapper h1 {
    font-size: 5.308vw;
    letter-spacing: -4px;
    text-align: center;
    margin-bottom: 60px;
}

.btn-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}
.theme-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3em;
}

.hero-wrapper .row {
    margin-bottom: 60px;
}
.hero-wrapper .row:nth-child(3) {
    margin-bottom: 0px;
}
.hero-form {
    padding: 40px 25px;
    background-color: #272727;
    color: #fff;
}

.form-para {
    font-size: 18px;
    letter-spacing: -.77px;
    line-height: 1.2em;
    max-width: 60%;
    font-weight: 200;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.bi-form{
    position: relative;
    z-index: 2;
}
.bi-form label {
    display: none;
}

.bi-form input {
    height: 45px;
    text-indent: 15px;
    color: #fff;
    font-family: 'santoshi';
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 15px;
}

.bi-form input::placeholder {
    color: #fff;
}

.bi-form .col-12 {
    margin-top: 20px;
}

.bi-form .bi-btn {
    border-radius: 50px;
    color: #111;
    font-family: 'santoshi' !important;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-weight: 500;
    box-shadow: unset;
}

.bi-form .row {
    margin-bottom: 40px;
}
.image-wrapper {
    margin-bottom: -80px;
}
.hero-form {
    position: relative;
}

.hero-form:before {
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background: url('../img/form-overlay.png') no-repeat center;
    background-size: cover;
    top:-15%;
    left:-15%;
    border-radius:50%;
}
.theme-card {
    border-top: 1px solid var(--borderColor);
    border-bottom: 1px solid var(--borderColor);
}
.theme-wrapper {
    padding: 110px 0px;
    background-color: #F7F7F7;
    position: relative;
    border-left: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
}

.bi-about {
    padding-inline: 45px;
}

.pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    background-color: var(--themeColor);
}
.pin.tl{
    top:-8px;
    left:-8px;
}
.pin.tr{
    top:-8px;
    right:-8px;
}
.pin.bl{
    bottom:-8px;
    left:-8px;
}
.pin.br{
    bottom:-8px;
    right:-8px;
}
.highlight {
    padding: 12px 30px 12px 40px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgb(51 78 133 / 10%);
    font-family: 'santoshi';
    font-size: 14px;
    background-color: #fff;
    font-weight: 400;
    position: relative;
    display: block;
}

.highlight:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--themeColor2);
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}
.gradient-anim {
    padding: 2px;
    width: fit-content;
    border-radius: 50px;
    /* animation: gradientAnim 5s linear 0s infinite alternate; */
    display: inline-block;
    position:relative;
    overflow:hidden;
}
.gradient-anim:before {
    content:"";
    position:absolute;
    background: linear-gradient(0deg,rgba(144, 119, 255, 1) 10%, rgba(255, 255, 255, 0) 90%);
    width:100%;
    height:80%;
    border-radius: 50px;
    margin: auto;
    inset:0;
    animation: gradientAnim 10s linear 0s infinite ;
}

@keyframes gradientAnim{
    0%{
        rotate:0deg;
    }
    100%{
        rotate:360deg;
    }
}

.theme-heading {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1.2em;
    color: var(--textColor);
}

.top-content .theme-para {
    margin: 25px 0;
}
.service-wrapper {
    margin-top: 100px;
}

.service-item {
    background-color: #fff;
    padding: 40px 45px;
    border-radius: 20px;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon {
    padding: 10px;
    background-color: #EBEBEB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.service-top .para p {
    text-align: right;
    font-size: 16px;
    line-height: 1.2em;
    color: #000;
    font-weight: 500;
}


.service-item .theme-heading {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2px;
    color: #09090B;
}
.service-item .theme-para {
    margin-top: 20px;
    font-weight: 100;
    line-height: 1.3em;
    font-size: 16px;
}

.count-num {
    margin-top: 30px;
    font-size: 9.375vw;
    line-height: 1;
    text-align: right;
    font-weight: 500;
    opacity: .05;
    position: absolute;
    right: 0;
    bottom: 0;
}

.service-item {
    position: relative;
    height: 440px;
    padding-right: 30px;
    padding-left: 30px;
    margin-top: 30px;
}
.bi-testimonial{
    padding: 120px 0 0;
}
.bi-testimonial .heading-wrapper{
    text-align: center;
}
.review-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}
.top-content.centered .row {
    flex-direction: column;
    align-items: center;
}

.top-content.centered .row .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
}

.top-content.centered {
    text-align: center;
    
}

.bi-portfolio {
    padding: 120px 0;
}

.top-content.centered .theme-para {
    max-width: 65%;
    margin-inline: auto;
}
.portfolio-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.top-content.centered .theme-heading {
    margin-top: 30px;
}
.bi-pricing {
    padding: 0 50px;
}
.package-wrapper {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 30px;
    margin-top: 50px;
}

.package-item {
    width: 33%;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    transition: .5s;
}

.package-name {
    font-size: 22px;
    margin-bottom: 20px;
    transition: .5s;
}

.package-price {
    margin: 30px 0;
    font-size: 40px;
    font-weight: 600;
    transition: .5s;
}

.package-item hr {
    border-color: var(--borderColor);
    border-style: solid;
    transition: .5s;
}

.package-list {
    margin-top: 30px;
    margin-bottom: 60px;
    list-style: disc;
    padding-left: 25px !important;
    transition: .5s;
}

.package-list li {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
    transition: .5s;
}

.package-item .bi-btn {
    width: 100%;
    text-align: center;
    background-color: #111;
    transition: .5s;
}

.package-item:hover {
    background-color: var(--themeColor2);
    color: #fff;
}
.package-item:hover hr{
    border-color: rgb(15 15 15 / 30%);
}
.package-item:hover .bi-btn{
    background-color: #fff;
    color: #000;
}
.package-item .bi-btn:hover{
    background-color: #fff !important;
    color: #000;
}
.package-item {
    height: 585px;
    position: relative;
}

.package-item .bi-btn {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    max-width: 80%;
    margin-inline: auto;
}
.package-item.featured {
    background-color: var(--themeColor);
    color: #fff;
}
.awards-list-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    margin-top: 50px;
    border-right: 1px solid var(--borderColor);
}

.awards-item {
    flex: 1 0 50%;
    width: 50%;
    padding: 30px 50px 30px 50px;
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: var(--borderColor);
    transition: .5s;
}

.awards-item:hover {
    background-color: #fff;
}

.awards-item h4 {
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.awards-item .theme-para {
    color: #3F3F46;
    font-size: 17px;
}
.bi-awards .btn-wrapper {
    justify-content: center;
    margin-top: 80px;
}
.platform-slider{
    margin-top:50px;
    margin-bottom: 120px;
}

.platform-item {
    padding: 40px;
    border-radius: 24px;
    background-color: #fff;
    margin: 0 9px;
    height: 240px;
    opacity:.3;
    /*width:286px !important;*/
}

.platform-item .theme-heading {
    margin: 20px 0 50px;
    font-weight:500;
    transition:.6s;
    height: 50px;
}

.platform-item .theme-para {
    font-weight:200;
    color:#626262;
    line-height:1.5em;
    transition:.6s;
}
.platform-item{
    transition:.6s;
}
.platform-item.slick-slide.slick-current.slick-center {
    /*width:286px !important;*/
}
.platform-item.slick-slide.slick-current.slick-active {
    /*width:590px !important;*/
    opacity:1;
}

.platform-item.slick-slide .theme-para{
    opacity: 0;
    width: 0;
    height: 240px;
}

.platform-item.slick-slide.slick-current.slick-active .theme-para{
    opacity: 1;
    width: 100%;
    height: 240px;
}
.platform-item.slick-slide .theme-heading{
    font-size: 30px;
}
.platform-item.slick-slide.slick-current.slick-active .theme-heading{
    font-size: 40px;
}
.footer-form{
    padding-inline: 6.458vw;
}
.footer-form input {
    width: 27%;
    background-color: #fff;
    color: #111;
    border-radius: 50px;
    box-shadow: 0 5px 24px rgb(0 0 0 / 06%);
    height: 55px;
}

.footer-form {
    margin-top: 50px;
    padding-bottom: 70px;
}

.footer-form .row {
    gap: 10px;
    justify-content: s;
}

.footer-form input::placeholder {
    color: #6d6868;
}

.footer-form .bi-btn {
    background-color: #272727;
    color: #fff;
    box-shadow: 0 5px 24px rgb(0 0 0 / 10%);
}
.footer-form:before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: url('../img/contact.png') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 210px;
}

.faq-container {
    margin-top: 70px;
    text-align: center;
    font-family: 'santoshi';
    border-top: 1px solid var(--borderColor);
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-button {
  font-family: 'santoshi';
  text-align: center;
  background-color: transparent;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 24px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.faq-content {
  padding: 0 15px;
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
.faq-item {
    padding: 20px 10px;
}
.faq-content p {
  padding: 10px 0;
  margin: 0;
}
.faq-item .theme-para{
    max-width: 875px;
    margin: 25px auto;
    font-size: 16px;
    font-weight: 200;
    color: #3F3F46;
    line-height: 1.3em;
}
.testimonial-slider {
    margin-top: 120px;
}

.testimonial-item .theme-heading {
    text-align: center;
    max-width: 860px;
    margin-inline: auto;
    color: #09090B;
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 30px;
}

.testimonial-item img {
    margin-inline: auto;
    width: fit-content;
    display: block;
}

.author-box {
    padding: 20px;
    background-color: #eeeeee;
    position: relative;
    z-index: 3;
    margin-top: -50px;
    border: 1px solid var(--borderColor);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 0;
}

h5.author-name {
    font-size: 17px;
}

p.author-description {
    font-size: 14px;
}
.slick-arrow {
    border: none;
    width: fit-content;
    height: fit-content;
    position: absolute;
    bottom: 34px;
    right: 25px;
    z-index: 99;
    cursor: pointer;
}

.slick-arrow.slick-prev {
    right: unset;
    left: 25px;
    rotate: 180deg;
}
.footer-content {
    text-align: center;
}

.footer-content h2 {
    font-size: 4.792vw;
    font-weight: 500;
    letter-spacing: -5.5px;
    color: #3a3737;
    margin-bottom: 3;
}

.footer-content .bi-btn.black {
    margin-inline: auto;
    margin-top: -80px;
    position: relative;
}
.footer-logo{
    width: 100%;
}
.footer-copyright{
    background-color: #F5F5F5; 
    padding-bottom: 0; 
    padding-top: 0;
    border: 1px solid var(--borderColor);
}
.copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.copyright-text {
    flex: 1;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #71717A;
}

.copyright-text a {
    color: #71717A;
}
.copyright-text.border {
    border-left: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
}
.footer-copyright {
    margin-top: -5px;
}


#modal {
    display: none;
    position: sticky;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    width: 100vw;
    height: 100vh;
    z-index: 9999
}

#modal .modal-content {
    width: 100%;
    max-width: 600px;
    background: #111;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgb(2 6 23 / .2);
    padding: 20px;
    position: relative
}

#modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px
}

.modal-header {
    position: absolute;
    right: 20px
}

.modal-header h3 {
    display: none
}

.modal-body p {
    color: #fff;
    font-size: 24px
}

p#modal-price-number {
    margin-top: 10px
}

button.close-modal {
    background-color: #fff0;
    border: none;
    color: #fff;
    font-size: 30px;
    font-weight: 100!important;
    font-family: 'Urbanist';
    height: fit-content;
    line-height: 1
}

p#modal-price-number {
    font-weight: 600;
    font-size: 40px
}

p#modal-price-number sub {
    font-size: 20px;
    font-weight: 200;
    position: relative;
    bottom: 8px
}

.opacity-0 {
    opacity: 0
}

.modal-footer .bi-btn {
    margin-top: 20px
}

.package-price-wrapper.d-none {
    display: none
}

.modal-content .bi-form label {
    display: none!important
}

.modal-content .bi-form input {
    margin-bottom: 20px
}

.modal-body {
    text-align: center
}

.modal-body p {
    margin-bottom: 30px
}

.modal-content .bi-form input {
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #fff;
    font-family: 'Halyard_Display'
}

#modal .modal-content {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    border: 1px solid #ffffff2b
}

.modal-content .bi-form textarea {
    width: 100%;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #fff;
    font-family: 'Halyard_Display';
    font-weight: 400
}

.modal-body .modal-footer .bi-btn {
    background-color: var(--themeColor2);
    color: #fff;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0
}

.modal-body .modal-footer {
    width: 100%;
    text-align: center
}
.modal-content input {
    margin: 10px 0;
    border-color: rgb(255 255 255 / .4) !important;
    font-family: 'santoshi' !important;
}

.modal-content .bi-form {
    font-family: 'santoshi' !important;
}
.modal-content textarea {
    margin-top:10px;
    font-family: 'santoshi' !important;
    text-indent: 15px;
    color: #fff;
    font-family: 'santoshi';
    width: 100%;
    background-color: transparent;
    border: none;
    border: 1px solid rgb(255 255 255 / .4) !important;
    font-size: 15px;
    padding-top:15px;
}
.modal-content textarea::placeholder {
    color: #fff;
}

.modal-content .bi-form .bi-btn{
    color: #fff;
    width: 100%;
    border-radius:0px !important;
}
/* Modal initial hidden state */
#modal {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none; /* Prevent interaction when hidden */
}

/* Modal visible state (fade-in + zoom-in) */
#modal.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto; /* Allow interaction when visible */
}

/* Modal closing state (fade-out + zoom-out) */
#modal.close {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none; /* Disable interaction while closing */
}
.header-wrapper img {
    max-width: 190px;
}
.hero-form {
    border-radius: 15px;
}

.image-wrapper {
    margin-bottom: -65px;
}
.service-item {
    transition: .5s;
}
.service-item:hover {
    background-color: var(--themeColor)
}

.bi-platforms .modal-footer .bi-btn {
    margin-top: 0;
}

.bi-platforms .row {
    align-items: center;
}
.awards-item {
    position: relative;
}
.awards-item  .num {
    font-size: 3vw;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 900;
    opacity: .1;
}
.bi-testimonial {
    padding: 70px 0 0;
}

.testimonial-slider {
    margin-top: 70px;
}
.bi-testimonial .top-content.centered img {
    max-width: 150px;
    margin-top: 30px;
    margin-bottom: -40px;
}
img.five-star {
    max-width: 200px;
}
.inner-modal-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: start;
    padding: 20px;
    background-color: #000000;
    border-radius: 20px;
    gap: 30px;
}

.inner-modal-wrapper .img-wrapper img {
    height: 530px;
    border-radius: 20px;
}

#modal .modal-content {
    min-height: 100% !important;
    display: flex;
    align-items: center;
    text-align: left !important;
    justify-content: start;
    max-width: 510px !important;
}

.modal-body {
    text-align: left;
}

#modal .modal-header {
    align-self: flex-start;
}

button.close-modal {
    padding: 7px 14px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    font-weight: 900 !important;
    cursor:pointer;
}
.modal-body p {
    font-size: 44px;
    font-weight: 500;
    max-width:78%
}
.author-img img {
    max-width: 65px;
    border-radius: 50%;
}
.package-list {
    height: 200px;
    overflow-y: auto;
}