@font-face {
  font-family: "Gilroy Black";
  src: url("../fonts/Gilroy-Black.ttf");
}
@font-face {
  font-family: "Gilroy Bold";
  src: url("../fonts/Gilroy-Bold.ttf");
}
@font-face {
  font-family: "Gilroy Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
}
@font-face {
  font-family: "Gilroy Light";
  src: url("../fonts/Gilroy-Light.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: none;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: "Gilroy Medium", sans-serif;
  background-color: #f5f5f5;
}

h2 {
  font-size: clamp(24px, 4vw, 56px);
  font-family: "Gilroy Bold", sans-serif;
}

h3 {
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 3px;
}

h4 {
  font-size: clamp(20px, 2vw, 24px);
}

header {
  background-color: rgb(255, 255, 255);
  height: 100px;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0px 4px 22px 20px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 4px 22px 20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 22px 20px rgba(0, 0, 0, 0.75);
}
header img {
  height: 70px;
}

section {
  padding-top: clamp(40px, 5vw, 120px);
  padding-bottom: clamp(40px, 5vw, 120px);
  scroll-margin-top: 150px;
}

.second-style__section {
  background-color: rgb(17, 54, 35);
}

.hide {
  display: none;
}

.show {
  display: flex;
}

.container__standart {
  max-width: 1400px;
  padding: 0px 20px;
  margin: 0 auto;
  overflow: hidden;
}

.open-button {
  height: 50px;
  border-radius: 20px;
  padding: 0px 20px;
  color: white;
  background-color: #004891;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s all ease-in;
}
.open-button:hover {
  background-color: #3CBEEB;
  transition: 0.3s all ease-in;
}
.open-button::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -20px;
  width: 15px;
  height: 100px;
  background-color: white;
  animation: buttonAnim 2s 1s infinite;
  transform: translateX(-300px);
}

#header__section {
  padding: 0;
  height: 100%;
}

.laptop__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0px 20px;
}
.laptop__header nav ul {
  display: flex;
}
.laptop__header nav ul li {
  transition: 0.3s all ease-in;
}
.laptop__header nav ul li:not(:last-child) {
  margin-right: 40px;
}
.laptop__header nav ul li:hover {
  transform: scale(1.1);
  transition: 0.3s all ease-in;
}
.laptop__header nav ul li a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  transition: 0.3s all ease-in;
}
.laptop__header nav ul li a:hover {
  transform: scale(1.1);
  transition: 0.3s all ease-in;
}

.mobile__header {
  padding: 0px 20px;
  height: 100%;
  position: relative;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
}
.mobile__header .open-button {
  margin-left: auto;
  height: 40px;
}

.mobile__navigation {
  padding: 100px 20px 0px 20px;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 99;
}
.mobile__navigation ul {
  width: 100%;
}
.mobile__navigation li {
  text-align: center;
}
.mobile__navigation li:not(:first-child) {
  margin-top: 20px;
}
.mobile__navigation li a {
  font-size: 30px;
  color: rgb(0, 0, 0);
  width: 100%;
  text-align: center;
}

.mobile__header .burger {
  position: relative;
  pointer-events: auto;
  height: 30px;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 20px;
}

.mobile__header .burger span {
  height: 5px;
  width: 100%;
  background: rgb(0, 0, 0);
  display: block;
  transition: 0.4s all ease-in-out;
}

.burger.active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 13px);
  transition: 0.4s all ease-in-out;
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -8px);
  transition: 0.4s all ease-in-out;
}

.advantages-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(20px, 2vw, 50px);
}
.advantages-list li {
  display: block;
  width: 48%;
  margin-top: clamp(15px, 2vw, 50px);
}
.advantages-list li div {
  display: flex;
  align-items: center;
}
.advantages-list li p {
  font-size: clamp(18px, 2vw, 20px);
  margin-top: 20px;
  font-family: "Gilroy Light", sans-serif;
}
.advantages-list li span {
  width: 60px;
  height: 60px;
  background-color: white;
  display: flex;
  border-radius: 30px;
  margin-right: 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
}
.advantages-list li img {
  height: 40px;
}

