main p {
  line-height: 1.7;
}
main h1,
main h2,
main h3 {
  font-family: inherit;
  color: #163243;
}
header {
  background: #163243;
  padding: 40px 100px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 3px 1px rgba(255, 255, 255, 0.1);
  z-index: 1;
}
header #logo img {
  height: 50px;
}
header .header-right {
  margin-left: auto;
  display: flex;
  font-size: 50px;
  color: #ffffff;
}
header .header-right a {
  margin-left: 40px;
  transition: all 0.3s;
  color: #ffffff;
}
header .header-menu {
  margin: 0 40px 0 auto;
  font-family: 'Open Sans';
  display: flex;
  align-items: center;
  /*
        a {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1px;
            text-decoration: none;
            margin: 0 20px 0 20px;
            color: #ffffff;
            text-transform: uppercase;

            &.highlight {
                font-weight: 700;
            }
        }
            */
}
header .header-menu a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
}
header .header-menu > a {
  margin: 0 20px 0 20px;
}
header .header-menu article {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 0 20px 0 20px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
header .header-menu article nav {
  display: none;
  position: absolute;
  background: #2d4756;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 350px;
  z-index: 5;
}
header .header-menu article nav a {
  display: block;
  font-weight: 400;
  padding: 10px 20px;
}
header .header-menu article nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
header .header-menu .social a {
  margin-left: 10px;
  font-size: 30px;
}
header .kontaktcta {
  display: flex;
  align-items: center;
  background: white;
  color: #163243;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  margin-left: auto;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
}
header .kontaktcta .iconify {
  font-size: 25px;
  margin-right: 10px;
}
header .kontaktcta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #09151d;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  header .kontaktcta {
    order: 2;
    margin: 0 auto 0 auto;
    padding: 4px 8px;
    font-size: 14px;
  }
  header .kontaktcta .iconify {
    font-size: 18px;
    margin-right: 5px;
  }
}
@media screen and (min-width: 768px) {
  #hamburger {
    display: none;
  }
  header .social {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  header #logo img {
    height: 25px;
    order: 1;
  }
  header .header-right {
    order: 2;
    font-size: 30px;
  }
  header .header-menu {
    order: 3;
    width: 100%;
    display: block;
  }
  header .header-menu > a {
    display: block;
    padding: 8px;
  }
  header .header-menu article {
    display: block;
    text-align: left;
    padding: 8px;
  }
  header .header-menu article nav {
    display: block !important;
    position: static;
    border: none;
    background: none;
  }
  header .header-menu article nav a {
    background: none;
  }
  .mh {
    display: none !important;
  }
}
#kontakt {
  padding: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  background: black;
  color: white;
}
@media screen and (max-width: 768px) {
  #kontakt {
    padding: 30px;
    display: block;
  }
}
#kontakt h2 {
  color: white;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  font-family: inherit;
}
#kontakt a {
  color: inherit;
  text-decoration: none;
}
#kontakt a:hover {
  text-decoration: underline;
}
#kontakt .kontaktcta {
  display: block;
  padding: 10px 40px;
  background: rgba(22, 50, 67, 0.15);
  border-radius: 5px;
  margin-top: 30px;
  font-size: 20px;
  color: #2f6b90;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #kontakt .kontaktcta {
    flex-direction: column;
  }
}
#kontakt .kontaktcta .iconify {
  font-size: 70px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #kontakt .kontaktcta .iconify {
    margin: 0 0 15px 0;
  }
}
#kontakt .kontaktcta:hover {
  text-decoration: none;
  background: #163243;
  color: white;
}
.formbox {
  width: 95%;
  max-width: 100%;
}
.formbox label {
  color: #aaaaaa;
  display: block;
  font-size: 16px;
  margin-top: 15px;
  font-family: inherit;
  text-transform: uppercase;
}
.formbox input,
.formbox textarea,
.formbox select {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #444444;
  color: white;
  background: none;
  font-family: inherit;
  border-radius: 5px;
}
.formbox input:focus,
.formbox textarea:focus,
.formbox select:focus {
  outline-color: #163243;
}
.formbox select option {
  color: black;
}
.formbox button {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background: #163243;
  border-radius: 5px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  border: none;
  margin-top: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 23px;
  font-family: inherit;
}
.formbox .radio {
  display: flex;
}
.formbox .radio a {
  background: #dedede;
  padding: 5px 10px;
  flex: 1;
  margin-left: 15px;
  text-align: center;
  text-transform: uppercase;
  color: black;
  border-radius: 5px;
  cursor: pointer;
}
.formbox .radio a:nth-of-type(1) {
  margin-left: 0;
}
.formbox .radio a.active {
  background: black;
  color: white;
}
.formbox .mailform-alert {
  width: 350px;
  border-radius: 5px;
}
.about {
  padding: 100px;
  display: flex;
  align-items: center;
  background: #163243;
  color: white;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 30px;
  }
}
.about .icon {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  .about .icon {
    margin: 20px auto 30px auto;
  }
}
.about .icon img {
  width: 150px;
}
.about.about-team {
  background: #dfdfdf;
  color: #163243;
}
.about.about-team h2,
.about.about-team h3 {
  color: #163243;
}
.about.about-team .li .iconify {
  color: #163243;
}
.about h2 {
  color: white;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  font-family: inherit;
}
@media screen and (max-width: 768px) {
  .about h2 {
    font-size: 25px;
    line-height: 1.3;
  }
}
.about h3 {
  color: white;
  font-size: 3cqb;
  line-height: 1.1;
  font-weight: 900;
  font-family: inherit;
}
@media screen and (max-width: 768px) {
  .about h3 {
    font-size: 20px;
    line-height: 1.3;
  }
}
.about .pp {
  margin-top: 30px;
  margin-bottom: 30px;
}
.about .li {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.about .li .iconify {
  font-size: 35px;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
}
.about .cta {
  color: white;
  background: white;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
#sluzby {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#sluzby a {
  position: relative;
  height: 40vh;
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  box-shadow: inset 0px 0px 10px 3px rgba(0, 0, 0, 0.6);
}
#sluzby a .box {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background: rgba(22, 50, 67, 0.85);
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  padding: 15px 15px 10px 15px;
  color: white;
  font-size: 15px;
  transition: all 0.3s;
  overflow: hidden;
  height: 25%;
}
#sluzby a .box h3 {
  margin: 0 0 20px 0;
  font-family: inherit;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  height: 2em;
}
#sluzby a .box p {
  display: none;
}
#sluzby a:hover .box {
  height: 50%;
}
#sluzby a:hover .box p {
  display: block;
}
@media screen and (max-width: 768px) {
  #sluzby {
    grid-template-columns: 1fr;
  }
  #sluzby a {
    height: 40vh;
  }
}
.heading {
  position: relative;
  background: #2d4656;
  padding: 20px;
}
.heading .heading-bkg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: 50% 50%;
  background-size: cover;
  z-index: -1;
  display: block;
}
.heading .navbar {
  color: #cecece;
}
.heading .navbar a {
  color: #dedede;
}
.heading h1 {
  font-size: 50px;
  line-height: 1.3;
  margin: 50px 0 50px 0;
  text-align: center;
  text-transform: uppercase;
  color: white;
  text-shadow: 0px 0px 2px black;
}
@media screen and (max-width: 768px) {
  .heading h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 350px) {
  .heading h1 {
    font-size: 23px;
  }
}
.sluzby-main {
  background: #163243;
  padding: 5px;
  color: white;
}
.intro {
  background: #163243;
  color: white;
  display: flex;
  padding: 60px;
}
.intro aside {
  width: 250px;
  margin-right: 60px;
  text-align: center;
}
.intro aside img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  filter: grayscale(100%);
  border-radius: 150px;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.4);
}
.intro h2 {
  color: white;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  font-family: inherit;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .intro h2 {
    font-size: 25px;
    line-height: 1.3;
  }
}
.intro article {
  font-size: 17px;
  line-height: 1.6;
}
.intro a {
  color: inherit;
}
@media screen and (max-width: 768px) {
  .intro {
    display: block;
    padding: 20px;
  }
  .intro aside {
    width: initial;
    text-align: center;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .intro aside img {
    margin: 0 auto 20px auto;
  }
  .intro article {
    margin-top: 20px;
  }
}
.intro2 {
  background: #2d4756;
  color: white;
  padding: 60px;
}
.intro2 h1 {
  color: white;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 600;
  font-family: inherit;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .intro2 h1 {
    font-size: 25px;
    line-height: 1.3;
  }
}
.intro2 .intro2-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  width: 100%;
}
.intro2 .intro2-items > a,
.intro2 article {
  display: flex;
  align-items: center;
}
.intro2 .intro2-items > a .icon,
.intro2 article .icon {
  font-size: 50px;
  margin-right: 20px;
  flex-shrink: 0;
  opacity: 0.6;
}
.intro2 .intro2-items > a .text,
.intro2 article .text {
  font-size: 18px;
  font-weight: 500;
}
.intro2 .intro2-items > a .text.b,
.intro2 article .text.b {
  font-weight: 700;
}
.intro2 .intro2-items > a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
  border-radius: 8px;
}
.intro2 .intro2-items > a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}
.intro2 .intro2-items > a:hover .icon {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .intro2 {
    padding: 20px;
  }
  .intro2 .intro2-items {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .intro2 .intro2-items .icon {
    font-size: 25px;
    margin-right: 15px;
  }
  .intro2 .intro2-items .text {
    font-size: 16px;
  }
}
.intro2-ctablock {
  text-align: center;
  padding-bottom: 30px;
}
.intro2-ctablock .btn-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 30px;
  background: white;
  color: #163243;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 35px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.intro2-ctablock .btn-cta:hover {
  background: #e8ebec;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .intro2-ctablock .btn-cta {
    padding: 15px 20px;
    margin-top: 20px;
    letter-spacing: 0.2px;
    font-size: 19px;
  }
}
.quoteform {
  background: black;
  padding: 60px;
  display: none;
}
.quoteform.visible {
  display: block;
}
.quoteform h2,
.quoteform p {
  color: white;
}
@media screen and (max-width: 768px) {
  .quoteform {
    padding: 20px;
  }
}
