#sec-2,
#sec-6 .container-sec-6 {
    background-size: contain;
    background-position: center center
}

#sec-4 h2,
#sec-6 .content h2,
#sec-8 h2,
#sec-9 .copyright p {
    margin-block-end: 0
}

#sec-5,
#sec-8 {
    padding: 3% 0
}

#sec-4 .para,
#sec-4 h2,
#sec-5 h2,
#sec-6 .content h2,
#sec-6 .text .icon,
#sec-7 .faq-header,
#sec-8 h2,
#sec-8 p {
    text-align: center
}

:root {
    --primary-color: #097e51;
    --secondary-color: #50c878;
    --text-color: #2d3436;
    --light-text: #636e72;
    --background-color: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --dark-clr: #121212;
    --light-clr: #f7f7f7;
    --bg: var(--dark-clr);
    --fg: var(--light-clr)
}

#sec-2,
#sec-5,
#sec-6,
#sec-6 .container-sec-6 {
    background-color: #fff5f5
}

#sec-1 .main .main-2 button,
#sec-8 button {
    line-height: 1;
    letter-spacing: .025em;
    background: #097e51;
    cursor: pointer;
    overflow: hidden
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

h2 {
    color: #303030
}

body {
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: #303030;
    border-radius: 10px
}

@media (prefers-color-scheme:light) {
    body {
        --bg: var(--light-clr);
        --fg: var(--dark-clr)
    }

    body.change {
        --bg: var(--dark-clr);
        --fg: var(--light-clr)
    }
}

@media (prefers-color-scheme:dark) {
    body {
        --bg: var(--dark-clr);
        --fg: var(--light-clr)
    }

    body.change {
        --bg: var(--light-clr);
        --fg: var(--dark-clr)
    }
}

#sec-1 .main .nav-container {
    position: absolute;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    z-index: 100
}

#sec-1 .container-nav,
#sec-2 .container-sec-2,
#sec-5 .container-sec-5,
#sec-8 .container-sec-8 {
    max-width: 85%
}

#sec-1 .main .nav-container ::-moz-selection {
    background: var(--bg);
    color: var(--fg)
}

#sec-1 .main .nav-container ::selection {
    background: var(--bg);
    color: var(--fg)
}

#sec-1 .main .nav-container .stripe-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100
}

#sec-1 .main .nav-container .stripe-bg .stripe {
    height: 0%;
    width: 100%;
    background: var(--bg);
    -webkit-transition: height 250ms ease-out;
    transition: height 250ms ease-out;
    -webkit-transition-delay: var(--i);
    transition-delay: var(--i)
}

#sec-1 .main .nav-container .navbar {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000
}

#sec-1 .main .nav-container .navbar .nav-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center
}

#sec-1 .main .nav-container .navbar .nav-list .nav-item {
    font-size: 2.5rem;
    margin: 0 1em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: 250ms ease-in-out 0;
    transition: 250ms ease-in-out 0
}

#sec-1 .main .nav-container .navbar .nav-list .nav-item .nav-link {
    position: relative;
    color: var(--fg);
    font-family: Barlow, sans-serif;
    text-decoration: none;
    text-transform: capitalize;
    padding-bottom: 10px
}

#sec-1 .main .nav-container .navbar .nav-list .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: var(--fg);
    -webkit-transition: width 250ms ease-in-out;
    transition: width 250ms ease-in-out
}

#sec-1 .main .nav-container .navbar .nav-list .nav-item .nav-link:hover::after,
#sec-5 .card .sub-icon img {
    width: 100
}

#sec-1 .main .nav-container .navbar .nav-list .nav-item .nav-link img {
    width: 150px
}

#sec-1 .main .nav-container.show {
    pointer-events: all
}

#sec-1 .main .nav-container.show .stripe {
    height: 100%
}

#sec-1 .main .nav-container.show .navbar .nav-list .nav-item {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition-delay: var(--i);
    transition-delay: var(--i)
}

#sec-1 .main .hamburger {
    position: absolute;
    right: 20px;
    top: 30px;
    height: 3rem;
    width: 3rem;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: 250ms ease-in-out;
    transition: 250ms ease-in-out;
    z-index: 101
}

#sec-1 .main .hamburger .bar {
    height: 2px;
    width: 100%;
    background: var(--fg);
    -webkit-transition: 250ms ease-in-out;
    transition: 250ms ease-in-out
}

#sec-7 .category-btn,
#sec-7 .faq-answer,
#sec-7 .faq-icon,
#sec-7 .faq-question {
    transition: var(--transition)
}

#sec-1 .main .hamburger.cross {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#sec-1 .main .hamburger.cross .bar {
    background: var(--fg)
}

#sec-1 .main .hamburger.cross .bar:first-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#sec-1 .main .hamburger.cross .bar:last-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 4;
    pointer-events: none
}

.cursor div {
    position: absolute;
    display: grid;
    place-items: center
}

.cursor div div {
    border: 1px solid #000;
    border-radius: 50%;
    animation: 2.5s linear infinite pulse;
    box-shadow: 0 0 50px 5px rgba(215, 171, 255, .431372549)
}

.cursor div:first-child,
.cursor div:nth-child(2) {
    width: 100%;
    height: 100%
}

.cursor div:first-child {
    transition: transform .2s ease-out
}

.cursor div:nth-child(2) {
    transition: transform .1s ease-out
}

.cursor div:nth-child(2) div {
    background: #000;
    border-radius: 50%;
    width: 4px;
    height: 4px
}

#sec-1 {
    height: 100vh;
    position: relative
}

#sec-1 .container-fluid {
    padding: 0
}

#sec-1 .main,
#sec-2 .right,
#sec-3 .right {
    position: relative
}

#sec-1 .main #in {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #f6f6f6;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .18))
}

#sec-1 .main #in #crayon {
    margin-right: 30px
}

#sec-1 .main #in #crayon li {
    padding: 0 23px
}

#sec-1 .main #in #crayon li a {
    font-family: Barlow, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #222;
    transition: .5s ease-in-out
}

#sec-1 .main #in #crayon li a:hover,
#sec-9 .footer-2 .common li a:hover {
    letter-spacing: 2px
}

#sec-1 .main .main-1 .slide {
    position: relative;
    margin: 0;
    padding: 0
}

#sec-1 .main .main-1 .slide .item::before {
    display: block;
    padding-top: 39%;
    content: ""
}

#sec-1 .main .main-1 .slide .item .image {
    position: relative;
    overflow: hidden
}

#sec-1 .main .main-1 .slide .item img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100vh
}

#sec-1 .main .main-1 .slide>.slick-list,
#sec-1 .main .main-1 .slide>.slick-list>.slick-track,
#sec-1 .main .main-1 .slide>.slick-list>.slick-track>.slick-slide>div {
    position: relative;
    height: 100vh
}

