@font-face {
  font-family: r-l;
  src: url(../fonts/Rubik-Light.ttf);
  font-weight: 400;
  line-height: normal;
}
@font-face {
  font-family: r-r;
  src: url(../fonts/Rubik-Regular.ttf);
  font-weight: 400;
  line-height: normal;
}
@font-face {
  font-family: r-m;
  src: url(../fonts/Rubik-Medium.ttf);
  font-weight: 400;
  line-height: normal;
}
@font-face {
  font-family: r-b;
  src: url(../fonts/Rubik-Bold.ttf);
  font-weight: 400;
  line-height: normal;
}
* {
  font-family: r-r;
}

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

body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: transparent; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  border-radius: 40px;
  background-color: #202020; /* color of the scroll thumb */
}

.button {
  display: flex;
}
.button button, .button a {
  text-align: center;
  padding: 6px 14px;
  font-size: 20px;
  line-height: 24px;
  font-family: r-r;
  color: #202020;
  transition: 0.3s;
  background: transparent;
  border: 1px solid #202020;
  cursor: pointer;
  display: flex;
}
@media only screen and (max-width: 1439px) {
  .button button, .button a {
    font-size: 18px;
  }
}
.button button:hover, .button a:hover {
  color: #ffffff;
  background: #202020;
  transform: 0.3s;
}

.loader {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.loader .blur {
  position: fixed;
  inset: -50px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  transform: scale(2);
  z-index: 20;
  transition: 0.5s;
}
.loader .load {
  position: fixed;
  z-index: 21;
  inset: 0;
}
.loader.hidden-first .blur {
  backdrop-filter: blur(0px);
  transition: 1s;
}
.loader.hidden-first .load {
  transform: scale(0);
  transition: 2s;
}
.loader.hidden-last {
  display: none;
}

.content {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}
@media only screen and (max-width: 1439px) {
  .content {
    max-width: 960px;
  }
}
@media only screen and (max-width: 1023px) {
  .content {
    max-width: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .content {
    max-width: 344px;
  }
}

h3 {
  font-size: 60px;
  line-height: 64px;
  color: #36383A;
  font-family: r-b;
  text-transform: uppercase;
}
@media only screen and (max-width: 1439px) {
  h3 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media only screen and (max-width: 1023px) {
  h3 {
    font-size: 38px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

.menu-fixed {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 20;
}
.menu-fixed .item {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-fixed .menu-head {
  background: #fff;
  box-shadow: 0px 0px 5px 0.5px #bfbfbf;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 50%;
  transform: scale(1);
}
.menu-fixed .menu-head:hover {
  transition: 0.4s;
  transform: scale(0.9);
}
.menu-fixed .menu-head .item:nth-child(2) {
  display: none;
}
.menu-fixed .menu-content {
  background: #fff;
  box-shadow: 0px 0px 5px 0.5px #bfbfbf;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 15px;
  margin-bottom: 15px;
  transform: scale(0) translateY(80px);
  transition: 0.4s;
}
.menu-fixed .menu-content .item {
  transform: scale(1);
}
.menu-fixed .menu-content .item:hover {
  transition: 0.4s;
  transform: scale(0.9);
}
.menu-fixed.__open .menu-content {
  transform: scale(1) translateY(0);
}
.menu-fixed.__open .menu-head .item:nth-child(1) {
  display: none;
}
.menu-fixed.__open .menu-head .item:nth-child(2) {
  display: flex;
}

#header {
  padding-top: 32px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  #header {
    padding-top: 24px;
  }
}
#header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
}
@media only screen and (max-width: 1023px) {
  #header .info {
    display: none;
  }
}
#header .info p {
  font-size: 20px;
  line-height: 24px;
}
#header .logo {
  font-size: 20px;
  line-height: 24px;
}
#header .navigation {
  display: flex;
  align-items: center;
  column-gap: 62px;
}
#header .navigation * {
  font-size: 20px;
  line-height: 24px;
}
#header .navigation li {
  animation-name: bounceIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.3s;
}
#header .navigation li.active a {
  color: #9E9C24;
}
#header .navigation li:nth-child(5n+2) {
  animation-delay: 0.23s;
}
#header .navigation li:nth-child(2n+5) {
  animation-delay: 0.35s;
}
#header .navigation li:nth-child(1n+4) {
  animation-delay: 0.23s;
}
#header .navigation li:nth-child(1n+2) {
  animation-delay: 0.4s;
}
#header .navigation li:nth-child(1n+4) {
  animation-delay: 0.2s;
}
#header .navigation .button {
  margin-left: 40px;
  animation-name: bounceIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 1s;
}
@media only screen and (max-width: 1439px) {
  #header .navigation {
    column-gap: 42px;
  }
  #header .navigation .button {
    margin-left: 0;
  }
  #header .navigation * {
    font-size: 16px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  #header .navigation {
    display: none;
  }
}
#header .burger-menu {
  display: none;
}
#header .burger-menu::before {
  backdrop-filter: blur(0px);
  transition: 0.4s;
}
#header .burger-menu .burger-control {
  display: none;
}
#header .burger-menu .burger-vector {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1D35AB;
}
@media only screen and (max-width: 1023px) {
  #header .burger-menu {
    display: block;
  }
}
@media only screen and (max-width: 1023px) {
  #header .header-content.__burger-open .burger-menu::before {
    content: "";
    inset: 0;
    position: fixed;
    z-index: 10;
    backdrop-filter: blur(3px);
    transition: 0.4s;
  }
  #header .header-content.__burger-open .burger-menu .burger-control {
    display: block;
    position: fixed;
    background: #ffffff;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    z-index: 11;
  }
  #header .header-content.__burger-open .burger-menu .bug-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #header .header-content.__burger-open .burger-menu .burger-content {
    padding: 16px;
  }
  #header .header-content.__burger-open .burger-menu .burger-vector {
    border: 2px solid #ffffff;
    width: 40px;
    height: 40px;
  }
  #header .header-content.__burger-open .burger-menu ul {
    font-size: 22px;
    line-height: 24px;
    color: #202020;
    row-gap: 32px;
    display: flex;
    flex-direction: column;
    margin-top: 42px;
  }
  #header .header-content.__burger-open .burger-menu ul li {
    padding-bottom: 8px;
    border-bottom: 2px solid #202020;
  }
  #header .header-content.__burger-open .burger-menu .button {
    margin-top: 32px;
    justify-content: center;
  }
  #header .header-content.__burger-open .burger-menu .button button {
    padding: 12px 59px;
    width: 100%;
  }
}

