* {
    padding: 0;
    margin: 0;
    -webkit-background-origin: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*  Tags  */

html {
    font-size: 15px;
}

img {
    width: 100%;
    display: block;
}

body {
    width: 100%;
    color: #757575;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem; /*  18px  */
    font-weight: 400;
    line-height: 1.8em;
}

a {
    display: inline-block;
    text-decoration: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.067rem; /* 16px */
    line-height: 1.75em;
    cursor: pointer;
    -webkit-transition: all .3s ease !important;
    -moz-transition: all .3s ease !important;
    -ms-transition: all .3s ease !important;
    transition: all .3s ease !important;
}

h1, h2, h3, h5, h6 {
    font-family: 'Teko', sans-serif;
}

h1 {
    font-size: 7.333333rem; /* 110px */
    font-weight: 600;
}

h2 {
    font-size: 5.3333333rem; /* 80px */
    font-weight: 500;
    line-height: .9375em;
}

h3 {
    font-size: 1.8666667rem; /* 28px */
    font-weight: 500;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.13333rem; /* 17px */
}

h5 {
    font-size: 2.4rem; /* 36px */
    font-weight: 400;
    line-height: .8889em;
}

h6 {
    font-size: 2rem; /* 30px */
    font-weight: 500;
    line-height: 1em;
    color: #212121;
}

/* Containers */

.container_fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    padding: 0 101px;
    margin: 0 auto;
}

.container_md {
    width: 1648px;
    padding: 0 60px;
    margin: 0 auto;
}

.container_sm {
    width: 1594px;
    padding: 0 60px;
    margin: 0 auto;
}

/*  Columns  */

.columns_wrap {
    margin-right: -100px;
}

.column {
    display: inline-block;
    vertical-align: top;
    padding-right: 100px;
    padding-bottom: 30px;
}

.column_1-3 {
    width: 33.333333%;
}

.column_1-4 {
    width: 25%;
}

.column_1-8 {
    width: 12.5%;
}

/* Content */

.white {
    color: #fff;
}

.black {
    color: #212121;
}

.grey {
    color: #1F222D;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.33333rem;
    font-weight: 400;
    line-height: 1.6em;
    padding-top: 1.6rem;
}

.suptitle {
    font-family: 'Teko', sans-serif;
    font-size: 1.6rem; /* 24px */
    font-weight: 500;
    line-height: 1.6em;
    letter-spacing: .053em;
}

.title {
    padding: .8rem 0 2rem;
}

.btn {
    padding: 1.6rem 3.35rem;
    border-radius: 3rem;
    margin-top: 3.3rem;
}

/* Header */

.header-wrap {
    width: 100%;
    height: 1161px;
    overflow: hidden;
    position: relative;
}

.header_inner {
    width: 100%;
    height: 990px;
    position: relative;
    background: #FED330;
}

.header_inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: .58;
    background: url(../images/header/bck.png) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2;
}

.header_top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 30px 40px 30px 80px;
    position: relative;
    z-index: 3;
}

.nav_link {
    margin-right: 42px;
    color: #0D0D0D;
}

.nav_link:hover {
    color: #fff;
}

.nav_btn {
    padding: 1.24rem 1.85rem;
    background: #212121;
    border-radius: 3rem;
    color: #fff;
}

.nav_btn:hover {
    background: #fff;
    color: #212121;
}

/*  Nav toggle  */

.nav-toggle {
    display: none;

    position: absolute;
    top: 50%;
    left: 3rem;
    z-index: 1000;
    width: 3rem;
    padding: 1.2rem 0;

    font-size: 0;
    color: transparent;
    background: none;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.nav-toggle:focus {
    outline: none;
}

.burger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #212121;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;

    transition: background .2s linear;
}

.burger:before,
.burger:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #212121;
    position: absolute;
    left: 0;
    z-index: 100;

    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.burger:before {
    top: -1rem;
}

.burger:after {
    bottom: -1rem;
}

.nav-toggle.active .burger {
    background: none;
}

.nav-toggle.active .burger:before {
    background: #fff;
    transform-origin: left top;
    transform: rotate(45deg);
}

.nav-toggle.active .burger:after {
    background: #fff;
    transform-origin: left bottom;
    transform: rotate(-45deg);
}

.frame {
    position: absolute;
    z-index: 5;
}

.frame_1 {
    top: 17.3%;
    left: -6.2%;
    width: 21.4%;
}

.frame_2 {
    top: 29%;
    right: 4%;
    width: 15.6%;
}

.frame_3 {
    bottom: 6%;
    left: 2.6%;
    width: 20%;
}

.frame_4 {
    bottom: 7%;
    right: -7%;
    width: 24%;
}

.header_content {
    text-align: center;
    position: absolute;
    z-index: 50;
    width: 100%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header_title {
    line-height: .91em;
    padding-bottom: 4.9rem;
}

.mac_book {
    width: 50.5%;
    margin: 0 auto;
}

/* Home */

.home-wrap {
    padding: 3.1rem 0 7.2rem;
    text-align: center;
    overflow: hidden;
}

.home_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding-top: 4rem;
}