#sec-1 .main .main-1 .slide-animation {
    animation: 8s forwards fadezoom
}

@keyframes fadezoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

#sec-1 .main .main-2 {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    min-height: 300px
}

#sec-1 .main .main-2 .sub h1 {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 116px;
    line-height: 120px;
    width: 58%
}

#sec-1 .main .main-2 .sub p,
#sec-1 .main .main-2 button {
    font-weight: 400;
    font-family: Barlow, sans-serif;
    color: #fff
}

#sec-1 .main .main-2 .sub p {
    font-size: 26px;
    font-style: italic;
    width: 47%
}

#sec-1 .main .main-2 button {
    font-size: 24px;
    padding: 20px 60px;
    border: 0;
    position: relative
}

#sec-1 .main .main-2 button span,
#sec-8 button span {
    display: block;
    position: relative;
    z-index: 10
}

#sec-1 .main .main-2 button:after,
#sec-1 .main .main-2 button:before,
#sec-8 button:after,
#sec-8 button:before {
    padding: 18px 0 11px;
    content: "";
    position: absolute;
    top: 0;
    left: calc(-100% - 30px);
    height: 100%;
    width: calc(100% + 20px);
    color: #fff;
    border-radius: 2px;
    transform: skew(-25deg)
}

#sec-1 .main .main-2 button:after,
#sec-8 button:after {
    background: #fff;
    transition: left .8s cubic-bezier(.86, 0, .07, 1) .2s;
    z-index: 0;
    opacity: .8
}

#sec-1 .main .main-2 button:before,
#sec-8 button:before {
    background: #000;
    z-index: 5;
    transition: left 1s cubic-bezier(.86, 0, .07, 1)
}

#sec-3 .left .glow,
#sec-3 .left img {
    transition: .5s cubic-bezier(.645, .045, .355, 1);
    display: block
}

#sec-1 .main .main-2 button:hover:after,
#sec-8 button:hover:after {
    left: calc(0% - 10px);
    transition: left .8s cubic-bezier(.86, 0, .07, 1)
}

#sec-1 .main .main-2 button:hover:before,
#sec-8 button:hover:before {
    left: calc(0% - 10px);
    transition: left 1s cubic-bezier(.86, 0, .07, 1)
}

#sec-1 .search-box {
    position: relative;
    display: flex;
    align-items: center
}

#sec-1 .search-results {
    position: absolute;
    top: 100%;
    left: 40px;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999
}

#sec-1 .search-results div a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none
}

#sec-1 .search-results div a:hover {
    background: #f2f2f2
}

#sec-1 .search-box i {
    color: #222
}

#sec-1 .search-icon {
    cursor: pointer;
    font-size: 30px
}

#sec-1 .search-box input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    margin-left: 10px;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #222
}

#sec-1 .search-box input:focus {
    outline: 0
}

#sec-1 .search-box input::placeholder {
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #222
}

#sec-2 {
    position: relative;
    padding: 100px 0 120px;
    background-image: url(../images/vectorstock_32606297\(1\).webp);
    background-repeat: no-repeat;
    height: 100%;
    z-index: 1;
    overflow: hidden
}

#sec-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, .7);
    z-index: -1
}

#sec-2 .left .content h3 {
    font-family: Barlow, sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #097e51
}

#sec-2 .left .content h2,
#sec-4 h2,
#sec-5 h2,
#sec-6 .content h2,
#sec-8 h2 {
    font-size: 70px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600
}

#sec-2 .left .content h2 {
    line-height: 70px;
    margin-bottom: 25px
}

#sec-2 .left .content p {
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 26px;
    font-style: italic;
    color: #3d3939
}

#sec-2 .right .gol {
    display: block;
    margin: auto;
    transform-origin: center center;
    animation: 10s linear infinite rotate
}

#sec-2 .right .cash,
#sec-2 .right .cash img:nth-child(2),
#sec-2 .right .rotating-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#sec-2 .right .rotating-wrapper {
    position: relative;
    animation: 10s linear infinite rotate-2;
    transform-origin: center center
}

#sec-4 .para {
    font-size: 28px;
    margin-bottom: 80px;
    font-family: Barlow, sans-serif
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes rotate-2 {
    100% {
        transform: rotate(-360deg)
    }
}

#sec-3 {
    margin-top: 78px
}

#sec-3 .container-sec-3 {
    max-width: 80%
}

#sec-3 .left {
    display: block;
    position: relative;
    width: 100%
}

#sec-3 .left img {
    width: 90%;
    object-fit: cover;
    box-shadow: 10px 15px 25px 0 rgba(0, 0, 0, .2);
    margin-top: -10px
}

#sec-3 .left:hover img {
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .1)
}

#sec-3 .left .glow-wrap {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin-top: -10px
}

#sec-3 .left .glow {
    position: absolute;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, .2);
    top: 0;
    filter: blur(5px);
    transform: rotate(45deg) translate(-450%, 0)
}

#sec-3 .left:hover .glow {
    transform: rotate(45deg) translate(450%, 0);
    transition: 1s cubic-bezier(.645, .045, .355, 1)
}

#sec-3 .left:hover .glow-wrap,
#sec-3 .left:hover img {
    margin-top: 0
}

#sec-3 .right .right-1 {
    display: flex;
    gap: 2rem;
    margin-bottom: 125px
}

#sec-3 .right .vector-1,
.vector-2 {
    position: absolute
}

#sec-3 .right .vector-1 {
    top: 122px;
    left: 60px;
    z-index: -1
}

#sec-3 .right .vector-2 {
    bottom: 200px;
    left: 60px;
    z-index: -1
}

#sec-3 .right .vector-2 img {
    height: 200px
}

#sec-3 .right .right-1 .sub-right .content h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px
}

#sec-3 .right .right-1 .sub-right .content p {
    font-family: Barlow, sans-serif;
    font-weight: 400;
    color: #848484;
    font-size: 20px;
    font-style: italic
}

#sec-6 .content p,
#sec-6 .text {
    color: #303030;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    text-align: center
}

#sec-5 h2 {
    margin-bottom: 100px
}

#sec-5 .card {
    width: 100%;
    margin-top: 25px;
    height: 95%;
    position: relative
}

#sec-6 .container-sec-6,
#sec-8 {
    background-repeat: no-repeat;
    height: 100%
}

#sec-5 .card::after,
#sec-5 .card::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out;
    background: rgba(255, 255, 255, .1);
    content: "";
    pointer-events: none
}

#sec-5 .card::before {
    transform-origin: left top
}

#sec-5 .card::after {
    transform-origin: right bottom
}

#sec-5 .card:focus::after,
#sec-5 .card:focus::before,
#sec-5 .card:hover::after,
#sec-5 .card:hover::before {
    transform: scale3d(1, 1, 1)
}

