@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}
@keyframes arrowScale {
  0% {
    transform: translateY(-50%) scale(1);
    transform-origin: top right;
  }
  50% {
    transform-origin: top right;
    transform: translateY(-50%) scale(0);
  }
  51% {
    transform-origin: bottom left;
    transform: translateY(-50%) scale(0);
  }
  100% {
    transform-origin: bottom left;
    transform: translateY(-50%) scale(1);
  }
}
@keyframes arrowScaleReverse {
  0% {
    transform: translateY(-50%) scale(1);
    transform-origin: bottom left;
  }
  50% {
    transform-origin: bottom left;
    transform: translateY(-50%) scale(0);
  }
  51% {
    transform-origin: top right;
    transform: translateY(-50%) scale(0);
  }
  100% {
    transform-origin: top right;
    transform: translateY(-50%) scale(1);
  }
}
@keyframes tab_border {
  0% {
    transform: scaleX(0);
    transform-origin: center left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: center left;
  }
}
@keyframes tab_border_back {
  0% {
    transform: scaleX(1);
    transform-origin: center right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: center right;
  }
}
:root {
  --white: #fff;
  --text: #20282d;
  --gray: #cfcfcf;
  --light-gray: #efefef;
  --light-green: #d5dede;
  --text-light: #85979b;
  --shadow: 0 5px 5px rgba(0,0,0,.05);
  --dark-bg: #223035;
  --bg-button1: #38464a;
  --blur-bg: rgba(255, 255, 255, .3);
  --gray-gradient: linear-gradient(180deg, rgba(109, 109, 109, 0.7), rgba(109, 109, 109, 0.7));
  --light-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  --dark-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, input, textarea, button {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

li {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.1rem;
  }
}

main {
  min-height: 80vh;
}

input[type=text], input[type=email], input[type=tel], input[type=password] {
  width: 100%;
  font-size: 0.875rem;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--white);
  background: none;
  color: var(--white);
  outline: none;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder {
  color: var(--white);
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=password]::placeholder {
  color: var(--white);
}

textarea {
  width: 100%;
  font-size: 0.875rem;
  padding: 10px;
  border: 1px solid var(--white);
  background: none;
  color: var(--white);
  outline: none;
  resize: none;
  height: 200px;
}
textarea::-moz-placeholder {
  color: var(--white);
}
textarea::placeholder {
  color: var(--white);
}

.flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 46px 10px 30px;
  border-radius: 30px;
  border: none;
  background-color: var(--bg-button1);
  color: var(--white);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.btn::after {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url("/assets/img/icons/btn_arrow_white.svg") no-repeat center center;
  background-size: contain;
  animation: arrowScaleReverse 0.5s forwards;
}
.btn:hover::after {
  animation: arrowScale 0.5s forwards;
}

#contact_form {
  padding: 50px 0;
  background: var(--dark-gradient), url("/assets/img/home_contact_bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
#contact_form .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
#contact_form .form {
  width: 100%;
  max-width: 500px;
  padding: 75px 40px;
  background-color: var(--blur-bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  #contact_form .form {
    padding: 40px 25px;
  }
}
#contact_form .form .title {
  font-size: 32px;
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #contact_form .form .title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
#contact_form .form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  #contact_form .form form {
    flex-direction: column;
    gap: 16px;
  }
}
#contact_form .form input:not(:last-of-type) {
  width: 47%;
}
@media (max-width: 768px) {
  #contact_form .form input:not(:last-of-type) {
    width: 100%;
  }
}
#contact_form .form input:last-of-type {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #contact_form .form input:last-of-type {
    margin-bottom: 16px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.overlay .modal, .overlay .modal_submit {
  background: var(--white);
  padding: 40px 20px;
  box-shadow: var(--main-shadow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: auto;
}
.overlay .modal ion-icon, .overlay .modal_submit ion-icon {
  font-size: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.overlay .modal h3, .overlay .modal_submit h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
.overlay .modal h3 + p, .overlay .modal_submit h3 + p {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
}
.overlay .modal form, .overlay .modal_submit form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.overlay .modal form input, .overlay .modal_submit form input {
  color: var(--text);
  border-bottom: 1px solid var(--text);
}
.overlay .modal form input::-moz-placeholder, .overlay .modal_submit form input::-moz-placeholder {
  color: var(--text);
}
.overlay .modal form input::placeholder, .overlay .modal_submit form input::placeholder {
  color: var(--text);
}
.overlay .modal form textarea, .overlay .modal_submit form textarea {
  resize: none;
  height: 150px;
}
.overlay .modal .btn, .overlay .modal_submit .btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
.overlay .modal_submit {
  display: none;
}

.main_screen {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gray-gradient), url("/assets/img/main_screen.jpg") no-repeat top center;
  background-size: cover;
}
.main_screen h1 {
  font-size: 3.5rem;
  color: var(--white);
  text-align: center;
}
.main_screen p {
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  margin-top: 20px;
}

#not_found {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--gray-gradient), url("/assets/img/not_found.jpg") no-repeat top center;
  background-size: cover;
}
#not_found h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px 0;
  transition: all 0.3s;
  z-index: 10;
}
@media (max-width: 768px) {
  header {
    background: #ffffff;
  }
  header ion-icon {
    width: 30px;
    height: 30px;
    color: var(--text-light);
  }
}
header > .flx {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  header > .flx {
    border-bottom: 1px solid var(--text-light);
  }
}
header .logo {
  height: 24px;
}
header .logo img {
  height: 100%;
}
header .lang {
  display: flex;
  gap: 10px;
  margin-right: auto;
  margin-left: 40px;
}
header .lang p, header .lang a {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
}
header .lang p.active, header .lang a.active {
  font-weight: 600;
}
header .lang a:hover {
  text-decoration: underline;
}
header nav {
  display: flex;
  gap: 36px;
}
header nav a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
header nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s;
}
header nav a:hover::after {
  width: 100%;
}
header .btn {
  margin-left: 36px;
  background-color: var(--blur-bg);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .mobile_nav {
  display: none;
  overflow: hidden;
}
header .mobile_nav > a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.125rem;
  display: flex;
  margin-bottom: 16px;
  width: 100%;
  position: relative;
}
header .mobile_nav > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("/assets/img/icons/btn_arrow.svg") no-repeat center center;
  background-size: contain;
}
header .mobile_nav > a:first-of-type {
  margin-top: 30px;
}
header .mobile_nav > a:last-of-type::after {
  margin-bottom: 30px;
}
header .mobile_nav .mob_lang {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
header .mobile_nav .mob_lang a {
  font-weight: 400;
  color: var(--text);
}

footer {
  background: var(--dark-bg);
  padding: 50px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 50px;
  }
}
footer .container > div:first-of-type {
  width: 350px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  footer .container > div:first-of-type {
    width: 100%;
  }
}
footer .footer_logo {
  display: block;
  height: 40px;
  margin-bottom: 10px;
}
footer .footer_logo img {
  height: 100%;
}
footer .footer_logo + p {
  color: var(--text-light);
  margin-bottom: 50px;
}
footer .send_mail {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--text-light);
}
footer .send_mail input {
  width: 100%;
  padding: 10px 0;
  border: none;
  background: none;
  outline: none;
  color: var(--white);
}
footer .send_mail input::-moz-placeholder {
  color: var(--text-light);
}
footer .send_mail input::placeholder {
  color: var(--text-light);
}
footer h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 50px;
  padding-right: 30%;
}
@media (max-width: 768px) {
  footer h3 {
    text-align: center;
    font-size: 1.3rem;
    padding-right: 0;
  }
}
footer ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer ul {
    flex-direction: column;
    gap: 60px;
  }
}
footer ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul h4 {
  font-size: 1.25rem;
  color: var(--text-light);
}
footer ul p, footer ul a {
  font-size: 0.875rem;
  color: var(--white);
}
footer ul .social {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
footer ul .social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--text-light);
  color: var(--text);
}
footer .copy {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: left;
  padding-top: 100px;
}
@media (max-width: 768px) {
  footer .copy {
    text-align: center;
    padding-top: 50px;
  }
}

