/*#region cover*/
#cover {
  background-color: #0d429d;
  height: 70vh;
  display: flex;
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: space-around;
}

#cover h1 {
  color: rgba(255, 255, 255, 0.144);
  margin: auto auto;
  font-weight: bold;
  font-size: 12vw;
}

#cover h3 {
  color: rgb(255, 255, 255);
  margin: auto auto;
  font-weight: bold;
  font-size: 6vw;
  position: absolute;
  transform: translate(-50%, -50%);
  text-shadow: 5px 5px 5px #313131;
}

.scale-up-center {
  -webkit-animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@media (max-width: 1450px) {
  #cover {
    height: 40vh;
  }
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.2569);
    transform: scale(0.2569);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.2569);
    transform: scale(0.2569);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*#endregion*/

/*#region services*/
#services {
  margin: 3%;
  padding: 0 8vw;
}

.ServicesTXT {
  text-align: center;
}

.ServicesTXT .title {
  text-align: center;
  font-weight: bold;
  font-size: 50px;
}

@media (max-width: 1450px) {
  .ServicesTXT .title {
    font-size: 25px;
  }
}

.serviceContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  flex: 0 0 300px;
  padding: 1%;
  margin: 3% 1% 3% 1%;
  background-image: linear-gradient(#0d429d, #0c3e96);
  text-align: center;
  height: 500px;
  border-radius: 15px;
  filter: drop-shadow(10px 10px 8px #000000);
  transition: 0.5s;
}

.card p {
  font-size: 18px;
}

.card h4 {
  font-weight: bold;
  font-size: 25px;
}

.cardIMGContainer {
  margin: 20px auto;
  width: 100px;
  height: 100px;
  padding: 30px;
  background-color: white;
  border-radius: 100%;
  filter: drop-shadow(5px 5px 5px #000000);
}

.card img {
  width: 100%;
}

.cardTXTContainer {
  padding: 2px 16px;
  color: white;
}

/*EZT OLVASD EL HOGY MŰKÖDIK*/
@media (max-width: 800px) {
  .card {
    flex: none;
    width: 90%;
    padding: 20px;
  }

  #services {
    margin: 10%;
    padding: 0;
  }
}

.card:hover {
  translate: 0px -10px;
}

/*#endregion*/

/*#region about*/
#about {
  background-color: #0d429d;
  color: white;
}

#aboutTXT {
  margin: 5px auto;
  text-align: left;
}

#aboutList {
  margin: auto auto;
  text-align: left;
}

#aboutListElement img {
  width: 90px;
  padding-right: 4%;
}

#aboutListElement h4 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  #aboutTXT {
    width: 90%;
  }

  #about * {
    text-align: center !important;
  }

  #aboutListElement p {
    text-align: center;
  }
}

/*#endregion*/

/*#region contact*/

/*#region contactBoxCSS*/

#contactBox {
  margin: 5px auto;
  text-align: left;
  margin: 2% 0 2% 0;
  width: 80%;
}

#username {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid black;
  margin: 2% 0;
}

#tel {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid black;
  margin: 2% 0;
}

#email {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid black;
  margin: 2% 0;
}

#message {
  width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 200px;
  border: none;
  border-bottom: 1px solid black;
  margin: 2% 0;
  resize: vertical;
  font-family: Jost;
}

input::placeholder {
  font-family: Jost;
}

input:focus {
  outline: none;
}

textarea::placeholder {
  font-family: Jost;
  font-size: 15px;
}

textarea:focus {
  outline: none;
}

.button {
  width: 100%;
  height: 50px;
  background-color: #437bdb;
  border: none;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin: 3% 0;
  filter: drop-shadow(5px 5px 5px #000000);
  font-family: Jost;
}

.sendsvg {
  width: 18px;
  margin: -3px 0px;
}

.button:hover {
  background-color: #3c6cbe;
}

.button:active {
  background-color: #3a6abd;
  transform: scale(0.98)
}

sup {
  color: #0d429d;
}

.contactROW {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: space-around;
}

.contactCheck {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contactButton {
  display: flex;
  justify-content: center;
}

/*#endregion*/
#contactList {
  margin: auto auto;
  text-align: left;
}

#contactListElement img {
  width: 90px;
  padding-right: 4%;
}

#contactListElement h4 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  #contactBox {
    width: 90%;
  }

  #contact * {
    text-align: center !important;
  }
}

/*#endregion*/