@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Open Sans", Calibri, sans-serif;
  color: #414957;
  line-height: 1.5;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}
a.link-blue {
  color: #1292ff;
}
a.link-blue:hover {
  color: #000000;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.block {
  display: block !important;
}

.width-full {
  width: 100%;
}

.font-regular {
  font-weight: 400 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.initial {
  text-transform: initial !important;
}

.blue {
  color: #235bb4 !important;
}

.white {
  color: #ffffff !important;
}

.lightblack {
  color: #414957 !important;
}

.lightgray-bg {
  background: #FFFFFFB3 !important;
}

.darkblue-bg {
  background: #235bb4 !important;
}

.darksteel-bg {
  background: #6e87a7 !important;
}

.white-bg {
  background: #ffffff !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.pl-9 {
  padding-left: 9rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  text-align: left;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #235bb4;
}
.title.title--big {
  font-size: 2.875rem;
}

.subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #235bb4;
  line-height: 1.35;
}
.subtitle.subtitle--medium {
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 1.35;
}
.subtitle.subtitle--small {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.55;
}

.input-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.input-icon {
  position: relative;
}
.input-icon input {
  min-width: 350px;
  margin: 0.5rem 1.5rem 0.5rem 0;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #414957;
  border: 1px solid #1292ff;
  border-radius: 5px;
  background: url("../img/icon_phone_input.svg") no-repeat 10px center;
}
.input-icon input::placeholder {
  color: inherit;
}
.input-icon span {
  position: absolute;
  left: 32px;
  top: 0.5rem;
  width: 1px;
  height: calc(100% - 1rem);
  background: #1292ff;
}
.input-icon.input-icon--blue input {
  width: 100%;
  padding-left: 4rem;
  border-color: #ffffff;
  color: #ffffff;
}
.input-icon.input-icon--blue input.pzuphone {
  background: url("../img/icon_phonewhite_input.svg") no-repeat 16px center #4895e6;
}
.input-icon.input-icon--blue input.pzumail {
  background: url("../img/icon_envelope_input.svg") no-repeat 12px center #4895e6;
}
.input-icon.input-icon--blue span {
  left: 50px;
  background: #ffffff;
}

.checkbox-form {
  display: none;
}

.checkbox-form-label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 0.875rem;
}
.checkbox-form-label .tick {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  display: inline-block;
  margin-right: 1rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
}

.checkbox-form:checked + .checkbox-form-label .tick {
  background: url("../img/tick-checkbox.svg") no-repeat center #ffffff;
}

.button {
  display: inline-block;
  margin-top: 0 auto;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 9999rem;
  border: 1px solid #1292ff;
  background: #1292ff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover {
  color: #1292ff;
  background: #ffffff;
}
.button.submit {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 5px;
}
.button.button--white {
  color: #1292ff;
  background: #ffffff;
}
.button.button--white:hover {
  color: #ffffff;
  background: #1292ff;
}
.button.button--grey {
  color: #235bb4;
  background: #FFFFFFB9;
}
.button.button--grey:hover {
  background: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
}

.header__wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 1920px;
  max-width: 92.5%;
  margin: 0 auto;
  padding-left: 5%;
}

.header__logo {
  padding-right: 2rem;
}

.header__menuList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header__menuItem {
  padding: 0.35rem 1rem;
}

.header__menuLink {
  color: #235bb4;
}
.header__menuLink:hover {
  font-weight: 700;
  text-decoration: underline;
}

.mobilebtn {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: none;
}
.mobilebtn:hover {
  opacity: 0.8;
}
.mobilebtn div {
  height: 100%;
  margin: auto;
  position: relative;
}
.mobilebtn span {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #235bb4;
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.mobilebtn span:first-child {
  top: 7px;
}
.mobilebtn span:nth-last-child(2) {
  width: 75%;
  top: 15px;
  right: 0;
}
.mobilebtn span:last-child {
  top: 23px;
}

.top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 2.5%;
}

.top__image {
  -webkit-box: 45%;
  -moz-box: 45%;
  -webkit-flex: 45%;
  -ms-flex: 45%;
  flex: 45%;
}

.top__desc {
  -webkit-box: 55%;
  -moz-box: 55%;
  -webkit-flex: 55%;
  -ms-flex: 55%;
  flex: 55%;
  padding-left: 3rem;
  padding-right: 10%;
}

.top__info {
  padding-left: 10%;
  padding-right: 20%;
}

