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

    Template Name: CV HTML5 Template,
    Template URI: http://quomodotheme.com
    Description: This is html5 template
    Author: BootExperts
    Author URI: http://quomodotheme.com
    Version: 1.0

-----------------------------------------------------------------------------------    
    CSS INDEX
    ===================
	0. Theme Default CSS (body, link color, section etc),
    1. Helper Class
    2. Header-Area
    3. About-Area
    4. Project-Area
    5. Prosess-Area
    6. Profile-Area
    7. Footer-Area
-----------------------------------------------------------------------------------*/


/*===================
Google-Fonts
===================*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:400,700');

/*===============================================
0. Theme Default CSS (body, link color, section etc),
================================================*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

html,
body {
    height: 100%
}

body {
    color: #363636;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
}

a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #D94343;
}

a:focus {
    outline: 0 solid
}


/*==========================
1. Helper Class
===========================*/

.section-padding {
    padding: 120px 0;
    display: block;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

.img-full img {
    width: 100%;
}

.black-bg {
    background-color: #484848;
    color: #ffffff;
}

.gray-bg {
    background-color: #F9F9F9;
}

.es-bg {
    background-color: #EBEBEB;
}

.battn {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 100px;
    color: #d94343;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 40px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-width: 250px;
    margin: 0 5px;
}

.battn:hover {
    background: #d94343 none repeat scroll 0 0;
    border: 1px solid #d94343;
    box-shadow: 0 10px 10px -10px #b7b7b7;
    color: #fff;
    -webkit-transform: translate(0px, -5px);
    transform: translate(0px, -5px);
}

.margin-bottom-none {
    margin-bottom: 0;
}


/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input:focus,
button:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 0 #ffffff;
}


/* Page-Title */

.page-title {
    margin-bottom: 60px;
    text-align: center;
}

