/* === all === */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* === links === */
a {
  text-decoration: none;
  color: inherit;
}

/* === colors === */
/* === font === */
body {
  font-family: "Source Sans Pro", sans-serif;
}

.btn {
  position: relative;
  transition: 0.3s ease-out;
  padding: 14px 30px 14px 30px;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
.btn:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  opacity: 1;
  transition: 0.4s ease-out;
  width: 0%;
  height: 2px;
}
.btn:hover:after {
  width: 100%;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

article h1 {
  font-size: 40px;
}
article h2 {
  font-size: 30px;
}
article h3 {
  font-size: 24px;
}
article h4 {
  font-size: 22px;
}
article p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}
article p:last-of-type {
  margin-bottom: 0px;
}
article a {
  transition: 0.2s ease;
}
article a:hover {
  color: #009FE3;
  text-decoration: underline;
}
article ol {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 20px;
}
article ul {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* === header === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 4;
  /*
  //mobile menu
  .mobile-menu{
    position: fixed;
    top:0px;
    left: 0px;
    z-index: 4;
    width: 100%;
    height: 100%;
    background-color: $white;
    display: none;
    //assigned navigation
    .menu{
      top:50%;
      transform:translateY(-50%);
      position: relative;
      padding: 10px;
      width: 100%;
      list-style: none;
      font-size: 20px;
      .menu-item{
        position: relative;
        padding: 15px 0px 15px 0px;
        a{
          text-decoration: none;
          color:$black;
        }
        .sub-menu{
          display:flex;
          flex-direction: column;
          position: absolute;
          top:20px;
          right: -10px;
          transition: .2s ease;
          overflow: hidden;
          width: auto;
          min-width: 150px;
          height: 0px;
          background-color: $white;
          font-size: 18px;
          text-align: right;
          .menu-item{
            margin-bottom: 10px;
            margin-left: 0px;
            line-height: 18px;
          }
        }
        &:after{
          content:"";
          position: absolute;
          left: 0px;
          bottom:0px;
          width: 100%;
          height: 1px;
          background-color: $black;
          border: 0px 5px 0px 5px solid $white;
        }
      }
    }
    //default navigation
    .menu{
      ul{
        top:50%;
        transform:translateY(-50%);
        list-style: none;
        font-size: 20px;
        li{
          padding: 5px;
          a{
            text-decoration: none;
            color:$black;
          }
        }
      }
    }
  }
  */
}
header img {
  height: 80px;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: align-items;
}
header nav .menu {
  list-style: none;
  font-size: 20px;
}
header nav .menu .menu-item {
  display: inline-block;
  margin-left: 50px;
}
header nav .menu .menu-item a {
  transition: 0.2s ease;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
}
header nav .menu .menu-item:hover a {
  color: #009FE3;
}
header nav .menu .btn {
  background-color: #009FE3;
  font-size: 20px;
}
header nav .menu .btn a {
  color: #FFFFFF;
}
header nav .menu .menu-item-has-children {
  position: relative;
}
header nav .menu .menu-item-has-children:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 17px;
  height: 14px;
  background-image: url("../../assets/images/arrow-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header nav .menu .menu-item-has-children .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: -20px;
  padding: 0px 20px 0px 20px;
  opacity: 0;
  width: auto;
  min-width: 330px;
  height: 0px;
  overflow: hidden;
  transition: 0.2s ease;
  background-color: #FFFFFF;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item {
  display: block;
  margin-left: 0px;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item a {
  font-weight: 400;
  color: #626262;
}
header nav .menu .menu-item-has-children .sub-menu .menu-item:hover a {
  color: #009FE3;
}
header nav .menu .menu-item-has-children:hover .sub-menu {
  padding: 20px;
  opacity: 1;
  height: auto;
}
header nav .searchicon {
  margin-left: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
header nav .menu ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  list-style: none;
  font-size: 20px;
}
header nav .menu ul li {
  margin-left: 50px;
}
header nav .menu ul li a {
  text-decoration: none;
  color: #000000;
}
header #menu-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 4;
  display: none;
}
header #menu-toggle:hover {
  background: rgba(255, 255, 255, 0.8);
}
header #menu-toggle span {
  display: block;
  background: #000000;
  border-radius: 3px;
  transition: 0.2s ease;
}
header #menu-toggle #hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 100%;
}
header #menu-toggle #hamburger span {
  width: 30px;
  height: 2px;
  position: relative;
  margin-bottom: 7px;
}
header #menu-toggle #hamburger span:nth-child(1) {
  transition-delay: 0.5s;
}
header #menu-toggle #hamburger span:nth-child(2) {
  transition-delay: 0.625s;
}
header #menu-toggle #hamburger span:nth-child(3) {
  transition-delay: 0.75s;
  margin-bottom: 0px;
}
header #menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
header #menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 2px;
  position: absolute;
  top: 0%;
  left: 14px;
  transition-delay: 0s;
}
header #menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 2px;
  position: absolute;
  left: 0%;
  top: 14px;
  transition-delay: 0.25s;
}
header #menu-toggle.open #hamburger span {
  width: 0%;
}
header #menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
header #menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
header #menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
header #menu-toggle.open #cross span:nth-child(1) {
  height: 30px;
  transition-delay: 0.625s;
}
header #menu-toggle.open #cross span:nth-child(2) {
  width: 30px;
  transition-delay: 0.375s;
}

