* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
}
:root {
    --bg-color: #ffffff;
    --main-color: #4b9e22;
    --text-color: #000000;
    --other-color: #83868c;
    --second-color: #d9d9d9;
    --main-color-hover: #3d8818;

    --main-hue: 100;

    --h1-font: 5.5rem;
    --h2-font: 2.8rem;
    --p-font: 1.1rem;
}
::selection {
    background-color: var(--main-color);
    color: var(--bg-color);
}
a {
    color: var(--main-color);
    font-weight: 500;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--main-color-hover);
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    background: var(--bg-color);
    box-shadow: 0 2px 5px -2px #0000001a;
    transition: all 0.6s ease;
}
.logo img {
    max-width: 100px;
    min-width: 40px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navlist {
    display: flex;
}
.navlist a {
    white-space: nowrap;
    display: inline-block;
    font-style: var(--p-font);
    color: var(--text-color);
    margin: 0 30px;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.6s ease;
}
.navlist a:hover,
.navlist a:focus,
.navlist a:active,
.navlist a.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}
.nav-content {
    display: flex;
    align-items: center;
}
.nav-content a {
    display: inline-block;
    font-size: 23px;
    color: var(--text-color);
    margin: 0 10px;
    transition: all 0.6s ease;
}
.nav-content a:hover {
    transform: scale(1.1);
    color: var(--main-color);
}
#menu-icon {
    font-size: 32px;
    z-index: 10001;
    cursor: pointer;
    margin-left: 10px;
    display: none;
}
section {
    padding: 80px 10% 80px;
}
section.start {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-color);
    color: var(--text-color);
}
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url("../img/hero-feeb6744b93ed7a0f20d6336dcc7517a.jpg");
    background-size: cover;
    background-position: center;
    color: var(--bg-color);
}
.hero-text h1 {
    font-size: var(--h1-font);
    font-weight: 700;
    color: var(--bg-color);
    margin: 10px 0 20px;
    line-height: 1;
}
.hero-text h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-color);
    letter-spacing: 4px;
}
.hero-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-color);
    margin-bottom: 30px;
}
.hero-text .btn {
    text-transform: uppercase;
}
.btn {
    display: inline-block;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--bg-color);
    color: var(--bg-color);
    letter-spacing: 2px;
    transition: all 0.6s ease;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--bg-color);
    color: var(--text-color);
}
.end-button {
    margin-top: 2rem;
}
.start-text {
    text-align: start;
}
.end-text {
    text-align: end;
}
.center-text {
    text-align: center;
}
.center-text h6,
.end-text h6,
.start-text h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
}
.center-text h2,
.end-text h2,
.start-text h2 {
    font-size: var(--h2-font);
    font-weight: 600;
}
.store-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    cursor: pointer;
}
.col {
    padding: 10px;
    border: 1px solid var(--second-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.6s ease;
}
.col-img img {
    max-width: 200px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.col-text h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.col-text p {
    color: var(--other-color);
    font-size: var(--p-font);
    line-height: 30px;
}
.col:hover {
    transform: scale(1.04) translateY(-4px);
    border: 1px solid var(--main-color);
}

.break {
    flex-basis: 100%;
    height: 0;
}

.banner-content {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(450px, auto));*/
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
    margin-top: 4rem;
    align-items: center;
}
.banner-box {
    flex: 0 1 calc(calc(100%/3) - 1rem);
    margin-bottom: 1rem;
}
.banner-img {
    position: relative;
    overflow: hidden;
}
.banner-img img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    filter: brightness(75%);
    transition: all 0.6s ease;
}
.banner-box:hover .banner-img img {
    transform: scale(1.03);
    filter: brightness(60%);
}
.banner-in {
    color: var(--bg-color);
    position: absolute;
    top: 50%;
    left: 7%;
    width: 86%;
    transform: translateY(-50%);
}
.banner-in h3 {
    font-size: 40px;
    font-weight: 500;
    margin: 10px 0;
}
.banner-in h5 {
    font-size: 20px;
    font-weight: 400;
}
.banner-in .between {
    width: 100%;
}
.b-btnn {
    padding: 10px 27px;
    display: inline-block;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.6s ease;
}
.b-btnn:hover {
    background: var(--main-color);
    color: var(--bg-color);
}

