.header {
    margin: 0 auto;
    width: 100%;
    max-width: 1950px;
    text-align: center;
    background-color: transparent;
}

.header-items-container {
    display: inline-block;
    float: right;
    text-align: right;
    color: #f1f1f1;
}

.header-item-name {
    font-weight: 700;
    font-size: 110px;
    margin: 0;
}

.header-item-desc {
    font-size: 60px;
    margin: 0;
}

.header-logo {
    float: left;
    width: 14%;
    height: 14%;
    max-height: 180px;
    max-width: 180px;
    min-height: 45px;
    min-width: 45px;
}

.header-main {
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    margin: 2% auto;
    padding-bottom: 2%;
    padding-top: 115px;
    border-bottom: 2px solid #fff;
}

.feature-img-container {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin: 0 auto;
}

.feature-img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 2050px) {
    .header {
        max-width: 1200px;
    }

    .header-item-name {
        font-size: 92px;
        margin: 0;
    }

    .header-item-desc {
        font-size: 48px;
        margin: 0;
    }

    .feature-img-container {
        height: 450px;
    }
}

@media only screen and (max-width: 1230px) {
    .header {
        max-width: 900px;
    }

    .header-main {
        padding-top: 190px;
    }

    .header-item-name {
        font-size: 82px;
    }

    .header-item-desc {
        font-size: 42px;
    }

    .feature-img-container {
        height: 400px;
    }
}

@media only screen and (max-width: 1230px) and (orientation: landscape) {
    .header-main {
        padding-top: 115px;
    }
}

@media only screen and (max-width: 930px) {
    .header {
        max-width: 600px;
    }

    .header-item-name {
        font-size: 42px;
    }

    .header-item-desc {
        font-size: 28px;
    }

    .feature-img-container {
        height: 300px;
    }
}

@media only screen and (max-width: 930px) and (orientation: landscape) {
    .header-main {
        padding-top: 115px;
    }
}

@media only screen and (max-width: 650px) {
    .header {
        max-width: 300px;
        min-width: 300px;
    }

    .header-item-name {
        font-size: 24px;
    }

    .header-item-desc {
        font-size: 16px;
    }
    
    .feature-img-container {
        height: 300px;
    }
}