#home_page #main_screen {
  height: calc(80vh + 85px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
#home_page #main_screen .main_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
}
#home_page #main_screen .main_slider .main_slide {
  height: 100%;
}
#home_page #main_screen .main_slider .main_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page #main_screen .main_slider .main_slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page #main_screen .main_slider .slick-list, #home_page #main_screen .main_slider .slick-track, #home_page #main_screen .main_slider .slick-slide, #home_page #main_screen .main_slider .slick-slide > div {
  height: 100%;
}
#home_page #main_screen h1 {
  font-size: 3.5rem;
  color: var(--white);
  text-align: center;
  width: 60%;
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  #home_page #main_screen h1 {
    font-size: 2rem;
    width: 95%;
  }
}
#home_page #main_screen p {
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  width: 80%;
  margin: 0 auto 20px;
}
#home_page #main_screen a {
  background: var(--blur-bg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
#home_page #services {
  padding: 50px 0;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 768px) {
  #home_page #services {
    padding: 30px 25px;
  }
}
#home_page #services .tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 768px) {
  #home_page #services .tabs {
    flex-direction: column;
    gap: 20px;
  }
}
#home_page #services .tabs .tab {
  cursor: pointer;
  position: relative;
  bottom: -1px;
}
#home_page #services .tabs .tab p {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0 50px 30px;
}
@media (max-width: 768px) {
  #home_page #services .tabs .tab p {
    padding: 0 25px 20px;
  }
}
#home_page #services .tabs .tab::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text);
}
#home_page #services .tabs .tab:not(.active)::after {
  transform: scaleX(0);
  animation: tab_border_back 0.3s forwards;
}
#home_page #services .tabs .tab:not(.active):hover::after {
  animation: tab_border 0.3s forwards;
}
#home_page #services .tab_content .content {
  display: none;
  padding: 50px 0 0;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  #home_page #services .tab_content .content {
    flex-direction: column;
    gap: 30px;
  }
}
#home_page #services .tab_content .content.active {
  display: flex !important;
}
#home_page #services .tab_content .content .img {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #home_page #services .tab_content .content .img {
    width: 100%;
  }
}
#home_page #services .tab_content .content .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page #services .tab_content .content .description .title {
  font-size: 32px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #home_page #services .tab_content .content .description .title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
