@font-face {
  src: url("fonts/Poppins-Bold.ttf");
  font-family: PoppinsBold;
}
@font-face {
  src: url("fonts/Poppins-Regular.ttf");
  font-family: PoppinsRegular;
}
@font-face {
  src: url("fonts/Poppins-Light.ttf");
  font-family: PoppinsLight;
}
a, a:focus, a:hover {
  text-decoration: none;
  color: inherit;
  outline: none;
}

input:focus, textarea:focus, button:focus {
  outline: none;
}

.nav > li > a:focus, .nav > li > a:hover {
  background: initial;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: PoppinsLight;
}

body {
  font-family: PoppinsRegular;
}

header.relative {
  position: relative;
}
@media (min-width: 1001px) {
  header.relative {
    height: 150px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  header.relative {
    height: 120px;
  }
}

header {
  padding-left: 8.5% !important;
  padding-right: 8.5% !important;
}
@media (min-width: 1001px) {
  header {
    width: 100%;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 35px;
  }
}
@media (min-width: 1001px) and (min-width: 1001px) and (max-width: 1500px) {
  header {
    padding-top: 15px;
  }
}
@media (max-width: 998px) {
  header .navbar {
    min-height: 75px;
    margin-bottom: 5px;
  }
}
header .navbar-nav {
  padding-top: 22.5px;
  padding-bottom: 32.5px;
}
@media (min-width: 1001px) and (max-width: 1500px) {
  header .navbar-nav {
    padding-top: 12.5px;
  }
}
header .navbar-header .box {
  border-radius: 2px;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}
header .navbar-header .btn {
  position: absolute;
  top: 7.5px;
  right: 0;
  width: 50px;
  cursor: pointer;
  padding-left: 0;
  padding-right: 0;
  margin-top: 10px;
}
header .navbar-header span {
  display: block;
  margin: 0 auto;
  width: 60%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  height: 4px;
  background: #273E73;
  transition: all 0.3s;
  position: relative;
}
header .navbar-header span + span {
  margin-top: 7px;
}
header .navbar-header .active span:nth-child(1) {
  animation: ease 0.7s top forwards;
}
header .navbar-header .not-active span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}
header .navbar-header .active span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}
header .navbar-header .not-active span:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}
header .navbar-header .active span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}
header .navbar-header .not-active span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 11px;
    transform: rotate(0);
  }
  100% {
    top: 11px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 11px;
    transform: rotate(45deg);
  }
  50% {
    top: 11px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 11px;
    transform: rotate(0);
  }
  100% {
    bottom: 11px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 11px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 11px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 998px) {
  header .navbar-brand {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 998px) {
  header .navbar-brand img {
    width: 85px;
    height: auto;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  header .navbar-brand img {
    width: 105px;
  }
}
header li a {
  padding-left: 17.5px;
  padding-right: 17.5px;
  color: #000;
  display: table;
  position: relative;
}
@media (min-width: 1501px) {
  header li a {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  header li a {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  header li a {
    font-size: 15px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  header li a {
    font-size: 15px;
  }
}
header li a::after {
  content: "";
  width: 0;
  transition: 0.3s ease;
}
header li a:hover::after {
  position: absolute;
  content: "";
  background: #273E73;
  left: 15px;
  bottom: 7.5px;
  width: calc(100% - 30px );
  height: 1px;
  transition: 0.3s ease;
}
@media (min-width: 1001px) {
  header li.contact {
    margin-right: 22.5px;
  }
}
header li a.tel {
  color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
  background: #273E73;
  transition: 0.3s ease;
  border: 1px solid #273E73;
}
header li a.tel:hover {
  background: transparent;
  border: 1px solid #273E73;
  color: #000;
}
header li a.tel:hover::after {
  display: none;
}
@media (max-width: 998px) {
  header li a.tel {
    padding-left: 15px;
    padding-right: 15px;
  }
}

button.main, a.main {
  margin-top: 10px;
  text-align: center;
  display: block;
  padding: 10px;
  background: #273E73;
  border: 2px solid transparent;
  color: #fff;
  width: 220px;
  height: 54px;
  transition: 0.3s ease;
}
@media (min-width: 1501px) {
  button.main, a.main {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  button.main, a.main {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  button.main, a.main {
    font-size: 15px;
  }
}
button.main span, a.main span {
  margin: 0 auto;
  font-family: PoppinsBold;
}

button.main:hover, a.main:hover {
  background: #295087;
  transition: 0.3s ease;
}

button.sec, a.sec {
  background: #F5F5F5;
  color: #000000;
  transition: 0.3s ease;
}
button.sec span, a.sec span {
  font-family: PoppinsRegular;
}

button.sec:hover, a.sec:hover {
  transition: 0.3s ease;
  background: #273E73;
  color: #ffffff;
}

footer {
  padding-left: 8.5% !important;
  padding-right: 8.5% !important;
  background: #222222;
  color: #ffffff;
  padding-top: 90px;
  padding-bottom: 70px;
  position: relative;
}
@media (max-width: 998px) {
  footer {
    padding-top: 45px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}
@media (max-width: 998px) {
  footer .col-md-4 {
    margin-bottom: 30px;
  }
}
@media (max-width: 998px) {
  footer .col-md-4:last-of-type {
    margin-bottom: 0;
  }
}
footer .web-by {
  font-size: 14px;
  position: absolute;
  left: 8.5%;
  bottom: 70px;
}
@media (max-width: 998px) {
  footer .web-by {
    bottom: 25px;
  }
}
footer .web-by div:first-of-type {
  margin-bottom: 5px;
}
footer h3 {
  margin-bottom: 50px;
}
@media (min-width: 1501px) {
  footer h3 {
    font-size: 36px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer h3 {
    font-size: 26px;
  }
}
@media (max-width: 998px) {
  footer h3 {
    font-size: 24px;
  }
}
@media (max-width: 998px) {
  footer h3 {
    margin-bottom: 25px;
  }
}
footer h3.sm {
  margin-bottom: 25px;
}
@media (max-width: 998px) {
  footer h3.sm {
    margin-bottom: 15px;
  }
}
footer .info-wrap:nth-child(2) {
  margin-bottom: 35px;
}
@media (max-width: 998px) {
  footer .info-wrap:nth-child(2) {
    margin-bottom: 20px;
  }
}
footer .info-wrap .item {
  line-height: 1.7em;
}
@media (min-width: 1501px) {
  footer .info-wrap .item {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer .info-wrap .item {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  footer .info-wrap .item {
    font-size: 15px;
  }
}
footer ul {
  padding-left: 0;
  list-style-type: none;
}
footer ul li {
  margin-top: 15px;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 1501px) {
  footer ul li {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer ul li {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  footer ul li {
    font-size: 15px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer ul li {
    padding-bottom: 15px;
  }
}
footer ul li::before {
  content: "";
  width: 0;
}
footer ul li:hover::before {
  width: 80%;
  height: 1px;
  transition: 0.6s ease;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
}
@media (max-width: 998px) {
  footer ul li:hover::before {
    width: 100%;
  }
}
footer ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #454545;
  width: 80%;
  height: 1px;
}
@media (max-width: 998px) {
  footer ul li::after {
    width: 100%;
  }
}
footer textarea {
  resize: none;
  min-height: 160px;
}
footer input, footer textarea {
  border: 1px solid #454545;
  padding: 17px 0 17px 24px;
  background: transparent;
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 1501px) {
  footer input, footer textarea {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer input, footer textarea {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  footer input, footer textarea {
    font-size: 15px;
  }
}
footer input::placeholder, footer textarea::placeholder {
  color: #ffffff;
}
@media (min-width: 1501px) {
  footer input::placeholder, footer textarea::placeholder {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  footer input::placeholder, footer textarea::placeholder {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  footer input::placeholder, footer textarea::placeholder {
    font-size: 15px;
  }
}
footer input:focus, footer textarea:focus {
  border: 1px solid #fff;
}
footer .btn-wrap {
  text-align: center;
}
@media (max-width: 998px) {
  footer .btn-wrap {
    text-align: left;
  }
}
footer .btn-wrap button {
  margin-top: 3px;
}

.kontakt-podstrana textarea {
  resize: none;
  min-height: 160px;
}
.kontakt-podstrana input, .kontakt-podstrana textarea {
  border: 1px solid #454545;
  padding: 17px 0 17px 24px;
  background: transparent;
  color: black;
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 1501px) {
  .kontakt-podstrana input, .kontakt-podstrana textarea {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .kontakt-podstrana input, .kontakt-podstrana textarea {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .kontakt-podstrana input, .kontakt-podstrana textarea {
    font-size: 15px;
  }
}
.kontakt-podstrana input::placeholder, .kontakt-podstrana textarea::placeholder {
  color: gray;
}
@media (min-width: 1501px) {
  .kontakt-podstrana input::placeholder, .kontakt-podstrana textarea::placeholder {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .kontakt-podstrana input::placeholder, .kontakt-podstrana textarea::placeholder {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .kontakt-podstrana input::placeholder, .kontakt-podstrana textarea::placeholder {
    font-size: 15px;
  }
}
.kontakt-podstrana input:focus, .kontakt-podstrana textarea:focus {
  border: 1px solid #fff;
}

.w-100 {
  width: 100%;
}

.p-0 {
  padding: 0;
}

.hp-top {
  padding-left: 8.5% !important;
}
@media (max-width: 998px) {
  .hp-top {
    padding-left: 8.5% !important;
    padding-right: 8.5% !important;
  }
}
.hp-top .text {
  padding-top: 200px;
  position: relative;
  z-index: 100;
}
@media (max-width: 998px) {
  .hp-top .text {
    padding-top: 30px;
  }
  .hp-top .text br {
    display: none;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .hp-top .text {
    padding-top: 115px;
  }
}
.hp-top .text h1 {
  font-size: 70px;
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 998px) {
  .hp-top .text h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .hp-top .text h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .hp-top .text h1 br {
    display: none;
  }
}
.hp-top .text p {
  position: relative;
  padding-left: 17px;
  max-width: 435px;
  color: #000000;
}
@media (min-width: 1501px) {
  .hp-top .text p {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .hp-top .text p {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .hp-top .text p {
    font-size: 15px;
  }
}
@media (max-width: 998px) {
  .hp-top .text p {
    padding-left: 12px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .hp-top .text p {
    font-size: 14px;
  }
}
.hp-top .text p::before {
  content: "";
  background: #273E73;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.hp-top .text button {
  margin-top: 30px;
}
@media (max-width: 998px) {
  .hp-top .text button {
    margin-top: 15px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .hp-top .text button {
    margin-top: 15px;
  }
}
.hp-top .img-wrapper {
  padding: 0;
  width: 72%;
  margin-left: -13.67%;
}
@media (max-width: 998px) {
  .hp-top .img-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-top: 20px;
  }
}

.references {
  padding-left: 8.5% !important;
  padding-right: 8.5% !important;
  background: #F7F9FB;
  padding-top: 90px;
  padding-bottom: 60px;
}
@media (max-width: 998px) {
  .references {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.references h2 {
  margin-bottom: 50px;
  color: #000000;
}
@media (min-width: 1501px) {
  .references h2 {
    font-size: 48px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references h2 {
    font-size: 34px;
  }
}
@media (max-width: 998px) {
  .references h2 {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .references h2 {
    margin-bottom: 25px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references h2 {
    margin-bottom: 35px;
  }
}
.references .desc {
  margin-top: 30px;
  margin-bottom: 12px;
}
@media (max-width: 998px) {
  .references .desc {
    margin-top: 15px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .desc {
    margin-top: 10px;
    margin-bottom: 6px;
  }
}
.references .desc .date {
  font-size: 16px;
  color: #b1b1b1;
}
.references .desc .city {
  margin-left: 15px;
  color: #273e73;
  font-size: 16px;
  font-family: PoppinsBold;
}
.references .name {
  font-family: PoppinsLight;
  color: #000000;
  line-height: 1.25em;
}
@media (min-width: 1501px) {
  .references .name {
    font-size: 36px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .name {
    font-size: 26px;
  }
}
@media (max-width: 998px) {
  .references .name {
    font-size: 24px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .name {
    font-size: 20px;
  }
}
.references button {
  margin-top: 20px;
}
@media (max-width: 998px) {
  .references button {
    margin-top: 10px;
  }
}
@media (min-width: 1001px) {
  .references .showcase-col {
    padding-right: 40px;
  }
}
@media (max-width: 998px) {
  .references .showcase-col {
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) {
  .references .img-wrap {
    padding-right: 5px;
  }
}
.references .item {
  margin-bottom: 20px;
}
.references .show-more {
  margin-top: 15px;
}
.references .show-more a {
  display: table;
  position: relative;
  font-family: PoppinsBold;
}
@media (min-width: 1501px) {
  .references .show-more a {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .show-more a {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .references .show-more a {
    font-size: 15px;
  }
}
.references .show-more a::before {
  content: "";
  width: 0;
}
.references .show-more a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  transition: 0.3s ease;
  pointer-events: none;
}
.references .show-more a:hover::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #273e73;
  z-index: 100;
  transition: 0.6s ease;
}
@media (max-width: 998px) {
  .references .ref-col {
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .ref-col {
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) {
  .references .ref-col:nth-child(odd) {
    padding-right: 7.5px;
  }
}
@media (min-width: 1001px) {
  .references .ref-col:nth-child(even) {
    padding-left: 7.5px;
  }
}
@media (min-width: 1001px) {
  .references .more-ref {
    padding-left: 35px;
  }
}
@media (max-width: 998px) {
  .references .more-ref {
    margin-top: 30px;
  }
}
.references .more-ref .next-ref {
  margin-top: 20px;
}
.references .more-ref .next-ref a {
  font-size: 26px;
  font-family: PoppinsLight;
  color: #000;
  display: inline-block;
  position: relative;
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .more-ref .next-ref a {
    font-size: 18px;
  }
}
.references .more-ref .next-ref a span {
  position: relative;
  margin-left: 10px;
}
@media (min-width: 1501px) {
  .references .more-ref .next-ref a span {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .references .more-ref .next-ref a span {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .references .more-ref .next-ref a span {
    font-size: 15px;
  }
}
.references .more-ref .next-ref a span::before {
  content: "";
  position: absolute;
  background: #000;
  width: 1px;
  height: 100%;
  left: -8.5px;
  top: 0;
}
.references .more-ref .next-ref a::before {
  width: 0;
  content: "";
  transition: 0.6s ease;
}
.references .more-ref .next-ref a::after {
  content: "";
  position: absolute;
  background: #E5E5E5;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
  pointer-events: none;
}
.references .more-ref .next-ref a:hover::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
  transition: 0.6s ease;
  z-index: 100;
}
.references .more-ref .next-ref:nth-child(2) {
  margin-top: 0;
}
.references .more-ref .ref-col {
  margin-bottom: 30px;
}

.offers .bezne .item {
  text-align: center;
  padding: 45px 20px 20px;
  background: #F7F9FB;
  margin-right: 20px;
}
@media (max-width: 998px) {
  .offers .bezne .item {
    margin-right: 15px;
    height: 280px;
  }
}
@media (min-width: 1001px) {
  .offers .bezne .item {
    height: 305px;
  }
}
.offers .bezne .item h6 {
  font-size: 26px;
  color: #000000;
}
.offers .bezne .item .icon-wrap {
  margin-bottom: 25px;
  height: 56px;
}
.offers .bezne .item .icon-wrap img {
  margin: 0 auto;
}
.offers .bezne .item .desc {
  position: relative;
  font-size: 16px;
  font-family: PoppinsLight;
  color: #000000;
  left: inherit;
  right: inherit;
  bottom: inherit;
}
.offers .bezne .item:focus {
  outline: none;
}

.services {
  padding-left: 8.5% !important;
  margin-top: 90px;
  padding-right: 0;
  margin-bottom: 60px;
}
@media (max-width: 998px) {
  .services {
    margin-top: 50px;
    margin-bottom: 40px;
  }
}
.services .top-row {
  margin-right: 0;
}
.services h2 {
  margin-bottom: 15px;
  color: #000000;
}
@media (min-width: 1501px) {
  .services h2 {
    font-size: 48px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .services h2 {
    font-size: 34px;
  }
}
@media (max-width: 998px) {
  .services h2 {
    font-size: 32px;
  }
}
.services p {
  line-height: 1.65em;
  margin-bottom: 30px;
  color: #000000;
}
@media (min-width: 1501px) {
  .services p {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .services p {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .services p {
    font-size: 15px;
  }
}
.services .slider {
  position: relative;
}
.services .slider .slider-wrapper .item {
  text-align: center;
  padding: 45px 20px 20px;
  background: #F7F9FB;
  margin-right: 20px;
}
@media (max-width: 998px) {
  .services .slider .slider-wrapper .item {
    margin-right: 15px;
    height: 280px;
  }
}
@media (min-width: 1001px) {
  .services .slider .slider-wrapper .item {
    height: 305px;
  }
}
.services .slider .slider-wrapper .item h6 {
  font-size: 26px;
  color: #000000;
}
.services .slider .slider-wrapper .item .icon-wrap {
  margin-bottom: 25px;
  height: 56px;
}
.services .slider .slider-wrapper .item .icon-wrap img {
  margin: 0 auto;
}
.services .slider .slider-wrapper .item .desc {
  font-size: 16px;
  font-family: PoppinsLight;
  color: #000000;
}
.services .slider .slider-wrapper .item:focus {
  outline: none;
}
@media (min-width: 1001px) {
  .services .slider .arrows {
    text-align: right;
    position: absolute;
    top: -89px;
    right: 8.5%;
  }
}
@media (max-width: 998px) {
  .services .slider .arrows {
    margin-bottom: 15px;
    text-align: right;
    margin-right: 8.5%;
  }
}
.services .slider .arrows div {
  cursor: pointer;
  display: inline-block;
  height: 64px;
  width: 64px;
  padding: 16px;
  background: #273E73;
  transition: 0.3s ease;
}
@media (max-width: 998px) {
  .services .slider .arrows div {
    height: 32px;
    width: 32px;
    padding: 8px;
    text-align: center;
  }
  .services .slider .arrows div img {
    height: 12px;
    width: 12px;
    vertical-align: initial;
  }
}
.services .slider .arrows div:hover {
  background: #295087;
  transition: 0.3s ease;
}

figure {
  margin-bottom: 20px;
}

.offers {
  padding-left: 8.5% !important;
  padding-right: 8.5% !important;
  background: #f7f9fb;
  padding-top: 90px;
  padding-bottom: 80px;
}
@media (max-width: 998px) {
  .offers {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offers {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.offers h1, .offers h2 {
  margin-bottom: 50px;
  color: #000;
}
@media (min-width: 1501px) {
  .offers h1, .offers h2 {
    font-size: 48px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offers h1, .offers h2 {
    font-size: 34px;
  }
}
@media (max-width: 998px) {
  .offers h1, .offers h2 {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .offers h1, .offers h2 {
    margin-bottom: 25px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offers h1, .offers h2 {
    margin-bottom: 35px;
  }
}
.offers .item {
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.offers .item .layer {
  position: absolute;
  left: 15px;
  width: calc(100% - 30px);
  bottom: 0;
  pointer-events: none;
}
.offers .item .desc {
  pointer-events: none;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 35px;
}
@media (max-width: 998px) {
  .offers .item .desc {
    bottom: 15px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offers .item .desc {
    bottom: 15px;
  }
}
.offers .item .desc h6 {
  color: #ffffff;
}
@media (min-width: 1501px) {
  .offers .item .desc h6 {
    font-size: 36px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offers .item .desc h6 {
    font-size: 26px;
  }
}
@media (max-width: 998px) {
  .offers .item .desc h6 {
    font-size: 24px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offers .item .desc h6 {
    font-size: 21px;
  }
}
.offers .item:hover {
  transition: 0.3s ease;
  transform: scale(1.05);
}

.offer-detail {
  padding-top: 90px;
  padding-bottom: 40px;
  padding-left: 8.5% !important;
  padding-right: 8.5% !important;
  background: #F7F9FB;
}
@media (max-width: 998px) {
  .offer-detail {
    padding-top: 45px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offer-detail {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.offer-detail h2 {
  margin-bottom: 50px;
  color: #000;
}
@media (min-width: 1501px) {
  .offer-detail h2 {
    font-size: 48px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offer-detail h2 {
    font-size: 34px;
  }
}
@media (max-width: 998px) {
  .offer-detail h2 {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .offer-detail h2 {
    margin-bottom: 25px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offer-detail h2 {
    margin-bottom: 35px;
  }
}
.offer-detail .content {
  display: none;
}
.offer-detail .content.active {
  display: block;
}
@media (min-width: 1700px) {
  .offer-detail .showcase {
    min-height: 326px;
  }
}
.offer-detail .offer-item {
  background: #fff;
  background-clip: content-box;
  margin-bottom: 40px;
}
.offer-detail .offer-item button {
  width: 100%;
}
.offer-detail .offer-item .desc {
  padding: 20px 10px 20px 15px;
}
.offer-detail .offer-item .desc h4 {
  font-size: 32px;
  color: #000;
}
@media (max-width: 998px) {
  .offer-detail .offer-item .desc h4 {
    font-size: 22px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offer-detail .offer-item .desc h4 {
    font-size: 21px;
  }
}
.offer-detail .offer-item .desc .price {
  font-family: PoppinsBold;
  color: #273e73;
  font-size: 15px;
}
@media (max-width: 998px) {
  .offer-detail .offer-item .desc .price {
    font-size: 14px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offer-detail .offer-item .desc .price {
    font-size: 14px;
  }
}
@media (min-width: 1001px) {
  .offer-detail .more-ref {
    padding-left: 35px;
  }
}
.offer-detail .more-ref .next-ref {
  margin-top: 25px;
}
.offer-detail .more-ref .next-ref .category-item {
  font-size: 26px;
  font-family: PoppinsLight;
  color: #000;
  position: relative;
  cursor: pointer;
}
@media (max-width: 998px) {
  .offer-detail .more-ref .next-ref .category-item {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width: 1500px) {
  .offer-detail .more-ref .next-ref .category-item {
    font-size: 18px;
  }
}
.offer-detail .more-ref .next-ref .category-item.active {
  color: #273e73;
  font-family: PoppinsBold;
}
.offer-detail .more-ref .next-ref .category-item.active:after {
  background: #273e73;
}
.offer-detail .more-ref .next-ref .category-item::before {
  width: 0;
  content: "";
  transition: 0.6s ease;
}
.offer-detail .more-ref .next-ref .category-item::after {
  content: "";
  position: absolute;
  background: #E5E5E5;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
  pointer-events: none;
}
.offer-detail .more-ref .next-ref .category-item:hover::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
  transition: 0.6s ease;
  z-index: 100;
}
.offer-detail .more-ref .next-ref:nth-child(2) {
  margin-top: 0;
}
.offer-detail .more-ref .ref-col {
  margin-bottom: 30px;
}

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