.seller-content {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(450px, auto));*/
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
    align-items: center;
    margin-top: 4rem;
}
.seller-content .row {
    flex: 0 1 calc(calc(100%/3) - 1rem);
    width: 100%;
}
.row-img {
    overflow: hidden;
}
.row-img img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    cursor: pointer;
}
.row-img img:hover {
    transform: scale(1.1);
}
.row {
    position: relative;
    text-align: center;
    cursor: pointer;
}
.row h3 {
    margin-top: 16px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 7px;
}
.row h5 {
    margin-top: 16px;
    font-size: var(--p-font);
    font-weight: 500;
    margin-bottom: 7px;
}
.row h6 {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-color);
}
.row .s-btn a {
    position: absolute;
    bottom: 79px;
    left: 0;
    right: 0;
    padding: 13px;
    background: rgb(from var(--main-color) r g b / 0.8);
    color: var(--bg-color);
    transition: opacity 0.6s ease;
    opacity: 0;
}
.row:hover .s-btn a {
    opacity: 1;
}

.cta {
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)), url("../img/join-aba968024c4c1122d4fe9d999882107e.jpg");
    background-size: cover;
    background-position: center;
}
.cta-content h2 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--bg-color);
    margin-bottom: 15px;
}
.cta-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-color);
}
.cta-content p {
    font-size: var(--p-font);
    font-weight: 600;
    color: var(--bg-color);
    margin-bottom: 35px;
}
.cta-btn {
    display: inline-block;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 600;
    background: var(--bg-color);
    color: var(--text-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.6s ease;
}
.cta-btn:hover {
    background: var(--main-color);
    color: var(--bg-color);
}
.newsletter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)), url("../img/newsletter_join-c6355cacf69039a021a0ce37b229efb7.jpg");
    background-size: cover;
    background-position: top;
}
.newsletter .contact-input {
    background-color: var(--bg-color);
    border-radius: 0;
}
.newsletter .contact-input:hover {
    background-color: var(--bg-color);
}
.newsletter .cta-btn {
    outline: none;
    border: none;
    cursor: pointer;
}

.blog-content {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(450px, auto));*/
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
    margin-top: 4rem;
    align-items: center;
}
.blog-box {
    flex: 0 1 calc(calc(100%/3) - 1rem);
    margin-bottom: 1rem;
}
.blog-break {
    flex-basis: 100%;
}
.blog-img {
    overflow: hidden;
}
.blog-img img {
    aspect-ratio: 3 / 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.6s ease;
}
.blog-img img:hover {
    transform: scale(1.04);
}
.blog-in {
    margin-top: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
    padding: 5px 30px;
}
.blog-left h3 {
    font-size: 35px;
    font-weight: 800;
    margin-top: -7px;
}
.bbb-in h6 {
    white-space: nowrap;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    background: var(--main-color);
    color: var(--bg-color);
}
.blog-right h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}
.blog-right p {
    color: var(--other-color);
    font-size: var(--p-font);
}

.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
}
.footer-box .logo img {
    max-width: 170px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.footer-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.4rem;
    line-height: 1;
}
.icons i {
    display: inline-block;
    color: var(--text-color);
    margin-right: 10px;
    font-size: 23px;
    transition: all 0.7s ease;
}
.icons i:hover {
    color: var(--main-color);
    transform: rotate3d(0, 0, 1, 360deg);
}
.footer-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-box li {
    margin-bottom: 14px;
}
.footer-box li a {
    display: block;
    color: var(--other-color);
    font-size: var(--p-font);
    transition: all 0.6s ease;
}
.footer-box li a:hover {
    transform: translateY(-3px);
    color: var(--main-color);
}

.copyright p {
    text-align: center;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}
.scroll-btn {
    position: fixed;
    bottom: 2.9rem;
    right: 3.5rem;
}
.scroll-btn i {
    font-size: 27px;
    color: var(--bg-color);
    padding: 10px;
    background: var(--main-color);
    border-radius: 9px;
}

.lesson-content {
    margin-top: 3rem;
    line-height: 1.7;
    font-size: var(--p-font);
}

.text-content {
    margin-top: 3rem;
    line-height: 2;
    font-size: var(--p-font);
}
.text-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    align-items: center;
    gap: 2rem;
}
.text-row .image-col img {
    object-fit: contain;
    max-width: 100%;
    border-radius: 20px;
}