#home_page #services .tab_content .content .description .title + p {
  font-size: 1.125rem;
  margin-bottom: 18px;
}
#home_page #services .tab_content .content .description .btn {
  width: -moz-fit-content;
  width: fit-content;
}
#home_page #advantages {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #home_page #advantages {
    flex-direction: column;
    gap: 30px;
    padding: 50px 25px;
  }
}
#home_page #advantages .advantage {
  width: 22%;
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  #home_page #advantages .advantage {
    width: 100%;
    padding: 0;
  }
}
#home_page #advantages .advantage p {
  font-size: 1.125rem;
  font-weight: 500;
}
#home_page #advantages .advantage img {
  height: 80px;
}
#home_page #steps {
  height: 90vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/assets/img/meeting.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
#home_page #steps > .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
#home_page #steps > .container ul {
  width: 50%;
}
@media (max-width: 768px) {
  #home_page #steps > .container ul {
    width: 100%;
  }
}
#home_page #steps > .container ul li {
  padding: 20px 0;
  border-bottom: 1px solid var(--white);
  width: 100%;
}
#home_page #steps > .container .step_title {
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  position: relative;
}
#home_page #steps > .container .step_title::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/assets/img/icons/btn_arrow_white.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
}
#home_page #steps > .container .step_title span {
  font-size: 0.875rem;
}
#home_page #steps > .container .step_title:hover::after, #home_page #steps > .container .step_title.active::after {
  transform: translateY(-50%) rotate(90deg);
}
#home_page #steps > .container .step_description {
  padding-top: 10px;
  color: var(--gray);
  display: none;
}
#home_page #reviews {
  padding: 50px 0;
  background-color: #efefef;
}
#home_page #reviews h2 {
  font-size: 42px;
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #home_page #reviews h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
#home_page #reviews .reviews_slider {
  display: flex;
}
#home_page #reviews .review {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  display: flex !important;
  gap: 40px;
  height: 100%;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  #home_page #reviews .review {
    flex-direction: column;
    gap: 20px;
  }
}
#home_page #reviews .review .img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
#home_page #reviews .review .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home_page #reviews .review .review_data {
  padding: 40px 0;
}
#home_page #reviews .review .review_data img {
  margin: 20px 0 30px;
}
#home_page #reviews .review .review_data p:last-of-type {
  font-size: 1.125rem;
  font-weight: 600;
}
#home_page #reviews .slick-track {
  display: flex;
  align-items: stretch;
  height: 100%;
}
#home_page #reviews .slick-slide {
  padding: 0 20px;
}
@media (max-width: 768px) {
  #home_page #reviews .slick-slide {
    padding: 0;
  }
}
#home_page #reviews .slick-slide > div {
  height: 100%;
}
#home_page #reviews .slick-current .review {
  background-color: var(--light-green);
}
#home_page #reviews .slick-dots {
  bottom: -45px;
}

