/* table of contents */

/*
+ General Styling and Tags
*body
+ @font-face

+ #navbar
  - .navbar

+ #home
  - .page_content_main_slider

+ #about
   - .skills_section

+ #Work
   - .portfolio_section

+ #Pricing
    - .pricing_section

+ #Reviews
    - .customer_review_section

+ #Blog
    - .blog_section

+ #contact-us
  - .contact-form

+ .footer
    - .footer-section

*/

/* Global Styling */

/* font-family: 'Raleway', sans-serif; */
@import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900');

/* font-family: 'Open Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');

/* Styl dla kontenera tekstu */
/* .asw-menu-btn::after { */


/* --- Sekcja Cookie Consent --- */
:root {
    --cookie-bg-color: #ffffff;
    /* Kolor tła */
    --cookie-bg-image: url('');
    /* TUTAJ: url('obrazek.jpg') */
    --cookie-text-color: #333333;
    /* Kolor tekstu */
    --cookie-accent-color: #27ae60;
    /* Główny kolor (np. przycisk) */
    --cookie-font-family: 'Arial', sans-serif;
    --cookie-font-size: 14px;
}

#cookie-popup {
    position: fixed;
    top: 20px;
    /* Pozycja od góry */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    z-index: 999999;
    display: none;
    /* Zarządzane przez JS */

    background-color: var(--cookie-bg-color);
    background-image: var(--cookie-bg-image);
    background-size: cover;
    background-position: center;
    color: var(--cookie-text-color);
    font-family: var(--cookie-font-family);
    font-size: var(--cookie-font-size);

    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-content h4 {
    margin-top: 0;
    font-size: 1.2rem;
}