#main__section {
  background-image: url(../img/2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 100px);
  color: white;
}
#main__section .container__standart {
  overflow: visible;
}
#main__section div {
  height: 100%;
}
#main__section .main__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 50%;
  position: relative;
}
#main__section .main__content p {
  font-size: clamp(18px, 2vw, 22px);
  margin: 50px 0px;
  font-family: "Gilroy Light", sans-serif;
}
#main__section .main__content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 20px;
  background: #004891;
  border-radius: 20px;
  color: white;
  overflow: hidden;
  height: 60px;
  position: relative;
}
#main__section .main__content a:hover {
  background-color: #47C1EC;
}
#main__section .main__content a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -20px;
  width: 15px;
  height: 100px;
  background-color: white;
  animation: buttonAnim 2s 1s infinite;
  transform: translateX(-300px);
}
#main__section .main__content button {
  width: 43%;
  padding: 20px;
  height: auto;
}
#main__section .main__content .arrow__button {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid white;
  background: transparent;
  position: absolute;
  color: white;
  right: -25px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: heartbeat 3s 0s infinite;
}
#main__section .main__content .arrow__button img {
  color: white;
}

#rent__section {
  background-image: url(../img/server.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
#rent__section article {
  margin-top: clamp(20px, 2vw, 60px);
  margin-bottom: clamp(20px, 2vw, 60px);
  font-size: clamp(18px, 2vw, 30px);
  font-family: "Gilroy Bold", sans-serif;
}
#rent__section p {
  font-size: clamp(16px, 2vw, 20px);
}
#rent__section p:not(:first-child) {
  margin-bottom: 10px;
}

#offer__section {
  color: white;
  background-color: rgb(156, 156, 156);
}
#offer__section h2 {
  margin-bottom: clamp(20px, 2vw, 60px);
}
#offer__section .height__container {
  height: calc(100vh - 120px);
}
#offer__section .grid {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin: auto;
  height: 100%;
  color: white;
  overflow: hidden;
}
#offer__section .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  height: 100%;
}
#offer__section .card {
  background: #333;
  padding: 20px;
  border-radius: 12px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#offer__section .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  transition: all 0.3s ease-in;
}
#offer__section .card img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in;
}
#offer__section .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 10;
  pointer-events: none;
}
#offer__section .absolute-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  width: 100%;
}
#offer__section .card.tall {
  height: 420px;
}
#offer__section .card.wide {
  flex: 1;
  height: 100%;
}
#offer__section .card span {
  font-size: clamp(16px, 2vw, 18px);
  margin-top: 10px;
  display: block;
  line-height: 16px;
  width: 280px;
}

#achieve__section {
  background-image: url(../img/xxx.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
#achieve__section ul {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#achieve__section ul li {
  font-size: clamp(18px, 2vw, 24px);
  width: 25%;
  border: 2px solid white;
  border-radius: 10px;
  padding: 10px;
  height: clamp(250px, 20vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#achieve__section ul li:not(:last-child) {
  margin-right: clamp(20px, 2vw, 60px);
}

#sold__section {
  background-color: white;
}
#sold__section .sold__container {
  margin-top: clamp(20px, 2vw, 60px);
  padding-bottom: clamp(20px, 2vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
}
#sold__section .sold__container h6 {
  font-size: 16px;
  text-align: center;
}
#sold__section .sold__container img {
  width: 100%;
  transition: 0.3s all ease-in;
}
#sold__section .sold__container div {
  width: 22%;
  border: 1px solid black;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}
#sold__section .sold__container div:hover {
  box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.74);
  -webkit-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.74);
  -moz-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.74);
}
#sold__section .sold__container div:hover .card-main {
  transform: scale(1.1);
  transition: 0.3s all ease-in;
}
#sold__section .sold__container div:hover button {
  background-color: #3CBEEB;
  transition: all 0.3s ease-in;
}
#sold__section .sold__container button {
  width: 100%;
  margin-top: 20px;
  transition: all 0.3s ease-in;
}
#sold__section .sold__container h3 {
  text-align: center;
}
#sold__section .sold__container ul {
  margin: 15px 0px;
}
#sold__section .sold__container ul li {
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 10px 0px;
}
#sold__section .sold__container ul li img {
  height: 15px;
  width: 27px;
  margin-right: 10px;
}
#sold__section .sold__container p {
  text-align: center;
}