.page-title h3 {
    color: #484848;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.page-title h1,
.page-title h2 {
    color: #d94343;
    font-size: 70px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}
.page-title h1::after,
.page-title h2::after {
    background-color: #484848;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 100px;
}

.black-bg .page-title h3 {
    color: #ffffff;
}

.black-bg .page-title h2::after {
    background-color: #ffffff;
}

.red-bg {
    background-color: #D94343;
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.red-bg .page-title h3,
.red-bg .page-title h2 {
    color: #ffffff;
}

.red-bg .page-title h2 {}

.red-bg .page-title h2::after {
    background-color: #ffffff;
}


/*==========================
 2. Header-Area
===========================*/

.header-area {
    height: 100%;
    position: relative;
    width: 100%;
}

.mainmenu-area {
    background: url("images/menu-bg.svg") no-repeat scroll right center / cover, rgba(0, 0, 0, 0) url("images/menu-shado.png") no-repeat scroll right center / auto 100%;
    display: table;
    height: 100%;
    left: -100%;
    position: fixed;
    top: 0;
    width: 250px;
    z-index: 9999;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.mainmenu-area.open-menu {
    left: 0;
}

.mainmenu {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 100%;
}

.mainmenu ul.nav.navbar-nav li {
    display: block;
    float: none;
    width: 100%;
}

.mainmenu ul.nav.navbar-nav li a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #d94343;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.mainmenu ul.nav.navbar-nav li.active a,
.mainmenu ul.nav.navbar-nav li a:hover {
    color: #ffffff;
}

.mainmenu-area .social-menu {
    bottom: 30px;
    left: 10px;
    position: absolute;
}

.social-menu a {
    border: 1px solid #d94343;
    border-radius: 50%;
    color: #d94343;
    display: inline-block;
    height: 30px;
    line-height: 2;
    text-align: center;
    width: 30px;
    margin: 0 2px;
}

.social-menu a:hover {
    background-color: #d94343;
    color: #ffffff;
}

.header-text-area {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    background-color: #D94343;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
}

.header-bg {
    background: rgba(0, 0, 0, 0) url("images/piotr-wojdylo-konferansjer.jpg") no-repeat scroll right 30% bottom / auto 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.header-text-area h1 {
    font-size: 90px;
    text-transform: uppercase;
}

.header-text {
    background: rgba(0, 0, 0, 0) url("images/header-text-bg.png") no-repeat scroll left center / auto 100%;
    padding: 80px 0 30px 150px;
}

.header-text .name {
    font-size: 90px;
    text-transform: uppercase;
    font-weight:900;
}

@media screen and (max-width:768px) {
    .header-text .name {
        font-size:60px;
    }
}

/*=======================
3. About-Area
========================*/

.about-area {
    background: rgba(0, 0, 0, 0) url("images/about-angle-bg.png") no-repeat fixed left -15% center/ 40% auto;
}

.about-photo {
    overflow: hidden;
    position: relative;
}

.about-photo .about-desc {
    left: 0;
    bottom: 0;
    margin: auto;
    padding: 40px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 80%;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.about-address {
    display: none;
    margin-top: 40px;
}

.about-photo .about-desc::before {
    background-color: #ffffff;
    border-radius: 2px 2px 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.about-desc h2 {
    margin-bottom: 5px;
    text-transform: uppercase;
}

.about-photo:hover .about-desc h2 {
    color: #d94344;
}

.about-desc .title {
    font-weight: 700;
    text-transform: uppercase;
}

.about-photo:hover .about-desc .title {
    color: #d94344;
}

.about-text h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    line-height: 1.4;
    margin: 40px 0;
}

.about-text p {
    margin-bottom: 25px;
}

.about-text {
    font-size: 14px;
}

.about-text a.check {
    color: #d94344;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}

.about-text a:hover {
    text-decoration: underline;
}

.project-area,
.process-area,
.profile-area,
.client-area {
    background-image: url("images/project-circle-bg.png");
    background-position: right -20% bottom 50%;
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-attachment: fixed;
}

.process-area,
.profile-area {
    background-image: url("images/process-angle-bg.png");
    background-position: right -15% bottom 30%;
    background-size: 40% auto;
}


/*======================
4. Project-Area
=======================*/

.single-project {
    position: relative;
    margin-bottom: 80px;
}

.project-details {
    background-color: #fff;
    bottom: 0;
    color: #363636;
    height: 80%;
    left: 78%;
    margin: auto;
    padding: 40px;
    position: absolute;
    top: 0;
    width: 98%;
    line-height: 1.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.project:nth-child(2n+1) .col-md-7 {
    float: right;
}

.project:nth-child(2n+1) .project-details {
    left: auto;
    right: 78%;
    text-align: right;
}

.single-project:hover .project-details {
    box-shadow: 0 0 20px 0 #333;
    -webkit-transform: translate(6px, 0);
    transform: translate(6px, 0)
}

.project:nth-child(2n+1) .single-project:hover .project-details {
    -webkit-transform: translate(-6px, 0);
    transform: translate(-6px, 0)
}

.project-details h3 {
    color: #363636;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-details a {
    color: #d94343;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    text-transform: uppercase;
    position: relative;
}

.project-details a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background-color: #d94343;
}

.project-details.project-details-left a:after {
    left: auto;
    right: 0;
}

.project-details a:hover {
    text-decoration: line-through;
}


/*======================
5. Prosess-Area
=======================*/

.prosess-icon {
    border: 1px solid #d94343;
    border-radius: 50%;
    color: #d94343;
    height: 40px;
    line-height: 2.8;
    margin: auto auto 20px;
    width: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-process h3 {
    text-transform: uppercase;
}

.prosess-item {
    padding: 230px 0;
    position: relative;
}

.single-process {
    height: 230px;
    line-height: 1.8;
    padding: 20px;
    position: absolute;
    width: 100%;
}

.single-process a {
    color: #363636;
}

.single-process.active h3 {
    color: #d94343;
}

.single-process.active .prosess-icon {
    background-color: #d94343;
    color: #ffffff;
}

.single-process.top {
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
}

.single-process.left,
.single-process.right {
    bottom: 0;
    left: auto;
    margin: auto;
    right: 100%;
    top: 0;
    width: 100%;
}

.single-process.right {
    left: auto;
    right: -100%;
}

.single-process.down {
    bottom: 0;
}

.process-center-image img {
    border: 3px solid #d94343;
    border-radius: 50%;
}


/*===================
6. Profile-Area
====================*/

.profile-area {
    overflow: hidden;
}

.profile-text {
    font-size: 14px;
    line-height: 1.9;
    text-align: right;
}

.profile-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.single-profile {
    margin-bottom: 30px;
    padding-left: 100px;
    position: relative;
}

.single-profile.margin-none {
    margin-bottom: 0;
}

.profile-icon {
    font-size: 32px;
    left: 20px;
    position: absolute;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-profile h3 {
    font-size: 14px;
    text-transform: uppercase;
}

.profile-area ul.nav-pills li.active a .single-profile {
    color: #363636;
}

.profile-area ul.nav-pills li.active a .single-profile .profile-icon,
.profile-area ul.nav-pills li.active a .single-profile h3 {
    color: #d94343;
}

.profile-area .nav-pills {
    list-style: outside none none;
}

.profile-area ul.nav-pills a {
    color: #363636;
}


/*======================
7. Footer-Area
========================*/

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 15px;
    padding: 15px 10px;
    width: 100%;
}

.contact-form textarea {
    height: 189px;
}

.contact-info h3 {
    color: #d94343;
    font-size: 28px;
    font-weight: 400;
}

.contact-info h4 {
    font-size: 30px;
}

.copyright-area {
    border-top: 1px solid #363636;
    color: #b7b7b7;
    padding: 25px 0;
}

.copyright-area a {
    color: #d94343;
}

.single-award {
    background-color: #ebebeb;
    padding: 40px 20px;
}

.award > div {
    padding: 0;
}

.single-award.red-bg {
    background-color: #d94343;
}

.single-award h3 {
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

.single-award.red-bg h3::after {
    background-color: #ffffff;
}

.single-award h3::after {
    background-color: #363636;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 100px;
}

.battn.red-battn {
    background-color: #d94343;
    color: #ffffff;
    border: 1px solid #D94343;
}

.battn.red-battn:hover {
    background-color: #ffffff;
    border-color: #D94343;
    color: #d94343;
}

.exp-battn {
    padding: 0;
}

.exp-battn a {
    border: 1px solid;
    color: #d94343;
    display: block;
    float: left;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.exp-battn .active a {
    background-color: #d94343;
    color: #ffffff;
    border: 1px solid #d94343;
}

.exp-battn li {
    display: inline-block;
    float: left;
    list-style: outside none none;
    margin: 0 5px;
    width: 48%;
}

.experience {
    margin-top: 50px;
}

.single-exp {
    background: #ffffff none repeat scroll 0 0;
    padding-bottom: 20px;
    padding-left: 164px;
    position: relative;
}

.single-exp:last-child {
    padding-bottom: 0;
}

.single-exp::before {
    background-color: #d94343;
    content: "";
    height: 100%;
    left: 20px;
    position: absolute;
    top: 0;
    width: 1px;
}

.single-exp:last-child::before {
    display: none;
}

.single-exp .exp-no {
    border: 1px solid #d94343;
    color: #d94343;
    height: 40px;
    left: 0;
    line-height: 2.6;
    position: absolute;
    text-align: center;
    top: 0;
    width: 40px;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-exp:hover .exp-no {
    background-color: #d94343;
    color: #ffffff;
}

.single-exp .exp-year {
    left: 60px;
    position: absolute;
    top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.exp-details h3 {
    color: #d94343;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.exp-details p {
    margin: 0;
}

.home-blog-area .blog {
    margin-bottom: 40px;
}

.home-blog-image {
    position: relative;
    margin-bottom: 20px;
}

.home-single-blog .home-blog-image::after {
    background-color: #d94343;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-single-blog:hover .home-blog-image::after {
    opacity: 0.5;
}

.home-single-blog h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

.home-single-blog h3:hover {
    color: #d94343;
}

.date {
    color: #d94343;
    font-weight: 700;
}

.home-single-blog a.read-more {
    color: #d94343;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-single-blog a.read-more:hover {
    color: #ffffff;
}

.blog-middle .home-blog-image {
    margin-bottom: 0;
    margin-top: 15px;
}

.sponser {
    padding: 60px 0;
}

.client-area {
    background-position: left -10% center;
}

.client-area .client-photo img {
    border-radius: 50%;
    margin: auto;
    width: 150px;
}

.single-client {
    text-align: center;
}

.client-content {
    margin: auto;
    width: 80%;
}

.client-content h3 {
    color: #d94343;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 20px;
    text-transform: uppercase;
}

.client-content span {
    display: block;
    margin-bottom: 15px;
}

.client-area .owl-dots {
    position: absolute;
    right: 0;
    top: 20%;
}

.client-area .owl-dot {
    background-color: #ffffff;
    border-radius: 50%;
    display: block;
    height: 15px;
    margin-bottom: 20px;
    width: 15px;
}

.client-area .owl-dots::before {
    background-color: #ffffff;
    content: "";
    height: 100%;
    margin-right: -0.5px;
    position: absolute;
    right: 50%;
    top: 0;
    width: 1px;
    z-index: -1;
}

.client-area .owl-dot:last-child {
    margin-bottom: 0;
}

.client-area .owl-dot.active {
    background-color: #d94343;
}


/*=========================
Cross icon
==========================*/

.menu-icon {
    background-color: #d94343;
    top: 20px;
    left: 20px;
    padding: 10px;
    position: fixed;
    z-index: 99999;
    -webkit-transition: 0.8s;
    transition: 0.8s;
}

.icon-fade-bg.menu-icon {
    background: none;
}

#nav-icon1 {
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
}

#nav-icon1 span:nth-child(2) {
    top: 18px;
}

#nav-icon1 span:nth-child(3) {
    top: 36px;
}

#nav-icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#scrollUp {
    background-color: #484848;
    border-radius: 2px;
    bottom: 20px;
    color: #fff;
    font-size: 18px;
    height: 40px;
    line-height: 2;
    right: 20px;
    text-align: center;
    width: 40px;
}

#scrollUp:hover {
    background-color: #d94343;
}


/*====================
Single-Blog
====================*/

.blog-image img {
    width: 100%;
}

.blog-area {
    left: 0;
    margin: auto;
    padding: 80px;
    position: absolute;
    right: 0;
    top: 60%;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.9);
}

.blog-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -9;
    position: relative;
}

.blog-image::after {
    background-color: #d94343;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
}

.blog-title h4 {
    color: #d94343;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.blog-title h2 {
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #d94343;
}

.blog-content {
    margin-bottom: 60px;
}

.content p {
    margin-bottom: 40px;
}

.content blockquote {
    border: 1px solid #b7b7b7;
    border-left: 5px solid #b7b7b7;
    font-size: 14px;
    margin-bottom: 40px;
    padding: 30px 50px;
}

.comment-heading h2 {
    color: #d94343;
    display: inline-block;
    font-size: 26px;
    text-transform: uppercase;
}

.comment-heading {
    border-bottom: 1px solid #d94343;
    margin-bottom: 20px;
}

.single-comment {
    margin-top: 40px;
    padding-left: 100px;
    position: relative;
}

.single-comment .blog-thumb-photo {
    left: 0;
    position: absolute;
    top: 0;
}

.blog-comment-title h3 {
    color: #d94343;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.blog-comment-title {
    margin-bottom: 15px;
}

.blog-thumb-photo img {
    border-radius: 50%;
    height: 60px;
    width: 60px;
}

.comment-area {
    margin-bottom: 40px;
}

.comment-form input,
.comment-form textarea {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #d94343;
    margin-bottom: 15px;
    color: #d94343;
    padding: 10px;
    width: 100%;
}

.comment-form textarea {
    height: 200px;
}

.comment-form button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #d94343;
    border-radius: 2px;
    color: #d94343;
    margin: 20px 0;
    padding: 10px 50px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.comment-form button:hover,
.comment-area .reply:hover {
    background-color: #d94343;
    color: #ffffff;
}

.comment-form-area .comment-heading {
    margin-bottom: 40px;
}

.page-location {
    color: #ffffff;
    font-weight: 700;
    position: absolute;
    right: 10%;
    top: 10%;
}

.page-location a {
    color: #fff;
    margin-right: 10px;
}

.page-location a::after {
    content: "/";
    margin-left: 10px;
}

.share-menu a {
    color: #d94343;
    display: inline-block;
    height: 30px;
    line-height: 2;
    width: 30px;
    text-align: center;
}

.share-menu a:hover {
    color: #363636
}

.about-text .share-menu {
    margin-top: 25px;
}

.comment-area .reply {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #d94343;
    border-radius: 2px;
    color: #d94343;
    padding: 2px 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.doswiadczenie__btn {
    display: block;
    float: left;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    color: #d94343;
    border: 1px solid;
    margin-bottom: 10px;
}

.doswiadczenie__btn.active {
    background-color: #d94343;
    border-color: #d94343;
    color: #fff;
}

/* przyciski */
#profilki_socialbuttons_117635880 a{margin: 0 6px; display: block; z-index: 99999; top: 300px; right: 1px;  position: fixed;} 
#profilki_socialbuttons_117635881 a{margin: 0 6px; display: block; z-index: 99999; top: 300px; right: 1px;  position: fixed;}
#profilki_socialbuttons_117635882 a{margin: 0 6px; display: block; z-index: 99999; top: 360px; right: 1px;  position: fixed;}
#profilki_socialbuttons_117635880 svg *{pointer-events: all;} 
#profilki_socialbuttons_117635880 svg {display: block; margin: 6px; margin-left: auto; margin-right: auto; pointer-events: all;height: 52px; width: 52px}
#profilki_socialbuttons_117635880 svg:hover #front_svg_circle{fill: rgba(255,255,255,0.2) !important;}
#profilki_socialbuttons_117635881 svg *{pointer-events: all;} 
#profilki_socialbuttons_117635881 svg {display: block; margin: 6px; margin-left: auto; margin-right: auto; pointer-events: all;height: 52px; width: 52px}
#profilki_socialbuttons_117635881 svg:hover #front_svg_circle{fill: rgba(255,255,255,0.2) !important;}
#profilki_socialbuttons_117635882 svg *{pointer-events: all;} 
#profilki_socialbuttons_117635882 svg {display: block; margin: 6px; margin-left: auto; margin-right: auto; pointer-events: all;height: 52px; width: 52px}
#profilki_socialbuttons_117635882 svg:hover #front_svg_circle{fill: rgba(255,255,255,0.2) !important;}
/* konice przyciski */


@media (min-width:1600px) {
    .menu-icon {
        display:none;
    }
    .mainmenu-area {
        left: 0;
    }
}