html {
    overflow: hidden scroll;
}

body{
    margin: 0px;
    overflow: hidden scroll;
    background: #000000;
}

/*.Overlay */
.overlay {
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    bottom: 0;
    /* top: auto; */
    position: fixed;
    z-index: 1;
    height: 100%;
    margin-top: -60%;
    width: 100%;
    opacity: 0.5;

}

main {
    height: 100vh;
    background-size: cover;
    position: relative;
    z-index: 2;
}


/*.Row */
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.row__margin {
    margin-bottom: 60px;
}

.row .column {
    width: 48%;
    padding: 0 20px;
    box-sizing: border-box;
}

.column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*Pillars*/
.pill {
    border-radius: 50px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    margin-right: 5px;
    padding: 5px 15px;
    text-transform: uppercase;
    transform: translateY(-6px);
}

.pillar-a .snake-btn-container a {
    background-color: #D56203;
    color: #ffffff;
}

.pillar-a .snake-btn-container a:hover {
    color: #D56203;
}

.pillar-a__pill {
    background-color: #D56203;
}

.pillar-b .snake-btn-container a {
    background-color: #6A7332;
    color: #ffffff;
}

.pillar-b .snake-btn-container a:hover {
    color: #6A7332;
}

.pillar-b__pill {
    background-color: #6A7332;
}

.pillar-c .snake-btn-container a {
    background-color: #E0941D;
    color: #ffffff;
}

.pillar-c .snake-btn-container a:hover {
    color: #E0941D;
}

.pillar-c__pill {
    background-color: #E0941D;
}

.pillar-d .snake-btn-container a {
    background-color: #568096;
    color: #ffffff;
}

.pillar-d .snake-btn-container a:hover {
    color: #568096;
}

.pillar-d__pill {
    background-color: #568096;
}


/*Logo with header*/
.logo-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-left: -30px;
    margin-bottom: 50px;
}

.logo-container img {
    display: block;
    max-width: 100%;
    aspect-ratio: 0;
}

.logo-container .first-img {
    width: 280px;
    height: 250px;
    max-width: 100%;
}

.logo-container .second-img {
    width: 150px;
    height: 150px;
}

figure {
    margin: 0;
    display: block;
}

.logo-wrap {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.logo-wrap::after {
    display: block;
    content: '';
    width: 4px;
    height: 200px;
    background: white;
    position: relative;
}



.snake-skin {
    position: relative;
    z-index: 2;
    top: 5%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem;
}

.snake-content {
    width: 100%;

}

.snake-headings::after {
    display: block;
    content: '';
    width: 200px;
    height: 4px;
    background: white;
    position: relative;
    margin: 20px 0 30px;
}

h1, h2, h3, h4, h5 {
    font-family: "effra", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h1 {
    font-size: 4rem;
    line-height: 140px;
    margin: 90px 0 0;
}

h2 {
   font-size: 4.5rem;
    max-width: 900px;
    line-height: 100%;
    margin-top: 20px;
    margin-bottom: 0;
}

h3 {
   font-size: 2rem;
    max-width: 900px;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 16px;
}

p {
    font-family: "effra", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a.white-link {
    color: #ffffff;
    transition: all 0.2s ease;

    &:hover {
        text-decoration-color: transparent;
    }
}

.date {
    font-family: "effra", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    font-size: 20px;
    display: block;
}

.snake-main-content {
    margin-bottom: 40px;
    width: 100%;
}

.snake-main-content p {
    width: 60%;
    font-size: 24px;
    line-height: 31px;
    margin: 20px 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.snake-btn-container {
    margin: 40px 0;
}

.snake-btn-container a {
    color: #1c1b17;
    background: #eee6e0;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 24px;
    line-height: 31px;
    font-family: "effra", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: none !important;
    transition: all 0.2s ease;
}

.snake-btn-container a:hover {
    background: #c9cbc4;


    transition: all 0.2s ease;
}


@media (max-width: 1200px)  {

    .logo-container {
        margin-bottom: 0;
    }

    .snake-main-content p {
        width: 80%;
    }

    body {
        background: #000000;
    }

    main {
        height: auto;
    }


    .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .row__margin {
        margin-bottom: 0;
    }

    .row .column {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .snake-content {
        margin-top: 50px;
    }

    .overlay {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        bottom: 0;
        /* top: auto; */
        position: fixed;
        z-index: 1;
        height: 100%;
        margin-top: -60%;
        width: 100%;
    }

    h1 {
        font-size: 5rem;
        line-height: 6rem;
    }
    h2 {
        font-size: 3rem;
        line-height: 3.5rem;
        margin-bottom: 20px;
    }

    h2 br {
        display: none;
    }
}

@media (max-width: 992px) {
    .date {
        display: none;
    }
    .snake-content {
        margin-top: 15%;
    }

    .snake-main-content p {
        width: 100%;
    }

    .snake-skin {
        padding: 40px;
    }

    .overlay {
        height: 100%;
    }

    .logo-container {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .logo-container .first-img {
        max-width: 300px;
        width: auto !important;
        height: auto !important;
    }

    .logo-container .second-img {
        max-width: 150px;
        width: auto !important;
        height: auto !important;
    }

    .logo-wrap::after {
        display: none;
    }

    h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    h2 {
        font-size: 45px;
        line-height: 50px;
    }
    .snake-content p {
        width: 100%;
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {

    .overlay {
        height: 100%;
    }

    .logo-container {
        gap: 20px;
    }


    .snake-skin {
        padding: 20px;
    }

    h1 {
        font-size: 3rem;
        line-height: 3.5rem;
        margin-top: 0;
    }

    h3 {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (max-width: 500px) {

    .logo-container .first-img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    .logo-container .second-img {
        width: 100%;
        height: auto !important;
        max-width: 100% !important;
    }

}