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


:root {
    --headings-font: "Oswald";
    --regular-font: "Poppins";
    --dark-Color: #000;
    --bg-color: #F4F3ED;
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: var(--bg-color);
    position: relative;
    cursor: none;
}

.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #808080;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 9999 !important;
}


.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #808080;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9999 !important;
}

.navbar a {
    cursor: none !important; /* Disable the default cursor */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headings-font);
}

p {
    font-family: var(--regular-font);
}

.fixed-top {
    background-color: var(--bg-color);
}

.navbar-brand h2 {
    font-weight: 700;
}

.navbar-nav {
    display: flex;
    gap: 20px;
    font-family: var(--regular-font);
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link {
    color: var(--dark-Color);
}

.navbar-nav .dropdown-menu {
    background-color: var(--dark-Color);
    border-radius: 0 !important;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #F4F3ED !important;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: var(--dark-Color) !important;
}

.navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: #FFF !important;
    color: var(--dark-Color) !important;
}

.dropdown-toggle::after {
    display: none;
}

.HeroSection {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.HeroSection h1 {
    font-size: 13vw;
    text-transform: uppercase;
    color: #000;
}



.servicesBox {
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
}

.servicesBox:hover .servicesCount {
    background-color: #000;
    color: #fff;
}

.servicesCount {
    border: 1.5px solid #000;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.5s;
    font-family: var(--regular-font);
}

.servicesBox i {
    font-size: 30px;
    position: absolute;
    right: 20px;
    transition: all 0.4s;
}

.servicesBox:hover i {
    rotate: 45deg;
}


.lastSection p {
    font-size: 23px;
    color: #000;
    text-align: center;
}

.lastSection h2 {
    font-size: 13vw;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    .HeroSection {
        height: 30vh;
        margin-bottom: 70px;
        margin-top: 0px;
        align-items: end;
    }

    .HeroSection h1 {
        font-size: 20vw;
        font-weight: 800;
    }

    
}