html {
    font-family: 'Assistant', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 14vh;
    background-color: #eaeaea;
    z-index: 2;
}
/*--media queries--*/

.logo {
    font-size: 32px;
    color: #000;
}
.header {
    color:#F28C28;
    float: right;
    margin: 16px;
    font-size: 30px;
    font-weight: 600;
}
/*--media queries--*/
@media screen and (max-width: 1024px) {
    .header {
        margin: 8px 0px 0px 8px;
    }
}
@media screen and (max-width: 992px) {
    .header {
        margin: 8px 0px 8px 0px;
    }
}
@media screen and (max-width: 768px) {
    .header {
        margin: 8px;
    }
}
@media screen and (max-width: 479px) {
    .header {
        margin: 8px 0px 8px 0px;
    }
}
/*----*/
.sub-header {
    color: #36454F;
    font-size: 16px !important;
    font-weight: 400;
}
.nav-links {
    display: flex;
    justify-content: space-around;
    width: 50%;
}
.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;  
}
.nav-links a:hover {
    color: #000;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 500;  
}
.nav-links li {
    list-style: none;
}
/*--media queries--*/
@media screen and (max-width: 1200px) {
    .nav-links {
        width: 50%;
    }
}
@media screen and (max-width:1024px) {
    .logo {
        font-size: 24px;
    }
    .nav-links {
        display: flex;
        justify-content: space-around;
        width: 60%;
    }
}
@media screen and (max-width:479px) {
    nav {
        min-height: 12vh !important;
    }
    .nav-links a{
        font-size: 16px !important;
    }   
}
/*----*/
.burger {
    display: none;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    body {
        overflow-x:hidden;
    }
    .logo {
        font-size: 24px;
    }
    nav {
        min-height:12vh !important;
        justify-content: space-between;
        padding: 0px 10px;
    }
    .nav-links {
        background-color: #eaeaea;
        position: absolute;
        right: 0px;
        height: 40vh;
        top: 12vh !important;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
    .burger {
        display: block;
    }
    /*------OPEN AND CLOSE------*/
    .toggle .line1 {
        transform: none;
    }
    .toggle .line2 {
        opacity: inherit;
    }
    .toggle .line3 {
        transform: none;
    }
    /*[-----------------------*/

}
.burger div {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px;
    transition: all 0.3s ease;
}
.nav-active {
    transform: translateX(0%);
    z-index: 1;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform:translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
.line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.line2 {
    opacity: 0;
}
.line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/*-----MAIN------*/
.hero-intro-container {
    background-image: url('../assets/hero-img-cpt.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size:cover;
    padding:200px 20px 0px 20px;
    height: 600px;
    display: none;
}
.intro-text-block {
    margin: 0 auto;
    text-align: center;
    max-width: 650px;
    padding: 20px;
    box-shadow: 0 0 2px 0 rgb(5 35 49 / 14%), 0 2px 2px 0 rgb(5 35 49 / 12%);
    border-radius: 16px;
    background-color: #fff;
}
.intro-h3 {
    font-size: 24px;
}
.intro-p {
    margin-top: 10px;
}
.info-container {
    background:#E5E4E2;
    margin: 0 auto;
    padding: 140px 20px 60px 20px;
}
.philosophy-text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #000;
    border-radius: 16px;
    padding: 20px;
    background: #fff;
}
.info-p {
    margin-top: 20px;
}
.work-text-block {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    border: 1px solid #000;
    border-radius: 16px;
    padding: 20px;
    background: #fff;
}
.products-container {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
}
/*---IMG GRID--*/
.image-grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 20px;
    margin: 80px auto;
    padding: 20px;
}
@media screen and (max-width:768px) {
    .image-grid-container {
     display: inline-block;
     width: 100%;
     margin: 40px auto;
    }
 }
.product-img {
    width: 100%;
    height: auto;
}
@media  screen and (max-width:768px){
    .product-img {
        margin-top: 20px;
    }
}
.products-list {
    list-style: none;
    margin-top: 20px;
    font-weight: bold;
}
.price-p {
    color: #F28C28;
    padding: 16px;
    border-radius: 16px;
    background: #335779;
    max-width: 250px;
    margin: 20px auto;
}
.product-li {
    margin: 0 auto;
}
.product-icon {
    width: 20px;
    margin: 16px;
}
.order-form-container {
    text-align: center;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.grid-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
}