#sec-5 .card .card-body h3 {
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #2d2d2d;
    margin-block-end: 0;
    margin: 12px 0 24px
}

#sec-5 .card .card-body .card-text {
    border-top: 1px solid #979797;
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #3d3939;
    padding: 18px 0 0;
}

#sec-5 .card .sub-icon {
    position: absolute;
    top: 200px;
    right: 6%;
    transform: translateY(-42%)
}

#sec-5 .card .card-img-top {
    width: 100%;
    height: 225px
}

#sec-6 {
    padding: 3% 0 5%
}

#sec-6 .container-sec-6 {
    background-image: url(../images/sec-6-back.png)
}

#sec-6 .content p {
    font-size: 40px
}

#sec-6 .text {
    font-size: 34px;
    margin: 0 auto
}

#sec-6 .text .icon {
    display: none
}

#sec-7 .clear-search.visible,
#sec-8 button {
    display: block
}

#sec-6 .text .icon img {
    width: 70px
}

#sec-6 .text.text-1 {
    width: 75%;
    margin-top: 400px
}

#sec-6 .text.text-2 {
    width: 60%;
    margin-top: 300px
}

#sec-6 .text.text-3 {
    width: 65%;
    margin-top: 400px
}

#sec-6 .text.text-4 {
    width: 60%;
    margin-top: 150px;
    margin-left: 200px
}

#sec-6 .text.text-5 {
    width: 70%;
    margin-top: 50px
}

#sec-7 .faq-container {
    width: 100%;
    max-width: 1000px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 6% auto
}

#sec-7 .faq-header {
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color));
    color: var(--white)
}

#sec-7 .faq-header h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    font-family: "Barlow Condensed", sans-serif
}

#sec-7 .category-btn,
#sec-7 .faq-category h2,
#sec-7 .faq-header p,
#sec-7 .search-box,
#sec-7 .search-box input,
#sec-8 button,
#sec-8 input,
#sec-8 label,
#sec-8 p,
#sec-8 textarea,
#sec-9 .footer-1 p,
#sec-9 .footer-2 .common li a,
#sec-9 .footer-3 .sub .sab .sab-2 a {
    font-family: Barlow, sans-serif
}

#sec-7 .faq-header p {
    font-size: 1.1rem;
    opacity: .9
}

#sec-7 .search-container {
    margin: 30px auto;
    max-width: 600px
}

#sec-7 .search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--shadow)
}

#sec-7 .search-box i {
    color: var(--light-text);
    margin-right: 10px
}

#sec-7 .search-box input {
    flex: 1;
    border: none;
    outline: 0;
    font-size: 1rem;
    color: var(--text-color);
    background: 0 0
}

#sec-7 .search-box input::placeholder {
    color: var(--light-text);
    font-family: Barlow, sans-serif
}

#sec-7 .clear-search {
    background: 0 0;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 5px;
    display: none
}

#sec-7 .category-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px
}

#sec-7 .faq-question,
#sec-9 .copyright {
    justify-content: space-between;
    display: flex
}

#sec-7 .category-btn {
    padding: 8px 20px;
    border: 2px solid var(--white);
    border-radius: 25px;
    background: 0 0;
    color: var(--white);
    cursor: pointer;
    font-size: .9rem
}

#sec-7 .faq-category h2,
#sec-7 .faq-icon {
    color: var(--primary-color)
}

#sec-7 .category-btn:hover {
    background: rgba(255, 255, 255, .1)
}

#sec-7 .category-btn.active {
    background: var(--white);
    color: var(--primary-color)
}

#sec-7 .faq-content {
    padding: 40px
}

#sec-7 .faq-category {
    margin-bottom: 40px
}

#sec-7 .faq-category h2 {
    margin-bottom: 20px;
    font-size: 1.5rem
}

#sec-7 .faq-answer p,
#sec-7 .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: Barlow, sans-serif
}

#sec-7 .faq-item {
    background: var(--white);
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden
}

#sec-7 .faq-question {
    padding: 20px;
    cursor: pointer;
    align-items: center
}

#sec-7 .faq-question:hover {
    background: rgba(74, 144, 226, .05)
}

#sec-7 .faq-question h3 {
    color: var(--text-color)
}

#sec-7 .faq-item.active .faq-icon {
    transform: rotate(45deg)
}

#sec-7 .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden
}

#sec-7 .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px
}

#sec-7 .faq-answer p {
    color: var(--light-text)
}

#sec-8 {
    background-image: url(../images/back-sec-8-web.webp);
    background-size: cover;
    background-attachment: fixed
}

#sec-8 h2 {
    color: #fff
}

#sec-8 p {
    font-weight: 400;
    font-size: 31px;
    letter-spacing: .18rem;
    color: #fff;
    opacity: .7
}

#sec-8 input,
#sec-8 label,
#sec-8 textarea {
    color: rgba(33, 33, 33, .7);
    font-size: 20px;
    letter-spacing: .12rem;
    font-weight: 400
}

#sec-8 .form-wrapper {
    padding: 20px;
    font-family: sans-serif
}

#sec-8 .main-forms {
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}

#sec-8 .form-1 {
    position: relative;
    flex: 1 1 calc(25% - 15px);
    min-width: 180px;
    margin-top: 25px
}

#sec-9 .footer-2,
#sec-9 .footer-3 {
    margin: 60px auto 0
}

#sec-8 .form-1.full {
    flex: 1 1 100%;
    margin-top: 40px
}

#sec-8 input,
#sec-8 textarea {
    width: 100%;
    padding: 23px 29px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: 0;
    background-color: #fff
}

#sec-8 label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    pointer-events: none;
    transition: .3s ease-in-out;
    background: #fff;
    padding: 0 5px
}

#sec-8 .noo {
    top: 25px
}

#sec-8 input:focus~label,
#sec-8 input:not(:placeholder-shown)~label,
#sec-8 textarea:focus~label,
#sec-8 textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 12px;
    font-size: 16px;
    color: #097e51
}

#sec-8 .icon-input img {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #007bff;
    cursor: pointer
}

#sec-8 input[type=date]::-webkit-calendar-picker-indicator,
#sec-8 input[type=time]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    pointer-events: none
}

#sec-8 button {
    font-weight: 600;
    font-size: 28px;
    color: #fff;
    padding: 30px 80px;
    border: 0;
    border-radius: 50px;
    position: relative;
    margin: 20px auto 0
}

#sec-9 {
    background-color: #222;
    padding: 2% 0 0;
    overflow: hidden
}

#sec-9 .footer-1 {
    width: 75%
}

#sec-9 .footer-1 .image {
    width: fit-content;
    margin: 0 auto
}

#sec-9 .footer-1 p {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-top: 20px
}

#sec-9 .footer-2 h5,
#sec-9 .footer-3 h5 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #fff
}

