@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --alt-font: "Nunito Sans", sans-serif; */
    --primary-font: "Montserrat", sans-serif;
}

*,
* button:focus {
    outline: 0;
    margin: 0;
}

html {
    font-size: 16px;
    scroll-padding-top: 150px;
}



body {
    position: relative;
    font-family: var(--primary-font);
    text-decoration: none;
    color: #034627;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden !important;
    font-optical-sizing: auto;
}

/* ::selection {
    background-color: #ffc808;
    color: white;
} */

main {
    position: relative;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px;
    padding: 0;
    letter-spacing: 0;
    font-weight: 700;
    color:#034627;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.375rem;
}

h2 {
    font-size: 3.438rem;
}

h3 {
    font-size: 2.375rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.35rem;
}

h6 {
    font-size: 1.15rem;
}

p {
    font-size: 1rem;
    font-family: var(--alt-font);
}

b,
strong {
    font-weight: 700;
}

/* .alt-font {
    font-family: var(--alt-font);
} */

section {
    position: relative;
    padding: 90px 60px;
    overflow: hidden;
}

.container-fluid {
    padding: 0;
    max-width: 1920px;
}

@media screen and (max-width: 992px) {
    section {
        padding: 30px 15px;
    }
}

.standard-btn {
    display: inline-block;
    outline: none;
    padding: 10px 30px;
    border: 1px solid #936531;
    color: #fff;
    cursor: pointer;
    transition: .3s linear;
    font-weight: 600;
    background: #936531;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
}

