html {
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
}

h1{
    font-family: "Source Sans 3", sans-serif;
    font-size: 65px;
}

h2{
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
    color: #333;
    text-align: center;
}

h3{
    font-family: "Source Sans 3", sans-serif;
    font-size: 22px;
}

p{
    font-family: "Source Sans 3", sans-serif;
    font-size: 19px;
}
a{
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
}

/*HLAVIČKA + TOP FOTO*/

.container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container2 {
    width: 85%;
    margin: 0 auto;
    padding-top: 40px;
    display: block;
    justify-content: space-between;
    align-items: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.7);
    padding: 15px 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 58px; 
    margin-right: 20px;
}

.ikony{
    padding-left: 40px;
}

.contact-icon {
    color: white;
    text-decoration: none;
    transition: color 0.5s, opacity 0.5s;
}
.contact-icon i{
    color: #ff003c;
    font-size: 19px;
}

.contact-icon:hover {
    color: #ff003c;
    opacity: 1;
}

.icon {
    margin-right: 5px;
}

.nav-span{
  display: none;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.5s, opacity 0.5s;
}

nav ul li a:hover {
    color: #ff003c;
    opacity: 1;
}

.main-section {
    position: relative;
    padding-top: 100px;
    background-image: url("images/mainphoto.jpg");
    height: 500px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    padding: 50px 0;
    overflow: hidden;
}
.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7; 
}

h1 {
    margin-top: 100px; 
    text-align: left;
    position: relative;
    z-index: 1;
}

p {
    text-align: left;
    position: relative;
    z-index: 1;
    font-size: 21px;
}

.buttons {
    margin-top: 50px;
    text-align: left;
}

.button {
    width: 180px;
    font-size: 21px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    background-color: #ff003c;
    color: white;
    transition: all 0.5s;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
    margin-right: 20px;
    z-index: 1;
}
.button:hover {
    background-color: #b30030;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

/*SLUŽBY*/

#sluzby {
    scroll-margin-top: 92px;
  }

.containerbox {
    max-width: 90%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .box {
    width: 24.4%;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .box:hover {
    background-color: #fff;
  }
  
  .top {
    width: 100%;
    height: 300px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 60, 0.3);
    opacity: 0;
    transition: opacity 0.7s;
  }
  
  .box:hover .top::before {
    opacity: 1;
  }
  
  .top img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .bottom {
    padding: 10px;
    padding-bottom: 20px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    height: 200px;
  }
  
  .bottom h3 {
    color: #ff003c;
    margin-top: 0;
  }
  
  .bottom ul {
    margin-bottom: 0;
    width: 100%;
    font-size: 17px;
    padding-inline-start: 20px;
    margin-block-start: 0;
    color: #333
  }

  .bottom li::marker{
    color: #ff003c;
  }

  .button-wrapper {
    position:absolute;
    top: 170px;
    right: 20px;
  }
  
  .custom-button {
    width: 120px;
    font-size: 19px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    background-color: #ff003c;
    color: white;
    transition: all 0.5s;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
    z-index: 1;
  }
  
  .custom-button:hover {
    background-color: #b30030;
  }
  
  .custom-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .custom-button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .custom-button:hover span {
    padding-right: 25px;
  }
  
  .custom-button:hover span:after {
    opacity: 1;
    right: 0;
  }

/*REFERENCE*/
#reference {
    scroll-margin-top: 92px;
  }

  .rowreference {
    width: 85%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    transition: background-color 0.5s;
    height: auto;
  }
  
  .leftreference {
    width: 50%;
    padding: 20px;
    text-align: left;
  }
  
  .rightreference {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .rightreference img{
    width: calc(50% - 5px);
    height: auto;
  }

  .arrow.left {
    transition: background-color 0.5s;
  }

  .arrow.right {
    transition: background-color 0.5s;
  }
  
  .arrow:hover{
      background-color: #b30030;
  }
  
  h3 {
    color: #ff003c;
  }
  
  .slider-container {
    position: relative;
    margin-top: 20px;
  }
  
  .slider-content {
    display: none;
    transition: opacity 0.5s;
    opacity: 0;
  }
  
  .slider-content.active {
    display: flex;
    opacity: 1;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ff003c;
    color: white;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
  }

  .arrow.left:hover,
  .arrow.right:hover {
    background-color: #b30030;
    transition: background-color 0.5s;
  }
  
  .arrow.left {
    left: 0;
    margin-left: 60px;
  }
  
  .arrow.right {
    right: 0;
    margin-right: 60px;
  }
  
  .dots {
    text-align: center;
    margin-top: 20px;
  }
  
  .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }

  .dot:hover{
      background-color: #b30030;
      transition: background-color 0.5s;
  }

  .dot.active {
    background-color: #ff003c;
  }

  img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .buttonsreference {
    margin-top: 50px;
    text-align: right;
  }

  .buttonreference {
    width: 210px;
    font-size: 19px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    background-color: #ff003c;
    color: white;
    transition: all 0.5s;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
    margin-right: 20px;
    z-index: 1;
  }

  .buttonreference:hover {
    background-color: #b30030;
  }

  .buttonreference span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }

  .buttonreference span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }

  .buttonreference:hover span {
    padding-right: 25px;
  }

  .buttonreference:hover span:after {
    opacity: 1;
    right: 0;
  }

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
/*FORMULÁŘ + PATIČKA*/
#kontakt {
    scroll-margin-top: 92px;
  }