#sec-blog .blog-post h5,
#sec-blog .popular-item p,
#sec-download .download-box h2 {
    color: #303030;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: normal
}

#sec-9 .footer-2 {
    width: 250px
}

#sec-9 .footer-2 .common {
    padding: 0;
    margin-top: 25px
}

#sec-9 .footer-2 .common li {
    list-style: none;
    margin: 12px 0
}

#sec-9 .footer-2 .common li a {
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    transition: .5s ease-in-out
}

#sec-9 .footer-3 .sub {
    margin-top: 25px
}

#sec-9 .footer-3 .sub .sab {
    display: flex;
    margin: 12px 0;
    gap: 1rem
}

#sec-9 .footer-3 .sub .sab .sab-1 i {
    color: #097e51;
    font-size: 24px
}

#sec-9 .footer-3 .sub .sab .sab-2 a {
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    transition: .7s ease-in-out
}

#sec-9 .footer-3 .sub .sab .sab-2 a:hover {
    letter-spacing: 1px
}

#sec-9 .copyright {
    border-top: 1px solid #fff;
    color: #fff;
    align-items: center;
    margin-top: 70px;
    padding: 20px 0
}

#sec-9 .copyright p {
    font-size: 18px
}

#sec-9 .copyright ._2 p a {
    color: #fff;
    text-decoration: none
}

#sec-1 .main .main-1.main-gallery {
    background-image: url(../images/gallery-back.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh
}

#sec-1 .main .main-2.main-gallery-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#sec-1 .main .main-2.main-gallery-2 h2 {
    color: #000;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 116px;
    font-style: normal;
    font-weight: 600;
    line-height: 120px
}

#sec-gallery {
    margin-bottom: 5%
}

#sec-blog .container-sec-blog,
#sec-download .container-sec-download,
#sec-gallery .container-sec-gallery {
    max-width: 84%
}

#sec-gallery .gallery-item {
    position: relative;
    margin: 30px 0
}

#sec-gallery .gallery-item img {
    width: 100%;
    filter: drop-shadow(0 0 19px rgba(0, 0, 0, .2))
}

#sec-gallery .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s
}

#sec-gallery .gallery-item:hover .hover-image {
    opacity: 1
}

#sec-1 .main .main-1.main-download {
    background-image: url(../images/download-back.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh
}

#sec-download .download-box {
    padding: 10px;
    border-radius: 8px;
    transition: transform .3s;
    background: #fff;
    text-decoration: none
}

#sec-download .download-box .img-fluid {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .25))
}

#sec-download .download-box:hover {
    transform: translateY(-5px);
    text-decoration: none
}

#sec-download .download-box .end {
    display: flex;
    justify-content: space-between
}

#sec-download .download-box h2 {
    font-size: 35px;
    line-height: 40px;
    text-transform: capitalize;
    margin: 10px 0 5px;
    text-align: left
}

#sec-1 .main .main-1.main-blog {
    background-image: url(../images/blog-back.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh
}

#sec-blog {
    margin: 0 0 6%
}

#sec-blog a {
    text-decoration: none
}

#sec-blog .blog-post {
    display: flex;
    padding: 83px 0;
    align-items: center;
    border-bottom: 1px solid #000;
    width: 94%
}

#sec-blog .blog-post img {
    margin-right: 20px
}

#sec-blog .blog-post h5 {
    font-size: 50px;
    line-height: 55px
}

#sec-blog .popular-item {
    display: flex;
    align-items: center;
    margin-bottom: 45px
}

#sec-blog .popular-item img {
    margin-right: 10px
}

#sec-blog .popular-item p {
    font-size: 22px;
    line-height: 27px
}

#sec-blog .popular-item small {
    color: #097e51;
    font-family: Barlow;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

#sec-blog .popular-post h5,
#sec-blog .popular-tags h5 {
    color: #097e51;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 30px
}

#sec-blog .popular-tags .badge {
    background: #097e51;
    color: #fff;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 30px;
    margin: 0 20px 20px 0;
    border-radius: 0
}

@media only screen and (min-width:320px) and (max-width:480px) {

    #sec-4 h2,
    #sec-5 h2,
    #sec-6 .content h2,
    #sec-8 h2 {
        font-size: 32px
    }

    #sec-4 .para {
        font-size: 20px;
        margin-bottom: 0;
        margin-top: 15px
    }

    #sec-3 .right,
    #sec-5 .card {
        margin-top: 50px
    }

    #sec-1 .main .main-1 .slide .item img {
        width: initial
    }

    #sec-1 .main .main-2 .sub h1 {
        font-size: 35px;
        line-height: 42px;
        width: 100%
    }

    #sec-1 .main .main-2 .sub p {
        font-size: 16px;
        width: 97%
    }

    #sec-1 .main .main-2 button {
        font-size: 16px;
        padding: 20px 23px
    }

    #sec-2 .container-sec-2,
    #sec-3 .container-sec-3,
    #sec-5 .container-sec-5,
    #sec-8 .container-sec-8 {
        max-width: 96%
    }

    #sec-2 {
        background-color: #fff5f5;
        padding: 62px 0 73px
    }

    #sec-2 .left .content h3 {
        font-size: 23px
    }

    #sec-2 .left .content h2 {
        font-size: 32px;
        line-height: 34px
    }

    #sec-2 .left .content p,
    #sec-5 .card .card-body .card-text,
    #sec-7 .slider-arrows button i,
    #sec-8 input,
    #sec-8 label,
    #sec-8 textarea,
    #sec-9 .copyright p,
    #sec-9 .footer-1 p {
        font-size: 16px
    }

    #sec-2 .right .gol {
        width: 200px;
        height: 200px
    }

    #sec-2 .right .rotating-wrapper img {
        width: 80px
    }

    #sec-2 .right .cash img:nth-child(2) {
        width: 30px
    }

    #sec-3 .left img {
        width: 100%
    }

    #sec-3 .right .right-1 {
        display: inherit;
        margin-bottom: 60px
    }

    #sec-3 .right .right-1 .sub-left,
    #sec-9 .footer-2 .common li {
        text-align: center
    }

    #sec-3 .right .right-1 .sub-left img {
        width: 90px;
        margin: 20px auto 0
    }

    #sec-3 .right .right-1 .sub-right .content h2 {
        font-size: 30px;
        line-height: 63px;
        text-align: center
    }

    #sec-3 .right .right-1 .sub-right .content p {
        font-size: 17px;
        text-align: center
    }

    #sec-3 .right .vector-1 img,
    .vector-2 img {
        display: none
    }

    #sec-5 h2 {
        margin-bottom: 0;
        margin-top: 30px
    }

    #sec-6 .content p,
    #sec-6 .text p,
    #sec-8 p {
        font-size: 20px
    }

    #sec-5 .card .card-body h3,
    #sec-8 button,
    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 18px
    }

    #sec-5 .card {
        width: 100%;
        height: auto
    }

    #sec-6 .content p,
    #sec-9 .footer-1 {
        width: 78%;
        margin: 0 auto
    }

    #sec-5 .card .sub-icon img {
        width: 60px
    }

    #sec-5 .card .card-img-top {
        width: 100%;
        height: 163px
    }

    #sec-5 .card .sub-icon {
        top: 150px
    }

    #sec-6 {
        padding: 20% 0
    }

    #sec-6 .container-sec-6 {
        background-image: none;
        height: 100%
    }

    #sec-6 .text .icon,
    #sec-blog .popular-item {
        display: block
    }

    #sec-6 .text.text-1 {
        width: 93%;
        margin-top: 100px
    }

    #sec-6 .text.text-2 {
        width: 70%;
        margin-top: 150px
    }

    #sec-6 .text.text-3 {
        width: 86%;
        margin-top: 200px
    }

    #sec-6 .text.text-4 {
        width: 90%;
        margin-top: 200px;
        margin-left: auto
    }

    #sec-6 .text.text-5 {
        width: 80%;
        margin-top: -50px
    }

    #sec-8 {
        padding: 16% 0
    }

    #sec-8 button {
        padding: 19px 30px
    }

    #sec-9 {
        padding: 20% 0 0
    }

    #sec-9 .footer-2 h5 {
        font-size: 26px
    }

    #sec-9 .footer-2 {
        width: 115px;
        margin: 50px auto 0
    }

    #sec-9 .footer-3 {
        width: 260px;
        margin: 50px auto 0
    }

    #sec-9 .footer-3 h5 {
        font-size: 26px;
        text-align: center
    }

    #sec-9 .footer-3 .sub .sab .sab-2 a:hover {
        letter-spacing: 0
    }

    #sec-9 .copyright {
        flex-direction: column
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 35px
    }

    #sec-download .download-box h2 {
        font-size: 16px;
        line-height: 17px
    }

    #sec-blog .blog-post h5 {
        font-size: 22px;
        line-height: 24px
    }

    #sec-blog .blog-post {
        padding: 44px 0;
        width: 100%
    }

    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 25px;
        margin: 20px 0 32px;
        text-align: center
    }

    #sec-blog .popular-item p {
        font-size: 17px;
        line-height: 19px
    }

    #sec-blog .popular-item small {
        font-size: 12px
    }

    #sec-blog .popular-tags .badge {
        font-size: 16px;
        margin: 0 auto 20px;
        display: block;
        width: 70%
    }

    #sec-blog .popular-item img {
        margin-right: 0;
        margin-bottom: 15px
    }
}

