:root {
--primary-color: #2f5061;
--secondary-color: #1b206e;
} * { margin: 0;
padding: 0;
} details > summary {
list-style: none;
} details > summary::-webkit-details-marker {
display: none;
} .toggle, .toggle.reverse {
position: absolute;
top: 75px;
right: 40px;
background-size: 35px;
background-position: center;
background-repeat: no-repeat;
z-index: 1590;
cursor: pointer;
}
.toggle {
display: flex;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
gap: 8px;
padding: 8px;
}
.toggle .bar, .toggle .bar-reverse {
width: 40px;
height: 3px;
background-color: #2f5061;
transition: all 0.3s ease;
}
.toggle .bar-reverse {
background-color: #ffffff;
}
.toggle.active .bar-reverse {
background-color: #2f5061;
}
.toggle.active .bar, .toggle.active .bar-reverse {
height: 5px;
}
.toggle.active .bar:nth-child(1), .toggle.active .bar-reverse:nth-child(1) {
transform: translateY(13px) rotate(45deg);
}
.toggle.active .bar:nth-child(2), .toggle.active .bar-reverse:nth-child(2) {
opacity: 0;
}
.toggle.active .bar:nth-child(3), .toggle.active .bar-reverse:nth-child(3) {
transform: translateY(-13px) rotate(-45deg);
} .navigation {
position: fixed;
top: 0;
left: 100%;
width: 100%;
height: 100%;
background-color: #fff;
z-index:1500;
display: flex;
justify-content: center;
align-items: center;
}
.navigation.active {
left: 0;
}
.navigation ul {
position: relative;
}
.navigation ul li {
position: relative;
list-style: none;
text-align: center;
}
.navigation ul {
position: relative;
top: 25px;
}
.navigation ul li {
position: relative;
list-style: none;
text-align: center;
padding-bottom: 10px; 
margin-bottom: 1rem;
}
.navigation ul li  {
font-size: 1.8rem;
font-family: 'McLaren', cursive;
color: #2f5061;
text-decoration: none;
font-weight: 300;
text-transform: uppercase;
}
.navigation ul li a {
font-family: 'McLaren', cursive;
color: #2f5061;
}
.navigation ul li a:hover {
color: var(--primary-color);
}
.navigation ul li.contactLink, .navigation ul li.aboutLink, .navigation ul li.servicesLink, .navigation ul li.portfolioLink, .navigation ul li.paymentsLink, .navigation ul li.homeLink {
color: #c1684c;
font-style: normal;
font-weight: bold;
}
.navigation .social-bar {
position: absolute;
top: 0;
left: 3%;
width: 60px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.navigation .social-bar a {
display: inline-block;
transform: scale(1.25);
}
.navigation .email-icon {
transform: scale(0.5);
}