/*
Theme Name: BeyondBytes
Version: 1.0
Description: BeyondBytes Template
Author: Arkadiusz Kurasz - WebNetworkers
Author URI: http://www.webnetworkers.com
Theme URI: http://www.webnetworkers.com
*/

/* Reset ustawień oraz ustawienia globalne */
/* Begin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: 'Raleway', sans-serif;
}

.clearfix::after {
    content: "";
    clear: both;
    display: block;
}
/* End */

/* STYLE I ELEMENTY POWTARZAJĄCE SIĘ */
/* Begin */
div.line {
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #eeeeee;
}

div.separator {
    width: 45px;
    margin: 45px auto;
    border-top: 2px solid #008DD2;
}
/* End */

/* NAVIGATION */
/* Begin */
nav.big {
    position: sticky;
    top: 0;
    width: 100%;
    height: 70px;
    padding: 13px 10%;
    background-color: #fff;

    -webkit-box-shadow: 10px 10px 31px -26px rgba(0,0,0,0.4);
    -moz-box-shadow: 10px 10px 31px -26px rgba(0,0,0,0.4);
    box-shadow: 10px 10px 31px -26px rgba(0,0,0,0.4);

    z-index: 10;
}

nav.big img {
    display: inline-block;
    height: 44px;
}

nav.big div.menu {
    margin-left: 35px;
    margin-top: -60px;
    text-align: center;
}

nav.big div.menu a {
    text-decoration: none;
    line-height: 70px;
    font-size: 1.8em;
    color: #2B2A29;
    padding: 25px 15px;
    font-weight: 600;
    transition: 0.1s;
}

nav.big div.menu a:hover {
    color: #008DD2;
    border-bottom: 3px solid #008DD2;;
}

nav.big div.menu a.social {
    float: right;
    margin-top: -27px;
    font-size: 3em;
    color: #15204E;
    transition: 0.3s;
    border: none;
}

nav.big div.menu a.social:hover {
    color: #008DD2;
}
/* End */

/* Stylowanie menu hamburgerowego */
/* Begin */
/* Wyłaczenie menu przy rozdzielczościach powyżej 1024px */
div.smallBurger {
    display: none;
}

/* Formatowanie menu dla rozdzielczości 1024 px - menu hamburger */
@media (max-width: 1024px) {
    nav.big {
        display: none;
    }

    div.smallBurger {
        display: block;
        z-index: 1;
        position: sticky;
        top: 0;
        background-color: #fff;
        text-align: right;

        -webkit-box-shadow: 10px 10px 31px -26px rgba(0,0,0,0.4);
        -moz-box-shadow: 10px 10px 31px -26px rgba(0,0,0,0.4);
        box-shadow: 10px 10px 31px -26px rgba(0,0,0,0.4);

        padding: 15px;
        height: 70px;
        overflow: hidden;
    }

    div.smallBurger div.logoBurger {
        position: relative;
        text-align: left;
        top: 1%;
        left: 35px;
        height: 45px;
    }

    div.smallBurger div.logoBurger img {
        height: 100%;
        transition: 0.3s;
    }

    div.smallBurger .wrapper {
        margin: 10px 70px;
    }

    div.smallBurger .wrapper p {
        font-size: 18px;
    }

    div.smallBurger .burger {
        position: fixed;
        top: 18px;
        right: 50px;
        font-size: 33px;
        z-index: 5;
        transition: 0.3s;
    }

    div.smallBurger i.off {
        display: none;
    }

    div.smallBurger i.fa-angle-up {
        color: black;
    }

    div.smallBurger nav {
        position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        height: 60vh;
        background-color: #fff;
        transition: .2s;
        z-index: 1;
    }

    div.smallBurger nav.off {
        top: -61vh;
    }

    div.smallBurger nav a {
        display: inline-block;
        text-decoration: none;
        text-align: center;
        width: 100%;
        line-height: calc(60vh / 5);
        color: rgb(18,18,18);
        background-color: #fff;
        transition: 0.3s;
        font-size: 1.6em;
        border-bottom: 1px solid #eeeeee;
    }

    div.smallBurger nav a:focus {
        background-color: #fcf8ff;
    }
}

@media (max-width: 500px) {

}

@media (max-width: 370px) {

}
/* End */

