html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 1;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

div {
  box-sizing: border-box;
}

html {
  font-family: "Roboto";
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
}

.container {
  display: flex;
  max-width: 1600px;
  width: 100%;
}

@media (max-width: 1440px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 10;
  left: 0;
  display: flex;
  align-items: center;
  background-color: #9D50BB;
  backdrop-filter: blur(5px);
}

header .container {
  justify-content: space-between;
}

header nav {
  display: flex;
  justify-content: start;
  align-items: center;
}

header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul li {
  margin-right: 40px;
}

header nav ul li a {
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(100, 100, 100);
  transition: color ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  border-bottom: 2px solid transparent;
}

header nav ul li a:hover {
  border-bottom: 2px solid #fff;
}

header .calls {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
}

header .calls span {
  font-size: 12px;
  line-height: 100%;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgb(100, 100, 100);
}

header .calls a {
  font-size: 18px;
  line-height: 100%;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  font-family: "Roboto";
  text-shadow: 1px 1px 2px rgb(100, 100, 100);
  transition: all ease-in-out 0.25s;
  border-bottom: 2px solid transparent;
}

header .calls a:hover {
  border-bottom: 2px solid #fff;
}

header .nav-toggle {
  width: 30px;
  padding: 10px 0;
  display: none;
  font-size: 0;
  color: transparent;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

header .nav-toggle:focus {
  outline: 0;
}

header .nav-toggle__item {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: background 0.2s linear;
}

header .nav-toggle.active .nav-toggle__item {
  background: none;
}

header .nav-toggle__item:before,
header .nav-toggle__item:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  z-index: 1;
  transition: transform 0.2s linear;
}

header .nav-toggle__item:before {
  top: -8px;
}

header .nav-toggle__item:after {
  bottom: -8px;
}

header .nav-toggle.active .nav-toggle__item:before {
  transform-origin: left top;
  transform: rotate(45deg) translate3d(0px, -3px, 0);
}

