* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
}

h1,
h2 {
    font-family: "Lora", serif;
    font-weight: 400;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

p,
span,
li,
a {
    font-family: "Manrope", sans-serif;
}

body.body {
    background: transparent linear-gradient(180deg, #000101 24%, #00000000 50%) 0% 0% no-repeat padding-box;
}

body.contact-page {
    background: #000101;
}

/* HEADER WRAPPER */
.agrim-header {
    width: 100%;
    padding: 20px 0;
    background: #000;
    /* black background */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all .3s ease;
}

/* FLEX LAYOUT */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 40px;
}

/* LOGO */
.header-logo img {
    height: 60px;
    width: auto;
}

#agrimNav {
    display: flex;
    gap: 200px;
}

/* NAVIGATION */
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav ul:nth-child(2) li: {
    gap: 20px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.header-nav a:hover {
    color: #C3A35A;
    font-size: 16px;
    font-weight: 600;
    /* subtle hover color */
}

/* CTA BUTTON (PLATFORM) */
.platform-btn {
    display: flex;
    align-items: center;
    background: #E31E24;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    gap: 8px;
    transition: background 0.3s ease, transform .3s ease;
}

.platform-btn img {
    width: 20px;
    height: auto;
}

a.platform-btn:hover {
    color: #fff;
    font-size: 15px;
}

.header-cta.mobile {
    display: none;
}


#icon3 {
    width: 35px;
    height: 45px;
    position: relative;
    cursor: pointer;
    display: none;
}

#icon3 span {
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    transition: .3s ease;
}

/* dot positions */
#icon3 span:nth-child(1),
#icon3 span:nth-child(2),
#icon3 span:nth-child(3) {
    top: 0px;
}

#icon3 span:nth-child(4),
#icon3 span:nth-child(5),
#icon3 span:nth-child(6) {
    top: 15px;
}

#icon3 span:nth-child(7),
#icon3 span:nth-child(8),
#icon3 span:nth-child(9) {
    top: 31px;
}

#icon3 span:nth-child(1),
#icon3 span:nth-child(4),
#icon3 span:nth-child(7) {
    left: 5px;
}

#icon3 span:nth-child(2),
#icon3 span:nth-child(5),
#icon3 span:nth-child(8) {
    left: 55%;
}

#icon3 span:nth-child(3),
#icon3 span:nth-child(6),
#icon3 span:nth-child(9) {
    left: 100%;
}

/* animation */
#icon3.open span:nth-child(2),
#icon3.open span:nth-child(8) {
    top: 15px;
}

#icon3.open span:nth-child(4),
#icon3.open span:nth-child(5),
#icon3.open span:nth-child(6) {
    left: 50%;
}


/* MOBILE NAV DROPDOWN */
.nav-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #111;
}

.nav-expand.show {
    max-height: 320px;
}

.nav-expand ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.nav-expand ul li {
    padding: 12px 0;
}

.nav-expand ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* DESKTOP VISIBILITY */
.desktop-cta {
    display: block;
}