.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
}
@media (max-width: 630px) {
  .container {
    padding: 0 15px;
  }
}

html {
  font-size: 10px;
  letter-spacing: 0.46px;
}

h1 {
  font-size: 6rem;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 6rem;
  text-transform: uppercase;
}
@media (max-width: 630px) {
  h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}

h2 {
  font-size: 4rem;
  font-weight: 800;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 4rem;
}
@media (max-width: 630px) {
  h2 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}

p,
span {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150% !important;
}

a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  color: #fff;
}

body, html {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  scroll-behavior: smooth;
  background-color: #F2F2F2;
}

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

.btn-primary {
  padding: 17px 24px;
  background-color: #01B0AB;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 35px;
  position: relative;
}
.btn-primary .button-value {
  position: relative;
  font-weight: 800;
  margin-right: 10px;
}
.btn-primary i {
  transition: 0.2s;
}
.btn-primary:hover i {
  transform: translateX(5px);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #F84343;
  right: 5px;
  top: 0;
  position: absolute;
  right: 0;
  opacity: 0;
  transition: 0.2s;
}

.btn-primary.dark-bg {
  background-color: #22454D;
}

@media (max-width: 630px) {
  .btn-primary {
    padding: 14px 17px;
    margin-top: 30px;
  }
}
.dashboard-main {
  width: 100%;
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
}
.dashboard-main__content {
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 150px 0;
}
.dashboard-main__content p {
  max-width: 500px;
  line-height: 140%;
  font-size: 2rem;
  margin-top: 30px;
}
.dashboard-main #home {
  background-image: url("../../assets/imgs/dashboard-imgs/home.jpg");
}
.dashboard-main #ofert {
  background-image: url("../../assets/imgs/ofert/placeholder5.jpg");
}
.dashboard-main #form {
  background-image: url("../../assets/imgs/dashboard-imgs/form.jpg");
}
.dashboard-main #ofert1 {
  background-image: url("../../assets/imgs/dashboard-imgs/ofert.jpg");
}
.dashboard-main #ofert2 {
  background-image: url("../../assets/imgs/ofert/placeholder.jpg");
}
.dashboard-main #ofert3 {
  background-image: url("../../assets/imgs/ofert/placeholder2.jpg");
}
.dashboard-main #ofert4 {
  background-image: url("../../assets/imgs/ofert/placeholder3.jpg");
}
.dashboard-main #ofert5 {
  background-image: url("../../assets/imgs/ofert/placeholder4.jpg");
}
.dashboard-main__bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.dashboard-main__bg-img::before {
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(90deg, #00B0AB 0%, rgba(0, 176, 171, 0) 100%);
}

.dashboard-main.thanks {
  height: 100vh;
  justify-content: center;
}
.dashboard-main.thanks .dashboard-main__content {
  text-align: center;
}
.dashboard-main.thanks .dashboard-main__content p {
  max-width: 700px;
  margin: 40px auto;
}
.dashboard-main.thanks .dashboard-main__content a {
  margin: 35px auto;
}

@media (max-width: 630px) {
  .dashboard-main {
    min-height: 650px;
  }
}
.ofert-cards {
  width: 100%;
  transform: translateY(-50%);
}
.ofert-cards__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ofert-cards__content--card-wrapper {
  width: 440px;
  min-height: 175px;
  background-color: #fff;
  color: #000;
  display: flex;
  position: relative;
  overflow: hidden;
}
.ofert-cards__content--card-wrapper .card-icon {
  min-width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01B0AB;
}
.ofert-cards__content--card-wrapper .card-icon i {
  font-size: 8rem;
}
.ofert-cards__content--card-wrapper .card-text {
  width: 100%;
  padding: 12px;
}
.ofert-cards__content--card-wrapper .card-text--name {
  font-weight: 800;
}
.ofert-cards__content--card-wrapper .card-text--description {
  margin-top: 10px;
}
.ofert-cards__content--card-wrapper::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: translateY(5px);
  transition: 0.2s;
  transition-delay: 0.1s;
}
.ofert-cards__content--card-wrapper:hover::before {
  transform: translateY(0px);
  transition-delay: 0s;
}

