@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #3b3b6f;
    --secondary: #b32134;
}

::selection {
    background: var(--secondary);
    color: var(--white);
}

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

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    /* font-family: "Oswald", sans-serif; */
    font-family: "Roboto", sans-serif;
}

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcc {
    justify-content: center;
}

.jcsb {
    justify-content: space-between;
}

.frr {
    flex-direction: row-reverse;
}

.fw {
    flex-wrap: wrap;
}

.fnw {
    flex-wrap: nowrap;
}

.gap1 {
    gap: 1rem;
}

.gap2 {
    gap: 2rem;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1400px;
    }
}

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

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    /* font-family: "Oswald", sans-serif; */
    font-family: "Roboto", sans-serif;
}

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

.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;
}

figure {
    margin: 0;
}

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

.navbar-brand {
    background: var(--white);
    margin-top: -3rem;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    padding: 1rem 1rem 0;
}

.navbar-brand img {
    transition: 0.3s ease-in-out;
}

header {
    /* position: absolute; */
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 999;
    top: 0;
    width: 100%;
    background: var(--white);
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: #23212a;
    padding: 0;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--secondary);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 2rem;
}

.topRow {
    position: relative;
    background: var(--primary);
    z-index: 1;
}

.topMenu {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem 4rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.topMenu .links {
    display: flex;
    align-items: center;
}

.topMenu .links li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    padding: 0 1rem;
}

.socialIo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.socialIo li a {
    height: 40px;
    width: 40px;
    font-size: 1rem;
    border-radius: 50%;
    line-height: 1;
    display: grid;
    place-items: center;
    color: var(--black);
    border: 1px solid var(--white);
    background-color: var(--white);
}

.socialIo li a:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.cartBtn {
    display: grid;
    place-items: center;
    border-radius: 1rem;
    color: var(--white);
    font-size: 1.125rem;
    background-color: var(--secondary);
    width: 3.125rem;
    height: 3.125rem;
    position: relative;
}

.cartBtn span {
    position: absolute;
    right: -0.5rem;
    top: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    width: 23px;
    height: 23px;
    line-height: 1;
    display: grid;
    font-size: 13px;
    place-items: center;
    color: var(--white);
}

.cartBtn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.main-slider {
    position: relative;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 12rem;
}

.inner-bnner .carousel-caption {
    padding-bottom: 0;
}

.main-slider .btmShape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 1;
}

.main-slider .tomatoImg {
    left: calc(50% - 105px);
    position: absolute;
    bottom: 3rem;
    z-index: 2;
    animation: pulse infinite 3s;
}

