@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

body {
  width: 100%;
  color: #2f495e;
  margin: 0;
  padding: 0;
  animation: 1s linear bodyLoad;
}

@keyframes bodyLoad {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  width: 100%;
  padding: 50px 20% 50px 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #00c58e;
}

span {
  color: #00c58e;
}

p {
  color: #606f7b;
}

.content p {
  padding: 30px 20px 30px 0;
  box-sizing: border-box;
  max-width: 600px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 8px 25px;
  background-color: #00c58e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
}

.header svg {
  width: 300px;
  height: 300px;
}

.inside {
  width: 100%;
  background-color: #f4f6f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inside:before, .inside:after {
  content: "";
  width: 100%;
  height: 7px;
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, #C2C2C2FF, #FFFFFF00);
}

.inside:before {
  margin-bottom: 45px;
}

.inside:after {
  top: 100%;
  background-image: linear-gradient(to top, #C2C2C2FF, #FFFFFF00);
  margin-top: 45px;
}

.plus, .plus:after {
  content: "";
  width: 40px;
  height: 10px;
  display: block;
  background-color: #00c58e;
}

.plus {
  margin-top: 30px;
}

.plus:after {
  margin-left: 0;
  transform: rotate(90deg);
}

.about-work-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.about-work-item {
  width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-work-item:nth-child(2) {
  width: 380px;
  padding: 0 50px;
}

.item-title {
  margin-top: 40px;
}

.about-title {
  margin-bottom: 20px;
}

.about-paragraph {
  margin-top: 15px;
}

.about-btn {
  margin-top: 35px;
}

h3 {
  text-transform: uppercase;
}

.about-team {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 0;
  max-width: 900px;
}

.buttons {
  width: 66%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.buttons .btn {
  margin: 0 10px 20px 10px;
}

.offer {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.offer-content {
  width: 780px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.offer-text {
  text-align: right;
  display: flex;
  align-items: center;
  width: 380px;
  margin: 0;
}

.offer-slider {
  background-color: #f4f6f8;
  width: 380px;
  height: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.arrow {
  min-width: 30px;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  display: inline-block;
  background-color: transparent;
  height: 200px;
}

.arrow i {
  color: #2f495e;
  position: relative;
  z-index: -1;
}

.slider-content {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.slider-title {
  color: #00c58e;
  font-size: 18px;
}

.slider-text {
  font-size: 14px;
  width: 100%;
}

.question {
  max-width: 80%;
  margin: 30px 0 20px 0;
  text-align: center;
}
.question span {
  font-weight: bold;
  color: #2f495e;
}

.answer {
  font-size: 18px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
}

.history {
  padding: 50px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.history h2 {
  margin-bottom: 20px;
}

.dark {
  background-color: #2f495e;
}

@keyframes slider-opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-slider {
  animation: slider-opacity 2s ease-in-out;
}

.no-btn-image {
  margin-right: 50px;
}

.no-btn-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  color: #606f7b;
}

.no-btn-content-h2 {
  margin-bottom: 20px;
  color: #00c58e;
}

.history-gallery {
  margin: 0 auto;
  width: 900px;
  max-width: 80%;
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#about-us-history-text {
  margin: 30px 0;
}

.gallery-slider {
  width: 500px;
  height: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.gallery-image {
  width: 420px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f6f8;
  overflow: hidden;
}

.displayLargeImage {
  padding: 0;
  outline: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

#gallery-image-src {
  max-width: 100%;
  height: 280px;
}

.slideToLeft {
  transform: translateX(-450px);
  transition: transform 1s;
}

.slideToCenter {
  animation: 1s gallerySlide;
}

@keyframes gallerySlide {
  0% {
    transform: translateX(450px);
  }
  100% {
    transform: translateX(0);
  }
}
.gallery-arrow {
  width: 40px;
  outline: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.fullscreen-image {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 2;
}
.fullscreen-image .gallery-arrow {
  width: 100px;
  height: 100px;
  max-width: 10vw;
  background-color: transparent;
}
.fullscreen-image .gallery-arrow i {
  font-size: 35px;
  color: #ffffff;
}
.fullscreen-image #fullscreen-image-src {
  max-height: 80vh;
  max-width: 80vw;
}
.fullscreen-image .imageOpacity {
  animation: 2s imageOpacity;
}

@keyframes imageOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.display-image {
  overflow: hidden;
}

.display-image .fullscreen-image {
  display: flex;
}

.hide-image {
  position: absolute;
  cursor: pointer;
  height: 24px;
  width: 30px;
  padding: 10px;
  top: 30px;
  right: 5%;
  margin-right: 20px;
  outline: 0;
  border: 0;
  background-color: transparent;
}

.hide-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hide-line {
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
}

.hide-line:before, .hide-line:after {
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  position: absolute;
  content: "";
  left: 0;
  transition: transform 0.2s 0.1s ease-in-out;
}

.hide-line:before {
  top: -8px;
  transform: translateY(8px) rotate(45deg);
}

.hide-line:after {
  top: 8px;
  transform: translateY(-8px) rotate(-45deg);
}

.hide-fs {
  display: none;
}

.categories-employees {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
  background: radial-gradient(rgba(184, 192, 208, 0.5) 2px, white 2px);
  background-size: 40px 40px;
}

.category {
  padding-bottom: 10px;
  background-image: radial-gradient(#ffffff, transparent);
}

.employees-groups {
  background-color: rgba(255, 255, 255, 0.3);
}

.employees {
  max-width: 880px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.employees:not(:last-child) {
  padding-bottom: 30px;
}

.employee-profile {
  padding: 10px;
  position: relative;
}

.employee-avatar {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 10px;
  padding: 10px;
  border: 3px #f4f6f8 solid;
  background-image: radial-gradient(#ffffff 80%, transparent 90%);
}

.employee-name {
  max-width: 200px;
  font-size: 20px;
  color: #2f495e;
  background-image: radial-gradient(#ffffff, transparent);
}

.show-employee-profile, .employee-hover-profile {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.employee-hover-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2f495e;
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.25s;
  opacity: 0;
}

.employee-profile:hover .employee-hover-profile {
  opacity: 1;
}

.employee-full-profile {
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.avatar {
  padding-bottom: 20px;
}

.employee-full-avatar {
  max-width: 300px;
  max-height: 300px;
  padding: 25px;
  position: sticky;
  top: 100px;
}

.employee-data {
  max-width: 600px;
  padding: 50px 25px 25px 25px;
  display: flex;
  flex-direction: column;
}

.employee-degree {
  font-size: 24px;
}

.employee-full-name {
  padding: 5px 0 10px 0;
  font-size: 36px;
}

.employee-specialization {
  font-size: 16px;
  max-width: 200px;
  background-image: radial-gradient(#ffffff, transparent);
}

.employee-data .employee-specialization {
  max-width: 550px;
}

.employee-describe {
  padding: 20px 0 15px 0;
}

.employee-achievements {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.achievements-title {
  padding: 20px 0;
}

.achievements-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.employee-achievement {
  max-width: 250px;
  max-height: 300px;
  box-sizing: initial;
  padding: 20px 30px;
}

.employee-calendar {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.calendar {
  max-width: 700px;
  color: #2f495e;
  border-collapse: collapse;
}

.calendar tr:first-child td {
  border-top: 0;
}

.calendar tr td:first-child {
  border-left: 0;
}

.calendar tr:last-child td {
  border-bottom: 0;
}

.calendar tr td:last-child {
  border-right: 0;
}

.calendar tr th {
  width: 100%;
}

.calendar tr td {
  text-align: center;
  position: relative;
  border: 2px #f4f6f8 solid;
  height: 30px;
  line-height: 30px;
  width: 100px;
}

.calendar-no-content {
  color: #f4f6f8;
}

.month-name {
  position: relative;
  height: 50px;
  line-height: 50px;
  background: #f4f6f8;
  font-size: 20px;
  text-transform: uppercase;
}

.previous-month, .next-month {
  border: 0;
  outline: 0;
  padding: 0;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  top: 10px;
  line-height: 30px;
  height: 30px;
  width: 50px;
  background-color: #2f495e;
  color: #ffffff;
}

.previous-month {
  position: absolute;
  left: 10px;
}

.next-month {
  position: absolute;
  right: 10px;
}

.work-day, #legend-work-day {
  background-image: linear-gradient(to right bottom, #ffffff 40%, #00c58e);
}

.expired, .calendar-no-content, #legend-previous-day {
  background-color: #f4f6f8;
}

.work-day.expired, #legend-previous-work-day {
  background-image: linear-gradient(to right bottom, #f4f6f8 40%, #87afa9);
}

.current, #legend-current-day {
  background-image: linear-gradient(to right bottom, #ffffff 40%, #55ebff);
}

.current.work-day {
  background-image: linear-gradient(to right bottom, #ffffff 40%, #55ebff, #00c58e);
}

.show-day-btn {
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 30px;
  border-radius: 0;
  outline: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.work-hours {
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.calendar-legend {
  max-width: 600px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.legend-element {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
}

.legend-color {
  margin-right: 7px;
  width: 30px;
  height: 30px;
  display: block;
}

.display-image-source {
  cursor: pointer;
  outline: 0;
  border: 0;
  padding: 0;
  background-color: transparent;
}

.fullscreen-achievement.fullscreen-image {
  justify-content: center;
}

.search-section {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-form {
  height: 40px;
  max-width: 80vw;
  width: 600px;
  position: relative;
}

.search-input {
  position: absolute;
  width: 100%;
  font-size: 20px;
  padding: 5px 20px;
  outline: 0;
  border: 0;
  top: 0;
  left: 0;
  border-bottom: 3px #aaadb6 solid;
  transition: color 0.2s ease-in, border-bottom-color 0.2s;
}

.search-input-label {
  position: absolute;
  left: 20px;
  top: 10px;
  cursor: text;
  color: #aaadb6;
  font-size: 18px;
  transition: top 0.2s ease-in, font-size 0.2s ease-in;
}

.search-input:not(:placeholder-shown), .search-input:focus {
  color: #00c58e;
  border-bottom-color: #00c58e;
}

.search-input:focus ~ .search-input-label,
.search-input:not(:placeholder-shown).search-input:not(:focus) ~ .search-input-label {
  top: -15px;
  font-size: 14px;
}

.surveys {
  padding: 0 20px 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.survey-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  padding-bottom: 10px;
}

.survey-category.inactive {
  overflow: hidden;
  height: 50px;
}

.survey-category.active {
  overflow: visible;
}

.survey-category-title {
  position: relative;
  z-index: 1;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 15px;
  font-size: 20px;
  background-color: #f4f6f8;
  color: #2f495e;
  text-transform: uppercase;
}
.survey-category-title p {
  font-weight: 600;
}

.survey-category-icon {
  color: #aaadb6;
  padding: 0 10px;
  transition: transform 0.1s ease-in;
}

.active .survey-category-icon {
  transform: rotate(90deg);
}

.survey-list-element {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  height: 40px;
  border: 1px #f4f6f8 solid;
  text-decoration: none;
  color: #606f7b;
  transition: transform 0.2s ease-in, color 0.2s ease-in, background-color 0.2s;
}
.survey-list-element:hover {
  background-color: #f4f6f8;
}

.active .survey-list-element {
  transform: translateY(0);
}

.inactive .survey-list-element {
  transform: translateY(-100%);
}

.hidden {
  display: none;
}

.surveys-text, .survey-no-data {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.survey-text#survey-text-content-dont-exist {
  display: none;
}

.survey-profile {
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.survey-border {
  position: relative;
  width: 100%;
  max-width: 900px;
  border: 2px #00c58e solid;
  border-radius: 10px;
  padding: 20px 75px;
  display: flex;
  flex-direction: column;
}

.survey-header {
  top: -22px;
  left: -25px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.survey-header p {
  padding: 0 10px;
  background-color: #ffffff;
}

.survey-title-content {
  margin-right: 20px;
  position: relative;
  top: -11px;
  color: #2f495e;
  font-weight: 600;
  font-size: 22px;
}

.survey-category-content {
  position: relative;
  text-transform: uppercase;
  font-size: 18px;
  top: -9px;
}

.survey-data-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.survey-data-item:last-child {
  margin-bottom: 10px;
}

.survey-data-item-title {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 650px;
  padding-bottom: 20px;
}
.survey-data-item-title-content {
  font-size: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  z-index: 1;
  color: #2f495e;
  font-weight: 500;
  padding: 0 10px;
  text-transform: uppercase;
}
.survey-data-item-title .title-border {
  position: relative;
  top: -10px;
  z-index: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 2px;
  background-color: #00c58e;
}

.survey-data-item-describe {
  text-align: justify;
  line-height: 18px;
}

.contractor-profile {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none;
  padding: 10px;
}

.contractor-leaflet {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: start;
}

.contractor-data {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: end;
  padding-bottom: 4px;
}

.contractor-data-degree {
  color: #606f7b;
}

.contractor-data-full-name {
  font-size: 20px;
  color: #2f495e;
  font-weight: 600;
}

.contractor-specialization {
  font-size: 14px;
}

.survey-price {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.survey-price-label {
  font-size: 14px;
}

.survey-price-value {
  font-size: 18px;
  font-weight: 700;
  color: #2f495e;
}

.contractor-brake {
  content: " ";
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 2px;
  margin: 20px;
  background-color: #00c58e;
}

.gallery {
  width: 100%;
  padding: 50px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-part {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.gallery-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gallery-line {
  content: " ";
  display: inline-block;
  width: 100%;
  max-width: 600px;
  height: 3px;
  background-color: #00c58e;
  position: absolute;
}

.gallery-part-title {
  position: absolute;
  background-color: #ffffff;
  letter-spacing: 2px;
  padding: 0 10px;
  text-transform: uppercase;
}

.gallery-flex {
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-img-source {
  max-width: 250px;
  max-height: 141px;
  box-sizing: initial;
  padding: 7px;
  cursor: pointer;
}

.gallery-part-two {
  margin-top: 50px;
}

.faq-page {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.faq-items {
  width: 600px;
  max-width: 80vw;
}

.faq-item {
  padding: 40px 0;
  position: relative;
}

#faq-title {
  padding: 20px 0;
  color: #2f495e;
}

.faq-answer {
  padding-top: 10px;
  font-size: 18px;
}

.faq-linebreak {
  content: " ";
  width: 100%;
  max-width: 300px;
  height: 3px;
  background-color: #00c58e;
  display: inline-block;
  border-radius: 5px;
}

.faq-question-bold {
  color: #2f495e;
  font-weight: 600;
}

.news-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.news-header svg {
  width: 300px;
  height: 300px;
}

.news-header-content {
  max-width: 500px;
  text-align: end;
  margin-right: 50px;
}

#news-title {
  font-size: 26px;
  letter-spacing: 1px;
  padding: 0 0 20px 0;
}

#news-text {
  font-size: 18px;
}

.news-posts {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.current-posts, .previous-posts {
  width: 100%;
  max-width: 810px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
}

.post-data {
  display: block;
  width: 250px;
  text-decoration: none;
}

.post-time-create {
  text-align: end;
  font-size: 14px;
  font-weight: bold;
}

.news-post-current, .news-post-previous {
  margin: 10px;
}

.news-post-current {
  background-color: #f4f6f8;
}
.news-post-current .post-time-create {
  color: #2f495e;
  padding: 0 10px 5px 0;
}
.news-post-current .post-title {
  text-align: center;
  padding: 0 10px 10px 10px;
}

.post-top-bar {
  display: inline-block;
  width: 100%;
  height: 6px;
  background-image: linear-gradient(to right, #00c58e, #2f495e);
  margin-bottom: 5px;
}

#news-current-posts-title, #news-previous-posts-title {
  font-size: 22px;
  text-transform: none;
}

.post-profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.post-top {
  width: 100%;
  max-width: 900px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.post-dates {
  width: 100%;
  max-width: 90vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}
.post-dates * {
  padding: 0 5px;
}

#post-title {
  padding: 20px;
  text-transform: uppercase;
  width: 100%;
  max-width: 90vw;
}

.post-bot {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.other-posts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#post-text {
  text-align: justify;
  padding: 0 20px;
}

#history {
  scroll-margin: 70px;
}

.outside_link {
  margin-top: 20px;
  text-decoration: none;
  transition: background-color 500ms, letter-spacing 200ms;
  letter-spacing: 1px;
}
.outside_link:hover {
  background-color: #00c58e;
  letter-spacing: 2px;
}

#gallery-image-description {
  max-width: 100%;
  display: block;
  padding: 20px 10px 0 10px;
}

#fullscreen-image-description {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100vw;
  padding: 20px 20vw 0 20vw;
  text-align: center;
  color: #ffffff;
}

@media only screen and (max-width: 1280px) {
  h1 {
    font-size: 24px;
  }

  .content p {
    font-size: 16px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .about-team {
    width: 700px;
    max-width: 80%;
  }

  .buttons {
    width: 80%;
  }
}
@media only screen and (max-width: 1024px) {
  .header {
    padding: 50px 10% 50px 10%;
  }

  .header svg, .no-btn-image {
    display: none;
  }

  .content, .no-btn-content {
    text-align: center;
  }

  .content p {
    padding-right: 0;
  }

  .about-work-items {
    width: 100%;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
  }

  .about-work-item:nth-child(2), .about-work-item:nth-child(3) {
    margin-top: 20px;
  }

  .about-work-item, .about-work-item:nth-child(2) {
    width: auto;
    max-width: 600px;
    padding: 0 5%;
  }

  .offer-content {
    width: 800px;
    max-width: 80%;
    flex-direction: column;
    align-items: center;
  }

  .offer-text {
    width: 100%;
    text-align: center;
  }

  .offer-slider {
    max-width: 100%;
    margin-top: 20px;
  }

  .avatar {
    padding: 0;
  }

  .employee-data {
    padding-top: 0;
    text-align: center;
  }

  .achievements-title {
    display: none;
  }

  .news-header svg {
    display: none;
  }

  .news-header-content {
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: 800px;
    padding: 0 50px;
  }
}
@media only screen and (max-width: 900px) {
  .calendar {
    max-width: 600px;
  }

  .survey-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
  }

  .survey-title-content {
    margin: 0;
    top: -15px;
  }

  .survey-border {
    padding: 25px 50px;
  }
}
@media only screen and (max-width: 700px) {
  .contractor-profile {
    flex-direction: column;
  }

  .survey-price {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 630px) {
  .gallery-slider, .a {
    height: 200px;
  }

  #gallery-image-src {
    height: auto;
    max-height: 200px;
  }

  .fullscreen-image .gallery-arrow i {
    font-size: 20px;
  }

  .employee-full-avatar {
    max-height: 200px;
    max-width: 200px;
  }

  .survey-profile {
    padding: 30px 10px;
  }

  .survey-border {
    padding: 25px 25px;
  }

  .news-header-content {
    padding: 0 30px;
  }

  #post-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 380px) {
  .history h2 {
    font-size: 18px;
  }

  .contractor-data {
    flex-direction: column;
    align-items: start;
  }

  #news-title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 350px) {
  .slider-btn .btn {
    font-size: 12px;
  }

  .previous-month, .next-month {
    width: 30px;
  }
}
@media only screen and (max-width: 1280px) and (min-width: 1025px) {
  .header {
    padding: 50px 15% 50px 15%;
  }

  .header svg {
    width: 250px;
    height: 250px;
  }

  .about-work-item {
    width: 230px;
  }

  .about-work-item:nth-child(2) {
    width: 330px;
  }
}

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