body {
    color: #000;
}

h1,
h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

a {
    color: #000;
    transition: 0.1s ease-in-out;
}

a:hover {
    color: #719100;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
}


section {
    padding: 40px 0;
}

.wrapper {
    margin: 0 auto;
}

span {
    font-weight: 900;
}

.back-col-green {
    background-color: #d1df9b;
}

.back-col-grey {
    background-color: #ececec;
}

.back-col-img-one {
    background-image: url(/assets/images/13.webp);
    background-attachment: fixed;
}

.back-col-img-two {
    background-image: url(/assets/images/14.webp);
    background-position: center;
    background-attachment: fixed;
}

.back-col-blue {
    background-color: #9bcfdf;
}

.topbar {
    padding: 0;
    background-color: #e0e0e0;
}

.topbar__row {
    display: grid;
    grid-template: 50px / auto 1fr auto;
    align-items: center;
    padding: 0 15px;
}

.topbar__col--2,
.topbar__col--3 {
    justify-self: end;
}

.topbar__col--3 {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-details,
.languages,
.social-networks {
    list-style-type: none;
}

.languagepicker {
    height: 40px;
    overflow: hidden;
    transition: all .3s ease;
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 999999;
}

.languagepicker:after {
    content: '';
    background-image: url(../assets/images/icons/caret-down.svg);
    width: 13px;
    height: 22px;
    background-size: contain;
    display: block;
    position: absolute;
    top: 14px;
    right: 40px;
}

.languagepicker:hover {
    height: 110px;
    background-color: #e0e0e0;
    transition: 0.4s;
    position: absolute;
    top: 0;
    right: 20px;
    box-shadow: 2px 2px 8px 0 #b8b8b8;
}

.languagepicker__link {
    line-height: 25px;
    font-size: 20px;
    display: block;
    padding: 12.5px 20px;
    width: 160px;
    text-align: center;
    font-weight: 300;
}


.languagepicker__link--active {
    cursor: default;
}

.languagepicker__flag {
    width: 20px;
    height: 14px;
    margin-right: 5px;
    display: inline-block;
}

.contact-details,
.social-networks {
    list-style-type: none;
}

.social-network__item {
    float: left;
    margin: 0 5px;
}

.social-network__item:first-child {
    margin-left: 0;
}

.social-network__item:last-child {
    margin-right: 0;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: #f3f3f3;
    box-shadow: 0 8px 6px -6px #00000042;
    z-index: 99999;
}

.back-to-the-top {
    z-index: 999999;
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #9ebf26;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    text-align: center;
}

.back-to-the-top:after {
    content: '\00ab';
    transform: rotate(90deg);
    font-size: 45px;
    line-height: 32px;
    width: 40px;
    color: #fff;
    height: 40px;
    text-align: center;
    display: inline-block;
}



.navbar__row {
    display: grid;
    grid-template-columns: 230px auto;
    grid-template-rows: 100px;
    padding: 0 15px;
    align-items: center;
}

.navbar__col--2 {
    justify-self: end;
}

img {
    max-width: 100%;
}

.btn {
    background-color: #85aa00;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 0;
    transition: 0.1s ease-in-out;
}

.btn__link {
    padding: 15px 40px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn:hover {
    background-color: #6d8b00;
}

.btn__link:hover {
    color: #fff;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.row-rev {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.col-1 {
    flex: 1;
    padding: 15px;
    min-width: 290px;
    box-sizing: border-box;
}

.col-2 {
    flex: 2;
    padding: 15px;
    min-width: 290px;
    box-sizing: border-box;
}

.col-3 {
    flex: 2;
    padding: 15px;
    min-width: 290px;
    box-sizing: border-box;
}

.col-4 {
    margin-bottom: 40px;
}

.col-5 {
    margin-left: auto;
    margin-right: auto;
    flex: auto;
    padding: 25px;
    max-width: 350px;
    box-sizing: border-box;
}

.col-6 {
    flex: 1;
    padding: 35px;
    min-width: 300px;
    box-sizing: border-box;
}

.col-7 {
    flex: 1;
    padding: 15px;
    min-width: 250px;
    box-sizing: border-box;
}

.col-8 {
    padding: 35px;
    min-width: 300px;
    box-sizing: border-box;
}


.section__title,
.section__subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.section__title {
    font-size: 50px;
    font-weight: 100;
}

.section__subtitle {
    max-width: 850px;
    margin: 0 auto 15px;
    font-size: 20px;
    line-height: 29px;
}

.section__separator {
    background-color: #9ebf26;
    width: 82px;
    height: 5px;
    margin: 0 auto;
    border-radius: 5px;
}

/* --- HEADER --- */

.header__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 2px solid #d7d7d7;
    padding: 10px 0;
}

.header__topbar>div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 290px;
}

.header__topbar--contact-info a {
    font-size: 20px;
    color: #222;
    display: block;
}

.header__topbar--social-media ul {
    float: right;
}

.header__topbar--contact-info ul,
.header__topbar--social-media ul {
    list-style-type: none;
}

.header__topbar--contact-info li,
.header__topbar--social-media li {
    float: left;
}

.header__topbar--contact-info li {
    margin-right: 10px;
}

.header__topbar--social-media li {
    margin-left: 10px;
}

.social-media__icon {
    height: 25px;
    fill: #222;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.social-media--facebook:hover {
    fill: #3b5999;
}

.social-media--instagram:hover {
    fill: #e4405f;
}

.social-media--twitter:hover {
    fill: #55acee;
}

.social-media--gplus:hover {
    fill: #dd4b39;
}

.header__navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
    position: relative;
}

.mobile-bars {
    height: 30px;
}

.main-menu__checkbox {
    display: none;
}

.main-menu__menu-list {
    z-index: 1;
    margin: 0;
    float: right;
    height: 0px;
    overflow: hidden;
    position: absolute;
    right: 0;
    background-color: #f3f3f3;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.main-menu__checkbox:checked~.main-menu__menu-list {
    height: auto;
}

.main-menu__list-item {
    text-align: center;
    display: block;
    width: 250px;
    height: 54px;
}

.main-menu__item-link {
    color: #000;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #d7d7d7;
}



.main-menu__item-link:hover {
    border-bottom: 1px solid #9ebf26;
}

.slider {
    position: relative;
    background-size: cover;
    background-position: center center;
    background: #0c2740;
}

.back-img img {
    width: 2560px;
    height: auto;
}

.slider__heading {
    font-size: 3.9rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 100;
    line-height: 1.2;
}

.slider__subheading {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 100;
}

.slider__arrow {
    position: absolute;
    top: 50%;
    padding: 5px;
    font-size: 3rem;
    color: #9ebf26;
    transform: translateY(-50%);
}

.box_slider {
    margin-top: -20px;
}


.slider__arrow:hover {
    cursor: pointer;
}

.slider__arrow--left {
    left: 0;
    display: none;
}

.slider__arrow--right {
    right: 0;
    display: none;
}

.slider__row {
    padding: 170px 40px;
    align-items: center;
    text-align: center;
    position: absolute;
}

/* --- PROJECTS --- */

.projects__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.projects__column {
    -webkit-box-flex: 33.33%;
    -ms-flex: 33.33%;
    flex: 33.33%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.projects__gallery {
    display: block;
}

.projects__gallery figure {
    overflow: hidden;
    position: relative;
    display: block;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.projects__gallery img {
    display: block;
}

.projects__gallery figcaption {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    padding: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
}

.projects__gallery figure:hover>figcaption {
    bottom: 0;
}

/* --- RESPONSIVE WEBSITES --- */

.responsive-websites {
    background-color: #e8eff7;
}

.responsive-websites__row {
    align-items: center;
}

.full_row {
    align-items: center;
    max-width: 1400px;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.slider__column {
    padding: 0 30px;
    margin-top: 25px;
    padding: 0 50px;
}

.slider__paragraph {
    margin-bottom: 15px;
    max-width: 670px;
    font-size: 18px;
    line-height: 29px;
}

.image-box {
    position: relative;
}

.image-box__apple-pc {
    margin: 0 auto;
}

.image-box__website-screen {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}

/* --- WHAT WE DO --- */

.box {
    text-align: center;
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    justify-content: center;
}

.box__icon {
    height: 300px;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #888;
    border-radius: 38px;
    background-color: #ffffff5c;
    width: 270px;
}


.box__title {
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 100;
    text-transform: uppercase;
    padding: 0 20px;
}

.box__title__1 {
    margin-bottom: 15px;
    font-size: 37px;
    font-weight: 100;
    text-transform: uppercase;
    padding: 0 10px
}

.box__content__1 {
    line-height: 40px;
    font-size: 24px;
    padding: 0 35px;
    font-weight: 300;
}

.box__content__2 {
    line-height: 40px;
    font-size: 24px;
    padding: 0 25px;
    font-weight: 300;
}


/* --- HOW WE WORK --- */

.how-we-work {
    background: #01373c;
    color: #fff;
    background-image: url('/assets/images/works.webp');
    background-size: cover;
    background-attachment: fixed;
}

.first-element::after {
    content: '';
    display: block;
    position: absolute;
    height: 90px;
    left: 36%;
    margin-top: 389px;
    border-right: 5px dotted rgb(255 169 0);
    ;
}

.second-element::before {
    content: '';
    display: block;
    position: absolute;
    width: 29%;
    left: 36%;
    margin-top: -490px;
    border-bottom: 5px dotted rgb(255 169 0);
    ;
}

.third-element::before {
    content: '';
    display: block;
    position: absolute;
    height: 90px;
    right: 35%;
    margin-top: -385px;
    border-right: 5px dotted rgb(255 169 0);
    ;
}

.fourth-element::after {
    content: '';
    display: block;
    position: absolute;
    height: 90px;
    right: 35%;
    margin-top: 392px;
    border-right: 5px dotted rgb(255 169 0);
    ;
}

.fifth-element::before {
    content: '';
    display: block;
    position: absolute;
    width: 29%;
    left: 36%;
    margin-top: -490px;
    border-bottom: 5px dotted rgb(255 169 0);
    ;
}

.sixth-element::before {
    content: '';
    display: block;
    position: absolute;
    height: 90px;
    left: 36%;
    margin-top: -383px;
    border-left: 5px dotted rgb(255 169 0);
    ;
}


.first-item {
    display: inline-flex !important;
    float: left !important;
}


/* --- PROJECTS --- */

.project__description {
    margin-bottom: 0;
    font-size: 22px;
    text-align: center;
}

.details {
    padding: 0 50px;
}

.project__paragraph {
    position: relative;
}

.project__description-icon {
    width: 25px;
    position: absolute;
    top: 0;
    left: -35px;
}

/* --- Faq --- */

.faq-row {
    margin-top: 40px;
}


button.accordion {
    width: 100%;
    background-color: #9ebf2630;
    border: none;
    border-radius: 10px;
    outline: none;
    text-align: left;
    padding: 15px 20px;
    line-height: 1.5;
    font-size: 22px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: background-color 0.5s linear;
    box-shadow: 2px 2px 8px 0 #b8b8b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.accordion p {
    width: 90%;
    display: inline-block;
    font-weight: 400;
}

button.accordion:after {
    font-family: FontAwesome;
    content: '\f150';
    font-family: "fontawesome";
    font-size: 17px;
    float: right;
    padding: 15px;
}

button.accordion.is-open:after {
    content: '\f056';
}

button.accordion:hover,
button.accordion.is-open {
    background-color: #ddd;
}

.accordion-content {
    line-height: 1.5;
    font-size: 19px;
    font-weight: 600;
    background-color: white;
    border-left: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
    margin: 25px 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.accordion-content p {
    font-weight: 500;
}

/* Realizations */

.product-list {
    display: flex;
    width: 100%;
    border: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pf-item {
    flex-basis: 29%;
    width: 29%;
    margin: 2%;
    border: 0.5px solid rgb(130 130 130);
    transition: all ease-in-out 0.2s;
    position: relative;
    box-shadow: rgb(172 172 172) 8px 8px 50px 0px;
}

.pf-item:hover .background-pf {
    background-position: center 100% !important;
}

.background-pf {
    background-position: center 0;
    background-repeat: no-repeat !important;
    background-size: 100% !important;
    width: 100%;
    height: 325px;
    left: 0;
    transition: all ease-in-out 3.7s;
    pointer-events: none;
}



.pf-bottom {
    border-top: 0.5px solid rgb(130 130 130);
    border-bottom: 0.5px solid rgb(130 130 130);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(194deg, #c8ff00 -50%, #28292b 100%);
    color: #fff;
}

.pf-name-price {
    width: 100%;
    text-align: center;
    padding: 0 20px;
    margin-top: 20px;
}

.pf-row {
    font-size: 19px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 30px;
    min-height: 30px;
    text-decoration: none;
}

.pf-row span {
    font-weight: 300;
    text-shadow: #000 0.06em 0.07em 0.07em;
    color: #fff
}

.pf-ico {
    margin-top: 20px;
    width: 100%;
    height: 75px;
    background-color: #082631;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 25px 5px;
}

.pf-single-item-ico {
    background: #082631;
    font-size: 13px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    width: 40%;
    margin: 3px;
    padding: 4px 10px;
    border: 0.2px solid #737373;
    background: #424242;
    border-radius: 1px;
}

.pf-single-item-ico i {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    color: #c8ff00;
    margin-right: 10px;
}

/* --- CONTACT --- */

.contact {
    background-color: #d0d0d0;
    font-size: 1.3rem;
}

.contact__paragraph {
    margin-bottom: 25px;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
}

.contact__row {
    align-items: center;
    justify-content: center;
}

.contact-list {
    list-style-type: none;
    width: -moz-fit-content;
    width: min-content;
    margin: 0 auto 55px;
}

.contact-list__item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 40px;
}

.contact-list__icon {
    height: 35px;
    width: auto;
    margin: 20px 10px 0 0;
    transform: translate(-50%, -50%);
}

.contact-list__link {
    color: #000;
}

.contact__contact-with-us {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    color: #000000;
}


.contact_img {
    margin-top: -100px;
    padding: 0 50px;
}

.contact-data {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- FOOTER --- */

.footer {
    background-color: #364655;
    padding: 10px 0;
    color: #fff;
}

.copyright {
    text-align: center;
}

.copyright__link {
    color: #fff;
}


/* General */

#portfolio::before,
#czym-sie-zajmujemy::before,
#jak-dzialamy::before,
#kontakt::before {
    display: block;
    content: " ";
    margin-top: 50px;
    visibility: hidden;
    pointer-events: none;
}


/* Responsive */


@media (max-width: 1920px) {
    .slider__row {
        padding: 120px 120px;
    }

    .first-element::after {
        left: 31%;
        margin-top: 389px;
    }

    .second-element::before {
        width: 39%;
        left: 31%;
        margin-top: -490px;
    }

    .third-element::before {
        right: 30%;
        margin-top: -385px;
    }

    .fourth-element::after {
        right: 30%;
        margin-top: 392px;
    }

    .fifth-element::before {
        width: 39%;
        left: 31%;
        margin-top: -490px;
    }

    .sixth-element::before {
        left: 31%;
        margin-top: -383px;
    }
}

@media (max-width: 1800px) {
    .slider__row {
        padding: 120px 120px;
    }
}

@media (max-width: 1600px) {
    .slider__row {
        padding: 100px 120px;
    }
}

@media (max-width: 1540px) {
    .slider__row {
        padding: 80px 120px;
    }
}

@media (max-width: 1350px) {
    .slider__row {
        padding: 60px 120px;
    }
}

@media (max-width: 1279px) {
    .slider__row {
        padding: 80px 50px;
    }

    .slider__heading {
        font-size: 2.4rem;
    }

    .slider__subheading {
        font-size: 1.2rem;
    }

    .first-element::after {
        margin-top: 414px;
    }

    .second-element::before {
        margin-top: -488px;
    }

    .third-element::before {
        margin-top: -382px;
    }

    .fourth-element::after {
        margin-top: 424px;
    }

    .fifth-element::before {
        margin-top: -475px;
    }

    .sixth-element::before {
        margin-top: -369px;
    }

    .box__icon {
        height: 250px;
        margin: 30px auto 30px;
    }

    .contact-list__icon {
        left: 2%;
    }

    .pf-item {
        flex-basis: 45%;
        width: 45%;
    }
}


@media (max-width: 1100px) {
    .slider__row {
        padding: 60px 70px;
    }

    .box_slider {
        margin-top: -30px;
    }
}


@media (max-width: 990px) {
    .slider__row {
        padding: 40px 30px;
    }

    .first-element::after {
        height: 50px;
        margin-top: 492px;
    }

    .third-element::before {
        height: 50px;
        margin-top: -424px;
    }

    .fourth-element::after {
        height: 50px;
        margin-top: 440px;
    }

    .fifth-element::before {
        margin-top: -540px;
    }

    .sixth-element::before {
        height: 50px;
        margin-top: -475px;
    }

    .box__title {
        font-size: 29px;
    }

    .pf-item {
        flex-basis: 70%;
        width: 70%;
    }

}


@media (max-width: 870px) {
    .slider__row {
        padding: 40px 30px;
    }

    .slider__heading {
        font-size: 1.7rem;
    }

    .slider__subheading {
        font-size: 1.1rem;
    }

    .box_slider {
        margin-top: -42px;
    }

}

@media (max-width: 770px) {

    .first-element::after {
        display: none;
    }

    .second-element::before {
        display: none;
    }

    .third-element::before {
        display: none;
    }

    .fourth-element::after {
        display: none;
    }

    .fifth-element::before {
        display: none;
    }

    .sixth-element::before {
        display: none;
    }

    .box {
        padding: 5px 0;
    }

    .col-1 {
        margin-top: 40px;
    }

}

@media (max-width: 767px) {
    .slider__row {
        padding: 40px 0;
    }

    .contact_img {
        margin-top: 0px;
        padding: 0 50px;
    }

    .col-3 {
        flex: 2;
        padding: 15px;
        width: 250px;
        box-sizing: border-box;
    }

    .navbar {
        position: static;
    }


    .pf-single-item-ico {
        border: 1px solid #868686;
        padding: 8px;
        width: 47%;
    }


    .pf-ico {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 25px 5px;
        flex-direction: column;
    }

    .pf-row {
        font-size: 14px;
        letter-spacing: 1px
    }

    .pf-item {
        flex-basis: 90%;
        width: 90%;
        margin: 5%;
    }

    .background-pf {
        height: 345px;
    }


}


@media (max-width: 756px) {
    .slider__row {
        position: inherit;
    }

    .col-2 {
        display: flex;
    }

    .back-img {
        display: none;
    }

    .slider__heading {
        font-size: 2.9rem;
    }

    .slider__subheading {
        font-size: 1.7rem;
    }

    .col-6 {
        margin-top: 45px;
    }

    .col-7 {
        margin-top: 45px;
        margin-left: 20px;
    }

    .box__content__1 {
        margin-bottom: 65px;
    }

    .box__title {
        margin-top: -20px;
    }

    .languagepicker__link {
        width: 100px;

    }

    .languagepicker:after {
        right: 15px;
    }


}



@media (max-width: 369px) {
    .languagepicker__link {
        font-size: 12px;
        padding: 12.5px 15px 12.5px 5px;
    }

    .languagepicker__flag {
        width: 16px;
        height: 11px;
        margin-right: 3px;
    }

    .languagepicker:after {
        right: 7px;
    }

    .box__icon {
        padding: 10px;
    }

    .section__title {
        font-size: 40px;
    }

    .pf-row {
        font-size: 14px;
    }


}

@media (min-width: 576px) {
    .wrapper {
        max-width: 540px;
    }
}

@media (min-width: 756px) {
    .col-2 {
        display: none;
    }
}

@media (min-width: 768px) {
    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 28px
    }

    .wrapper {
        max-width: 720px;
    }

    .contact-details__item {
        float: left;
        padding: 0 10px;
        border-left: 1px solid #000;
    }

    .contact-details__item:first-child {
        padding-left: 0;
        border-left: none;
    }

    .contact-details__item:last-child {
        padding-right: 0;
    }

    .slider__arrow {
        font-size: 5rem;
    }
}

@media (min-width: 992px) {
    .mobile-bars {
        display: none;
    }

    .main-menu__menu-list {
        visibility: visible;
        position: static;
        height: auto;
    }

    .main-menu__list-item {
        float: left;
        margin-left: 15px;
        width: auto;
    }

    .main-menu__item-link {
        border-bottom: 1px solid transparent;
    }

    .wrapper {
        max-width: 960px;
    }
}


@media (min-width: 1280px) {
    .wrapper {
        max-width: 1280px;
    }
}