@import url(https://fonts.googleapis.com/css?family=Raleway);
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #ccc;
    opacity: 0;
}

::-webkit-scrollbar-thumb {
    background: #2c3e50;
}

.f-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.f-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ctr {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.full {
    width: 100%;
    height: 100%;
}

.header {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.top-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 50px 60px;
    color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .52)), color-stop(rgba(0, 0, 0, 0.22)), to(transparent));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .52), rgba(0, 0, 0, 0.22), transparent);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, 0.22), transparent);
    z-index: 30;
}

.top-header-details {
    margin-left: auto;
    margin-right: 80px;
    white-space: nowrap;
    -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .2));
}

.top-header-details>div {
    margin: 20px;
}

.details-icon {
    font-size: 42px;
    margin-right: 10px;
}

.details-title {
    margin-bottom: 5px;
    font-weight: 600;
}

.details-content {
    font-family: Arial, Helvetica, sans-serif;
}

.top-header-nav {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.header-box {
    position: absolute;
    z-index: 20;
    color: #fff;
}

.header-box-slogan {
    margin-bottom: 40px;
    padding: 40px 50px;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px #000;
    color: #fff;
}

.header-box-search {
    position: relative;
    padding: 40px 30px 20px;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 6px;
}

.search-options {
    position: absolute;
    top: -25px;
}

.search-option-btn {
    width: 160px;
    height: 38px;
    margin: 5px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 6px;
}

.search-option-btn>input[type="radio"] {
    display: none;
}

.search-option-btn>span {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.search-option-btn>input[type="radio"]:checked+span {
    background-color: #2c3e50ce;
    color: #fff;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.search-selects>div {
    border-top: 1px solid rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.search-selects>div:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-left: 1px solid rgba(255, 255, 255, .5);
}

.search-selects>div:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid rgba(255, 255, 255, .5);
}

.search-prices>input:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.search-prices>input:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.search-price-input {
    width: 160px;
    height: 38px;
    margin: 20px 0;
    padding: 0 10px;
    outline: none;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.search-submit-btn {
    width: 160px;
    height: 38px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 6px;
}

.header select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    font-size: 16px;
    border: 0 !important;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-image: none;
}

.header select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
    height: 3em;
    line-height: 3;
    border-right: 1px solid rgba(255, 255, 255, .5);
    overflow: hidden;
}

.header select {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 .8em;
    color: #fff;
    cursor: pointer;
}

.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    cursor: pointer;
    pointer-events: none;
    color: #ccc;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}

.select:hover::after {
    color: #fff;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}


/* -------------------------------------------------- */

.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
}

.wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#items {
    width: 99999px;
    position: relative;
    top: 0;
    left: -100vw;
}

#items:active {
    cursor: move;
}

#items.shifting {
    -webkit-transition: left 1s ease-out;
    -o-transition: left 1s ease-out;
    transition: left 1s ease-out;
}

.slide {
    width: 100vw;
    height: 100vh;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    position: relative;
}

.slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.control {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    outline: none;
    border: none;
    background-color: transparent;
}

.prev {
    left: 0px;
}

.next {
    right: 0px;
}


/* -------------------------------------------------- */

.header a {
    text-decoration: none;
    color: #eee;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.header a:hover {
    color: #fff;
}

.menu-toggle-title>h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px 0;
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
}

#menuToggle {
    display: block;
    position: relative;
    top: 50px;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    border-radius: 1px;
    z-index: 1;
    -webkit-transform-origin: 4px 0px;
    -ms-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-box-shadow 0.55s ease;
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-box-shadow 0.55s ease;
    -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), box-shadow 0.55s ease, opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), box-shadow 0.55s ease, opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), box-shadow 0.55s ease, opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-box-shadow 0.55s ease;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}

#menuToggle span:first-child {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-2px, -1px);
    -ms-transform: rotate(45deg) translate(-2px, -1px);
    transform: rotate(45deg) translate(-2px, -1px);
    background: #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
    -ms-transform: rotate(0deg) scale(0.2, 0.2);
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    -webkit-transform: rotate(-45deg) translate(0, -1px);
    -ms-transform: rotate(-45deg) translate(0, -1px);
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: absolute;
    width: 300px;
    margin: -100px 0 0 -50px;
    padding: 100px 50px 65px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, .5);
    border-bottom-left-radius: 6px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: translate(40%, 0);
    -ms-transform: translate(40%, 0);
    transform: translate(40%, 0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
    padding: 18px 0;
    font-size: 22px;
    text-align: center;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}

#menu li:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

#menu li:first-of-type:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

#menuToggle input:checked~ul {
    -webkit-transform: translate(-60%, 0);
    -ms-transform: translate(-60%, 0);
    transform: translate(-60%, 0);
}

@media only screen and (max-width: 1110px) {
    .top-header-details {
        display: none;
    }
    .header-box-slogan {
        margin-top: 120px;
        font-size: 38px;
    }
}

@media only screen and (max-width: 680px) {
    .top-header {
        padding: 20px 10px 60px;
    }
    .top-header-brand>strong>img {
        width: 260px;
    }
    .header-box-search {
        width: 100%;
    }
    .search-option-btn {
        width: 130px;
    }
    .search-selects {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .search-selects>div:first-child {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, .5);
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0;
    }
    .search-selects>div:last-child {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, .5);
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-top-right-radius: 0;
    }
    .search-selects>div {
        border: none;
        border-right: 1px solid rgba(255, 255, 255, .5) !important;
        border-left: 1px solid rgba(255, 255, 255, .5) !important;
    }
    .search-prices {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 20px 0;
    }
    .search-prices>input:first-child {
        border: 1px solid rgba(255, 255, 255, .5) !important;
        border-top-left-radius: 4px !important;
        border-top-right-radius: 4px !important;
    }
    .search-prices>input:last-child {
        border: 1px solid rgba(255, 255, 255, .5) !important;
        border-top: none !important;
        border-bottom-left-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
    }
    .search-price-input {
        width: 180px;
        margin: 0 10px;
        border: none !important;
        border-radius: 0 !important;
    }
}

.fa-facebook-square {
    border-radius: 50% 8px 10px 50%;
    color: #305891;
    font-size: 40px;
    height: 32px;
    line-height: 30px;
    width: 32px;
}

.fa.fa-instagram {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}

.fa .fa-youtube {
    background-color: red;
    border-radius: 50% 8px 10px 50%;
    color: #FFF;
    font-size: 40px;
    height: 32px;
    line-height: 30px;
    width: 32px;
    margin: 5px;
}