/* HEADER */
/* Begin */
header {
    margin: 0 auto;
    width: 100%;
    height: 700px;
    margin-top: -26px;
    color: #2B2A29;
    background-image: url(../img/New_Background_Header_BeyondBytes.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    /* background-size: cover; */
    padding: 150px 10%;
    transition: 0.3s;
}

header img {
    display: none;
}

header h1 {
    margin-top: 130px;
    font-size: 5em;
    font-weight: 400;
    margin-bottom: 15px;
    transition: 0.3s;
}

header h2 {
    font-size: 3em;
    font-weight: 400;
    transition: 0.3s;
}

header div.separator {
    margin: 45px 0;
}

header a {
    text-decoration: none;
    display: inline-block;
    color: #f5f5f5;
    background-color: #008DD2;
    border: 2px solid  #008DD2;
    border-radius: 25px;
    font-size: 1.8em;
    line-height: 50px;
    padding: 0 60px;
    margin-bottom: 10px;
    font-weight: 600;

    transition: 0.3s;
}

header a:hover,
header a:focus {
    color: #15204E;
    border: 2px solid #15204E;
    background-color: #ffffffff;
}

@media (max-width: 1460px) {
    header h1 {
        font-size: 4em;
    }
    
    header h2 {
        font-size: 2.7em;
    }
    
}

@media (max-width: 1350px) {
    header h1 {
        font-size: 3.5em;
    }
    
    header h2 {
        font-size: 2.4em;
    }
    
}

@media (max-width: 1250px) {
    header {
        margin-top: -100px;
        background-size: 75%;
    }    
}

@media (max-width: 1100px) {
    header {
        margin-top: -150px;
        background-size: 65%;
        margin-bottom: -100px;
    }

    header h1 {
        font-size: 3.5em;
    }
    
    header h2 {
        font-size: 2.4em;
    }
}

@media (max-width: 1024px) {
    header {
        background-image: none;
        height: auto;
    }

    header img {
        display: block;
        width: 100%;
        margin-bottom: -100px;
    }

    header h1,
    header h2 {
        text-align: center;
    }

    header div.separator {
        margin: 45px auto;
    }
    
    header a {
        margin-left: 50%;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 400px) {
    header a {
        text-align: center;
        border-radius: 25px;
        font-size: 1.8em;
        line-height: 50px;
        padding: 0 0px;
        width: 100%;
        margin-left: 0;
        transform: translate(0, 0);
    }
}
/* End */

/* WHAT WE OFFER */
/* Begin */
/* whatWeOffer */
section.whatWeOffer {
    padding: 80px 10% 40px 10%;
}

section.whatWeOffer h4 {
    font-size: 2em;
}

section.whatWeOffer h4,
section.whatWeOffer h5 {
    text-align: center;
}

section.whatWeOffer h5 {
    font-size: 1.8em;
    font-weight: normal;
}

section.whatWeOffer div.separator {
    margin: 45px auto;
}

/* whatWeOfferGrid */
section.whatWeOfferGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 40px 10% 80px 10%;
}

section.whatWeOfferGrid div {
    width: 95%;
    background-color: #fff;
    padding: 50px;
    -webkit-box-shadow: 2px 3px 37px -30px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 3px 37px -30px rgba(0,0,0,0.5);
    box-shadow: 2px 3px 37px -30px rgba(0,0,0,0.5);
    text-align: center;
    transition: 0.3s;
    margin-bottom: 30px;
}

section.whatWeOfferGrid div img {
    height: 100px;
    margin-bottom: 30px;
    margin-top: 10px;
}

section.whatWeOfferGrid div h3 {
    color: #008DD2;
    font-size: 1.6em;
    margin-bottom: 5px;
}

section.whatWeOfferGrid div h6 {
    color: #2B2A29;
    font-size: 2.1em;
    margin-bottom: 30px;

}

section.whatWeOfferGrid div p {
    color: #2B2A29;
    font-size: 1.6em;
    line-height: 30px;
}

section.whatWeOfferGrid div:hover {
    background-color: #F0F8FE;
    transform: scale(105%);
}

@media (max-width: 1024px) {
    section.whatWeOfferGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section.whatWeOfferGrid {
        grid-template-columns: 1fr;
    }
}
/* End */

/* TECHNOLOGIES */
/* Begin */
section.technologies {
    padding: 80px 10%;
    text-align: center;
}

section.technologies h4 {
    font-size: 2em;
}

section.technologies h5 {
    font-size: 1.8em;
    font-weight: normal;
    margin-bottom: 80px;
}

section.technologies div.logoTechnologies img {
    filter: grayscale(1);
    transition: 0.3s;
    margin: 10px;
}

section.technologies div.logoTechnologies img:hover {
    filter: grayscale(0);
    transform: scale(120%);
    -webkit-box-shadow: 2px 3px 37px -34px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 3px 37px -34px rgba(0,0,0,0.75);
    box-shadow: 2px 3px 37px -34px rgba(0,0,0,0.75);
}

@media (max-width: 768px) {
    section.technologies div.logoTechnologies img {
        filter: grayscale(0);
    }
}
/* End */

/* OPINIONS */
/* Begin */
/* title */
section.opinions {
    padding: 80px 10% 40px 10%;
}

section.opinions h4 {
    font-size: 2em;
}

section.opinions h4,
section.opinions h5 {
    text-align: center;
}

section.opinions h5 {
    font-size: 1.8em;
    font-weight: normal;
}

section.opinions div.separator {
    margin: 45px auto;
}

/* OPINIONS GRID */
section.opinionsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px 10% 80px 10%;
}