.specialist {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: absolute;
  top: 420px;
  right: 5%;
  padding: 40px 50px 40px 50px;
  transition: 0.2s ease;
  background-color: #FFFFFF;
  width: 400px;
}
.specialist h3 {
  margin-bottom: 30px;
}
.specialist img {
  margin-bottom: 30px;
  width: 300px;
  height: 300px;
}
.specialist p {
  text-align: center;
}
.specialist p:first-of-type {
  font-size: 30px;
  font-weight: 700;
}
.specialist p:last-of-type {
  margin-bottom: 30px;
  font-size: 18px;
}
.specialist a {
  padding: 20px 30px 20px 30px;
  margin-bottom: 20px;
  border-radius: 40px;
  border: 1px solid #009FE3;
  font-size: 20px;
  text-align: center;
  transition: 0.2s ease;
}
.specialist a:hover {
  background-color: #009FE3;
  color: #FFFFFF;
}
.specialist #close-specialist {
  display: none;
}

.specialist-bg {
  position: fixed;
  display: none;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #009FE3;
  opacity: 0.16;
  z-index: 3;
}

.specialist-bg-open {
  display: block;
}

#show-specialist {
  display: none;
}

/* === search === */
.search-wrapper {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #009FE3;
  z-index: 4;
}
.search-wrapper form {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
}
.search-wrapper form input {
  padding: 10px 0px 10px 0px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #FFFFFF;
  border-left: none;
  width: 100%;
  background-color: #009FE3;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Source Sans Pro", sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.search-wrapper form input::-webkit-search-decoration {
  display: none;
}
.search-wrapper form input::-webkit-search-cancel-button {
  display: none;
}
.search-wrapper form input::-webkit-search-results-button {
  display: none;
}
.search-wrapper form input::-webkit-search-results-decoration {
  display: none;
}
.search-wrapper form input::placeholder {
  color: #FFFFFF;
}
.search-wrapper form #submit {
  display: none;
}
.search-wrapper form #searchsubmit {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #FFFFFF;
  border-left: none;
  width: 40px;
  background-image: url("../../assets/images/searchicon-white.svg");
  background-size: 26px 26px;
  background-position: right center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.search-wrapper #close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.search-results-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 70vh;
}
.search-results-wrapper .results-title {
  margin-bottom: 50px;
}
.search-results-wrapper .results-title h1 {
  font-size: 60px;
  font-weight: 800;
}
.search-results-wrapper .results-title #breadcrumbs .breadcrumb_last {
  font-weight: 400;
}
.search-results-wrapper .results-title h2 {
  color: #009FE3;
}
.search-results-wrapper .results-title p {
  margin-bottom: 20px;
}
.search-results-wrapper .result {
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.2s ease;
  border-bottom: 1px solid #626262;
}
.search-results-wrapper .result h2 {
  color: #009FE3;
}
.search-results-wrapper .result p {
  color: #626262;
}
.search-results-wrapper .result span {
  color: #626262;
  font-size: 20px;
  font-weight: 200;
  transition: 0.2s ease;
}
.search-results-wrapper .result:hover {
  border-bottom: 1px solid #000000;
}
.search-results-wrapper .result:hover span {
  color: #000000;
}
.search-results-wrapper .no-results form {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
}
.search-results-wrapper .no-results form input {
  padding: 10px 0px 10px 0px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #000000;
  border-left: none;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  font-family: "Source Sans Pro", sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.search-results-wrapper .no-results form input::-webkit-search-decoration {
  display: none;
}
.search-results-wrapper .no-results form input::-webkit-search-cancel-button {
  display: none;
}
.search-results-wrapper .no-results form input::-webkit-search-results-button {
  display: none;
}
.search-results-wrapper .no-results form input::-webkit-search-results-decoration {
  display: none;
}
.search-results-wrapper .no-results form input::placeholder {
  color: #000000;
}
.search-results-wrapper .no-results form #submit {
  display: none;
}
.search-results-wrapper .no-results form #searchsubmit {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #000000;
  border-left: none;
  width: 40px;
  background-image: url("../../assets/images/searchicon.svg");
  background-size: 26px 26px;
  background-position: right center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* === 404 === */
.error-404 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  height: 80vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.error-404:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #009FE3;
}
.error-404 .error-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  z-index: 2;
}
.error-404 .error-inner h2 {
  color: #FFFFFF;
}
.error-404 .error-inner h3 {
  color: #FFFFFF;
}
.error-404 .error-inner .btn {
  margin-top: 30px;
  background-color: #009FE3;
  color: #FFFFFF;
}
.error-404 .error-inner .btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* === banner home === */
.banner-large {
  height: 70vh;
  max-height: 670px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.banner-large .banner-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoom 10s linear forwards;
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.banner-large .banner-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
}
.banner-large .banner-inner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  max-width: 80%;
}
.banner-large .banner-inner .banner-content span {
  position: relative;
  z-index: 1;
  padding: 20px 10px 20px 10px;
  margin-left: 10px;
  font-size: 85px;
  line-height: 62px;
  font-weight: 400;
  color: #FFFFFF;
  background-color: rgba(0, 159, 227, 0.5);
}
.banner-large .banner-inner .banner-content span:last-of-type {
  margin-top: -5px;
  margin-left: 0px;
  font-weight: 800;
  z-index: 0;
}
.banner-large .banner-inner .banner-content p {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #FFFFFF;
}
.banner-large .banner-inner .banner-content .btn {
  background-color: #FFFFFF;
  color: #009FE3;
}
.banner-large .banner-inner .banner-content .btn:after {
  background-color: #000000;
}
.banner-large .banner-inner .banner-content .btn:hover {
  color: #000000;
}

