:root {
  --cGreen:   #52c326;
  --cBlue:    #1e58cc;
  --cGBlue:   #435d8e;


  --select-focus: green;
  --select-arrow: var(--cBlue);
}
* {
  border: 0;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #000;
  background: #fff;
  text-align: justify;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  /*opacity: 0;*/
}
a {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
}
p a::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  color: var(--cGreen);
}
p {width: 100%;}
nav ul {list-style: none;}
strong {font-weight: bold;}

.clr::after {clear: both;}
.content {width: 100%;}
.contentS {width: calc(100% - 100px);max-width: 1350px;}
/* TOP */

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 17px;
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
}
header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 17px;
}
#logotyp {
  padding: 15px 30px;
}
#logotyp img {
  height: 60px;
}
header #header_right, header #header_socialLinks{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 30px;
}
header #header_socialLinks{
  flex-direction: row !important;
}
header #header_socialLinks {padding-top: 20px;}
header #header_socialLinks a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 0 20px 40px;
  font-weight: 600;
}
header #header_socialLinks a img{
  margin: 0 10px;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
nav a {
  padding: 10px 30px 10px;
  text-transform: uppercase;
  position: relative;
}
nav a:hover {
  font-weight: bold;
}



/* BODY */
#main_contentImg, #img_slider, .slider_item {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

#img_slider::before{
  content: "";
  position: absolute;
  height: 17px;
  left: 0;
  right: 0;
  bottom: 0px;
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
  z-index: 2;
}

#img_slider img{
  object-fit: cover;
  height: auto;
  width: auto;
  min-width: 100%;
}
.slider_text_logo img {height: 100px !important;}
.slider_text {
  z-index: 2;
  position: absolute;
  left: 10%;
  bottom: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: white;
  padding: 40px 40px 100px 40px;
  text-align: left;
  max-width: 400px;
}
.slider_text_title {
  font-size: 48px;
  font-weight: 600;
  color: var(--cBlue);
}
.slider_text_title:first-line {
  color: black;
  font-size: 30px;
}
.slider_text_desc {
  padding: 10px 0 40px;
  font-size: 18px;
  line-height: 28px;
}
.slider_text_desc strong {color: var(--cBlue);}
.slider_text_link {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.slider_text_link::after {
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -80px;
  width: calc(100% + 120px);
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
  content: "";
}

.slider_text_link a {
  color: #000;
  background: white;
  padding: 10px;
  position: relative;
  z-index: 4;
  font-weight: 600;
}

/************************************************/


#wyszukiwarka_mieszkan {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

#wyszukiwarka_mieszkan::before{
  content: "";
  position: absolute;
  height: 4px;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
  z-index: 2;
}
#search_text {
  width: 90%;
  max-width: 1300px;
  text-align: left;
  font-size: 32px;
}
#search_text:first-line{font-weight: 600;}
#search_form {
  display: flex;
  align-items: baseline;
  padding-top: 30px;
  flex-direction: row;
  justify-content: space-between;
}
#search_form select, .input_expand input, .field_label {
  border: 1px grey solid;
  padding: 10px 20px;
  font-weight: 400;
  /* A reset of styles, including removing the default dropdown arrow */
    appearance: none;
    background-color: transparent;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
}
#search_form select::-ms-expand, .input_expand input::-ms-expand {
  display: none;
}
.search_input {
  position: relative;
  padding: 0 15px
}
.search_input::after {
  content: "";
  width: 10px;
  height: 5px;
  position: absolute;
  top: calc(50% - 2px);
  right: 25px;
  z-index: 6;
  background-color: var(--cGBlue);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}
#search_form select {position: relative;z-index: 7;}
#search_form select option {
  padding: 10px 20px;
  border-bottom: 1px grey solid;
}
.input_expand input {
  width: 30px;
}
.field_label section {display: none;position: absolute;bottom:0;left: 0;transition: display 1s;}
.field_label:hover section {display: flex;}

/************************************************/


#main_inwestycje {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
#inwestycje_left {
  background: url('images/bg_inwestycje_a.jpg') no-repeat top left;
  background-size: cover;
  width: 40%;
  min-width: 400px;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#inwestycje_right {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
