* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  
}

body h1{
  color: #282f59;
}


body p {
  color: #7c7c7c;
}


body a {
  text-decoration: none;
  color: whitesmoke;
}

.logo {
  height: 40px;
}

.row {
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.navbar {
  background-color: #4642ff;;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 20px 50px ;
  align-items: center;
}

.navbar ul {
flex: 1;
text-align: right;
}

.navbar ul li {
list-style: none;
display: inline-block;
margin: 0 25px;
}


.icon {
margin: 0;
padding: 0;
color: white;
font-size: 18px;
}

.ctn {
padding: 10px 20px;
background: linear-gradient(-225deg, 
  #A445B2 0%, #D41872 52%, #FF0066 100%);
  border-radius: 50px;
}

.ctn:hover {
background: linear-gradient(-225deg, 
  #FF0066 0% , #D41872 52%, #A445B2 100%)
}


.container {
display: flex;
justify-content: space-around;
}

.evidence-content, .hero-img {
flex-basis: 50%;
padding: 10px;
}

.nadpis {
padding-top: 100px;
}

.evidence-content {
flex-direction: column;
display: flex;
}


.nadpis{
font-family: "Poppins", sans-serif;
font-size: 6vmin;
margin-bottom: 30px;
color: #DA4453;
}


.podnadpis{
font-family: "Poppins", sans-serif;
font-size: 5vmin;
color: #282f59;
margin-bottom: 10px;
}
  
.nadpis_sekce{
font-family: "Poppins", sans-serif;
font-size: 4vmin;    
margin-top: 20px;
color: #282f59;
}



.evidence li {
text-decoration: none;
list-style:none;
font-size: 18px;
line-height: 2;
padding: 5px;
padding-left: 30px;
color: #282f59;
}


.bullet_list {
list-style: none;
list-style-image: none;
background: url(./images/icon_phone.svg) no-repeat 0 0.9em;
background-size: 0.9em;
padding-left: 1.5em;
color: #DA4453;
}

.text {
  background-color:  #DA4453;
  padding: 20px;
  color:white;
}

 .content-table {
   border-collapse: collapse;
   margin: 25px 0;
   font-size: 2vmin ;
   min-width: 400px;
 }


.content-table thead tr {
background-color: #DA4453;
color: #fff;
font-weight: 600;
 }


.content-table th,
.content-table td {
padding: 20px;
text-align: center;
margin: 20px;
}

.content-table tbody tr {
  border-bottom: 1px solid #DA4453;
}


.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #DA4453;

}

.img-box {
  width: 45%;
  height: 80%;
  position: absolute;
  bottom: -100px;
  right: 70px;
}

.img-box img{
  height: 50%;
  position: absolute;
  left: 60%;
  bottom: 0;
  transform: translateX(-50%);
  transition: bottom 1s, left 1s;
}


.img-box:hover .back-img {
  bottom: 30px;
}

.img-box:hover .main-img {
  left: 54%;
}


.footer {
  flex: 0 1 auto;
  background-color: #add8e6;
  color:#282f59;
  padding: 20px;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  
}

.footer__text {
  font-weight: 600;
  font-size: 16px;
}



@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {

.text {
  margin-top: 80px;
  margin-left: 20px;
}


.evidence{
  padding-left: 50px;
  margin-left: 20px;
}
.img-box {
  display: none;
}
.nadpis {
  margin-left: 40px;
}

.content-table th,
.content-table td {
  font-size: 16px;
}
}