footer {
  margin-top: 100px;
  padding: 42px 0;
  color: #ffffff;
  background: #36383A;
}
@media only screen and (max-width: 767px) {
  footer {
    margin-top: 80px;
  }
}
footer .content {
  display: grid;
  grid-template-columns: 330px 1fr;
  column-gap: 156px;
}
@media only screen and (max-width: 1439px) {
  footer .content {
    column-gap: 100px;
  }
}
@media only screen and (max-width: 767px) {
  footer .content {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  footer .item-info {
    max-width: 280px;
  }
}
footer .item-info .contact-info .contact-box {
  margin-bottom: 16px;
}
footer .item-info .contact-info .contact-box:last-child {
  margin-bottom: 0;
}
footer .item-info .contact-info .contact-box p {
  font-family: r-l;
  margin-bottom: 4px;
}
footer .item-info .contact-info .contact-box p a {
  font-size: 20px;
  font-family: r-m;
}
@media only screen and (max-width: 767px) {
  footer .item-info .contact-info .contact-box p a {
    font-size: 16px;
    line-height: 20px;
  }
}
footer h4 {
  font-size: 30px;
  line-height: 34px;
  font-family: r-m;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  footer h4 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
footer .head-info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 32px;
}
footer .head-info .logo {
  font-size: 30px;
  line-height: 34px;
}
@media only screen and (max-width: 767px) {
  footer .head-info .logo {
    font-size: 20px;
    line-height: 24px;
  }
}
footer .head-info .rules {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  footer .head-info .rules {
    font-size: 16px;
    line-height: 20px;
  }
}
footer .item-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  column-gap: 32px;
}
@media only screen and (max-width: 1023px) {
  footer .item-navigation {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
footer .item-navigation .box:nth-child(2) {
  grid-column: 2 span;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1439px) {
  footer .item-navigation .box:nth-child(2) {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
footer .item-navigation .box:nth-child(2) h4 {
  grid-column: 2 span;
}
@media only screen and (max-width: 1439px) {
  footer .item-navigation .box:nth-child(2) h4 {
    grid-column: unset;
  }
}
footer .item-navigation .box:nth-child(2) ul li {
  width: 241px;
}
@media only screen and (max-width: 767px) {
  footer .item-navigation .box:nth-child(2) ul li {
    width: unset;
  }
}
footer .item-navigation ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  font-size: 18px;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  footer .item-navigation ul {
    font-size: 15px;
    line-height: 18px;
  }
}
footer .item-navigation ul li a {
  font-family: r-l;
}

.popup-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.3254901961);
  backdrop-filter: blur(2px);
  z-index: 19;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-menu.__open {
  display: flex;
}
.popup-menu .popup-content {
  text-align: center;
  width: 300px;
  border-radius: 15px;
  background: #ffffff;
  position: relative;
  padding: 16px;
}
.popup-menu .popup-content .popup-head {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.popup-menu h3 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
}
.popup-menu p {
  margin-top: 8px;
  max-width: 270px;
  font-size: 16px;
  line-height: 18px;
  margin: 8px auto 0;
}
.popup-menu form {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.popup-menu form input {
  border-bottom: 1px solid #5c5c5c;
  padding: 5px 0;
  font-size: 16px;
  line-height: 18px;
  text-align: left;
}
.popup-menu form input::placeholder {
  color: #5c5c5c;
}
.popup-menu form .button {
  margin-top: 12px;
}
.popup-menu form .button button {
  font-size: 16px;
  line-height: 18px;
  padding: 8px 12px;
  margin: 0 auto;
}

.first-section {
  margin-top: 80px;
  padding-bottom: 40px;
  color: #202020;
}
@media only screen and (max-width: 1439px) {
  .first-section {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .first-section {
    margin-top: 64px;
  }
}
.first-section .content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}
@media only screen and (max-width: 1439px) {
  .first-section .content {
    max-width: 960px;
  }
}
@media only screen and (max-width: 1023px) {
  .first-section .content {
    max-width: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .first-section .content {
    max-width: 344px;
  }
}
.first-section h2 {
  font-size: 65px;
  line-height: 70px;
  color: #36383A;
  font-family: r-b;
  text-transform: uppercase;
  margin-bottom: 250px;
}
@media only screen and (max-width: 1439px) {
  .first-section h2 {
    font-size: 38px;
    line-height: 40px;
    max-width: 80%;
    margin-bottom: 150px;
  }
}
@media only screen and (max-width: 1023px) {
  .first-section h2 {
    font-size: 34px;
    max-width: unset;
    text-align: center;
    margin-bottom: unset;
  }
}
@media only screen and (max-width: 767px) {
  .first-section h2 {
    font-size: 25px;
    line-height: 29px;
    font-family: r-m;
    margin-bottom: -24px;
  }
}
.first-section .image {
  position: absolute;
  right: 0px;
  top: -20px;
  z-index: -1;
  width: 800px;
}
@media only screen and (max-width: 1439px) {
  .first-section .image {
    width: 600px;
    top: -50px;
  }
}
@media only screen and (max-width: 1023px) {
  .first-section .image {
    position: relative;
    top: unset;
    z-index: unset;
    right: unset;
    width: 70%;
    margin: 0 auto;
  }
}
.first-section .image img {
  width: 100%;
  object-fit: contain;
}
.first-section .box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .first-section .box {
    margin-top: 16px;
    justify-content: center;
    text-align: center;
  }
}
.first-section .box .item:nth-child(1) {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.first-section .box .item:nth-child(1) p {
  margin-bottom: 8px;
  max-width: 290px;
  font-size: 20px;
  line-height: 24px;
  line-height: #303030;
}
.first-section .box .item:nth-child(1) .button button {
  background: #9E9C24;
  border: 1px solid #9E9C24;
  color: #ffffff;
  text-transform: uppercase;
}
.first-section .box .item:nth-child(1) .button button:hover {
  background: transparent;
  color: #303030;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  .first-section .box .item:nth-child(1) .button {
    justify-content: center;
    margin-top: 8px;
  }
}
.first-section .box .item:nth-child(2) {
  margin-right: 98px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  column-gap: 8px;
  row-gap: 8px;
  color: #303030;
}
@media only screen and (max-width: 1439px) {
  .first-section .box .item:nth-child(2) {
    margin-right: 42px;
  }
}
@media only screen and (max-width: 1023px) {
  .first-section .box .item:nth-child(2) {
    display: none;
  }
}
.first-section .box .item:nth-child(2) .sub-item {
  padding: 8px 24px;
  background-color: #ffffff;
}
.first-section .box .item:nth-child(2) .sub-item:nth-child(1) {
  grid-column: 2 span;
  margin-left: auto;
}
.first-section .box .item:nth-child(2) h6 {
  font-size: 30px;
  line-height: 30px;
}
.first-section .box .item:nth-child(2) p {
  font-size: 14px;
  line-height: 14px;
  margin-top: 2px;
}

.select-section {
  margin-top: 200px;
  color: #36383A;
  position: relative;
}
@media only screen and (max-width: 1439px) {
  .select-section {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 1023px) {
  .select-section {
    margin-top: 80px;
  }
}
.select-section h3 {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .select-section h3 {
    max-width: 220px;
    margin-bottom: 24px;
  }
}
.select-section .image {
  z-index: -1;
  position: absolute;
  top: -100px;
  left: 0;
}
@media only screen and (max-width: 1439px) {
  .select-section .image {
    width: 700px;
    top: -40px;
  }
}
@media only screen and (max-width: 1023px) {
  .select-section .image {
    width: 400px;
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .select-section .image {
    top: -5px;
    width: 280px;
  }
}
.select-section .grid-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 64px;
  row-gap: 64px;
}
@media only screen and (max-width: 1439px) {
  .select-section .grid-item {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 1023px) {
  .select-section .grid-item {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
.select-section .grid-item .item {
  position: relative;
  background: #EAF1F5;
  height: 330px;
  padding: 24px;
  border: 5px solid #EAF1F5;
}
@media only screen and (max-width: 1023px) {
  .select-section .grid-item .item {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .select-section .grid-item .item {
    height: 190px;
    padding: 16px;
  }
}
.select-section .grid-item .item.item-button {
  background: #ffffff;
}
.select-section .grid-item .item.item-button .button {
  margin-top: 32px;
}
.select-section .grid-item .item.item-button .button button {
  background: #EAF1F5;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .select-section .grid-item .item.item-button .button {
    margin-top: 16px;
  }
  .select-section .grid-item .item.item-button .button button {
    font-size: 14px;
    line-height: 18px;
  }
}
.select-section .grid-item .item span {
  position: absolute;
  color: #FAF7F3;
  right: 2px;
  bottom: 0;
  font-size: 200px;
  line-height: 160px;
  font-family: r-b;
}
@media only screen and (max-width: 1023px) {
  .select-section .grid-item .item span {
    font-size: 100px;
    line-height: 80px;
  }
}
.select-section .grid-item .item h6 {
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 32px;
  font-family: r-m;
}
@media only screen and (max-width: 1023px) {
  .select-section .grid-item .item h6 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .select-section .grid-item .item h6 {
    font-size: 18px;
    line-height: 22px;
  }
}
.select-section .grid-item .item p {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
  .select-section .grid-item .item p {
    font-size: 16px;
    line-height: 20px;
    max-width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .select-section .grid-item .item p {
    font-size: 12px;
    line-height: 16px;
  }
}
.select-section.__services .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.select-section.__contact {
  margin-top: 250px;
}
@media only screen and (max-width: 1439px) {
  .select-section.__contact {
    margin-top: 200px;
  }
}
@media only screen and (max-width: 1023px) {
  .select-section.__contact {
    margin-top: 100px;
  }
}
.select-section.__contact ._info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 330px;
}
@media only screen and (max-width: 1023px) {
  .select-section.__contact ._info {
    height: 220px;
  }
}
.select-section.__contact ._info h6 {
  text-transform: uppercase;
}
.select-section.__contact ._info p:nth-child(1) {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
  .select-section.__contact ._info p:nth-child(1) {
    font-size: 16px;
    line-height: 22px;
  }
}
.select-section.__contact ._info p a {
  font-family: r-m;
  font-size: 24px;
  line-height: 28px;
}
@media only screen and (max-width: 1023px) {
  .select-section.__contact ._info p a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .select-section.__contact .item-button {
    height: 200px;
  }
}

.services-section {
  margin-top: 260px;
}
@media only screen and (max-width: 1439px) {
  .services-section {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 1023px) {
  .services-section {
    margin-top: 80px;
  }
}
.services-section h3 {
  max-width: 950px;
  text-align: center;
  margin: 0 auto 100px;
}
@media only screen and (max-width: 1439px) {
  .services-section h3 {
    max-width: 80%;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 1023px) {
  .services-section h3 {
    max-width: unset;
  }
}
.services-section .grid-items {
  display: grid;
  row-gap: 50px;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items {
    row-gap: 32px;
  }
}
.services-section .grid-items .item {
  position: relative;
  display: grid;
  column-gap: 32px;
  align-items: center;
  grid-template-columns: 380px 1fr;
}
@media only screen and (max-width: 1439px) {
  .services-section .grid-items .item {
    grid-template-columns: 1fr;
  }
}
.services-section .grid-items .item h6 {
  font-size: 300px;
  color: #EAF1F5;
  font-family: r-m;
}
@media only screen and (max-width: 1439px) {
  .services-section .grid-items .item h6 {
    font-size: 120px;
    position: absolute;
    top: -10px;
    right: 5px;
    color: #FAF7F3;
  }
}
.services-section .grid-items .item .box {
  display: grid;
  column-gap: 32px;
  padding: 32px 16px;
  grid-template-columns: 360px 1fr;
  background: #EAF1F5;
}
@media only screen and (max-width: 1023px) {
  .services-section .grid-items .item .box {
    grid-template-columns: 270px 1fr;
    column-gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items .item .box {
    grid-template-columns: 167px 1fr;
    column-gap: 8px;
  }
}
.services-section .grid-items .item .box .image {
  background-color: #DCDCDC;
  height: 480px;
}
.services-section .grid-items .item .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items .item .box .image {
    height: 300px;
  }
}
.services-section .grid-items .item .box .info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items .item .box .info {
    row-gap: 4px;
  }
}
.services-section .grid-items .item .box .info h5 {
  font-size: 30px;
  line-height: 34px;
  font-family: r-m;
}
@media only screen and (max-width: 1023px) {
  .services-section .grid-items .item .box .info h5 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items .item .box .info h5 {
    font-size: 14px;
    line-height: 18px;
  }
}
.services-section .grid-items .item .box .info .description {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.services-section .grid-items .item .box .info .description p {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
  .services-section .grid-items .item .box .info .description p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items .item .box .info .description p {
    font-size: 10px;
    line-height: 14px;
  }
}
.services-section .grid-items .item .box .info .button {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .services-section .grid-items .item .box .info .button {
    margin-top: 8px;
  }
  .services-section .grid-items .item .box .info .button a {
    font-size: 12px;
    line-height: 16px;
  }
}

.application-section {
  margin-top: 180px;
}
@media only screen and (max-width: 1439px) {
  .application-section {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 1023px) {
  .application-section {
    margin-top: 80px;
  }
}
.application-section h3 {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .application-section h3 {
    max-width: unset;
  }
}
.application-section p {
  margin-top: 32px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .application-section p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }
}
.application-section .form {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .application-section .form {
    margin-top: 16px;
  }
}
.application-section form {
  display: flex;
  row-gap: 16px;
  column-gap: 32px;
}
@media only screen and (max-width: 1439px) {
  .application-section form {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .application-section form {
    column-gap: 16px;
  }
}
.application-section form input {
  width: 100%;
  padding: 5px 10px;
  font-size: 20px;
  line-height: 20px;
  color: #36383a;
  border: 1px solid #36383a;
}
.application-section form input::placeholder {
  color: #D9D9D9;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .application-section form input {
    font-size: 12px;
    line-height: 16px;
  }
}
.application-section form button {
  background: #9E9C24;
  color: #ffffff;
  border: 1px solid #9E9C24;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 4px 12px;
}
@media only screen and (max-width: 1439px) {
  .application-section form button {
    padding: 4px 0px;
  }
}
.application-section form button:hover {
  color: #303030;
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .application-section form button {
    font-size: 12px;
    line-height: 16px;
  }
}

.contact-map {
  margin-top: 100px;
}
@media only screen and (max-width: 1023px) {
  .contact-map {
    margin-top: 80px;
  }
  .contact-map iframe {
    height: 400px !important;
  }
}

.working-section {
  margin-top: 180px;
  position: relative;
}
@media only screen and (max-width: 1439px) {
  .working-section {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 1023px) {
  .working-section {
    margin-top: 80px;
  }
}
.working-section h3 {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .working-section h3 {
    max-width: unset;
  }
}
.working-section.__services .grid-items .item {
  row-gap: 82px;
  background: transparent;
}
.working-section .image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.working-section .image img {
  width: 600px;
}
@media only screen and (max-width: 1023px) {
  .working-section .image img {
    width: 400px;
  }
}
.working-section .grid-items {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
@media only screen and (max-width: 1023px) {
  .working-section .grid-items {
    grid-template-columns: 1fr;
    margin-top: 32px;
    row-gap: 16px;
  }
}
.working-section .grid-items .item {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
  color: #36383A;
  background: #FAF7F3;
  padding: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .working-section .grid-items .item {
    row-gap: 32px;
  }
}
.working-section .grid-items .item h6 {
  font-size: 30px;
  line-height: 34px;
  font-family: r-m;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .working-section .grid-items .item h6 {
    font-size: 20px;
    line-height: 24px;
  }
}
.working-section .grid-items .item p {
  font-size: 20px;
  line-height: 24px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .working-section .grid-items .item p {
    font-size: 16px;
    line-height: 20px;
  }
}
.working-section .grid-items .item span {
  color: #EAF1F5;
  position: absolute;
  font-size: 150px;
  line-height: 150px;
  z-index: 0;
  top: 50px;
  font-family: r-b;
}
@media only screen and (max-width: 1023px) {
  .working-section .grid-items .item span {
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .working-section .grid-items .item span {
    font-size: 80px;
    line-height: 80px;
    top: 30px;
  }
}

.build-section {
  margin-top: 180px;
  position: relative;
}
@media only screen and (max-width: 1439px) {
  .build-section {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 1023px) {
  .build-section {
    margin-top: 80px;
  }
}
.build-section h3 {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .build-section h3 {
    max-width: unset;
  }
}
.build-section .grid-items {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
@media only screen and (max-width: 1023px) {
  .build-section .grid-items {
    grid-template-columns: 1fr;
    margin-top: 32px;
    row-gap: 16px;
  }
}
.build-section .grid-items .item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  color: #36383A;
  background: #FAF7F3;
  padding: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .build-section .grid-items .item {
    row-gap: 8px;
  }
}
.build-section .grid-items .item h6 {
  font-size: 30px;
  line-height: 34px;
  font-family: r-m;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
  border-bottom: 3px solid #EAF1F5;
}
@media only screen and (max-width: 767px) {
  .build-section .grid-items .item h6 {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 8px;
  }
}
.build-section .grid-items .item p {
  font-size: 20px;
  line-height: 24px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .build-section .grid-items .item p {
    font-size: 16px;
    line-height: 20px;
  }
}

.question-section {
  margin-top: 180px;
  position: relative;
}
@media only screen and (max-width: 1439px) {
  .question-section {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 1023px) {
  .question-section {
    margin-top: 80px;
  }
}
.question-section h3 {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .question-section h3 {
    max-width: unset;
  }
}
.question-section .grid-items {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 64px;
}
@media only screen and (max-width: 1023px) {
  .question-section .grid-items {
    margin-top: 32px;
  }
}
.question-section .grid-items .item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 200px;
  color: #36383a;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px solid #D9D9D9;
}
@media only screen and (max-width: 1023px) {
  .question-section .grid-items .item {
    grid-template-columns: 1fr 80px;
  }
}
@media only screen and (max-width: 767px) {
  .question-section .grid-items .item {
    grid-template-columns: 1fr 64px;
  }
}
.question-section .grid-items .item h6 {
  font-size: 30px;
  line-height: 34px;
  font-family: r-m;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  .question-section .grid-items .item h6 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .question-section .grid-items .item h6 {
    font-size: 14px;
    line-height: 18px;
  }
}
.question-section .grid-items .item .vector {
  display: flex;
  justify-content: flex-end;
}
.question-section .grid-items .item .vector img {
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .question-section .grid-items .item .vector img {
    width: 32px;
    height: 32px;
  }
}
.question-section .grid-items .item p {
  grid-column: 2 span;
  font-size: 20px;
  line-height: 24px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .question-section .grid-items .item p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .question-section .grid-items .item p {
    font-size: 12px;
    line-height: 16px;
  }
}
.question-section .grid-items .item:hover .vector img {
  transform: rotate(0);
}
.question-section .grid-items .item:hover p {
  margin-top: 16px;
  display: block;
}

.banner-section {
  margin-top: 72px;
  color: #36383A;
  position: relative;
}
.banner-section h2 {
  font-size: 65px;
  line-height: 70px;
  font-family: r-m;
  mix-blend-mode: difference;
  text-transform: uppercase;
}
@media only screen and (max-width: 1439px) {
  .banner-section h2 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 1023px) {
  .banner-section h2 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.banner-section .image {
  mix-blend-mode: difference;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: -1;
}
@media only screen and (max-width: 1023px) {
  .banner-section .image {
    position: relative;
    width: 80%;
    margin: 0 auto;
    top: 0;
  }
}
.banner-section .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
}
@media only screen and (max-width: 1023px) {
  .banner-section .box {
    height: auto;
  }
}
.banner-section .box p {
  max-width: 420px;
}
@media only screen and (max-width: 1023px) {
  .banner-section .box p {
    max-width: unset;
    margin-top: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .banner-section .box {
    row-gap: unset;
    text-align: center;
  }
}
.banner-section p {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .banner-section p {
    font-size: 14px;
    line-height: 18px;
  }
}
.banner-section .description {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media only screen and (max-width: 1023px) {
  .banner-section .description {
    margin-top: 64px;
  }
}

.corporation-section {
  color: #36383A;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .corporation-section {
    margin-top: 80px;
  }
}
.corporation-section .grid-items {
  display: grid;
  row-gap: 50px;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items {
    row-gap: 32px;
  }
}
.corporation-section .grid-items .item {
  position: relative;
  display: grid;
  column-gap: 32px;
  align-items: center;
  grid-template-columns: 380px 1fr;
}
@media only screen and (max-width: 1439px) {
  .corporation-section .grid-items .item {
    grid-template-columns: 1fr;
  }
}
.corporation-section .grid-items .item h4 {
  font-size: 50px;
  max-width: 250px;
  font-family: r-m;
}
@media only screen and (max-width: 1439px) {
  .corporation-section .grid-items .item > h4 {
    display: none;
  }
}
.corporation-section .grid-items .item h6 {
  display: none;
}
@media only screen and (max-width: 1439px) {
  .corporation-section .grid-items .item h6 {
    font-size: 120px;
    display: flex;
    position: absolute;
    top: -10px;
    right: 5px;
    color: #FAF7F3;
  }
}
.corporation-section .grid-items .item .box {
  display: grid;
  column-gap: 32px;
  padding: 32px 16px;
  grid-template-columns: 360px 1fr;
  background: #EAF1F5;
}
@media only screen and (max-width: 1023px) {
  .corporation-section .grid-items .item .box {
    grid-template-columns: 270px 1fr;
    column-gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box {
    grid-template-columns: 167px 1fr;
    column-gap: 8px;
  }
}
.corporation-section .grid-items .item .box .image {
  flex-direction: column;
  display: flex;
  row-gap: 24px;
  height: 480px;
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .image {
    row-gap: 16px;
  }
}
.corporation-section .grid-items .item .box .image h4 {
  display: none;
}
@media only screen and (max-width: 1439px) {
  .corporation-section .grid-items .item .box .image h4 {
    display: flex;
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1023px) {
  .corporation-section .grid-items .item .box .image h4 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .image h4 {
    font-size: 14px;
    line-height: 18px;
  }
}
.corporation-section .grid-items .item .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .image {
    height: 300px;
  }
}
.corporation-section .grid-items .item .box .info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .info {
    row-gap: 4px;
  }
}
.corporation-section .grid-items .item .box .info h5 {
  font-size: 30px;
  line-height: 34px;
  font-family: r-m;
}
@media only screen and (max-width: 1023px) {
  .corporation-section .grid-items .item .box .info h5 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .info h5 {
    font-size: 14px;
    line-height: 18px;
  }
}
.corporation-section .grid-items .item .box .info .description {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.corporation-section .grid-items .item .box .info .description p {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1023px) {
  .corporation-section .grid-items .item .box .info .description p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .info .description p {
    font-size: 10px;
    line-height: 14px;
  }
}
.corporation-section .grid-items .item .box .info .button {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .corporation-section .grid-items .item .box .info .button {
    margin-top: 8px;
  }
  .corporation-section .grid-items .item .box .info .button a {
    font-size: 12px;
    line-height: 16px;
  }
}

.project-images {
  margin-top: 150px;
}
@media only screen and (max-width: 1023px) {
  .project-images {
    margin-top: 100px;
  }
}
.project-images .grid-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
  column-gap: 24px;
}
@media only screen and (max-width: 767px) {
  .project-images .grid-images {
    row-gap: 12px;
    column-gap: 12px;
  }
}
.project-images .sub-box {
  background: #36383A;
  overflow: hidden;
}
.project-images .box {
  background: #36383A;
  height: 300px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .project-images .box {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .project-images .box {
    height: 150px;
  }
}
.project-images .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-images .box:nth-child(1), .project-images .box:nth-child(5) {
  grid-column: 2 span;
}
.project-images .box:nth-child(2), .project-images .box:nth-child(3) {
  grid-row: 2 span;
  height: 624px;
}
@media only screen and (max-width: 1023px) {
  .project-images .box:nth-child(2), .project-images .box:nth-child(3) {
    height: 424px;
  }
}
@media only screen and (max-width: 767px) {
  .project-images .box:nth-child(2), .project-images .box:nth-child(3) {
    height: 312px;
  }
}
.project-images .box-duble {
  grid-column: 3 span;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 24px;
  height: 400px;
  row-gap: 24px;
  column-gap: 24px;
}
@media only screen and (max-width: 1023px) {
  .project-images .box-duble {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .project-images .box-duble {
    height: 150px;
    row-gap: 12px;
    column-gap: 12px;
  }
}/*# sourceMappingURL=style.css.map */