#inwestycje_right img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#inwestycjhe_container {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  max-width: 520px;

}
  #inwestycje_text {
    font-size: 32px;
    color: white;
    font-weight: 500;
    line-height: 46px;
    padding-bottom: 100px;
  }
  #inwestycje_text:first-line {
    font-size: 42px;
    font-weight: 600;
  }

  #inwestycje_linkContainer {
    display: flex;
    padding: 20px 40px;
    width: calc(100% + 160px);
    justify-content: space-between;
    font-size: 24px;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 100vw;
  }
  #inwestycje_linkContainer::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    background: white;
    z-index: 1;
  }
    #inwestycje_linkContainer section {
      position: relative;
      z-index: 5;
      font-weight: 500;
    }
    #inwestycje_linkContainer a {
      padding: 15px 30px;
      background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
      position:relative;
      z-index: 5;
      font-size: 16px;
      font-weight: 700;
      color: white;
    }


/************************************************/
#main_atuty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("images/bg_cechy.jpg") no-repeat left bottom;
  background-size: auto 100%;
}
  #atuty_text {
    padding: 40px;
    text-align: left;
  }
    #atuty_text h3 {
      font-size: 48px;
      font-weight: 500;
    }
    #atuty_text p {
      font-size: 16px;
      font-weight: 400;
      max-width: 800px;
      padding: 20px 0;
      line-height: 28px;
    }
      #atuty_container {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr )) !important;
        column-gap: 40px;
        row-gap: 40px;
        width: 100%;
        padding-bottom: 100px;
      }
        .atuty_item {
          display: flex;
          justify-content: space-between;
        }
          .atuty_img {
            padding: 20px;
            width: 150px;
            text-align: center;
          }
          .atuty_itemText {
            width: calc(100% - 150px);
          }
          .atuty_itemText p:nth-child(1) {
            font-size: 22px;
            font-weight: 500 ;
            text-align: left;
            padding: 20px 0 10px;
          }
          .atuty_itemText p:nth-child(2) {
            font-size: 12px;
            font-weight: 400 ;
            text-align: left;
            line-height: 24px;
          }

/************************************************/



#main_offer, #kat_foto {
  width: 100%;
  background: url("images/bg_polecane.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}
#offer_container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr ));
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  position: relative;
}
#main_offer .contentS {position :relative;}

#main_offer .contentS::before {
  content: "";
  position: absolute;
  height: 80px;
  left: 40px;
  width: 4px;
  bottom: 40px;
  z-index: 10;
  background: white;
}

#offer_container::before {
  content: "";
  position: absolute;
  top:0;
  left: 0;
  width: 80px;
  bottom: 0;
  background: #1e59ce;
}
#offer_container::after {
  content: "OFERTY SPECJALNE";
  transform: rotate(-90deg);
  transform-origin: 0 0;
  font-size: 24px;
  font-weight: 600;
  color: white;
  position: absolute;
  bottom: 120px;
  left: 27px;
}

  .offer_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: white;
    box-sizing: border-box;
    padding: 30px;
  }
    .offer_item a {width: 100%;height: 100%;}
    .offer_itemImg {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      width: 100%;
      overflow: hidden;
    }
      .offer_itemImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .offer_desc {
        width: 100%;
      }
      .offer_item p:nth-child(1){
        font-size: 16px;
        color: #1e59ce;
        font-weight: 400;
        padding: 10px 0;
      }
      .offer_item p:nth-child(2){
        font-size: 24px;
        font-weight: 500;
      }
      .offer_data {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr )) !important;
        column-gap: 10px;
        width: 100%;
        padding: 15px 0;
      }
      .offer_data div {
        text-align: center;
        font-weight: 600;
        font-size: 14px;
        position: relative;
        padding: 15px 0;
      }
      .offer_data div::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 10px;
        font-weight: 400;
      }
      .offer_data div:nth-child(1)::after {content: "Powierzchnia" !important;}
      .offer_data div:nth-child(2)::after {content: "Ilość pokoi" !important;}
      .offer_data div:nth-child(3)::after {content: "Piętro" !important;}
      .offer_data div:nth-child(1)::before, .offer_data div:nth-child(2)::before{
        content: "";
        position: absolute;
        bottom: -7px;
        right: 0;
        top: 7px;
        width: 1px;
        background: #dbe0f8;
      }
      .offer_bottom {width: 100%;padding-top: 15px;}
      .offer_price {font-size: 24px;font-weight: 600;}


/************************************************/