#about_page .main_screen {
  background: var(--dark-gradient), url("/assets/img/about.jpg") no-repeat center center;
  background-size: cover;
}
#about_page #aspects ul {
  display: flex;
}
@media (max-width: 768px) {
  #about_page #aspects ul {
    flex-direction: column;
  }
}
#about_page #aspects ul li {
  width: 25%;
  border: 1px solid var(--gray);
  border-top: none;
  position: relative;
}
@media (max-width: 768px) {
  #about_page #aspects ul li {
    width: 100%;
  }
}
#about_page #aspects ul li > div {
  padding: 80px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-end;
  height: 100%;
}
#about_page #aspects ul li > div img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
#about_page #aspects ul li > div p:first-of-type {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
#about_page #aspects ul li > div p:last-of-type {
  font-size: 0.875rem;
  margin-top: auto;
}
#about_page #aspects ul li .block2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--text);
  overflow-x: hidden;
  transition: all 0.5s;
  padding: 80px 0 40px;
}
#about_page #aspects ul li .block2 img {
  margin-left: 30px;
}
#about_page #aspects ul li .block2 p {
  color: var(--white);
  width: 25vw;
  padding: 0 30px;
}
@media (max-width: 768px) {
  #about_page #aspects ul li .block2 p {
    width: 100vw;
  }
}
#about_page #aspects ul li:hover .block2 {
  width: 100%;
}
#about_page #info {
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  #about_page #info {
    flex-direction: column;
    gap: 30px;
    padding: 50px 25px;
  }
}
#about_page #info .img {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #about_page #info .img {
    width: 100%;
  }
}
#about_page #info .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about_page #info .description p {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
#about_page #team {
  padding: 80px 0;
  background-color: var(--light-gray);
}
#about_page #team h2 {
  font-size: 42px;
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
}
#about_page #team ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  #about_page #team ul {
    flex-direction: column;
    gap: 30px;
  }
}
#about_page #team ul li {
  width: calc(25% - 30px);
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
@media (max-width: 768px) {
  #about_page #team ul li {
    width: 100%;
  }
}
#about_page #team ul li .img {
  display: flex;
  width: 100%;
  height: 400px;
}
#about_page #team ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about_page #team ul li p:first-of-type {
  font-size: 1.5rem;
  font-weight: 500;
}
#about_page #team ul li p:last-of-type {
  font-size: 1rem;
  color: var(--text-light);
}

#contacts_page .main_screen {
  background: var(--dark-gradient), url("/assets/img/contacts.jpg") no-repeat center center;
  background-size: cover;
}
#contacts_page #contact_info {
  padding: 100px 0;
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  #contacts_page #contact_info {
    flex-direction: column;
    gap: 30px;
    padding: 50px 25px;
  }
}
#contacts_page #contact_info .office h2 {
  font-size: 3rem;
  margin-bottom: 2px;
}
#contacts_page #contact_info .office > .flx {
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  #contacts_page #contact_info .office > .flx {
    flex-direction: column;
    gap: 20px;
  }
}
#contacts_page #contact_info .office > .flx > div {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  #contacts_page #contact_info .office > .flx > div {
    width: 100%;
  }
}
#contacts_page #contact_info .office > .flx > div p:first-of-type {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 500;
}
#contacts_page #contact_info .office > .flx > div a {
  color: var(--text);
  text-decoration: none;
}
#contacts_page #contact_info .form input {
  color: var(--text);
  border-bottom: 1px solid var(--text);
  margin-bottom: 15px;
}
#contacts_page #contact_info .form input::-moz-placeholder {
  color: var(--text);
}
#contacts_page #contact_info .form input::placeholder {
  color: var(--text);
}
#contacts_page #contact_info .form textarea {
  color: var(--text);
  border: 1px solid var(--text);
  margin: 20px 0 15px;
}
#contacts_page #contact_info .form textarea::-moz-placeholder {
  color: var(--text);
}
#contacts_page #contact_info .form textarea::placeholder {
  color: var(--text);
}
#contacts_page #map {
  height: 500px;
  width: 100%;
}
#contacts_page #map iframe {
  width: 100%;
  height: 100%;
}

#portfolio_page .main_screen {
  background: var(--dark-gradient), url("/assets/img/services.jpg") no-repeat center center;
  background-size: cover;
}

.main_screen.service_page {
  background: var(--dark-gradient), url("/assets/img/service.jpg") no-repeat center center;
  background-size: cover;
  height: 60vh;
}

.service_content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .service_content {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 50px 25px;
  }
}
.service_content aside {
  width: 200px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 20px;
  position: sticky;
  top: 80px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .service_content aside {
    width: 100%;
    position: unset;
  }
}
.service_content aside h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.service_content aside a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.service_content > div p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 2;
}
.service_content > div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.service_content > div ul li {
  list-style: disc;
  line-height: 1.7;
}/*# sourceMappingURL=style.css.map */