.btn-main {
    padding: 10px 27px;
    display: inline-block;
    background: var(--bg-color);
    color: var(--main-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid var(--main-color);
    transition: all 0.6s ease;
    cursor: pointer;
}
.btn-main:hover {
    background: var(--main-color);
    color: var(--bg-color);
}

section.sm {
    padding: 20px 10% 80px;
}

.quote-area {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.quote-area i {
    font-size: 28px;
    color: var(--main-color);
}
.quote-area i:first-child {
    margin: 3px 10px 0 0;
}
.quote-area i:last-child {
    display: flex;
    align-items: flex-end;
    margin: 0 0 3px 10px;
}
.quote-area .quote {
    font-size: 24px;
    font-style: italic;
}
.author {
    text-align: end;
    font-style: italic;
    margin-top: 25px;
    color: var(--main-color);
}

.space {
    display: block;
    width: 100%;
    height: 50px;
}
.space-sm {
    display: block;
    width: 100%;
    height: 20px;
}
.space-xl {
    display: block;
    width: 100%;
    height: 100px;
}

.icons-content {
    margin-top: 3rem;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, auto));
}
.icons-content i {
    display: inline-block;
    color: var(--text-color);
    margin-right: 10px;
    font-size: 56px;
    transition: all 0.7s ease;
}
.icons-content i:hover {
    color: var(--main-color);
    transform: rotate3d(0, 0, 1, 360deg);
}

.hero-form {
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("../img/hero_form-141ee9b83390246f154b6070c6cd6d93.jpg");
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.hero-form > div {
    grid-column: 1/2;
    grid-row: 1/2;
}
.hero-form .left {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-form .left .bg {
    padding: 75px 1.5rem 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    background: var(--bg-color);
}
.contact-heading h2 {
    font-size: var(--h2-font);
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 0.9;
    color: var(--main-color);
}
.contact-heading h6 {
    font-size: 16px;
    font-weight: 600;
}
.form-wrapper {
    max-width: 36rem;
    background-color: var(--bg-color);
}
.contact-form {
    display: grid;
    margin-top: 2.55rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 1rem;
}
.input-wrap {
    position: relative;
}
.input-wrap.w-100 {
    grid-column: span 2;
}
.input-wrap.hidden {
    display: none;
}
.contact-input {
    width: 100%;
    background-color: hsla(var(--main-hue), 50%, 50%, 6.5%);
    padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
    outline: none;
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    box-shadow: 0 0 0 0 hsla(var(--main-hue), 92%, 54%, 0.169);
    transition: all 0.3s ease;
}
select.contact-input {
    appearance: none;
}
.contact-input:hover {
    background-color: hsla(var(--main-hue), 50%, 50%, 14%);
}
.input-wrap label {
    position: absolute;
    top: 50%;
    left: calc(1.35rem + 2px);
    transform: translateY(-50%);
    color: var(--other-color);
    pointer-events: none;
    transition: all 0.3s ease;
}
.input-wrap .icon {
    position: absolute;
    right: calc(1.35rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--other-color);
    transition: all 0.3s ease;
}
.input-wrap .icon-show {
    position: absolute;
    right: calc(2.7rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--other-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
textarea.contact-input {
    resize: none;
    width: 100%;
    min-height: 200px;
}

textarea.contact-input ~ label {
    top: 1.2rem;
    transform: none;
}
textarea.contact-input ~ .icon {
    top: 1.3rem;
    transform: none;
}
.input-wrap.focus .contact-input {
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 0 5px hsla(var(--main-hue), 91%, 55%, 0.11);
}
.input-wrap.focus label {
    color: var(--main-color);
}
.input-wrap.focus .icon {
    color: var(--main-color);
}
.input-wrap.not-empty label {
    font-size: 0.66rem;
    top: 0.75rem;
    transform: translateY(0);
}
.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    grid-column: span 2;
}
.contact-buttons .contact-btn {
    text-align: center;
    display: inline-block;
    padding: 1.1rem 2rem;
    background-color: var(--main-color);
    color: var(--bg-color);
    border-radius: 40px;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.contact-buttons .contact-btn:hover {
    background-color: var(--main-color-hover);
    color: var(--bg-color);
}
.contact-buttons .contact-btn.upload {
    position: relative;
    background-color: hsla(var(--main-hue), 50%, 50%, 6.5%);
    color: var(--other-color);
}
.contact-buttons .contact-btn.upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}
.input-wrap.attachments {
    margin-top: 1rem;
    grid-column: span 2;
    width: 100%;
    text-align: center;
}
.input-wrap.attachments .attachment {
    color: var(--second-color);
    line-height: 2;
    transition: all 0.3s ease;
}
.input-wrap.attachments .attachment:hover {
    color: var(--other-color);
}
.input-wrap.attachments .attachment i {
    padding-right: 1.5rem;
}
.right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    pointer-events: none;
}
.image-wrapper {
    position: relative;
    grid-column: 2;
}
.image-wrapper .hero-form-img {
    position: absolute;
    height: 130%;
    left: 60%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wave-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
}
.wave-wrap svg {
    position: absolute;
    height: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 2px);
}
#wave {
    fill: var(--bg-color);
    height: 100%;
}
.dashed-wave {
    position: absolute;
    z-index: 3;
    height: 130%;
    bottom: 60%;
    left: -28px;
    transform: translateY(50%);
}
#dashed-wave {
    fill: none;
    stroke: var(--second-color);
    stroke-width: 1px;
    stroke-dasharray: 6.5;
    opacity: 0.8;
}