#main_form {
  width: 100%;
  display: flex;
  justify-content: center;
}
#main_form .contentS {
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
}
#main_form .contentS section {flex-basis: 50%;min-width: 300px;}
  #main_formLeft p:nth-child(1)             {font-size: 42px;font-weight: 500;}
  #main_formLeft p:nth-child(1):first-line  {font-size: 32px;font-weight: 400;}
  #main_formLeft p:nth-child(2)             {font-size: 24px;padding: 30px 0;}
  #main_formLeft p:nth-child(3)             {font-size: 24px;font-weight: 600;position: relative;}
  #main_formLeft p:nth-child(3)::after {
    content: "";
    bottom: -30px;
    left: 0;
    height: 4px;
    background: #1e59ce;
    position: absolute;
    z-index: 10;
    width: 200px;
  }
  #main_formForm {
    width: 100%;
    padding-bottom: 20px;
  }
    #main_formFormLine {
      display: flex;
      justify-content: space-between;
      padding-bottom: 10px;
    }
    #main_formForm input {
      border: 1px grey solid;
      padding: 20px;
    }
    #main_formForm input {
      width: 100%;
    }
    #main_formForm input[type="email"] {
      width: calc(100% - 40px);
    }
    #main_formForm input[type="submit"] {
      background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
      color: white;
      font-weight: 600;
      border: none;
    }
    #main_formFormLine input{
      width: calc(50% - 47px) !important;
    }
      #form_regulaminy {
        padding: 20px 0;
        display: grid;
        grid-template-columns: 20px 1fr!important;
        column-gap: 10px;
        row-gap: 10px;
        width: 100%;
      }
        #form_regulaminy label {
          font-size: 12px;
        }
    #main_formForm p {
      padding: 10px 0 20px;
      font-size: 14px;
      line-height: 24px;
    }

/************************************************/

#main_motto {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
  #motto_left {
    width: 40%;
  }
  #motto_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #motto_right {
    background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
    width: 60%;
    box-sizing: border-box;
    padding: 100px;
  }
  #motto_rightContent p:nth-child(2) {
    font-size:  32px;
    color: white;
    padding: 50px 0 50px;
    font-weight: 500;
  }
  #motto_rightContent p:nth-child(3) {
    font-size:  24px;
    color: white;
    font-weight: 400;
    padding-bottom: 50px;
    position: relative;
  }
  #motto_rightContent p:nth-child(3)::after {
    content: "";
    position: absolute;
    bottom:0;
    left: 0;
    width: 300px;
    height: 4px;
    background: white;
  }

/**********************************************/

#page_standard {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
  #page_title {
    position: relative;
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
  }
  #page_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 17px;
    z-index: 10;
    background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
  }
  #page_title h1 {
    position: relative;
    z-index: 10;
    color: white;
    font-size: 42px;
    text-transform: uppercase;
    font-weight: bold;
	text-align: center;
	max-width: 95%;
  }
    #page_titleBG {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 8;
     }
    #page_titleBG::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      z-index: 9;
    }
    #page_titleBG img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
#page_standard .contentS {
  padding: 40px 0;
  min-height: 400px;
}
#page_standard .contentS  p{
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 28px;
}

#page_map {
  width: 100%;
  height: 500px;
  position: relative;
}
#page_map iframe {
  width: 100% !important;;
  height: 100% !important;;
  min-width: 100% !important;;
  min-height: 100% !important;
}
#page_map::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 10;
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
}
#page_map::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 10;
  background: linear-gradient(90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
}
/***********************************************/


#kat_standard {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#kat_title {
  position: relative;
  width: 100%;
  padding: 200px 0 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#kat_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 17px;
  z-index: 10;
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
}
#kat_title h1 {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px 0 10px;
}
#kat_titleBG {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 8;
}
#kat_titleBG::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9;
}
#kat_titleBG img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#kat_logo {
  position: relative;
  z-index: 10;
  max-height: 100px;
  filter: brightness(1000%) contrast(1000%) grayscale(100%);
}
#kat_titleMore {
  position: relative;
  z-index: 10;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 40px;
  border: 3px white solid;
}
#kat_titleMore::after, #kat_titleMore::before {
  content: "";
  position: absolute;
  transform: rotate(-150deg);
  transform-origin: 0 1.5px;
  bottom: -40px;
  left: 50%;
  height: 3px;
  width: 20px;
  background: white;
}
#kat_titleMore::before {transform: rotate(-30deg);}

#kat_titleB {
  font-size: 60px;
  font-weight: 700;
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px 0;
  color: white;
}

#kat_titleC {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  z-index: 10;
  text-align: center;
  padding-bottom: 30px;
  color: white;
}