.banner-default {
  height: 30vh;
  max-height: 500px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner-default:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #009FE3;
}
.banner-default .banner-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 2;
}
.banner-default .banner-inner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  max-width: 50%;
}
.banner-default .banner-inner .banner-content h2 {
  padding: 10px;
  font-size: 60px;
  line-height: 62px;
  font-weight: 900;
  color: #FFFFFF;
  background-color: rgba(0, 159, 227, 0.5);
}
.banner-default .banner-inner .banner-content #breadcrumbs {
  padding: 10px;
  margin-top: -5px;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 200;
  color: #FFFFFF;
  background-color: rgba(0, 159, 227, 0.5);
}
.banner-default .banner-inner .banner-content #breadcrumbs .breadcrumb_last {
  font-weight: 400;
}
.banner-default .banner-inner .banner-content .btn {
  background-color: #FFFFFF;
  color: #009FE3;
}
.banner-default .banner-inner .banner-content .btn:after {
  background-color: #000000;
}
.banner-default .banner-inner .banner-content .btn:hover {
  color: #000000;
}

form {
  grid-gap: 30px 20px;
  max-width: 800px;
}
form p:last-of-type input {
  margin-bottom: 0px;
}
form p strong {
  display: inline-block;
  margin-bottom: 10px;
}
form p .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
}
form p .wpcf7-form-control-wrap input {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  margin-bottom: 20px;
  width: 100%;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  color: #626262;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
form p .wpcf7-form-control-wrap input:focus {
  background-color: #BFE7F8;
}
form p .wpcf7-form-control-wrap select {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  margin-bottom: 20px;
  width: 100%;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  color: #626262;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
form p .wpcf7-form-control-wrap select:focus {
  background-color: #BFE7F8;
}
form p .wpcf7-form-control-wrap textarea {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  width: 100%;
  margin-bottom: 20px;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
form p .wpcf7-form-control-wrap textarea:focus {
  background-color: #BFE7F8;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper {
  padding: 10px;
  border: 2px dashed #009FE3;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler {
  position: relative;
  margin: 0px;
  border: none;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner h3 {
  font-size: 18px;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner span {
  display: none;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner .codedropz-btn-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner .codedropz-btn-wrap .cd-upload-btn {
  position: absolute;
  left: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status {
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  font-weight: 200;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-image {
  display: none;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px;
  width: 100%;
  text-align: center;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0px;
  width: 50%;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name span {
  color: #009FE3;
  line-height: 16px;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name em {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .remove-file {
  top: 50%;
  transform: translateY(-50%);
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  width: 50%;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .dnd-progress-bar .complete {
  background-color: #009FE3;
}
form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .has-error-msg {
  width: 100%;
  font-size: 16px;
  text-align: center;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 20px;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0px;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #FFFFFF;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input {
  position: relative;
  padding: 0px;
  margin-right: 20px;
  margin-bottom: 0px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  appearance: none;
  -webkit-appearance: none;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-color: #EFEFEF;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  opacity: 0;
  transition: 0.2s ease;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/check.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #009FE3;
}
form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:checked:after {
  opacity: 1;
}
form p .btn {
  border-radius: 40px;
  border: none;
  margin-bottom: 20px;
  opacity: 1;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  cursor: pointer;
  color: #000000;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  font-weight: 400;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
}
form p .btn:hover {
  background-color: #009FE3;
  color: #FFFFFF;
}
form p .ajax-loader {
  display: none;
}
form .wpcf7-response-output {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

/* === contact === */
.contact-form {
  padding-top: 50px;
  padding-bottom: 90px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #009FE3;
}
.contact-form .contact-form-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 50px;
}
.contact-form .contact-form-inner h3 {
  margin-bottom: 50px;
  color: #FFFFFF;
}
.contact-form .contact-form-inner form {
  grid-gap: 30px 20px;
  max-width: 800px;
}
.contact-form .contact-form-inner form p:last-of-type input {
  margin-bottom: 0px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap input {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  margin-bottom: 20px;
  width: 100%;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap input:focus {
  background-color: #BFE7F8;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap textarea {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  width: 100%;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap textarea:focus {
  background-color: #BFE7F8;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper {
  padding: 10px;
  border: 2px dashed #009FE3;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler {
  position: relative;
  margin: 0px;
  border: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner h3 {
  font-size: 18px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner span {
  display: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner .codedropz-btn-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-container .codedropz-upload-inner .codedropz-btn-wrap .cd-upload-btn {
  position: absolute;
  left: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status {
  padding: 10px 0px 10px 0px;
  font-size: 16px;
  font-weight: 200;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-image {
  display: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px;
  width: 100%;
  text-align: center;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0px;
  width: 50%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name span {
  color: #009FE3;
  line-height: 16px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .name em {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .remove-file {
  top: 50%;
  transform: translateY(-50%);
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  width: 50%;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .dnd-upload-status .dnd-upload-details .dnd-progress-bar .complete {
  background-color: #009FE3;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .codedropz-upload-wrapper .has-error-msg {
  width: 100%;
  font-size: 16px;
  text-align: center;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 20px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0px;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #FFFFFF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input {
  position: relative;
  padding: 0px;
  margin-right: 20px;
  margin-bottom: 0px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-color: #EFEFEF;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  opacity: 0;
  transition: 0.2s ease;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/check.svg");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #009FE3;
}
.contact-form .contact-form-inner form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:checked:after {
  opacity: 1;
}
.contact-form .contact-form-inner form p .btn {
  border-radius: 40px;
  border: none;
  margin-bottom: 20px;
  opacity: 1;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  cursor: pointer;
  color: #000000;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  font-weight: 400;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
}
.contact-form .contact-form-inner form p .btn:hover {
  background-color: #009FE3;
  color: #FFFFFF;
}
.contact-form .contact-form-inner form p .ajax-loader {
  display: none;
}
.contact-form .contact-form-inner form .wpcf7-response-output {
  margin: 0px;
  padding: 0px;
  border: 0px;
}
.contact-form .information {
  position: relative;
}
.contact-form .information .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.contact-form .information .item img {
  margin-right: 40px;
  max-width: 40px;
  max-height: 35px;
}
.contact-form .information .item span {
  width: 100%;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 32px;
  font-weight: 800;
}

.cta-specialists {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #009FE3;
}
.cta-specialists .cta-specialists-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cta-specialists .cta-specialists-inner h2 {
  width: 50%;
  max-width: 570px;
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 800;
}
.cta-specialists .cta-specialists-inner form {
  width: 50%;
  text-align: center;
}
.cta-specialists .cta-specialists-inner form label {
  display: inline-block;
  width: 100%;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 800;
}
.cta-specialists .cta-specialists-inner form select {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  width: 100%;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  background-image: url("../../assets/images/arrow-down.svg");
  background-size: 20px;
  background-position: calc(100% - 40px);
  background-repeat: no-repeat;
}

/* === icons block === */
.icons-block {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.icons-block .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.icons-block .icon-wrapper img {
  margin-bottom: 20px;
  max-width: 110px;
  max-height: 110px;
}
.icons-block .icon-wrapper span {
  font-size: 20px;
  font-weight: 700;
}

/* === image === */
.image-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 70px;
}
.image-block img {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.image-block span {
  margin-top: 30px;
  font-size: 18px;
}

/* === maps & info === */
.map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.map-info .acf-map {
  height: 400px;
  width: 50%;
}
.map-info .info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 70px;
  height: 400px;
  width: 50%;
}
.map-info .info p {
  margin-bottom: 20px;
}

/* === newsletter block === */
.newsletter-block {
  display: flex;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #009FE3;
}
.newsletter-block .newsletter-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
}
.newsletter-block .newsletter-inner h2 {
  width: 50%;
  max-width: 400px;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
}
.newsletter-block .newsletter-inner form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 570px;
}
.newsletter-block .newsletter-inner form input {
  padding: 20px 70px 20px 40px;
  border-radius: 40px;
  border: none;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.newsletter-block .newsletter-inner form input::placeholder {
  color: #000000;
}
.newsletter-block .newsletter-inner form #mail {
  margin-right: 10px;
  width: 70%;
  color: #000000;
}
.newsletter-block .newsletter-inner form .btn {
  padding: 20px 40px 20px 40px;
  border-radius: 40px;
  border: none;
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  -ms-outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  text-transform: inherit;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  font-weight: 400;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.newsletter-block .newsletter-inner form .btn:hover {
  background-color: #009FE3;
  color: #FFFFFF;
}

/* === parallax block === */
.parallax-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 680px;
}
.parallax-block:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #009FE3;
}
.parallax-block #parallax-background {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.parallax-block h2 {
  z-index: 2;
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  color: #FFFFFF;
  max-width: 1050px;
}
.parallax-block .btn {
  z-index: 2;
  transition: 0.2s ease;
  background-color: rgba(0, 159, 227, 0.75);
  color: #FFFFFF;
}
.parallax-block .btn:hover {
  background-color: rgba(255, 225, 225, 0.75);
  color: #000000;
}

/* === posts block === */
.posts-block {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #EFEFEF;
}
.posts-block .text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.posts-block .text-wrapper h2 {
  margin-bottom: 30px;
}
.posts-block .text-wrapper p {
  max-width: 900px;
  text-align: center;
}
.posts-block .posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
.posts-block .posts-wrapper .post {
  transition: 0.2s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.posts-block .posts-wrapper .post .post-thumbnail {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.posts-block .posts-wrapper .post .post-thumbnail .image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-block .posts-wrapper .post .post-thumbnail:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  background-color: #009FE3;
  opacity: 0;
}
.posts-block .posts-wrapper .post .post-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px 50px 20px;
  background-color: #FFFFFF;
  text-align: center;
}
.posts-block .posts-wrapper .post .post-info h3 {
  font-size: 25px;
  display: inline-block;
  font-weight: 600;
}
.posts-block .posts-wrapper .post .post-info p {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 200;
}
.posts-block .posts-wrapper .post .post-info .btn {
  display: inline-block;
  background-color: #009FE3;
  color: #FFFFFF;
}
.posts-block .posts-wrapper .post .post-info .btn:hover {
  background-color: #FFFFFF;
  color: #009FE3;
}
.posts-block .posts-wrapper .post .post-info .btn:after {
  background-color: #009FE3;
}
.posts-block .posts-wrapper .post:hover .post-thumbnail .image {
  transform: scale(1.03);
}
.posts-block .posts-wrapper .post:hover .post-thumbnail:after {
  opacity: 0.8;
}
.posts-block .btn {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 50%);
  padding: 20px 100px 20px 100px;
  z-index: 4;
  text-transform: inherit;
  font-weight: 300;
  border-radius: 45px;
  background-color: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.posts-block .btn:hover {
  background-color: #009FE3;
  color: #FFFFFF;
}

.q-a-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
}
.q-a-block .questions-wrapper {
  margin-right: 50px;
  width: 50%;
  max-width: 600px;
}
.q-a-block .questions-wrapper h2 {
  margin-bottom: 40px;
}
.q-a-block .questions-wrapper .q-a {
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.q-a-block .questions-wrapper .q-a h4 {
  position: relative;
  transition: 0.3s ease;
  width: 100%;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
}
.q-a-block .questions-wrapper .q-a h4:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  transform-origin: center;
  transition: 0.4s ease;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../assets/images/arrow-blue.svg");
}
.q-a-block .questions-wrapper .q-a p {
  overflow: hidden;
  transition: 0.3s ease;
  max-height: 0px;
  font-size: 18px;
  font-weight: 200;
}
.q-a-block .questions-wrapper .open h4 {
  margin-bottom: 20px;
}
.q-a-block .questions-wrapper .open h4:after {
  transform: rotate(180deg) translateY(50%);
}
.q-a-block .questions-wrapper .open p {
  max-height: 400px;
}
.q-a-block .q-a-image {
  width: 50%;
}

/* === slider === */
.slider-image {
  padding-top: 100px;
  padding-right: 0px;
  padding-bottom: 140px;
  padding-left: 0px;
  max-width: 1000px;
}
.slider-image .swiper-wrapper {
  height: 600px;
}
.slider-image .swiper-wrapper .swiper-slide {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-image .swiper-pagination {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
.slider-image .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  border-radius: 30px;
  width: 18px;
  height: 18px;
  background-color: #FFFFFF;
}
.slider-image .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  border-radius: 10px;
  width: 5px;
  height: 5px;
  background-color: #626262;
}
.slider-image .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #BFE7F8;
}

/* === slider === */
.slider-image-text {
  padding-left: 0px;
  padding-right: 0px;
}
.slider-image-text .swiper-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  min-height: 520px;
}
.slider-image-text .swiper-wrapper .swiper-slide .image {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-image-text .swiper-wrapper .swiper-slide .text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px 80px 40px;
  width: 50%;
  max-width: 700px;
}
.slider-image-text .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: 40px;
  width: auto;
}
.slider-image-text .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  border-radius: 30px;
  width: 15px;
  height: 15px;
  background-color: #FFFFFF;
}
.slider-image-text .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  border-radius: 10px;
  width: 5px;
  height: 5px;
  background-color: #626262;
}
.slider-image-text .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #BFE7F8;
}

/* === tabs === */
.tabs-block {
  border: none;
  padding-top: 50px;
  padding-bottom: 50px;
}
.tabs-block ul {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  list-style: none;
  background-color: #FFFFFF;
}
.tabs-block ul li {
  transition: 0.2s;
  padding: 15px 30px 15px 30px;
  outline: none;
  background-color: #FFFFFF;
}
.tabs-block ul li a {
  outline: none;
}
.tabs-block ul .ui-state-active {
  background-color: #009FE3;
  color: #FFFFFF;
}
.tabs-block .tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  position: relative;
  height: auto;
  min-height: 340px;
  max-height: 400px;
}
.tabs-block .tab-content .tab-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tabs-block .tab-content article p {
  display: inline-block;
}
.tabs-block .tab-content article .btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #009FE3;
  color: #FFFFFF;
}

/* === team === */
.team-block {
  padding-top: 50px;
  padding-bottom: 50px;
}
.team-block h2 {
  color: #009FE3;
  margin-bottom: 50px;
}
.team-block .team-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.team-block .team-inner .team-member {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.team-block .team-inner .team-member .member-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 300px;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.team-block .team-inner .team-member .member-picture a[href=""] {
  display: none;
}
.team-block .team-inner .team-member .member-picture .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  opacity: 0;
  transition: 0.2s;
  z-index: 2;
}
.team-block .team-inner .team-member .member-picture .info .name {
  position: relative;
  transition: 0.2s;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: #FFFFFF;
}
.team-block .team-inner .team-member .member-picture .info .function {
  position: relative;
  transition: 0.2s;
  font-size: 18px;
  font-weight: 200;
  text-align: center;
  color: #FFFFFF;
}
.team-block .team-inner .team-member .member-picture .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0px;
  padding: 10px;
  opacity: 0;
  transition: 0.2s;
  z-index: 2;
}
.team-block .team-inner .team-member .member-picture .icons img {
  position: relative;
  margin: 0px 5px 20px 5px;
  transition: 0.2s;
  z-index: 2;
  max-height: 25px;
}
.team-block .team-inner .team-member .member-picture:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  transition: 0.2s;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00aeff 0%, #008aca 100%);
}
.team-block .team-inner .team-member .member-picture:hover .info {
  opacity: 1;
}
.team-block .team-inner .team-member .member-picture:hover .icons {
  opacity: 1;
}
.team-block .team-inner .team-member .member-picture:hover:after {
  opacity: 0.8;
}

/* === text blocks === */
.text-intro {
  padding-top: 40px;
  padding-bottom: 50px;
}
.text-intro article {
  max-width: 1000px;
}
.text-intro article h2 {
  margin-bottom: 30px;
}
.text-intro article p {
  margin-bottom: 20px;
  font-size: 22px;
}
.text-intro article p:last-of-type {
  margin-bottom: 0px;
}

.page-template-template-services .text-intro {
  padding-top: 90px;
  padding-bottom: 0px;
}
.page-template-template-services .text-intro article p {
  font-size: 20px;
}
.page-template-template-services .text-intro:only-child {
  min-height: 50vh;
}
.page-template-template-services .text-one-column article:only-child {
  min-height: 70vh;
}

.home .text-pages .text-wrapper {
  padding-bottom: 150px;
}

.text-pages {
  display: flex;
}
.text-pages .text-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 60%;
}
.text-pages .text-wrapper article {
  font-size: 20px;
  max-width: 700px;
}
.text-pages .text-wrapper article h2 {
  margin-bottom: 30px;
}
.text-pages .text-wrapper article p {
  margin-bottom: 40px;
}
.text-pages .text-wrapper article p:last-of-type {
  margin-bottom: 0px;
}
.text-pages .pages {
  position: relative;
  padding: 40px 80px;
  margin-top: -80px;
  width: 43%;
  background-color: #FFFFFF;
}
.text-pages .pages h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
}
.text-pages .pages .pages-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
}
.text-pages .pages .pages-links a {
  display: inline-block;
  padding: 13px 26px;
  margin: -7px -1px 0px -14px;
  transition: 0.2s ease;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  background-color: rgba(0, 159, 227, 0.25);
}
.text-pages .pages .pages-links a:nth-child(1) {
  background-color: rgba(0, 159, 227, 0.5);
}
.text-pages .pages .pages-links a:nth-child(4) {
  background-color: rgba(0, 159, 227, 0.5);
}
.text-pages .pages .pages-links a:nth-child(5) {
  background-color: rgba(0, 159, 227, 0.5);
}
.text-pages .pages .pages-links a:nth-child(8) {
  background-color: rgba(0, 159, 227, 0.5);
}
.text-pages .pages .pages-links a:hover {
  transform: scale(1.03);
  background-color: #009fe3;
}

.text-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 0px 50px 0px;
}
.text-image .image {
  height: auto;
  width: 100%;
  min-width: 500px;
  max-width: 50%;
}
.text-image .text-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  min-width: 500px;
  max-width: 50%;
}
.text-image .text-wrapper article {
  max-width: 500px;
}
.text-image .text-wrapper article h2 {
  margin-bottom: 30px;
}
.text-image .text-wrapper article p {
  margin-bottom: 40px;
}
.text-image .text-wrapper article p:last-of-type {
  margin-bottom: 0px;
}

.text-one-column {
  padding-top: 50px;
  padding-bottom: 50px;
}
.text-one-column article {
  max-width: 1000px;
}
.text-one-column article h2 {
  margin-bottom: 30px;
}
.text-one-column article p {
  margin-bottom: 40px;
}
.text-one-column article p:last-of-type {
  margin-bottom: 0px;
}

.text-two-columns {
  padding-top: 50px;
  padding-bottom: 50px;
}
.text-two-columns .text-column-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: flex-end;
  grid-gap: 50px;
}
.text-two-columns .text-column-wrapper article h2 {
  margin-bottom: 30px;
}
.text-two-columns .text-column-wrapper article p {
  margin-bottom: 40px;
}
.text-two-columns .text-column-wrapper article p:last-of-type {
  margin-bottom: 0px;
}

.text-two-columns-text-above {
  padding-top: 50px;
  padding-bottom: 50px;
}
.text-two-columns-text-above article h2 {
  margin-bottom: 30px;
}
.text-two-columns-text-above article p {
  margin-bottom: 40px;
}
.text-two-columns-text-above article p:last-of-type {
  margin-bottom: 0px;
}
.text-two-columns-text-above .text-above {
  margin-bottom: 40px;
}
.text-two-columns-text-above .text-column-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: flex-end;
  grid-gap: 50px;
}

/* === video === */
.video-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.video-block iframe {
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 1000px;
  height: 500px;
}

footer {
  padding-top: 80px;
  padding-bottom: 160px;
  background-color: #F7F7F7;
}
footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
footer .footer-inner .footer-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
footer .footer-inner .footer-column h4 {
  margin-bottom: 15px;
  font-weight: 800;
}
footer .footer-inner .footer-column p {
  font-weight: 200;
}
footer .footer-inner .footer-column img {
  max-height: 100%;
  width: 120px;
}
footer .footer-inner .footer-column:nth-child(1):after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #009FE3;
  opacity: 0.5;
}
footer .footer-inner .footer-column:nth-child(3):before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #009FE3;
  opacity: 0.5;
}
footer .social-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 35px;
}
footer .social-wrapper .social-inner {
  display: flex;
  justify-content: space-between;
  max-width: 380px;
  width: auto;
}
footer .social-wrapper .social-inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-left: 10px;
  width: 70px;
  height: 70px;
  transition: 0.2s ease;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 167, 245, 0.2);
}
footer .social-wrapper .social-inner span img {
  max-width: 20px;
  max-height: 20px;
  height: auto;
}
footer .social-wrapper .social-inner span:hover {
  box-shadow: none;
}
footer .social-wrapper .social-inner a[href=""] {
  display: none;
}
footer .underfooter {
  margin-top: 50px;
}
footer .underfooter p {
  text-align: center;
  font-size: 18px;
  font-weight: 200;
}