.cookie-content p {
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-options {
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.03);
    padding: 10px;
    border-radius: 5px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* Stylowanie przełącznika (Switch) */
.c-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.c-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.c-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.c-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.c-slider {
    background-color: var(--cookie-accent-color);
}

input:checked+.c-slider:before {
    transform: translateX(14px);
}

input:disabled+.c-slider {
    opacity: 0.4;
    cursor: not-allowed;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-cookie {
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie-save {
    background: #eee;
    color: #333;
}

.btn-cookie-all {
    background: var(--cookie-accent-color);
    color: white;
}

.btn-cookie:hover {
    filter: brightness(90%);
}

.cookie-link {
    color: var(--cookie-accent-color);
    text-decoration: underline;
}





/*loader start */

.loader {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    z-index: 1200;
    background: #ffffff;
}

.loader-inner {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 50%;
}

.spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;

    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #232323;
    border-radius: 100%;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/*loader start */

a {
    outline: none;
    text-decoration: none;
}

.btn {
    display: inline-block;
    border: 2px solid transparent;
    letter-spacing: .5px;
    line-height: inherit;
    border-radius: 0;
    width: auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out !important;
    -o-transition: all .3s ease-in-out !important;
    transition: all .3s ease-in-out !important;
}


.fa,
.far,
.fas {
    display: inline;
    ;
}

/* a:active, a:hover{color: #006666 !important;} */

/* button size */
.btn.btn-very-small {
    font-size: 9px;
    padding: 1px 17px;
    line-height: 22px;
}

.btn.btn-small {
    font-size: 11px;
    padding: 4px 24px;
}

.btn.btn-medium {
    font-size: 12px;
    padding: 6px 25px 5px;
}

.btn.btn-large {
    font-size: 13px;
    padding: 9px 34px !important;
    line-height: 25px
}

.btn.btn-extra-large {
    font-size: 15px;
    padding: 12px 40px 13px;
    line-height: 25px
}

.btn-dual .btn {
    margin: 0 10px;
}

.btn i {
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px
}

/* button background */
.btn.btn-white {
    background: #ffffff;
    border-color: #ffffff;
    color: #232323;
    font-size: 15px;
}

.btn.btn-white:hover,
.btn.btn-white:focus {
    background: transparent;
    color: #fff;
    font-size: 15px;
}

.btn.btn-orange {
    background: #e25111;
    border-color: #e25111;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-orange:hover,
.btn.btn-orange:focus {
    background: #FFFFFF;
    color: #e25111 !important;
    font-size: 15px;
}

.btn.btn-black {
    background: #000000;
    border-color: #000000;
    color: #fff;
    font-size: 15px;
}

.btn.btn-black:hover,
.btn.btn-black:focus {
    background: transparent;
    color: #000;
    font-size: 15px;
}

.btn.btn-pak {
    background-color: #439f76;
    border-color: #FFFFFF;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-pak:hover,
.btn.btn-pak:focus {
    background-color: #FFFFFF;
    border-color: #439f76;
    color: #439f76;
    font-size: 15px;
}

.btn.btn-sky {
    background-color: #384141;
    border-color: #FFFFFF;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-sky:hover,
.btn.btn-sky:focus {
    background-color: #FFFFFF;
    border-color: #384141;
    color: #384141;
    font-size: 15px;
}

.btn.btn-pink {
    background-color: #e23939;
    border-color: #FFFFFF;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-pink:hover,
.btn.btn-pink:focus {
    background-color: #FFFFFF;
    border-color: #e23939;
    color: #e23939;
    font-size: 15px;
}

.btn.btn-green {
    background-color: #53be53;
    border-color: #53be53;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-green:hover,
.btn.btn-green:focus {
    background: transparent;
    color: #53be53;
    font-size: 15px;
}

.btn.btn-blackish {
    background: #18191d;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-blackish:hover,
.btn.btn-black:focus {
    background: #FFFFFF;
    color: #18191d;
    font-size: 15px;
}

.btn.btn-white-blue {
    background: #ffffff;
    color: #484b59;
    font-size: 15px;
}

.btn.btn-white-blue:hover,
.btn.btn-black:focus {
    background: #F37C14;
    color: #ffffff !important;
    font-size: 15px;
}

.btn.btn-green-blue {
    background: #53be53;
    border-color: #53be53;
    color: #fff;
    font-size: 15px;
}

.btn.btn-green-blue:hover,
.btn.btn-green-blue:focus {
    background-color: #24c4f4;
    border-color: #24c4f4;
    color: #FFFFFF;
    font-size: 15px;
}

/* button transparent */
.btn.btn-transparent-white {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff
}

.btn.btn-transparent-white:hover,
.btn.btn-transparent-white:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000
}

.btn.btn-white-green {
    background: #FFFFFF;
    border-color: #ffffff;
    color: #384141
}

.btn.btn-transparent-white:hover,
.btn.btn-transparent-white:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: #232323
}

.btn.btn-transparent-green {
    background-color: transparent;
    border-color: #53be53;
    color: #53be53;
    font-size: 15px;
}

.btn.btn-transparent-green:hover,
.btn.btn-transparent-green:focus {
    background: #53be53;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-transparent-black {
    background: transparent;
    border-color: #000000;
    color: #000000
}

.btn.btn-transparent-black:hover,
.btn.btn-transparent-black:focus {
    background: #000000;
    border-color: #000000;
    color: #ffffff
}

/*-- gradient btn --*/
.btn.btn-white-blue {
    background: #ffffff;
    color: #232323;
    font-size: 15px;
}

.btn.btn-white-blue:hover,
.btn.btn-white-blue:focus {
    background: #F37C14;
    color: #fff;
    font-size: 15px;
}

.btn.btn-white-only {
    background: #ffffff;
    border-color: #ffffff;
    color: #232323;
    font-size: 15px;
}

.btn.btn-white-only:hover,
.btn.btn-white-only:focus {
    background: #232323;
    color: #fff;
    font-size: 15px;
}

.btn.btn-black {
    background: #18191d;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-black:hover,
.btn.btn-black:focus {
    background: #FFFFFF;
    color: #18191d;
    font-size: 15px;
}

.btn.btn-school {
    background: #0375b4;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-school:hover,
.btn.btn-school:focus {
    background: #FFFFFF;
    border-color: #0375b4;
    color: #0375b4;
    font-size: 15px;
}

.btn.btn-green {
    background-color: #53be53;
    border-color: #53be53;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-green:hover,
.btn.btn-green:focus {
    background: transparent;
    color: #53be53;
    font-size: 15px;
}

.btn.btn-red {
    background: #cc2028;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-red:hover,
.btn.btn-black:focus {
    background: #FFFFFF;
    color: #cc2028;
    font-size: 15px;
}

.btn.btn-x-green {
    background: #14a76c;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-x-green:hover,
.btn.btn-black:focus {
    background: #FFFFFF;
    color: #14a76c;
    font-size: 15px;
}

.btn.btn-yellow {
    background: #f2c900;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-yellow:hover,
.btn.btn-yellow:focus {
    border-color: #f2c900;
    background: #FFFFFF;
    color: #f2c900 !important;
    font-size: 15px;
}

.btn.btn-blue {
    background: #00bcd4;
    border-color: #FFFFFF;
    color: #fff;
    font-size: 15px;
}

.btn.btn-blue:hover,
.btn.btn-blue:focus {
    background: #FFFFFF;
    color: #00bcd4 !important;
    border-color: #00bcd4;
    font-size: 15px;
}

.btn.btn-blue-black {
    background: #006666;
    color: #fff;
    font-size: 15px;
}

.btn.btn-blue-black:hover,
.btn.btn-blue-black:focus {
    background: #000000;
    color: #FFFFFF !important;
    font-size: 15px;
}

.btn.btn-green-blue {
    background: #53be53;
    border-color: #53be53;
    color: #fff;
    font-size: 15px;
}

.btn.btn-green-blue:hover,
.btn.btn-green-blue:focus {
    background-color: #24c4f4;
    border-color: #24c4f4;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-black-yellow {
    background: #212331;
    border-color: #212331;
    color: #fff;
    font-size: 15px;
}

.btn.btn-black-yellow:hover,
.btn.btn-black-yellow:focus {
    background-color: #f2c900;
    border-color: #f2c900;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-school-yellow {
    background: #0375b4;
    border-color: #0375b4;
    color: #fff;
    font-size: 15px;
}

.btn.btn-school-yellow:hover,
.btn.btn-school-yellow:focus {
    background-color: #f2c900;
    border-color: #f2c900;
    color: #FFFFFF;
    font-size: 15px;
}

.btn.btn-blue-pink {
    background: #384141;
    border-color: #384141;
    color: #fff;
    font-size: 15px;
}

.btn.btn-blue-pink:hover,
.btn.btn-blue-pink:focus {
    background-color: #e23939;
    border-color: #e23939;
    color: #FFFFFF;
    font-size: 15px;
}

/* button rounded */
.btn.btn-rounded {
    border-radius: 50px
}

.btn.btn-rounded.btn-very-small {
    padding: 2px 23px 1px;
}

.btn.btn-rounded.btn-small {
    padding: 5px 29px;
}

.btn.btn-rounded.btn-medium {
    padding: 6px 32px;
}

.btn.btn-rounded.btn-large {
    padding: 9px 38px;
}

.btn.btn-rounded.btn-extra-large {
    padding: 12px 45px 13px;
}




.pink_color,
.navbar .navbar-nav li a:hover,
.navbar .side-menu-button.actives .fa,
.pushmenu .push_nav>li>a>span,
.upper_inner_information_icons_inner li a:hover,
.team_detail:hover h3,
.expertise_block:hover .h3_pink,
.blog_slide:hover a>h3,
.contact_form_extra_inner:hover .form_icon,
.contact_form_inner a:hover .form_text,
#area-main ul.blog-author li a:hover,
.blog_meox .morepost-wrap2 a:hover,
.blog_meox .morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left,
.blog_meox .morepost-wrap2 .morepost:hover .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right,
.blog_meox ul.category li a .date,
.blog_meox ul.category li a:hover,
.blog_meox .blog-item blockquote,
.countdown .page_content_body form a:hover i,
.picker-off,
.stats_section_inner:hover .stats_section_icon,
.white-portfolio-link:hover,
.timeline>li:hover .timeline-badge>a,
.timeline>li>.timeline-panel:hover .timeline-badge>a,
.medical_main_slider .swiper-arrows {
    color: #f37c14 !important;
}



body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    overflow-x: hidden;
}

.raleway {
    font-family: 'Raleway', sans-serif;
}

.open_sans {
    font-family: 'Open Sans', sans-serif;
}

.bg_white {
    background: #FFFFFF;
}

.bg_grey {
    background: #f7f7f7;
}

.bg_brown {
    background: #7B5757;
}

.big_padding {
    padding: 120px 0;
}

.big_padding_v2 {
    padding-top: 120px;
    padding-bottom: 40px;
}

.big_padding_v3 {
    padding-top: 50px;
    padding-bottom: 40px;
}

.small_padding {
    padding: 60px 0;
}

.font_200 {
    font-weight: 200 !important;
}

.font_300 {
    font-weight: 300 !important;
}

.font_400 {
    font-weight: 400 !important;
}

.font_600 {
    font-weight: 600 !important;
}

.all_big_padding {
    padding: 60px;
}

.all_small_padding {
    padding: 30px;
}

.left_align {
    margin-left: 0 !important;
}

.margin_default_bottom {
    margin-bottom: 25px !important;
}

.margin_default_bottom_big {
    margin-bottom: 60px !important;
}

.default_section_heading {
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #232323;
}

.mid_default_margin {
    margin-top: 90px;
}

.small_heading_navy {
    color: #232323;
    font-weight: 600;
    font-size: 22px;
    margin: 0;
    margin-bottom: 15px;
}

.small_heading_light_olive {
    color: #74835b;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    margin-bottom: 15px;
}

.small_heading_light_olive_18px {
    color: #74835b;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    margin-bottom: 15px;
}

.small_heading_light_v2 {
    color: #e7cf97;
    ;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    margin-bottom: 15px;
}


.margin_sides_10 {
    margin-left: 10px;
    margin-right: 10px;
}

.default_text {
    color: #676767;
    font-size: 14px;
    margin: 0;
    word-spacing: 2px;
    line-height: 28px;
}

.default_text2 {
    color: #676767;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    word-spacing: 2px;
    line-height: 28px;
    font-family: 'Open Sans', sans-serif;
}

.default_text3 {
    color: #f0f0f0;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    word-spacing: 2px;
    line-height: 28px;
    font-family: 'Open Sans', sans-serif;
}

.default_text4 {
    color: #ebeaea;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    word-spacing: 2px;
    line-height: 28px;
    font-family: 'Open Sans', sans-serif;
}

.default_text5 {
    color: #676767;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
    word-spacing: 2px;
    line-height: 28px;
    font-family: 'Open Sans', sans-serif;
}

.text_align_justify {
    text-align: justify;
}

.text_align_center {
    text-align: center;
}

.default_small_heading {
    color: #989898;
    font-size: 18px;
    margin: 0;
    word-spacing: 2px;
    line-height: 32px;
}

.default_text_light {
    color: #676767;
}

.default_divider {
    width: 70px;
    margin: 20px auto;
}

.default_divider_v2 {
    width: 50px;
    margin-bottom: 5px;
}

.default_divider_white {
    border-top-color: #FFFFFF;
}

.default_divider_big {
    margin-bottom: 90px;
}

.padding_0 {
    padding: 0 !important;
}

.padding_top_37 {
    padding-top: 37px;
}

.margin_0 {
    margin: 0 !important;
}

.none {
    display: none;
}

.default_divider_left {
    margin-left: 0;
}

.default_divider_blue {
    border-top-color: #6d6d6d !important;
}

.blue_color {
    color: #6d6d6d;
}

.navy_blue {
    color: #232323;
}

.light_blue {
    color: #3984fc;
}

.white_color {
    color: #FFFFFF;
}

.navy_blue_important {
    color: #232323 !important;
}

.bg_blue {
    background: #6d6d6d;
}

.bg_navy {
    background: #232323;
}


.bg_before_blue:hover {
    background: #6d6d6d !important;
}

.bg_before_navy:hover {
    background: #F37C14 !important;
}

.bg_before_white:hover {
    background: #ffffff !important;
    color: #232323 !important;
}

.bg_before_navy_white:hover {
    background: #232323 !important;
    color: #ffffff !important;
}

.bg_before_white {
    transition: 300ms !important;
}


.button:hover {
    color: #ffffff;
}

.button:focus {
    color: #ffffff;
}

.anchor_style_default {
    text-decoration: none;
}

.anchor_style_default:hover {
    text-decoration: none;
}

.anchor_style_default:focus {
    text-decoration: none;
}

.button_default_style {
    padding: 15px 55px;
    color: #fff;
    text-decoration: none !important;
}


.bordered_button {
    padding: 13px 53px !important;
    border: 2px solid #ffffff;
    background: transparent;
}

.button {
    display: inline-block;
    transition: 300ms !important;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;

}

.extra_big_padding {
    padding: 300px 0;
}

.pos_relative {
    position: relative;
}

/* Local Styling Of Each Section */

/*-------------------------------*/
/*Navigation Starts */
/*-------------------------------*/

.navbar {
    padding-bottom: 0;
    padding-top: 0px;
    z-index: 9;
    background: #FFFFFF;

}

.center-brand {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.center-brand,
.transparent-bg {
    left: 0;
    height: 60px;
}

.center-brand,
.transparent-bg,
.fixed-bottom,
.bg-transparent-light,
.bg-transparent-white,
.bg-invisible,
.boxed-nav {
    position: absolute;
    width: 100%;
}

.bg-invisible .container {
    opacity: 0;
    visibility: hidden;
}

.fixed-bottom {
    bottom: 0;
}

.bg-white {
    position: relative;
}

.bg-white,
.boxed-nav .container {
    background: #fff;
}

.boxed-nav {
    top: 20px;

}

.fixedmenu {
    top: 50px;
    left: 0;
    right: 0;
    position: fixed;
    margin: 0;
    padding-bottom: 0;
    padding-top: 0;
    z-index: 1002;
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    background: -o-linear-gradient(left, #423f9c 31%, #862359 69%);
    background: -webkit-gradient(linear, left top, right top, color-stop(31%, #423f9c), color-stop(69%, #862359));
    background: linear-gradient(90deg, #423f9c 31%, #862359 69%);
}

.center-brand.fixedmenu,
.bg-white.fixedmenu,
.bg-transparent-light.fixedmenu,
.bg-transparent-white.fixedmenu,
.bg-invisible.fixedmenu,
.boxed-nav.fixedmenu {
    background: #FFFFFF;
}

.fixed-bottom.fixedmenu {
    bottom: auto;
    -webkit-animation: none;
    animation: none;
}

.bg-invisible.fixedmenu .container {
    opacity: 1;
    visibility: visible;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.nav-whitebg {
    background: #fff;
    -webkit-transition: all .9s ease;
    -o-transition: all .9s ease;
    transition: all .9s ease;
}

.navbar.sidebar-nav {
    background: #fff;
    border: none;
    display: inline-table;
    width: 290px;
    border-radius: 0;
    position: fixed;
    top: 0;
    z-index: 110;
    height: 100%;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, .07);
    left: 0;
    overflow-x: hidden;
}

.navbar-brand {
    margin: 16px 0;
    padding: 0;
    width: 140px;
    position: relative;
}

.center-brand .navbar-brand {
    position: absolute;
    left: 0px;
    right: 0px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
}

.navbar-brand>img {
    width: 100%;
}

.navbar.fixedmenu .logo-default,
.navbar .logo-scrolled {
    display: none;
}

.navbar.fixedmenu .logo-scrolled,
.navbar .logo-default {
    display: inline-block;
}

.navbar.sidebar-nav .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.navbar-nav .nav-item {
    margin: 16px 5px;
    position: relative;
}

.navbar.sidebar-nav .navbar-nav .nav-item {
    margin: 10px 0;
}

.navbar-nav .nav-item:first-child {
    margin-left: 0;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar-nav .nav-link {
    margin: 8px 1.25rem !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 2px;
    color: #212331;
    position: relative;

    overflow: hidden;
}

.sidebar-nav .navbar-nav .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.square-layout .navbar-nav .nav-link {
    border-radius: 0;
    border: 1px solid transparent;
}

.center-brand .navbar-nav .nav-link,
.transparent-bg .navbar-nav .nav-link,
.fixed-bottom .navbar-nav .nav-link {
    color: #484b59;
}

.center-brand.fixedmenu .navbar-nav .nav-link {
    color: #484b59;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.sidebar-nav .navbar-nav .nav-link.active {
    color: #B3A959;
}

.fixedmenu .navbar-nav .nav-link.active,
.fixedmenu .navbar-nav .nav-link.active:hover,
.fixedmenu .navbar-nav .nav-link.active:focus,
.center-brand.fixedmenu .navbar-nav .nav-link.active {
    color: #006666;
}

.square-layout .navbar-nav .nav-link.active,
.square-layout .navbar-nav .nav-link:hover,
.square-layout .navbar-nav .nav-link:focus {
    border: 1px solid #c1c1c1;
    background: transparent !important;
}

.square-layout .fixedmenu .navbar-nav .nav-link.active,
.square-layout .fixedmenu .navbar-nav .nav-link:hover,
.square-layout .fixedmenu .navbar-nav .nav-link:focus {
    border: 1px solid #c1c1c1;
    background: transparent !important;
    color: #212331 !important;
}

.center-brand .navbar-nav .nav-link:first-of-type {
    background: rgba(0, 0, 0, 0);
}

.center-brand .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    background: #fff;
    display: inline-block;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

/* Nav Bottom Line Hover Effect */
.nav-bottom-line .navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 5px;
    background: #006666;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    border-radius: 50px;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.nav-bottom-line .navbar-nav .nav-link.active::after {
    width: 100%;
}



/*toggle responsive*/
.navbar-toggler {
    position: relative;
    border: none;
    border-radius: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}

.navbar-toggler span {
    display: block;
    background: #fff;
    height: 2px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    left: 0;
    opacity: 1;
}

.bg-white .navbar-toggler span,
.bg-transparent-light .navbar-toggler span,
.bg-invisible .navbar-toggler span,
.navbar.sidebar-nav .navbar-toggler span,
.boxed-nav .navbar-toggler span {
    background: #212331;
}

.center-brand.fixedmenu .navbar-toggler span {
    background: -o-linear-gradient(left, #643094, #58b433);
    background: -webkit-gradient(linear, left top, right top, from(#643094), to(#58b433));
    background: linear-gradient(90deg, #643094, #58b433);
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
    -webkit-transition: transform .35s ease-in-out;
    -o-transition: transform .35s ease-in-out;
    -webkit-transition: -webkit-transform .35s ease-in-out;
    transition: -webkit-transform .35s ease-in-out;
    -o-transition: -o-transform .35s ease-in-out;
    transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 12px;
    top: 10px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 3px;
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 12px;
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}

/*-----Side Menu----*/
.side-menu {
    width: 40%;
    position: fixed;
    right: -1px;
    top: 0;
    background: #006666;
    z-index: 1032;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    overflow: hidden;
}

.side-menu.left {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
    width: 280px;
}

.just-sidemenu .side-menu {
    background: -o-linear-gradient(left, #423f9c, #862359);
    background: -webkit-gradient(linear, left top, right top, from(#423f9c), to(#862359));
    background: linear-gradient(90deg, #423f9c, #862359);
}

.transparent-sidemenu .side-menu {
    background: rgba(0, 0, 0, .95);
}

.side-menu.side-menu-active,
.side-menu.before-side {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
    visibility: visible;
    opacity: 1;
}

.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    display: none;
    z-index: 1031;
    opacity: 0.4;
}

/*side clode btn*/
.side-menu .btn-close {
    height: 33px;
    width: 33px;
    -webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 30px;
    right: 15px;
    cursor: pointer;
}

.side-menu.before-side .btn-close {
    display: none;
}

.just-sidemenu #sidemenu_toggle {
    position: fixed;
    z-index: 999;
    /*background: #fff;*/
    right: 0;
    top: 16px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #fff;
    top: 5px;
}

.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*side open btn*/
.sidemenu_btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 36px;
    padding: 6px;
    margin-right: 1rem;
    position: absolute;
    right: 15px;
}

.sidemenu_btn.left {
    left: 15px;
    right: auto;
}

.sidemenu_btn>span {
    height: 2px;
    width: 100%;
    background: #212331;
    display: block;
}

.center-brand .sidemenu_btn>span,
.transparent-bg .sidemenu_btn>span,
.fixed-bottom .sidemenu_btn>span,
.just-sidemenu .toggle_white.sidemenu_btn>span,
.bg-invisible .sidemenu_btn>span,
.boxed-nav .sidemenu_btn>span {
    background: #484b59;
}

.center-brand.fixedmenu .sidemenu_btn>span,
.bg-invisible.fixedmenu .sidemenu_btn>span,
.boxed-nav.fixedmenu .sidemenu_btn>span {
    background: #484b59;
}

.sidemenu_btn>span:nth-child(2) {
    margin: 4px 0;
}

.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
    padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 10px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;

    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #fff;
    padding: 2px 0 3px 0 !important;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: normal;
    position: relative;
    border-radius: 0;
}

.side-nav .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    background: #660000;
    display: inline-block;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.transparent-sidemenu .side-nav .navbar-nav .nav-link::after {
    display: none;
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
    background: transparent;
}

.transparent-sidemenu .side-nav .navbar-nav .nav-link:hover,
.transparent-sidemenu .side-nav .navbar-nav .nav-link:focus {
    margin-left: 5px;
}

.side-menu p {
    font-size: 13px;
    margin-top: .5rem;
    margin-bottom: 0;
    color: #FFFFFF;
}


/* ===================================
   Scroll Top
====================================== */

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 80px;
    right: 15px;
    color: #ffffff;
    background-color: #006666;
    border-radius: 50%;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}

.go-top.active {
    -webkit-animation: bounceInDown 2s;
    animation: bounceInDown 2s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ff0000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
}

.go-top:hover,
.go-top:focus {
    color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
    opacity: 1;
    visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}


/*Header Social Icons*/
.navbar .social-icons li a {
    height: 28px;
    width: 28px;
    line-height: 28px;
    font-size: 14px;
}

.sidebar-nav .social-icons {
    position: absolute;
    bottom: 30px;
}

.side-menu .social-icons-simple li a:hover,
.side-menu .social-icons-simple li a:focus {
    color: #fff;
}

/*wrapper on opened sidebar*/
.wrapper {
    padding-left: 290px;
}

.wrapper .full-screen {
    width: 100% !important;
}

@media (min-width: 1367px) and (max-width: 9000px) {
    .center-brand {
        top: 55px;
    }

    .price h2 {
        margin-left: 0px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
        color: #232323;
        font-size: 42px;
        font-weight: 100;
        margin-top: 0;
        margin-bottom: 0px;
        text-align: center;
    }

    .center-brand .navbar-brand {
        position: absolute !important;
        margin: 0 auto;
        /* left: -58px !important; */
        right: 0;
        transform: none !important;
        width: 150px !important;
    }
}

@media (min-width: 1092px) and (max-width: 1366px) {
    .center-brand {
        top: 55px;
    }

    .center-brand .navbar-brand {
        position: absolute !important;
        left: -55px;
        right: 0;
        margin: 0 auto;
        transform: none !important;
        width: 150px !important;
    }
}

@media (min-width: 991px) and (max-width: 1091px) {
    .center-brand {
        top: 55px;
    }

    .center-brand .navbar-brand {
        position: absolute !important;
        margin: 0 auto;
        transform: none !important;
        left: -87px !important;
        width: 150px !important;
    }

}

@media (min-width: 100px) and (max-width: 990px) {
    .center-brand {
        top: 35px;
    }

    .center-brand .navbar-brand {
        position: fixed !important;
        left: 15px !important;
        transform: none !important;
        width: 100px !important;
    }
}

@media (max-width: 1366px) {
    .center-brand .sidemenu_btn {
        right: 0;
    }
}

@media (max-width: 1200px) {
    .side-menu .inner-wrapper {
        padding: 2rem 3.5rem;
    }

}

@media (min-width: 1025px) and (max-width: 1091px) {
    .navbar-nav.ml-auto {
        margin-right: 30px;
    }

    .sidemenu_btn {
        right: 0;
    }
}

@media (max-width: 1024px) {
    .boxed-nav .sidemenu_btn {
        display: none !important;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
    }
}

@media (min-width: 810px) and (max-width: 1024px) {
    .sidemenu_btn {
        position: relative;
    }
}

@media (max-width: 992px) {
    .boxed-nav {
        background: #fff;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .center-brand .navbar-nav .nav-link,
    .transparent-bg .navbar-nav .nav-link {
        background: #58b433;
        color: #fff;
    }

    .center-brand.fixedmenu .navbar-nav .nav-link,
    .transparent-bg.fixedmenu .navbar-nav .nav-link {
        background: transparent;
    }

    .side-menu {
        width: 50%;
    }

    .side-menu .inner-wrapper {
        padding: 2rem 2.5rem;
    }

    .side-nav .navbar-nav .nav-link {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
    .side-menu {
        width: 55%;
    }

    .side-nav .navbar-nav .nav-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .navbar.sidebar-nav {
        width: 100%;
        height: auto;
        padding: 0 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .wrapper {
        padding-left: 0;
    }

    .sidemenu_btn {
        margin-top: 4px;
        right: 0;
        position: absolute;
    }

    .side-menu {
        width: 300px;
    }

    .side-nav .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .side-nav p {
        display: none;
    }

    .sidebar-nav .social-icons {
        display: none;
    }
}

/*-------------------------------*/
/*Navigation Ends */
/*-------------------------------*/

/* Slider Styling */


.main_slider {
    min-height: 100vh;
    /* fallback */
    height: 100svh;
    /* stabilny viewport na mobile */
    height: 100dvh;
    /* dynamiczny viewport (nowoczesne przeglądarki) */
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}

.swiper-slider-heading {
    font-size: 48px;
    font-weight: 100;
}

.swiper-slider-heading span {
    font-weight: 400;
}

.swiper-slider-small-heading {
    font-size: 30px;
    font-weight: 100;
}

.swiper-slider-heading-2 {
    font-size: 65px;
}

.page_content_main_slider .swiper-slider-small-heading {
    margin-bottom: 45px;
    margin-top: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}

.main_slider .swiper-slide,
.main-slider-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover !important;
    color: #ffffff;
}

.button_div a.btn1 {
    transform: translateX(-5px);
}

.button_div a.btn2 {
    transform: translateX(5px);
}

.main_slider .swiper-arrows {
    color: #ffffff;
    font-size: 28px;
    background: black;
    opacity: .3;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    transition: 1s;
}

.main_slider .swiper-arrows:hover {
    opacity: 1;
}

.main_header {
    position: relative;
}


/* Slider Revolution */

.tp-bullet,
.swiper-pagination-bullet {
    -webkit-border-radius: 100%;
    border-radius: 100%;
    width: 12px;
    height: 12px;
    overflow: hidden;
    background: #b5b5b5;
    opacity: 1;
}

.swiper-bullet-style-two .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    overflow: hidden;
    background: #fff;
    opacity: 1;
    border-radius: 9px;
    transition: 300ms;
}

.swiper-bullet-style-two .swiper-pagination-bullet-active {
    width: 50px;
}

.centered_main_slider .swiper-pagination {
    left: 0;
    width: 100%;
    top: 60%;
    transform: translateY(-60%);
    bottom: auto;
}

.tparrows {
    border-radius: 40px;
    transition: 1s;
}

.centered_main_logo {
    position: absolute;
    width: 100%;
    top: 35%;
    display: block;
    text-align: center;
}

.centered_main_logo img {
    width: 220px;
}

/* Personal Slider */

.personal_slider .swiper-slide {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    height: 100vh;
    /* fallback */
    height: 100svh;
    /* small viewport */
    height: 100dvh;
    /* dynamic viewport */
}

.developer_information {
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
    top: 50%;
}

.user_picture {
    border-radius: 50%;
    height: 200px;
    width: 200px;
    overflow: hidden;
    border: 2px solid #fff;
    margin: 0 auto;
}

.user_picture img {
    width: 100%;
    height: 100%;
    transition: 300ms;
    transform: scale(1.1);
}

.user_picture:hover img {
    transform: scale(1.2);
}


.developer_information .dev_tagline {
    word-spacing: 4px;
    line-height: 32px;
    margin-bottom: 30px;
}

.developer_information .dev_tagline_2 {
    font-size: 20px;
}


.developer_information .dev_main_tag {
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 60px;
}

.developer_information .default_divider {
    margin: 30px auto 60px auto !important;
}

/* Skills Section */

.skill_section_personal .expertise_block {
    margin-top: 65px;
}

/* Expertise Block */

.skill_section_personal .expertise_block {
    cursor: pointer;
    padding: 0 15px;
}

.expertise_block:hover i {
    transform: translateY(-5px);
    color: #232323 !important;
}


.expertise_block h3 {
    transition: 300ms;
}

.expertise_block:hover h3 {
    transform: translateY(-5px);
}

.expertise_block i {
    font-size: 60px;
    margin-bottom: 20px;
    transition: 300ms;
}


/* Cirlce Pie Section */

.progress_bar {
    height: 15px;
    overflow: visible;
    margin-bottom: 30px;
    border-radius: 50px;
    margin-top: 10px;
}

.progress_bar .progress-bar {
    position: relative;
    border-radius: 50px;
}

.progress_bar span {
    position: absolute;
    left: 97%;
    display: block;
    padding: 3px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 100;
    top: -40px;
}

.progress_bar span:before {
    display: table;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #232323;
    bottom: -8px;
    left: 23%;
}

/* Timeline Section */

.timeline {
    list-style: none;
    padding: 10px 0;
    font-weight: 300;
    color: #ffffff;
    position: relative;
}

.timeline h3 {
    color: #ffffff;
    position: absolute;
    top: -10%;
}

.timeline-footer {
    font-size: 14px !important;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 2px;
    background: #ffffff;
    left: 50%;
    margin-left: -1.5px;
}

.timeline>li {
    margin-bottom: 20px;
    position: relative;
    width: 50%;
    float: left;
    clear: left;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li>.timeline-panel {
    width: 90%;
    float: left;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 24px 40px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.timeline>li:hover .timeline-panel {
    border: none;
}

.timeline>li>.timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid rgba(255, 255, 255, 0.1);
    border-right: 0 solid rgba(255, 255, 255, 0.1);
    border-bottom: 14px solid transparent;
    content: " ";
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.timeline>li:hover .timeline-panel:after {
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.timeline>li>.timeline-badge {
    color: #ffffff;
    width: 24px;
    height: 24px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 16px;
    right: -12px;
    z-index: 100;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-badge>a {
    color: #b2b2b2;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}



.timeline-title {
    margin-top: 0;
    color: inherit;
}


.timeline-body>p,
.timeline-body>ul {
    margin-bottom: 0;
}

.timeline-body>p {
    padding: 14px 0;
    font-size: 17px;
}

.timeline-footer {
    padding: 0;
    color: rgba(255, 255, 255, 0.5);
}

.timeline-footer p {
    margin-bottom: 0;
}

.timeline-footer>a {
    cursor: pointer;
    text-decoration: none;
}

.timeline>li.timeline-inverted {
    float: right;
    clear: right;
}

.timeline>li:nth-child(2) {
    margin-top: 60px;
}

.timeline>li.timeline-inverted>.timeline-badge {
    left: -12px;
}

.no-float {
    float: none !important;
}

.timline-year {
    background: #dddddd;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    clear: both;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    transition: 300ms;
}

.timline-year {
    color: #ffffff;
}

.timline-year h3 {
    font-size: 15px;
    font-weight: bold !important;
    margin: 0;
}

.timline-year h3 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 500;
}

.timeline-heading h4 {
    margin: 0;
}

.timeline-body,
.timeline-footer {
    color: #ffffff;
    font-weight: 400;
}

.timeline {
    margin: 0;
}

/* Stats Section */

.stats_section {
    background: url("../img/stats_section.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats_section_icon {
    font-size: 40px;
    margin-bottom: 30px;
    transition: 300ms;
}

.stats_section_inner:hover .stats_section_icon {
    transform: translateY(-5px);
}

.stats_section_inner {
    cursor: pointer;
}

.stats_section_inner h3 {
    margin-bottom: 15px;
}

/* Half Sections */

.half_section_main {
    position: relative;
}

.half_section_main .half_section_picture {
    left: 0;
    background: url(../img/half_section_left_bg.png);
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.half_section_main .side_section_text {
    padding-left: 30px;
}

.icons_div_small i {
    font-size: 30px;
    transition: 300ms;
    padding-right: 10px;
}

.icons_div_small {
    padding: 50px 0 0;
}

.icons_div_small p {
    margin-bottom: 10px;
}

.half_section_right .half_section_picture {
    right: 0 !important;
    left: auto;
    background: url(../img/half_section_right_bg.png);
    position: absolute;
    background-repeat: no-repeat;
    background-size: auto;
}

.half_section_right .side_section_text {
    padding-left: 0;
    padding-right: 30px;
}

.progress_bar_outer_div {
    padding: 50px 0 0 0;
}

/* Portfolio Section */

.cube_masonry_style_portfolio #js-filters-masonry {
    text-align: center !important;
}


.cube_masonry_style_portfolio .cbp-l-filters-alignRight .cbp-filter-counter {
    background: #6d6d6d !important;
    border-radius: 0;
}

.cube_masonry_style_portfolio .cbp-l-filters-alignRight .cbp-filter-counter:after {
    border-top-color: #6d6d6d;
}

.cube_masonry_style_portfolio .cbp-l-filters-alignRight .cbp-filter-item:hover {
    color: #FFFFFF !important;
}

.cube_masonry_style_portfolio .cbp-l-caption-alignCenter .cbp-l-caption-body {
    background: #6d6d6d;
}

.cube_masonry_style_portfolio .cbp-l-caption-alignCenter .cbp-l-caption-body .cbp-l-caption-desc {
    color: #ffffff;
}

.cube_fullwidth_style_portfolio .cbp-l-filters-buttonCenter .cbp-filter-item.cbp-filter-item-active {
    color: #3B9CB3;
}

.cube_fullwidth_style_portfolio .cbp-l-filters-buttonCenter .cbp-filter-counter {
    background: #6d6d6d;
    border-radius: 0;
}

.cube_fullwidth_style_portfolio .cbp-l-filters-buttonCenter .cbp-filter-counter:after {
    border-top-color: #6d6d6d;
}

.cube_fullwidth_style_portfolio .cbp-l-filters-buttonCenter .cbp-filter-item {
    font-family: 'Open Sans', sans-serif;
}

.cube_fullwidth_style_portfolio .cbp-l-filters-buttonCenter .cbp-filter-item:hover {
    color: #3B9CB3;
}

.cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
    background-color: #0284d0;
    background-color: rgba(2, 132, 208, 0.8);
}

/* Team Slider Section */

.team_detail h3 {
    margin: 20px 0 5px;
    transition: 1s;
}

.team_detail_inner img {
    width: 100%;
    transition: 300ms;
}

.team_detail_inner li {
    display: inline-block;
    list-style-type: none;
}

.team_detail_inner ul {
    margin: 0;
    padding: 0;
}

.team_detail_inner {
    position: relative;
    width: 200px;
    height: 200px;
    -webkit-border-radius: 190px;
    -moz-border-radius: 190px;
    border-radius: 190px;
    margin: 0 auto;
    overflow: hidden;
    transform: translateX(1px);
}

.team_detail:hover .team_detail_inner img {
    transform: scale(1.1);
}

.team_members_list .facebook_team:hover {
    background: #3b5998;
    color: #FFFFFF;
}

.team_members_list .twitter_team:hover {
    background: #00b2ff;
    color: #FFFFFF;
}

.team_members_list .google_team:hover {
    background: #0077b5;
    color: #FFFFFF;
}

.team_members_list {
    padding: 0;
    margin: 15px 0 0;
}

.team_members_list li {
    margin: 0 3px;
}

.team_members_list li {
    list-style-type: none;
    display: inline-block;
}

.team_members_icons {
    border-radius: 15px;
    color: #232323;
    width: 31px;
    height: 31px;
    transition: 1s;
    text-align: center;
    display: inline-block;
    line-height: 31px;
}

.team_members_icons:hover {
    color: #232323;
}

/* Pricing Section */

.pricing_section {
    position: relative;
    z-index: 0;
}

.pricing_section:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, .9);
}

.pricing_table_section {
    position: relative;
    z-index: 9;
}

.pricing_table_column {
    border: 2px solid #FFFFFF;
    padding: 32px 21px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
}

.pricing_table_column h3 {
    margin-bottom: 20px;
}

.price {
    padding: 20px 0 30px;
    border-top: 2px solid rgba(48, 56, 64, 0.18);
    ;
    border-bottom: 2px solid rgba(48, 56, 64, 0.18);
    ;
}

.price h2 .dollar {
    font-size: 18px;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 10px;
}

.price h2 {
    margin-left: 20px;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    color: #232323;
    font-size: 42px;
    font-weight: 100;
    margin-top: 0;
    margin-bottom: 0;
}

.price h2 .month {
    font-size: 10px;
    display: inline-block;
    position: absolute;
    left: 9px;
    bottom: -9px;
    color: #232323;
}

.price p {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    color: #232323;
}

ul.packages {
    padding: 20px 0;
}

ul.packages li {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    line-height: auto;
    list-style-type: none;
    color: #232323;
}

ul.packages li i {
    display: inline-block;
    width: 24px;
    color: #006666;
}

.pricing_button a {
    width: 100%;
    text-align: center;
}

.blue_price {
    background: #6d6d6d;
    color: #FFFFFF !important;
    border-color: #6d6d6d;
    transition: 500ms;
}

.blue_price2 {
    background: #006666;
    color: #FFFFFF !important;
    border-color: #006666;
    transition: 500ms;
}

.blue_price:hover {
    background: #006666;
    border-color: #006666;
}

.blue_price .price h2 {
    color: #FFFFFF;
}

.blue_price .price h2 .month {
    color: #FFFFFF;
}

.blue_price p {
    color: #FFFFFF;
}

.blue_price ul.packages li {
    color: #FFFFFF;
}

.blue_price ul.packages li i {
    color: #FFFFFF;
}

.blue_price .price {
    border-color: #FFFFFF;
}

.blue_price .pricing_button a {
    color: #006666;
}

.blue_price .pricing_button a:hover {
    color: #FFFFFF;
}

/* .blue_price2:hover {
    background: #cb5f00;
    border-color: #f37c14;
} */

.blue_price2 .price h2 {
    color: #FFFFFF;
}

.blue_price2 .price h2 .month {
    color: #FFFFFF;
}

.blue_price2 p {
    color: #FFFFFF;
}

.blue_price2 ul.packages li {
    color: #FFFFFF;
}

.blue_price2 ul.packages li i {
    color: #A1FF44;
}

.blue_price2 .price {
    border-color: #FFFFFF;
}

.blue_price2 .pricing_button a {
    color: #232323;
}

.blue_price2 .pricing_button a:hover {
    color: #FFFFFF;
}

/* Customer Feedback Slider */

.customer_feedback_section {
    background: url("../img/customer_review_bg.jpg");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


.customer_feedback_section .quote_pic {
    margin: 0 auto;
    margin-bottom: 20px;
}

.customer_feedback_section .customer_feedback_text {
    width: 85%;
    margin: 0 auto;
    display: block;
    margin-bottom: 45px;
    font-size: 16px;
}

.customer_feedback_section .customer_feedback_name {
    margin-bottom: 100px;
}

.customer_feedback_section .swiper-pagination {
    margin-top: 50px;
}

.customer_feedback_section .swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    border: 2px solid #ffffff;
}

.customer_feedback_section .swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

.customer_feedback_section .swiper-button-next {
    background-image: none;
    color: #ffffff;
    font-size: 35px;
    top: 10%;
    width: 50px;
    height: 50px;
    border-radius: 35px;
    line-height: 50px;
    transition: 400ms;
}

.customer_feedback_section .swiper-button-next:hover {
    color: #ffffff;
    font-size: 35px;
    top: 10%;
}

.customer_feedback_section .swiper-button-prev {
    background-image: none;
    color: #ffffff;
    font-size: 35px;
    top: 10%;
    transition: 1s;
    width: 50px;
    height: 50px;
    border-radius: 35px;
    line-height: 50px;
}

.customer_feedback_section .swiper-button-prev:hover {
    color: #ffffff;
    font-size: 35px;
    top: 10%;

}



/* Blog Section */

.blog_slide {
    cursor: pointer;
}

.blog_slide a>h3 {
    transition: 1s;
    margin-bottom: 5px;
}


.blog_slider_main .swiper-pagination {
    position: static;
    padding-top: 90px;
}


.blog_slider_main .swiper-pagination-bullet {
    background: #6d6d6d;
    opacity: 1;
}

.blog_img {
    width: 100%;
    overflow: hidden;
    margin: 15px 0;
    border-radius: 5px;
}

.blog_img img {
    width: 100%;
    transition: 300ms;
}

.blog_img:hover img {
    transform: scale(1.1);
}

/* ----- Contact Us ----- */
.contact-table {
    overflow: hidden;
}

.contact-table .cells {
    vertical-align: top;
}

.contact-table .icon-cell {
    display: inline-block;
    background: #4fb8aa;
    color: #fff;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

.contact_address .contact-table:first-child .icon-cell,
.contact_address .contact-table.colorone .icon-cell {
    background: #008cba;
}

.contact_address .contact-table:nth-child(2) .icon-cell,
.contact_address .contact-table.colortwo .icon-cell {
    background: #008cba;
}

.contact_address .contact-table:nth-child(3) .icon-cell,
.contact_address .contact-table.colorthree .icon-cell {
    background: #008cba;
}


.logincontainer {
    padding: 3.5rem 1.5rem;
    background: #f6f6f6;
    border-radius: 5px;
}

::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: #b5b5b5;
}

:-moz-placeholder,
.form-control:-moz-placeholder {
    color: #b5b5b5;
}

::-moz-placeholder,
.form-control::-moz-placeholder {
    color: #b5b5b5;
}

:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #b5b5b5;
}

textarea::-webkit-input-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #b5b5b5;
    opacity: 1;
}

textarea {
    resize: none;
}

label {
    font-weight: normal;
    margin: 0;
}

button {
    border: none;
    cursor: pointer;
}

button:focus,
textarea:focus {
    outline: none;
    outline: 0;
}

form.findus .form-control {
    height: 48px;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
}

form.findus:not(.form-inline) .form-group {
    width: 100%;
}

form.findus .form-control,
form.findus textarea {
    padding: 12px 10px;
    margin-bottom: 30px;
    font-size: 14px;
    border: 1px solid #a5a5a5;
    border-radius: 10px;
    position: relative;
    -webkit-transition: border .9s ease;
    -o-transition: border .9s ease;
    transition: border .9s ease;
}

form.findus textarea {
    width: 100%;
    min-height: 160px;
}

.form-control {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}

.form-control:focus,
textarea:focus {
    border-color: #4fb8aa;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}

form.findus .select {
    border: none;
    border-bottom: 1px solid #d1d1d1;
    position: relative;
}

form.findus select {
    height: 100%;
    border: 0;
    width: 100%;
    color: inherit;
    opacity: .6;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 15px;
    border-radius: inherit;
}

form.findus .select:after {
    content: "\f107";
    font-family: FontAwesome;
    color: inherit;
    font-size: 16px;
    padding: 9px 8px;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    z-index: 1;
    text-align: center;
    width: 10%;
    height: 100%;
    pointer-events: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.logincontainer .form-control {
    background: transparent;
}

.logincontainer .btn_common {
    width: 100%;
}

/*Map*/
#map-container {
    width: 100%;
    height: 400px;
}

#map-container>iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gm-style .place-desc-large {
    display: none !important;
}

p.logomap {
    font-weight: 500;
}

.main-title {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.main-title h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    color: #6d6d6d;
}

.main-title h2 {

    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #232323;



    text-transform: capitalize;
    max-width: 650px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.main-title p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 14px;
    word-spacing: 2px;
    line-height: 28px;
    color: #676767;

}

.para-color {
    color: #535353;
}


/* ----- Contact Us ends ----- */

/* Footer Section */

.footer_section {
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer_links {
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}

.footer_links li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
}

.footer_links li a {
    height: 45px;
    width: 45px;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: 1s;
}

.facebook:hover {
    background: #3b5998 !important;
    color: #FFFFFF;
}

.instagram:hover {
    background: #FA7E1E !important;
    color: #FFFFFF;
}

.twitter:hover {
    background: #00B2FF !important;
    color: #FFFFFF;
}

.g_plus:hover {
    background: #C9302C !important;
    color: #FFFFFF;
}

.linkedin:hover {
    background: #0077B5 !important;
    color: #FFFFFF;
}

.pinterest:hover {
    background: #BD081C !important;
    color: #FFFFFF;
}


/* blog styling start */

.blog_meox .innerpage-banner {
    padding-top: 250px;
    color: #ffffff;
    margin-bottom: 45px;
}

.blog_meox .innerpage-banner h2 {
    margin-bottom: 0;
    color: #fff;
}

.blog_meox .tagline {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 45px;
}

.blog_meox .blog-item-v3 {
    border-bottom: 1px solid #d1d2d2;
    padding-bottom: 50px;
    margin-bottom: 25px;
}

.blog_meox .blog-item-v3>img {
    margin-bottom: 35px;
    height: 380px;
    width: 100%;
}

.blog_meox .blog-item-v3 h3 {
    font-size: 30px;
    color: #232323;
}

#area-main ul.blog-author {
    margin: 30px 0 35px 0;
    padding: 0;
}

#area-main ul.blog-author li {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

#area-main ul.blog-author li a {
    color: #232323;
    font-size: 14px;
    margin-right: 15px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    transition: 1s;
}


#area-main ul.blog-author li a .fa {
    margin-right: 5px;
}

#area-main p {
    color: #232323;
    margin-bottom: 35px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

#area-main .buttons {
    text-decoration: none;
    padding: 13px 50px;
    background: #232323;
    display: inline-block;
    color: #FFFFFF;
    border: none;
}



.blog_meox .morepost-wrap2 {
    border-bottom: 1px solid #d1d2d2;
    padding-bottom: 25px;
}

.blog_meox .morepost-wrap .morepost,
.morepost-wrap2 .morepost {
    font-size: 16px;
    color: #232323;
    display: inline-block;
    position: relative;
    visibility: visible;
    animation-duration: 500ms;
    animation-delay: 300ms;
    text-decoration: none;
}


.blog_meox .morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-right {
    color: transparent;
    position: absolute;
    text-shadow: 0 0 transparent;
    top: 7%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0 !important;
    filter: alpha(opacity=0);
}

.blog_meox .morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left {
    opacity: 1 !important;
    filter: alpha(opacity=100);
    right: 100%;
}

.blog_meox .morepost-wrap2 .morepost:hover .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right {
    opacity: 1 !important;
    filter: alpha(opacity=100);
    left: 118%;
}

.blog_meox .widget {
    margin-bottom: 40px;
    color: #232323;
}

.blog_meox .search_box input {
    border: 1px solid #d9d9d9;
    height: 53px;
    padding-left: 15px;
    position: relative;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.blog_meox .search_box i {
    border-left: 1px solid #d9d9d9;
    bottom: 0;
    color: #d9d9d9;
    font-size: 24px;
    height: 53px;
    padding: 15px;
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
}

.blog_meox .widget h4,
.widget img {
    margin-bottom: 25px;
}

.blog_meox .widget h4 {
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif;
}

.blog_meox ul.category li {
    margin-top: 15px;
    display: block;
}

.blog_meox ul.category {
    padding: 0;
}

.blog_meox ul.category li a {
    color: #232323;
    font-size: 16px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 15px;
    display: block;
    text-transform: capitalize !important;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.blog_meox ul.category li a .date {
    font-size: 12px;
    display: block;
}


#area-main .tag-cloud {
    padding: 0;
    margin: 0;
}

#area-main .tag-cloud li {
    display: inline-block;
    margin: 10px 10px 10px 0;
    text-transform: uppercase;
    border-radius: 0;
}

#area-main .tag-cloud li a,
.blog-reply a.btn-rep {
    background: #efefef;
    color: #232323;
    font-size: 12px;
    padding: 8px 15px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: 1s;
}

#area-main .tag-cloud li a:hover,
.blog-reply a.btn-rep:hover {
    color: #FFFFFF;
}

.blog_meox .blog-item .blog-content {
    padding: 0;
    margin: 35px 0;
}

.blog_meox .blog-item blockquote {
    font-family: 'Open Sans', sans-serif;
}

.blog_meox blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

.blog_meox .blog-item .post-tag {
    border: 1px solid #d9d9d9;
    padding: 5px;
    margin-bottom: 70px;
}

.blog_meox .social-link {
    margin: 0;
}

.blog_meox .social-link li {
    display: inline-block;
}

.blog_meox .social-link li a {
    width: 44px;
    height: 44px;
    display: block;
    border: 1px solid #232323;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #232323;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}

.blog_meox .social-link li a i {
    line-height: 42px;
    font-size: 20px;
}

.blog_meox .social-link li a:hover {
    color: #fff;
}

.blog_meox .blog-reply {
    padding: 10px;
    border: 1px solid #f3f3f3;
    position: relative;
    margin: 20px 0;
    border-radius: 5px;
}

.blog_meox .media-body,
.media-left,
.media-right {
    display: table-cell;
    vertical-align: top;
}

.blog_meox .blog-reply a.btn-rep {
    position: absolute;
    top: 0;
    right: 0;
}

.blog_meox .blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea {
    padding: 15px;
    font-size: 14px;
    color: #232323;
    border: 1px solid #d0d0d0;
    width: 100%;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
}

.blog_meox .blog-item .post-comment form textarea,
.contact form textarea {
    margin: 30px 0;
    min-height: 210px;
}

.blog_meox .blog-item .post-comment form .form-control,
.contact form .form-control {
    height: 50px;
}

.blog_meox .blog-item .post-comment h3 {
    margin-bottom: 35px;
    margin-top: 70px;
}

.blog_meox .blog-item .post-comment form a:before,
.contact form input a:before {
    background: #232323;
}

.blog_meox .blog-item .post-comment form a,
.contact form a {

    color: #fff;
    height: 50px;
    position: relative;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    margin-bottom: 60px;
}

.making_slide_center_text {
    text-align: center !important;
    display: block !important;
}

.making_slide_right_text {
    text-align: right !important;
    display: block !important;
}

/* Standalone Page Styling */

.half_img_standalone {
    width: 100%;
}

.text-side-half {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.img-side-half {
    position: relative;
    left: 50%;
}

.right_section_img {
    position: static;
}

.righ_section_text {
    transform: translateXY(-50%);
    left: 50%;
}

.standalone-detail h2 {
    margin-bottom: 25px;
}

.half_sections_outer {
    margin-bottom: 60px;
}

/* Styl dla głównej sekcji (szare tło) */
.slanted-section {
    position: relative;
    /* Ważne dla pozycjonowania SVG */
    background-color: #57797B;
    /* Kolor tła Twojej sekcji (zmień na dowolny) */
    padding-top: 0px;
    /* Odstęp od góry */
    padding-bottom: 150px;
    /* Odstęp od dołu (musi być większy przez SVG) */
    height: auto;
}

.slanted-section_v2 {
    position: relative;
    /* Ważne dla pozycjonowania SVG */
    background-color: #577b59;
    /* Kolor tła Twojej sekcji */
    padding-bottom: 150px;
    /* Odstęp od dołu (musi być większy przez SVG) */
    height: auto;
}

.slanted-section_v3 {
    position: relative;
    /* Ważne dla pozycjonowania SVG */
    background-color: #58577B;
    /* Kolor tła Twojej sekcji */
    padding-bottom: 150px;
    /* Odstęp od dołu (musi być większy przez SVG) */
    height: auto;
}

.box_shadow {
    box-shadow: 0px 8px 52px 1px rgba(0, 0, 0, 0.05);
}

/* Kontener dla SVG */
.bottom-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Usuwa zbędne marginesy */
}

.bottom-separator_v2 {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* Usuwa zbędne marginesy */
}

.bottom-separator_v3 {
    height: 60px;
    background-color: #ccc;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    /* odpowiednio niżej, by logo sięgało do połowy */
}

.logo-prezes {
    position: absolute;
    top: 30%;
    left: 70%;
    transform: translate(-50%, -50%);
    /* wyśrodkowanie i przesunięcie o 50% w pionie */
    height: 100px;
    /* przykładowy rozmiar, dostosuj */
    z-index: 2;
}

.icon-color {
    color: #74835b;
}

.testimonial-header-svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: rotateX(180deg);
    height: 200px;
}

.testimonial-foot-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotateY(180deg);
    height: 200px;
}

/* Skalowanie SVG */
.bottom-separator svg {
    display: block;
    width: 100%;
    height: 150px;
    /* Wysokość skosu - im więcej, tym bardziej stromy skos */
}

.countdown .page_content_body {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.countdown ul.count_down {
    list-style: none;
    margin: 65px 0 0 0;
    padding: 0;
    display: block;
    text-align: center;
}

.countdown ul.count_down li {
    display: inline-block;
    color: #232323;
    padding: 0 35px;
    font-family: 'Raleway', sans-serif;
    width: 165px;
}

.countdown ul.count_down li p:nth-child(1) {
    font-size: 70px;
    font-weight: bold;
    line-height: normal;
    margin: 0 0 0 0;
    transition: 1s;
}

.countdown ul.count_down li p:nth-child(2) {
    color: #232323;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 0 0;
    transition: 1s;
}

.countdown .page_content_body form {
    width: 75%;
    margin: 0 auto;
    margin-top: 65px;
    position: relative;
}

.countdown_dark .page_content_body form input {
    border-bottom: 2px solid #FFFFFF !important;
}

.countdown .page_content_body form input {
    border: transparent;
    background: transparent;
    box-shadow: none;
    border-bottom: 2px solid #232323;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 15px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    color: #232323;
    text-align: left;
    height: 45px;
}

.countdown .page_content_body form input:focus {
    box-shadow: none;
}

.countdown input[type="email"].form_placeholder1::-webkit-input-placeholder {
    color: #232323;
}

.countdown .page_content_body form a {
    transition: all linear 300ms;
    position: absolute;
    top: 6px;
    right: 4px;
}

.countdown .page_content_body form a:hover {
    right: 0;
}


.countdown .page_content_body form i {
    font-size: 18px;
    color: #232323;
    transition: 1s;
}

.countdown .page_content_footer {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    width: 100%;
}

.countdown .page_content_footer ul {
    margin-right: 25px;
    margin-bottom: 25px;
}

.countdown .page_content_footer ul li {
    display: inline-block;
    margin: 6px !important;
}


.countdown .page_content_footer ul li a {
    color: #232323;
    transition: 1s;
    font-size: 18px;
    display: inline-block;
    width: 34px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
}

.countdown_dark .page_content_footer ul li a i {
    color: #FFFFFF !important;
}

.countdown .page_content_footer ul li a i {
    transition: 1s;
    color: #232323;
}

.days_ref {
    color: #232323;
}

.countdown .page_content_footer ul li a:hover i {
    color: #ffffff;
}

.countdown .page_content_footer ul li:nth-child(1) a:hover {
    background-color: #3B5998;
}

.countdown .page_content_footer ul li:nth-child(2) a:hover {
    background-color: #1da1f2;
}

.countdown .page_content_footer ul li:nth-child(3) a:hover {
    background-color: #0077b5;
}

.countdown .page_content_footer ul li:nth-child(4) a:hover {
    background-color: #1769ff;
}

.countdown .page_content_footer ul li:nth-child(5) a:hover {
    background-color: #1ab7ea;
}

.countdown .page_content_header {
    position: absolute;
    width: 100%;
}

.countdown .page_content_header img {
    padding-top: 25px;
    padding-left: 25px;
    max-width: 180px;
}

/* For Dark Countdown Background */
.countdown_dark .page_content_footer ul li a,
.countdown_dark .page_content_body form i,
.countdown_dark input[type="email"].form_placeholder1::-webkit-input-placeholder,
.countdown_dark ul.count_down li p:nth-child(2),
.countdown_dark .page_content_body form input,
.countdown_dark ul.count_down li {
    color: #FFFFFF !important;
}


/* Index Eleven Styling */

.portfolio_scroll_parrallax_section h2 {
    font-size: 26px !important;
}

.portfolio_scroll_parrallax_section p {
    font-size: 17px;
    font-weight: 300;
}

.portfolio-link {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
    display: block;
    transition: 300ms;
}

.white-portfolio-link {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.white-portfolio-link:hover {
    background: #ffffff;
}

.white-portfolio-link:focus {
    color: #ffffff !important;
}

.dark-portfolio-link {
    border: 1px solid #232323;
    color: #232323;
}

.dark-portfolio-link:hover {
    background: #232323;
    color: #ffffff;
}

.dark-portfolio-link:focus {
    color: #232323;
}

.video_button_slider_section {
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.video_button_slider_section_inner {
    position: absolute;
    z-index: 9;
    transform: translateY(-50%);
    top: 50%;
    width: 100%;
}

.video_button_slider_section_inner h1 {
    margin-bottom: 25px;
}

.video_button_slider_section_inner p {
    margin-bottom: 30px;
}

.video_button_slider_section_inner .video-btn {
    width: 80px;
    height: 80px;
    text-align: center;
    background: rgba(255, 255, 255, .2);
    color: #ffffff;
    display: block;
    line-height: 80px;
    border-radius: 100px;
    margin: 0 auto 30px;
    transition: 300ms;
}


#html5-close>img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #414141;
    height: 30px;
    width: 30px;
}


/* Index Thirteen */

.svg-page .body-parallax-none {
    background-attachment: local !important;
}

.svg-page .svg_triangle_down {
    position: absolute;
    bottom: -4px;
    z-index: 16;
    width: 100%;
}

.svg_triangle_down_3 {
    transform: rotate(180deg);
    bottom: -97px !important;
}


.svg_top {
    top: -4px !important;
}


.div_rotator_svg {
    transform: rotate(-2deg);
    width: 104%;
    position: relative;
    left: -2%;
    z-index: 9;
}

.div_rotator_svg_reverse {
    transform: rotate(2deg);
}

.gradient-overlay-slider {
    position: absolute;
    z-index: 1;
    height: 100vh;
    width: 100%;
    background: linear-gradient(60deg, rgba(220, 207, 53, 0.76) 0%, rgba(220, 53, 69, 0.67) 70%);
}

/* Index fifteen */

.columned_portfolio_slider_outer {
    position: relative;
    height: 100vh;
    cursor: pointer;
    z-index: 1;
}

.overlay_black_columned_slider {
    height: 100vh;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.overlay_black_columned_slider:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.columned_portfolio_slider_outer:hover .overlay_black_columned_slider:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.columned_portfolio_slider_inner {
    padding: 0 50px 15px 50px;
    position: absolute;
    bottom: 30px;
    z-index: 999;
    transition: 500ms;
}

.columned_portfolio_heading {
    font-size: 30px;
    transition: 400ms;
    margin: 15px 0;
}

.columned_portfolio_slider_outer:hover .columned_portfolio_slider_inner {
    transform: translateY(-150px);

}

.index-only-side-nav-dark .menu_bars {
    background: rgba(0, 0, 0, .6) !important;
}

.index-only-side-nav-dark .menu_bars span {
    background: #ffffff;
}

.index-only-side-nav-dark .menu_bars:hover span {
    background: #ffffff !important;
}

.index-only-side-nav-dark .menu_bars {
    top: 0 !important;
}

.index-only-side-nav-dark .side_small_nav .menu_bars.active.right {
    top: 24px !important;
}

.side_small_nav .pushmenu {
    background: transparent;
    box-shadow: none;
    border: none;
}

.side_small_nav .menu_bars.active.right {
    background: none;
    padding: 7px 6px 11px 13px;
    right: 47px;
}

.side_small_nav .menu_bars.active.right {
    top: 60px;
}

.side_small_nav .pushmenu .push_nav>li>a {
    text-transform: uppercase;
    display: inline-block;
    background: #000000b8;
    font-size: 20px;
    padding: 5px !important;
    transition: 300ms;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

.side_small_nav .pushmenu .push_nav {
    margin-top: 100px;
}

.side_small_nav .menu_bars {
    border-radius: 0;
}

.side_small_nav .pushmenu .push_nav>li>a:hover {
    background: #000;
}

.side_small_nav .pushmenu .push_nav {
    margin-top: 70px !important;
}

.side_small_nav .pushmenu .push_nav {
    background: transparent;
}

.side_small_nav .pushmenu.pushmenu-open .push_nav>li {
    background: transparent;
    text-align: right;
}

.side_small_nav .pushmenu {
    width: auto !important;
}

.post-detail-modal {
    background: transparent !important;
}

.post-detail-modal-inner {
    background: #ffffff;
}

.fancybox-slide>div {
    padding: 0;
    margin: 0;
}

#modal-post-fancy-box-6 {
    width: auto !important;
}

.post-img-outer-slider {
    width: 70%;
    background: #232323;
    height: 30px;
    height: 500px;
    float: left;
}

.portfolio-slider-post {
    height: 100%;
}

.portfolio-slider-post .swiper-slide {
    height: 100%;
    background-size: cover !important;
    width: 100% !important;
}

.portfolio-slider-post .swiper-pagination-bullet {
    background: #ffffff73;
    transition: 300ms;
}

.portfolio-slider-post .swiper-pagination-bullet-active,
.portfolio-slider-post .swiper-pagination-bullet:hover {
    background: #ffffff !important;
}

.post-modal-detail-user {
    width: 30%;
    height: 500px;
    float: left;
    padding: 25px;
    position: relative;
}

.hashtags_div {
    margin-top: 15px;
}

.hashtags_div a {
    font-family: 'Raleway', sans-serif;
    color: #003569;
    margin-right: 10px;
    text-decoration: none;
}

.hashtags_div a:hover {
    color: #003569;
    text-decoration: none;
}

.fancybox-close-small:after {
    content: 'Ã—';
    position: absolute;
    top: 0px;
    right: 15px;
    width: 30px;
    height: 30px;
    font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 0;
    border-width: 0;
    background: #fff;
    transition: background .25s;
    box-sizing: border-box;
    z-index: 2;
}

.contact-form-modal {
    background-color: #232323 !important;
    width: 100%;
}

.input-form-contact-modal-inner {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.input-form-contact-modal-inner-textarea {
    height: 150px;
}

.input-form-contact-modal-inner::placeholder {
    color: #9fa3a8;
}

/* index-nineteen */
.not_found_stlye .tp-imgopacity img {
    opacity: 0.5
}

.not_found_stlye .revtp-searchform input#s {
    font-family: "Arial", sans-serif;
    font-size: 20px !important;
    font-weight: 700;
    color: #fff !important;
    background-color: transparent;
    line-height: 56px !important;
    padding: 0 20px !important;
    cursor: text;
    border: 2px solid #fff;
    width: 380px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px
}

.not_found_stlye .revtp-searchform input#s::placeholder {
    color: #fff !important
}

.not_found_stlye .revtp-searchform input#s::-webkit-input-placeholder {
    color: #fff !important
}

.not_found_stlye .revtp-searchform input#s::-moz-input-placeholder {
    color: #fff !important
}

.not_found_stlye .revtp-searchform input#s[type="text"]:focus {
    background-color: rgba(255, 255, 255, 0.15)
}

.not_found_stlye .revtp-searchform input#searchsubmit,
.revtp-searchform input#searchsubmit:focus {
    font-family: "Arial", sans-serif;
    line-height: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px;
    border: 0;
    background: #fff;
    color: #000;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px
}

.not_found_stlye .revtp-searchform input#searchsubmit:hover {
    color: #fff;
    background: #ff00ff
}



/* Media Queries For Different Break Points */

@media only screen and (max-width:767px) {
    .not_found_stlye .revtp-searchform input#s {
        width: 280px
    }
}

@media only screen and (max-width:479px) {
    .not_found_stlye .revtp-searchform input#s {
        width: 200px
    }
}


@media only screen and (min-width: 1600px) {
    .container_big {
        width: 1360px;
    }
}

/* 1300px Medium Screen */
@media only screen and (max-width: 1300px) {
    .columned_portfolio_heading {
        font-size: 26px;
    }
}

/* 1200px Medium Screen */
@media only screen and (max-width: 1200px) {
    .price h2 {
        margin-left: 0px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
        color: #232323;
        font-size: 42px;
        font-weight: 100;
        margin-top: 0;
        margin-bottom: 0px;
        text-align: center;
    }

    .big_padding {
        padding: 100px 0;
    }

    .client_detail {
        padding: 0;
    }

    .button_default_style {
        padding: 13px 50px;
        font-size: 15px;
    }

    .bordered_button {
        padding: 11px 48px !important;
        font-size: 15px;
    }


}


/* 991px Tablet Screen */
@media only screen and (max-width: 992px) {

    .price h2 {
        margin-left: 0px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
        color: #232323;
        font-size: 42px;
        font-weight: 100;
        margin-top: 0;
        margin-bottom: 0px;
        text-align: center;
    }

    .columned_portfolio_heading {
        text-align: center;
    }

    .columned_portfolio_slider_inner {
        text-align: center;
    }

    .picker-off {
        transform: translateY(-50%);
        right: 10px;
    }

    .color-switcher {
        transform: translateY(-120%);
        right: 10px;
    }

    .customer_feedback_section .customer_feedback_text {
        width: 100%;
        font-size: 14px;
    }

    .big_padding {
        padding: 80px 0;
    }

    .index-two .contact_form_inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .default_section_heading {
        font-size: 32px;
    }

    .default_text {
        font-size: 14px;
    }

    .index-two .skill_section_inner {
        padding-top: 50px;
    }

    .default_divider {
        width: 50px;
        margin-bottom: 30px;
        margin-left: auto !important;
    }

    .default_divider_v2 {
        width: 50px;
        margin-bottom: 5px;
    }

    .all_big_padding {
        padding: 50px;
    }

    .skill_section {
        position: static;
        transform: translate(0);
        left: auto;
    }

    .circle_pie_section {
        padding-top: 50px !important;
    }

    .portfolio_information {
        padding: 20px 0;
    }

    .margin_after_tab {
        margin-bottom: 35px;
    }

    .expertise_block {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .client_detail {
        padding: 6px 0;
    }

    .mew_form {
        padding: 50px 0;
    }

    .center_on_mobile {
        text-align: center;
    }

    .center_after_mob {
        margin-left: auto !important;
    }

    .footer_links li a {
        font-size: 16px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .contact_form_inner {
        transform: translateY(0%);
        background: #fff;
    }

    .swiper-slider-heading {
        font-size: 32px;
    }

    .text-side-half {
        position: static;
        transform: translateY(0);
        text-align: center;
        margin-bottom: 30px;
    }

    .text-side-half .default_divider {
        margin-left: auto !important;
    }

    .img-side-half {
        position: static;
        transform: translateY(0);
    }

    .righ_section_text {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .all_small_padding {
        padding: 25px;
    }

    .skill_section_small_divide {
        min-height: inherit;
        margin: 30px 0;
        box-shadow: 0px 8px 52px 1px rgba(0, 0, 0, 0.05);
    }


    .skill_section_small_divide .default_divider {
        margin-bottom: 20px;
    }

    .tabbed_skills .skill_section {
        transform: translate(0);
    }

    .half_section_main .side_section_text {
        padding-left: 0;
        text-align: center;
    }

    .half_section_main .side_section_text .default_divider {
        margin-left: auto !important;
    }

    .half_section_right .side_section_text {
        padding-right: 0;
    }

    .stats_section_inner {
        margin-bottom: 45px;
    }

    .stats_section_icon {
        margin-bottom: 15px;
    }

    .form_padding_left_0 {
        padding-right: 15px;
    }

    .form_padding_right_0 {
        padding-left: 15px;
    }

    .navbar .navbar-nav li a {
        font-size: 12px;
    }

    .push_nav {
        margin-top: 0 !important;
    }

    .centered-nav .navbar .navbar-nav li {
        padding: 0 15px;
    }

    .centered_main_logo img {
        width: 160px;
    }

    .extra_big_padding {
        padding: 200px 0;
    }

    .portfolio_scroll_parrallax_section h2 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    .portfolio_scroll_parrallax_section p {
        font-size: 13px !important;
    }

    .portfolio_scroll_parrallax_section .portfolio-link {
        font-size: 14px;
        height: 32px;
        width: 32px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .video_button_slider_section_inner .video-btn {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .div_rotator_svg {
        transform: rotate(0);
    }

    .div_rotator_svg_reverse {
        transform: rotate(0);
    }

    .post-img-outer-slider {
        height: 350px;
        width: 100%;
    }

    .post-modal-detail-user {
        height: auto;
        width: 100%;
    }

    .side_small_nav .pushmenu .push_nav>li>a {
        font-size: 12px;
    }


    .skill_section_personal .expertise_block {
        margin-top: 45px;
    }

    ul.timeline:before {
        left: 40px;
    }

    ul.timeline>li {
        margin-bottom: 0;
        position: relative;
        width: 100%;
        float: left;
        clear: left;
    }

    ul.timeline>li>.timeline-panel {
        width: 83%;
    }

    ul.timeline>li>.timeline-badge {
        left: 28px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline>li>.timeline-panel {
        float: right;
    }

    ul.timeline>li>.timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    .timeline>li>.timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }

    .timeline>li.timeline-inverted {
        float: left;
        clear: left;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .timeline>li.timeline-inverted>.timeline-badge {
        left: 28px;
    }

    .timline-year {
        margin: -10px;
        background: transparent;
        color: #fff;
        margin-left: 13px;
    }

    .default_small_heading {
        font-size: 16px;
    }


}

/* 768px Medium Screen */
@media only screen and (max-width: 768px) {

    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        display: none;
    }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        display: none;
    }

    .default_section_heading {
        font-size: 28px;
    }

    .swiper-slider-heading {
        font-size: 28px;
    }

    .default_text {
        font-size: 13px;
        line-height: 30px;
        word-spacing: 1px;
    }

    .default_divider {
        width: 40px;
        margin: 15px auto 30px;
    }

    .default_small_heading {
        font-size: 15px;
    }

    .circle_pie_section {
        padding-top: 30px !important;
    }

    .small_heading_navy {
        font-size: 20px;
    }

    .swiper-slider-small-heading {
        font-size: 20px;
    }

    .portfolio_information {
        padding: 15px 0;
    }

    .expertise_block i {
        font-size: 48px;
    }

    .expertise_block {
        width: 80%;
    }

    .blog_slider_main .swiper-pagination {
        padding-top: 30px;
    }

    .mid_default_margin {
        margin-top: 30px;
    }

    .button_default_style {
        padding: 9px 40px;
        font-size: 13px;
    }

    .bordered_button {
        padding: 7px 38px;
        font-size: 13px;
    }

    .bordered_button {
        padding: 7px 38px !important;
    }

    .portfolio_section .button_div h2 {
        font-size: 20px;
    }

    .all_big_padding {
        padding: 50px 0;
    }

    .blue_price {
        margin: 50px 0;
    }

    .bottom_inner .side-menu-button {
        display: block;
    }

    .centered-nav .navbar-header {
        position: relative;
        transform: translate(0);
    }

    .countdown .page_content_header {
        position: static;
        margin-bottom: 30px;
    }

    .countdown .page_content_header img {
        margin: 0 auto;
        display: block;
        padding-left: 0;
        width: 100px;
        padding-top: 30px;
    }

    .countdown .page_content_body h1 {
        font-size: 24px;
    }

    .countdown .page_content_body p {
        font-size: 12px;
        margin: 30px 0 0 0;
    }

    .countdown .page_content_body ul {
        margin: 30px 0 0 0;
    }

    .countdown .page_content_body ul li {
        padding: 0 10px;
        width: 70px;
    }

    .countdown ul.count_down li p:nth-child(1) {
        font-size: 26px;
    }

    .countdown ul.count_down li p:nth-child(2) {
        font-size: 10px;
    }

    .countdown .page_content_body form {
        margin: 30px auto;
        width: 70%;
    }

    .countdown .page_content_body form input {
        font-size: 14px;
    }

    .countdown .page_content_footer {
        text-align: center;
        position: static;
    }

    .countdown .page_content_footer ul {
        margin-bottom: 0;
        margin-right: 0;
        padding-right: 0;
        padding-left: 0;
        bottom: 30px;
        position: absolute;
        text-align: center;
        width: 100%;
    }

    .extra_big_padding {
        padding: 120px 0;
    }

    .form-contact-modal {
        padding: 0 30px;
    }

    .columned_portfolio_slider_inner {
        padding: 0 5px 0 5px;
    }

    .columned_portfolio_slider_inner .default_divider {
        margin-bottom: 10px;
    }

    .columned_portfolio_slider_outer:hover .columned_portfolio_slider_inner {
        transform: translateY(-50px);
    }

    #modal-post-fancy-box-6 {
        width: 100% !important;
    }

    .side_small_nav .menu_bars.active.right span {
        width: 14px;
    }

    .user_picture {
        width: 150px;
        height: 150px;
    }

    .developer_information .dev_main_tag {
        line-height: 40px;
        margin-top: 0;
    }

    .developer_information .dev_tagline {
        margin-bottom: 20px;
    }

    .price h2 {
        margin-left: 20px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
        color: #232323;
        font-size: 42px;
        font-weight: 100;
        margin-top: 0;
        margin-bottom: 20px;
    }

}


@media only screen and (max-width: 450px) {

    .button_div a.btn1 {
        transform: translateX(0px);
    }

    .button_div a.btn2 {
        transform: translateX(0px);
        margin: 15px 0;
    }

    .page_content_main_slider .swiper-slider-small-heading {
        margin-bottom: 15px;
    }

    .extra_big_padding {
        padding: 90px 0;
    }

    .price h2 {
        margin-left: 20px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
        color: #232323;
        font-size: 42px;
        font-weight: 100;
        margin-top: 0;
        margin-bottom: 20px;
    }

}

/* Przykład dla telefonów (poniżej 576px) */
@media (min-width: 100px) and (max-width: 1024px) {

    #rev_single .slotholder .tp-bgimg,
    #rev_single .rev-slidebg {
        /* Np. ustawienie sztywnej wielkości w % */
        background-size: 200% auto !important;
    }


    .price h2 {
        margin-left: 20px;
        position: relative;
        font-family: 'Open Sans', sans-serif;
        color: #232323;
        font-size: 42px;
        font-weight: 100;
        margin-top: 0;
        margin-bottom: 20px;
    }



}