.home_inner a {
    overflow: hidden;
    position: relative;
}

.home_item a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, .1);
    display: block;
    box-sizing: border-box;
    z-index: 5;

    -webkit-transition: opacity .2s ease-in;
    -moz-transition: opacity .2s ease-in;
    -ms-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
}

.home_item:hover a:after {
    opacity: 1;
}

.home_item img {
    -webkit-transition: transform .2s ease-in;
    -moz-transition: transform .2s ease-in;
    -ms-transition: transform .2s ease-in;
    transition: transform .2s ease-in;

}

.home_item:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}

.home_caption {
    color: #0D0D0D;
    padding-top: 2rem;
}

/* Sportpress */

.sportpress-wrap {
    padding: 9.8rem 0 7rem;
    background: #F4F4F4;
    overflow: hidden;
}

.sportpress_title {
    text-align: center;
    color: #212121;
}

.sportpress_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding-top: 5.9rem;
}

.sportpress_content {
    width: 43%;
    padding-left: 2rem;
}

.sportpress_content li {
    list-style: none;
    padding-bottom: 2.6rem;
}

.sportpress_text {
    padding-top: 1.2rem;
}

.sportpress_img {
    width: 52%;
    margin-right: -.3rem;
    margin-top: 1.2rem;
}

/* Edition */

.edition-wrap {
    padding: 10rem 0 7.2rem;
    overflow: hidden;
}

.edition_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.edition_img {
    width: 47%;
    position: relative;
    padding-top: 42%;
}

.ed {
    position: absolute;
}

.ed_1 {
    width: 52.3%;
    top: 0%;
    left: 0%;
    z-index: 2;
}

.ed_2 {
    width: 45.4%;
    top: 5.8%;
    right: 10.1%;
    z-index: 3;
}

.ed_3 {
    width: 54%;
    top: 59.8%;
    right: 11.4%;
    z-index: 3;
}

.ed_4 {
    width: 76%;
    top: 19.3%;
    right: 1%;
}

.edition_content {
    width: 41.9%;
    padding-right: 9rem;
    padding-top: .3rem;
}

.edition_suptitle {
    color: #FEC721;
}

.edition_btn {
    background: #FEC721;
    color: #212121;
}

.edition_btn:hover {
    background: #212121;
    color: #fff;
}

/* Woo */

.woo-wrap {
    padding: 10rem 0 7.3rem;
    background: #FEC721;
    overflow: hidden;
}

.woo_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.woo_content {
    width: 39%;
    padding-left: 2rem;
    padding-bottom: 3rem;
}

.woo_text {
    padding-right: 4rem;
}

.woo_btn {
    padding: 1.6rem 3.35rem;
    background: #212121;
    color: #fff;
    border-radius: 3rem;
    margin-top: 3.3rem;
}

.woo_btn:hover {
    background: #fff;
    color: #212121;
}

.woo_img {
    width: 51%;
    position: relative;
    padding-top: 40%;
}

.woo {
    position: absolute;
}

.woo_1 {
    width: 73.6%;
    top: 0%;
    left: 0%;
    z-index: 2;
}

.woo_2 {
    width: 41%;
    top: 9.8%;
    right: 7.1%;
    z-index: 3;
}

.woo_3 {
    width: 25.7%;
    top: 32.8%;
    right: 22.8%;
    z-index: 3;
    -webkit-box-shadow: 10px 5px 10px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 10px 5px 10px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 10px 5px 10px 0px rgba(0, 0, 0, 0.03);
}

.woo_4 {
    width: 12.7%;
    top: 18%;
    right: 4%;
    z-index: 4;
}

/* Events */

.events-wrap {
    padding: 9.3rem 0 5.4rem;
    overflow: hidden;
}

.events_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.events_img {
    width: 48%;
    margin-left: 2rem;
}

.events_content {
    width: 40.8%;
    padding-bottom: 1.8rem;
    padding-right: 2rem;
}

.events_subtitle {
    color: #FEC721;
}

.events_btn {
    background: #FEC721;
    color: #212121;
}

.events_btn:hover {
    background: #212121;
    color: #fff;
}

/*  Slider  */

.slider-wrap {
    padding: 9.8rem 0;
    text-align: center;
    background: #101010;
    overflow: hidden;
}

.slider_subtitle {
    color: #B7B7B7;
}

.swiper-container {
    margin-top: 4.2rem;
    padding-bottom: 5.5rem;
}

.swiper-scrollbar-drag {
    background: #FEC721;
    border-radius: 0;
}

.swiper-container-horizontal > .swiper-scrollbar {
    width: 37.5% !important;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);

    margin: 0 auto;
    height: 3px;
    background: #212121;
}

/* Plugins */

.plugins-wrap {
    background: #FEC721;
    padding: 9.3rem 0 9.4rem;
    text-align: center;
    overflow: hidden;
}

.plugins_subtitle {
    width: 550px;
    margin: 0 auto;
}

.plugins_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 4.2rem 3rem 0;
    margin: 0;
}