.containerForm {
    width: 100%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    background-image: url("images/mapa.png");
    background-size: cover;
    background-position: center;
}

.formtext {
    width: 85%;
    display: flex;
    margin: 0 auto;
}

.formular {
    width: 45%;
    padding: 40px 0;
    border-radius: 5px;
}
.formular h2{
    color: #ff003c;
}

.formular p{
    color: white;
}

.kontaktniInformace {
    width: 45%;
    padding: 40px;
    border-radius: 5px;
}

.kontaktniInformace h2 {
    text-align: left;
    color: #ff003c;
}

.kontaktniInformace p {
    text-align: left;
    color: white;
}

form {
    border-radius: 5px;
}

.row {
    margin-bottom: 20px;
}

.row-check {
  margin-bottom: 20px;
}

.col {
    display: inline-block;
    width: 49%;
}

label {
    display: block;
    font-family: "Source Sans 3", sans-serif;
    color: white;
    font-size: 19px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #F7F7F7;
}

textarea {
    height: 170px;
    resize: vertical;
}

.button-form {
  width: 180px;
  font-size: 19px;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  background-color: #ff003c;
  color: white;
  transition: all 0.5s;
  cursor: pointer;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 20px;
  z-index: 1;
}

.button-form:hover {
  background-color: #b30030;
}

.button-form span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-form span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-form:hover span {
  padding-right: 25px;
}

.button-form:hover span:after {
  opacity: 1;
  right: 0;
}

button {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.ikony-footer{
  padding-left: 40px;
}

.contact-icon-footer {
  color: white;
  text-decoration: none;
  transition: color 0.5s, opacity 0.5s;
}
.contact-icon-footer i{
  color: #ff003c;
  font-size: 19px;
}

.contact-icon-footer:hover {
  color: #ff003c;
  opacity: 1;
}

.icon {
  margin-right: 5px;
}

.mapaMobil {
  display: none;
}

.success-message {
  display: none;
  color: green;
  margin-top: 10px;
}
.error-message {
  display: none;
  color: red;
  margin-top: 10px;
}


@media only screen and (max-width: 1200px) {
  html {
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
}

h1{
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
}

h2{
    font-family: "Source Sans 3", sans-serif;
    font-size: 40px;
    color: #333;
    margin-bottom: 0;
    text-align: left;
    padding-left: 5%;
}

h3{
    font-family: "Source Sans 3", sans-serif;
    font-size: 22px;
}

p{
    font-family: "Source Sans 3", sans-serif;
    font-size: 19px;
}
a{
    font-family: "Source Sans 3", sans-serif;
    font-size: 19px;
}


/*HLAVIČKA + TOP FOTO*/

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container2 {
  width: 90%;
  margin: 0 auto;
  padding-top: 40px;
  display: block;
  justify-content: space-between;
  align-items: center;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.7);
  padding: 10px0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 40px; 
}

.ikony{
  padding-left: 40px;
  display: none;
}

.contact-icon {
  color: white;
  text-decoration: none;
  transition: color 0.5s, opacity 0.5s;
}
.contact-icon i{
  color: #ff003c;
  font-size: 19px;
}

.contact-icon:hover {
  color: #ff003c;
  opacity: 1;
}

.icon {
  margin-right: 5px;
}

.nav-span{
  display: block;
  color: white;
  font-size:30px;
  margin-bottom: 10px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.hamburger-icons a{
  font-size: 25px;
}

.hamburger-icons i{
  color: #ff003c;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.5s, opacity 0.5s;
}

nav ul li a:hover {
  color: #ff003c;
  opacity: 1;
}

.main-section {
  position: relative;
  padding-top: 100px;
  background-image: url("images/mainphoto-mobile.jpg");
  height: 500px;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: left;
  padding: 50px 0;
  overflow: hidden;
}
.main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7; 
}

h1 {
  margin-top: 10px; 
  text-align: left;
  position: relative;
  z-index: 1;
}

p {
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 21px;
}

.buttons {
  margin-top: 50px;
  text-align: left;
}

.button {
  width: 100%;
  font-size: 21px;
  display: block;
  border-radius: 4px;
  position: relative;
  background-color: #ff003c;
  color: white;
  transition: all 0.5s;
  cursor: pointer;
  padding: 10px 0px;
  text-decoration: none;
  margin-bottom: 10px;
  z-index: 1;
}
.button:hover {
  background-color: #b30030;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


/*SLUŽBY*/

#sluzby {
  scroll-margin-top: 0px;
}

.containerbox {
  max-width: 90%;
  margin: 20px auto;
  display: block;
}

.box {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.box:hover {
  background-color: #fff;
}

.top {
  width: 100%;
  height: 300px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  position: relative;
}

.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 60, 0.3);
  opacity: 0;
  transition: opacity 0.7s;
}

