.what_we_do_section {
  margin-bottom: 50px;
}
.what_we_do_section .action_list {
  margin-top: 70px;
}
.what_we_do_section .action_block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.what_we_do_section .action_block:nth-child(2n) {
  flex-direction: row-reverse;
}
.what_we_do_section .image_block {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}
.what_we_do_section .image_block img {
  width: 100%;
  height: auto;
}
.what_we_do_section .info_block {
  flex: 0 0 50%;
  padding: 30px;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: column;
}
.what_we_do_section .info_block .read_more {
  font-size: 120%;
  line-height: 17px;
  font-family: '"bold"', "arm-bold";
  border: none;
  background: transparent;
  padding: 0;
  color: #c00000;
  margin-top: 10px;
  margin-left: auto;
}
.what_we_do_section .info_block .read_more:hover {
  color: rgba(192, 0, 0, 0.7);
}
.what_we_do_section .info_block .description {
  max-height: 500px;
}
@media screen and (max-width: 1600px) {
  .what_we_do_section .info_block .description {
    max-height: 340px;
  }
}
@media (max-width: 1439px) {
  .what_we_do_section .info_block .description {
    max-height: 220px;
  }
}
@media (max-width: 1199px) {
  .what_we_do_section .info_block .description {
    max-height: 180px;
  }
}
@media (max-width: 991px) {
  .what_we_do_section .info_block .description {
    max-height: 108px;
  }
}
@media (max-width: 767px) {
  .what_we_do_section .info_block .description {
    max-height: none;
  }
}
.what_we_do_section .info_inner {
  max-width: 570px;
}
.what_we_do_section .info_inner p:not(:last-child) {
  margin-bottom: 20px;
}
.what_we_do_section .info_inner .title {
  font-size: 320%;
  line-height: 35px;
  color: #5e5e5e;
  font-family: '"bold"', "arm-bold";
}
.what_we_do_section .info_inner .title_decor {
  width: 50px;
  height: 7px;
  margin-bottom: 20px;
  display: block;
}
.what_we_do_section .info_inner .description {
  margin-top: 20px;
  font-size: 160%;
  line-height: 20px;
  color: #8c8c8c;
  text-align: justify;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1439px) {
  .what_we_do_section .info_inner .title {
    font-size: 280%;
    line-height: 30px;
  }
  .what_we_do_section .info_inner .description {
    font-size: 140%;
  }
  .what_we_do_section .action_block {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .what_we_do_section .info_block {
    padding: 20px;
  }
  .what_we_do_section .info_inner .description {
    font-size: 120%;
    line-height: 18px;
  }
  .what_we_do_section .info_inner p:not(:last-child) {
    margin-bottom: 18px;
  }
  .what_we_do_section .info_inner .title {
    font-size: 240%;
    line-height: 28px;
  }
  .what_we_do_section .info_inner .title_decor {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .what_we_do_section .action_block {
    flex-direction: column !important;
  }
  .what_we_do_section .image_block {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .what_we_do_section .info_block {
    padding: 60px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .what_we_do_section {
    margin-bottom: 0;
  }
  .what_we_do_section .action_list {
    margin-top: 30px;
  }
  .what_we_do_section .info_block {
    padding: 40px 20px;
  }
}

.text_popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text_popup .popup_inner {
  background: #ffffff;
  max-height: 100%;
  padding: 20px;
  overflow: hidden;
  position: relative;
  max-width: 50vw;
}
.text_popup .popup_inner::-webkit-scrollbar {
  width: 6px;
}
.text_popup .popup_inner::-webkit-scrollbar-track {
  background: rgba(140, 140, 140, 0.6);
}
.text_popup .popup_inner::-webkit-scrollbar-thumb {
  background: rgba(192, 0, 0, 0.5);
  cursor: pointer;
}
.text_popup .popup_inner::-webkit-scrollbar-thumb:hover {
  background: rgba(192, 0, 0, 0.8);
  cursor: pointer;
}
.text_popup .read_more {
  font-size: 0;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
}
.text_popup .read_more:hover {
  color: rgba(255, 255, 255, 0.7);
}
.text_popup .read_more:before, .text_popup .read_more:after {
  display: block;
  content: "";
  width: 30px;
  border-top: 2px solid;
  position: relative;
  margin-left: 1px;
}
.text_popup .read_more:before {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform-origin: left top;
  -webkit-transfrom-origin: left top;
}
.text_popup .read_more:after {
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform-origin: left bottom;
  -webkit-transfrom-origin: left bottom;
}

.o_hidden {
  overflow: hidden;
}

.what_we_do_section .info_block .read_more, .text_popup .read_more {
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/*# sourceMappingURL=what_we_do.css.map */