@media (max-width: 1400px) {
  .ofert-cards__content {
    justify-content: space-around;
  }
  .ofert-cards__content--card-wrapper:nth-child(3) {
    display: none;
  }
}
@media (max-width: 1024px) {
  .ofert-cards {
    transform: translateY(0%);
  }
  .ofert-cards__content {
    flex-direction: column;
  }
  .ofert-cards__content--card-wrapper {
    width: 100%;
    min-height: 150px;
    margin-top: 15px;
  }
  .ofert-cards__content--card-wrapper:nth-child(3) {
    display: flex;
  }
}
@media (max-width: 630px) {
  .ofert-cards__content--card-wrapper .card-icon {
    min-width: 140px;
  }
  .ofert-cards__content--card-wrapper .card-icon i {
    font-size: 6rem;
  }
}
.about-comapny {
  padding-top: 50px;
}
.about-comapny__content {
  display: flex;
}
.about-comapny__content--text-wrapper {
  padding: 30px 50px;
}
.about-comapny__content--text-wrapper h2 {
  margin-bottom: 40px;
}
.about-comapny__content--text-wrapper .list-wrapper--item {
  display: flex;
}
.about-comapny__content--text-wrapper .list-wrapper--item:not(:last-child) {
  margin-bottom: 20px;
}
.about-comapny__content--text-wrapper .list-wrapper--item .list-number {
  min-width: 59px;
  height: 59px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #01B0AB;
  border-radius: 50%;
  margin-right: 10px;
}
.about-comapny__content--text-wrapper .list-wrapper--item .list-number span {
  color: #01B0AB;
  font-weight: 800;
  font-size: 2rem;
}
.about-comapny__content--text-wrapper .list-wrapper--item .list-content {
  margin-top: 16px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-comapny__content--text-wrapper .list-wrapper--item .list-content .list-title {
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 2rem;
}
.about-comapny__content--img-wrapper {
  min-width: 500px;
  background-image: url("../../assets/imgs/about/about2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.about-comapny__content--img-wrapper::before {
  background-color: #01B0AB;
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-comapny__second-content {
  padding: 40px 0 10px 0;
}
.about-comapny__second-content h2 {
  margin-bottom: 20px;
}
.about-comapny__second-content p {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .about-comapny {
    margin-top: 40px;
  }
  .about-comapny__content {
    flex-direction: column;
  }
  .about-comapny__content--text-wrapper {
    padding: 30px 10px;
  }
  .about-comapny__content--text-wrapper .list-wrapper--item .list-content {
    max-width: 100%;
  }
  .about-comapny__content--img-wrapper {
    background-position: top center;
    height: 400px;
    min-width: 100%;
  }
}
@media (max-width: 630px) {
  .about-comapny__content--text-wrapper {
    padding: 30px 0px;
  }
  .about-comapny__content--text-wrapper h2 {
    margin-bottom: 15px;
  }
}
.form-information {
  margin-top: 40px;
  position: relative;
}
.form-information__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.form-information__content--text {
  max-width: 550px;
  padding: 30px 50px;
}
.form-information__content--text h2 {
  margin-bottom: 20px;
}
.form-information__content--img {
  background-image: url("../../assets/imgs/form/form2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 600px;
}
.form-information::before {
  content: "";
  background-color: #01B0AB;
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1024px) {
  .form-information__content {
    flex-direction: column-reverse;
  }
  .form-information__content--text {
    max-width: 100%;
  }
  .form-information__content--img {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 630px) {
  .form-information__content--text {
    padding: 20px;
  }
  .form-information__content--text h2 {
    margin-bottom: 15px;
  }
}
.ofert {
  background-color: #01B0AB;
}
.ofert__content {
  display: flex;
  justify-content: space-between;
  padding: 70px 0;
}
.ofert__content:first-child {
  padding-bottom: 0;
}
.ofert__content--item {
  background-color: #F2F2F2;
  max-width: 445px;
  width: 100%;
}
.ofert__content--item:not(:last-child) {
  margin-right: 20px;
}
.ofert__content--item .card-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  width: 100%;
}
.ofert__content--item:nth-child(1) .card-img {
  background-image: url("../../assets/imgs/ofert/p1.png");
}
.ofert__content--item:nth-child(2) .card-img {
  background-image: url("../../assets/imgs/ofert/p2.png");
}
.ofert__content--item:nth-child(3) .card-img {
  background-image: url("../../assets/imgs/ofert/p3.png");
}
.ofert__content--item .card-content {
  padding: 20px 40px;
}
.ofert__content--item .card-content .card-title {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.ofert__content--item .card-content .card-text {
  display: block;
}
.ofert .second-floor .ofert__content--item:nth-child(1) .card-img {
  background-image: url("../../assets/imgs/ofert/p4.png");
}
.ofert .second-floor .ofert__content--item:nth-child(2) .card-img {
  background-image: url("../../assets/imgs/ofert/p5.png");
}
.ofert .second-floor .ofert__content--item:nth-child(3) .card-img {
  background-image: url("../../assets/imgs/ofert/p6.png");
}

@media (max-width: 1024px) {
  .ofert__content {
    flex-direction: column;
  }
  .ofert__content--item {
    max-width: 100%;
  }
  .ofert__content--item:not(:last-child) {
    margin-bottom: 30px;
  }
  .ofert__content--item .card-content .card-text {
    height: 100% !important;
  }
}
@media (max-width: 630px) {
  .ofert__content--item .card-content {
    padding: 20px;
  }
}
.contact-main {
  position: relative;
  background-color: #1EA2B1;
}
.contact-main::before, .contact-main::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.contact-main::before {
  width: 25px;
  background-color: #14636C;
  z-index: 1;
}
.contact-main::after {
  width: 155px;
  background-color: #1B818C;
}
.contact-main__content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  color: #fff;
}
.contact-main__content--text {
  width: 50%;
  padding: 30px 50px;
}
.contact-main__content--text p {
  margin-top: 30px;
}
.contact-main--img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../../assets/imgs/contact/contact.jpg");
}

@media (max-width: 1024px) {
  .contact-main {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-main__content {
    justify-content: flex-start;
  }
  .contact-main__content--text {
    width: 100%;
    padding: 20px;
  }
  .contact-main--img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 300px;
  }
}
.footer {
  background-color: #E1E1E1;
  margin-top: 40px;
}
.footer__policy {
  background-color: #fff;
  padding: 20px 0;
}
.footer__content {
  position: relative;
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
.footer__content::before {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.footer__content--list:not(:last-child) {
  margin-right: 20px;
}
.footer__content--list {
  width: 100%;
}
.footer__content--list span {
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}
.footer__content--list ul {
  list-style: none;
}
.footer__content--list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer__content--list ul li a {
  font-weight: 400;
  color: #000;
  transition: 0.2s;
  font-size: 19px;
}
.footer__content--list ul li a:hover {
  color: #1B818C;
}

@media (max-width: 1024px) {
  .footer__content {
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .footer__content--list {
    margin-right: 0 !important;
  }
}
@media (max-width: 630px) {
  .footer__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ofert-list {
  display: flex;
  flex-direction: column;
}
.ofert-list__ofert-wrapper {
  position: relative;
  display: flex;
  min-height: 400px;
}
.ofert-list__ofert-wrapper .container {
  display: flex;
  justify-content: flex-end;
}
.ofert-list__ofert-wrapper--text {
  width: 50%;
  padding: 50px;
}
.ofert-list__ofert-wrapper--text p {
  margin-top: 20px;
}
.ofert-list__ofert-wrapper--img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.ofert-list__ofert-wrapper--img::before {
  content: "";
  width: 300px;
  height: 100%;
  right: 0;
  background: linear-gradient(270deg, #F2F2F2 0%, rgba(242, 242, 242, 0) 100%);
  position: absolute;
  top: 0;
}
.ofert-list__ofert-wrapper .img--1 {
  background-image: url("../../assets/imgs/ofert/p7.png");
}
.ofert-list__ofert-wrapper .img--2 {
  background-image: url("../../assets/imgs/ofert/p1.png");
}
.ofert-list__ofert-wrapper .img--3 {
  background-image: url("../../assets/imgs/ofert/p2.png");
}
.ofert-list__ofert-wrapper .img--4 {
  background-image: url("../../assets/imgs/ofert/p3.png");
}
.ofert-list__ofert-wrapper .img--5 {
  background-image: url("../../assets/imgs/ofert/p4.png");
}
.ofert-list__ofert-wrapper .img--6 {
  background-image: url("../../assets/imgs/ofert/p5.png");
}
.ofert-list__ofert-wrapper .img--7 {
  background-image: url("../../assets/imgs/ofert/p6.png");
}
.ofert-list__ofert-wrapper:nth-child(even) .container {
  justify-content: flex-start;
}
.ofert-list__ofert-wrapper:nth-child(even) .ofert-list__ofert-wrapper--img {
  left: 50%;
}
.ofert-list__ofert-wrapper:nth-child(even) .ofert-list__ofert-wrapper--img::before {
  right: calc(100% - 300px);
  background: linear-gradient(90deg, #F2F2F2 0%, rgba(242, 242, 242, 0) 100%);
}

@media (max-width: 1024px) {
  .ofert-list__ofert-wrapper:nth-child(even) .container {
    justify-content: center;
  }
  .ofert-list__ofert-wrapper:nth-child(even) .ofert-list__ofert-wrapper--img {
    left: 0;
  }
  .ofert-list__ofert-wrapper:nth-child(even) .ofert-list__ofert-wrapper--img::before {
    right: 0;
    background: rgba(255, 255, 255, 0.8);
  }
  .ofert-list__ofert-wrapper .container {
    justify-content: center;
    align-items: center;
  }
  .ofert-list__ofert-wrapper--text {
    position: relative;
    z-index: 1;
    max-width: 70%;
    width: 100%;
    padding: 25px 0;
  }
  .ofert-list__ofert-wrapper--img {
    width: 100%;
  }
  .ofert-list__ofert-wrapper--img::before {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 630px) {
  .ofert-list__ofert-wrapper--text {
    max-width: 100%;
  }
}
.form-wrapper__content {
  display: flex;
  min-height: 710px;
  position: relative;
  background-color: #fff;
}
.form-wrapper__content--form {
  padding: 100px;
}
.form-wrapper__content--form form {
  position: relative;
  height: 100%;
}
.form-wrapper__content--form form .inputs-box .input-container {
  display: none;
  flex-direction: column;
}
.form-wrapper__content--form form .inputs-box .input-container h2 {
  margin-bottom: 50px;
}
.form-wrapper__content--form form .inputs-box .input-container .input-inside {
  width: 430px;
  padding: 10px 0;
  border: none;
  background-color: transparent;
  font-size: 2rem;
  border-bottom: 1px solid #A1A1A1;
  color: #000;
  transition: 0.2s;
  outline: none;
  font-family: "Mulish", sans-serif;
}
.form-wrapper__content--form form .inputs-box .input-container textarea.input-inside {
  resize: none;
  height: 250px;
  background-color: #ECECEC;
  padding: 10px 5px;
}
.form-wrapper__content--form form .inputs-box .input-container .input-inside::-moz-placeholder {
  color: #A1A1A1;
  opacity: 1;
}
.form-wrapper__content--form form .inputs-box .input-container .input-inside::placeholder {
  color: #A1A1A1;
  opacity: 1;
}
.form-wrapper__content--form form .inputs-box .input-container .input-inside::-ms-input-placeholder {
  color: #A1A1A1;
}
.form-wrapper__content--form form .inputs-box .input-container .input-inside:active:focus {
  border-bottom: 1px solid #000;
}
.form-wrapper__content--form form .inputs-box .input-container .input-inside:not(:last-child) {
  margin-bottom: 20px;
}
.form-wrapper__content--form form .inputs-box .active--slide {
  display: flex;
}
.form-wrapper__content--form form .navigation-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
}
.form-wrapper__content--form form .navigation-buttons .hidden {
  display: none;
}
.form-wrapper__content--form form .navigation-buttons #back-btn .button-value {
  margin-left: 10px;
  margin-right: 0;
}
.form-wrapper__content--form form .navigation-buttons #back-btn i {
  transform: rotate(180deg);
}
.form-wrapper__content--form form .navigation-buttons #back-btn:hover i {
  transform: rotate(180deg) translateX(5px);
}
.form-wrapper__content--form form .navigation-buttons a, .form-wrapper__content--form form .navigation-buttons button {
  display: flex;
  color: #fff;
  border: none;
  cursor: pointer;
}
.form-wrapper__content--form form .navigation-buttons a::before, .form-wrapper__content--form form .navigation-buttons button::before {
  display: none;
}
.form-wrapper__content--form form .navigation-buttons #submit-btn {
  background-color: #4ACE0C;
}
.form-wrapper__content--form form .navigation-buttons #submit-btn::before {
  display: none;
}
.form-wrapper__content--form form .navigation-buttons .btn-disabled {
  pointer-events: none;
  background-color: #E1E1E1 !important;
  color: #A1A1A1;
}
.form-wrapper__content--img {
  width: 100%;
  background-image: url("../../assets/imgs/form/form2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .form-wrapper {
    background-color: #fff;
  }
  .form-wrapper__content {
    width: 100%;
    min-height: 600px;
  }
  .form-wrapper__content--form {
    width: 100%;
  }
  .form-wrapper__content--form form .inputs-box {
    width: 100%;
  }
  .form-wrapper__content--form form .inputs-box .input-container .input-inside {
    width: 100%;
  }
  .form-wrapper__content--img {
    display: none;
  }
}
@media (max-width: 630px) {
  .form-wrapper__content--form {
    padding: 70px 0;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__content h1 {
  margin-top: 160px;
}
.contact__content p {
  margin-top: 30px;
  max-width: 500px;
  text-align: center;
}
.contact__content--links {
  width: 100%;
  margin-top: 50px;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
  padding: 40px;
}
.contact__content--links a:not(:last-child) {
  margin-right: 24px;
}
.contact__content--links a {
  padding: 17px 24px;
  background-color: #22454D;
  border-radius: 5px;
}
.contact__content--links a span {
  font-weight: 800;
}
.contact__content--links a i {
  margin-right: 10px;
}
.contact__content--map {
  width: 100%;
}
.contact__content--map iframe {
  border: none;
  border-bottom: 25px solid #01B0AB;
  width: 100%;
  height: 400px;
}

@media (max-width: 1024px) {
  .contact__content--links {
    flex-direction: column;
    align-items: center;
  }
  .contact__content--links a {
    margin: 0 0 15px 0 !important;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 1024px) {
  .contact__content--links {
    padding: 40px 0;
  }
  .contact__content--links a {
    width: 100%;
    text-align: center;
  }
}
.navigation {
  width: 100%;
  position: fixed;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
}
.navigation__content {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation__content--logo img {
  width: 80px;
}
.navigation__content--link-list ul {
  display: flex;
  list-style: none;
}
.navigation__content--link-list ul li:not(:last-child) {
  margin-right: 30px;
}
.navigation__content--link-list ul li a {
  color: #000;
  transition: 0.2s;
  font-size: 2rem;
}
.navigation__content--link-list ul li a:hover {
  color: #01B0AB;
}
.navigation__content .nav-list--active {
  transform: translateX(0);
}
.navigation__content--nav-btn {
  padding: 25px;
  border: none;
  background-color: transparent;
  display: none;
  z-index: 20;
}
.navigation__content--nav-btn .line-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.navigation__content--nav-btn .line-wrapper .line {
  width: 40px;
  height: 3px;
  background-color: #000;
  position: absolute;
  border-radius: 2px;
  transition: 0.2s;
}
.navigation__content--nav-btn .line-wrapper .line:first-child {
  transform: translateY(-10px);
}
.navigation__content--nav-btn .line-wrapper .line:last-child {
  transform: translateY(10px);
}
.navigation__content .nav-btn--active {
  display: block;
}
.navigation__content .nav-btn--active .line-wrapper .line:nth-child(2) {
  display: none;
}
.navigation__content .nav-btn--active .line-wrapper .line:first-child {
  transform: translateY(0px) rotate(-45deg);
}
.navigation__content .nav-btn--active .line-wrapper .line:last-child {
  transform: translateY(0px) rotate(45deg);
}

@media (max-width: 1220px) {
  .navigation__content {
    padding: 15px 0;
  }
  .navigation__content--link-list {
    position: absolute;
    width: 400px;
    height: 100vh;
    padding: 80px 40px;
    right: 0;
    top: 0;
    transform: translateX(100%);
    background-color: #fff;
    transition: 0.2s;
  }
  .navigation__content--link-list ul {
    flex-direction: column;
  }
  .navigation__content--link-list ul li:not(:last-child) {
    margin: 0 0 20px 0;
  }
  .navigation__content--link-list ul li a {
    font-size: 3rem;
  }
  .navigation__content--nav-btn {
    display: block;
  }
}
@media (max-width: 630px) {
  .navigation__content--link-list {
    width: 100%;
  }
}
.single-ofert__content {
  padding-top: 40px;
}
.single-ofert__content h2 {
  font-size: 2.5rem;
  position: relative;
  margin-left: 25px;
  margin-bottom: 10px;
}
.single-ofert__content h2::before {
  content: "";
  width: 15px;
  height: 50%;
  background-color: #01B0AB;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.single-ofert__content p {
  margin-bottom: 30px;
}
.single-ofert__content ul {
  margin-top: -15px;
  margin-bottom: 30px;
}
.single-ofert__content ul li {
  font-size: 1.8rem;
  margin-left: 30px;
  font-family: "Source Sans Pro", sans-serif;
  margin-bottom: 10px;
}
.single-ofert__content img {
  width: 60%;
}
@media (max-width: 1024px) {
  .single-ofert__content img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */