body {
    font-family: var(--text-font);
    overflow-x: hidden !important;
}

* {

    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

li {

    list-style: none;
}

ul {
    padding-left: 0;
}

a {

    text-decoration: none;
    color: #2C2C2C;
}

p {
    color: #2C2C2C;
    font-size: 15px;
}

img {

    max-width: 100%;
}

.tu-rw {

    display: flex;
}

.tu-align {

    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    color: var(--secondary-color);
    font-family: var(--heading-font);
}

:root {

    --primary-color: #B9823B;
    --secondary-color: #1D394E;
    --prime-light: rgba(185, 130, 59, 0.05);
    --second-light: rgba(249, 252, 255, 0.48);
    --heading-font: 'Urbanist', sans-serif;
    --text-font: 'Manrope', sans-serif;
}

section {

    padding-top: 4.2em;
}

button {

    font-family: var(--text-font);
}

.moreBtn a {

    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 40px;
    width: fit-content;
    display: block;
    margin-top: 20px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.moreBtn a:hover {

    background-color: var(--primary-color);
}


/* width */
::-webkit-scrollbar {
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #e4e4e4;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.heroContent [data-aos=fade-up],
.tuService [data-aos=fade-up],
.tuWhy [data-aos=fade-up] {

    transform: translate3d(0, 40px, 0);
}

.mobTogg {

    display: none;
    position: relative;
}

.mobTogg span {

    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.navBar .mobTogg.open {

    top: -100px;
}

.navBar.stick .mobTogg.open {

    top: 0;
}


.mobTogg.open span:nth-child(1) {

    transform: rotate(45deg) translate(4px, 4px);
}

.mobTogg.open span:nth-child(2) {

    transform: rotate(-45deg) translate(2px, -2px);
}