.main-slider h1 {
    font-family: "Oswald", sans-serif;
    color: var(--white);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.form-group {
    display: flex;
    align-items: center;
    position: relative;
}

.form-group input {
    border-radius: 10px;
    width: 100%;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #555555;
    padding-left: 1.5rem;
    outline: none;
    background-color: var(--white);
    height: 4.5rem;
    transition: 0.3s ease-in-out;
    border: 1px solid transparent;
}

.form-group input:focus {
    border-color: var(--secondary);
}

.form-group button {
    height: 4.5rem;
    width: 4.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    border: 0;
    font-size: 1.5rem;
    color: var(--white);
    position: absolute;
    right: 0;
    top: 0;
    outline: none;
    background: var(--secondary);
}

.form-group button:hover {
    background: var(--primary);
    color: var(--white);
}

.themeBtn {
    display: inline-block;
    padding: 0.5em 2em;
    border-radius: 50px;
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
    text-transform: capitalize;
    border: 2px solid var(--secondary);
    background-color: var(--secondary);
}

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

.secHeading {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    position: relative;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

.secHeading span {
    font-size: 1.3755rem;
    display: block;
    font-weight: 500;
    line-height: 1.745;
    color: var(--primary);
    font-family: "Roboto", sans-serif;
}

/* aboutSec */
.aboutSec {
    padding-bottom: 0;
}

.aboutSec p {
    font-size: 1.0625rem;
    font-family: "Roboto";
    color: #535c63;
    line-height: 1.882;
}

.aboutSec .tomato {
    position: absolute;
    right: -5rem;
    top: 10rem;
    z-index: 1;
    animation: rotate infinite 3s;
}

.aboutSec .aboutBg {
    width: 100%;
    margin-top: -5rem;
}

.abtContent a {
    margin-bottom: 6rem;
}

/* mailingSec */
.mailingSec .form-group input {
    background-color: #e8ecf1;
}

.mailingSec {
    padding-bottom: 0;
}

.mailingSec .img2 {
    position: absolute;
    right: 0;
    top: 8rem;
}

.mailingSec figure {
    margin-bottom: -2rem;
    position: relative;
    z-index: 1;
}

.mailingSec figure img {
    animation: pulse infinite 4s;
}

/* mapSection */
.mapSection::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8rem;
    background-color: #b32134;
    width: 406px;
    height: 395px;
}

.mapSection .img4 {
    position: absolute;
    right: -10rem;
    /*animation: pulse infinite 3s;*/
    top: -10rem;
    z-index: 11111;
}

.mapSection .img5 {
    position: absolute;
    left: 0;
    bottom: -4rem;
    z-index: 1;
    animation: pulse infinite 4s;
}

.mapSection .img6 {
    position: absolute;
    /*animation: pulse infinite 4s;*/
    right: 0rem;
    bottom: -5rem;
    z-index: 1111;
}

.mapSection .map {
    /* margin-top: 5rem; */
    width: 100%;
}

.mapSection .title h2 {
    margin-bottom: 3rem;
    color: var(--white);
}

.square {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    border: 15px solid #89bc40;
    transition: ease all 0.5s;
    animation: rotate 1s ease-in-out 0s infinite alternate both;
    position: absolute;
    top: -2rem;
    right: 10rem;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

@keyframes rotate {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(-50deg);
    }
}

.circle {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    border: 15px solid #fff;
    border-radius: 100px;
    transition: ease all 0.5s;
    animation: scale 1s ease-in-out 0s infinite alternate both;
    position: absolute;
    bottom: -2rem;
    left: 39%;
    transform: scale(1);
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.infoWrap {
    padding: 5rem 6rem;
    background: var(--primary);
    margin-top: 2rem;
}

.infoWrap ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.infoWrap ul li a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(255 255 255/20%);
}

.infoWrap ul li a strong {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.infoWrap ul li a i {
    max-width: 25px;
    font-size: 1.25rem;
    color: var(--secondary);
    margin-right: 1rem;
}

.mapSection .map iframe {
    width: 960px;
    height: 768px;
    position: absolute;
    right: 0;
    bottom: 0px;
    margin: 0 0 -100px;
}

.mapSection {
    padding: 0rem 0 5rem;
}

.mapSection .secHeading span,
.mapSection .secHeading {
    color: var(--white);
}

footer {
    background-color: #f2f5f8;
    padding-top: 5rem;
    position: relative;
}

footer h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.875rem;
    color: var(--black);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

footer .socialIo {
    justify-content: flex-start;
}

footer .socialIo li a {
    height: 3.125rem;
    width: 3.125rem;
}

footer .socialIo li a:hover {
    color: var(--white);
    background: var(--secondary);
}

footer .links li a {
    font-size: 1rem;
    color: #23212a;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    line-height: 1;
}

footer .links li a:hover {
    color: var(--theme-color);
}

footer p {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 1.429;
}

.copyRight {
    margin-top: 4rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid #dfdfdf;
}

.copyRight p {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
}

.roleback {
    border-radius: 5px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1rem;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 1rem;
    z-index: 1;
    right: 2rem;
}

.roleback:hover {
    background-color: var(--white);
    color: var(--theme-color);
}

/* Inner Pages CSS */
.main-slider.inner-bnner h1 {
    margin-bottom: 10rem;
}

.main-slider.inner-bnner .btmShape {
    bottom: -2rem;
}

.aboutSec.ourStoryInnr {
    padding-bottom: 8rem;
}

.howWorkInnr .row + .row,
.ourStoryInnr .row + .row {
    margin-top: 5rem;
}

.howWorkInnr h3 {
    font-family: "Oswald", sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #23212a;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blogInner {
    padding: 6rem 0;
}

.blogCard {
    margin-bottom: 2rem;
}

.blogCard figure {
    overflow: hidden;
}

.blogCard figure img {
    transition: 0.3s ease-in-out;
}

.blogCard .content {
    padding: 1.5rem;
    border: 1px solid #d7d7d7;
}

.blogCard .content h3 {
    font-family: "Oswald", sans-serif;
    color: var(--black);
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blogCard .content h3 span {
    display: block;
    font-size: 1.375rem;
    color: #7e7e7e;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
}

.blogCard .content a {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 400;
    display: inline-block;
}

.blogCard .content a:hover {
    color: var(--primary);
}

.blogCard:hover figure img {
    transform: scale(1.125);
}

.connectSec .secHeading {
    font-size: 1.875rem;
}

.connectSec p {
    font-size: 1.5rem;
    color: #494949;
    line-height: 1;
}

.connectSec p span {
    font-weight: 500;
    text-transform: uppercase;
}

.loginSec .form-group,
.connectSec .form-group {
    display: block;
}

.loginSec .form-group label,
.connectSec .form-group label {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    display: block;
    color: #494949;
    line-height: 1;
}

.loginSec .form-group .form-control,
.connectSec .form-group .form-control {
    border: 2px solid #d7d7d7;
    background: #f7f7f7;
    border-radius: 0;
    height: 4rem;
}

.connectSec .form-group textarea.form-control {
    height: 210px;
}

.loginSec .themeBtn,
.connectSec .themeBtn {
    border-radius: 0;
    font-size: 1.875rem;
    font-weight: 400;
    padding: 0.25em 1.75em;
    text-transform: uppercase;
}

.farmCard p {
    font-size: 1rem;
    font-weight: 500;
    color: #b32638;
    font-style: italic;
    text-align: center;
    margin: 1rem 0 0.5rem;
    line-height: 1;
}

.farmCard h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #121214;
    text-align: center;
    line-height: 1;
}

.checkbox {
    display: block;
    margin-bottom: 15px;
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox label {
    position: relative;
    cursor: pointer;
}

.checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: var(--secondary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 15px;
    width: 8px;
    height: 20px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.loginSec p a {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 1.25rem;
    color: #494949;
    line-height: 1;
}

.lineWrap {
    display: flex;
    align-items: center;
}

.lineWrap .line {
    display: block;
    flex: 1;
    border: 1px solid #d7d7d7;
}

.lineWrap span.or {
    font-size: 1.25rem;
    color: #787878;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-grid;
    border: 1px solid #d7d7d7;
    place-items: center;
    width: 48px;
    height: 46px;
}

.socialLogins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.socialLogins li a {
    border: 2px solid #4e67a5;
    border-radius: 50%;
    width: 3.125rem;
    display: inline-grid;
    height: 3.125rem;
    place-items: center;
    color: #4e67a5;
}

.socialLogins li a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.profilePage .secHeading {
    font-size: 3rem;
}

.profilePage h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #5e5e5e;
    line-height: 1.333;
}

.profilePage h3 span {
    display: block;
    color: #23212a;
    font-weight: 500;
}

.profilePage h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #23212a;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

.profilePage p {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #5e5e5e;
    line-height: 1.882;
}

.proCard {
    border: 2px solid #d7d7d7;
    padding: 5px 10px;
    display: flex;
}

.proCard .imgWrap {
    display: block;
}

.proCard .content {
    padding: 1rem;
}

.proCard .content h3 {
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #23212a;
}

.proCard .content p {
    font-size: 14px;
    font-family: "Roboto";
    color: #616161;
    line-height: 1.286;
}

.input-radio [type="radio"]:checked,
.input-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.input-radio [type="radio"]:checked + label,
.input-radio [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    font-weight: 600;
    display: inline-block;
    color: var(--black);
}

.input-radio [type="radio"]:checked + label:before,
.input-radio [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--secondary);
    border-radius: 100%;
    background: #fff;
}

.input-radio [type="radio"]:checked + label:after,
.input-radio [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--secondary);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.input-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.input-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.productDetail p {
    font-size: 1.125rem;
    max-width: 90%;
}

.productDetail .backBtn {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 1.5rem 0;
    color: var(--primary);
}

.productDetail .themeBtn {
    border-radius: 0;
    gap: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 1em;
}

.productDetail .slider-nav {
    margin-top: 1.5rem;
}

.productDetail .slider-nav figure {
    margin: 0 10px;
    cursor: pointer;
}

.shop-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    padding: 1rem 1rem 1rem 4rem;
    margin: 0;
    text-transform: uppercase;
    background-color: var(--secondary);
    margin-bottom: 10px;
}

/* .shop-sidebar h4 {
  padding: 1rem 1rem 1rem 4rem;
  color: #828282;
  font-weight: 400;
  font-size: 1.375rem;
  background-color: #e8ecf1;
  position: relative;
}
.shop-sidebar h4::before {
  content: "v";
  position: absolute;
  right: 1rem;
  top: 1rem;
} */
.shop-sidebar ul a {
    display: block;
    font-size: 14px;
    color: #828282;
    font-weight: 500;
    padding: 0.25rem 1rem 0.25rem 4rem;
    position: relative;
}

.shopSec {
    padding: 4rem 0 6rem 0;
}

.shopCard {
    display: block;
    margin-bottom: 2rem;
}

.shopCard .cardtop {
    background: var(--primary);
    padding: 10px;
}

.shopCard .cardtop p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.shopCard .content {
    padding: 1rem 0;
}

.shopCard .content h3 {
    font-size: 1.125rem;
    text-align: center;
    color: #121214;
    font-weight: 500;
    line-height: 1.5;
}

.shopCard .content h3 span {
    display: block;
    font-size: 1rem;
    font-style: italic;
    color: var(--secondary);
}

.shopCard .cardBtm {
    background: #eeeeee;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.shopCard .cardBtm .btn-group {
    gap: 2rem;
    align-items: center;
}

.shopCard .cardBtm h4 {
    color: #121214;
    font-weight: 500;
    line-height: 1;
    font-size: 1.125rem;
    margin: 0;
}

.shopCard .cardBtm .btn-group a {
    display: inline-block;
    color: var(--black);
    font-size: 1rem;
}

/* /modalSection */

.modalSection {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    background: rgba(0, 0, 0, 0.5);
}

.modalSection.show {
    display: flex;
}

.modalSection .closeModal {
    border: 0;
    font-size: 1.5rem;
    color: var(--black);
    height: 2.5rem;
    width: 2.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    outline: none;
    margin-bottom: 1rem;
}

.modalSection .closeModal:hover {
    background: var(--secondary);
    color: var(--white);
}

.modalCard {
    text-align: center;
    position: relative;
}

.modalCard .themeBtn {
    position: relative;
    z-index: 1;
    top: -1.5rem;
    padding: 1em 2em;
    text-align: center;
}

.modalCard .themeBtn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.shopBan img {
    max-height: 640px;
    object-fit: cover;
}

.shop-sidebar select {
    display: block;
    font-size: 1rem;
    color: #828282;
    font-weight: 500;
    padding: 1em 1rem 1em 4rem;
    background: #f9f9f9;
    position: relative;
    border-bottom: 1px solid rgb(215, 215, 215);
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background-color: #e8ecf1;
    text-transform: uppercase;
}

.default select {
    display: block;
    font-size: 1rem;
    color: #828282;
    font-weight: 500;
    padding: 10px 4.8125rem;
    position: relative;
    width: auto;
    height: 4.5rem;
    background-color: #e8ecf1;
    border-radius: 10px;
    border: 1px solid transparent;
}

/* .form-group input {
  border-radius: 10px;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #555555;
  padding-left: 1.5rem;
  outline: none;
  background-color: var(--white);
  height: 4.5rem;
  transition: 0.3s ease-in-out;
  border: 1px solid transparent;
} */
.nested-accordion {
    margin-top: 0.5em;
    cursor: pointer;
}

.nested-accordion .comment {
    line-height: 1.5;
    padding: 0.5em;
}

.nested-accordion > a {
    display: block;
    font-size: 14px;
    color: #828282;
    font-weight: 500;
    padding: 0.25rem 1rem 0.25rem 4rem;
    position: relative;
}

.nested-accordion > a:before {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    color: #828282;
    font-size: 14px;
    position: absolute;
    font-weight: 900;
    right: 0.75rem;
}

.nested-accordion > a.selected {
    background: var(--secondary);
    color: var(--white);
}

.nested-accordion > a.selected:before {
    content: "\f078";
    color: var(--white);
}

.nested-accordion > a {
    text-decoration: none;
}

.brightness-box i {
    font-size: 2rem;
    color: var(--secondary);
}

.brightness-box output {
    margin: 0;
    display: block;
    text-align: center;
}

.brightness-box {
    width: 100%;
    height: calc(100% - 1rem);
    background: #f9f9f9;
    border-radius: 8px;
    /* padding: 0 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.brightness-box i {
    margin: 0 10px;
}

#range {
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    background: #0a85ff;
    outline: none;
}

#range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #333;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}