@media only screen and (min-width:481px) and (max-width:767px) {

    #sec-4 h2,
    #sec-5 h2,
    #sec-6 .content h2,
    #sec-8 h2 {
        font-size: 35px
    }

    #sec-4 .para {
        font-size: 20px;
        margin-bottom: 0;
        margin-top: 5px
    }

    #sec-3 .right,
    #sec-5 .card {
        margin-top: 50px
    }

    #sec-1 .main .main-2 .sub h1 {
        font-size: 50px;
        line-height: 59px;
        width: 85%
    }

    #sec-1 .main .main-2 .sub p {
        font-size: 20px;
        width: 88%
    }

    #sec-1 .main .main-2 button {
        font-size: 16px;
        padding: 20px 23px
    }

    #sec-2 .container-sec-2,
    #sec-3 .container-sec-3,
    #sec-5 .container-sec-5,
    #sec-8 .container-sec-8 {
        max-width: 96%
    }

    #sec-2 {
        background-color: #fff5f5;
        padding: 62px 0 73px
    }

    #sec-2 .left .content h3 {
        font-size: 26px
    }

    #sec-2 .left .content h2 {
        font-size: 35px;
        line-height: 29px
    }

    #sec-2 .left .content p,
    #sec-5 .card .card-body .card-text,
    #sec-8 input,
    #sec-8 label,
    #sec-8 textarea,
    #sec-9 .footer-1 p {
        font-size: 18px
    }

    #sec-2 .right .gol {
        width: 250px;
        height: 250px
    }

    #sec-2 .right .rotating-wrapper img {
        width: 100px
    }

    #sec-2 .right .cash img:nth-child(2) {
        width: 40px
    }

    #sec-3 .left img {
        width: 75%;
        margin: 0 auto
    }

    #sec-3 .right .right-1 {
        display: inherit;
        margin-bottom: 60px
    }

    #sec-3 .right .right-1 .sub-left,
    #sec-9 .footer-2 .common li {
        text-align: center
    }

    #sec-3 .right .right-1 .sub-left img {
        width: 90px;
        margin: 20px auto 0
    }

    #sec-3 .right .right-1 .sub-right .content h2 {
        font-size: 30px;
        line-height: 63px;
        text-align: center
    }

    #sec-3 .right .right-1 .sub-right .content p {
        font-size: 19px;
        text-align: center
    }

    #sec-3 .right .vector-1 img,
    .vector-2 img {
        display: none
    }

    #sec-5 .card .card-body h3,
    #sec-6 .text p,
    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 20px
    }

    #sec-5 h2 {
        margin-bottom: 0;
        margin-top: 30px
    }

    #sec-5 .card {
        width: 100%;
        height: auto
    }

    #sec-5 .card .sub-icon img {
        width: 75px
    }

    #sec-5 .card .card-img-top {
        width: 100%;
        height: 250px
    }

    #sec-5 .card .sub-icon {
        top: 240px
    }

    #sec-6 {
        padding: 20% 0
    }

    #sec-6 .content p {
        font-size: 22px;
        width: 85%;
        margin: 0 auto
    }

    #sec-6 .container-sec-6 {
        background-image: none;
        height: 100%
    }

    #sec-6 .text .icon {
        display: block
    }

    #sec-6 .text.text-1 {
        width: 97%;
        margin-top: 100px
    }

    #sec-6 .text.text-2 {
        width: 70%;
        margin-top: 150px
    }

    #sec-6 .text.text-3 {
        width: 86%;
        margin-top: 200px
    }

    #sec-6 .text.text-4 {
        width: 90%;
        margin-top: 200px;
        margin-left: auto
    }

    #sec-6 .text.text-5 {
        width: 80%;
        margin-top: -50px
    }

    #sec-8 {
        padding: 16% 0
    }

    #sec-8 p {
        font-size: 22px
    }

    #sec-8 button {
        font-size: 18px;
        padding: 19px 30px
    }

    #sec-9 {
        padding: 7% 0 0
    }

    #sec-9 .footer-1 {
        width: 78%;
        margin: 0 auto
    }

    #sec-9 .footer-2 h5 {
        font-size: 28px
    }

    #sec-9 .footer-2 {
        width: 115px;
        margin: 50px auto 0
    }

    #sec-9 .footer-3 {
        width: 286px;
        margin: 50px auto 0
    }

    #sec-9 .footer-3 h5 {
        font-size: 28px;
        text-align: center
    }

    #sec-9 .footer-3 .sub .sab .sab-2 a:hover {
        letter-spacing: 0
    }

    #sec-9 .copyright {
        flex-direction: column
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 50px
    }

    #sec-download .download-box .img-fluid {
        width: 100%
    }

    #sec-download .download-box h2 {
        font-size: 29px
    }

    #sec-blog .blog-post h5 {
        font-size: 30px;
        line-height: 31px
    }

    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 30px;
        margin: 24px 0 30px
    }

    #sec-blog .popular-item p {
        font-size: 19px;
        line-height: 21px
    }

    #sec-blog .popular-tags .badge {
        font-size: 16px;
        line-height: 17px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    #sec-4 h2 {
        font-size: 52px
    }

    #sec-4 .para {
        font-size: 24px;
        margin-bottom: 30px
    }

    #sec-1 .main .main-2 .sub p {
        font-size: 22px;
        width: 82%
    }

    #sec-1 .main .main-2 .sub h1 {
        font-size: 72px;
        line-height: 78px;
        width: 85%
    }

    #sec-1 .main .main-2 button {
        font-size: 22px;
        padding: 20px 38px
    }

    #sec-2 .left .content h3 {
        font-size: 34px
    }

    #sec-2 .left .content h2 {
        font-size: 52px;
        line-height: 62px
    }

    #sec-2 .left .content p,
    #sec-6 .text p {
        font-size: 23px
    }

    #sec-2 .right .gol {
        width: 250px;
        height: 250px
    }

    #sec-2 .right .rotating-wrapper img {
        width: 100px
    }

    #sec-2 .right .cash img:nth-child(2) {
        width: 40px
    }

    #sec-3 .left img {
        width: 80%;
        margin: -10px auto 0
    }

    #sec-3 .right {
        margin-top: 90px
    }

    #sec-3 .right .vector-1 {
        top: 132px
    }

    #sec-3 .right .vector-2 {
        bottom: 164px
    }

    #sec-3 .right .right-1 .sub-right .content h2 {
        font-size: 35px
    }

    #sec-3 .right .right-1 .sub-right .content p,
    #sec-5 .card .card-body .card-text,
    #sec-5 .card .card-body h3 {
        font-size: 18px
    }

    #sec-5 h2 {
        font-size: 44px;
        margin-bottom: 30px
    }

    #sec-5 .card .sub-icon img {
        width: 65px
    }

    #sec-5 .card .sub-icon {
        top: 206px
    }

    #sec-6 .content h2 {
        font-size: 48px
    }

    #sec-6 .content p,
    #sec-9 .footer-2 h5,
    #sec-9 .footer-3 h5 {
        font-size: 30px
    }

    #sec-6 .text.text-1 {
        width: 97%;
        margin-top: 451px
    }

    #sec-6 .text.text-2 {
        width: 80%;
        margin-top: 300px
    }

    #sec-6 .text.text-3 {
        width: 86%;
        margin-top: 435px
    }

    #sec-6 .text.text-4 {
        width: 80%;
        margin-top: 209px;
        margin-left: 87px
    }

    #sec-6 .text.text-5 {
        width: 88%;
        margin-top: 50px
    }

    #sec-8 h2 {
        font-size: 53px
    }

    #sec-8 p {
        font-size: 26px
    }

    #sec-8 input,
    #sec-8 label,
    #sec-8 textarea {
        font-size: 17px
    }

    #sec-8 button {
        font-size: 23px;
        padding: 30px 57px
    }

    #sec-9 .footer-1 {
        width: 78%;
        margin: 0 auto
    }

    #sec-9 .footer-1 p {
        font-size: 20px;
        text-align: center
    }

    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 20px
    }

    #sec-9 .footer-2,
    #sec-9 .footer-3 {
        margin: 70px auto 0
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 72px
    }

    #sec-download .download-box h2 {
        font-size: 24px;
        line-height: 30px
    }

    #sec-blog .blog-post {
        width: 100%
    }

    #sec-blog .container-sec-blog {
        max-width: 96%
    }

    #sec-blog .blog-post h5 {
        font-size: 37px;
        line-height: 39px
    }

    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 35px;
        margin: 24px 0 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1024px) {
    #sec-4 h2 {
        font-size: 64px
    }

    #sec-4 .para {
        font-size: 24px
    }

    #sec-1 .main .main-2 {
        top: 56%
    }

    #sec-1 .main .main-2 .sub h1 {
        font-size: 80px;
        line-height: 86px;
        width: 89%
    }

    #sec-1 .main .main-2 .sub p {
        font-size: 25px;
        width: 70%
    }

    #sec-1 .main #in #crayon li {
        padding: 0 17px
    }

    #sec-1 .main #in #crayon li a {
        font-size: 21px
    }

    #sec-2 .left .content h2 {
        font-size: 64px;
        line-height: 61px
    }

    #sec-2 .left .content h3,
    #sec-3 .right .right-1 .sub-right .content h2 {
        font-size: 35px
    }

    #sec-2 .left .content p {
        font-size: 23px
    }

    #sec-2 .right .gol {
        width: 250px;
        height: 250px
    }

    #sec-2 .right .rotating-wrapper img {
        width: 100px
    }

    #sec-2 .right .cash img:nth-child(2) {
        width: 40px
    }

    #sec-3 .container-sec-3,
    #sec-5 .container-sec-5,
    #sec-blog .container-sec-blog {
        max-width: 96%
    }

    #sec-3 .right .right-1 .sub-right .content p {
        font-size: 16px
    }

    #sec-3 .right .right-1 {
        margin-bottom: 50px
    }

    #sec-3 .right .sub-left img {
        width: 80px
    }

    #sec-3 .right .vector-1 {
        top: 72px;
        left: 39px
    }

    #sec-3 .right .vector-2 {
        bottom: 160px;
        left: 38px
    }

    #sec-5 h2,
    #sec-6 .content h2 {
        font-size: 55px
    }

    #sec-5 .card .card-body h3,
    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-1 i,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 20px
    }

    #sec-5 .card .card-body .card-text {
        font-size: 15px
    }

    #sec-5 .card .sub-icon img {
        width: 60px
    }

    #sec-5 .card .card-img-top {
        width: 100%;
        height: 150px
    }

    #sec-5 .card .sub-icon {
        top: 134px
    }

    #sec-6 .content p,
    #sec-9 .footer-2 h5,
    #sec-9 .footer-3 h5,
    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 32px
    }

    #sec-6 .text.text-1 {
        width: 90%;
        margin-top: 400px
    }

    #sec-6 .text.text-4 {
        width: 69%;
        margin-top: 214px;
        margin-left: 120px
    }

    #sec-6 .text p,
    #sec-8 p {
        font-size: 27px
    }

    #sec-8 h2 {
        font-size: 60px
    }

    #sec-8 input,
    #sec-8 label,
    #sec-8 textarea {
        font-size: 17px
    }

    #sec-8 button {
        font-size: 25px;
        padding: 30px 64px
    }

    #sec-9 .footer-1 {
        width: 87%
    }

    #sec-9 .footer-1 p {
        font-size: 18px
    }

    #sec-9 .footer-2 {
        width: 170px
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 80px
    }

    #sec-download .download-box h2 {
        font-size: 23px;
        line-height: 23px
    }

    #sec-blog .blog-post {
        width: 79%;
        padding: 46px 0
    }

    #sec-blog .blog-post,
    #sec-blog .popular-item {
        display: block
    }

    #sec-blog .blog-post h5 {
        font-size: 30px;
        line-height: 33px
    }

    #sec-blog .blog-post img {
        margin-right: 0;
        margin-bottom: 13px
    }

    #sec-blog .popular-tags .badge {
        font-size: 12px
    }
}