#kat_list {
  width: calc(100% - 40px;);
  padding: 100px 0;
}
  #kat_listTitles {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 13% 13% 13% 13% 13%;
    width: 100%;
    border-bottom: 1px #cacaca solid;
    padding: 25px 0;
  }
  #kat_listTitles::after {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background: #cacaca;
    content: "";
  }
  #kat_listTitles p{
    font-size: 13px !important;
    font-weight: 500 !important;
    text-align: left;
  }
  .itemContainer {
    display: grid;
    grid-template-columns: 1fr 13% 13% 13% 13% 13%;
    width: 100%;
    border-bottom: 1px #cacaca solid;
    position: relative;
  }
  .itemContainer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1e59ce;
    width: 0;
    height: 2px;
    transition: width  0.5s;
  }
  .itemContainer:hover::after {
    width: 100%;
  }


  .itemContainer p{
    text-align: left;
    padding: 25px 0;
    font-size: 16px !important;
    font-weight: 500 !important;
  }
    .itemContainer p:nth-child(1){
      letter-spacing: 2px;
      box-sizing: border-box;
      padding: 25px 0 25px 10px !important;
    }
    .itemContainer p:nth-child(6){
      color: #1e59ce !important;
      text-align: center !important;
    }

#kat_listTitles p:nth-child(1){
  padding: 25px 0 25px 0 !important;
}
#kat_listTitles p:nth-child(6){
  text-align: center !important;
}
#kat_foto {margin-top: 100px;margin-bottom: 100px;}
#kat_foto .contentS img{
  margin-top: -200px;
  margin-bottom: -200px;
  max-width: 100%;
}


#kat_desc, #lokal_desc {
  position: relative;
  width: 100%;
  padding: 100px 0 50px;
  display: flex;
  justify-content: center;
}
  #lokal_desc {padding: 50px 0 !important;}
#kat_desc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.80) 100%);
}
#kat_desc .contentS{
  position: relative;
  z-index: 2;
}
#kat_desc .contentS p{
  line-height: 28px;
}
  #kat_descTitle, #kat_listTitle, #lokal_descTitle {
    width: 100%;
    padding-bottom: 50px;
    position: relative;
    font-size: 48px;
    text-align: center;
  }
#kat_listTitle {padding-top: 50px;}

  #kat_descTitle::after, #kat_listTitle::after,  #lokal_descTitle::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: calc(50% - 100px);
    background: #1e57ca;
    height: 4px;
    z-index: 3;
    width: 200px;
  }
  #kat_descContent, #lokal_descContent {
    width: 100%;
    padding-top: 20px;
  }

  #lokal_descFeatures {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr )) !important;
    column-gap: 10px;
    row-gap: 20px;
    width: 100%;
    padding: 15px 0 25px;
  }
  #lokal_descFeatures div{
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    position: relative;
    padding: 15px 0;
  }
  #lokal_descFeatures div:last-child{
    color: #1e57ca;
  }

                  #lokal_descFeatures div::after{
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    left: 0;
                    right: 0;
                    font-size: 13px;
                    font-weight: 400;
                  }
                  #lokal_descFeatures div:nth-child(1)::after {content: "Numer mieszkania" !important;}
                  #lokal_descFeatures div:nth-child(2)::after {content: "Powierzchnia" !important;}
                  #lokal_descFeatures div:nth-child(3)::after {content: "Dodatkowa powierzchnia" !important;}
                  #lokal_descFeatures div:nth-child(4)::after {content: "Pokoje" !important;}
                  #lokal_descFeatures div:nth-child(5)::after {content: "Piętro" !important;}
                  #lokal_descFeatures div:nth-child(6)::after {content: "Cena" !important;}
                  #lokal_descFeatures div::before{
                    content: "";
                    position: absolute;
                    bottom: -7px;
                    right: 0;
                    top: 7px;
                    width: 1px;
                    background: #dbe0f8;
                  }
                  #lokal_descFeatures div:nth-child(6)::before{display: none;}
#lokal_descContent {
  line-height: 32px;
  font-size: 16px;
  padding: 20px 0;
}

#lokal_photo {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
}
#lokal_photo .contentS {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr )) !important;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
  padding-top: 20px;
}
#lokal_photo .contentS a{
  overflow: hidden;
}
#lokal_photo .contentS a img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}





  #kat_futuresBig {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

    .kat_fItem {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: stretch;
    }
    .kat_fItem p {font-size: 18px;}
    .kat_fItem h1, .kat_fItem h1 span, .kat_fItem strong {font-weight: bold !important;}

    .kat_fItem:nth-child(even) {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: stretch;
    }
    .kat_fItem:nth-child(even) .kat_fItemL{
      order: 2;
    }
    .kat_fItem:nth-child(even) .kat_fItemR{
      align-items: flex-end;
      text-align: right;
      background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
    }
      .kat_fItem:nth-child(even) .kat_fItemR p, .kat_fItem:nth-child(even) .kat_fItemR h1, .kat_fItem:nth-child(even) .kat_fItemR span, .kat_fItem:nth-child(even) .kat_fItemR strong{
        color: white;
      }


      .kat_fItemL {
        width: 45%;
      }
              .kat_fItemL img{
                object-fit: cover;
                width: 100%;
                height: 100%;
              }

      .kat_fItemR {
        box-sizing: border-box;
        position: relative;
        padding: 100px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        width: 55%;
      }

