*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior: smooth;
}


::selection {
    background: #5FAD56;
    color: #ffffff;
}

::-moz-selection {
    background: #5FAD56;
    color: #ffffff;
}

.card img{
    width:100%;
    aspect-ratio:8/5;
    object-fit:cover;
    display:block;
}


.divider{
    width:100%;
    height:1px;
    background:#222;
    margin:0 auto;
}



.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;
    border-radius: 50%;

    background: #111;
    color: #fff;

    text-decoration: none;
    font-size: 2rem;
    line-height: 1;

    transition: all 0.2s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    border-color: #666;
}

a:hover {
    color: #5FAD56;
}


nav{
    display:flex;
    gap:24px;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#000;
}



.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:2rem;
    cursor:pointer;
}



h1, h2, h3, h4 {
  font-family: "Stack Sans Notch", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
color: white;
}

body {
  font-family: "helvetica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
	 background:#000000;
	color: white;
}



.container{
    width:min(1100px,90%);
    margin:auto;
}

header{
    padding:30px 0;
    position:sticky;
    top:0;
    background:#000000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}


h1 a{
    color:#ffffff;
    text-decoration:none;
}


h4 {
	font-size: 19px;
}


.tags {
	font-size:14px;
	margin-top: -10px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
}

nav a:hover {
    color:#5FAD56;
     text-decoration:none;
}


a,
a:visited {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #5FAD56;
}


.hero{
 padding: 60px 0px 30px 0px;
}

.hero-grid{
    display:grid;
	  grid-template-columns:1fr 400px;
    gap:60px;
    align-items:center;
}

#rsk-connect-logo {
    width:100%;
    border-radius:20px;
	padding: 0px 0px 0px 0px;
}

.eyebrow{
    color:#999;
    margin-bottom:20px;
}


@media(max-width:768px){
.eyebrow{
    color:#999;
    margin-bottom:20px;
	margin-top: -45px;
	}
}


@media(max-width:768px){
#rsk-connect-logo {
    max-width: 280px;
}
}

.hero h2{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:20px;
}

.buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
	
	
}

a.button {
    display:inline-block;
    background:#ffffff;
    color:#000000;
    padding:12px 24px;
    text-decoration:none;
    border-radius:8px;
}

a.button:hover {
    background:#5FAD56;
    color:#ffffff;
}

a.button.secondary {
    background:#222;
    color:#ffffff;
}


a.button.secondary:hover {
    background:#5FAD56;
    color:#ffffff;
}



.section {
    padding: 60px 0px 60px 0px;
}


.section #rsk{
    padding: 90px 0px 60px 0px;
}

.section #skills {
    padding: 0px 0px 60px 0px;
}

#skills #rsk {
    padding: 0px 0px 10px 0px;
}



	

.skills{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:0px;
}

.skill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    border:1px solid #ffffff;
    border-radius:999px;
    background:transparent;
    color:#ffffff;
    font-size:1rem;
    font-weight:500;
    transition:all 0.3s ease;
    cursor:default;
}








.section h3{
    font-size:2rem;
    margin-bottom:40px;
}


.card{
      background:#171717;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}


.card a{
    display:block;
    padding-bottom:20px;
	 margin-top:auto;
    padding:20px 20px 20px;
    color:white;
    margin-top:auto;
}


#contact a,
#contact a:visited {
    color:#ffffff;
    text-decoration:none;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
    }

    nav.active{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:100%;
        right:0;
        width:200px;
        background:#171717;
        padding:20px;
        border-radius:12px;
        gap:15px;
        z-index:1001;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero h2{
        font-size:2.5rem;
    }

    header .container{
        position:relative;
    }

    .eyebrow{
        margin-top:-45px;
    }

}


.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}



a:hover,
a:focus,
h1 a:hover,
nav a:hover,
.card a:hover,
#contact a:hover {
    color:#5FAD56;
}


footer{
    padding:60px 0;
    border-top:1px solid #222;
}