@media only screen and (min-width:1025px) and (max-width:1200px) {
    #sec-4 h2 {
        font-size: 64px
    }

    #sec-4 .para {
        font-size: 24px
    }

    #sec-1 .main .main-2 {
        top: 56%
    }

    #sec-1 .main .main-2 .sub h1 {
        font-size: 90px;
        line-height: 86px;
        width: 85%
    }

    #sec-1 .main .main-2 .sub p {
        font-size: 25px;
        width: 70%
    }

    #sec-1 .main #in #crayon li {
        padding: 0 17px
    }

    #sec-1 .main #in #crayon li a {
        font-size: 21px
    }

    #sec-2 .left .content h2 {
        font-size: 64px;
        line-height: 61px
    }

    #sec-2 .left .content h3,
    #sec-3 .right .right-1 .sub-right .content h2 {
        font-size: 35px
    }

    #sec-2 .left .content p {
        font-size: 23px
    }

    #sec-2 .right .gol {
        width: 250px;
        height: 250px
    }

    #sec-2 .right .rotating-wrapper img {
        width: 100px
    }

    #sec-2 .right .cash img:nth-child(2) {
        width: 40px
    }

    #sec-3 .container-sec-3,
    #sec-5 .container-sec-5 {
        max-width: 96%
    }

    #sec-3 .right .right-1 .sub-right .content p {
        font-size: 16px
    }

    #sec-3 .right .right-1 {
        margin-bottom: 50px
    }

    #sec-3 .right .sub-left img {
        width: 80px
    }

    #sec-3 .right .vector-1 {
        top: 72px;
        left: 39px
    }

    #sec-3 .right .vector-2 {
        bottom: 160px;
        left: 38px
    }

    #sec-5 h2,
    #sec-6 .content h2 {
        font-size: 55px
    }

    #sec-5 .card .card-body h3 {
        font-size: 19px
    }

    #sec-5 .card .card-body .card-text {
        font-size: 15px
    }

    #sec-5 .card .card-img-top {
        height: 150px
    }

    #sec-5 .card .sub-icon img {
        width: 60px
    }

    #sec-5 .card .sub-icon {
        top: 34%
    }

    #sec-6 .content p,
    #sec-9 .footer-2 h5,
    #sec-9 .footer-3 h5,
    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 32px
    }

    #sec-6 .text.text-1 {
        width: 90%;
        margin-top: 400px
    }

    #sec-6 .text.text-4 {
        width: 69%;
        margin-top: 214px;
        margin-left: 120px
    }

    #sec-6 .text p,
    #sec-8 p {
        font-size: 27px
    }

    #sec-8 h2 {
        font-size: 60px
    }

    #sec-8 input,
    #sec-8 label,
    #sec-8 textarea {
        font-size: 17px
    }

    #sec-8 button {
        font-size: 25px;
        padding: 30px 64px
    }

    #sec-9 .footer-1 {
        width: 87%
    }

    #sec-9 .footer-1 p {
        font-size: 18px
    }

    #sec-9 .footer-2 {
        width: 170px
    }

    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-1 i,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 20px
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 90px
    }

    #sec-download .download-box h2 {
        font-size: 23px;
        line-height: 23px
    }

    #sec-blog .container-sec-blog {
        max-width: 90%
    }

    #sec-blog .blog-post {
        width: 79%;
        padding: 46px 0
    }

    #sec-blog .blog-post,
    #sec-blog .popular-item {
        display: block
    }

    #sec-blog .blog-post h5 {
        font-size: 30px;
        line-height: 33px
    }

    #sec-blog .blog-post img {
        margin-right: 0;
        margin-bottom: 13px
    }

    #sec-blog .popular-tags .badge {
        font-size: 14px
    }
}