#feedback__section .feedback__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(20px, 2vw, 60px);
}
#feedback__section .feedback__block {
  width: 32%;
  background-color: rgb(237, 237, 237);
  padding: 20px;
  border-radius: 10px;
  min-height: 380px;
  position: relative;
  z-index: 4;
  background-repeat: no-repeat;
}
#feedback__section .feedback__block div {
  position: relative;
  z-index: 10;
}
#feedback__section .feedback__block div h4 {
  position: relative;
  z-index: 4;
}
#feedback__section .feedback__block div img {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 45px;
}
#feedback__section .feedback__block article {
  margin: 10px 0px 20px 0px;
  font-size: clamp(16px, 2vw, 18px);
}
#feedback__section .feedback__block p {
  font-family: "Gilroy Light", sans-serif;
  font-size: clamp(18px, 2vw, 20px);
  position: relative;
  z-index: 5;
}
#feedback__section .feedback__block::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: rgb(237, 237, 237);
  position: absolute;
  bottom: -30px;
  left: 20%;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 5;
}

#section__faq {
  background-color: var(--main-green);
  padding: clamp(40px, 2vw, 120px) 10px;
  color: black;
}
#section__faq h2 {
  text-align: center;
  margin-bottom: 90px;
}
#section__faq h2 .highlight {
  color: #000000;
}
#section__faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}
#section__faq .accordion .accordion__item {
  border-top: 1px solid #ddd;
  cursor: pointer;
  transition: margin-bottom 0.3s ease;
}
#section__faq .accordion .accordion__item:last-child {
  border-bottom: 1px solid #ddd;
}
#section__faq .accordion .accordion__item.active {
  margin-bottom: 20px;
}
#section__faq .accordion .accordion__item .accordion__header {
  padding: 20px;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#section__faq .accordion .accordion__item .accordion__header::after {
  content: url(../img/arrow.svg);
  height: 65px;
  transition: transform 0.3s ease;
}
#section__faq .accordion .accordion__item.active .accordion__header::after {
  content: url(../img/arrow.svg);
  transform: rotate(90deg);
}
#section__faq .accordion .accordion__item .accordion__content {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.footer__content {
  border-top: 1px solid black;
  padding: 50px 0px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer__content img {
  height: 100px;
}
.footer__content p {
  text-align: center;
  margin: 5px;
  font-size: 18px;
}
.footer__content button {
  margin: 10px 0px;
}

@keyframes buttonAnim {
  0% {
    transform: translateX(-50px) rotate(25deg);
  }
  100% {
    transform: translateX(1200px) rotate(25deg);
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.2);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes slideInOut {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.show {
  animation-name: slideInOut;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.hide {
  animation-name: slideInOut;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-direction: reverse;
}

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-down {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-down.visible {
  opacity: 1;
  transform: translateY(0);
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup.active {
  display: flex;
}
.popup h3 {
  font-size: 36px;
}
.popup p {
  font-size: 20px;
  margin: 10px 0 30px 0;
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.popup__content {
  position: relative;
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  width: 90%;
  z-index: 10;
  text-align: center;
}
.popup__close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.popup input,
.popup textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.popup button[type=submit] {
  background-color: #004891;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px 0;
  cursor: pointer;
}
.popup button[type=submit]:hover {
  background-color: #3cbeeb;
}

.popup.popup-info.long .popup__content {
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  text-align: left;
  border-radius: 10px;
}
.popup.popup-info.long .popup__content h2 {
  font-size: 28px !important;
  margin-bottom: 15px;
  color: #222;
}
.popup.popup-info.long .popup__content .popup__subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}
.popup.popup-info.long .popup__content .popup__section {
  margin-bottom: 25px;
}
.popup.popup-info.long .popup__content .popup__section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}
.popup.popup-info.long .popup__content .popup__section ul {
  padding-left: 20px;
  list-style: disc;
}
.popup.popup-info.long .popup__content .popup__section ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.popup.popup-info.long .popup__content .popup__section p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}
.popup.popup-info.long .popup__content .popup__contacts {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.popup.popup-info.long .popup__content .popup__contacts span {
  font-weight: 600;
}
.popup.popup-info.long .popup__content .popup__contacts a {
  color: #e53935;
  text-decoration: none;
}
.popup.popup-info.long .popup__content .popup__contacts a:hover {
  text-decoration: underline;
}
.popup.popup-info.long .popup__close {
  top: 15px;
  right: 20px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal .open-button {
  margin-top: 20px;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  margin-top: 50px;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  width: 70%;
  height: 70vh;
  overflow-y: auto;
}
.modal .modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-images {
  display: flex;
  gap: 10px;
  margin: 1rem 0;
}
.modal-images img {
  width: 33%;
  height: 25%;
  object-fit: cover;
  border-radius: 6px;
}/*# sourceMappingURL=styles.css.map */