@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  font-family: "Moderustic";
}

main {
  overflow: hidden;
}

@font-face {
  font-family: "Moderustic";
  src: url("../fonts/Moderustic-VariableFont_wght.ttf") format("woff2");
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather[opsz,wdth,wght].ttf") format("woff2");
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("woff2");
}
body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1643px) {
  .container {
    max-width: 1540px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1700px) {
  .container {
    max-width: 1640px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1067px) and (min-width: 998px) {
  .container {
    max-width: 970px;
  }
}
@media screen and (max-width: 967px) and (min-width: 898px) {
  .container {
    max-width: 870px;
  }
}
@media screen and (max-width: 867px) and (min-width: 798px) {
  .container {
    max-width: 770px;
  }
}
@media screen and (max-width: 798px) and (min-width: 768px) {
  .container {
    max-width: 756px;
  }
}
@media screen and (max-width: 767px) and (min-width: 698px) {
  .container {
    max-width: 670px;
  }
}
@media screen and (max-width: 697px) and (min-width: 640px) {
  .container {
    max-width: 620px;
  }
}
@media screen and (max-width: 639px) and (min-width: 620px) {
  .container {
    max-width: 600px;
  }
}

.relative {
  position: relative;
}

.p_32 {
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: 0%;
  line-height: 125%;
}
@media screen and (min-width: 1643px) {
  .p_32 {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .p_32 {
    font-size: 16px;
  }
}

h2 {
  font-family: Merriweather;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 130%;
  margin-bottom: 30px;
  font-weight: 700;
  font-style: Bold;
  leading-trim: NONE;
  line-height: 100%;
}
@media screen and (min-width: 1643px) {
  h2 {
    font-size: 50px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 28px;
  }
}

.contacts_section {
  margin-bottom: 92px;
}
@media screen and (max-width: 576px) {
  .contacts_section {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 60px;
  }
}
.contacts_section h2 {
  margin-bottom: 32px;
}
@media screen and (max-width: 576px) {
  .contacts_section h2 {
    letter-spacing: 1.5px;
    margin-bottom: 29px;
  }
}

.video-player {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 21px;
  max-height: 896px;
  overflow: hidden;
  /* Для Chrome/Safari */
  /* Для Firefox */
  /* Цвет прогресс-бара в Firefox */
}
@media screen and (max-width: 576px) {
  .video-player {
    margin-bottom: 15px;
    max-height: 175px;
  }
}
.video-player .volume-slider {
  accent-color: #8774e1;
}
.video-player .volume-slider.hidden {
  display: block;
  max-width: 0;
  opacity: 0;
  transition: all 0.5s ease;
  will-change: max-width, opacity; /* Улучшает производительность */
}
.video-player .volume-slider:hover {
  max-width: 1000px; /* Достаточно большое значение */
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .video-player .volume-slider {
    display: none;
  }
}
.video-player .time-display {
  color: white;
  font-family: "Moderustic";
  font-size: 14px;
  min-width: 120px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .video-player .time-display {
    display: none;
  }
}
.video-player .custom-controls {
  display: flex;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.01));
  padding: 10px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
}
.video-player .custom-controls button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  outline: none;
  border: none;
}
.video-player .custom-controls button.play-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 24px;
  opacity: 0.5;
  border: none;
  outline: none;
}
.video-player .custom-controls button.mute-btn {
  font-size: 24px;
  transform: scaleX(-1);
  min-width: 36px;
  opacity: 0.5;
}
.video-player .custom-controls button.mute-btn:hover ~ .volume-slider {
  max-width: 1000px; /* Достаточно большое значение */
  opacity: 1;
}
.video-player .custom-controls button.fullscreen-btn {
  font-size: 24px;
  position: absolute;
  right: 10px;
  opacity: 0.5;
}
.video-player .custom-controls button:hover {
  opacity: 1;
}
.video-player .progress-bar {
  flex-grow: 1;
  margin: 0 10px;
  position: absolute;
  top: -3px;
  left: 16px;
  right: 12px;
  margin: 0;
  accent-color: #8774e1;
}
.video-player .progress-bar:-webkit-progress-value {
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
@media screen and (max-width: 576px) {
  .video-player .progress-bar {
    display: none;
  }
}
.video-player input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #8774e1;
}
.video-player input[type=range]::-moz-range-thumb {
  background: #8774e1;
}
.video-player input[type=range]::-moz-range-progress {
  background: #8774e1;
}
.video-player .volume-slider {
  width: 80px;
}

.index_lab_section h2 {
  margin-bottom: 36px;
}
@media screen and (max-width: 576px) {
  .index_lab_section h2 {
    margin-bottom: 29px;
    letter-spacing: 0.6px;
  }
}

.mx-a {
  margin-left: auto;
  margin-right: auto;
}

.mb-90 {
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .mb-90 {
    margin-bottom: 60px;
  }
}
.mb-45 {
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .mb-45 {
    margin-bottom: 15px;
  }
}
.mb-20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mb-20 {
    margin-bottom: 25px;
  }
}
.logo {
  cursor: pointer;
  max-width: 106px;
  max-height: 76px;
  margin-left: 20px;
  transition: all 0.3s;
}
.logo:hover {
  scale: 1.1;
}

@media screen and (max-width: 992px) {
  .logo {
    max-width: 53px;
    max-height: 36px;
    position: absolute;
    left: 20px;
    top: 9px;
    margin-left: 0;
  }
}
.nav-section {
  container-type: size;
  max-width: 100%;
  width: 100%;
}

nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  font-weight: 500;
  background-color: #224272;
  color: #fff;
  border-radius: 30px;
  align-items: center;
  height: 96px;
  position: absolute;
  top: 24px;
  width: 1674px;
  max-width: 96%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}
nav .nav_open_close {
  transition: all 0.3s;
  cursor: pointer;
  display: none;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/burger.png);
}
nav .nav_open_close:active {
  background: grey;
  border-radius: 50%;
  color: none;
  scale: 1.1;
}
nav .nav_open_close.open {
  background-image: url(../images/close.svg);
}
nav .search {
  transition: all 0.3s;
  margin-right: 17px;
}
nav .search img {
  width: 40px;
  height: 40px;
}
nav .search:hover {
  scale: 1.1;
}
nav .nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4%;
}
@media screen and (min-width: 1643px) {
  nav .nav-wrapper {
    position: relative;
    left: -34px;
    bottom: 2px;
    letter-spacing: 0px;
  }
}
nav a {
  font-family: Moderustic;
  font-weight: 600;
  font-style: SemiBold;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  transition: all 0.3s;
  display: block;
  font-size: clamp(14px, 1.7vw, 22px);
  white-space: nowrap;
}
@media screen and (min-width: 1643px) {
  nav a {
    font-size: 22px;
  }
}
nav a:hover, nav a.active {
  color: #3FBBEC;
}
nav.open p,
nav.open a,
nav.open .nav_mobile_info p,
nav.open .nav-wrapper {
  max-height: unset;
}

