/* The font Rae chose */
@import url('erode.css');

body {
    font-family: Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 1001px) {
    .logo {
        float: right;
    }
    .subsidiaries img {
        max-width: 90%;
    }
}

.logo {
    top: 15px;
    right: 40px;
    position: absolute;
}
.logo img {
    max-height: 66px;
}

.wooree {
    margin: 35px;     
    width: 810px;
}
.wooree h1 {
    font-size: 173px;
    margin: 0;
}
.wooree p {
    font-family: 'Erode-light';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 0.02em;
    padding: 5px 20px 5px 20px;
    margin: 0;
}

/* Main dividing lines */
.main-hr {
    width: 96%;
    border-bottom: 3px solid black;
    margin: auto;
    margin-bottom: 0;
}
.main-vl {
    position: absolute;
    left: 49%;
    border-left: 2px solid gray;
    height: 500px;
}


.categories {
    display: flex;
    flex-wrap: wrap;
}
.categories img {
    max-height: 66px;
    /* max-width: 90%; */
}
.categories a:visited {
    color: black;
}
.categories a {
    color: black;
    text-decoration: none;
    font-size: 12px;
}
.category {
    width: 40%;
    margin-left: 35px;
    padding: 0 20px 0 20px;
}
.category h3 {
    font-weight: 400;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-style: italic;
}

.brands hr {
    position: absolute;
    flex: 0 0 100%;
    left: 2%;
    width: 46%;
    margin-left: 5px;
    border-bottom: 1px solid black;
}
.brand-list {
    margin-top: 50px;
}

.brand {
    margin-top: 15px;
}
.brand p {
    margin-bottom: -3px;
}
.brand img {
    max-height: 66px;
    max-width: 200px;
    /* max-width: 90%; */
}
.shine img {
    max-height: 100px !important;
}

.subsidiaries hr {
    position: absolute;
    right: 2%;
    width: 48%;
    margin-right: 5px;
    border-bottom: 1px solid black;
}
.subsidiaries {
    margin-left: 6%;
}

.grid {
    display: grid;
    grid-template-columns: 55% 55%;
}
.grid img {
    margin-top: 30px;
}


/* Responsive viewport params */
@media screen and (max-width: 1000px) {
    .logo {
        display: flex;
        position: initial;
        justify-content: center;
    }
    .logo img {
        max-height: 96px;
    }
    .wooree{
        width: calc(100% - 48px);
        margin: 24px;
    }
    .wooree h1 {
        display: none;
    }
    .wooree p {
        /* margin-right: 18px */
    }

    /* Dividing lines */
    .main-hr {
        display: none;
    }
    hr {
        position: absolute !important;
        width: 96% !important;
        margin: auto !important;
    }
    .main-vl {
        display: none;
    }

    .category {
        margin-left: 18px;
        width: 100%;
    }
    .category h3 {
        font-size: 24px;
    }
    .subsidiaries {
        margin-top: 30px;
    }
    .subsidiaries hr {
        position: inherit;
        width: 96%;
    }
    .grid {
        grid-template-columns: 80%;
    }
    .subsidiaries .grid img {
        height: 48px;
    }
}