@media only screen and (min-width:1201px) and (max-width:1400px) {
    #sec-4 h2 {
        font-size: 64px
    }

    #sec-4 .para {
        font-size: 24px
    }

    #sec-1 .main .main-2 {
        top: 56%
    }

    #sec-1 .main .main-2 .sub h1 {
        font-size: 90px;
        line-height: 86px;
        width: 74%
    }

    #sec-1 .main .main-2 .sub p {
        font-size: 25px;
        width: 70%
    }

    #sec-1 .main #in #crayon li {
        padding: 0 17px
    }

    #sec-1 .main #in #crayon li a {
        font-size: 21px
    }

    #sec-2 .left .content h2 {
        font-size: 64px;
        line-height: 61px
    }

    #sec-2 .left .content h3,
    #sec-3 .right .right-1 .sub-right .content h2 {
        font-size: 35px
    }

    #sec-2 .left .content p {
        font-size: 23px
    }

    #sec-2 .right .gol {
        width: 250px;
        height: 250px
    }

    #sec-2 .right .rotating-wrapper img {
        width: 100px
    }

    #sec-2 .right .cash img:nth-child(2) {
        width: 40px
    }

    #sec-3 .container-sec-3,
    #sec-5 .container-sec-5 {
        max-width: 96%
    }

    #sec-3 .right .right-1 .sub-right .content p,
    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-1 i,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 20px
    }

    #sec-3 .right .right-1 {
        margin-bottom: 50px
    }

    #sec-3 .right .sub-left img {
        width: 95px
    }

    #sec-3 .right .vector-1 {
        top: 72px;
        left: 39px
    }

    #sec-3 .right .vector-2 {
        bottom: 160px;
        left: 38px
    }

    #sec-5 h2,
    #sec-6 .content h2 {
        font-size: 55px
    }

    #sec-5 .card .card-body h3 {
        font-size: 19px
    }

    #sec-5 .card .card-body .card-text,
    #sec-8 input,
    #sec-8 label,
    #sec-8 textarea {
        font-size: 17px
    }

    #sec-5 .card .card-img-top {
        height: 150px
    }

    #sec-5 .card .sub-icon img {
        width: 60px
    }

    #sec-5 .card .sub-icon {
        top: 34%
    }

    #sec-6 .content p,
    #sec-9 .footer-2 h5,
    #sec-9 .footer-3 h5,
    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 32px
    }

    #sec-6 .text.text-1 {
        width: 90%;
        margin-top: 400px
    }

    #sec-6 .text.text-4 {
        width: 69%;
        margin-top: 214px;
        margin-left: 120px
    }

    #sec-6 .text p,
    #sec-7 .test p,
    #sec-8 p {
        font-size: 27px
    }

    #sec-7 .test h2 {
        font-size: 62px
    }

    #sec-7 .courier-1 .all-in p {
        font-size: 21px;
        width: 95%
    }

    #sec-8 h2 {
        font-size: 60px
    }

    #sec-8 button {
        font-size: 25px;
        padding: 30px 64px
    }

    #sec-9 .footer-1 {
        width: 87%
    }

    #sec-9 .footer-1 p {
        font-size: 18px
    }

    #sec-9 .footer-2 {
        width: 170px
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 90px
    }

    #sec-download .download-box h2 {
        font-size: 23px;
        line-height: 23px
    }

    #sec-blog .blog-post {
        width: 79%;
        padding: 46px 0
    }

    #sec-blog .blog-post,
    #sec-blog .popular-item {
        display: block
    }

    #sec-blog .blog-post h5 {
        font-size: 35px;
        line-height: 38px
    }

    #sec-blog .blog-post img {
        margin-right: 0;
        margin-bottom: 13px;
        width: 100%
    }

    #sec-blog .popular-tags .badge {
        font-size: 14px
    }
}