/* === responsive === */
@media only screen and (max-width: 1599px) {
  .page-template-template-services .text-intro article {
    max-width: 880px;
  }
  .page-template-template-services .text-one-column article {
    max-width: 880px;
  }
  .page-template-template-services .text-two-columns .text-column-wrapper {
    max-width: 880px;
  }
}
@media only screen and (max-width: 1499px) {
  .text-pages .text-wrapper {
    padding-right: 40px;
  }
  .text-pages .pages {
    padding: 40px;
  }

  .page-template-template-services .text-intro article {
    max-width: 800px;
  }
  .page-template-template-services .text-one-column article {
    max-width: 800px;
  }
  .page-template-template-services .text-two-columns .text-column-wrapper {
    max-width: 800px;
  }
}
@media only screen and (max-width: 1399px) {
  /* === text styles === */
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 200;
  }

  article h1 {
    font-size: 40px;
  }
  article h2 {
    font-size: 32px;
  }
  article h3 {
    font-size: 26px;
  }
  article p {
    font-weight: 200;
  }
  article ul {
    font-weight: 200;
  }
  article ol {
    font-weight: 200;
  }

  /* === search === */
  .search-results-wrapper h1 {
    font-size: 40px;
  }

  /* === banner === */
  .banner-large {
    max-height: 580px;
  }

  /* === parallax === */
  .parallax-block h2 {
    font-size: 40px;
  }

  /* === q & a === */
  .q-a-block .questions-wrapper .q-a {
    padding: 20px 60px 20px 20px;
  }
  .q-a-block .questions-wrapper .q-a h4:after {
    right: -40px;
  }

  /* === team === */
  .team-block {
    grid-gap: 30px;
  }

  /* === text === */
  .text-intro article p {
    font-size: 20px;
  }

  .page-template-template-services .text-intro article {
    max-width: 650px;
  }
  .page-template-template-services .text-one-column article {
    max-width: 650px;
  }
  .page-template-template-services .text-two-columns .text-column-wrapper {
    max-width: 650px;
  }
  .page-template-template-services .specialist img {
    width: 200px;
    height: 200px;
  }
  .page-template-template-services .specialist p {
    font-size: 26px;
  }
  .page-template-template-services .specialist p:last-of-type {
    font-size: 18px;
  }
  .page-template-template-services .specialist a {
    padding: 15px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 1299px) {
  /* === icons === */
  .icons-block .icon-wrapper img {
    max-width: 90px;
    max-height: 90px;
  }

  /* === newsletter === */
  .newsletter-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* === posts === */
  .posts-block .posts-wrapper {
    grid-gap: 25px;
  }
  .posts-block .posts-wrapper .post .post-thumbnail {
    height: 200px;
  }
  .posts-block .posts-wrapper .post .post-info {
    padding: 40px 10px 40px 10px;
  }
  .posts-block .posts-wrapper .post .post-info h3 {
    font-size: 20px;
  }

  /* === team === */
  .team-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1199px) {
  /* === header === */
  header {
    position: inherit;
  }
  header img {
    position: relative;
    z-index: 4;
  }
  header nav {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 10px;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: scroll;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  header nav .menu {
    position: relative;
    top: 130px;
    margin: 0px;
    width: 100%;
  }
  header nav .menu .menu-item {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000000;
    margin: 0px;
  }
  header nav .menu .menu-item:last-of-type {
    border-bottom: none;
  }
  header nav .menu .menu-item-has-children {
    background-image: url("../../assets/images/arrow-blue.svg");
    background-size: 15px;
    background-position: right center;
    background-repeat: no-repeat;
    transition: 0.2s ease;
  }
  header nav .menu .menu-item-has-children:after {
    display: none;
  }
  header nav .menu .menu-item-has-children .sub-menu {
    position: relative;
    left: 0px;
    padding: 0px;
  }
  header nav .menu .menu-item-has-children .sub-menu .menu-item {
    border-bottom: none;
  }
  header nav .menu .menu-item-has-children:hover .sub-menu {
    padding: 5px 0px 5px 5px;
  }
  header nav .menu .btn {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  header nav .searchicon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0px;
  }
  header .mobile-menu-active {
    display: block;
  }
  header #menu-toggle {
    display: block;
  }

  .text-pages {
    display: inherit;
  }
  .text-pages .text-wrapper {
    padding-right: 0px;
    width: 100%;
  }
  .text-pages .pages {
    width: 100%;
    padding: 0px 0px 40px 0px;
    margin: inherit;
  }

  /* === text === */
  .text-image {
    padding: 40px 10px 40px 10px;
  }
  .text-image .image {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
  .text-image .image img {
    width: 100%;
  }
  .text-image .text-wrapper {
    padding: 20px 0px 20px 0px;
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }

  .map-info .info {
    padding: 0px 20px 0px 20px;
  }

  /* === parallax === */
  .parallax-block {
    height: 400px;
  }

  /* === q & a === */
  .q-a-block .questions-wrapper {
    width: 60%;
    margin-right: 30px;
  }
  .q-a-block .q-a-image {
    width: 40%;
  }

  /* === tabs === */
  .tabs-block ul {
    margin-bottom: 30px;
  }
  .tabs-block .tab-content {
    display: flex;
    flex-direction: column;
    max-height: inherit;
  }
  .tabs-block .tab-content .tab-image {
    height: 300px;
    margin-bottom: 30px;
  }

  .contact-form .contact-form-inner {
    grid-template-columns: 1fr;
  }
  .contact-form .contact-form-inner h3 {
    margin-bottom: 30px;
  }

  /* === video === */
  .video-block iframe {
    height: 400px;
  }

  .page-template-template-services .text-intro article {
    max-width: 590px;
  }
  .page-template-template-services .text-one-column article {
    max-width: 590px;
  }
  .page-template-template-services .text-two-columns .text-column-wrapper {
    max-width: 590px;
  }

  /* === footer === */
  footer .footer-inner {
    grid-gap: 20px;
  }
  footer .footer-inner .footer-column {
    padding: 20px;
  }
  footer .underfooter {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1099px) {
  .specialist {
    position: relative;
    top: inherit;
    right: inherit;
    align-items: center;
    z-index: 4;
    width: 100%;
  }
  .specialist #close-specialist {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    z-index: 4;
    cursor: pointer;
  }
  .specialist:after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
  }

  #show-specialist {
    display: inline-block;
    position: absolute;
    padding: 7px;
    right: 5px;
    top: 440px;
    cursor: pointer;
    width: auto;
    height: auto;
    background-color: #FFFFFF;
    z-index: 2;
    transition: 0.2s ease;
  }
  #show-specialist:hover {
    color: #009FE3;
  }

  .specialist-open {
    display: flex;
    right: 0px;
  }

  .posts-block .btn {
    padding: 20px 30px 20px 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 999px) {
  /* === banner === */
  .banner-large {
    max-height: 300px;
  }
  .banner-large .banner-inner .banner-content span {
    font-size: 30px;
    line-height: 42px;
  }
  .banner-large .banner-inner .banner-content p {
    font-size: 20px;
  }

  /* === banner === */
  .banner-default {
    max-height: 300px;
    min-height: 200px;
  }
  .banner-default .banner-inner .banner-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .banner-default .banner-inner .banner-content p {
    font-size: 20px;
  }

  /* === icons === */
  .icons-block .icon-wrapper img {
    max-width: 80px;
    max-height: 80px;
  }
  .icons-block .icon-wrapper span {
    font-size: 18px;
  }

  .map-info {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }
  .map-info .acf-map {
    width: 100%;
  }
  .map-info .info {
    height: auto;
    padding: 40px 0px 40px 0px;
    width: 100%;
  }

  /* === posts === */
  .posts-block .posts-wrapper {
    grid-template-columns: 1fr;
  }
  .posts-block .posts-wrapper .post .post-info {
    padding: 30px 10px 20px 10px;
  }

  /* === q & a === */
  .q-a-block {
    flex-direction: column;
  }
  .q-a-block .questions-wrapper {
    margin-right: 0px;
    margin-bottom: 30px;
    width: 100%;
  }
  .q-a-block .q-a-image {
    width: 100%;
    height: auto;
  }

  /* === slider === */
  .slider-image .swiper-wrapper {
    height: 320px;
  }
  .slider-image .swiper-wrapper .swiper-slide {
    height: 320px;
  }

  .slider-image-text .swiper-wrapper .swiper-slide .image {
    width: 100%;
    height: 300px;
  }
  .slider-image-text .swiper-wrapper .swiper-slide .text-wrapper {
    padding: 40px 0px 80px 0px;
    width: 100%;
    max-width: inherit;
  }
  .slider-image-text .swiper-pagination {
    left: 0px;
    margin-left: 0px;
  }

  /* === video === */
  .video-block iframe {
    height: 300px;
  }

  .cta-specialists .cta-specialists-inner {
    flex-direction: column;
  }
  .cta-specialists .cta-specialists-inner h2 {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  .cta-specialists .cta-specialists-inner form {
    width: 100%;
  }

  .newsletter-block .newsletter-inner {
    flex-direction: column;
  }
  .newsletter-block .newsletter-inner h2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .newsletter-block .newsletter-inner form {
    width: 100%;
  }
  .newsletter-block .newsletter-inner form #mail {
    width: 100%;
    margin: 0px;
  }
  .newsletter-block .newsletter-inner form input {
    display: inline-block;
    width: 100%;
  }

  #show-specialist {
    top: 394px;
  }

  /* === footer === */
  footer .footer-inner {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .footer-inner .footer-column img {
    max-height: 45px;
  }
  footer .footer-inner .footer-column:nth-child(1):after {
    display: none;
  }
  footer .footer-inner .footer-column:nth-child(3):before {
    display: none;
  }
  footer .social-wrapper .social-inner span {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 899px) {
  /* === header === */
  header img {
    height: 45px;
    width: auto;
  }

  /* === banner === */
  .banner-large .banner-inner .banner-content {
    max-width: inherit;
  }

  /* === banner === */
  .banner-default .banner-inner .banner-content {
    max-width: inherit;
  }

  /* === newsletter === */
  .newsletter-block {
    padding: 30px;
    align-items: flex-start;
  }
  .newsletter-block form {
    width: 100%;
    justify-content: flex-start;
  }

  /* === parallax === */
  .parallax-block #parallax-background {
    transform: translateY(-60%);
    height: 140%;
  }

  .text-two-columns .text-column-wrapper {
    grid-template-columns: 1fr;
  }

  .text-two-columns-text-above .text-column-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 799px) {
  #show-specialist {
    top: 408px;
  }
}
@media only screen and (max-width: 599px) {
  /* === text styles === */
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
    line-height: 28px;
  }

  article h1 {
    font-size: 34px;
  }
  article h2 {
    font-size: 28px;
  }
  article h3 {
    font-size: 22px;
  }
  article h4 {
    font-size: 20px;
  }
  article p {
    font-size: 16px;
    line-height: 28px;
  }
  article ul {
    font-size: 16px;
    line-height: 28px;
  }
  article ol {
    font-size: 16px;
    line-height: 28px;
  }

  .home .text-pages .text-wrapper article p {
    font-size: 20px;
  }

  /* === icons === */
  .icons-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    padding: 40px;
  }
  .icons-block .icon-wrapper {
    justify-content: flex-start;
    flex-direction: row;
  }
  .icons-block .icon-wrapper img {
    margin-right: 20px;
    margin-bottom: 0px;
    width: 70px;
    height: 70px;
  }
  .icons-block .icon-wrapper span {
    font-size: 18px;
    font-weight: 400;
  }

  /* === text === */
  .text-intro article p {
    font-size: 18px;
  }

  /* === video === */
  .video-block iframe {
    height: 250px;
  }

  .cta-specialists .cta-specialists-inner h2 {
    line-height: 42px;
    font-size: 40px;
  }
  .cta-specialists .cta-specialists-inner form select {
    font-size: 18px;
  }

  .newsletter-block .newsletter-inner h2 {
    text-align: center;
    line-height: 42px;
    font-size: 40px;
  }
  .newsletter-block .newsletter-inner form input {
    font-size: 18px;
  }
  .newsletter-block .newsletter-inner form .btn {
    font-size: 18px;
  }

  .contact-form .contact-form-inner form p .wpcf7-form-control-wrap input {
    font-size: 18px;
  }
  .contact-form .contact-form-inner form p .btn {
    font-size: 18px;
  }
}
@media only screen and (max-width: 499px) {
  /* === search === */
  .search-results-wrapper h1 {
    font-size: 34px;
  }

  /* === newsletter === */
  .newsletter-block form {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .newsletter-block form #mail {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 100%;
  }

  /* === parallax === */
  .parallax-block h2 {
    font-size: 30px;
  }

  /* === team === */
  .team-block {
    grid-template-columns: repeat(1, 1fr);
  }
  .team-block .team-member .member-picture {
    height: 250px;
  }
}

/*# sourceMappingURL=style.css.map */