.box:hover .top::before {
  opacity: 1;
}

.top img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.bottom {
  padding: 10px;
  padding-bottom: 20px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.bottom h3 {
  color: #ff003c;
  margin-top: 0;
}

.bottom ul {
  margin-bottom: 0;
  width: 100%;
  font-size: 18px;
  padding-inline-start: 20px;
  margin-block-start: 0;
  color: #333
}

.bottom li::marker{
  color: #ff003c;
}

.button-wrapper {
  text-align: right;
  margin-top: 0px;
}

.custom-button {
  width: 120px;
  font-size: 19px;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  background-color: #ff003c;
  color: white;
  transition: all 0.5s;
  cursor: pointer;
  padding: 10px 20px;
  text-decoration: none;
  z-index: 1;
}

.custom-button:hover {
  background-color: #b30030;
}

.custom-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.custom-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.custom-button:hover span {
  padding-right: 25px;
}

.custom-button:hover span:after {
  opacity: 1;
  right: 0;
}

/*REFERENCE*/
#reference {
  scroll-margin-top: 0px;
}

.rowreference {
  width: 90%;
  margin: 0px auto;
  display: block;
  align-items: center;
  transition: background-color 0.5s;
  height: auto;
}

.leftreference {
  width: 100%;
  padding: 20px 0;
  padding-top: 0;
  text-align: left;
}

.rightreference {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rightreference img{
  width: calc(50% - 5px);
  height: auto;
}

.arrow.left {
  transition: background-color 0.5s;
}

.arrow.right {
  transition: background-color 0.5s;
}

.arrow:hover{
    background-color: #b30030;
}

h3 {
  color: #ff003c;
}

.slider-container {
  position: relative;
  margin-top: 20px;
}

.slider-content {
  display: none;
  transition: opacity 0.5s;
  opacity: 0;
}

.slider-content.active {
  display: flex;
  opacity: 1;
}

.arrow {
  position: absolute;
  top: 99%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #ff003c;
  color: white;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

.arrow.left:hover,
.arrow.right:hover {
  background-color: #b30030;
  transition: background-color 0.5s;
}

.arrow.left {
  left: 0;
  margin-left: 60px;
}

.arrow.right {
  right: 0;
  margin-right: 60px;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot:hover{
    background-color: #b30030;
    transition: background-color 0.5s;
}

.dot.active {
  background-color: #ff003c;
}

img {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.buttonsreference {
  margin-top: 20px;
  text-align: center;
}

.buttonreference {
  width: 100%;
  font-size: 19px;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  background-color: #ff003c;
  color: white;
  transition: all 0.5s;
  cursor: pointer;
  padding: 10px 0px;
  text-decoration: none;
  margin-right: 20px;
  z-index: 1;
}

.buttonreference:hover {
  background-color: #b30030;
}

.buttonreference span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttonreference span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.buttonreference:hover span {
  padding-right: 25px;
}

.buttonreference:hover span:after {
  opacity: 1;
  right: 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

  /*FORMULÁŘ + PATIČKA*/
#kontakt {
  scroll-margin-top: 0px;
}

.containerForm {
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  background-image: url("images/mapa.pn");
  background-color: #333;
  background-size: cover;
  background-position: center;
  flex-direction: column;
}

.formtext {
  width: 90%;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}

.formular {
  width: 100%;
  padding: 10px 0 0 0;
  border-radius: 5px;
}
.formular h2{
  color: #ff003c;
}

.formular p{
  color: white;
}

.kontaktniInformace {
  width: 100%;
  padding: 10px 0px; 
  border-radius: 5px;
}

.kontaktniInformace h2 {
  text-align: left;
  color: #ff003c;
}

.kontaktniInformace p {
  text-align: left;
  color: white;
}

form {
  border-radius: 5px;
}

.row {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.row-check {
  margin: 20px 0;
}

.col {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

label {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  color: white;
  font-size: 19px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #F7F7F7;
}

textarea {
  height: 170px;
  resize: vertical;
}

.button-form {
  width: 100%;
  font-size: 19px;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  background-color: #ff003c;
  color: white;
  transition: all 0.5s;
  cursor: pointer;
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 0px;
  z-index: 1;
}

.button-form:hover {
  background-color: #b30030;
}

.button-form span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-form span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-form:hover span {
  padding-right: 25px;
}

.button-form:hover span:after {
  opacity: 1;
  right: 0;
}

button {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.ikony-footer{
  padding-left: 40px;
}

.contact-icon-footer {
  color: white;
  text-decoration: none;
  transition: color 0.5s, opacity 0.5s;
}
.contact-icon-footer i{
  color: #ff003c;
  font-size: 19px;
}

.contact-icon-footer:hover {
  color: #ff003c;
  opacity: 1;
}

.icon {
  margin-right: 5px;
}

.mapaMobil {
display: block;
}
}