.call-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.call-btn a {
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
    background: #936531;
    font-weight: 600;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.call-btn path {
    background: #936531;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    fill: rgb(147, 101, 49);
    transition: .3s linear;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


header {
    position: relative;
    padding: 12px 60px;
    /* padding: 12px 140px; */
    width: 100%;
    left: 0;
    -moz-transition: transform 3s cubic-bezier(.25, .1, .25, 1);
    -ms-transition: transform 3s cubic-bezier(.25, .1, .25, 1);
    -o-transition: transform 3s cubic-bezier(.25, .1, .25, 1);
    -webkit-transition: transform 3s cubic-bezier(.25, .1, .25, 1);
    transition: transform 3s cubic-bezier(.25, .1, .25, 1);
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
    z-index: 999;
}


.header-btns{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
}

.theme-logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.theme-logo img {
       max-width: initial;
    width: auto;
    display: block;
    width: 250px;
    height: auto;
    object-fit: contain;
    object-position: center;
}

ul.btn-panel{
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 999; 
    list-style: none;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: right center;
}

ul.btn-panel li{
    display: inline-block; 
}

.btn-gallery {
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s linear;
    background: linear-gradient(90deg, #936531 0%, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #fff;
    cursor: pointer;
}

@media screen and (max-width: 767px){
    .theme-logo img {
        height: 70px;
    }
    .theme-logo{
        justify-content: center;
    }
    .header-btns{
        display: none !important;
    }
}
@media screen and (max-width: 575px){
    .theme-logo img {
        height: 50px;
    }
}



/* 1st Section  */

.hero-slider{
    position: relative;
    overflow: hidden;
}
.hero-slider .swiper-slide{
    max-height: 870px;
}
.hero-slider .swiper-slide img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

.swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #936531 0%, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.swiper-button-next {
    left: 70px;
    bottom: 40px;
    right: auto;
    top: auto;
}
.swiper-button-prev {
    left: 20px;
    bottom: 40px;
    right: auto;
    top: auto;
}

.swiper-button-next::after, .swiper-button-prev::after{
   display: none;
}

.swiper-button-next svg, .swiper-button-prev svg{
    fill: #ffffff;
    width: 36%;
}


@media screen and (max-width: 575px) {
    .swiper-button-next, .swiper-button-prev{
        display: none;
    }
}

.hero-text .title-text {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.svblogo {
    justify-content: start;
    align-items: flex-end;
    display: flex;
    padding-bottom: 20px;
}

.svblogo img {
    width: 124px;
    height: auto;
}

.specifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
    column-gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: start;
    padding-left: 30px;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #b0894f;
}

/* .spec-item:first-child{
    border-left: 0;
} */

.spec-item h2 {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 500;
}

.spec-item p {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    line-height: normal;
}

hr.solid {
    border-top: 7px solid #b0894f;
    width: 20%;
    margin: 30px auto;
    opacity: 1;
}

hr.solid-sm {
    border-top: 3px solid #b0894f;
    width: 5%;
    margin: 20px auto;
    opacity: 1;
}


.sec-logo {
    height: auto;
    max-width: 340px;
    margin: auto;
    margin-bottom: 60px;
}

.text-content {
    padding-left: 40px;
}

.text-content .diamond-icon-img {
    width: 16px;
    margin: 15px auto;
}

.text-content p {
    font-size: 1.25rem;
    line-height: 1.4;
}

    
.hero-section .content-wrapper {
    padding: 20px;
    margin-right: 60px;
}


.sec-sub-title {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-title {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-top: 15px;
    color: #034627;
}


@media screen and (max-width: 1500px) {

    .spec-item {
        padding-left: 20px;
    }

    .spec-item h2 {
        font-size: 3.25rem;
    }

    .spec-item p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 1200px) {
    .specifications {
        grid-template-columns: repeat(1, 1fr);
        margin: 40px 0;
    }
}

@media screen and (max-width: 992px) {
    .hero-section .content-wrapper {
        padding: 0 40px;
        margin-top: 20px;
        margin-right: 0;
    }
    .specifications {
        padding: 0 40px;
        grid-template-columns: repeat(2, auto);
        margin: 40px 0;
        row-gap: 40px;
    }
    .hero-text .title-text {
        font-size: 2.5rem;
    }

}

@media screen and (max-width: 767px){

    .spec-item {
        gap: 10px;
    }
    .spec-item h2 {
        font-size: 2.6rem;
    }
    .spec-item p {
        font-size: 0.8rem;
    }
}


@media screen and (max-width: 575px) {
    .hero-slider .swiper-slide img{
        min-height: 320px;
    }
    
    .hero-section .content-wrapper {
        padding: 0 20px;
        margin-top: 20px;
    }
    .hero-text .title-text {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .specifications {
        padding: 0 18px;
        grid-template-columns: repeat(1, 1fr);
    }

    .svblogo {
        padding-right: 20px;
    }

    .svblogo img {
        width: 94px;
    }

    .standard-btn, .btn-gallery {
        font-size: 0.9rem;
    }
    
}

section table {
    max-width: 560px;
    margin: 0 auto;
    border-collapse: collapse;
}

td {
    font-size: 0.9rem;
    border: 2px solid !important;
    border-color: #b0894f !important;
}

section table th {
    font-size: 1rem;
    max-width: 60px;
}

section table th,
td {
    padding: 10px 15px;
    line-height: 1.4;
    letter-spacing: 0px;
    font-weight: normal;
    text-align: left;
    color: #034627;
    font-weight: 400;
}

.colored_cell {
    background: linear-gradient(45deg, #b0894f, #f7c57d);
}

td.colored_cell {
    border-bottom: 2px solid #fff !important;
    font-weight: 500;
}

table td.last-row {
    border: none !important;
    font-size: 1.1rem;
    text-align: center;
}

table.table-2 th {
    font-size: 1rem;
    color: #b0894f;
}

table.table-2 td {
    font-size: 1.1rem;
    padding: 15px 15px;
}

table.no-border td {
    border-left: none !important;
    border-right: none !important;
}

section table.table-2 {
    width: 100%;
    max-width: 100% !important;
}

table.table-2 td {
    padding: 6px 0;
    font-size: 1rem;
    font-weight: 500;
    border: none !important;
}

table.table-2 td,
table.table-2 th {
    width: 50%;
}

table .table-title {
    color: #b0894f;
    font-size: 1.4rem;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
}

.text-content-box {
    padding: 0 50px;
    margin-bottom: 40px;
}

.text-content-box p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.text-content-box ul {
    list-style: inherit;
    padding-left: 40px;
}

.imgbox-sm {
    max-width: 600px;
}

.sub-title-2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.icon-text-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.icon-text-box.big{
    margin-bottom: 20px;
}
.icon-text-box.big img{
    width: 60px;
    height: 60px;
}
.icon_image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

.icon_desc p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
}
.icon-text-box.big .icon_desc p {
    font-size: 1.1rem;
}

.plants_sub_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.plants_sub_div img {
    width: 112px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.plants_sub_div p {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.title-and-logo-box {
    display: flex;
    align-items: center;
}

.title-and-logo-box img {
    width: 40%;
}



@media screen and (max-width: 992px) {
    hr.solid {
        border-width: 5px;
        margin: 20px auto;
    }
    .text-content {
        margin-top: 40px;
        padding: 0 14px;
    }
    .sec-logo {
        max-width: 280px;
        margin-bottom: 40px;
    }
    .text-content .diamond-icon-img {
        width: 12px;
        margin: 8px auto;
    }
    .text-content p {
        font-size: 1rem;
    }

    .sec-sub-title {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 1.8rem;
    }

    td {
        border-width: 1px !important;
    }
    table.table-2 td,
    table.table-2 th {
        width: 75%;
    }
    table.table-2 td{
        font-size: 0.9rem;
    }
    table .table-title {
        font-size: 1.2rem;
    }
    .text-content-box p {
        font-size: 0.9rem;
    }

    .icon_desc p {
        font-size: 0.9rem;
    }
    .icon_image img {
        width: 50px;
        height: 40px;
    }
    .icon-text-box.big .icon_desc p {
        font-size: 1rem;
    }
    .icon-text-box.big img{
        width: 60px;
        height: 60px;
    }

    .plants_sub_div img {
        width: 80px;
    }
    .plants_sub_div p {
        font-size: 0.8rem;
    }

}


@media screen and (max-width: 575px){
    p{
        font-size: 0.9rem;
    }
    .sec-logo {
        max-width: 200px;
        margin-bottom: 30px;
    }
    .text-content p {
        font-size: 0.9rem;
    }

    .sec-sub-title {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }

    .plants_sub_div p {
        font-size: 0.7rem;
    }

    section table th {
        font-size: 0.8rem;
    }

    td{
        font-size: 0.8rem;
    }

    table.table-2 td{
        font-size: 0.8rem;
    }

    table td.last-row {
        font-size: 0.9rem;
    }
    table .table-title {
        font-size: 1rem;
    }
    .text-content-box {
        padding: 0 14px;
        margin-bottom: 40px;
    }
    .text-content-box ul li {
        font-size: 0.9rem;
    }
    
    .icon-text-box.big img{
        width: 50px;
        height: 40px;
    }
    .icon-text-box.big .icon_desc p {
        font-size: 0.9rem;
    }

    .icon-text-box{
        gap: 6px;
    }
    .icon_image img {
        width: 45px;
        height: 30px;
    }
    .icon_desc p {
        font-size: 0.8rem;
    }
}

.news-articles h2 {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.8;
}

.news-articles h2 a {
    text-decoration: underline !important;
}

.news-articles h2:hover a {
    color: #AD8245;
    text-decoration: none !important;
}

.blog-item h2 {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.8;
}

.blog-item h2 a {
    text-decoration: underline !important;
}

.blog-item h2:hover a {
    color: #AD8245;
    text-decoration: none !important;
}



footer {
    padding: 50px 60px;
    background-color: #00000010;
}

.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 15px;
}

.social__item .social__icon {
    width: 42px;
    height: 42px;
    display: flex;
    background: #936531;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.rera-img {
    margin: 0 auto;
    width: 100px;
}

.copyright-detail {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright-text {
    margin-top: 30px;
    font-weight: 500;
    font-size: 0.9rem;
}

footer p a:hover {
    color: #936531;
}

footer a:hover {
    color: #936531;
}



.whatsapp_div {
    position: fixed;
    left: auto;
    right: 10px;
    bottom: 75px;
    z-index: 1000;
    height: 75px;
    width: 75px;
}


#back2top.active {
    bottom: 20px;
    visibility: visible;
    opacity: 1
}

#back2top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    z-index: 99;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

#back2top svg {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 7px;
    background: #936531;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    color: #fff;
    border-radius: 50%;
    pointer-events: none;
}

#back2top svg:hover,
.standard-btn:hover,
.btn-gallery:hover,
.social__item .social__icon:hover {
    animation: 3s infinite gradient;
    background-size: 200% 200%;
}

@keyframes gradient {

    0%,
    100% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

#gallery-1 {
    display: none;
    visibility: hidden;
}


.sticky-responsive-btns {
    position: fixed;
    align-items: center;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 9;
    display: none;
}

.sticky-responsive-btns a {
    position: relative;
    width: 50%;
    cursor: pointer;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    color: #fff;
    padding: 12px 12px 10px !important;
    font-size: 0.9rem !important;
    border-right: 1px solid #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    opacity: 1;
}

.sticky-responsive-btns a:last-child {
    border-right: none !important;
}


@media screen and (max-width: 992px){
    .news-articles h2, .blog-item h2 {
        font-size: 1.2rem;
    }

    footer {
        padding: 50px 20px;
        background-color: #00000010;
    }
}

@media screen and (max-width: 767px){
    .sticky-responsive-btns{
        display: flex;
    }

    #back2top{
        display: none;
    }

    .whatsapp_div {
        height: 55px;
        width: 55px;
    }
}
@media screen and (max-width: 575px){
    .news-articles h2, .blog-item h2 {
        font-size: 1rem;
    }
    .social__item .social__icon{
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .copyright-text {
        font-size: 0.75rem;
    }
    .copyright-detail{
        font-size: 0.9rem;
    }
    .sticky-responsive-btns a{
        font-size: 0.8rem !important;
    }
}







.modal-title {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.modal-dialog{
    margin: auto !important;
}

@media screen and (max-width:575px) {
    .modal-dialog{
        width: 88%;
        margin: auto !important;
    }
}

.theme-modal-card {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    background: #936531;
    border-radius: 0;
    border: none;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
}

.theme-modal-card.onload-modal{
    max-width: 700px;
}
.theme-modal-card.onload-modal .modal-body{
   padding: 12px;
}

.theme-modal-card .modal-body {
    border: 1px solid black;
    position: relative;
    overflow: visible;
    padding: 30px 12px;
    background-color: transparent;
}

.form-control {
    display: inline-block;
    width: 100%;
    border: none;
    padding: 8px 15px 8px 0;
    background-color: transparent !important;
    border-radius: 0;
    resize: none;
    color: #000000 !important;
    font-size: 0.9rem;
    border-bottom: 1px solid #000000 !important;
    box-shadow: none !important;
}

.modal .form-control{
    color: #fff !important;
    border-bottom: 1px solid #fff !important;
}

.modal .form-control::placeholder {
    color: white;
}

.form-control::placeholder {
    color: rgb(112, 112, 112);
}

.form-label {
    display: none;
}

.form-check label {
    color: #0a0a0a !important;
    font-size: 0.9rem;
}

.invalid-feedback{
    font-size: 0.7rem;
    padding: 0 6px;
    background-color: red;
    color: white;
    width: fit-content;
}

.was-validated .form-check-input:invalid~.form-check-label {
    color: #034627;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #936531 0%, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    border: 0;
    color: #ffffff;
    display: inline-block;
    padding: 8px 30px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    transition: .3s linear;
    letter-spacing: 1px;
}

.modal .form-submit-btn{
    background: white;
    color: #0a0a0a;
}


*:disabled{
    cursor: not-allowed;
}

.modal .form-submit-btn:disabled{
    color: #969696;
    cursor: not-allowed;
}


.modal .btn-close {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.5rem;
    opacity: 1;
    border: 1px solid #ffffff60;
    background: #936531;
    background: linear-gradient(90deg, #936531 0, #ae854c 25%, #cba86a 50%, #b0894f 75%, #8f612d 100%);
    color: #fff;
    box-shadow: none !important;
    margin: 0 auto;
    border-radius: 0;
    z-index: 10;
    cursor: pointer;
}

.modal-backdrop {
    backdrop-filter: blur(2px);
    background: rgba(6, 6, 6, 0.836);
    transition: opacity 0.2s ease !important;
}

.modal-backdrop.show {
    opacity: 1 !important;
}


.thankyou-sec{
    min-height: 100vh;
    display: flex;
}

.thankyou-sec .section-title{
   font-weight: 700;
}

.breadcrumb-box{
    padding: 24px 65px;
    background: #a8804c;
    color: white;
    font-weight: 700;
    margin-bottom: 40px;
}

.breadcrumb{
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
}
.breadcrumb-item{
    color: white !important;
}
.breadcrumb-item::before{
    color: rgb(233, 233, 233) !important;
}


.blog-text-content h2{
    font-size: 1.8rem;
    margin-bottom: 0.4em;
    font-weight: 600;
    margin-top: 1em;
}
.blog-text-content h3{
    font-size: 1.4rem;
    margin-bottom: 0.4em;
    font-weight: 600;
    margin-top: 1em;
}
.faq-title-text{
    color: #A8804C;
}
.blog-text-content p, article p{
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 2;
    color: #353535;
}

.blog-text-content p a{
    color: #A8804C;
    line-height: 1.4;
    transition: box-shadow .3s ease;
}

.blog-text-content p a:hover{
    box-shadow: 0 1px 0 #A8804C;
}

@media screen and (max-width: 992px){
    .breadcrumb-box{
        padding: 24px 20px;
    }
    .breadcrumb-item{
        font-size: 0.8rem;
    }
    
    .blog-text-content h2{
        font-size: 1.5rem;
    }
    .blog-text-content h3{
        font-size: 1.2rem;
    }
    .blog-text-content p, article p{
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 767px){
    .theme-modal-card{
        padding: 20px;
    }
    .modal-title{
        font-size: 1.2rem;
        font-weight: 600;
    }
    .form-control{
        font-size: 0.8rem;
    }
    .form-check label {
        font-size: 0.8rem;
    }
    .blog-text-content h2{
        font-size: 1.3rem;
    }
    .modal .btn-close{
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -18px;
        right: -18px;
    }
}