:root{
    --text-color:#F7F7F4;
    --accent-color:rgb(21, 17, 1);
    --accent-hover-color:rgb(146, 229, 146);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color:var(--accent-color);
    color: var(--text-color);
}
header{
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navBar{
    width: 85%;
    margin:5px auto;
    background-color:var(--accent-color) ;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6px 10px 6px;
}
.child-2 a{
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    padding: 15px;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.btn{
    margin: 10px auto;
    border-radius: 999px;
    padding: 7px 17px;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 12px;
    font-weight:500;
    border: none;
    margin: 5px;
    cursor: pointer;
    background-color: #F7F7F4;
}
.btn-1{
    background-color: var(--accent-color);
    color: var(--text-color);
    border:1px solid rgba(252, 252, 252, 0.527) ;
    padding: 7px 17px;
}
.btn-3{
    margin:0;
    padding: 13px 20px;
    font-size: large;
    font-weight: light;
}
.font{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.hero{
    width: 85%;
    margin:5px auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 6rem;/*7rem :128px*/
}
.hero-bottom .parent-1 > img{
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 10px;
}
.hero-top button{
    margin-top: 25px;
}
.hero-top h3{
    font-size:x-large;
    font-weight: normal;
}
/*main container*/
.parent-1 {
    position: relative;
}
/* overlay container */
.parent-1 .child-3 {
    position: absolute;
    width: 85%;
    height: auto;      
    top: 15px;        
    left: 130px;
    bottom: 15px;
    margin-top: 40px;
}
/* overlay image */
.parent-1 .child-3 img {
    width: 100%;
    display: block;
    border-radius:10px ;
}
.imageCont{
    width: 85%;
    margin: 5px auto;
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-auto-rows: 100px;
    gap: 10px;
    margin-bottom: 100px;
}
.imageCont > img{
    width: 100%;
    height: 100%;
    background-color: #1a1a12;
    padding: 5px 30px;
    object-fit: contain;/* keeps logo proportions */
    border-radius: 5px;
}
.feature{
    width: 85%;
    height: auto;
    margin: 5px auto;
    display:flex;
    flex-direction: row;
    background-color: #1a1a12;
    border-radius: 5px;
    margin-bottom: 100px;
}
.left-side{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    font-size: large;
}
.left-side h2{
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.9;
}
.left-side a{
    color: #F54E00;
    text-decoration: none;
    padding-top:20px ;
}
.left-side p{
    opacity: 0.5;
}
.right-side{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 20px;
}
.right-side > img{
    display: block;/*Element behaves like a full-width box.*/
    width: 100%;
    height: auto;
    max-width: 850px;
    border-radius: 12px;
}
.testimonials{
    width: 85%;
    margin: 5px auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    /* padding: 10px 10px; */
    gap: 10px;
    margin-bottom: 180px;
}
.testimonials > .t1{
    background-color:#1a1a12 ;
    padding: 10px 10px;
    border-radius: 4px;
    display: flex;
    flex-direction:column ;
}
.t1 > h4{
    font-weight: normal;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin-bottom: 40px;
}
.t1 > .t2{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    padding: 10px 10px;
    margin-top: auto;  /*pushes it to bottom */
}
.t2 > img {
    width:45px;
    height: auto;
    border-radius: 4px;
    margin-right: 10px;
}
.t2 > h5{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: medium;
    font-weight: 500;
}
.t2 > h5 > p{
    opacity: 0.5;
    margin-bottom: 2px;
}
.GcardSection{
    width: 85%;
    margin: 5px auto;
    margin-bottom: 150px;
}
.card{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 25px;
}
.card-1{
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #1a1a12;
    padding: 20px 20px;
    border-radius: 6px;
    border:1px solid #1a1a12;
}
.card-1 > img {
    width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
}
.GcardSection > h1{
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight:400;
    font-size: 26px;
    color:var(--text-color);
    opacity: 0.9;
    margin-bottom: 20px;
}
.card-1 > h5{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: large;
    font-weight: 500;
    color: var(--text-color);
}
.card-1 > h5 > p{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: large;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.5;
    margin-bottom: 5px;
}
.card-1 > a{
    text-decoration: none;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: large;
    color: #F54E00;
}
.card-2 > img{
    border-radius: 0;
}
.log{
    width: 85%;
    margin: 5px auto;
    margin-bottom: 150px;
}
.Changelog{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.log-1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color:#1a1a12;
    min-height: 140px;
    padding:15px 15px;
    padding-bottom: 40px;
}
.log-1 h5{
    opacity: 0.5;
}
.log-1 p{
    color:#d9d9d2;
}
.about{
    margin-bottom: 100px;
}
.Rhighlights{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 600px;
    background-color: #1a1a12;
}
.ele-1{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 80px;
    transform: translateX(-30%);
    font-size: medium;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.blocks{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    transform: translateX(-50%);
    margin-top: 50px;
    margin-bottom: 50px;
}
.b-1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
    border-radius: 4px;
    background-color:#22221c;
    border:1px solid #13130d;
}
.blocks .b-1 h5{
    font-weight:normal;
    font-size: medium;
}
.blocks .b-1 span{
    opacity: 0.5;
    font-size: medium;
}
.blocks a{
    text-decoration: none;
    font-size:18px;
    color: #F54E00;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin-top: 10px;
}
.tryCursor{
    display: flex;
    justify-content: center;
    align-items: center;
}
.Tcursor{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
}
.Tcursor h1{
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 63px;
    font-weight:490;
}
.bt{
    margin: 10px auto;
    border-radius: 999px;
    padding: 9px 22px;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 15px;
    font-weight:500;
    border: none;
    margin: 5px;
    cursor: pointer;
    background-color: #F7F7F4;
    opacity: 1;
}
.TTC{
    margin-top:115px;
    margin-bottom:125px; 
}
.footer-Content{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    width: 85%;
    margin:5px auto;
    padding-right: 200px;
}
.copy-right{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin:5px auto;
    padding-top: 80px;
}
.f-content{
    display: flex;
    flex-direction:column;
    gap:7px;
}
.fff{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    padding-top: 60px;
    background-color: #1a1a12;
}
.f-content a{
    text-decoration: none;
    color: rgb(244, 243, 235);
    font-size: 14px;
}
/* .new-btn{
    margin: 10px auto;
    border-radius: 999px;
    padding: 3px 12px;
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 12px;
    font-weight:500;
    border: none;
    margin: 5px;
    cursor: pointer;
    background-color:#2a2a23e0 ;
} */
.new-btn svg{
    width: 14px;
    height: 14px;
    stroke: #ffffff;/*forcing white stroke*/
    fill: none;
}
:hover.new-btn svg{
    opacity: 0.5;
}
.container-1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.container-2{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background-color:#2a2a23e0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding:2px 7px;
    font-size: small;
}
.container-2 select{
    background-color: #2a2a23e0;
    border: none;
    color:#ffffff
}
.container-2 select option{
    border-radius: 6px;
    opacity: 0.4;
}
.container-2 svg{
    width: 14px;
    height: 14px;
    stroke: #ffffff;/*force white stroke*/
    fill: none;
}
