@font-face {
    font-family:"Gilroy-Light";
    src: url(/.Gilroy-Light.otf);
}

@font-face
{
    font-family: "Gilroy-ExtraBold.otf";
    src: url(/.Gilory-ExtraBold.otf);
}

html {
    font-size: 14px;
}

body {
    margin:  0;
    padding: 0;
    font-family: "Gilroy-Light", sans-serif;
}

.page-wrapper {
    display: flex;
    height: 100vh;
}

.col-left {
    flex: 1;
    background-color: black;
    display: flex;
    flex-direction: column;
    color: white;
}

.col-left .menu {
    flex: 3;
    padding: 2rem 4rem;
    overflow: hidden;
}

.col-left .menu h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.75rem;
}

.col-left .menu ol {
    margin: 4rem 0;
    padding: 0;
}

.col-left .menu ol li a {
    text-decoration: none;
    color: rgb(192, 191, 191);
    counter-increment: menucounter;
}

.col-left .menu  li {
    font-size: 1.25rem;
    margin: 3rem 0;
    padding: 0.5rem 0;
    position: relative;
}
.col-left .menu  li a {
    text-decoration: none;
    color: #c0bfbf;
    counter-increment: menucounter;
}
.col-left .menu  li a:hover {
    text-decoration: none;
    color: #e2743e;
    counter-increment: menucounter;
}
.col-left .menu  li::before {
    position: absolute;
    color: #525252;
    content: "0" counter(menucounter);
    top: -20px;
}
.col-left .menu  li::marker {
    font-size: 0;
}
.col-left .menu  a.active {
    color: white;
}
.col-left .menu li::before {
    color:  #302f2f;
}
.col-left .menu li::after {
    width: 200%;
    position: absolute;
    height: 1px;
    content: "";
    bottom: 0px;
    left: 0;
    border-bottom: 1px solid;
}

.col-left .footer {
    flex: 2;
    display: flex;
    flex-direction: column;
}
.col-left .footer .top {
    font-size: 1.5rem;
    flex: 1;
    background-color: #e2743e;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.col-left .footer .top img {
    cursor: pointer;
}
.col-left .footer .bottom {
    flex: 4;
    background-image: url(./img/next_img.jpg);
    background-size: cover;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.col-left .footer .bottom img {
    cursor: pointer;
}


.col-center {
    flex: 2;
    display: flex;
    flex-direction: column;
}
.col-center .heading {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 6rem;
}

.col-center .heading h2{
    font-family: "Gilroy-ExtraBold", sans-serif;
    text-transform: uppercase;
    font-size: 4rem;
    margin: 0;
}
.col-center .heading span {
    color: white;
    text-shadow: -1px 1px 0, -3px -1px 0 orange, -3px 1px 0, 1px 1px 0 orange;
}
.col-center .heading h3 span {
    font-family: "Gilroy-ExtraBold";
}
.col-center  .hero {
    flex: 3;
    background-image: url(img/hero.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem;
}
.col-center  .hero .container {
    width: 40%;
}
.col-center .hero .container h2 {
    color: white;
    font-family: "Gilroy-ExtraBold";
    font-size: 3rem;
}
.col-center .hero .container .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.col-right {
    flex: 2;
    display: flex;
    flex-direction: column;
}
 .hero2 {
    background-image: url(img/hero2.jpg);
    background-size: cover;
    background-position: center;
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.col-right .top {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
   
}
.col-right .top img {
    cursor: pointer;
}
.col-right .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}
.col-right .bottom h2 {
    color: white;
    font-family: "Gilroy-Extrabold", sans-serif;
    font-size: 2.5rem;
}
.col-right  .footer {
    flex: 2;
    display: flex;
}
.col-right  .footer .left {
    flex: 1;
    background-color: black;
    color: white;
    padding: 2rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.col-right .footer .left .actions, .col-right .top .footer .left .likes, .col-right .top .footer .left .share {
    display: flex;
    align-items: center;
}
.col-right .footer .left .likes {
    margin-right: 2rem;
}
.col-right .footer .left .likes span, .col-right .top .footer .left .share span {
    margin-left: 0.5rem;
}
.col-right .footer .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.col-right  .footer .right h2 {
    font-size: 2.5rem;
    font-family: "Gilroy-ExtraBold", sans-serif;
}
.col-right .footer .right span {
    text-shadow: -1px -1px 0, -3px -1px 0 orange, -3px 1px 0, 3px 1px 0 orange;
    color: white;
    display: block;
}
.col-right .footer p {
    margin: 0;
    font-size: 1.25rem;
}
.col-right .footer p.author {
    font-family: "Gilroy-ExtraBold", sans-serif;
}