header .nav-toggle.active .nav-toggle__item:after {
  transform-origin: left bottom;
  transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

@media (max-width: 960px) {
  header .nav-toggle {
    display: block;
  }

  header {
    backdrop-filter: unset;
  }

  header.moved {
    backdrop-filter: blur(5px);
  }

  header .container {
    flex-direction: row-reverse;
  }

  header nav ul {
    display: none;
    position: fixed;
    backdrop-filter: blur(2px);
    top: 75px;
    min-width: 300px;
    right: 20px;
    padding: 25px 20px;
    background-color: rgba(0, 0, 0, 0.45);
    flex-direction: column;
  }

  header nav ul li {
    margin-bottom: 20px;
    margin-right: 0;
  }

  header nav ul li:last-child {
    margin-bottom: 0;
  }

  header nav ul li a {
    font-size: 16px;
  }

  header nav ul.active {
    display: flex;
  }

  header .calls {
    align-items: start;
  }

  header .calls span {
    font-size: 12px;
  }

  header .calls a {
    font-size: 16px;
    font-weight: 700;
  }
}

@media (max-width: 375px) {
  header nav ul {
    display: none;
    position: fixed;
    backdrop-filter: blur(2px);
    top: 75px;
    min-width: unset;
    right: 20px;
    padding: 25px 20px;
    background-color: rgba(0, 0, 0, 0.45);
    flex-direction: column;
  }
}

.top-banner {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 100px;
  min-height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/banner.jpg");
}

.top-banner .data-row {
  display: flex;
  margin: 10px 0;
  width: 25%;
  height: 140px;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  padding: 10px 20px;
  background-color: #9D50BB;
  backdrop-filter: blur(5px);
  color: #fff;
  z-index: 1;
  margin-top: 100px;
}

.top-banner .data-row .title {
  font-size: 18px;
}

.top-banner .data-row .value {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 1060px) {
  .top-banner .container {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .top-banner .data-row {
    height: 80px;
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 5px;
    margin-top: unset;
  }

  .top-banner .data-row .value {
    margin-bottom: 5px;
  }

  .top-banner .data-row:nth-child(even) {
    margin-right: 0;
  }
}

@media (max-width: 960px) {
  .top-banner {
    min-height: 50vh;
  }
}

@media (max-width: 575px) {
  .top-banner {
    min-height: 35vh;
  }

  .title-big h1 {
    font-size: 36px;
  }

  .top-banner .data-row {
    height: 80px;
    width: calc(50% - 10px);
  }

  .top-banner .data-row .value {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .top-banner .data-row .title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-banner .data-row {
    height: 64px;
    width: calc(50% - 10px);
  }

  .top-banner .data-row .value {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .top-banner .data-row .title {
    font-size: 12px;
  }
}

.top-banner::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

h2 {
  font-size: 48px;
  padding: 60px 0;
  font-weight: 500;
  width: 100%;
  display: block;
  text-align: center;
}

@media (max-width: 1200px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 32px;
    padding: 40px 0;
  }
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 80px;
  background-color: #fffdfd;
}

@media (max-width: 575px) {
  .about {
    padding-bottom: 40px;
  }
}

.about .row {
  width: 100%;
  display: flex;
}

.about .picture img {
  display: block;
  max-width: 100%;
  height: auto;
}

.about .about-col-1,
.about .about-col-2 {
  width: 50%;
}

.about .about-col-1 .title {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about .about-col-1 .title span {
  margin-top: 15px;
  font-size: 24px;
}

.about .about-col-2 .content {
  padding-left: 30px;
  font-size: 22px;
  padding-top: 0px;
  line-height: 150%;
}

.about .about-col-2 .content p {
  margin-bottom: 15px;
}

.about .about-col-2 .content b {
  font-weight: bold;
}

.about .about-col-2 .content ul {
  padding-left: 30px;
  list-style: disc;
}

@media (max-width: 1500px) {
  .about .about-col-2 .content {
    font-size: 18px;
  }

  .about .about-col-2 .content ul {
    display: flex;
    flex-wrap: wrap;
  }

  .about .about-col-2 .content ul li {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .about .row {
    flex-direction: column;
  }

  .about .about-col-1,
  .about .about-col-2 {
    width: 100%;
  }

  .about .about-col-2 .content {
    padding-left: 0;
    padding-top: 20px;
  }

  .about .about-col-2 .content ul li {
    width: 100%;
  }

  .about .about-col-1 .title {
    font-size: 26px;
  }

  .about .about-col-1 .title span {
    font-size: 18px;
  }
}

.moved {
  background-color: rgba(157, 80, 187, 0.5);
}

.moved-bx {
  padding-top: 80px;
}

.floor-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.floor-plan .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.floor-plan .picture-plan img {
  display: block;
  max-width: 100%;
  height: auto;
}

.floor-plan .picture-plan {
  position: relative;
}

.floor-plan .picture-plan .desc {
  position: absolute;
  width: 100%;
  bottom: 60px;
  /* left:4.8%; */
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 600;
  background-color: #e9e9e9;
}

.floor-plan {
  background-color: #9D50BB;
  color: #fff;
}

.floor-plan .table-responsive {
  margin-bottom: 120px !important;
}

@media(max-width:992px) {
  .floor-plan .picture-plan .desc {
    bottom: 0px;
    font-size: 12px;
  }
}



.floor-plan .title-plane {
  max-width: 1280px;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding: 0px 0 20px 0;
}

@media (max-width: 960px) {
  .floor-plan .title-plane {
    font-size: 20px;
  }
}

.floor-plan .table-responsive {
  width: 100%;
  max-width: 1280px;
  margin-bottom: 60px;
}

.floor-plan .table-responsive table {
  width: 100%;
}

.floor-plan .table-responsive table th {
  font-size: 22px;
  font-weight: 500;
  border-bottom: 2px solid #000;
  padding: 20px 0;
  /* width: 33.3%; */
}

.floor-plan .table-responsive table tr {
  transition: background-color ease-in-out 0.15s;
}

.floor-plan .table-responsive table tr td {
  padding: 20px 10px;
  font-size: 20px;
  text-align: center;
}

.floor-plan .table-responsive table tr:nth-child(even) {
  background-color: #e9e9e9;
}

.floor-plan .table-responsive table tr:hover {
  background-color: rgb(221, 221, 221);
}

@media (max-width: 960px) {
  .floor-plan .table-responsive table th {
    font-size: 16px;
    width: auto;
  }

  .floor-plan .table-responsive table tr td {
    font-size: 14px;
    padding: 10px;
  }
}

.photos {
  /* background-color: #e9e9e9; */
  width: 100%;
}

.photos .container {
  max-width: unset;
}

.photos-min .swiper-slide {
  max-width: 80px;
}

.photos-min .swiper-slide img {
  display: block;
  max-width: 100%;
  height: 100%;
  max-width: 80px;
  object-fit: cover;
}

.photos-min {
  max-width: 900px;
  overflow: hidden;
}

.photos-big .swiper-slide {
  display: flex;
  justify-content: center;
  max-height: 400px;
  min-height: 317px;
}

.photos-big .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease-in-out 0.55s;
}

@media (min-width: 960px) {
  .photos-big .swiper-slide img:hover {
    transform: scale(1.3);
  }
}

.swiper-slide {
  height: unset;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.calls-box {
  padding-bottom: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calls-box .row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.calls-box .row .col-1,
.calls-box .row .col-2 {
  width: 50%;
}

.calls-box .row .col-1 .picture img {
  display: block;
  max-width: 100%;
  height: auto;
}

.calls-box .row .col-2 {
  padding-left: 60px;
}

.calls-box .row .col-2 .desc-call {
  font-size: 44px;
  line-height: 150%;
  font-weight: 200;
  margin-top: 0px !important;
}

.calls-box .row .col-2 .calls-list {
  font-size: 24px;
  font-size: 400;
}

.calls-box .row .col-2 .calls-list>div {
  margin-top: 30px;
}

.calls-box .row .col-2 .calls-list a {
  color: #000;
  font-weight: 300;
  font-size: 22px;
}

.calls-box .row .col-2 .calls-list a:hover {
  text-decoration: none;
}

@media (max-width: 1269px) {
  .calls-box .row .col-2 .desc-call {
    font-size: 36px;
    line-height: 1.2;
  }

  .calls-box .row .col-2 .calls-list>div {
    margin-top: 20px;
  }
}

@media (max-width: 1100px) {
  .calls-box .row .col-2 .desc-call {
    font-size: 30px;
    line-height: 1.2;
  }

  .calls-box .row .col-2 .calls-list {
    font-size: 22px;
  }

  .calls-box .row .col-2 .calls-list a {
    font-size: 18px;
  }

  .calls-box .row .col-2 .calls-list>div {
    margin-top: 20px;
  }
}

@media (max-width: 960px) {
  .calls-box .row {
    position: relative;
    flex-wrap: wrap;
  }

  .calls-box .row .col-1,
  .calls-box .row .col-2 {
    width: 100%;
  }

  .calls-box .row .col-2 {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
  }

  .calls-box .row .col-2 a {
    color: #fff !important;
  }
}

@media (max-width: 480px) {
  .calls-box .col-2 {
    font-size: 20px !important;
  }

  .calls-box .col-2 .desc-call {
    font-weight: 400 !important;
    font-size: 20px !important;
  }

  .calls-box .col-2 .calls-list {
    font-size: 18px !important;
  }
}

.map {
  display: flex;
  width: 100%;
  filter: grayscale(1) brightness(0.8);
}




footer {
  min-height: 100px;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #9D50BB;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  footer .policy {
    margin-top: 20px;
  }

  .floor-plan .table-responsive table th {
    font-size: 14px;
  }
}


@media (max-width: 380px) {
  footer .policy {
    margin-top: 20px;
  }

  .floor-plan .table-responsive table th {
    font-size: 10px;
  }
}

.title-big {
  width: 100%;
  min-width: 100%;
  position: relative;
  text-align: center;
  z-index: 3;
  padding: 30px 20px;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.7);
  /* backdrop-filter: blur(2px); */
  /* background-color: rgba(0,0,0,0.4); */
}

.title-big h1 {
  font-size: 80px;
  line-height: 120px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.container-wrap {
  flex-wrap: wrap;
}

.top-banner::after {
  display: block;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.6);
}

.about-col-1 .picture {
  position: relative;
}

.about-col-1 .picture::after {
  display: block;
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  height: 50%;
  width: 50%;
  border-top: 4px solid #9D50BB;
  border-left: 4px solid #9D50BB;
}

.about-col-1 .picture::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  height: 50%;
  width: 50%;
  border-bottom: 4px solid #9D50BB;
  border-right: 4px solid #9D50BB;
}

.location {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.location img {
  height: 40px;
  padding-right: 10px;
}

.infrastructure {}

.infrastructure-title h3 {
  font-size: 28px;
  font-weight: 600;
  padding: 30px 0;
}

.infrastructure .item {
  display: flex;
  padding: 15px 0;
  padding-left: 40px;
  align-items: center;
}

.infrastructure .item img {
  height: 40px;
  margin-right: 20px;
}


@media(max-width:575px) {
  .title-big h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .container-wrap {
    padding: 0;
  }

  .top-banner .data-row {
    margin-right: 0;
  }

  .location {
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .container-no-padding {
    padding: 0;
  }

  .infrastructure .item {
    padding-left: 20px;
  }

  .calls-list {
    padding: 0px 20px;
  }

  .calls-box {
    padding-bottom: 0;
  }
}

.plane-item {
  width: 25%;
  padding: 20px;
  background-color: #9D50BB;
  margin-right: 29px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  align-items: center;
  max-width: 248px;
  margin-bottom: 30px;
  border: 1px solid #9D50BB;
  padding-top: 30px;
}

.plane-item img {
  display: block;
  max-width: 100%;
  height: 500px;
}

.data-plane {
  padding: 10px 0;
  width: 100%;
  max-width: 203px;
  /* width: 100px; */
}

.data-plane .name {
  font-weight: 600;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.data-plane .prop {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px;
  border-top: 1px solid #fff;
}

.data-plane .prop .value {
  font-size: 14px;
}

.data-plane .prop .title {
  font-size: 12px;
  font-weight: 600;
}

.plane-list {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.planes-box {
  flex-wrap: wrap;
}

.plane-detail {
  margin-top: 140px;
  margin-bottom: 80px;
}

.plane-detail-row {
  display: flex;
}

.plane-detail-row .slider {
  width: 50%;
}

.plane-detail-row .slider .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 400px;
}

.plane-detail-row .slider .swiper-slide {
  /* max-width: 400px; */
  width: 100% !important;
}

.plane-detail-row .slider .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%;background-color: #e9e9e9; */
  height: 100%;
}

.plane-detail .swiper-button-next,
.plane-detail .swiper-button-prev {
  color: #9D50BB;
}

.plane-detail h1 {
  font-size: 48px;
  font-weight: 600;
}

.plane-detail .data {
  padding: 20px;
  margin-left: 30px;
  width: 100%;
  padding-top: 30px;
  /* background-color: #f7f7f7; */
}

.plane-detail .data .props {
  margin-top: 40px;
}

.plane-detail .data .props .prop {
  font-size: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  border-top: 3px solid #9D50BB;
}

.plane-detail .data .props .prop .title {
  font-weight: 600;
  width: 200px;
  font-size: 16px;
}

.plane-detail .data .props .prop .value {
  font-size: 20px;
}


.all-plane-sc {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #e9e9e9;
  border-bottom: 10px solid #9D50BB;
}

.all-plane-sc img {
  display: block;
  max-width: 100%;
}

.all-plane-sc .container {
  justify-content: center;
}

.planes-slider .swiper-slide {
  width: 20% !important;
  display: flex;
  justify-content: center;
}

.planes-slider .plane-item {
  width: 100%;
  margin-right: 0;

}

.btn-all-plane a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 15px 60px;
  border: 2px solid #fff;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-all-plane {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 40px;
}

.plane-detail-row .btn-all-plane {
  justify-content: end;
}
.plane-detail-row .btn-all-plane a{
  color:#9D50BB;
  border-color: #9D50BB;
}

@media (max-width:992px) {
  .plane-detail-row {
    flex-wrap: wrap;
  }

  .plane-detail .slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .plane-detail-row .slider .swiper-slide a {
    max-width: 100%;
  }

  .plane-detail .data {
    margin-top: 20px;
    margin-left: 0;
  }

  .plane-detail {
    margin-bottom: 0px;
  }


  .plane-detail h1 {
    font-size: 32px;
  }

  .plane-detail .data .props .prop {
    border-width: 2px;
    padding: 15px 0px;
  }

  .planes-slider .swiper-slide {
    width: 100% !important;
  }
}


@media(max-width:768px) {
  .plane-item {
    width: 50%;
    margin-right: 15px;
    margin-bottom: 15px;
  }

  .planes-box {
    justify-content: center;
  }

  .plane-detail-row .btn-all-plane a{
    max-width: unset;
    width: 100%;
  }
}


@media(max-width:575px) {
  .plane-item {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
    max-width: unset;
  }

  .data-plane {
    max-width: unset;
  }

}

.tables {
  width: 100%;
  margin-bottom: 40px;
}

.tables td,
th {
  border-bottom: 1px solid #fff;
  padding: 15px 8px;
  font-size: 20px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}



.tables th{
  text-align: center;
}
.tables th:first-child,
.tables td:first-child {
  text-align: left;
  font-weight: 600;
}


td:last-child,
th:last-child {
  text-align: right;
  font-weight: 600;
}

tr,td{
  cursor: pointer;
}

tr:hover td{
  background-color: #fff;
  color:#000;
  text-shadow:  unset;
}


@media(max-width:575px) {
  
  .tables td,
  th {
    font-size: 14px;
  }
}