.toast {
    position: fixed;
    top: 170px;
    right: 30px;
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}
.toast.toast-success {
    border-left: 6px solid var(--main-color);
}
.toast.toast-message {
    border-left: 6px solid #4070F4;
}
.toast.toast-error {
    border-left: 6px solid #DC3545;
}
.toast.active {
    transform: translateX(0);
    opacity: 1;
}
.toast .toast-content {
    display: flex;
    align-items: center;
}
.toast .toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    color: var(--bg-color);
    font-size: 20px;
    border-radius: 50%;
}
.toast.toast-success .toast-content .check {
    background-color: var(--main-color);
}
.toast.toast-message .toast-content .check {
    background-color: #4070F4;
}
.toast.toast-error .toast-content .check {
    background-color: #DC3545;
}
.toast .toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}
.toast .toast-content .message .text {
    font-size: 20px;
    font-weight: 400;
    color: var(--other-color);
}
.toast .toast-content .message .text.text-1 {
    font-weight: 600;
    color: var(--text-color);
    text-transform: capitalize;
}
.toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.1s;
}
.toast .close:hover {
    opacity: 1;
}
.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: var(--second-color);
}
.toast .progress::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
.toast.toast-success .progress::before {
    background-color: var(--main-color);
}
.toast.toast-message .progress::before {
    background-color: #4070F4;
}
.toast.toast-error .progress::before {
    background-color: #DC3545;
}
.toast.active .progress::before {
    animation: progress 5s linear forwards;
}

.trailer {
    text-align: center;
    margin-top: 1rem;
}
.trailer iframe {
    display: block;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 2rem;
}

.photos-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    margin-top: 4rem;
    align-items: center;
    gap: 2rem;
}
.photos-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.photos-box img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
}
.photos-box i {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    border-radius: 0 0 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.photos-box:hover i:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.3);
}
.photos-box i.remove {
    background-color: #dc3545;
    color: var(--bg-color);
}
.photos-box i.remove:hover {
    background-color: #dc3545;
    color: var(--bg-color);
}

.mt {
    margin-top: 2rem;
}
.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#scroll-to-top {
    opacity: 1;
    z-index: 10000;
    transition: all 0.3s ease-in-out;
}
#scroll-to-top.hidden {
    opacity: 0;
    z-index: -10000;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}