@container (max-width: 992px) {
  nav .nav_open_close {
    display: block;
  }
}
@container (max-width: 992px) {
  nav .search {
    display: none;
  }
}
@container (max-width: 992px) {
  nav .nav-wrapper {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
@container (max-width: 992px) {
  nav {
    flex-direction: column;
    height: unset;
    position: relative;
    top: unset;
    left: unset;
    max-width: 100%;
    transform: none;
    border-radius: 0;
    padding-top: 54px;
    padding-left: 10px;
    padding-right: 10px;
  }
  nav p,
  nav a,
  nav .nav_mobile_info p,
  nav .nav-wrapper {
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
  }
}
@container (max-width: 992px) {
  nav.open p,
  nav.open a {
    margin-bottom: 16px;
  }
}
@container (max-width: 992px) {
  nav.open p,
  nav.open a {
    margin-bottom: 20px;
  }
}
@container (max-width: 992px) {
  nav.open .nav_mobile_info p {
    margin-bottom: 47px;
  }
  nav.open .nav_mobile_info a > p {
    margin-bottom: 24px;
  }
}
@container (max-width: 576px) {
  nav.open .nav_mobile_info p {
    font-family: Moderustic;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 47px;
  }
  nav.open .nav_mobile_info a > p {
    margin-bottom: 24px;
  }
}
@container (max-width: 992px) {
  nav.open .nav-wrapper {
    margin-bottom: 50px;
  }
}
@container (max-width: 576px) {
  nav.open .nav-wrapper {
    margin-bottom: 33px;
    margin-top: 21px;
  }
}
.nav_mobile_info {
  display: none;
}

@container (max-width: 992px) {
  .nav_mobile_info {
    display: block;
    font-weight: 300;
  }
  .nav_mobile_info p {
    margin-bottom: 40px;
  }
  .nav_mobile_info a > p {
    margin-bottom: 40px;
  }
}
@container (max-width: 576px) {
  .nav_mobile_info {
    display: block;
    font-weight: 300;
  }
}
a {
  text-decoration: none;
  color: unset;
}

.index_top_bg {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-bottom: 97px;
  padding-top: 174px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .index_top_bg {
    padding-top: 138px;
    margin-bottom: 63px;
  }
}
.index_top_bg .bg_img {
  position: absolute;
  z-index: -1;
  top: 0;
  height: 967px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 360px) {
  .index_top_bg .bg_img {
    -o-object-position: -516px 48px;
       object-position: -516px 48px;
  }
}
.index_top_bg h1 {
  font-family: Merriweather;
  font-weight: 900;
  font-style: Black;
  font-size: clamp(38px, 4vw, 100px);
  leading-trim: NONE;
  line-height: 100%;
  line-height: 144%;
  margin-bottom: 0;
  padding-left: 4px;
  font-size: clamp(38px, 9vw, 100px);
  letter-spacing: clamp(1px, 0.5vw, 6px);
}
@media screen and (min-width: 1643px) {
  .index_top_bg h1 {
    font-size: 100px;
    letter-spacing: 6px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg h1 {
    font-size: 38px;
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg h1 {
    letter-spacing: 1px;
    font-weight: 900;
  }
}
.index_top_bg .top_text_box > p {
  max-width: 820px;
  width: 100%;
  font-family: Moderustic;
  margin-bottom: 65px;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(16px, 4vw, 40px);
  leading-trim: NONE;
  line-height: 125%;
  letter-spacing: 0%;
}
@media screen and (min-width: 1643px) {
  .index_top_bg .top_text_box > p {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_text_box > p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_text_box > p {
    max-width: 98%;
  }
}
.index_top_bg .top_text_box {
  margin-bottom: 60px;
}
@media screen and (min-width: 1643px) {
  .index_top_bg .top_text_box {
    margin-bottom: 87px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_text_box {
    margin-bottom: 35px;
  }
}
.index_top_bg .top_bg_boxes1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}
@media screen and (max-width: 1642px) {
  .index_top_bg .top_bg_boxes1 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_bg_boxes1 {
    max-width: 95.6%;
  }
}
.index_top_bg .top_bg_boxes1 .bx_wr {
  display: flex;
}
.index_top_bg .top_bg_boxes1 .bx_wr .bx_in {
  max-width: 410px;
  padding-left: clamp(4px, 1.5vw, 32px);
  padding-right: clamp(4px, 1.5vw, 32px);
  padding-top: clamp(14px, 1.5vw, 32px);
  padding-bottom: clamp(7px, 1.5vw, 26px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
  box-shadow: 0px 0px 31.2px 10px rgba(123, 123, 123, 0.2509803922);
  background-color: #fff;
}
@media screen and (min-width: 1643px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 32px;
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in {
    padding-top: 14px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 7px;
  }
}
.index_top_bg .top_bg_boxes1 .bx_wr .bx_in .bx_img {
  margin-bottom: 13px;
  max-width: 226px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_top_bg .top_bg_boxes1 .bx_wr .bx_in .bx_img img {
  max-width: 100%;
}
@media screen and (min-width: 1643px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in .bx_img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in .bx_img img {
    max-width: 80%;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in .bx_img img {
    max-width: 59%;
  }
}
.index_top_bg .top_bg_boxes1 .bx_wr .bx_in p {
  line-height: 125%;
  max-width: 100%;
  color: #000;
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(14px, 4vw, 28px);
  leading-trim: NONE;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 1643px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in p {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_bg_boxes1 .bx_wr .bx_in p {
    font-family: Moderustic;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    margin-bottom: 0;
  }
}
.index_top_bg .top_bg_boxes1 .bx_wr:nth-child(1), .index_top_bg .top_bg_boxes1 .bx_wr:nth-child(3) {
  justify-content: flex-end;
}
.index_top_bg .top_bg_boxes1 .bx_wr:nth-child(2), .index_top_bg .top_bg_boxes1 .bx_wr:nth-child(4) {
  justify-content: flex-start;
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_bg_boxes1 .bx_wr:nth-child(2) .bx_img {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 360px) {
  .index_top_bg .top_bg_boxes1 .bx_wr:nth-child(3) .bx_img, .index_top_bg .top_bg_boxes1 .bx_wr:nth-child(3) .bx_img {
    margin-bottom: 20px;
  }
}
.index_top_bg .top_bg_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  color: #000;
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1643px) {
  .index_top_bg .top_bg_boxes {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes {
    width: 319px;
    max-width: 90%;
  }
}
.index_top_bg .top_bg_boxes img,
.index_top_bg .top_bg_boxes p {
  position: relative;
}
.index_top_bg .top_bg_boxes p {
  line-height: 35px;
  font-size: clamp(14px, 3vw, 28px);
  font-family: Moderustic;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .index_top_bg .top_bg_boxes p {
    font-size: clamp(14px, 2.5vw, 28px);
    line-height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes p {
    line-height: 18px;
    font-size: 14px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(1) > div > img {
  top: 27px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(1) > div > img {
    top: 14px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(1) > div > p {
  top: 28px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(1) > div > p {
    top: 15px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(2) > div > img {
  top: 32px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(2) > div > img {
    top: 11px;
    height: 90px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(2) > div > p {
  top: 25px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(2) > div > p {
    top: 0px;
    padding-left: 4px;
    padding-right: 4px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(3) > div > img {
  top: 11px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(3) > div > img {
    top: 15px;
    height: 92px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(3) > div > p {
  top: 12px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(3) > div > p {
    top: 15px;
    height: 92px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(4) > div > img {
  top: 18px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(4) > div > img {
    top: 14px;
    height: 92px;
  }
}
.index_top_bg .top_bg_boxes :nth-child(4) > div > p {
  top: 7px;
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes :nth-child(4) > div > p {
    top: 15px;
  }
}
.index_top_bg .top_bg_boxes > div {
  display: flex;
}
.index_top_bg .top_bg_boxes > div > div {
  box-shadow: 0px 0px 31.2px 10px rgba(123, 123, 123, 0.2509803922);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 406px;
  text-align: center;
  padding: 32px;
  min-width: 300px;
  width: 100%;
  /* Минимальная ширина элемента */
}
.index_top_bg .top_bg_boxes > div:nth-child(even) {
  justify-content: flex-start;
}
.index_top_bg .top_bg_boxes > div:nth-child(odd) {
  justify-content: flex-end;
}
.index_top_bg .top_bg_boxes img {
  margin-bottom: 12px;
  width: auto;
  height: clamp(120px, 10vw, 226px);
}
@media screen and (min-width: 1643px) {
  .index_top_bg .top_bg_boxes img {
    height: 226px;
  }
}

.index_video_section {
  margin-bottom: 90px;
}
@media screen and (min-width: 1643px) {
  .index_video_section {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 576px) {
  .index_video_section {
    margin-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1643px) {
  .index_top_bg .bg_img {
    height: 1300px;
  }
}
@media screen and (max-width: 1200px) {
  .index_top_bg .bg_img {
    height: 1100px;
  }
}
@media screen and (max-width: 768px) {
  .index_top_bg .bg_img {
    height: 1000px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .bg_img {
    height: 663px;
  }
}
@media screen and (max-width: 1200px) {
  .index_top_bg .top_text_box > * {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media screen and (max-width: 1643px) {
  .index_top_bg .top_bg_boxes > div > div {
    width: 406px;
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .index_top_bg .top_bg_boxes > div > div {
    width: 100%;
    padding: 2%;
    min-width: unset;
    height: unset;
    min-height: 190px;
    padding: 7px;
    aspect-ratio: 1/1;
    max-width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes > div > div {
    aspect-ratio: unset;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    min-height: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 992px) {
  .index_top_bg .top_bg_boxes p {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .index_top_bg .top_bg_boxes img {
    height: 84px;
  }
}
.standard_top_bg {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1600px) {
  .standard_top_bg {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 576px) {
  .standard_top_bg {
    padding-top: 40px;
    background-position: 83%;
    background-size: auto 100%;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 360px) {
  .standard_top_bg {
    padding-top: 40px;
    background-position: 84% 54px;
    background-size: auto 100%;
    margin-bottom: 56px;
  }
}
.standard_top_bg .container {
  padding-top: 224px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1600px) {
  .standard_top_bg .container {
    padding-top: 224px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .standard_top_bg .container {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.standard_top_bg .bg_img,
.standard_top_bg .bg_shadow {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.standard_top_bg .about_us_top_text {
  max-width: 100%;
  width: 1112px;
  background-color: #224272;
  color: #fff;
  padding-bottom: 79px;
  position: relative;
  bottom: 46px;
  padding-top: clamp(15px, 5vw, 71px);
  padding-left: clamp(15px, 5vw, 87px);
  padding-right: clamp(15px, 5vw, 86px);
  padding-bottom: clamp(15px, 5vw, 52px);
}
@media screen and (max-width: 1600px) {
  .standard_top_bg .about_us_top_text {
    position: relative;
    width: 90%;
    bottom: unset;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 576px) {
  .standard_top_bg .about_us_top_text {
    width: 92%;
  }
}
@media screen and (max-width: 360px) {
  .standard_top_bg .about_us_top_text {
    padding: 15px;
    width: 96%;
  }
}
.standard_top_bg .about_us_top_text:after {
  content: "";
  position: absolute;
  left: clamp(5px, 2.7vw, 51px);
  right: clamp(5px, 2.7vw, 51px);
  top: clamp(5px, 2.7vw, 44px);
  bottom: clamp(5px, 2.7vw, 44px);
  border: 3px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .standard_top_bg .about_us_top_text:after {
    border: 2px solid #fff;
  }
}
@media screen and (max-width: 480px) {
  .standard_top_bg .about_us_top_text:after {
    border: 1px solid #fff;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }
}
.standard_top_bg .about_us_top_text :first-child {
  font-size: clamp(16px, 3vw, 40px);
  font-family: Moderustic;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 122%;
  letter-spacing: 0.1px;
  margin-bottom: 38px;
}
@media screen and (min-width: 1643px) {
  .standard_top_bg .about_us_top_text :first-child {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .standard_top_bg .about_us_top_text :first-child {
    font-size: 16px;
    letter-spacing: 0px;
    margin-bottom: 12px;
    line-height: 125%;
  }
}
@media screen and (max-width: 576px) {
  .standard_top_bg .about_us_top_text :last-child {
    margin-bottom: 5px;
  }
}
.standard_top_bg p {
  font-size: clamp(16px, 2.5vw, 32px);
  margin-bottom: 0;
}
@media screen and (min-width: 1643px) {
  .standard_top_bg p {
    font-size: 32px;
    letter-spacing: 0.05px;
    line-height: 109%;
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 576px) {
  .standard_top_bg p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 113%;
    letter-spacing: 0px;
  }
}

.lab_top_bg {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  margin-bottom: 94px;
}
@media screen and (max-width: 576px) {
  .lab_top_bg {
    margin-bottom: 63px;
  }
}
.lab_top_bg .container {
  padding-top: 156px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: row;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 360px) {
  .lab_top_bg .container {
    background-position: 48% 54px;
    background-size: auto 100%;
  }
}
.lab_top_bg .lab_top_white_text {
  position: absolute;
  top: 61.4%;
  transform: translate(-50%, -50%);
  left: 49.37%;
}
@media screen and (max-width: 1700px) {
  .lab_top_bg .lab_top_white_text {
    left: 55%;
  }
}
@media screen and (max-width: 1642px) {
  .lab_top_bg .lab_top_white_text {
    left: 75%;
  }
}
@media screen and (max-width: 1399px) {
  .lab_top_bg .lab_top_white_text {
    display: none;
  }
}
.lab_top_bg .lab_top_white_text div {
  background-color: #fff;
  width: 479px;
  margin-bottom: 38px;
  text-align: center;
  padding: 12px 3px;
  padding-left: 0px;
  height: 199px;
  overflow: hidden;
}
.lab_top_bg .lab_top_white_text div .lab_top_text_span {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 124%;
  letter-spacing: 0%;
  text-align: center;
  padding-left: 5px;
  padding-top: 1px;
}
.lab_top_bg .lab_top_img_div {
  height: -webkit-fill-available;
  flex-grow: 1;
  display: flex;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}
.lab_top_bg .lab_top_text {
  background-color: #224272;
  color: #fff;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 693px;
  margin-top: 72px;
  padding-top: clamp(20px, 2.6vw, 34px);
  padding-bottom: clamp(20px, 2.6vw, 44px);
  padding-left: clamp(10px, 2.6vw, 30px);
  padding-right: clamp(20px, 2.6vw, 120px);
}
@media screen and (min-width: 1643px) {
  .lab_top_bg .lab_top_text {
    padding-top: 34px;
    padding-bottom: 44px;
    padding-left: 30px;
    padding-right: 120px;
  }
}
@media screen and (max-width: 1399px) {
  .lab_top_bg .lab_top_text {
    max-width: unset;
    margin-right: auto;
    margin-left: auto;
    width: 89%;
  }
}
@media screen and (max-width: 576px) {
  .lab_top_bg .lab_top_text {
    margin-top: 40px;
    width: 89%;
    padding-top: 23px;
    padding-bottom: 0;
  }
}
.lab_top_bg .lab_top_text h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0.05em;
  font-size: clamp(28px, 4vw, 50px);
}
@media screen and (min-width: 1643px) {
  .lab_top_bg .lab_top_text h2 {
    font-size: 50px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 576px) {
  .lab_top_bg .lab_top_text h2 {
    font-size: 28px;
    letter-spacing: 0.041em;
  }
}
.lab_top_bg .lab_top_text .lab_top_text_p {
  font-size: clamp(16px, 2.5vw, 28px);
  line-height: 125%;
  padding-left: 4px;
  padding-right: 10px;
}
@media screen and (min-width: 1643px) {
  .lab_top_bg .lab_top_text .lab_top_text_p {
    font-size: 28px;
    padding-right: 32px;
  }
}
@media screen and (max-width: 576px) {
  .lab_top_bg .lab_top_text .lab_top_text_p {
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
  }
}
.lab_top_bg .lab_top_text :last-child {
  margin-bottom: 21px;
}

@media screen and (max-width: 1399px) {
  .lab_top_bg .container {
    background-image: url(../images/about_us/shadow.png), url(../images/lab/lab_bg.jpg);
    padding-top: 100px;
    padding-bottom: 62px;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  .lab_top_bg .lab_top_img_div {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .about_us_top_grid_wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.about_us_top_grid {
  line-height: 125%;
  display: grid;
  grid-template-columns: 43fr 57fr;
  font-size: clamp(16px, 4vw, 32px);
  font-weight: 400;
  container-type: inline;
}
.about_us_top_grid p {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(16px, 2.5vw, 30px);
  leading-trim: NONE;
  line-height: 134%;
  letter-spacing: 1px;
}
@media screen and (min-width: 1643px) {
  .about_us_top_grid p {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .about_us_top_grid p {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 125%;
    margin-bottom: 15px;
  }
}
.about_us_top_grid .first {
  padding-left: 29px;
  padding-top: 6px;
  padding-bottom: 22px;
  padding-right: 29px;
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .first {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.about_us_top_grid .first h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(28px, 2.5vw, 50px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: clamp(1.4px, 2.5vw, 3px);
  margin-bottom: 37px;
}
@media screen and (min-width: 1643px) {
  .about_us_top_grid .first h2 {
    font-size: 50px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .first h2 {
    letter-spacing: 1px;
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 360px) {
  .about_us_top_grid .first h2 {
    font-family: Merriweather;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .first p {
    margin-bottom: 0;
  }
}
.about_us_top_grid .second {
  min-height: 291px;
  background-image: url("../images/about_us/about_us_ron.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .second {
    width: 89%;
    margin-left: auto;
    margin-right: auto;
    background-image: url("../images/about_us/about_us_ron_min.jpg");
  }
}
.about_us_top_grid .second img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about_us_top_grid .third {
  padding-left: 29px;
  padding-top: 32px;
  padding-bottom: 12px;
  padding-right: 29px;
  background-color: #224272;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .third {
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 0px;
    padding-right: 15px;
  }
}
.about_us_top_grid .third p {
  letter-spacing: 1.1px;
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .third p {
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 1600px) {
  .about_us_top_grid .third:after {
    content: "";
    width: 100vw;
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0px);
    background-color: #224272;
    z-index: -1;
  }
}
.about_us_top_grid .fourth {
  padding-left: 33px;
  padding-top: 32px;
  padding-bottom: 12px;
  padding-right: 29px;
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .fourth {
    padding-left: 20px;
    padding-top: 16px;
    padding-bottom: 0px;
    padding-right: 16px;
  }
}
.about_us_top_grid .fourth p {
  max-width: 731px;
  letter-spacing: 1.1px;
}
@media screen and (max-width: 576px) {
  .about_us_top_grid .fourth p {
    font-family: Moderustic;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 124%;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1600px) {
  .about_us_top_grid {
    grid-template-columns: 1fr;
  }
  .about_us_top_grid .first {
    order: 1;
  }
  .about_us_top_grid .second {
    order: 4;
  }
  .about_us_top_grid .third {
    order: 2;
  }
  .about_us_top_grid .fourth {
    order: 3;
  }
  .about_us_top_grid .fourth p {
    max-width: 100%;
  }
}
.lab_text_section {
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .lab_text_section {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .lab_text_section {
    padding-left: 1.7%;
    padding-right: 1.7%;
  }
}
.lab_text_section h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(28px, 2.5vw, 50px);
  leading-trim: NONE;
  line-height: 100%;
  margin-bottom: 37px;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1643px) {
  .lab_text_section h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 576px) {
  .lab_text_section h2 {
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 360px) {
  .lab_text_section h2 {
    font-family: Merriweather;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 100%;
  }
}
.lab_text_section .lab_text_section_label {
  margin-bottom: 55px;
}
@media screen and (max-width: 576px) {
  .lab_text_section .lab_text_section_label {
    margin-bottom: 0px;
  }
}
.lab_text_section .lab_text_section_label p {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(16px, 2.5vw, 30px);
  leading-trim: NONE;
  line-height: 134%;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 1643px) {
  .lab_text_section .lab_text_section_label p {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .lab_text_section .lab_text_section_label p {
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 125%;
    margin-bottom: 15px;
  }
}

.lab_bottom_p {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(16px, 2.5vw, 30px);
  leading-trim: NONE;
  line-height: 134%;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 1643px) {
  .lab_bottom_p {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .lab_bottom_p {
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 125%;
    margin-bottom: 15px;
  }
}

.lab_img_and_text {
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .lab_img_and_text {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.lab_img_and_text .left {
  width: 941px;
  max-width: 100%;
  border: 3px solid #224272;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .lab_img_and_text .left {
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .left {
    border: 2px solid #224272;
    padding-bottom: 14px;
  }
}
.lab_img_and_text .left img {
  max-height: 644px;
  width: auto;
  max-width: 100%;
  left: -12px;
  top: -3px;
  position: relative;
}
@media screen and (max-width: 1642px) {
  .lab_img_and_text .left img {
    left: -20%;
  }
}
@media screen and (max-width: 1200px) {
  .lab_img_and_text .left img {
    max-height: 360px;
    left: unset;
  }
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .left img {
    max-height: 219px;
    left: unset;
    top: -4px;
  }
}
.lab_img_and_text .right {
  background-color: #224272;
  color: #fff;
  position: absolute;
  right: 0;
  top: 347px;
  transform: translate(0, -50%);
  width: 888px;
  max-width: 100%;
  padding: 37px 51px;
  padding-top: 41px;
  padding-left: 53px;
  padding-bottom: 57px;
}
@media screen and (max-width: 1200px) {
  .lab_img_and_text .right {
    position: relative;
    width: 100%;
    top: unset;
    transform: none;
    order: 1;
  }
}
@media screen and (max-width: 991px) {
  .lab_img_and_text .right {
    padding: 14px 20px;
  }
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .right {
    padding: 20px 15px;
    padding-bottom: 0;
  }
}
.lab_img_and_text .right > :nth-child(1) {
  width: 76px;
  height: 63px;
  margin-bottom: 11px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .lab_img_and_text .right > :nth-child(1) {
    width: 65px;
    height: auto;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .right > :nth-child(1) {
    width: 43px;
    height: 35px;
    margin-bottom: 8px;
    margin-left: 0px;
  }
}
.lab_img_and_text .right > :nth-child(2) {
  font-family: Moderustic;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 32px);
  margin-bottom: 26px;
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .right > :nth-child(2) {
    margin-bottom: 13px;
  }
}
.lab_img_and_text .right > :nth-child(3) {
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 28px);
}
@media screen and (min-width: 1643px) {
  .lab_img_and_text .right > :nth-child(3) {
    line-height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .right > :nth-child(3) {
    margin-bottom: 15px;
    line-height: 100%;
  }
}
.lab_img_and_text .right > :nth-child(4) {
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 28px);
}
@media screen and (min-width: 1643px) {
  .lab_img_and_text .right > :nth-child(4) {
    line-height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .lab_img_and_text .right > :nth-child(4) {
    margin-bottom: 15px;
    line-height: 100%;
  }
}
.lab_img_and_text .right:after {
  position: absolute;
  content: "";
  left: 16px;
  right: 14px;
  top: 16px;
  bottom: 16px;
  border: 3px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .lab_img_and_text .right:after {
    left: 5px;
    right: 4px;
    top: 5px;
    bottom: 5px;
    border: 1px solid #fff;
  }
}

.lab_small_text_box_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 30px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 20px;
}
@media screen and (max-width: 1200px) {
  .lab_small_text_box_wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .lab_small_text_box_wrapper > :last-child {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 768px) {
  .lab_small_text_box_wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(n+4):nth-child(-n+6) {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(1) :nth-child(3) {
    line-height: 85%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(1) :nth-child(3) {
    line-height: 100%;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(2) :nth-child(3) {
    line-height: 112%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(2) :nth-child(3) {
    line-height: 100%;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(3) :nth-child(3) {
    line-height: 122%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(3) :nth-child(3) {
    line-height: 100%;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(4) :nth-child(3) {
    line-height: 127%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(4) :nth-child(3) {
    line-height: 100%;
  }
}
.lab_small_text_box_wrapper :nth-child(5) :nth-child(3) {
  position: relative;
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(5) :nth-child(3) {
    top: -8px;
    line-height: 119%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(5) :nth-child(3) {
    line-height: 100%;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(6) :nth-child(3) {
    line-height: 122%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(6) :nth-child(3) {
    line-height: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(7) :nth-child(3) {
    line-height: 120%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(7) :nth-child(3) {
    line-height: 100%;
    margin-bottom: 1px;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(8) {
    padding-right: 25px;
  }
}
.lab_small_text_box_wrapper :nth-child(8) :nth-child(3) {
  position: relative;
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(8) :nth-child(3) {
    line-height: 118%;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(8) :nth-child(3) {
    top: -9px;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(8) :nth-child(3) {
    line-height: 100%;
    margin-bottom: 1px;
  }
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box_wrapper :nth-child(9) :nth-child(3) {
    line-height: 122%;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box_wrapper :nth-child(9) :nth-child(3) {
    line-height: 100%;
    margin-bottom: 2px;
  }
}

.lab_small_text_box {
  background-color: #224272;
  color: #fff;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding-top: clamp(16px, 2.5vw, 23px);
  padding-bottom: clamp(14px, 2.5vw, 14px);
  padding-left: clamp(15px, 2.5vw, 25px);
  padding-right: 20px;
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box {
    height: 316px;
    padding-top: 23px;
    padding-bottom: 14px;
    padding-left: 25px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box {
    padding-top: 16px;
    padding-left: 15px;
  }
}
.lab_small_text_box :nth-child(1) {
  margin-bottom: 7px;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .lab_small_text_box :nth-child(1) {
    width: 65px;
    height: auto;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box :nth-child(1) {
    width: 45px;
    height: 35px;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
  }
}
.lab_small_text_box :nth-child(2) {
  font-family: Moderustic;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 32px);
  line-height: 120%;
  margin-bottom: 11px;
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box :nth-child(2) {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box :nth-child(2) {
    font-size: 16px;
    margin-bottom: 11px;
  }
}
.lab_small_text_box :nth-child(3) {
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 28px);
  line-height: unset;
  letter-spacing: 0;
}
@media screen and (min-width: 1643px) {
  .lab_small_text_box :nth-child(3) {
    font-size: 28px;
    display: inline;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box :nth-child(3) {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 100%;
  }
}
.lab_small_text_box:after {
  position: absolute;
  content: "";
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: 2px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .lab_small_text_box:after {
    left: 5px;
    right: 4px;
    top: 5px;
    bottom: 5px;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 576px) {
  .lab_small_text_box:after {
    right: 5px;
  }
}

.lab_published_section, .cgm_published_section {
  background-color: #224272;
  color: #fff;
  padding-top: 56px;
  padding-bottom: 58px;
}
@media screen and (max-width: 992px) {
  .lab_published_section, .cgm_published_section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .lab_published_section, .cgm_published_section {
    padding-top: 33px;
    padding-bottom: 30px;
    padding-left: 6px;
    padding-right: 7px;
  }
}
.lab_published_section h2, .cgm_published_section h2 {
  margin-bottom: 17px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 576px) {
  .lab_published_section h2, .cgm_published_section h2 {
    margin-bottom: 18px;
  }
}
.lab_published_section hr, .cgm_published_section hr {
  margin-top: 0;
  margin-bottom: 41px;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .lab_published_section hr, .cgm_published_section hr {
    margin-bottom: 15px;
  }
}

.lab_published_div {
  display: flex;
  flex-direction: row;
}
.lab_published_div .left {
  flex: 0 44.2%;
}
.lab_published_div .left .lab_published_button_mobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .lab_published_div .left .lab_published_button_mobile {
    padding-left: 43px;
    padding-right: 48px;
    letter-spacing: 0;
    padding-top: 10px;
    padding-bottom: 12px;
  }
}
.lab_published_div .left img {
  width: 100%;
  margin-bottom: 15px;
}
.lab_published_div .right {
  flex: 1;
  padding-left: 39px;
}
@media screen and (max-width: 1200px) {
  .lab_published_div .right {
    width: 100%;
    order: 1;
    padding-left: 0;
    margin-bottom: 15px;
  }
  .lab_published_div .right .lab_published_button {
    display: none;
  }
}
.lab_published_div .right :nth-child(1) {
  font-family: Moderustic;
  font-weight: 600;
  font-style: SemiBold;
  font-size: clamp(16px, 2.5vw, 32px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  font-family: Moderustic;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 32px);
  line-height: 125%;
  letter-spacing: 0%;
  margin-bottom: 12px;
}
@media screen and (min-width: 1643px) {
  .lab_published_div .right :nth-child(1) {
    font-size: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .lab_published_div .right :nth-child(1) {
    line-height: 140%;
  }
}
@media screen and (max-width: 576px) {
  .lab_published_div .right :nth-child(1) {
    line-height: 126%;
  }
}
@media screen and (max-width: 360px) {
  .lab_published_div .right :nth-child(1) {
    font-size: 16px;
  }
}
.lab_published_div .right :nth-child(2) {
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 28px);
  line-height: 124%;
  letter-spacing: 0%;
  margin-bottom: 16px;
}
@media screen and (min-width: 1643px) {
  .lab_published_div .right :nth-child(2) {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .lab_published_div .right :nth-child(2) {
    line-height: 140%;
  }
}
@media screen and (max-width: 576px) {
  .lab_published_div .right :nth-child(2) {
    line-height: 126%;
    margin-bottom: 0px;
    padding-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .lab_published_div .right :nth-child(2) {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .lab_published_div {
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .lab_published_div .left {
    width: 100%;
    order: 2;
  }
  .lab_published_div .left .lab_published_button_mobile {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
.w_big_blue_button, .w_patent_button, .w_mid_blue_button, .w_cookies_yes, .w_cookies_no {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: clamp(16px, 2vw, 32px);
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: clamp(0px, 2vw, 1px);
  padding-top: clamp(11px, 2vw, 26px);
  padding-bottom: clamp(11px, 2vw, 26px);
  padding-left: clamp(44px, 2vw, 59px);
  padding-right: clamp(44px, 2vw, 58px);
  border-radius: clamp(10px, 2vw, 30px);
  color: #fff;
  background-color: #3FBBEC;
  outline: none;
  border: none;
  transition: all 0.5s;
}
.w_big_blue_button:hover, .w_patent_button:hover, .w_mid_blue_button:hover, .w_cookies_yes:hover, .w_cookies_no:hover {
  box-shadow: 0px 6px 15px 2px rgba(63, 187, 236, 0.5);
}
@media screen and (min-width: 1643px) {
  .w_big_blue_button, .w_patent_button, .w_mid_blue_button, .w_cookies_yes, .w_cookies_no {
    font-size: 32px;
    letter-spacing: 1px;
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 59px;
    padding-right: 58px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 360px) {
  .w_big_blue_button, .w_patent_button, .w_mid_blue_button, .w_cookies_yes, .w_cookies_no {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    line-height: 100%;
    font-size: 16px;
    letter-spacing: 0px;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 44px;
    padding-right: 44px;
    border-radius: 10px;
  }
}

.w_mid_blue_button, .w_cookies_yes, .w_cookies_no {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  padding-left: 71px;
  padding-right: 73px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 20px;
  font-size: clamp(16px, 2vw, 32px);
  letter-spacing: clamp(0px, 2vw, 1px);
  padding-top: clamp(10px, 2vw, 24px);
  padding-bottom: clamp(10px, 2vw, 24px);
  padding-left: clamp(43px, 2vw, 71px);
  padding-right: clamp(49px, 2vw, 73px);
  border-radius: clamp(10px, 2vw, 20px);
}
@media screen and (min-width: 1643px) {
  .w_mid_blue_button, .w_cookies_yes, .w_cookies_no {
    font-size: 32px;
    padding-left: 71px;
    padding-right: 73px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 360px) {
  .w_mid_blue_button, .w_cookies_yes, .w_cookies_no {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0;
    border-radius: 10px;
    padding-left: 43px;
    padding-right: 49px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.w_cookies_yes, .w_cookies_no {
  font-family: Inter;
  font-weight: 300;
  font-style: Semi Bold;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  padding-left: 71px;
  padding-right: 73px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 20px;
  justify-content: center;
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: clamp(0px, 2vw, 1px);
  padding-top: clamp(10px, 2vw, 24px);
  padding-bottom: clamp(10px, 2vw, 24px);
  padding-left: clamp(43px, 2vw, 71px);
  padding-right: clamp(49px, 2vw, 73px);
  border-radius: clamp(10px, 2vw, 20px);
}
@media screen and (min-width: 1643px) {
  .w_cookies_yes, .w_cookies_no {
    font-size: 18px;
    padding-left: 71px;
    padding-right: 73px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 360px) {
  .w_cookies_yes, .w_cookies_no {
    font-family: Inter;
    font-style: Semi Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0;
    border-radius: 10px;
    padding-left: 43px;
    padding-right: 49px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.w_cookies_no {
  background-color: #5a5a5a;
}

.w_patent_button {
  font-size: clamp(16px, 2vw, 32px);
  letter-spacing: clamp(0px, 2vw, 1px);
  padding-top: clamp(10px, 2vw, 21px);
  padding-bottom: clamp(10px, 2vw, 22px);
  padding-left: clamp(0px, 2vw, 18px);
  padding-right: clamp(0px, 2vw, 17px);
  border-radius: clamp(10px, 2vw, 20px);
}
@media screen and (min-width: 1643px) {
  .w_patent_button {
    font-size: 32px;
    letter-spacing: 1px;
    padding-top: 21px;
    padding-bottom: 22px;
    padding-left: 18px;
    padding-right: 17px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 360px) {
  .w_patent_button {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px !important;
    leading-trim: NONE;
    line-height: 100%;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 320px;
    letter-spacing: 0;
    padding-left: 38px;
    padding-right: 38px;
  }
}

.big_blue_button,
.coop_top_form .coop_button_submit,
.big_blue_button_top_bg,
.thin_blue_button,
.small_blue_button,
.small_patent_button,
.mid_blue_button {
  background-color: #3FBBEC;
  color: #fff;
  padding-left: 58px;
  padding-right: 58px;
  max-width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: clamp(16px, 2vw, 32px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  width: 423px;
  letter-spacing: 1px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.big_blue_button:hover,
.coop_top_form .coop_button_submit:hover,
.big_blue_button_top_bg:hover,
.thin_blue_button:hover,
.small_blue_button:hover,
.small_patent_button:hover,
.mid_blue_button:hover {
  box-shadow: 0px 6px 15px 2px rgba(63, 187, 236, 0.5);
}
@media screen and (min-width: 1643px) {
  .big_blue_button,
  .coop_top_form .coop_button_submit,
  .big_blue_button_top_bg,
  .thin_blue_button,
  .small_blue_button,
  .small_patent_button,
  .mid_blue_button {
    padding-left: 58px;
    padding-right: 58px;
    padding-top: 22px;
    padding-bottom: 22px;
    border-radius: 30px;
    font-size: 32px;
    height: 90px;
  }
}

@media screen and (max-width: 992px) {
  .big_blue_button,
  .coop_top_form .coop_button_submit,
  .big_blue_button_top_bg,
  .thin_blue_button,
  .small_blue_button,
  .small_patent_button,
  .mid_blue_button {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
  }
}
.lab_published_button:hover:hover,
.lab_published_button_mobile:hover:hover {
  scale: 1.02;
}

.mid_blue_button {
  padding-top: 24px;
  padding-bottom: 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 32px);
  padding-left: 73px;
  padding-right: 73px;
  width: -moz-fit-content;
  width: fit-content;
  height: unset;
}
@media screen and (max-width: 992px) {
  .mid_blue_button {
    font-weight: 600;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.small_blue_button, .small_patent_button {
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 13px;
  padding-right: 13px;
  border-radius: 20px;
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: 500;
}

.small_patent_button {
  width: 526px;
  max-width: 100%;
  padding-left: 13px;
  padding-right: 14px;
  height: 81px;
  font-weight: 600;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .small_patent_button {
    height: 39px;
    max-width: 96%;
    letter-spacing: 0.3px;
  }
}

@media screen and (max-width: 992px) {
  .small_blue_button, .small_patent_button {
    font-weight: 400;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.thin_blue_button {
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
}

@media screen and (max-width: 992px) {
  .thin_blue_button {
    font-weight: 400;
  }
}
.big_blue_button_top_bg {
  font-size: clamp(18px, 3vw, 32px);
  width: 538px;
  max-width: 100%;
  height: 90px;
  line-height: 46px;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  leading-trim: NONE;
  letter-spacing: 1px;
}
@media screen and (min-width: 1643px) {
  .big_blue_button_top_bg {
    font-size: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .big_blue_button_top_bg {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 992px) {
  .big_blue_button_top_bg {
    border-radius: 10px;
    height: unset;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 576px) {
  .big_blue_button_top_bg {
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 10px;
    width: 268px;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    height: 45px;
  }
}
@media screen and (max-width: 576px) {
  .big_blue_button {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    height: 39px;
    border-radius: 10px;
    padding-left: 43px;
    padding-right: 44px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    letter-spacing: 0px;
  }
}
.img_plus_text, .about_img_plus_text {
  position: relative;
  margin-bottom: 97px;
}
.img_plus_text img, .about_img_plus_text img {
  width: 1130px;
  max-width: 100%;
}
.img_plus_text p, .about_img_plus_text p {
  font-family: Moderustic;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(16px, 2.5vw, 32px);
  leading-trim: NONE;
  line-height: 126%;
  letter-spacing: 0px;
}
@media screen and (min-width: 1643px) {
  .img_plus_text p, .about_img_plus_text p {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .img_plus_text p, .about_img_plus_text p {
    font-family: Moderustic;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 125%;
    letter-spacing: 0%;
    margin-bottom: -2px;
  }
}
.img_plus_text div, .about_img_plus_text div {
  padding: 30px;
  font-size: clamp(16px, 2.5vw, 32px);
  color: #fff;
  background-color: #224272;
  width: 1007px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1643px) {
  .img_plus_text div, .about_img_plus_text div {
    top: 415px;
    padding-top: 28px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 576px) {
  .img_plus_text div, .about_img_plus_text div {
    padding: 12px 10px;
    padding-right: 11px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .img_plus_text, .about_img_plus_text {
    margin-bottom: 63px;
  }
}
@media screen and (max-width: 360px) {
  .img_plus_text, .about_img_plus_text {
    padding-left: 5.5%;
    padding-right: 5.5%;
  }
}

@media screen and (max-width: 1200px) {
  .img_plus_text, .about_img_plus_text {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .img_plus_text img, .about_img_plus_text img {
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 1200px) {
  .img_plus_text div, .about_img_plus_text div {
    margin-bottom: 0;
    width: 100%;
    position: relative;
    top: unset;
    right: unset;
    transform: none;
    order: 1;
  }
}
.about_img_plus_text {
  margin-bottom: 88px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1643px) {
  .about_img_plus_text {
    display: block;
  }
}
@media screen and (max-width: 1642px) {
  .about_img_plus_text {
    display: grid;
    grid-template-rows: 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .about_img_plus_text {
    display: flex;
    margin-bottom: 59px;
  }
}
.about_img_plus_text img {
  position: relative;
  width: 100%;
  order: 2;
}
@media screen and (min-width: 1643px) {
  .about_img_plus_text img {
    width: 1149px;
  }
}
@media screen and (max-width: 1642px) {
  .about_img_plus_text img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 576px) {
  .about_img_plus_text img {
    position: relative;
  }
}
.about_img_plus_text div {
  display: flex;
  flex-direction: column;
  padding-top: 27px;
  padding-left: 42px;
  padding-right: 40px;
  position: relative;
  top: unset;
  transform: none;
  order: 1;
  width: 100%;
}
@media screen and (min-width: 1643px) {
  .about_img_plus_text div {
    width: 1007px;
    position: absolute;
    transform: translate(0, -50%);
    top: 479px;
    padding-bottom: 9px;
  }
}
@media screen and (max-width: 576px) {
  .about_img_plus_text div {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 22px;
  }
}
.about_img_plus_text picture {
  order: 2;
  position: relative;
}
@media screen and (min-width: 1643px) {
  .about_img_plus_text picture {
    order: 1;
  }
}
.about_img_plus_text h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(28px, 3vw, 50px);
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: clamp(1.38px, 2.5vw, 2.2px);
}
@media screen and (min-width: 1643px) {
  .about_img_plus_text h2 {
    font-size: 50px;
    letter-spacing: 2.2px;
  }
}
@media screen and (max-width: 576px) {
  .about_img_plus_text h2 {
    font-size: 28px;
    letter-spacing: 1.38px;
    line-height: 123%;
    margin-bottom: 27px;
  }
}
.about_img_plus_text p {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Medium;
  font-size: clamp(16px, 2.5vw, 32px);
  leading-trim: NONE;
  line-height: 125%;
  letter-spacing: 0px;
}
@media screen and (min-width: 1643px) {
  .about_img_plus_text p {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .about_img_plus_text p {
    font-size: 16px;
    font-family: Moderustic;
    font-weight: 400;
    font-style: Medium;
    margin-bottom: -2px;
    letter-spacing: 0px;
  }
}

.blue_div, .about_blue_div {
  max-width: 100%;
  background-color: #224272;
  color: #fff;
  padding: 67px 88px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 992px) {
  .blue_div, .about_blue_div {
    width: 92%;
    padding: 15px;
  }
}
.blue_div p, .about_blue_div p {
  font-size: clamp(16px, 4vw, 32px);
}
.blue_div:after, .about_blue_div:after {
  content: "";
  position: absolute;
  left: clamp(5px, 2.7vw, 53px);
  right: clamp(5px, 2.7vw, 53px);
  top: clamp(5px, 2.7vw, 33px);
  bottom: clamp(5px, 2.7vw, 33px);
  border: 3px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 692px) {
  .blue_div:after, .about_blue_div:after {
    border: 1px solid #fff;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }
}

.about_blue_div_wrapper {
  padding: 0;
}
@media screen and (max-width: 576px) {
  .about_blue_div_wrapper {
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 55px;
  }
}

.about_blue_div {
  padding-left: clamp(31px, 5vw, 101px);
  padding-right: clamp(31px, 5vw, 101px);
  padding-top: clamp(31px, 5vw, 86px);
  padding-bottom: clamp(31px, 5vw, 65px);
}
@media screen and (max-width: 692px) {
  .about_blue_div {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 576px) {
  .about_blue_div {
    padding-top: 16px;
    padding-bottom: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.about_blue_div h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  font-size: clamp(26px, 3vw, 50px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 2.3px;
  margin-bottom: 39px;
}
@media screen and (min-width: 1643px) {
  .about_blue_div h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 576px) {
  .about_blue_div h2 {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 126%;
    margin-bottom: 26px;
  }
}
.about_blue_div p {
  font-family: Moderustic;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(16px, 2.5vw, 32px);
  leading-trim: NONE;
  line-height: 123%;
  letter-spacing: 0%;
}
@media screen and (min-width: 1643px) {
  .about_blue_div p {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .about_blue_div p {
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 13px;
  }
}

.index_map {
  filter: grayscale(100%);
  height: 500px;
}
@media screen and (min-width: 1200px) {
  .index_map {
    min-height: 835px;
  }
  .index_map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 576px) {
  .index_map {
    min-height: 380px;
    height: 380px;
  }
}

.index_map_label {
  background-color: #224272;
  color: #fff;
  position: absolute;
  top: 79px;
  right: 77px;
  padding: 50px 35px;
}
@media screen and (max-width: 1200px) {
  .index_map_label {
    position: relative;
    top: unset;
    right: unset;
  }
}
@media screen and (max-width: 992px) {
  .index_map_label {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .index_map_label {
    padding: 15px;
    padding-top: 32px;
    padding-bottom: 27px;
  }
}
.index_map_label:after {
  content: "";
  border: 2px solid white;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .index_map_label:after {
    border: 1px solid white;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }
}
@media screen and (max-width: 576px) {
  .index_map_label:after {
    right: 6px;
  }
}
.index_map_label h5 {
  font-size: clamp(14px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 28px;
}
@media screen and (max-width: 992px) {
  .index_map_label h5 {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 576px) {
  .index_map_label h5 {
    font-family: Moderustic;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 10px;
  }
}
.index_map_label a {
  font-size: clamp(14px, 3vw, 28px);
  transition: all 0.3s;
}
.index_map_label a:hover {
  color: #3FBBEC;
}
@media screen and (min-width: 1643px) {
  .index_map_label {
    padding: 72px 35px;
    width: 711px;
    height: 245px;
  }
  .index_map_label:after {
    left: 13px;
    right: 14px;
    top: 9px;
    bottom: 9px;
  }
}

.carousel-item {
  transition: transform 1s ease, opacity 0.5s ease-out;
}

.patents_top_section {
  padding-top: 163px;
}
@media screen and (max-width: 992px) {
  .patents_top_section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 576px) {
  .patents_top_section {
    padding-top: 102px;
  }
}
.patents_top_section h2 {
  margin-bottom: 36px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  font-style: Bold;
}
@media screen and (min-width: 1643px) {
  .patents_top_section h2 {
    font-size: 50px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 576px) {
  .patents_top_section h2 {
    font-size: 28px;
    letter-spacing: 1.4px;
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 576px) {
  .patents_top_section .p_32 {
    display: none;
  }
}
.patents_top_section .w_p_32 {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(16px, 2vw, 32px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  font-family: Moderustic;
  font-weight: 500;
  font-style: Medium;
  leading-trim: NONE;
  line-height: 124%;
  letter-spacing: 0%;
}
@media screen and (max-width: 576px) {
  .patents_top_section .w_p_32_to_hide {
    display: none;
  }
}
.patents_top_section .w_p_32_hidden {
  font-family: Moderustic;
  font-weight: 500;
  font-style: Regular;
  font-size: clamp(16px, 2vw, 32px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  display: none;
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .patents_top_section .w_p_32_hidden {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .patents_top_section .w_p_32_hidden {
    line-height: 125%;
  }
}
.patents_top_section .patents_top_label {
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .patents_top_section .patents_top_label {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 360px) {
  .patents_top_section .patents_top_label {
    padding-left: 5.5%;
    padding-right: 5.2%;
  }
}

.patent_img {
  margin-bottom: 20px;
}

.carouselPatentWrapper {
  opacity: 0;
  overflow: hidden;
  display: grid;
  margin-bottom: 50px;
}
@media screen and (max-width: 1640px) {
  .carouselPatentWrapper {
    overflow: visible;
  }
}
@media screen and (max-width: 576px) {
  .carouselPatentWrapper {
    margin-bottom: 24px;
  }
}
.carouselPatentWrapper.show {
  opacity: 1;
}

@media screen and (max-width: 576px) {
  .carouselPatentLastDiv {
    margin-bottom: 50px;
  }
}

.carouselPatent {
  justify-content: center;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .carouselPatent {
    margin-bottom: 25px;
  }
}
.carouselPatent img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .carouselPatent img {
    max-width: 95.3%;
    margin-bottom: 11px;
  }
}
.carouselPatent .slick-next {
  right: 5px;
}
.carouselPatent .slick-next:before {
  content: url("../images/next.png");
}
.carouselPatent .slick-prev {
  left: 5px;
}
.carouselPatent .slick-prev:before {
  content: url("../images/prev.png");
}
.carouselPatent .slick-next,
.carouselPatent .slick-prev {
  z-index: 1;
  transition: all 0.3s;
  display: flex;
  height: 50px;
  width: 50px;
  opacity: 1;
  justify-content: center;
  align-items: center;
}
.carouselPatent .slick-next:hover:before,
.carouselPatent .slick-prev:hover:before {
  scale: 1.1;
  background: #3FBBEC;
}
.carouselPatent .slick-next:active:before,
.carouselPatent .slick-prev:active:before {
  scale: 1.1;
  opacity: 0.1;
  background: #000;
}
.carouselPatent .slick-next:before,
.carouselPatent .slick-prev:before {
  transition: all 0.3s;
  background: #224272;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding-top: 12px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .carouselPatent .slick-next:before,
  .carouselPatent .slick-prev:before {
    width: 40px;
    height: 40px;
    padding-top: 6px;
  }
}
.patent_img_text {
  display: flex;
  flex-direction: row;
  margin-bottom: 32px;
  overflow: hidden;
}
@media screen and (max-width: 1642px) {
  .patent_img_text {
    flex-direction: column;
    overflow: visible;
  }
}
@media screen and (max-width: 576px) {
  .patent_img_text {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 360px) {
  .patent_img_text {
    overflow: visible;
  }
}
.patent_img_text img {
  width: 100%;
}
@media screen and (max-width: 1642px) {
  .patent_img_text img {
    width: auto;
    max-height: 709px;
  }
}
.patent_img_text > :nth-child(1) {
  width: 32.5%;
  text-align: center;
}
@media screen and (max-width: 1642px) {
  .patent_img_text > :nth-child(1) {
    width: 100%;
  }
}
.patent_img_text > :nth-child(2) {
  position: relative;
  width: 70%;
  background-color: #224272;
  color: #fff;
  font-size: clamp(16px, 2.5vw, 32px);
  padding: 51px 30px;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 65px;
}
@media screen and (max-width: 1642px) {
  .patent_img_text > :nth-child(2) {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .patent_img_text > :nth-child(2) {
    margin-bottom: 15px;
  }
}
.patent_img_text > :nth-child(2) p {
  font-family: Moderustic;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(16px, 2vw, 32px);
  leading-trim: NONE;
  line-height: 125%;
  letter-spacing: 0%;
  padding-right: 9px;
  margin-bottom: 46px;
}
@media screen and (min-width: 1643px) {
  .patent_img_text > :nth-child(2) p {
    font-style: 32px;
  }
}
@media screen and (max-width: 576px) {
  .patent_img_text > :nth-child(2) p {
    font-size: 16px;
    padding: 0;
    margin-bottom: 0px;
    padding-top: 2px;
  }
}
.patent_img_text > :nth-child(2) .small_patent_button {
  max-width: 525px;
  width: 100%;
}
.patent_img_text > :nth-child(2):after {
  content: "";
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
  background-color: #224272;
  z-index: -1;
}
@media screen and (max-width: 619px) {
  .patent_img_text > :nth-child(2):after {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .patent_img_text {
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .patent_img_text > :nth-child(1) {
    width: 100%;
  }
  .patent_img_text > :nth-child(1) img {
    width: 460px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .patent_img_text > :nth-child(1) img {
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 619px) {
  .patent_img_text > :nth-child(1) img {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .patent_img_text > :nth-child(2) {
    width: 100%;
    margin-top: 0;
  }
  .patent_img_text > :nth-child(2) a {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .patent_img_text > :nth-child(2) {
    padding: 10px;
  }
}
.patent_big_slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
  margin-bottom: 10px;
}

.small_patent_button_to_hide {
  display: block;
}
@media screen and (max-width: 992px) {
  .small_patent_button_to_hide {
    width: 526px;
    max-width: 100%;
    padding-left: 13px;
    padding-right: 14px;
    height: 81px;
    font-weight: 600;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 576px) {
  .small_patent_button_to_hide {
    display: none;
  }
}

.w_patent_button_to_hide {
  display: block;
}
@media screen and (max-width: 1642px) {
  .w_patent_button_to_hide {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .w_patent_button_to_hide {
    display: none;
  }
}

.small_patent_button_hidden {
  display: none;
}
@media screen and (max-width: 576px) {
  .small_patent_button_hidden {
    max-width: 525px;
    width: 100%;
    display: block;
    letter-spacing: 0.3px;
    text-align: center;
    font-weight: 500;
  }
}

.w_patent_button_hidden {
  display: none;
}
@media screen and (max-width: 576px) {
  .w_patent_button_hidden {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

.cgm_top_section {
  padding-top: 155px;
}
@media screen and (max-width: 992px) {
  .cgm_top_section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_top_section {
    padding-top: 79px;
  }
}
.cgm_top_section br {
  display: none;
}
@media screen and (max-width: 576px) {
  .cgm_top_section br {
    display: block;
  }
}
.cgm_top_section h2 {
  letter-spacing: 1.5px;
  margin-bottom: 34px;
  font-size: clamp(0.9px, 4vw, 50px);
  line-height: 127%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1643px) {
  .cgm_top_section h2 {
    font-size: 50px;
    letter-spacing: 2.1px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_top_section h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 360px) {
  .cgm_top_section h2 {
    letter-spacing: 0.9px;
    margin-bottom: 20px;
  }
}
.cgm_top_section .cgm_top_section_label {
  margin-bottom: 27px;
}
@media screen and (max-width: 576px) {
  .cgm_top_section .cgm_top_section_label {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 360px) {
  .cgm_top_section .cgm_top_section_label {
    padding-left: 5.5%;
    padding-right: 5.5%;
  }
}
.cgm_top_section .cgm_top_section_label .p_32 {
  margin-bottom: 0;
}
@media screen and (min-width: 1643px) {
  .cgm_top_section .cgm_top_section_label .p_32 {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_top_section .cgm_top_section_label .p_32 {
    font-size: 16px;
  }
}

.cgm_img_and_text_wrapper {
  margin-bottom: 98px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_wrapper {
    margin-bottom: 57px;
  }
}

.cgm_img_and_text_first, .cgm_img_and_text_fifth, .cgm_img_and_text_third {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_first, .cgm_img_and_text_fifth, .cgm_img_and_text_third {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_first, .cgm_img_and_text_fifth, .cgm_img_and_text_third {
    padding-left: 20px;
    padding-right: 20px;
    grid-template-rows: 1fr auto;
  }
}
@media screen and (min-width: 576px) and (max-width: 1641px) {
  .cgm_img_and_text_first.first .right, .first.cgm_img_and_text_fifth .right, .first.cgm_img_and_text_third .right {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_first.first .left img, .first.cgm_img_and_text_fifth .left img, .first.cgm_img_and_text_third .left img {
    -o-object-position: 100% 25%;
       object-position: 100% 25%;
  }
}
@media screen and (max-width: 360px) {
  .cgm_img_and_text_first.first .left img, .first.cgm_img_and_text_fifth .left img, .first.cgm_img_and_text_third .left img {
    -o-object-position: 47% 25%;
       object-position: 47% 25%;
  }
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_first.third img, .third.cgm_img_and_text_fifth img, .third.cgm_img_and_text_third img {
    -o-object-position: 100% 25%;
       object-position: 100% 25%;
  }
}
@media screen and (max-width: 360px) {
  .cgm_img_and_text_first.third img, .third.cgm_img_and_text_fifth img, .third.cgm_img_and_text_third img {
    -o-object-position: 47% 25%;
       object-position: 47% 25%;
  }
}
.cgm_img_and_text_first .left, .cgm_img_and_text_fifth .left, .cgm_img_and_text_third .left {
  width: 941px;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_first .left, .cgm_img_and_text_fifth .left, .cgm_img_and_text_third .left {
    min-height: 360px;
    height: 360px;
    padding: 0;
    width: 100%;
    order: 2;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_first .left, .cgm_img_and_text_fifth .left, .cgm_img_and_text_third .left {
    min-height: 228px;
    height: 285px;
  }
}
.cgm_img_and_text_first .left img, .cgm_img_and_text_fifth .left img, .cgm_img_and_text_third .left img {
  max-height: 644px;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_first .left img, .cgm_img_and_text_fifth .left img, .cgm_img_and_text_third .left img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.cgm_img_and_text_first .right, .cgm_img_and_text_fifth .right, .cgm_img_and_text_third .right {
  background-color: #224272;
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 888px;
  max-width: 100%;
  padding-top: clamp(15px, 2.5vw, 37px);
  padding-bottom: clamp(15px, 2.5vw, 37px);
  padding-left: clamp(15px, 2.5vw, 51px);
  padding-right: clamp(15px, 2.5vw, 66px);
  /* height: 381px; */
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_first .right, .cgm_img_and_text_fifth .right, .cgm_img_and_text_third .right {
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: 51px;
    padding-right: 66px;
  }
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_first .right, .cgm_img_and_text_fifth .right, .cgm_img_and_text_third .right {
    position: relative;
    width: 100%;
    top: unset;
    transform: none;
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 20px 30px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_first .right, .cgm_img_and_text_fifth .right, .cgm_img_and_text_third .right {
    padding: 15px;
  }
}
.cgm_img_and_text_first .right :nth-child(1), .cgm_img_and_text_fifth .right :nth-child(1), .cgm_img_and_text_third .right :nth-child(1) {
  width: 76px;
  height: 63px;
  margin-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_first .right :nth-child(1), .cgm_img_and_text_fifth .right :nth-child(1), .cgm_img_and_text_third .right :nth-child(1) {
    width: 45px;
    height: 35px;
    margin-left: 0px;
    padding-top: 0px;
    margin-bottom: 13px;
  }
}
.cgm_img_and_text_first .right :nth-child(2), .cgm_img_and_text_fifth .right :nth-child(2), .cgm_img_and_text_third .right :nth-child(2) {
  font-family: Moderustic;
  font-weight: 600;
  font-size: clamp(16px, 4vw, 32px);
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_first .right :nth-child(2), .cgm_img_and_text_fifth .right :nth-child(2), .cgm_img_and_text_third .right :nth-child(2) {
    margin-bottom: 13px;
  }
}
.cgm_img_and_text_first .right :nth-child(3), .cgm_img_and_text_fifth .right :nth-child(3), .cgm_img_and_text_third .right :nth-child(3) {
  line-height: 100%;
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 28px);
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_first .right :nth-child(3), .cgm_img_and_text_fifth .right :nth-child(3), .cgm_img_and_text_third .right :nth-child(3) {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_first .right :nth-child(3), .cgm_img_and_text_fifth .right :nth-child(3), .cgm_img_and_text_third .right :nth-child(3) {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.cgm_img_and_text_first .right:after, .cgm_img_and_text_fifth .right:after, .cgm_img_and_text_third .right:after {
  position: absolute;
  content: "";
  pointer-events: none;
  left: clamp(5px, 1vw, 16px);
  right: clamp(5px, 1vw, 16px);
  top: clamp(5px, 1vw, 16px);
  bottom: clamp(5px, 1vw, 16px);
  border: 3px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .cgm_img_and_text_first .right:after, .cgm_img_and_text_fifth .right:after, .cgm_img_and_text_third .right:after {
    left: 5px;
    right: 4px;
    top: 5px;
    bottom: 5px;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 692px) {
  .cgm_img_and_text_first .right:after, .cgm_img_and_text_fifth .right:after, .cgm_img_and_text_third .right:after {
    border: 1px solid #fff;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }
}

.cgm_br {
  display: none;
}
@media screen and (max-width: 576px) {
  .cgm_br {
    display: block;
  }
}

.cgm_br_none {
  display: block;
}
@media screen and (max-width: 576px) {
  .cgm_br_none {
    display: none;
  }
}

.cgm_img_and_text_second, .cgm_img_and_text_fourth {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second, .cgm_img_and_text_fourth {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_second, .cgm_img_and_text_fourth {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
  }
}
.cgm_img_and_text_second img, .cgm_img_and_text_fourth img {
  max-height: 644px;
  width: auto;
  max-width: 100%;
}
.cgm_img_and_text_second .right, .cgm_img_and_text_fourth .right {
  width: 941px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px;
  margin-left: auto;
}
.cgm_img_and_text_second .right.bordered, .cgm_img_and_text_fourth .right.bordered {
  border: 3px solid #224272;
  padding-top: 0;
  padding-bottom: 0px;
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_second .right.bordered, .cgm_img_and_text_fourth .right.bordered {
    width: 828px;
  }
}
@media screen and (max-width: 1643px) {
  .cgm_img_and_text_second .right.bordered, .cgm_img_and_text_fourth .right.bordered {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second .right.bordered, .cgm_img_and_text_fourth .right.bordered {
    height: 228px;
  }
}
.cgm_img_and_text_second .right.bordered img, .cgm_img_and_text_fourth .right.bordered img {
  height: 584px;
  width: auto;
  max-width: 100%;
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_second .right.bordered img, .cgm_img_and_text_fourth .right.bordered img {
    position: relative;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second .right.bordered img, .cgm_img_and_text_fourth .right.bordered img {
    height: 90%;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_second .right.bordered img, .cgm_img_and_text_fourth .right.bordered img {
    height: 100%;
  }
}
.cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
  background-color: #224272;
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 888px;
  max-width: 100%;
  padding-top: clamp(15px, 2.5vw, 37px);
  padding-bottom: clamp(15px, 2.5vw, 37px);
  padding-left: clamp(15px, 2.5vw, 51px);
  padding-right: clamp(15px, 2.5vw, 66px);
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: 51px;
    padding-right: 66px;
  }
}
@media screen and (max-width: 1643px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }
}
@media screen and (max-width: 1641px) and (min-width: 1201px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    width: 100%;
    max-width: 100%;
    padding: 20px 30px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 991px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    padding: 14px 20px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    padding: 15px;
    padding-bottom: 14px;
  }
}
.cgm_img_and_text_second .left :nth-child(1), .cgm_img_and_text_fourth .left :nth-child(1) {
  width: 76px;
  height: 63px;
  margin-bottom: 15px;
  position: relative;
  -o-object-fit: unset;
     object-fit: unset;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_second .left :nth-child(1), .cgm_img_and_text_fourth .left :nth-child(1) {
    width: 45px;
    height: 35px;
    margin-left: 0px;
    padding-top: 0px;
    position: relative;
    -o-object-fit: unset;
       object-fit: unset;
    margin-left: 0px;
    padding-top: 0px;
    margin-bottom: 13px;
  }
}
.cgm_img_and_text_second .left :nth-child(2), .cgm_img_and_text_fourth .left :nth-child(2) {
  margin-bottom: 24px;
  font-family: Moderustic;
  font-weight: 600;
  font-size: clamp(16px, 4vw, 32px);
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_second .left :nth-child(2), .cgm_img_and_text_fourth .left :nth-child(2) {
    margin-bottom: 13px;
    line-height: 140%;
  }
}
.cgm_img_and_text_second .left :nth-child(3), .cgm_img_and_text_fourth .left :nth-child(3) {
  line-height: 100%;
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 28px);
  margin-bottom: 0px;
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_second .left :nth-child(3), .cgm_img_and_text_fourth .left :nth-child(3) {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_second .left :nth-child(3), .cgm_img_and_text_fourth .left :nth-child(3) {
    font-size: 16px;
  }
}
.cgm_img_and_text_second .left:after, .cgm_img_and_text_fourth .left:after {
  position: absolute;
  content: "";
  pointer-events: none;
  left: clamp(5px, 1vw, 16px);
  right: clamp(5px, 1vw, 16px);
  top: clamp(5px, 1vw, 16px);
  bottom: clamp(5px, 1vw, 16px);
  border: 3px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .cgm_img_and_text_second .left:after, .cgm_img_and_text_fourth .left:after {
    left: 5px;
    right: 4px;
    top: 5px;
    bottom: 5px;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 692px) {
  .cgm_img_and_text_second .left:after, .cgm_img_and_text_fourth .left:after {
    border: 1px solid #fff;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }
}

@media screen and (max-width: 576px) {
  .cgm_img_and_text_third .cgm_third_br {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_third .cgm_fifth_br {
    display: none;
  }
}
.cgm_img_and_text_third .right {
  padding-bottom: 24px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_third .right {
    padding-bottom: 16px;
  }
}
.cgm_img_and_text_third .right :nth-child(1) {
  margin-bottom: 12px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_third .right :nth-child(1) {
    margin-bottom: 13px;
  }
}
.cgm_img_and_text_third .right :nth-child(2) {
  margin-bottom: 11px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_third .right :nth-child(2) {
    line-height: 140%;
  }
}
.cgm_img_and_text_third .right :nth-child(3) {
  line-height: 100%;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_third .left {
    height: 228px;
  }
}
.cgm_img_and_text_third .left img {
  max-height: unset;
}

.cgm_img_and_text_fourth .left {
  top: 50.2%;
  padding-bottom: 50px;
  padding-right: 54px;
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_fourth .left {
    top: 50.2%;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fourth .left {
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
.cgm_img_and_text_fourth .left :nth-child(1) {
  width: 86px;
  margin-bottom: 13px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fourth .left :nth-child(1) {
    width: 49px;
  }
}
.cgm_img_and_text_fourth .left :nth-child(2) {
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fourth .left :nth-child(2) {
    margin-bottom: 15px;
  }
}
.cgm_img_and_text_fourth .right {
  padding: 0;
  width: 935px;
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_fourth .right {
    width: 100%;
    min-height: 360px;
    height: 360px;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fourth .right {
    width: 100%;
    min-height: 228px;
    height: 228px;
    position: relative;
  }
}
.cgm_img_and_text_fourth .right img {
  max-height: unset;
}
@media screen and (max-width: 1642px) {
  .cgm_img_and_text_fourth .right img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0% 3%;
       object-position: 0% 3%;
  }
}

.cgm_img_and_text_fifth .left {
  width: unset;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fifth .left {
    height: 226px;
  }
}
.cgm_img_and_text_fifth .left img {
  max-height: unset;
}
@media screen and (min-width: 1643px) {
  .cgm_img_and_text_fifth .right {
    top: 358px;
    padding-left: 53px;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_fifth .right {
    top: unset;
  }
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fifth .right {
    top: unset;
    padding-left: 15px;
    height: unset;
  }
}
.cgm_img_and_text_fifth .right :nth-child(1) {
  margin-bottom: 11px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fifth .right :nth-child(1) {
    margin-bottom: 13px;
  }
}
.cgm_img_and_text_fifth .right :nth-child(2) {
  margin-bottom: 11px;
}
@media screen and (max-width: 576px) {
  .cgm_img_and_text_fifth .right :nth-child(2) {
    margin-bottom: 13px;
  }
}
.cgm_img_and_text_fifth .right :nth-child(3) {
  margin-bottom: 5px;
}

@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second img, .cgm_img_and_text_fourth img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second .right.bordered, .cgm_img_and_text_fourth .right.bordered {
    justify-content: center;
    padding-right: unset;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second .right, .cgm_img_and_text_fourth .right {
    position: relative;
    padding: 0;
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 991px) {
  .cgm_img_and_text_second .left:after, .cgm_img_and_text_fourth .left:after {
    left: 5px;
    right: 4px;
    top: 5px;
    bottom: 5px;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_img_and_text_second .left, .cgm_img_and_text_fourth .left {
    position: relative;
    width: 100%;
    top: unset;
    transform: none;
    order: 1;
  }
}
.cgm_grid_label {
  margin-bottom: 29px;
}
@media screen and (max-width: 576px) {
  .cgm_grid_label {
    padding-left: 20px;
    margin-bottom: 30px;
  }
}
.cgm_grid_label h2 {
  letter-spacing: 2.6px;
}
@media screen and (max-width: 576px) {
  .cgm_grid_label h2 {
    line-height: 125%;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
}

.cgm_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 87px;
}
@media screen and (max-width: 1200px) {
  .cgm_grid {
    gap: 15px;
    margin-bottom: 60px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .cgm_grid {
    gap: 15px;
    margin-bottom: 60px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .cgm_grid {
    margin-bottom: 63px;
    margin-left: 6px;
    margin-right: 7px;
  }
  .cgm_grid > :nth-child(-n+3) {
    height: 390px;
  }
  .cgm_grid > :nth-child(n+4):nth-child(-n+6) {
    height: 420px;
  }
}
.cgm_grid > div {
  background-color: #224272;
  color: #fff;
  padding-bottom: 0px;
  padding-left: clamp(16px, 5vw, 26px);
  padding-right: clamp(16px, 2.5vw, 26px);
  padding-top: clamp(20px, 2.5vw, 33px);
}
@media screen and (min-width: 1643px) {
  .cgm_grid > div {
    padding-bottom: 0px;
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 33px;
  }
}
@media screen and (max-width: 1200px) {
  .cgm_grid > div {
    padding: 20px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_grid > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cgm_grid > div :nth-child(2) {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  font-size: clamp(16px, 2vw, 28px);
  margin-bottom: 33px;
  line-height: 100%;
  padding-right: 17px;
}
@media screen and (min-width: 1643px) {
  .cgm_grid > div :nth-child(2) {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_grid > div :nth-child(2) {
    font-size: 16px;
    letter-spacing: 0.47px;
    line-height: 105%;
    margin-bottom: 0;
  }
}
.cgm_grid > div > div {
  background: #fff;
  margin-bottom: 29px;
  text-align: center;
  width: 100%;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 97%;
}
@media screen and (max-width: 576px) {
  .cgm_grid > div > div {
    height: 198px;
    width: 97%;
    margin-bottom: 19px;
  }
}
.cgm_grid img {
  width: 96%;
  height: 94%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cgm_published_section {
  padding-bottom: 29px;
}
@media screen and (max-width: 576px) {
  .cgm_published_section {
    padding-bottom: 32px;
  }
}
.cgm_published_section .lab_published_div .left {
  flex: 0 45%;
}
.cgm_published_section .lab_published_div .right {
  flex: 1;
}
@media screen and (min-width: 1400px) {
  .cgm_published_section .lab_published_div .right {
    padding-left: 26px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_published_section .lab_published_div .right {
    padding-left: 0;
  }
}
.cgm_published_section .lab_published_div .right :nth-child(2) {
  font-family: Moderustic;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 28px);
  line-height: 126%;
  letter-spacing: -0.0017em;
  margin-bottom: 25px;
  padding-right: 7px;
}
@media screen and (min-width: 1643px) {
  .cgm_published_section .lab_published_div .right :nth-child(2) {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .cgm_published_section .lab_published_div .right :nth-child(2) {
    font-size: 16px;
    padding-left: 0;
    line-height: 126%;
    padding-right: 0;
    margin-bottom: 0;
  }
}

.cooperation_top_bg {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 98px;
}
@media screen and (max-width: 1600px) {
  .cooperation_top_bg {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 576px) {
  .cooperation_top_bg {
    margin-bottom: 62px;
  }
}
@media screen and (max-width: 360px) {
  .cooperation_top_bg {
    background-position: 60% 54px;
  }
}
.cooperation_top_bg h2 {
  color: #fff;
  letter-spacing: 2.8px;
  margin-bottom: 34px;
}
@media screen and (max-width: 576px) {
  .cooperation_top_bg h2 {
    letter-spacing: 1.3px;
    margin-bottom: 32px;
  }
}
.cooperation_top_bg .container {
  padding-top: 185px;
  padding-bottom: 90px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1600px) {
  .cooperation_top_bg .container {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .cooperation_top_bg .container {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .cooperation_top_bg .container {
    padding-top: 143px;
    padding-left: 5.6%;
    padding-right: 5.6%;
  }
}
.cooperation_top_bg .bg_img,
.cooperation_top_bg .bg_shadow {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.coop_top_text {
  background: #224272;
  color: #fff;
  padding: 50px;
  position: relative;
  font-size: clamp(16px, 4vw, 32px);
  padding-top: 50px;
  padding-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .coop_top_text {
    padding: 15px;
    padding-top: 17px;
    padding-bottom: 2px;
  }
}
.coop_top_text p {
  line-height: 125%;
}
@media screen and (max-width: 360px) {
  .coop_top_text p {
    padding-bottom: 2px;
  }
}
.coop_top_text:after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 15px;
  bottom: 15px;
  border: 1px solid #fff;
}

@media screen and (max-width: 1200px) {
  .coop_top_text:after {
    left: 5px;
    right: 5px;
    top: 2px;
    bottom: 5px;
  }
}
.coop_top_form {
  position: relative;
  background: #fff;
  border: 10px solid #224272;
  border-left: 13px solid #224272;
  border-right: 9px solid #224272;
  padding-left: 74px;
  padding-right: 72px;
  padding-top: 54px;
  padding-bottom: 18px;
}
@media screen and (max-width: 1200px) {
  .coop_top_form {
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .coop_top_form {
    border-top: 5px solid #224272;
    border-left: 5px solid #224272;
    border-right: 5px solid #224272;
    border-bottom: 5px solid #224272;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 360px) {
  .coop_top_form {
    padding-bottom: 6px;
  }
}
.coop_top_form .form-group {
  margin-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .coop_top_form .form-group {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 360px) {
  .coop_top_form .form-group {
    margin-bottom: 13px;
  }
}
.coop_top_form .form-group:has(.custom-cdropdown) {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .coop_top_form .form-group:has(.custom-cdropdown) {
    margin-bottom: 15px;
  }
}
.coop_top_form input {
  border-radius: 10px;
  border: 1px solid #000;
  font-size: clamp(16px, 3vw, 24px);
  height: clamp(50px, 4vw, 64px);
}
.coop_top_form input::-moz-placeholder {
  color: #5a5a5a;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 24px);
}
.coop_top_form input::-moz-placeholder, .coop_top_form input::placeholder {
  color: #5a5a5a;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 24px);
}
.coop_top_form label {
  font-family: "Inter";
  font-weight: 500;
  font-size: clamp(16px, 2vw, 24px);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 576px) {
  .coop_top_form label {
    margin-bottom: 8px;
    letter-spacing: 0.1px;
  }
}
@media screen and (max-width: 576px) {
  .coop_top_form label:has(+ .coop_dropdown_wrapper) {
    margin-bottom: 13px;
  }
}
.coop_top_form .coop_button_submit {
  border: none;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 10px;
  height: 64px;
  font-size: clamp(16px, 2.5vw, 32px);
}
@media screen and (min-width: 1643px) {
  .coop_top_form .coop_button_submit {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .coop_top_form .coop_button_submit {
    height: 42px;
    font-size: 16px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1200px) {
  .coop_top_form input {
    padding-bottom: 12px;
    padding-left: 5px;
  }
}
.ol_32 li {
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: 0%;
}

@media screen and (min-width: 1642px) {
  .coop_big_text_container1,
  .coop_big_text_container2 {
    padding-left: 4px;
  }
}
@media screen and (max-width: 360px) {
  .coop_big_text_container1,
  .coop_big_text_container2 {
    padding-left: 5.5%;
    padding-right: 5.5%;
  }
}
.coop_big_text_container1 .p_32,
.coop_big_text_container2 .p_32 {
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container1 .p_32,
  .coop_big_text_container2 .p_32 {
    margin-bottom: 20px;
  }
}
.coop_big_text_container1 ol,
.coop_big_text_container2 ol {
  padding-left: 44px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container1 ol,
  .coop_big_text_container2 ol {
    padding-left: 22px;
  }
}
.coop_big_text_container1 ol li,
.coop_big_text_container2 ol li {
  padding-left: 4px;
  line-height: 127%;
  margin-bottom: 38px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container1 ol li,
  .coop_big_text_container2 ol li {
    padding-left: 2px;
    margin-bottom: 20px;
    line-height: 125%;
  }
}

.coop_big_text_container1 {
  margin-bottom: 97px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container1 {
    margin-bottom: 61px;
  }
}
.coop_big_text_container1 h2 {
  letter-spacing: 2.5px;
  margin-bottom: 35px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container1 h2 {
    letter-spacing: 1.1px;
    margin-bottom: 26px;
    line-height: 121%;
  }
}
.coop_big_text_container1 p b {
  font-weight: 500;
}

.coop_big_text_container2 {
  margin-bottom: 98px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container2 {
    margin-bottom: 63px;
  }
}
.coop_big_text_container2 h2 {
  letter-spacing: 2.3px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container2 h2 {
    line-height: 123%;
    letter-spacing: 1.4px;
    margin-bottom: 28px;
  }
}
.coop_big_text_container2 p {
  letter-spacing: 0.06px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container2 p {
    letter-spacing: 0;
  }
}
.coop_big_text_container2 p b {
  font-size: 36px;
  font-weight: 500;
}
@media screen and (min-width: 1643px) {
  .coop_big_text_container2 p b {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .coop_big_text_container2 p b {
    font-size: 18px;
    letter-spacing: -1.1px;
  }
}
.coop_big_text_container2 .coop_link {
  margin-bottom: 79px;
}
@media screen and (max-width: 576px) {
  .coop_big_text_container2 .coop_link {
    margin-bottom: 39px;
  }
}
.coop_big_text_container2 .coop_bold {
  font-weight: 500;
  letter-spacing: 0;
}

.form_sended_section {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
}

@media screen and (max-width: 992px) {
  .form_sended_section {
    padding-top: 100px;
  }
}
.form_modal {
  display: none;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.form_modal > div {
  width: 96%;
  max-width: 1644px;
}
@media screen and (max-width: 360px) {
  .form_modal > div {
    width: 89%;
  }
}
.form_modal > div .modal_close {
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 26px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding-top: 2px;
  padding-left: 1px;
}
.form_modal > div .modal_close:active {
  color: #fff;
  background: #afafaf;
  border-radius: 50%;
}
.form_modal.show {
  display: flex;
}

#form_modal {
  opacity: 0;
  transition: all 0.5s;
  overflow-y: scroll;
  overflow-x: hidden;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: flex-start;
}
#form_modal.opacity1 {
  opacity: 1;
}
#form_modal.opacity0 {
  opacity: 0;
}

.custom-cdropdown {
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
}

.cdropdown-toggle {
  line-height: 105%;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 26px;
  border: 1px solid #000;
  border-radius: 10px;
  background-color: #f8f8f8;
  text-align: left;
  cursor: pointer;
  position: relative;
  height: clamp(50px, 4vw, 64px);
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: clamp(16px, 2vw, 24px);
}
@media screen and (min-width: 1643px) {
  .cdropdown-toggle {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .cdropdown-toggle {
    padding-left: 5px;
  }
}
@media screen and (max-width: 576px) {
  .cdropdown-toggle {
    font-size: 16px;
    padding-left: 9px;
    padding-top: 11px;
  }
}
.cdropdown-toggle:focus, .cdropdown-toggle:hover, .cdropdown-toggle:active, .cdropdown-toggle:focus-visible, .cdropdown-toggle:focus-within {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.cdropdown-toggle span {
  font-size: clamp(16px, 3vw, 24px);
}
.cdropdown-toggle:after {
  content: "▼";
  position: absolute;
  right: 19px;
  top: 54%;
  transform: translateY(-50%);
  font-size: 32px;
}
@media screen and (max-width: 576px) {
  .cdropdown-toggle:after {
    right: 5px;
    top: 54%;
    font-size: 24px;
  }
}
@media screen and (max-width: 360px) {
  .cdropdown-toggle:after {
    right: 7px;
    top: 57%;
  }
}

.cdropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000;
}
.cdropdown-menu li {
  padding: 10px 15px;
  height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .cdropdown-menu li {
    height: unset;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.cdropdown-menu li:hover {
  background-color: #3FBBEC;
  color: white;
}
.cdropdown-menu li.selected {
  background-color: #224272;
  color: white;
}

@media screen and (max-width: 992px) {
  .cdropdown-menu {
    top: -400px;
  }
}
.search_section {
  padding-top: 150px;
}
.search_section .AS_ajax_resultsIntroFailure {
  text-align: center;
}
.search_section .ajaxSearch_intro {
  text-align: center;
  padding-right: 39px;
}
.search_section #grpResult_site_wide .card {
  border: none;
}
.search_section .ajax_label {
  width: 100%;
}
.search_section #ajaxSearch_form {
  text-align: center;
  margin-bottom: 32px;
}
.search_section #ajaxSearch_form #ajaxSearch_input {
  outline: none;
  width: 50%;
  min-width: 300px;
  margin-bottom: 32px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  border: 1px solid #bdbdbd;
  font-size: 20px;
  height: clamp(50px, 4vw, 64px);
}
.search_section #ajaxSearch_form #ajaxSearch_input::-moz-placeholder {
  font-size: 20px;
  color: rgb(173, 173, 173);
}
.search_section #ajaxSearch_form #ajaxSearch_input::-moz-placeholder, .search_section #ajaxSearch_form #ajaxSearch_input::placeholder {
  font-size: 20px;
  color: rgb(173, 173, 173);
}
.search_section #ajaxSearch_form #ajaxSearch_input:active, .search_section #ajaxSearch_form #ajaxSearch_input:focus, .search_section #ajaxSearch_form #ajaxSearch_input:hover, .search_section #ajaxSearch_form #ajaxSearch_input:focus-visible, .search_section #ajaxSearch_form #ajaxSearch_input:focus-within, .search_section #ajaxSearch_form #ajaxSearch_input:target {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.search_section #ajaxSearch_form .ajax_submit {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  background: none;
  border: none;
  outline: none;
  transition: all 0.3s;
}
.search_section #ajaxSearch_form .ajax_submit:hover {
  scale: 1.1;
}

@media screen and (max-width: 992px) {
  .search_section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.blue_text_box {
  background-color: #224272;
  color: #fff;
  padding: 30px;
  padding-bottom: 12px;
  padding-top: clamp(15px, 2vw, 30px);
  padding-bottom: clamp(15px, 2vw, 12px);
  padding-left: clamp(15px, 2vw, 30px);
  padding-right: clamp(15px, 2vw, 30px);
  position: relative;
}
.blue_text_box:after {
  content: "";
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
  background-color: #224272;
  z-index: -1;
}
@media screen and (max-width: 360px) {
  .blue_text_box {
    padding: 10px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 11px;
    overflow: hidden;
  }
}
.blue_text_box p {
  font-family: Moderustic;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(16px, 2vw, 32px);
  leading-trim: NONE;
  line-height: 124%;
  letter-spacing: 0%;
}
@media screen and (min-width: 1643px) {
  .blue_text_box p {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .blue_text_box p {
    font-size: 16px;
  }
}
.blue_text_box p:has(+ p) {
  margin-bottom: 24px;
}
@media screen and (max-width: 576px) {
  .blue_text_box p:has(+ p) {
    margin-bottom: 23px;
  }
}
@media screen and (min-width: 1643px) {
  .blue_text_box p {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .blue_text_box p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .blue_text_box p:last-child {
    margin-bottom: 0;
  }
}

footer {
  background-color: #224272;
  color: #fff;
  font-size: clamp(14px, 4vw, 22px);
}
footer .container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .container img {
  margin-bottom: 7px;
  width: 106px;
  height: 73px;
  transition: all 0.3s;
}
@media screen and (min-width: 1643px) {
  footer .container img {
    position: relative;
    top: -16px;
    left: 2px;
  }
}
footer .container img:hover {
  scale: 1.1;
}
footer .container a {
  font-weight: 300;
  font-size: clamp(16px, 1vw, 40px);
  transition: all 0.3s;
}
footer .container a:hover {
  color: #3FBBEC;
}
footer .container .footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 27.6px;
  min-width: 70%;
  justify-content: end;
  padding-top: 3px;
  letter-spacing: 0;
}
@media screen and (max-width: 576px) {
  footer .container .footer-links {
    gap: 19.9px;
  }
}
footer .container .footer-links a {
  font-family: Moderustic;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  transition: all 0.3s;
}
footer .container .footer-links a:hover, footer .container .footer-links a.active {
  color: #3FBBEC;
}
@media screen and (max-width: 576px) {
  footer .container .footer-links a {
    font-family: Moderustic;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
footer .container .footer_tag {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  padding-left: 2px;
}
@media screen and (max-width: 576px) {
  footer .container .footer_tag {
    font-family: Moderustic;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
footer .container .footer_police {
  font-family: Moderustic;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
@media screen and (max-width: 576px) {
  footer .container .footer_police {
    font-family: Moderustic;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
  }
}

@media screen and (max-width: 992px) {
  footer .container {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 992px) {
  footer .container img {
    max-width: 53px;
    max-height: 36px;
  }
}
@media screen and (max-width: 1200px) {
  footer .container .footer-links {
    justify-content: flex-start;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 992px) {
  footer .container .footer-links {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1200px) {
  footer .container > * {
    flex: 1 100%;
  }
  footer .container > :nth-child(3) {
    order: 4;
  }
  footer .container > :nth-child(4) {
    order: 3;
  }
}
@media screen and (max-width: 992px) {
  footer .container > * {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  footer .container > * {
    margin-bottom: 32px;
  }
  footer .container > :nth-child(3) {
    order: 4;
    padding-left: 0;
  }
  footer .container > :nth-child(4) {
    order: 3;
    margin-top: 4px;
    margin-bottom: 28px;
  }
}

#cookies_close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  text-align: center;
}

.weiss-cookies {
  position: fixed;
  bottom: 20px;
  width: 100%;
  /* height: 100%; */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  pointer-events: none;
}

.weiss-cookies-wrapper {
  position: relative;
  background: #fff;
  width: 500px;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 16px;
  padding: 20px 10px;
  min-width: 200px;
  box-shadow: 0px 6px 15px 2px rgba(34, 60, 80, 0.2);
  pointer-events: all;
  border: 1px solid #d1d1d1;
}

.weiss-cookies-buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.weiss-cookies-buttons button {
  margin-bottom: 12px;
  border-width: 2px;
  padding: 11px 23px;
  transition: 0.5s;
  margin-right: 10px;
  margin-left: 10px;
  min-width: 220px;
}

.weiss-cookies-text {
  margin-bottom: 30px;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .weiss-cookies {
    width: 100%;
    max-width: 100%;
    bottom: 0;
  }
  .weiss-cookies-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: 0px -15px 15px 2px rgba(34, 60, 80, 0.2);
    pointer-events: all;
    border: none;
    padding: 20px 10px;
  }
  .weiss-cookies-text {
    margin-bottom: 18px;
  }
  .weiss-cookies-text h4 {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }
  .weiss-cookies button {
    margin-bottom: 0 !important;
  }
}/*# sourceMappingURL=styles_scss.css.map */

.privacy-consent-wrapper {
    margin-bottom: 20px;
}

.privacy-consent-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.privacy-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}


.privacy-consent-label:hover .checkmark {
    border-color: #5bc0de;
}

.privacy-checkbox:checked ~ .checkmark {
    background-color: #5bc0de;
    border-color: #5bc0de;
}


.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-checkbox:checked ~ .checkmark:after {
    display: block;
}

.consent-text {
    flex: 1;
}

.privacy-link {
    color: #5bc0de;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #31b0d5;
    text-decoration: none;
}

.coop_button_submit {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coop_button_submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.coop_button_submit:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .privacy-consent-label {
        font-size: 13px;
        padding-left: 30px;
    }

    .checkmark {
        height: 18px;
        width: 18px;
    }

    .checkmark:after {
        left: 5px;
        top: 2px;
        width: 4px;
        height: 9px;
    }
}