.plugin_item {
    padding-right: 0;
    padding-bottom: 0;
    text-align: center;
}

.square-wrap {
    width: 8.6rem;
    margin: 0 auto;
}

.plugin_text {
    margin-top: 1rem;
    color: #212121;
}

/* Blog */

.blog-wrap {
    padding: 9.3rem 0 10rem;
    overflow: hidden;
}

.blog_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.blog_content {
    width: 36%;
    padding-left: 1.85rem;
    padding-bottom: 6rem;
}

.blog_suptitle {
    color: #FEC721;
}

.blog_text {
    color: #757575;
}

.blog_btn {
    background: #FEC721;
    color: #212121;
}

.blog_btn:hover {
    background: #212121;
    color: #fff;
}

.blog_img {
    width: 49%;
    position: relative;
    padding-top: 34%;
    margin-top: 3.2rem;
}

.blog {
    position: absolute;
}

.blog_1 {
    width: 95.3%;
    top: 0%;
    left: 0%;
    z-index: 1;
}

.blog_2 {
    width: 32.4%;
    top: 34.8%;
    left: 0%;
    z-index: 2;
}

.blog_3 {
    width: 37.3%;
    top: 22.3%;
    right: 4.8%;
    z-index: 3;
}

.blog_4 {
    width: 37%;
    top: 51.3%;
    right: 21.4%;
    z-index: 4;
}

.blog_5 {
    width: 17%;
    top: 4.5%;
    left: 1.2%;
    z-index: 4;
}

/* Blog_list */

hr {
    background: #E2E2E2;
    border: none;
    height: 1px;
    width: 100%;
    margin: 4.8rem 0 4rem;
}

.blog_list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    text-align: center;
    -ms-align-items: baseline;
    align-items: baseline;
    margin: 0 -3rem;
}

.blog_list-item {
    padding: 0;
    text-align: center;
}

.img-wrap {
    margin: 0 auto auto;
    width: 4rem;
}

.blog_list-item:nth-child(1) .img-wrap {
    width: 3.5rem;
    margin-bottom: 2px;
}

.blog_list-item:nth-child(1) .img-wrap img {
    margin-bottom: -5px;
}

.blog_list-item:nth-child(4) .img-wrap img {
    margin-bottom: -3px;
}

.blog_list-item:nth-child(5) .img-wrap img {
    margin-bottom: -3px;
}

.blog_list-item:nth-child(7) .img-wrap img {
    margin-bottom: -1px;
}

.blog_list-item:nth-child(6) .img-wrap,
.blog_list-item:nth-child(2) .img-wrap {
    width: 4.2rem;
}

.blog_list-item:nth-child(4) .img-wrap {
    width: 3.6rem;
}

.blog_list-item:nth-child(5) .img-wrap {
    width: 3.5rem;
}

.blog_list-item:nth-child(8) .img-wrap {
    width: 3.2rem;
}

.blog_item-caption {
    margin-top: 1rem;
}

/* Features */

.features-wrap {
    background: #101010;
    text-align: center;
    padding: 8.5rem 0 7.8rem;
    overflow: hidden;
}

.features_inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1.5rem .1rem 0;
}

.features_inner.columns_wrap {
    margin-right: -30px;
}

.features_column {
    padding-right: 30px;
    padding-bottom: 30px;
}

.features_item {
    background: #292929;
    width: 100%;
    padding-top: 131.2%;
    position: relative;
    border-radius: 5px;
}

.features_content {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;

    text-align: center;
    padding-top: 5.5rem;
}

.features_img {
    width: 6.6rem;
    margin: 0 auto 3.6rem;
}

.features_text {
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem 3.1rem 0;
    color: #B7B7B7;
}

/* Footer */

footer {
    background: #FED330;
    position: relative;
    text-align: center;
    padding: 10rem 0;
    overflow-x: hidden;
}

footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/footer/bck.png) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.footer_inner {
    position: relative;
    z-index: 2;
}

.footer_title {
    font-size: 6.248rem; /* 90px */
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: .8333em;
    color: #212121;
}

.footer_btn {
    background: #212121;
    color: #fff;
    padding: 1.5rem 5.2rem;
    border-radius: 3rem;
    margin-top: 2.8rem;
}

.footer_btn:hover {
    background: #fff;
    color: #212121;
}

/* Top Button */

#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 1.3rem;
    width: 3rem;
    height: 3rem;
    background: #ffb624;
    color: #fff;
    z-index: 100;
    border: none;
    border-radius: .3rem;
    outline: none;
    cursor: pointer;
    display: none;
    transition: all .3s linear;
    z-index: 100;
}

#topBtn:hover {
    background: #212121;
    outline: none;
}

/*LOADER*/

#loader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1000;
    transition: 0.3s ease opacity;
}

#loader:before,
#loader:after {
    content: '';
    width: 80px;
    height: 80px;
    border: 2px solid #212121;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: loaderCircleAnim;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#loader:after {
    animation-delay: 1s;
}

@keyframes loaderCircleAnim {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}