@media (max-width: 1920px) {
    .banner-box,
    .blog-box,
    .seller-content .row {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 1400px) {
    header {
        padding: 15px 5%;
    }
    section {
        padding: 70px 5% 70px;
    }
}

@media (max-width: 1230px) {
    header {
        padding: 15px 2%;
    }
    section {
        padding: 70px 2% 70px;
    }
    .banner {
        padding: 10px 2% 10px;
    }
    :root {
        --h1-font: 5rem;
        --h2-font: 2.3rem;
        --p-font: 1rem;
    }
    .cta-content h2 {
        font-size: 3.4rem;
    }
    .scroll-btn {
        position: fixed;
        bottom: 2.1rem;
        right: 2.2rem;
    }
    :root {
        --h1-font: 3.4rem;
        --h2-font: 2rem;
        --p-font: 15px;
    }
    .cta-content h2 {
        font-size: 2.8rem;
    }
    .banner-in h3 {
        margin: 5px 0;
        font-size: 24px;
    }
    .b-btnn {
        padding: 7px 20px;
    }
    .banner {
        padding: 20px 5% 20px;
    }
}

@media (max-width: 1190px) {
    #menu-icon {
        display: block;
    }
    .navlist {
        position: absolute;
        top: 100%;
        width: 100%;
        height: auto;
        right: -100%;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        border-radius: 0 0 20px 20px;
        padding: 10px 0;
        box-shadow: 0 20px 20px rgb(15 54 55 / 20%);
        clip-path: circle(144% at 0% 0%);
        transition: all 0.55s ease-in-out;
    }
    .navlist a {
        display: block;
        padding: 0;
        margin-bottom: 22px;
        font-size: 22px;
        border-bottom: none;
    }
    .navlist a:hover,
    .navlist a:focus,
    .navlist a:active,
    .navlist a.active {
        border-bottom: none;
    }
    .navlist.open {
        right: 0;
    }
    .contact-form {
        display: grid;
        margin-top: 1.9rem;
        column-gap: 0.8rem;
        row-gap: 0.65rem;
    }
    .contact-input {
        border-radius: 17px;
        font-size: 0.87rem;
        padding: 1.5rem 1.2rem calc(0.75rem - 2px) 1.2rem;
    }
    .input-wrap label {
        font-size: 0.91rem;
        left: calc(1.2rem + 2px);
    }
    .input-wrap .icon {
        font-size: 1.1rem;
        right: calc(1.2rem + 2px);
    }
    textarea.contact-input ~ label {
        top: 1.2rem;
    }
    textarea.contact-input ~ icon {
        top: 1.33rem;
    }
    .input-wrap.focus .contact-input {
        box-shadow: 0 0 0 3.5px hsla(var(--main-hue), 91%, 55%, 0.11);
    }
    .input-wrap.not-empty label {
        font-size: 0.61rem;
    }
    .contact-buttons {
        column-gap: 0.8rem;
        margin-top: 0.45rem;
    }
    .contact-buttons .contact-btn {
        padding: 1rem 1.5rem;
        font-size: 0.87rem;
    }
    .dashed-wave {
        bottom: 55%;
        left: -10px;
    }
    #dashed-wave {
        stroke-width: 0.7px;
        stroke-dasharray: 6;
    }
    .wave-wrap {
        transform: translateX(-10%);
    }
    .wave-wrap svg {
        height: calc(110% + 10px);
        transform: translate(-5%, -50%);
    }
}

@media (max-width: 1000px) {
    .banner-box,
    .blog-box,
    .seller-content .row {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-font: 2.8rem;
        --h2-font: 1.7rem;
        --p-font: 0.95rem;
    }
    section {
        padding: 60px 5% 60px;
    }
    section.sm {
        padding: 20px 5% 60px;
    }
    .hero-text h4 {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .blog-in {
        flex-wrap: wrap;
        gap: 12px;
        padding: 5px 15px;
    }
}

@media (max-width: 650px) {
    .hero-form .left {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .hero-form .left .bg {
        padding: 150px 1.5rem 2rem;
        align-items: flex-start;
    }
    .form-wrapper {
        width: 100%;
        padding: 1rem 0;
    }
    .right {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --h1-font: 2rem;
        --h2-font: 1.5rem;
    }
    section {
        padding: 50px 5% 50px;
    }
    section.sm {
        padding: 20px 5% 50px;
    }
    .hero-text h4 {
        font-size: 11px;
        letter-spacing: 1px;
    }
    .hero-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
    .blog-left h3 {
        font-size: 26px;
    }
}

@media (max-width: 440px) {
    .input-wrap {
        grid-column: span 2;
    }
    .contact-buttons {
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
    }
    .newsletter .cta-btn {
        grid-column: span 2;
    }
}
