body {
    font-family: 'Roboto', sans-serif;
}

/* General */
.colored {
    color:#ff3465;
}
.arrow-link {
    color:#ff3465;
    text-decoration: none;
    position: relative;
    font-weight: 500;
}
.arrow-link:after {
    content:"\203A";
    margin-left:10px;
    position: relative;
    top:-1px;
}
.arrow-link:before {
    content:'';
    position: absolute;
    right:2px;
    top:50%;
    width: 0;
    height: 1px;
    background:#ff3465;
    border-radius:5px;
    transition:.3s all ease-in-out;
}
.arrow-link:hover:before {
    width: 5px;
}

/* Header */
.header {
    height: 100vh;
    background:url('../img/Cowboy_Hero_Main.jpg') center/cover;
    padding:36px;
}
.header > a, .main-nav {
    vertical-align: middle;
    display: inline-block;
}

/* Main nav */
.main-nav {
    margin-left:150px;
}
.main-nav a {
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    color:#303030;
    font-size: 14px;
    margin:0 20px;
    letter-spacing: 1px;
    position: relative;
}
.main-nav a:after {
    content:'';
    width: 0;
    left:0;
    height: 1px;
    background: #303030;
    bottom:-5px;
    position: absolute;
    transition:.3s all ease-in-out;
}
.main-nav a:hover:after {
    width: 100%;
}

/* Tools nav */
.tools-nav {
    position: fixed;
    top:0;
    right:0;
    z-index:10;
}
.tools-nav > * {
    display: inline-block;
    vertical-align: top;
}
.tools-nav a {
    padding:30px 40px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    transition:.3s all ease-in-out;
}
.language a {
    display: block;
}
.test-ride {
    background:#303030;
    color:#fff;
}
.buy {
    background:#ff3465;
    color:#fff;
}
.test-ride:hover, .buy:hover {
    background:#fff;
    color:#000;
}
.language a {
    width: 150px;
    text-align: center;
    color:#303030;
    font-weight: 500;
}
.language a:hover {
    background:#000;
    color:#fff;
}
.language:hover {
    background:#fff;
}
.language a+a {
    display: none;
}
.language:hover a+a {
    display: block;
}

/* Header Txt */
.header-txt {
    position: absolute;
    bottom:100px;
}
.header-txt p {
    font-weight: 500;
}
h1 {
    font-weight: normal;
    font-size: 100px;
    line-height:85px;
    font-weight: 500;
}

/* About us */
.talk-about-us {
    background: #ff3465;
    padding:100px 36px;
    text-align: center;
}
.talk-about-us a {
    display: inline-block;
    vertical-align: middle;
    max-width:200px;
    width: 100%;
    margin:0 80px;
}

.specs {
    height: 100vh;
}
.specs:after {
    content:"";
    display: block;
    clear:both;
}
.specs__txt, .specs__img {
    width: 50%;
    float:left;
    height: inherit;
}
.specs__txt {
    position: relative;
    padding:0 50px;
}
h2 {
    font-size: 80px;
    line-height:80px;
    margin-bottom:50px;
}
.specs__txt p {
    margin-bottom:50px;
    width: 60%;
    line-height: 30px;
    font-size: 20px;
}
.specs__img {
    margin:0;
    overflow: hidden;
    /* background: url('../img/design-meets-technology.jpg') center/cover; */
}
.specs__img img {
    max-width:100%;
}
.specs__content {
    position: absolute;
    top:50%;
    transform:translateY(-50%);
}
.reviews {
    padding:50px;
    background:#fafafa;
}
.reviews__container {
    margin-top:50px;
    position: relative;
}
.reviews__container:after {
    content:"";
    display: block;
    clear:both;
}
.reviews h2 {
    font-size: 50px;
    font-weight: normal;
    font-weight: 600;
    line-height:50px;
}
.reviews h2:before {
    content:"#NOFILTER";
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.reviews__arrows {
    position: absolute;
    left:0;
    bottom:0;
}
.reviews__arrows button {
    cursor:pointer;
    background:#fff;
    border:1px solid lightgray;
    display: inline-block;
    width: 30px;
    height: 30px;
    transition:.3s all ease-in-out;
    color:#303030;
}
.reviews__arrows button:hover {
    border-color:gray;
}
.inactive {
    opacity:0.5;
}
.review {
    background: #fff;
    width:calc((100% - 144px) / 5);
    display: inline-block;
    padding:40px 20px;
    min-height:400px;
    vertical-align: top;
    color:gray;
    position: relative;
}
.review h3 {
    margin:0 0 20px;
    font-size: 26px;
    font-weight: normal;
    color:#303030;
}
.review p {
    font-size: 18px;
    line-height:26px;
    margin-bottom:70px;
}
.review+.review {
    margin-left:36px;
}
.rating {
    float: right;
}
address {
    display: inline-block;
    font-style: normal;
}
time {
    position: absolute;
    bottom:36px;
}
.all-reviews {
    margin-top:50px;
    float: right;
}

/* Footer */
.footer {
    background: #1e1e1e;
    padding:75px 36px;
    color:#fff;
}
.footer ul {
    list-style:none;
    padding:0;
}
.footer a {
    text-decoration: none;
}
h4 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 13px;
}
.sitemap > * {
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 3);
}
.cowboy img {
    width: 165px;
}
.credits-social:before {
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    left:0;
    background: #303030;
}