:root {
    --dark-background: #050517;
    --commonsGreen: #006548  ;
    --light-text: rgb(114, 114, 114);
    --white-text: #efefef;
}

* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "poppins", Verdana, Geneva, Tahoma, sans-serif;
    height: 100vh;
    width: 100%;
}

p {
    color: gray;
}

.header-bar {
    width: 100vw;
    height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color:rgb(0, 73, 52);
    color: white;
    justify-content: center;    
}

.hoc-logo {
    width: 300px;
    position: absolute;
    left: 4vw;
    filter:brightness(0.7)

}
.inline-head {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-title {
    padding-left: 10vw;
    z-index: 2;
}

.header-page-name {
    margin-right: 10vw;
    z-index: 2;
}

.header-bar h1 {
    font-size: 65px;
}

.header-bar h2 {
    font-size: 25px;
    font-weight: 400;
}
.header-bar h3 {
    font-size: 18px;
    font-weight: 200;
}

.page-title {
    justify-self: center;
    font-size: 35px;
    font-weight: 400;
    padding: 50px 4vw 0 4vw;
    text-align: center;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.image-container {
    display: flex;
    max-width: 620px;
    height: auto;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    margin: 50px 0;
    /* box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.15) */
}


::-webkit-scrollbar {
    display: none;
}

.image-container img {
    width: 100%;
    scroll-snap-align: start;
}



.text-container {
    width: 350px;
    height: auto;
    padding: 30px;
}

.text-container h1 {
    font-size: 50px;
    padding-bottom: 30px;
}

.button-container {
   
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    
}

button {
    padding: 10px;
    width: 110px;
    background-color: white;
    color: black;
    cursor: pointer;
    letter-spacing: 2px;
    border: 1px solid black;
    

}

button:hover {
    background-color: black;
    color: white;
}


#head-info, #paragraph-info {
    transition: opacity 500ms ease-in-out;
    opacity: 1;
}

.static-text {
   max-width: 650px;
    height: auto;
    padding: 30px;
}
.static-text h1 {
    font-size: 50px;
}
.link-container {
    display: flex;
    margin-top: 20px;
    align-items: center;
}

.link-container button {
    width: 160px;
    background-color: white;
    border: 1px solid black;
    color: black;
    cursor: pointer;
    letter-spacing: 2px
}

.link-container button:hover {
    background-color: black;
    color: white;
}

.link-container img {
    margin-left: 20px;
    
}

.fixed-image {
    display: flex;
    justify-content: center;
    max-width: 620px;
    margin-bottom: 100px;
    /* box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.15) */
}

.fixed-image img {
    width: 350px;
}

footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--commonsGreen);
    padding: 10px 3vw;
    font-size: 0.8rem;
    color: var(--white-text);
}
footer p, .dev-sig {
    color: rgb(152, 152, 152)
}


footer a{
    color: rgb(208, 208, 208);
}

@media (max-width: 800px) {
    footer {
        font-size: 0.6rem;
    }
    footer p, .dev-sig {
        font-size: 0.5rem;
    }
}



@media (min-width: 700px) {

  
   

    .flex-container {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    .flex-one {
        position: relative;
        margin-top: 100px;
    }
  
    .image-container {
        grid-column: 1;
        align-items: end;
        justify-self: end;
        width: 800px;
        margin-bottom: 0;
    }

    .image-container img {
        width: 100%;
    }

    .text-container {
        grid-column: 2;
        width: 700px;
        background: white;
        padding: 100px;
       
    }

    .button-container {
        grid-column: 2;
        margin-bottom: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        
    }
    .flex-two {
        justify-content: flex-end;
    }
    .static-text {
        grid-column: 1;
        align-items: end;
        justify-self: end;
        width: 800px;
        padding: 100px 100px 100px 0;
        margin-bottom: 0;
    }
   

    .fixed-image {
        grid-column: 2;
        width: 700px;
        margin-right: 20vw;
        
   
    }
    .fixed-image img{
        width: 100%;
    
    }
    

}

@media (max-width: 1700px) {
    .image-container {
        width: 600px;
    }

    .text-container{
        width: 500px;
    }

    .text-container h1 {
        font-size: 25px;
    }
    .static-text {
        width: 600px;
    }

    .static-text h1{
        font-size: 25px;
    }
    .static-text h2{
        font-size: 18px;
    }

    p {
        font-size: 14px;
    } 

    .fixed-image {
        width: 500px;
    }

}

@media (max-width: 1300px) {
    .image-container {
        width: 400px;
    }
    .text-container{
        width: 400px;
      
    }
    .static-text {
        width: 400px;
    }
    .fixed-image {
        width: 400px;
    }
}

@media (max-width: 600px) {

    .header-bar h1 {
        font-size: 28px;
    }
    .header-bar h2 {
        font-size: 20px;
    }


    .image-container {
        width: 350px;
    }
    .text-container{
        width: 350px;
    
    }
    .text-container h1 {
        font-size: 1.8rem;
    }
  
    .static-text h1{
        font-size: 1.8rem;
    }
    .static-text h2{
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    } 
    .static-text {
        width: 350px;
    }
    .fixed-image {
        width: 350px;
    }

    .hoc-logo {
        width: 300px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        filter: brightness(0.7);
    }
    
 

}