header {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

header .container {
  width: 94.4%;
  padding: 40px 0 40px 40px;
}

header .container a {
  width: calc(20% - 40px);
}

header .container a svg {
  vertical-align: middle;
}

header .container a svg path {
  fill: #000 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .container a:hover svg path {
  fill: #f7941e !important;
}

header .container > nav {
  width: 60%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .container > nav a {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin: 0 15px;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  position: relative;
}

header .container > nav a::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

header .container > nav a:hover::before {
  width: 100%;
}

header .container .button {
  width: 20%;
}

header .container .button button {
  float: right;
  background-color: #fff;
  color: #f7941e;
}

header .container .button button:hover {
  -webkit-box-shadow: 0px 5px 20px -5px #f7941e;
          box-shadow: 0px 5px 20px -5px #f7941e;
  background-color: #f7941e;
  color: #fff;
}

.promoFirst {
  background-color: #f1f1f2;
  overflow: hidden;
  position: relative;
}

.promoFirst .content {
  width: 50%;
  padding-top: 8%;
  padding-bottom: 6%;
  padding-left: 11.25%;
  padding-right: 8.75%;
}

.promoFirst .content .title {
  font-size: 56px;
  line-height: 66px;
  font-family: "Gilroy-SemiBold";
  margin-bottom: 36px;
}

.promoFirst .content .text {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 52px;
}

.promoFirst .content button {
  background-color: #f7941e;
  color: #fff;
  padding: 20px 45px;
}

.promoFirst .content button:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #f7941e;
}

.promoFirst::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-image: url(./prepare/Background.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  right: 0;
  top: 0;
}

.promoSecond {
  background-color: #f1f1f2;
  overflow: hidden;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.promoSecond .content {
  width: 50%;
  padding-top: 8%;
  padding-bottom: 6%;
  padding-left: 11.25%;
  padding-right: 8.75%;
  float: right;
}

.promoSecond .content .title {
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 25px;
}

.promoSecond .content .text {
  text-align: justify;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 52px;
  margin-bottom: 35px;
}

.promoSecond .content button {
  padding: 20px 45px;
  background-color: rgba(0, 0, 0, 0);
  color: #f7941e;
}

.promoSecond .content button:hover {
  -webkit-box-shadow: 0px 5px 20px -5px #f7941e;
          box-shadow: 0px 5px 20px -5px #f7941e;
  background-color: #f7941e;
  color: #fff;
}

.promoSecond::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-image: url(./prepare/Media.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  left: 0;
  top: 0;
}

.postCards .container {
  padding: 95px 0 135px 0;
}

.postCards .card {
  width: 23.5%;
  height: 30vw;
  background-color: #d1d1d152;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.postCards .card .photo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: calc(81.25vw * 0.235);
}

.postCards .card .text_area {
  height: calc(30vw - (81.25vw * 0.235));
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.postCards .card .text_area .title {
  font-size: 20px;
  line-height: 24px;
}

.postCards .card .text_area .more {
  font-size: 14px;
  line-height: 19px;
}

.postCards .card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.15);
}

@media (max-width: 980px) {
  .postCards .text_area {
    padding: 18px !important;
  }
  .postCards .text_area .title {
    font-size: 16px !important;
    line-height: 18px !important;
  }
  .postCards .text_area .more {
    font-size: 12px !important;
    line-height: 14px !important;
  }
}

@media (max-width: 770px) {
  .cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cards .card {
    width: 48.5%;
    height: 20vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cards .card:nth-of-type(1), .cards .card:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .cards .card .photo {
    height: 100%;
    width: 50%;
  }
  .cards .card .text_area {
    height: 100%;
    width: 50%;
    padding: 24px;
  }
  .postCards .container {
    padding: 70px 0 70px 0;
  }
}

@media (max-width: 640px) {
  .section_title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .section_subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 55px;
  }
}

@media (max-width: 620px) {
  .card {
    width: 48.5% !important;
    height: calc((81.25vw * 0.485) + (81.25vw * 0.2)) !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card .photo {
    width: 100% !important;
    height: calc(81.25vw * 0.485) !important;
  }
  .card .text_area {
    height: calc(81.25vw * 0.2) !important;
    width: 100% !important;
    padding: 24px !important;
  }
  .card .text_area .title {
    font-size: 20px;
    line-height: 24px;
  }
  .card .text_area .more {
    font-size: 14px;
    line-height: 19px;
  }
}

@media (max-width: 560px) {
  .text_area {
    padding: 16px !important;
  }
}

@media (max-width: 400px) {
  .postCards .container {
    padding: 70px 0 15px 0;
  }
  .postCards .card {
    width: 100% !important;
    height: calc(81.25vw + (81.25vw * 0.4)) !important;
    margin-bottom: 20px !important;
  }
  .postCards .card .photo {
    height: 81.25vw !important;
  }
  .postCards .card .text_area {
    height: calc(81.25vw * 0.4) !important;
    padding: 16px !important;
  }
  .postCards .card .text_area .title {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  .postCards .card .text_area .more {
    font-size: 14px !important;
    line-height: 19px !important;
  }
}

@media (max-width: 300px) {
  .postCards .card .text_area .title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .postCards .card .text_area .more {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .section_title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 1055px) {
  .promoSecond .content,
  .promoFirst .content {
    width: 100%;
    padding-bottom: 58% !important;
    padding-top: 10% !important;
    padding-left: 9.25% !important;
    padding-right: 6.75% !important;
  }
  .promoSecond .content .title,
  .promoFirst .content .title {
    font-size: 40px !important;
    line-height: 46px !important;
    margin-bottom: 20px !important;
  }
  .promoSecond .content .text,
  .promoFirst .content .text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  .promoSecond .content button,
  .promoFirst .content button {
    padding: 11px 25px;
  }
  .promoFirst::after {
    top: 50%;
    width: 100%;
    height: 50%;
    background-position-y: 38%;
  }
  .promoSecond .content {
    padding-right: 9.25% !important;
    padding-left: 6.75% !important;
  }
  .promoSecond::before {
    top: 50%;
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 670px) {
  .promoSecond .content,
  .promoFirst .content {
    padding-bottom: 76% !important;
    padding-top: 8% !important;
  }
}

@media (max-width: 465px) {
  .promoSecond .content .title,
  .promoFirst .content .title {
    font-size: 32px !important;
    line-height: 40px !important;
    margin-bottom: 16px !important;
  }
  .promoSecond .content .text,
  .promoFirst .content .text {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 376px) {
  .promoFirst::after {
    height: 40%;
    top: 60%;
  }
  .promoSecond::before {
    height: 40%;
    top: 60%;
  }
  .promoSecond .content,
  .promoFirst .content {
    padding-bottom: 80% !important;
    padding-top: 6% !important;
  }
}

@media (max-width: 780px) {
  header {
    background-color: #fff;
  }
  header .container {
    width: 94.4%;
    padding: 40px 0;
  }
  header .container a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .container > nav {
    width: 60%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .container .button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

header {
  position: relative;
}

header .container .burger_menu {
  display: none;
}

header .container .burger_menu .burger {
  width: 45px;
  height: 40px;
  position: relative;
}

header .container .burger_menu .burger span {
  position: absolute;
  top: calc(100% / 2 - 2px);
  width: 45px;
  height: 2px;
  background-color: #f7941e;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

header .container .burger_menu .burger::before, header .container .burger_menu .burger::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  background-color: #f7941e;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

header .container .burger_menu .burger::before {
  top: 0;
}

header .container .burger_menu .burger::after {
  bottom: 0;
}

header .container .burger_menu .burger.active span {
  width: 0;
}

header .container .burger_menu .burger.active::before {
  top: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .container .burger_menu .burger.active::after {
  bottom: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .container .burger_menu .dropdown_menu {
  display: none;
  position: absolute;
  width: 100vw;
  height: calc(100vh - 100%);
  left: 0;
  top: 99%;
  z-index: 1000;
  background-color: #f7941e;
}

header .container .burger_menu .dropdown_menu nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 10%;
  height: 90%;
}

header .container .burger_menu .dropdown_menu nav a {
  text-align: center;
  padding: 25px;
  color: #fff;
  width: 100%;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: "Gilroy-SemiBold";
}

@media (max-width: 670px) {
  header .container {
    padding: 20px 0;
  }
  header .container > nav {
    display: none !important;
  }
  header .container .burger_menu {
    display: block;
  }
  header .container .burger_menu .burger {
    display: block;
  }
  header .container .button {
    display: none;
  }
}

@media (max-width: 376px) {
  header .container .burger_menu {
    height: 40px !important;
  }
}

.up_arrow {
  position: fixed;
  z-index: 900;
  right: 5%;
  bottom: 5%;
  display: none;
}
/*# sourceMappingURL=lera.css.map */