section.opinionsGrid div {
    width: 95%;
    background-color: #f7f7f7;
    padding: 20px 50px 50px 50px;
    transition: 0.3s;
    margin-bottom: 30px;
    border-left: 5px solid #008DD2;
    transition: 0.3s;
}

section.opinionsGrid div:hover {
    -webkit-box-shadow: 2px 3px 37px -30px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 3px 37px -30px rgba(0,0,0,0.5);
    box-shadow: 2px 3px 37px -30px rgba(0,0,0,0.5);
    transform: scale(105%);
    border-color: #2B2A29;
}

section.opinionsGrid div span {
    margin-left: -20px;
    color: #008DD2;
    font-size: 15em;
    font-style: italic;
    transition: 0.3s;
}

section.opinionsGrid div:hover > span  {
    color: #2B2A29;
}

section.opinionsGrid div p {
    margin-top: -132px;
    padding-left: 70px;
    color: #2B2A29;
    font-size: 1.6em;
    line-height: 30px;
    font-style: italic;
    transition: 0.3s;
}

section.opinionsGrid div h6 {
    padding-left: 70px;
    color: #2B2A29;
    font-size: 2.1em;
    margin-top: 30px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    section.opinionsGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 440px) {
    section.opinionsGrid div span {
        margin-left: -15px;
    }
    
    section.opinionsGrid div p {
        margin-top: -70px;
        padding-left: 0px;
        font-size: 1.5em;
        line-height: 25px;
    }
    
    section.opinionsGrid div h6 {
        padding-left: 0px;
        font-size: 1.8em;
    }
}
/* End */

/* CONTACT INFORMATIONS */
/* Begin */
section.contactInformations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    color: #f5f5f5;
    background-image: url(../img/Background_contactInformations_BeyondBytes_2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 15%;
}

section.contactInformations h4 {
    font-size: 2em;
}

section.contactInformations div.separator {
    margin: 45px 0;
}

section.contactInformations h3 {
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
    font-style: italic;
}

section.contactInformations p {
    font-size: 1.7em;
    line-height: 30px;
}

section.contactInformations a {
    text-decoration: none;
    color: #f5f5f5;
    transition: 0.3s;
}

section.contactInformations a:hover,
section.contactInformations a:focus {
    color: #008DD2;
}

section.contactInformations a p.email {
    margin-top: 30px;
}

/* CONTACT FORM */
section.contactInformations div.form form input,
section.contactInformations div.form form textarea,
section.contactInformations div.form form button {
    /* margin: 0 auto; */
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 1.6em;
    font-family: 'Raleway', sans-serif;
    transition: 0.3s;
}

section.contactInformations div.form form input {
    width: 100%;
    line-height: 35px;
    padding: 12px 20px;
    color: #f5f5f5;
    border: 1px solid #eeeeee66;
    background-color: #ffffff22;
}

section.contactInformations div.form form textarea {
    width: 100%;
    height: 200px;
    padding: 15px 20px;
    color: #f5f5f5;
    border: 1px solid #eeeeee66;
    background-color: #ffffff22;
    resize: none;
}

section.contactInformations div.form form input:hover,
section.contactInformations div.form form input:focus,
section.contactInformations div.form form textarea:hover,
section.contactInformations div.form form textarea:focus {
    border: 1px solid #008DD2;
}

section.contactInformations div.form form button {
    line-height: 50px;
    padding: 0 60px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #f5f5f5;
    background-color: #009846;
    border: 1px solid #009846;
    cursor: pointer;

    transition: 0.3s;
}

section.contactInformations div.form form button:hover,
section.contactInformations div.form form button:focus {
    background-color: #007235;
    border: 1px solid  #007235;
}

::placeholder {
    color: #f5f5f5cc;
}

@media (max-width: 1024px) {
    section.contactInformations {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section.contactInformations div.informations {
        margin-bottom: 80px;
    }
    
    section.contactInformations div.separator {
        margin: 45px auto;
    }
}

@media (max-width: 768px) {
    section.contactInformations div.form form button {
        width: 100%;
    }
}
/* End */










/* LOCATION */
/* Begin */
/* część styli została zagnieżdżona w html */
/* End */

/* SOCIAL MEDIA */
/* Begin */
section.socialMedia {
    text-align: center;
    background-color: #0e1635;
    padding: 70px 0;
    margin-top: -2px;
}

section.socialMedia a {
    text-decoration: none;
    line-height: 70px;
    font-size: 3em;
    color: #f5f5f5;
    font-weight: 600;
    transition: 0.3s;
}

section.socialMedia a:hover {
    color: #008DD2;
}
/* End */

/* FOOTER */
/* Begin */
footer {
    border-top: 1px solid #eeeeee;
    line-height: 70px;
}

footer p {
    font-size: 1.1em;
    text-align: center;
}
/* End */