.box {
  padding: 1.5rem 3rem 2rem;
  padding-left: 0;
  border-radius: 1.5rem;
  background: #ffffff;
  -webkit-box-shadow: 4px 10px 20px 0 #0000001a;
  -moz-box-shadow: 4px 10px 20px 0 #0000001a;
  box-shadow: 4px 10px 20px 0 #0000001a;
}

.tablewrapper {
  overflow-x: auto;
  background: #f3f4f4;
}

.table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.table tr {
  border-bottom: 1px solid rgba(98, 109, 128, 0.5);
}
.table td {
  position: relative;
  vertical-align: top;
}
.table td:not(:first-child) {
  vertical-align: middle;
}
.table.table--medicare thead th:not(:first-child) {
  min-width: 250px;
}
.table.table--medicare tbody tr:not(.visible) td {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.table thead {
  font-size: 1.125rem;
  color: #ffffff !important;
}
.table thead th, .table tfoot td {
  min-width: 125px;
  padding: 0.75rem;
  border-left: 3px solid #ffffff;
}
.table thead th:first-child {
  width: 100%;
  min-width: 375px;
  padding-left: 5rem;
  text-align: left;
  border-left: none;
  background: #ffffff;
}
.table thead th:nth-child(odd):not(:first-child) {
  background: #6e87a7;
}
.table thead th:nth-child(even) {
  background: #235bb4;
}
.table thead th:last-child {
  border-spacing: 0;
}
.table tbody {
  font-size: 0.875rem;
  font-weight: 700;
  color: #414957;
}
.table tbody tr:not(.visible) {
  display: none;
}
.table tbody tr.active {
  display: table-row;
}
.table tr.specjalny_row2 {
  background: #fbfbfb !important;
}
.table tr.specjalny_row2 td:first-child {
  background: none;
}
.table tbody td {
  position: relative;
  padding: 1rem 0.75rem;
  border-left: 3px solid #ffffff;
}
.table tbody td p {
  padding: 0;
  margin: 0;
}
.table tbody td:first-child {
  min-width: 375px;
  padding-left: 3rem;
  text-align: left;
  background: #ffffff;
  border-left: none;
}
.table tbody td:first-child::before {
  left: auto;
}
.table tbody td:nth-child(odd):not(:first-child) {
  background: #f3f4f4;
}
.table tbody td:nth-child(even) {
  background: #dce6f5;
}
.table tbody td:last-child {
  border-spacing: 0;
}
.table tbody td:last-child::before {
  width: 100%;
}
.table tbody td.cellmore {
  position: relative;
  padding-left: 5rem;
  background: #f3f4f4;
  cursor: pointer;
}
.table tbody td.cellmore::before {
  display: none;
}
.table tbody td.cellmore::after {
  content: url("../img/arrow.svg");
  position: absolute;
  top: 1rem;
  left: 3rem;
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
.table tbody td.cellmore.active::after {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.checkbox-label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 36px;
  height: 18px;
  margin: 0.5rem auto 0;
  padding: 0 0.15rem;
  border-radius: 9px;
  background: #d7dadf;
  cursor: pointer;
}
.checkbox-label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: inherit;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.checkbox-label.active {
  background: #2fc657 !important;
}
.checkbox-label.active::before {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.checkbox {
  display: none;
}

.checkbox-wrapper {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.checkbox-wrapper .checkbox-label {
  margin-top: 0;
  background: #6e87a7;
}

.section.section--gray {
  background: #f7f7f7;
}
.section.section--lightblue {
  background: #f2f6fb;
}
.section.section--gradient {
  background: linear-gradient(180deg, #DCE6F5 0%, #DCE6F50F 100%);
}

.section__wrapper {
  width: 1920px;
  max-width: 92.5%;
  margin: 0 auto;
  padding: 5rem 0;
}
.section__wrapper.section__wrapper--top {
  margin-top: -1rem;
  padding-top: 0;
}
.section__wrapper.section__wrapper--small {
  max-width: 80%;
}
.section__wrapper.section__wrapper--faq {
  max-width: 100%;
  padding-top: 0;
}

.payment {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.payment__item {
  -webkit-box: 0 1 calc(33.33% - 10%);
  -moz-box: 0 1 calc(33.33% - 10%);
  -webkit-flex: 0 1 calc(33.33% - 10%);
  -ms-flex: 0 1 calc(33.33% - 10%);
  flex: 0 1 calc(33.33% - 10%);
  margin: 1rem 5%;
}

.payment__image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 109px;
  height: 109px;
  margin: 2rem auto;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 24px 0 #0000001a;
  -moz-box-shadow: 0 10px 24px 0 #0000001a;
  box-shadow: 0 10px 24px 0 #0000001a;
}

.icons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 7rem;
}

.icons__item {
  -webkit-box: 0 1 calc(25% - 3rem);
  -moz-box: 0 1 calc(25% - 3rem);
  -webkit-flex: 0 1 calc(25% - 3rem);
  -ms-flex: 0 1 calc(25% - 3rem);
  flex: 0 1 calc(25% - 3rem);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 1.5rem;
}

.icons__image {
  min-width: 40px;
}

.icons__desc {
  padding-left: 1.5rem;
}

.insurance__price {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
}
th p {color: #fff !important;}

#wypelnij_formularz h2 {color: #fff !important;}
#wypelnij_formularz input[type=text] {border-color: #fff; color: #fff;}
#wypelnij_formularz input::placeholder {color: rgba(255,255,255,0.7);}


footer p , footer h3 {color: #fff !important;}
.insurance__tiles {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.insurance__tilesItem {
  -webkit-box: 0 1 calc(33.33% - 5rem);
  -moz-box: 0 1 calc(33.33% - 5rem);
  -webkit-flex: 0 1 calc(33.33% - 5rem);
  -ms-flex: 0 1 calc(33.33% - 5rem);
  flex: 0 1 calc(33.33% - 5rem);
  position: relative;
  margin: 5rem 2.5rem 3rem;
  padding: 7rem 1.5rem 2rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 12px 30px 0 #0000001a;
  -moz-box-shadow: 0 12px 30px 0 #0000001a;
  box-shadow: 0 12px 30px 0 #0000001a;
}

.insurance__tilesImage {
  position: absolute;
  left: 50%;
  top: -5rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.insurance__tilesImage.insurance__tilesImage--bg {
  width: 175px;
  height: 175px;
  line-height: 190px;
  background: url("../img/insurance_bg.svg") no-repeat center;
}

.insurance__link {
  font-weight: 700;
  color: #1292ff;
}
.insurance__link:hover {
  color: #235bb4;
}

.medicare {
  padding: 7rem 10% 0;
}

.medicare__wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 3rem;
}

.medicare__desc {
  -webkit-box: 65%;
  -moz-box: 65%;
  -webkit-flex: 65%;
  -ms-flex: 65%;
  flex: 65%;
  padding-right: 2rem;
}

.medicare__image {
  -webkit-box: 35%;
  -moz-box: 35%;
  -webkit-flex: 35%;
  -ms-flex: 35%;
  flex: 35%;
  margin-top: -14rem;
}

.medicare__tiles {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.5rem 7rem;
}

.medicare__tilesItem {
  -webkit-box: 0 1 calc(50% - 5rem);
  -moz-box: 0 1 calc(50% - 5rem);
  -webkit-flex: 0 1 calc(50% - 5rem);
  -ms-flex: 0 1 calc(50% - 5rem);
  flex: 0 1 calc(50% - 5rem);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 2rem 2.5rem;
  background: #ffffff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 12px 30px 0 #0000001a;
  -moz-box-shadow: 0 12px 30px 0 #0000001a;
  box-shadow: 0 12px 30px 0 #0000001a;
  overflow: hidden;
}

.medicare__tilesDesc {
  -webkit-box: 65%;
  -moz-box: 65%;
  -webkit-flex: 65%;
  -ms-flex: 65%;
  flex: 65%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-direction: column;
  -webkit-box-orient: column;
  -moz-box-direction: column;
  -moz-box-orient: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
  font-size: 0.875rem;
}

.medicare__link {
  color: #414957;
}
.medicare__link:hover {
  color: #1292ff;
}

.medicare__tilesImage {
  -webkit-box: 35%;
  -moz-box: 35%;
  -webkit-flex: 35%;
  -ms-flex: 35%;
  flex: 35%;
  background-repeat: no-repeat;
  background-size: cover;
}
.medicare__tilesImage.medicare__tilesImage--left {
  background-image: url("../img/medi_left.png");
}
.medicare__tilesImage.medicare__tilesImage--right {
  background-image: url("../img/medi_right.png");
}

.medicare__box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 4rem 0;
  border-radius: 1.5rem;
  background: #ffffff;
  overflow: hidden;
  -webkit-box-shadow: 4px 10px 20px 0 #0000001a;
  -moz-box-shadow: 4px 10px 20px 0 #0000001a;
  box-shadow: 4px 10px 20px 0 #0000001a;
}

.medicare__boxImage {
  min-width: 110px;
  padding: 2rem;
  background: #1292ff;
}
.medicare__boxImage.medicare__boxImage--darkblue {
  background: #235bb4;
}

.medicare__boxDesc {
  padding: 2rem;
}

.medicare__boxList {
  padding-left: 1.5rem;
}
.medicare__boxList li {
  margin: 1rem 0;
}
.medicare__boxList li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 15px 2px -22px;
  border-radius: 50%;
  background: #1292ff;
}

.medicare__premium {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.medicare__premiumItem {
  -webkit-box: calc(25% - 2rem);
  -moz-box: calc(25% - 2rem);
  -webkit-flex: calc(25% - 2rem);
  -ms-flex: calc(25% - 2rem);
  flex: calc(25% - 2rem);
  margin: 1rem;
  text-align: center;
}
.medicare__premiumItem:last-child .medicare__premiumImage::after {
  display: none;
}

.medicare__premiumImage {
  position: relative;
  z-index: 0;
}
.medicare__premiumImage::after {
  content: url("../img/premium_dots.svg");
  position: absolute;
  top: 40%;
  right: -6rem;
  z-index: -1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.medicare__premiumDesc {
  margin-top: -1rem;
  font-size: 0.875rem;
}

.faq {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 5%;
}

.faq__image {
  -webkit-box: 35%;
  -moz-box: 35%;
  -webkit-flex: 35%;
  -ms-flex: 35%;
  flex: 35%;
}

.faq__questions {
  -webkit-box: 65%;
  -moz-box: 65%;
  -webkit-flex: 65%;
  -ms-flex: 65%;
  flex: 65%;
  padding-left: 4rem;
  padding-top: 6rem;
}

.faq__item {
  margin: 3rem 0;
}
.faq__item.active .faq__desc {
  display: block;
}
.faq__item.active .faq__title::before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq__title {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(98, 109, 128, 0.22);
  cursor: pointer;
}
.faq__title::before {
  content: url("../img/arrow.svg");
  position: absolute;
  left: 0;
  top: calc(40% - 12px);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.faq__desc {
  display: none;
}

.faq__documents {
  padding: 0 15%;
}

.faq__file {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 2rem 0;
}
.faq__file a {
  padding-left: 1rem;
  color: #414957;
}
.faq__file a:hover {
  text-decoration: underline;
}

.pzu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pzu__left {
  -webkit-box: 55%;
  -moz-box: 55%;
  -webkit-flex: 55%;
  -ms-flex: 55%;
  flex: 55%;
}
.pzu__left.pzu__left--club {
  padding-left: 10%;
  padding-right: 3rem;
}

.pzu__right {
  -webkit-box: 45%;
  -moz-box: 45%;
  -webkit-flex: 45%;
  -ms-flex: 45%;
  flex: 45%;
}

.pzu__contacttext {
  font-size: 1.5rem;
}

.pzu__form {
  padding: 5rem 10%;
  color: #ffffff;
  background: linear-gradient(223deg, #1292FF 0%, #235BB4 100%);
  border-radius: 1.5rem;
}

.pzu__formTitle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
}
.pzu__formTitle img {
  padding-right: 2rem;
}
.pzu__formTitle p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.pzu__formTitle a {
  color: #ffffff;
  text-decoration: underline;
}
.pzu__formTitle a:hover {
  color: #000000;
}

.footer {
  background: #235bb4;
  border-top: 7px solid #1292ff;
}

.footer__wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1920px;
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 0.875rem;
  color: #ffffff;
}
.footer__wrapper a {
  color: #ffffff;
}
.footer__wrapper a:hover {
  color: #1292ff;
}

.footer__left {
  -webkit-box: 20%;
  -moz-box: 20%;
  -webkit-flex: 20%;
  -ms-flex: 20%;
  flex: 20%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-direction: column;
  -webkit-box-orient: column;
  -moz-box-direction: column;
  -moz-box-orient: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__leftAgency {
  font-size: 0.6875rem;
}

.footer__right {
  -webkit-box: 80%;
  -moz-box: 80%;
  -webkit-flex: 80%;
  -ms-flex: 80%;
  flex: 80%;
  padding-left: 2rem;
}

.footer__box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__boxLeft {
  margin-right: 15%;
}

.footer__boxRight li {
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer__menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #1292ff;
}
.footer__menu h3 {
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 0.875rem;
}

.footer__menuList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__menuItem {
  margin: 0.5rem 0;
}
.footer__menuItem:last-child .footer__menuLink {
  border-right: none;
}

.footer__menuLink {
  padding: 0.25rem 2rem;
  border-right: 1px solid #1292ff;
}
.footer__menuLink:hover {
  font-weight: 700;
  text-decoration: underline;
}

.hide-calendar .ui-datepicker-calendar{
  display: none;
}

.oclesnika_warianty .label_container,
.oclesnika_zgody .label_container ,
.pzt_zgody .label_container {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-height: 150px;
  overflow: auto;
}

.label_container input[type="radio"],
.label_container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  box-shadow: none !important;
}

.oclesnika_warianty .label_container input:checked~.checkmark:after {
  display: block;
}

.oclesnika_zgody .label_container {
  padding-left: 25px;
  font-size: 18px;
}

.oclesnika_zgody .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #b3b3b3;
  background: none;
}

.oclesnika_zgody .label_container:hover input~.checkmark {
  background-color: #eee;
}

.oclesnika_zgody .label_container input:checked~.checkmark {
  background-color: #000;
}

.oclesnika_zgody .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.oclesnika_zgody .label_container input:checked~.checkmark:after {
  display: block;
}

.oclesnika_zgody .label_container .checkmark:after {
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
}
.wypelnij_deklaracje_button {border: none;}
.wypelnij_deklaracje_button a {padding: 10px 20px; background: #235bb4; color: #fff; font-weight: 900; font-size: 16px;}
input[type=reset] {border: 2px solid #999 !important; color: #999 !important; opacity: 0.5 !important;}
input[type=reset]:hover {opacity: 1 !important;}

.datepickerm2.etap1::placeholder {color: #333 !important;}
.datepickerm2.etap1, #wazna_od {background: #fff url(../img/icon_calendar2.png) no-repeat center left 15px; color: #333 !important;padding-left: 80px;}
main .form-control, .login_form .form-control, #uposazeni input[type=text], #partner input[type=text], #wspolubezpieczeni input[type=text], #uposazeni input[type=email], #partner input[type=email], #wspolubezpieczeni input[type=email], #uposazeni input[type=number], #partner input[type=number], #wspolubezpieczeni input[type=number] {margin-bottom: 5px;border-radius: 0;
  background: #fff;
  border: 1px solid #f1f1f1;
  height: 50px;
  line-height: 50px;
  width: 100%;
  padding: 0.375rem 0.75rem;}
.oclesnika_zgody .label_container input:checked~.checkmark {background-color: #1292ff;}
.dane_ubezp {background: #f7f7f7;}
.oclesnika_h5, #uposazeni h2, #partner h2, #wspolubezpieczeni h2 {color: #235bb4; text-transform: uppercase;}
.btn-default:hover , .btn-default {background-color: #fff !important; color: #235bb4;}
#partner .col3 {width: 31% !important;}
#uposazeni .col3, #partner .col3, #wspolubezpieczeni .col3 {width: 31%; margin-right: 2%;}
#uposazeni .col1, #partner .col1, #wspolubezpieczeni .col1 {width: 98%;}
#wypelnij_formularz p {color: #fff;}
input:invalid:focus {border: 2px solid darkred;}
*::-webkit-validation-bubble-message {display: block;}

@media only screen and (max-width: 576px) {
  .title,
.title.title--big {
    font-size: 1.875rem;
  }

  .pl-9 {
    padding-left: 2rem !important;
  }

  .section__wrapper,
.footer__wrapper {
    max-width: 92.5% !important;
  }

  .header__wrapper {
    padding-left: 0;
  }

  .top,
.top__info {
    padding-left: 0;
    padding-right: 0;
  }

  .top__image {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-bottom: 4rem;
  }

  .top__desc {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .payment__item {
    -webkit-box: 0 1 calc(50% - 5%);
    -moz-box: 0 1 calc(50% - 5%);
    -webkit-flex: 0 1 calc(50% - 5%);
    -ms-flex: 0 1 calc(50% - 5%);
    flex: 0 1 calc(50% - 5%);
    margin-left: 2.5%;
    margin-right: 2.5%;
  }

  .icons__item {
    -webkit-box: 0 1 calc(50% - 1.5rem);
    -moz-box: 0 1 calc(50% - 1.5rem);
    -webkit-flex: 0 1 calc(50% - 1.5rem);
    -ms-flex: 0 1 calc(50% - 1.5rem);
    flex: 0 1 calc(50% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .icons__image {
    min-width: 30px;
  }

  .icons__desc {
    padding-left: 0.75rem;
    font-size: 0.8125rem;
  }

  .insurance__tilesItem {
    -webkit-box: calc(100% - 2rem);
    -moz-box: calc(100% - 2rem);
    -webkit-flex: calc(100% - 2rem);
    -ms-flex: calc(100% - 2rem);
    flex: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .medicare {
    padding-left: 0;
    padding-right: 0;
  }

  .medicare__wrapper {
    -webkit-box-direction: column-reverse;
    -webkit-box-orient: column-reverse;
    -moz-box-direction: column-reverse;
    -moz-box-orient: column-reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .medicare__desc,
.medicare__image {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding-right: 0;
  }

  .medicare__tiles {
    margin-left: 0;
    margin-right: 0;
  }

  .medicare__tilesItem {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .medicare__tilesImage {
    display: none;
  }

  .medicare__box {
    -webkit-box-direction: column;
    -webkit-box-orient: column;
    -moz-box-direction: column;
    -moz-box-orient: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .input-icon {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .input-icon input {
    width: 100%;
    min-width: auto;
  }

  .medicare__premiumItem {
    -webkit-box: calc(100% - 2rem);
    -moz-box: calc(100% - 2rem);
    -webkit-flex: calc(100% - 2rem);
    -ms-flex: calc(100% - 2rem);
    flex: calc(100% - 2rem);
  }
  .medicare__premiumItem:not(:last-child) {
    margin-bottom: 9rem;
  }

  .medicare__premiumImage::after {
    transform: translateX(50%) rotate(90deg);
    right: 50%;
    top: auto;
    bottom: -7rem;
  }

  .medicare__premiumDesc {
    margin-top: -2rem;
  }

  .faq__image,
.faq__questions {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .faq__questions {
    padding-left: 1rem;
  }

  .faq__documents {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pzu__left {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .pzu__left.pzu__left--club {
    padding-left: 5%;
    padding-right: 0;
  }

  .pzu__right {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .pzu__right.pzu__right--club {
    margin-top: 4rem;
    padding-left: 5%;
  }

  .footer__wrapper {
    -webkit-box-direction: column-reverse;
    -webkit-box-orient: column-reverse;
    -moz-box-direction: column-reverse;
    -moz-box-orient: column-reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .footer__left,
.footer__right {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding-left: 0;
  }

  .footer__left {
    margin-top: 3rem;
  }

  .footer__boxLeft {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-right: 0;
  }

  .footer__boxRight {
    margin-top: 2rem;
  }

  .footer__menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__menu h3 {
    margin-bottom: 0.5rem;
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .footer__menuList {
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-direction: column;
    -webkit-box-orient: column;
    -moz-box-direction: column;
    -moz-box-orient: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__menuLink {
    padding-left: 0;
    border-right: none;
  }
}
@media only screen and (max-width: 768px) and (min-width: 577px) {
  .section__wrapper,
.footer__wrapper {
    max-width: 92.5% !important;
  }

  .header__wrapper {
    padding-left: 0;
  }

  .top,
.top__info {
    padding-left: 0;
    padding-right: 0;
  }

  .top__image {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-bottom: 4rem;
  }

  .top__desc {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .payment__item {
    -webkit-box: 0 1 calc(50% - 5%);
    -moz-box: 0 1 calc(50% - 5%);
    -webkit-flex: 0 1 calc(50% - 5%);
    -ms-flex: 0 1 calc(50% - 5%);
    flex: 0 1 calc(50% - 5%);
    margin-left: 2.5%;
    margin-right: 2.5%;
  }

  .icons__item {
    -webkit-box: 0 1 calc(50% - 3rem);
    -moz-box: 0 1 calc(50% - 3rem);
    -webkit-flex: 0 1 calc(50% - 3rem);
    -ms-flex: 0 1 calc(50% - 3rem);
    flex: 0 1 calc(50% - 3rem);
  }

  .insurance__tilesItem {
    -webkit-box: calc(100% - 5rem);
    -moz-box: calc(100% - 5rem);
    -webkit-flex: calc(100% - 5rem);
    -ms-flex: calc(100% - 5rem);
    flex: calc(100% - 5rem);
  }

  .medicare {
    padding-left: 0;
    padding-right: 0;
  }

  .medicare__wrapper {
    -webkit-box-direction: column-reverse;
    -webkit-box-orient: column-reverse;
    -moz-box-direction: column-reverse;
    -moz-box-orient: column-reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .medicare__desc,
.medicare__image {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .medicare__tiles {
    margin-left: 0;
    margin-right: 0;
  }

  .medicare__tilesItem {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .input-icon {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .input-icon input {
    width: 100%;
    min-width: auto;
  }

  .medicare__premiumItem {
    -webkit-box: calc(50% - 2rem);
    -moz-box: calc(50% - 2rem);
    -webkit-flex: calc(50% - 2rem);
    -ms-flex: calc(50% - 2rem);
    flex: calc(50% - 2rem);
  }
  .medicare__premiumItem:nth-child(2) .medicare__premiumImage::after, .medicare__premiumItem:last-child .medicare__premiumImage::after {
    display: none;
  }

  .faq__image,
.faq__questions {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .faq__questions {
    padding-left: 2rem;
  }

  .faq__documents {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .pzu__left {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .pzu__left.pzu__left--club {
    padding-left: 5%;
    padding-right: 0;
  }

  .pzu__right {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
  .pzu__right.pzu__right--club {
    margin-top: 4rem;
    padding-left: 5%;
  }

  .footer__wrapper {
    -webkit-box-direction: column-reverse;
    -webkit-box-orient: column-reverse;
    -moz-box-direction: column-reverse;
    -moz-box-orient: column-reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .footer__left,
.footer__right {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding-left: 0;
  }

  .footer__left {
    margin-top: 2rem;
  }

  .footer__menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__menu h3 {
    margin-bottom: 0.5rem;
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 769px) {
  .top__info {
    padding-left: 0;
    padding-right: 10%;
  }

  .top__desc {
    padding-right: 0;
  }

  .icons__item {
    -webkit-box: 0 1 calc(33.33% - 3rem);
    -moz-box: 0 1 calc(33.33% - 3rem);
    -webkit-flex: 0 1 calc(33.33% - 3rem);
    -ms-flex: 0 1 calc(33.33% - 3rem);
    flex: 0 1 calc(33.33% - 3rem);
  }

  .insurance__tilesItem {
    -webkit-box: 0 1 calc(50% - 5rem);
    -moz-box: 0 1 calc(50% - 5rem);
    -webkit-flex: 0 1 calc(50% - 5rem);
    -ms-flex: 0 1 calc(50% - 5rem);
    flex: 0 1 calc(50% - 5rem);
  }

  .medicare__tilesItem {
    -webkit-box: 0 1 calc(100% - 5rem);
    -moz-box: 0 1 calc(100% - 5rem);
    -webkit-flex: 0 1 calc(100% - 5rem);
    -ms-flex: 0 1 calc(100% - 5rem);
    flex: 0 1 calc(100% - 5rem);
  }

  .medicare__premiumItem {
    -webkit-box: calc(50% - 2rem);
    -moz-box: calc(50% - 2rem);
    -webkit-flex: calc(50% - 2rem);
    -ms-flex: calc(50% - 2rem);
    flex: calc(50% - 2rem);
  }
  .medicare__premiumItem:nth-child(2) .medicare__premiumImage::after, .medicare__premiumItem:last-child .medicare__premiumImage::after {
    display: none;
  }

  .pzu.pzu--contact .pzu__left,
.pzu.pzu--contact .pzu__right {
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .footer__wrapper {
    max-width: 90%;
  }

  .footer__menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__menu h3 {
    margin-bottom: 0.5rem;
    -webkit-box: 100%;
    -moz-box: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .mobilebtn {
    display: block;
  }

  .header__menuList {
    display: none;
  }

  .ismobile .mobilebtn span:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  .ismobile .mobilebtn span:nth-last-child(2) {
    display: none;
  }
  .ismobile .mobilebtn span:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .ismobile .header__menuList {
    width: 100%;
    height: 100vh;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 900;
    padding: 2rem;
    padding-left: 1rem;
    background: #ffffff;
    overflow-y: auto;
  }
  .ismobile .header__menuItem {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

/*# sourceMappingURL=style.css.map */