#kat_features {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
  padding: 50px 0;
}
#kat_features .contentS {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr )) !important;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
}
  .kat_featureItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
  }
  .kat_featureItem p {
    text-align: center;
    color: white;
    font-size: 18px;
    padding: 20px 0 0;
  }

/************************************************/
.bottomLine {position: relative;}
.bottomLine::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 10;
  background: #d2d2d2;
}
/**********************************************/

/* FOOTER */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 40px 0 60px;
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(-90deg, rgba(31,98,222,1) 0%, rgba(24,26,96,1) 100%);
}
footer .contentS {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  #footer_left {
    width: 300px;
  }
  #footer_right {
    width: calc(100% - 300px);
    display: flex;
    align-items: flex-end;

    flex-direction: column;
  }

  #footer_right nav, #footer_regulaminy {
    display: flex;
    justify-content: flex-end;
  }
  #footer_right nav a, #footer_regulaminy a {
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
  }
  #footer_right nav a:hover {font-weight: 700;}

  #www_info {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    width: 100%;
  }
  #www_info p {
    font-size: 11px;
    line-height: 20px;
    max-width: 95%;
    text-align: center;
  }

/* RESPONSIVE SETTINGS */

	@media all and (max-width:1600px) {
			.slider_text {
				bottom: 50px !important;
				padding: 20px 40px 50px 20px !important;
			}
	}
	@media all and (max-width:1400px) {
			.slider_text {
				bottom: 50px !important;
				padding: 20px 20px 50px 20px !important;
				max-width: 400px !important;
			}
			.slider_text_link::after {
				width: calc(100% + 100px);
			}
			#inwestycjhe_container {
				width: calc(100% - 40px);
				max-width: 520px;
				box-sizing: border-box;
			}
			#inwestycje_text {font-size: 28px;}			
			#inwestycje_left {width: 50%;}
			#inwestycje_right {width: 50%;}
			
	}
	@media all and (max-width:1200px) {
			#main_formLeft {box-sizing: border-box;padding-right: 20px;}
			#img_slider {min-height: 400px;}
			#inwestycje_text {font-size: 22px;}
			#inwestycje_linkContainer section {font-size: 20px;line-height: 24px;padding-right: 20px;text-align: left;}
			#motto_rightContent {text-align: left;}
			#inwestycje_left {width: 60%;}
			#inwestycje_right {width: 40%;}		

			footer .contentS, #footer_right, #footer_left {flex-direction: column;align-items: center;}
			#footer_left {text-align: center;padding-bottom: 40px;}
			footer #logotyp img {margin-bottom: 20px;}
			
	}
	
	@media all and (max-width:1000px) {
			header {flex-direction: column;}
			nav a {padding: 10px 30px 30px;}
	}
	@media all and (max-width:799px) {
			#main_form .contentS {flex-direction: column;}
			#main_formLeft {padding-bottom: 60px;}
			#motto_left {display: none;}
			#motto_right {width: 100%;}
			header #logotyp {padding: 20px 0;}		
			nav{flex-direction: column;align-items: center;}
			nav a {text-align: center;}
			#footer_right, #footer_left {width: 100%;}
			#header_right {padding: 0 !important;}
			
			#kat_listTitles p{transform: rotate(-90deg);transform-origin: 0 0;margin-bottom: -70px;}
			#kat_listTitles p:last-child{margin-left: 20px;}
	}
	@media all and (max-width:600px) {
		#inwestycje_left {width: 100%;}
		
		#inwestycje_right {display: none;}
		#inwestycjhe_container {width: 100%;}
			#inwestycje_linkContainer {
				width: calc(100% - 30px);
			}
			#kat_descContent, #lokal_descContent {
				text-align: center;
			}
			.kat_fItemL {display: none;}
			.kat_fItemR {width: 100%;text-align: center !important;}
			
			#main_form .contentS {padding: 50px 0;}
			
	}
	
	
	

	
/*************** THE END ********************/