@media only screen and (min-width:1401px) and (max-width:1600px) {
    #sec-1 .main .main-2 .sub h1 {
        font-size: 90px;
        line-height: 81px;
        width: 66%
    }

    #sec-1 .main .main-2 {
        top: 62%
    }

    #sec-3 .container-sec-3,
    #sec-5 .container-sec-5 {
        max-width: 90%
    }

    #sec-3 .right .right-1 {
        margin-bottom: 40px
    }

    #sec-3 .right .sub-left img {
        width: 110px
    }

    #sec-3 .right .vector-1,
    #sec-3 .right .vector-2 {
        left: 52px
    }

    .card-img,
    .card-img-bottom,
    .card-img-top {
        width: 100%;
        height: 190px
    }

    #sec-5 .card .card-body h3 {
        font-size: 21px
    }

    #sec-5 .card .sub-icon img {
        width: 65px
    }

    #sec-5 .card .sub-icon {
        top: 209px
    }

    #sec-9 .footer-2 h5,
    #sec-9 .footer-3 h5 {
        font-size: 30px
    }

    #sec-9 .footer-1 p,
    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 17px
    }

    #sec-9 .copyright p {
        margin-block-end: 0;
        font-size: 15px
    }

    #sec-1 .main .main-2.main-gallery-2 h2 {
        font-size: 90px
    }

    #sec-download .download-box h2 {
        font-size: 23px;
        line-height: 23px
    }

    #sec-blog .blog-post {
        width: 90%;
        padding: 46px 0
    }

    #sec-blog .popular-item {
        display: block
    }

    #sec-blog .blog-post h5 {
        font-size: 35px;
        line-height: 38px
    }

    #sec-blog .popular-post h5,
    #sec-blog .popular-tags h5 {
        font-size: 32px
    }

    #sec-blog .popular-tags .badge {
        font-size: 14px
    }
}

@media only screen and (min-width:1601px) and (max-width:1919px) {
    #sec-1 .main .main-2 {
        top: 57%
    }

    #sec-1 .main .main-2 .sub h1 {
        width: 69%
    }

    #sec-3 .container-sec-3,
    #sec-blog .container-sec-blog {
        max-width: 90%
    }

    #sec-5 .card .sub-icon {
        top: 200px
    }

    #sec-5 .card .card-body h3,
    #sec-9 .footer-2 .common li a,
    #sec-9 .footer-3 .sub .sab .sab-2 a {
        font-size: 22px
    }

    #sec-blog .blog-post h5 {
        font-size: 40px;
        line-height: 43px
    }
}

@media (max-width:1300px) {
    #sec-1 .search-box {
        display: none
    }

    #sec-1 .container-nav {
        max-width: 96%
    }
}

@media (max-width:1024px) {
    #sec-1 .main .nav-container .navbar .nav-list .nav-item {
        font-size: 2rem
    }
}

@media (max-width:767px) {
    #sec-1 .main .nav-container .stripe-bg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #sec-1 .main .nav-container .stripe-bg .stripe {
        width: 0;
        height: 25%;
        -webkit-transition: width 250ms ease-in-out 0;
        transition: width 250ms ease-in-out 0
    }

    #sec-1 .main .nav-container.show .stripe {
        width: 100%;
        -webkit-transition-delay: var(--j);
        transition-delay: var(--j)
    }

    #sec-1 .main .nav-container .navbar .nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    #sec-1 .main .nav-container .navbar .nav-list .nav-item {
        margin: 1em 0
    }

    #sec-1 .main .main-wrapper main .hero-section {
        text-align: center
    }

    #sec-1 .main .main-wrapper main .hero-section .hero-heading {
        line-height: 1em;
        margin: .5em 0
    }

    #sec-blog .blog-post {
        display: block
    }

    #sec-blog .container-sec-blog {
        max-width: 92%
    }

    #sec-blog .blog-post img {
        margin: 0 0 10px;
        width: 100%;
        height: auto
    }
}

@media (max-width:991px) {

    #cursor,
    .navbar-brand {
        display: none
    }

    #sec-1 .main .hamburger {
        display: flex
    }

    #sec-1 .main #in {
        background-color: transparent
    }
}

@media (max-width:845px) {
    #sec-1 .main .nav-container .navbar .nav-list .nav-item {
        font-size: 1.5rem
    }

    #sec-7 .faq-header h1 {
        font-size: 2rem
    }

    #sec-7 .faq-content {
        padding: 20px
    }

    #sec-7 .category-filter {
        gap: 5px
    }

    #sec-7 .category-btn {
        padding: 6px 15px;
        font-size: .8rem
    }
}

@media (max-width:480px) {
    #sec-7 .faq-header {
        padding: 30px 15px
    }

    #sec-7 .faq-header h1 {
        font-size: 1.8rem
    }

    #sec-7 .search-box {
        padding: 8px 15px
    }

    #sec-7 .faq-question h3 {
        font-size: 1rem
    }
}