@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  color: #888888;
  background: #fff;
  margin: 0;
}
body.disabled {
  overflow: hidden;
}

a {
  display: inline-block;
  color: inherit;
}

a, a:hover, a:focus, a:visited, a:focus-within {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, ul, p {
  margin-top: 0;
}

.slide_ico {
  filter: invert(100%) brightness(200%);
}

img.wheel {
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
img.development {
  animation: shake 4s ease-in-out infinite;
}

@keyframes shake {
  0% {
    transform: translateY(0);
  }
  4% {
    transform: translateY(-3px);
  }
  6% {
    transform: translateY(3px);
  }
  8% {
    transform: translateY(-2px);
  }
  10%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: rotate(4deg);
  }
  55% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(4deg);
  }
  65% {
    transform: rotate(-4deg);
  }
  70% {
    transform: rotate(0deg);
  }
}
img.cloud {
  animation: float 7s linear infinite;
}

@keyframes float {
  0% {
    transform: translateX(-10px) translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateX(15px) translateY(-5px) rotate(2deg);
  }
  50% {
    transform: translateX(25px) translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateX(15px) translateY(5px) rotate(-2deg);
  }
  100% {
    transform: translateX(-10px) translateY(0px) rotate(0deg);
  }
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

p {
  line-height: 150%;
}

header {
  padding-top: 40px;
  padding-bottom: 40px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.1);
}
header.header-special {
  background: url("../images/hero-bg.png");
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 991px) {
  header.header-special {
    position: absolute;
  }
}
header .top-desktop-menu {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  header .top-desktop-menu {
    margin-bottom: 15px;
    display: none;
  }
}
header .top-desktop-menu li a {
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}
header .top-desktop-menu li:last-of-type {
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  header {
    background: #E51A4B;
    position: absolute;
    left: 8px;
    top: 8px;
    right: 8px;
    width: calc(100% - 16px);
    border-radius: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 9999;
  }
}
@media only screen and (max-width: 991px) {
  header .desktop-menu {
    display: none;
  }
}
header ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  header ul {
    gap: 15px;
  }
}
header li {
  display: flex;
  align-items: center;
  color: #fff;
}
header li a {
  color: #fff;
  font-size: 20px;
  transition: 0.2s ease;
}
header li a:hover {
  color: #E51A4B;
  transition: 0.2s ease;
}
header .menu-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header .menu-wrap {
    justify-content: center;
  }
}
@media only screen and (max-width: 991px) {
  header .logo-wrap {
    position: relative;
    z-index: 18;
    margin-right: auto;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  header .logo-wrap a {
    display: flex;
  }
}
header .logo-wrap img {
  height: auto;
}
@media only screen and (max-width: 1199px) {
  header .logo-wrap img {
    max-width: 140px;
  }
}
@media only screen and (max-width: 991px) {
  header .logo-wrap img {
    max-width: 150px;
  }
}

.mobile-menu {
  margin-top: 0;
  background: #E51A4B;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  z-index: 110;
  flex-direction: column;
  padding-top: 90px;
  flex-wrap: nowrap;
  overflow-y: scroll;
}
.mobile-menu.active {
  transition: 0.3s ease;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .top-desktop-menu {
  list-style-type: none;
  padding-left: 0;
}
.mobile-menu .top-desktop-menu li {
  color: #fff;
}
.mobile-menu .nav {
  flex-direction: column;
  display: flex;
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}
.mobile-menu li {
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 5px;
}
.mobile-menu li:last-of-type {
  margin-bottom: 0;
}
.mobile-menu li a {
  color: #fff;
  font-size: 20px !important;
  font-weight: 600;
}
.mobile-menu .right-menu-wrap {
  display: initial;
}
.mobile-menu .mobile-contacts a, .mobile-menu .mobile-contacts p {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 5px;
}
.mobile-menu .mobile-contacts .item {
  display: flex;
  justify-content: center;
}
.mobile-menu .mobile-contacts .item a {
  display: flex;
  align-items: center;
}
.mobile-menu .mobile-contacts .item span {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}
.mobile-menu .mobile-contacts .item span img {
  max-width: 24px;
  height: auto;
}
.mobile-menu hr {
  border: none;
  height: 2px;
  width: 60%;
  background: #fff;
  margin: 1rem auto;
}

.nav-toggler {
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 10px;
  width: 34px;
  height: 34px;
  align-items: center;
  display: none;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .nav-toggler {
    display: flex;
  }
}

.hamburger {
  width: 30px;
  height: 22.5px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 99999;
}
@media only screen and (max-width: 991px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 3px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger span:nth-child(3) {
  top: 17px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1.5px;
  left: 4px;
}

.hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19.5px;
  left: 4px;
}

section.hero {
  background: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 1100px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.hero {
    min-height: initial;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 991px) {
  section.hero {
    padding-top: 40px;
  }
}
section.hero .container {
  padding-top: 240px;
  padding-bottom: 130px;
}
@media only screen and (max-width: 991px) {
  section.hero .container {
    padding-top: 90px;
    padding-bottom: 40px;
    max-width: initial;
    margin-left: initial;
    margin-right: initial;
  }
}
@media only screen and (max-width: 767px) {
  section.hero .container {
    padding-top: 80px;
  }
}
section.hero .top {
  position: relative;
}
section.hero .text {
  position: relative;
  z-index: 10;
}
section.hero .text h1 {
  font-weight: 800;
  font-size: 100px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  text-transform: initial;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.hero .text h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1399px) {
  section.hero .text h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero .text h1 {
    margin-bottom: 5px;
    text-align: left;
    font-size: 40px;
  }
}
@media only screen and (max-width: 420px) {
  section.hero .text h1 {
    font-size: 32px;
  }
}
section.hero .text h2 {
  font-size: 56px;
  color: #393185;
  margin-bottom: 50px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 56px;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  section.hero .text h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1399px) {
  section.hero .text h2 {
    font-size: 49px;
  }
}
@media only screen and (max-width: 991px) {
  section.hero .text h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 420px) {
  section.hero .text h2 {
    font-size: 21px;
  }
}
section.hero .text .line {
  background: #E51A4B;
  height: 2px;
  width: 430px;
  margin-top: 25px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.hero .text .line {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  section.hero .text .line {
    width: auto;
  }
}
section.hero .text .img-wrap {
  float: left;
  margin-top: 10px;
  margin-right: 40px;
  height: 350px;
}
@media only screen and (max-width: 991px) {
  section.hero .text .img-wrap {
    height: initial;
    float: initial;
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  section.hero .text .img-wrap img {
    max-width: 120px;
  }
}
section.hero .text .line, section.hero .text h3, section.hero .text p {
  margin-left: 242px;
}
@media only screen and (max-width: 991px) {
  section.hero .text .line, section.hero .text h3, section.hero .text p {
    margin-left: initial;
  }
}
section.hero .text, section.hero .btn-wrap {
  padding-right: 200px;
}
@media only screen and (max-width: 991px) {
  section.hero .text, section.hero .btn-wrap {
    padding-right: 0;
  }
}
section.hero .btn-main-wrap {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.hero .btn-main-wrap {
    height: 50px;
    margin-top: 20px;
  }
}
section.hero .btn-main-wrap .hero-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
section.hero .btn-main-wrap .hero-arrow-left, section.hero .btn-main-wrap .hero-arrow-right {
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
section.hero .btn-main-wrap .hero-arrow-left {
  left: 0;
}
section.hero .btn-main-wrap .hero-arrow-right {
  right: 0;
}
section.hero .btn-main-wrap .hero-arrow p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
section.hero .btn-main-wrap .hero-arrow p span {
  font-weight: 700;
}
section.hero .btn-wrap {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  section.hero .btn-wrap.desktop {
    display: none;
  }
}
section.hero .btn-wrap.mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  section.hero .btn-wrap.mobile {
    display: flex;
    justify-content: flex-start;
  }
}
section.hero .btn-wrap a {
  pointer-events: all;
  background: #E51A4B;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  transition: 0.2s ease;
}
@media only screen and (max-width: 991px) {
  section.hero .btn-wrap a {
    font-size: 16px;
    padding: 14px 20px;
  }
}
section.hero .btn-wrap a:hover {
  color: #fff;
  background: #AC1437;
  transition: 0.2s ease;
}
section.hero .layer {
  width: 100%;
  height: 140px;
  position: absolute;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}
section.hero .text-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}
@media only screen and (max-width: 991px) {
  section.hero .text-blocks {
    grid-template-columns: minmax(1px, 1fr);
    padding-left: 15px;
    padding-right: 15px;
  }
}
section.hero .text-blocks .text-block {
  position: relative;
  padding: 34px;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
}
section.hero .text-blocks .text-block .top {
  flex-grow: 1;
}
section.hero .text-blocks .text-block .border-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px dashed #fff;
  border-radius: 10px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.hero .text-blocks .text-block {
    padding: 20px;
  }
}
section.hero .text-blocks .text-block h6 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  section.hero .text-blocks .text-block h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
section.hero .text-blocks .text-block p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}
section.hero .text-blocks span.number {
  color: #fff;
  font-weight: 600;
  line-height: 150%;
  align-items: center;
  display: inline-flex;
}
section.hero .text-blocks .btm {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
section.hero .hero-dots {
  position: absolute;
  right: -130px;
  top: -60px;
}
@media only screen and (max-width: 991px) {
  section.hero .hero-dots {
    display: none;
  }
}
section.hero .text-btm h3, section.hero .text-btm p, section.hero .text {
  padding-left: 160px;
}
@media only screen and (max-width: 991px) {
  section.hero .text-btm h3, section.hero .text-btm p, section.hero .text {
    padding-left: 0;
  }
}
section.hero .text-btm p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #fff;
  margin-right: 70px;
}
@media only screen and (max-width: 991px) {
  section.hero .text-btm p {
    margin-bottom: 25px;
    font-size: 16px;
    margin-right: initial;
  }
}
section.hero .text-btm h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  section.hero .text-btm h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.arrow-btm-link {
  display: inline-flex;
}
.arrow-btm-link .arrow-btm {
  padding: 10px;
  border: 1px dashed #fff;
  display: inline-flex;
  border-radius: 100%;
}

section.tech {
  margin-top: 85px;
  margin-bottom: 115px;
}
@media only screen and (max-width: 991px) {
  section.tech {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
section.tech h2 {
  font-size: 48px;
  color: #393185;
  font-weight: 300;
  text-align: center;
  margin-bottom: 10px;
}
section.tech h2 span {
  color: #E51A4B;
  font-weight: 900;
}
@media only screen and (max-width: 991px) {
  section.tech h2 {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
section.tech p {
  font-size: 20px;
  color: #393185;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  section.tech p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
section.tech .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media only screen and (max-width: 991px) {
  section.tech .box {
    grid-template-columns: minmax(1px, 1fr);
    gap: 40px;
  }
}
section.tech .box .column h5 {
  font-size: 40px;
  color: #393185;
  margin-bottom: 80px;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  section.tech .box .column h5 {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
section.tech .box .column .item {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.tech .box .column .item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  section.tech .box .column .item {
    display: initial;
  }
}
section.tech .box .column .item .wrap {
  position: relative;
}
section.tech .box .column .item .wrap img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.tech .box .column .item .wrap img {
    max-width: 160px;
  }
}
section.tech .box .column .item .wrap0 {
  position: absolute;
  top: 150px;
  left: 165px;
}
@media only screen and (max-width: 991px) {
  section.tech .box .column .item .wrap0 {
    top: 135px;
    left: 140px;
  }
}
section.tech .box .column .item .wrap0 img {
  border-radius: 20px;
  border: 3px solid #fff;
}
@media only screen and (max-width: 991px) {
  section.tech .box .column .item .wrap0 img {
    max-width: 200px;
  }
}
section.tech .box .column .item .wrap::after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  left: 135px;
  top: -30px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.tech .box .column .item .wrap::after {
    width: 50%;
    height: 80%;
    top: -20px;
    left: 180px;
  }
}
section.tech .box .column .item .wrap1 {
  margin-top: 70px;
  margin-left: 35px;
}
section.tech .box .column .item .wrap1 img {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 20px;
}
section.tech .box .column > a:hover h3 {
  color: #fff;
}
section.tech .box .column .boxes {
  display: flex;
  align-items: center;
  border: 1px dashed rgba(136, 136, 136, 0.3);
  border-radius: 20px;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  section.tech .box .column .boxes {
    padding: 15px;
  }
}
section.tech .box .column .boxes:hover {
  background-color: #E51A4B;
}
section.tech .box .column .boxes:hover p {
  color: #fff;
}
section.tech .box .column .boxes .number01 {
  display: inline-flex;
  border-radius: 100%;
  border: 2px solid #E51A4B;
  padding: 10px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #E51A4B;
  font-weight: 700;
  margin-right: 20px;
  min-width: 30px;
  min-height: 30px;
}
section.tech .box .column .boxes .number01.active {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  section.tech .box .column .boxes .number01 {
    font-size: 18px;
    width: 20px;
    height: 20px;
    margin-right: 15px;
  }
}
section.tech .box .column .boxes h3 {
  font-size: 30px;
  color: #393185;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 120%;
}
section.tech .box .column .boxes h3.active {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  section.tech .box .column .boxes h3 {
    font-size: 20px;
  }
}
section.tech .box .column .boxes p {
  font-size: 16px;
  color: #888888;
  text-align: left;
  margin-bottom: 0;
}
section.tech .box .column .boxes p.active {
  color: #fff;
}
section.tech .box .column:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.high-tech {
  background-color: #F3F3F3;
  padding-top: 130px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 991px) {
  section.high-tech {
    padding-bottom: 40px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.high-tech {
    padding-top: 20px;
  }
}
section.high-tech .container .line {
  background-color: #E51A4B;
  height: 4px;
  width: 300px;
  margin-top: 25px;
  margin-bottom: 30px;
  border-radius: 20px;
}
section.high-tech .container p.heading {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container p.heading {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.high-tech .container p.heading {
    font-size: 20px;
  }
}
section.high-tech .container p.heading span {
  background-color: #E51A4B;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container p.heading span {
    padding: 3px 5px;
  }
}
section.high-tech .container .item {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section.high-tech .container .item {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
section.high-tech .container .item .one {
  margin-top: 80px;
}
section.high-tech .container .item .one img {
  max-width: 100px;
  object-fit: cover;
}
section.high-tech .container .item .two {
  margin-top: 50px;
}
section.high-tech .container .item .two img {
  max-width: 200px;
  object-fit: cover;
}
section.high-tech .container .item .three {
  z-index: 99999;
  position: relative;
}
section.high-tech .container .item .three img {
  max-width: 300px;
  object-fit: cover;
}
section.high-tech .container .item .three::after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  right: -305px;
  top: -150px;
  width: 273px;
  height: 273px;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .item .three::after {
    display: none;
  }
}
section.high-tech .container .item .four {
  margin-top: 150px;
}
section.high-tech .container .item .four img {
  max-width: 100px;
  object-fit: cover;
}
section.high-tech .container .item .five {
  margin-top: 150px;
}
section.high-tech .container .item .five img {
  max-width: 200px;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .item .pic {
    margin-top: 0;
  }
}
section.high-tech .container .item .pic img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: auto;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .item .pic img {
    max-width: initial;
  }
}
section.high-tech .container .icon {
  display: inline-flex;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .icon {
    flex-direction: column;
    gap: 0;
  }
}
section.high-tech .container .icon .wrap {
  display: inline-flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .icon .wrap {
    gap: 10px;
  }
}
section.high-tech .container .icon .wrap a {
  background-color: #E51A4B;
  padding: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .icon .wrap a {
    padding: 15px;
    max-width: 30px;
    margin-top: 10px;
  }
}
section.high-tech .container .icon .wrap a.arrow {
  background-color: #F3F3F3;
  border: 2px dashed #393185;
}
section.high-tech .container .icon .wrap a img {
  width: 100%;
  max-width: 30px;
}
section.high-tech .container .icon .text {
  display: flex;
  align-items: center;
}
section.high-tech .container .icon .text p {
  font-size: 18px;
  color: #888888;
  max-width: 600px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.high-tech .container .icon .text p {
    margin-top: 10px;
  }
}

section.references {
  background-color: #E51A4B;
}
section.references.blue-section {
  background-color: #393185;
}
section.references.blue-section .rectangle {
  background: #393185 !important;
}
section.references .container {
  padding-top: 85px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.references .container {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  section.references .container {
    padding-bottom: 20px;
  }
}
section.references .container h4 {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  section.references .container h4 {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
section.references .container h4 span {
  font-weight: 900;
}
section.references .container h5 {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.references .container h5 {
    margin-bottom: 20px;
  }
}
section.references .container .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.references .container .box {
    grid-template-columns: minmax(1px, 1fr);
    gap: 15px;
  }
}
section.references .container .info {
  text-align: center;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  section.references .container .info {
    margin-top: 0;
  }
}
section.references .container .info a {
  color: #fff;
  font-size: 16px;
}
section.references .container .info a:hover {
  text-decoration: underline;
}

.reference-item {
  position: relative;
}
.reference-item::after {
  content: "";
  background-image: url("../images/elipse.png");
  position: absolute;
  top: 0;
  pointer-events: none;
  width: 100%;
}
.reference-item .wrap {
  margin-top: 15px;
  position: relative;
}
.reference-item .wrap a {
  position: relative;
  width: 100%;
  z-index: 9;
}
.reference-item .wrap picture {
  width: 100%;
}
.reference-item .wrap picture img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .reference-item .wrap picture img {
    height: 100%;
  }
}
.reference-item .wrap .shadow-wrap {
  position: absolute;
  bottom: -60px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .reference-item .wrap .shadow-wrap {
    bottom: -80px;
  }
}
@media only screen and (max-width: 767px) {
  .reference-item .wrap .shadow-wrap {
    bottom: -60px;
  }
}
@media only screen and (max-width: 440px) {
  .reference-item .wrap .shadow-wrap {
    bottom: -40px;
  }
}
.reference-item .wrap .shadow-wrap img {
  width: 100%;
}
.reference-item p {
  color: #fff;
}
.reference-item .rectangle {
  background-color: #E51A4B;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 99999999;
  max-width: 225px;
  padding: 30px 30px 40px 35px;
}
@media only screen and (max-width: 767px) {
  .reference-item .rectangle {
    padding: 25px 30px;
    max-width: initial;
  }
}
@media only screen and (max-width: 440px) {
  .reference-item .rectangle {
    padding: 15px 10px;
    bottom: 15px;
  }
}
.reference-item .rectangle h6 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  max-width: 160px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .reference-item .rectangle h6 {
    font-size: 16px;
    max-width: initial;
  }
}
.reference-item .rectangle p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 210px;
}
@media only screen and (max-width: 767px) {
  .reference-item .rectangle p {
    font-size: 14px;
  }
}
.reference-item .text {
  display: flex;
  gap: 20px;
  padding-top: 40px;
}
@media only screen and (max-width: 991px) {
  .reference-item .text {
    padding-top: 30px;
  }
}
.reference-item .text p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.reference-item .wrap {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .reference-item .wrap {
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
  }
}
.reference-item .wrap .cylinder {
  margin-top: 5px;
}
.reference-item .wrap .cylinder .item {
  border: 1px solid white;
  border-radius: 20px;
  padding: 5px 15px;
  color: white;
  font-size: 15px;
  line-height: 140%;
  display: inline-flex;
}
.reference-item .paragraph p {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-top: 20px;
  max-width: 560px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .reference-item .paragraph p {
    max-width: initial;
    margin-bottom: 10px;
  }
}
.reference-item .arrow {
  display: flex;
  justify-content: end;
}
.reference-item .arrow .arrow-btm {
  display: inline-flex;
}
.reference-item .arrow .arrow-btm .arrow-link {
  padding: 10px;
  border: 1px solid #fff;
  display: inline-flex;
  border-radius: 100%;
}
.reference-item .line-vertical {
  position: absolute;
  top: 15px;
  left: -45px;
}
@media only screen and (max-width: 991px) {
  .reference-item .line-vertical {
    display: none;
  }
}
.reference-item .line-vertical img {
  height: 100%;
}
.reference-item.black h6, .reference-item.black p {
  color: #000;
}
.reference-item.black .rectangle h6, .reference-item.black .rectangle p {
  color: #fff;
}
.reference-item.black .cylinder .item {
  border: 1px solid #000;
  color: #000;
}
.reference-item.black .shadow-wrap {
  bottom: -35px;
}

section.positions {
  background-color: #fff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.positions {
    margin-bottom: 20px;
  }
}
section.positions .container .headline {
  text-align: center;
  margin-top: 85px;
}
@media only screen and (max-width: 991px) {
  section.positions .container .headline {
    margin-top: 30px;
  }
}
section.positions .container .headline h2 {
  font-size: 48px;
  font-weight: 400;
  color: #393185;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  section.positions .container .headline h2 {
    font-size: 35px;
    margin-bottom: 0;
  }
}
section.positions .container .headline h2 span {
  color: #E51A4B;
  font-weight: 800;
  white-space: nowrap;
}
section.positions .container .headline p {
  font-size: 20px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.positions .container .headline p {
    margin-bottom: 10px;
  }
}
section.positions .container .box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.positions .container .box {
    display: block;
  }
}
section.positions .container .box .item {
  background-color: #393185;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  section.positions .container .box .item {
    padding: 25px;
    height: initial;
    margin-top: 15px;
  }
}
section.positions .container .box .item .top {
  flex-grow: 1;
}
section.positions .container .box .item .top h2 {
  max-width: 280px;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.positions .container .box .item .top h2 {
    margin-bottom: 15px;
    max-width: initial;
    font-size: 25px;
  }
}
section.positions .container .box .item .top h2.wrap {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.positions .container .box .item .top h2.wrap {
    margin-bottom: 15px;
  }
}
section.positions .container .box .item .top ul {
  list-style-type: none;
  padding-bottom: 0;
  padding-left: 25px;
}
section.positions .container .box .item .top ul li {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  position: relative;
}
section.positions .container .box .item .top ul li .circle {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  position: absolute;
  left: -20px;
  top: 10px;
  background: #E51A4B;
}
@media only screen and (max-width: 767px) {
  section.positions .container .box .item .top ul li {
    font-size: 16px;
  }
}
section.positions .container .box .item .top ul li p {
  margin-bottom: 0;
}
section.positions .container .box .item .top ul li::marker {
  color: #E51A4B;
  font-size: 30px;
}
section.positions .container .box .item .back-text {
  position: absolute;
  top: 0;
  pointer-events: none;
}
section.positions .container .box .item .back-text h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  opacity: 0.1;
}
@media only screen and (max-width: 991px) {
  section.positions .container .box .item .back-text h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  section.positions .container .box .item .back-text h1 {
    font-size: 30px;
    margin-bottom: 0;
  }
}
section.positions .container .box .item .arrow .arrow-btm {
  display: inline-flex;
}
section.positions .container .box .item .arrow .arrow-btm .arrow-link {
  padding: 10px;
  border: 1px solid #fff;
  display: inline-flex;
  border-radius: 100%;
}
section.positions .container .box .item .date {
  display: flex;
  justify-content: space-between;
}
section.positions .container .box .item .date p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
}
section.positions .container .box .item:nth-of-type(3n+2) {
  background-color: #58327E;
}
section.positions .container .box .item:nth-of-type(3n+3) {
  background-color: #783175;
}
section.positions .container .position {
  margin-top: 25px;
  text-align: center;
}
section.positions .container .position a {
  color: #393185;
  font-size: 16px;
}
section.positions .container .position a:hover {
  text-decoration: underline;
}

section.partners {
  position: relative;
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  section.partners {
    padding-top: 0;
  }
}
section.partners .blue {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #393185;
  width: 50%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  section.partners .blue {
    display: none;
  }
}
section.partners .grey {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #F3F3F3;
  width: 50%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  section.partners .grey {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  section.partners .container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.partners .container .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.partners .container .wrap {
    grid-template-columns: minmax(1px, 1fr);
    padding-bottom: 0;
  }
}
section.partners .container .column {
  z-index: 9999;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column {
    background-color: #393185;
    padding-left: 15px;
    padding-right: 15px;
  }
}
section.partners .container .column .line {
  background-color: #E51A4B;
  height: 4px;
  width: 300px;
  border-radius: 20px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column .line {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
section.partners .container .column h3 {
  font-size: 40px;
  color: #fff;
  max-width: 430px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column h3 {
    max-width: 100%;
    font-size: 30px;
  }
}
section.partners .container .column h3.fix {
  color: #393185;
}
section.partners .container .column h3 span {
  background-color: #E51A4B;
  color: #393185;
  border-radius: 10px;
  padding: 0 10px;
  font-weight: 500;
  white-space: nowrap;
}
section.partners .container .column .pictures {
  display: grid;
  grid-template-columns: minmax(1px, 1fr);
  gap: 35px;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column .pictures {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.partners .container .column .pictures img {
  max-width: 100%;
  height: auto;
}
section.partners .container .column .pictures .pic {
  display: inline-flex;
  align-items: center;
}
section.partners .container .column p {
  margin-top: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  max-width: 520px;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column p {
    margin-bottom: 30px;
    max-width: initial;
  }
}
section.partners .container .column .box {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column .box {
    padding: 30px;
  }
}
section.partners .container .column .box .fill img {
  width: 100%;
  max-width: 140px;
}
section.partners .container .column .box .fill img.fix {
  max-width: 200px;
  position: relative;
}
section.partners .container .column .box p {
  margin-top: 20px;
  font-size: 18px;
  color: #888888;
  font-weight: 500;
  text-align: left;
  margin-bottom: 0;
}
section.partners .container .column .box:nth-of-type(1) {
  margin-bottom: 30px;
}
section.partners .container .column.right {
  width: 90%;
  margin-left: auto;
  top: 1300px;
  background-color: #F3F3F3;
}
@media only screen and (max-width: 991px) {
  section.partners .container .column.right {
    width: initial;
    margin-left: initial;
  }
}
section.partners .container .column.right h3 span {
  color: #fff;
}

section.map {
  position: relative;
  height: 900px;
}
@media only screen and (max-width: 991px) {
  section.map {
    height: 790px;
  }
}
section.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
section.map .container, section.map .row {
  height: 100%;
}

.block-contact-wrap {
  height: calc(100% - 200px);
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .block-contact-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.block-contact {
  background: #E51A4B;
  color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  height: 580px;
  width: 440px;
  margin-left: auto;
  padding: 70px;
}
@media only screen and (max-width: 1299px) {
  .block-contact {
    padding: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .block-contact {
    padding: 20px;
    height: initial;
    border-bottom-left-radius: initial;
    border-bottom-right-radius: initial;
    margin-left: 0;
  }
}
.block-contact h3 {
  color: #fff;
  text-transform: initial;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .block-contact h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
.block-contact h3 span {
  color: #fff;
  font-weight: 900;
}
.block-contact h6 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .block-contact h6 {
    font-size: 18px;
  }
}
.block-contact .address {
  display: flex;
  gap: 65px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .block-contact .address {
    display: block;
  }
}
.block-contact .address p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 0;
}
.block-contact .address .navigation {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .block-contact .address .navigation {
    margin-top: 10px;
  }
}
.block-contact .address .navigation p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
.block-contact .address .navigation .arrow .arrow-btm {
  display: inline-flex;
}
.block-contact .address .navigation .arrow .arrow-btm .arrow-link {
  padding: 10px;
  border: 1px dashed #fff;
  display: inline-flex;
  border-radius: 100%;
}
.block-contact .address .navigation .arrow .arrow-btm .arrow-link img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-45deg);
}
.block-contact .contact-info {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .block-contact .contact-info {
    margin-top: 10px;
  }
}
.block-contact .contact-info .item {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .block-contact .contact-info .item img {
    max-width: 20px;
  }
}
.block-contact .contact-info .item a {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 15px;
}
@media only screen and (max-width: 991px) {
  .block-contact .contact-info .item a {
    font-size: 20px;
  }
}
.block-contact .account--info {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .block-contact .account--info {
    margin-top: 20px;
  }
}
.block-contact .account--info p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}
.block-contact .info {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .block-contact .info {
    margin-top: 15px;
  }
}
.block-contact .info .wrap {
  display: flex;
  gap: 20px;
}
.block-contact .info .wrap p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .block-contact .info p {
    margin-bottom: 0;
  }
}

footer {
  background: #393185;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
footer .footer-btm .logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
footer .footer-btm .text {
  color: #888888;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-btm .text span {
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .text span {
    text-align: center;
    margin-right: 0;
  }
}
footer .footer-btm .website-by-wrap {
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .website-by-wrap {
    justify-content: center;
  }
}
footer .footer-btm .website-by-wrap a {
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .website-by-wrap {
    margin-top: 10px;
    text-align: center;
  }
}
footer .footer-btm .socials-footer ul {
  list-style-type: none;
  display: flex;
  gap: 15px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm .socials-footer ul {
    justify-content: center;
    padding-left: 0;
    margin-top: 10px;
  }
}
footer .footer-btm .socials-footer ul a {
  margin-top: 5px;
}
footer .footer-btm-wrap {
  display: flex;
  justify-content: space-between;
  color: #888888;
}
@media only screen and (max-width: 991px) {
  footer .footer-btm-wrap {
    flex-direction: column;
  }
}

section.reference-hero {
  background-image: url("../images/reference-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 960px;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  section.reference-hero {
    display: block;
    width: initial;
    height: initial;
    min-height: 900px;
  }
}
@media only screen and (max-width: 767px) {
  section.reference-hero {
    min-height: 700px;
  }
}
section.reference-hero .headline {
  position: absolute;
  top: 180px;
  padding: 70px 0 100px 150px;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: white;
  max-width: 1000px;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .headline {
    padding: 50px;
    top: 140px;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  section.reference-hero .headline {
    padding: 30px;
  }
}
section.reference-hero h1 {
  font-size: 100px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.reference-hero h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  section.reference-hero h1 {
    font-size: 35px;
  }
}
section.reference-hero h3 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 20px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.reference-hero h3 {
    font-size: 30px;
  }
}
section.reference-hero h3::before {
  content: "";
  background-image: url("../images/white-dots.svg");
  position: absolute;
  top: -40px;
  right: -190px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 1399px) {
  section.reference-hero h3::before {
    right: -60px;
  }
}
@media only screen and (max-width: 1199px) {
  section.reference-hero h3::before {
    display: none;
  }
}
section.reference-hero .info {
  display: flex;
  gap: 80px;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info {
    flex-direction: column;
    gap: 20px;
  }
}
section.reference-hero .info .wrap {
  width: 40%;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .wrap {
    width: 100%;
  }
}
section.reference-hero .info .wrap .line {
  background: #E51A4B;
  height: 3px;
  width: 430px;
  margin-top: 50px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .wrap .line {
    margin-top: 30px;
    width: initial;
  }
}
section.reference-hero .info .wrap h5 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .wrap h5 {
    margin-bottom: 20px;
  }
}
section.reference-hero .info .wrap p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}
section.reference-hero .info .viac {
  width: 50%;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .viac {
    width: 100%;
    margin-right: 0;
  }
}
section.reference-hero .info .viac .cylinder {
  margin-top: 35px;
  justify-content: flex-end;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .viac .cylinder {
    margin-top: 0;
    text-align: start;
    display: inline-flex;
    gap: 10px;
    justify-content: flex-start;
  }
}
section.reference-hero .info .viac .cylinder .item-wrap {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .viac .cylinder .item-wrap {
    justify-content: flex-start;
  }
}
section.reference-hero .info .viac .cylinder .item {
  border: 1px solid white;
  border-radius: 20px;
  padding: 5px 15px;
  color: white;
  font-size: 15px;
  line-height: 140%;
  display: inline-flex;
}
section.reference-hero .info .viac .cylinder .item p {
  margin-bottom: 0;
}
section.reference-hero .info .viac .btn-wrap {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .viac .btn-wrap {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
section.reference-hero .info .viac .btn-wrap a {
  pointer-events: all;
  background: #E51A4B;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  transition: 0.2s ease;
}
@media only screen and (max-width: 991px) {
  section.reference-hero .info .viac .btn-wrap a {
    font-size: 16px;
    padding: 14px 20px;
  }
}
section.reference-hero .info .viac .btn-wrap a:hover {
  color: #fff;
  background: #AC1437;
  transition: 0.2s ease;
}

section.main-content {
  margin-top: 90px;
  position: relative;
  margin-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  section.main-content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
section.main-content .container h2 {
  font-size: 48px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.main-content .container h2 {
    font-size: 35px;
    margin-bottom: 5px;
  }
}
section.main-content .container h2 span {
  color: #E51A4B;
  font-weight: 900;
}
section.main-content .container p {
  font-size: 20px;
  font-weight: 400;
  color: #393185;
  margin-bottom: 90px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.main-content .container p {
    margin-bottom: 20px;
  }
}
section.main-content .container .section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section {
    grid-template-columns: minmax(1px, 1fr);
    gap: 30px;
  }
}
section.main-content .container .section .item {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .pictures {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .item .pictures {
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.main-content .container .section .item .pictures img {
  display: block;
}
section.main-content .container .section .item .line-vertical {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1299px) {
  section.main-content .container .section .item .line-vertical {
    right: -20px;
  }
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .line-vertical {
    display: none;
  }
}
section.main-content .container .section .item .line-vertical img {
  height: 100%;
}
section.main-content .container .section .item .pic img {
  border-radius: 20px;
  border: 4px solid #fff;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .pic img {
    width: 100%;
    border: none;
  }
}
section.main-content .container .section .item .box {
  display: flex;
  gap: 50px;
  margin-bottom: 90px;
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .box {
    margin-bottom: 0;
    margin-left: 0;
  }
}
section.main-content .container .section .item .box:nth-of-type(1)::after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  left: 0;
  top: -110px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .box:nth-of-type(1)::after {
    display: none;
  }
}
section.main-content .container .section .item .box:nth-of-type(2) {
  display: flex;
  position: absolute;
  gap: 100px;
  align-items: end;
  top: 150px;
  left: 50px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .box:nth-of-type(2) {
    display: grid;
    grid-template-columns: minmax(1px, 1fr);
    gap: 10px;
    position: relative;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .item .box:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.main-content .container .section .item .box:nth-of-type(3) {
  margin-left: 150px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .box:nth-of-type(3) {
    display: grid;
    grid-template-columns: minmax(1px, 1fr);
    margin-left: 0;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .item .box:nth-of-type(3) {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.main-content .container .section .item .box:nth-of-type(3) .pic:nth-of-type(2) {
  position: absolute;
  left: 310px;
  top: 550px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .box:nth-of-type(3) .pic:nth-of-type(2) {
    position: relative;
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .main-boxer {
    display: grid;
    grid-template-columns: minmax(1px, 1fr);
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .item .main-boxer {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.main-content .container .section .item .used-tech {
  margin-top: 140px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .used-tech {
    margin-top: 40px;
  }
}
section.main-content .container .section .item .used-tech h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 50px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .used-tech h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
section.main-content .container .section .item .used-tech h2 span {
  color: #fff;
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .item .used-tech h2 span {
    padding: 0 5px;
  }
}
section.main-content .container .section .item .used-tech .boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .used-tech .boxes {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .item .used-tech .boxes {
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.main-content .container .section .item .used-tech .boxes .grey-box {
  display: flex;
  height: 100%;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .used-tech .boxes .grey-box {
    gap: 10px;
  }
}
section.main-content .container .section .item .used-tech .boxes .grey-box .wrap {
  background-color: #F3F3F3;
  padding: 30px;
  border-radius: 20px;
}
section.main-content .container .section .item .used-tech .boxes .grey-box .wrap .picture {
  margin-bottom: 15px;
}
section.main-content .container .section .item .used-tech .boxes .grey-box .wrap h6 {
  color: #393185;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
section.main-content .container .section .item .used-tech .boxes .grey-box .wrap p {
  color: rgba(136, 136, 136, 0.5333333333);
  font-size: 16px;
  font-weight: 400;
}
section.main-content .container .section .item.gap {
  position: initial;
}
section.main-content .container .section .item p {
  color: #888888;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}
section.main-content .container .section .item h6 {
  font-weight: 700;
  font-size: 16px;
  color: #393185;
  margin-bottom: 20px;
  margin-top: 30px;
}
section.main-content .container .section .item .cylinder {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1299px) {
  section.main-content .container .section .item .cylinder {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .cylinder {
    margin-bottom: 20px;
  }
}
section.main-content .container .section .item .cylinder .item {
  border: 1px solid #888888;
  border-radius: 20px;
  padding: 5px 15px;
  color: #888888;
  font-size: 15px;
  line-height: 140%;
  display: inline-flex;
}
section.main-content .container .section .item .text {
  background: #F3F3F3;
  border-radius: 20px;
  margin-bottom: 30px;
}
section.main-content .container .section .item .text p {
  font-size: 16px;
  font-weight: 600;
  color: #888888;
  padding: 30px;
}
section.main-content .container .section .item .red-box {
  margin-left: 60px;
  margin-top: 130px;
}
@media only screen and (max-width: 1299px) {
  section.main-content .container .section .item .red-box {
    background-color: #E51A4B;
    padding: 30px;
    margin-left: 0;
    margin-top: 0;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .red-box .wrap-top {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 575px) {
  section.main-content .container .section .item .red-box .wrap-top {
    display: initial;
  }
}
section.main-content .container .section .item .red-box .wrap-top h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1299px) {
  section.main-content .container .section .item .red-box .wrap-top h3 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .red-box .wrap-top h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  section.main-content .container .section .item .red-box .wrap-top h3 {
    margin-bottom: 20px;
  }
}
section.main-content .container .section .item .red-box .wrap-top h3 span {
  color: #E51A4B;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .red-box .wrap-top h3 span {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 575px) {
  section.main-content .container .section .item .red-box .wrap-top .item {
    margin-bottom: 10px;
  }
}
section.main-content .container .section .item .red-box p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  margin-top: 30px;
  max-width: 480px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .item .red-box p {
    max-width: 100%;
    margin-top: 0;
  }
}
section.main-content .container .section .gap::after {
  background: #E51A4B;
  content: "";
  position: absolute;
  top: 710px;
  right: 0;
  width: calc(50% - 30px);
  height: 420px;
  z-index: -1;
  pointer-events: none;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1299px) {
  section.main-content .container .section .gap::after {
    display: none;
  }
}
section.main-content .container .section .market {
  margin-top: 150px;
}
@media only screen and (max-width: 1299px) {
  section.main-content .container .section .market {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .market {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .market {
    margin-top: 30px;
  }
}
section.main-content .container .section .market h4 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  section.main-content .container .section .market h4 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .market h4 {
    margin-bottom: 20px;
  }
}
section.main-content .container .section .market h4 span {
  color: #fff;
  background-color: #E51A4B;
  padding: 0 10px;
  margin-bottom: 0;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
}
section.main-content .container .section .market p {
  font-size: 18px;
  font-weight: 400;
  color: #888888;
  margin-bottom: 10px;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  section.main-content .container .section .market p {
    margin-top: 15px;
  }
}
section.main-content .container .section .market .link p {
  color: #D9001C;
  font-size: 18px;
  font-weight: 400;
}
section.main-content .container .section .market .item {
  margin-bottom: 25px;
}

section.photos {
  margin-bottom: 170px;
}
@media only screen and (max-width: 991px) {
  section.photos {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  section.photos {
    margin-bottom: 40px;
  }
}
section.photos h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 50px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.photos h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
section.photos h2 span {
  color: #fff;
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 600;
  white-space: nowrap;
}
section.photos .photo-slider .slick-track {
  padding-bottom: 35px;
}
section.photos .photo-slider .item {
  position: relative;
  margin: 0 10px;
}
section.photos .photo-slider .item .shadow {
  position: absolute;
  bottom: -30px;
  z-index: -1;
  width: 100%;
  display: flex;
  justify-content: center;
}
section.photos .photo-slider .item > img {
  border-radius: 20px;
  height: 210px;
  width: 100%;
  object-fit: cover;
}
section.photos .btn-main-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-right: 85px;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  section.photos .btn-main-wrap {
    margin-right: 50px;
  }
}
section.photos .btn-main-wrap .hero-arrow {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
section.photos .btn-main-wrap .hero-arrow-left, section.photos .btn-main-wrap .hero-arrow-right {
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
section.photos .btn-main-wrap .hero-arrow-left {
  left: 0;
}
section.photos .btn-main-wrap .hero-arrow-right {
  right: 0;
}
section.photos .btn-main-wrap .vertical-line {
  width: 2px;
  background-color: #D9D9D9;
  border-radius: 20px;
  height: 30px;
}

section.contact {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.contact {
    padding-top: 110px;
    padding-bottom: 50px;
  }
}
section.contact h1 {
  font-size: 50px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.contact h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
section.contact h1 span {
  color: #E51A4B;
  border-radius: 10px;
  font-weight: 900;
}
section.contact h5 {
  color: #393185;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  section.contact h5 {
    margin-bottom: 20px;
  }
}
section.contact .box {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  section.contact .box {
    grid-template-columns: minmax(1px, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box {
    gap: 20px;
  }
}
section.contact .box .item {
  display: flex;
  justify-content: flex-end;
  flex-direction: column-reverse;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item {
    justify-content: center;
    flex-direction: initial;
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box .item {
    display: block;
  }
}
section.contact .box .item .left-column {
  position: relative;
}
section.contact .box .item .left-column .line {
  position: absolute;
  top: 0;
  left: 290px;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .line {
    display: none;
  }
}
section.contact .box .item .left-column h6 {
  color: #393185;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column h6 {
    text-align: center;
  }
}
section.contact .box .item .left-column .address {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .left-column .address {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .address {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
section.contact .box .item .left-column .address p {
  color: #393185;
  font-size: 18px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .address p {
    text-align: center;
  }
}
section.contact .box .item .left-column .address .navigation-button {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .left-column .address .navigation-button {
    margin-top: 10px;
  }
}
section.contact .box .item .left-column .address .navigation-button p {
  color: #E51A4B;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 600;
}
section.contact .box .item .left-column .address .navigation-button .arrow .arrow-btm {
  display: inline-flex;
}
section.contact .box .item .left-column .address .navigation-button .arrow .arrow-btm .arrow-link {
  padding: 10px;
  border: 1px dashed #E51A4B;
  display: inline-flex;
  border-radius: 100%;
}
section.contact .box .item .left-column .address .navigation-button .arrow .arrow-btm .arrow-link img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-45deg);
}
section.contact .box .item .left-column .icon {
  display: inline-flex;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  section.contact .box .item .left-column .icon {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .left-column .icon {
    gap: 10px;
    align-items: center;
  }
}
section.contact .box .item .left-column .icon .wrap {
  display: inline-flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .left-column .icon .wrap {
    gap: 10px;
  }
}
section.contact .box .item .left-column .icon .wrap a {
  background-color: #E51A4B;
  padding: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .left-column .icon .wrap a {
    padding: 15px;
    max-width: 30px;
    margin-top: 10px;
  }
}
section.contact .box .item .left-column .icon .wrap a.arrow {
  background-color: #fff;
  border: 2px dashed #393185;
}
section.contact .box .item .left-column .text {
  display: flex;
  align-items: center;
}
section.contact .box .item .left-column .text p {
  font-size: 18px;
  color: #888888;
  max-width: 600px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .left-column .text p {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .text p {
    text-align: center;
    max-width: initial;
  }
}
section.contact .box .item .left-column .account-info {
  margin-top: 50px;
  position: relative;
  display: flex;
  gap: 45px;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .account-info {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
  }
}
section.contact .box .item .left-column .account-info .line {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .account-info .line {
    display: none;
  }
}
section.contact .box .item .left-column .account-info p {
  font-weight: 400;
  font-size: 16px;
  color: #393185;
  margin-bottom: 0;
  margin-left: 50px;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .account-info p {
    margin-left: 0;
    text-align: center;
  }
}
section.contact .box .item .left-column .account-info p.fix {
  margin-left: 20px;
}
section.contact .box .item .left-column .account-info .info {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .left-column .account-info .info {
    margin-top: 10px;
  }
}
section.contact .box .item .left-column .account-info .info .wrap {
  display: flex;
}
section.contact .box .item .left-column .account-info .info .wrap p {
  font-weight: 400;
  font-size: 16px;
  color: #393185;
  margin-bottom: 0;
}
section.contact .box .item .right-column {
  margin-top: 30px;
  margin-left: 25px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column {
    margin-top: 0;
    margin-left: 0;
    display: block;
  }
}
section.contact .box .item .right-column img {
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column img {
    width: 100%;
  }
}
section.contact .box .item .right-column .pictures {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures {
    margin-bottom: 30px;
  }
}
section.contact .box .item .right-column .pictures .pic-wrap {
  display: flex;
  right: 0;
  gap: 30px;
  position: absolute;
  top: 150px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures .pic-wrap {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .right-column .pictures .pic-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.contact .box .item .right-column .pictures .pic-wrap .wrap:first-of-type {
  position: absolute;
  top: -150px;
  z-index: -1;
  left: -30px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap:first-of-type {
    position: relative;
    top: initial;
    z-index: initial;
    left: initial;
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap:last-of-type {
    grid-column: span 2;
    display: flex;
    justify-content: center;
  }
}
section.contact .box .item .right-column .pictures .pic-wrap .wrap:last-of-type img {
  border: 4px solid #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap:last-of-type img {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap:last-of-type img {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap {
    border: none;
  }
}
section.contact .box .item .right-column .pictures .pic-wrap .wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  height: auto;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap img {
    width: 100%;
  }
}
section.contact .box .item .right-column .pictures .pic-wrap .wrap.small {
  margin-top: 120px;
  border: none;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pictures .pic-wrap .wrap.small {
    margin-top: 0;
  }
}
section.contact .box .item .right-column .pic-wrap::after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  top: -180px;
  right: 60px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.contact .box .item .right-column .pic-wrap::after {
    display: none;
  }
}
section.contact .management-box {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box {
    grid-template-columns: minmax(1px, 1fr);
    gap: 20px;
  }
}
section.contact .management-box .item .red-line {
  background: #E51A4B;
  height: 3px;
  width: 300px;
  margin-top: 100px;
  margin-bottom: 30px;
  border-radius: 40px;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item .red-line {
    display: none;
  }
}
section.contact .management-box .item h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 65px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
}
section.contact .management-box .item h2 span {
  color: #fff;
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 0 10px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  section.contact .management-box .item h2 span {
    padding: 0 5px;
  }
}
section.contact .management-box .item .pics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media only screen and (max-width: 767px) {
  section.contact .management-box .item .pics {
    grid-template-columns: minmax(1px, 1fr);
    gap: 20px;
  }
}
section.contact .management-box .item .pics .line {
  position: absolute;
  top: 0;
  right: -40px;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item .pics .line {
    display: none;
  }
}
section.contact .management-box .item .pics .pic-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.contact .management-box .item .pics .pic-wrap .item img {
  border-radius: 20px;
}
section.contact .management-box .item .pics .pic-wrap .text-info h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #393185;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  section.contact .management-box .item .pics .pic-wrap .text-info h4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
section.contact .management-box .item .pics .pic-wrap .text-info p {
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  text-align: center;
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  section.contact .management-box .item .pics .pic-wrap .text-info p {
    margin-bottom: 0;
  }
}
section.contact .management-box .item .pics .pic-wrap .button {
  display: inline-flex;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  section.contact .management-box .item .pics .pic-wrap .button {
    margin-top: 15px;
  }
}
section.contact .management-box .item .text-wrap {
  margin-top: 250px;
  margin-left: 60px;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item .text-wrap {
    margin-top: 0;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
}
section.contact .management-box .item .text-wrap p {
  font-size: 16px;
  font-weight: 400;
  max-width: 400px;
  color: #888888;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item .text-wrap p {
    text-align: center;
    margin-bottom: 15px;
  }
}
section.contact .management-box .item .btn-wrap {
  display: flex;
  justify-content: flex-start;
  margin-left: 60px;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item .btn-wrap {
    justify-content: center;
    margin-left: 0;
  }
}
section.contact .management-box .item .btn-wrap a {
  pointer-events: all;
  background: #E51A4B;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  transition: 0.2s ease;
}
@media only screen and (max-width: 991px) {
  section.contact .management-box .item .btn-wrap a {
    font-size: 16px;
    padding: 14px 20px;
  }
}
section.contact .management-box .item .btn-wrap a:hover {
  color: #fff;
  background: #AC1437;
  transition: 0.2s ease;
}

section.career {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.career {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
section.career h1 {
  font-size: 50px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.career h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
section.career h1 span {
  color: #E51A4B;
  border-radius: 10px;
  font-weight: 900;
}
section.career h5 {
  color: #393185;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  section.career h5 {
    margin-bottom: 20px;
  }
}
section.career .box {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  section.career .box {
    grid-template-columns: minmax(1px, 1fr);
    gap: 0;
  }
}
section.career .box .item {
  position: relative;
}
section.career .box .item .line {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1199px) {
  section.career .box .item .line {
    right: -20px;
  }
}
@media only screen and (max-width: 991px) {
  section.career .box .item .line {
    display: none;
  }
}
section.career .box .item .left-column {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column {
    margin-top: 0;
    margin-left: 0;
    display: block;
  }
}
section.career .box .item .left-column img {
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column img {
    width: 100%;
  }
}
section.career .box .item .left-column .pictures {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures {
    margin-bottom: 30px;
  }
}
section.career .box .item .left-column .pictures .pic-wrap {
  display: flex;
  position: absolute;
  gap: 30px;
  top: 150px;
}
@media only screen and (max-width: 1299px) {
  section.career .box .item .left-column .pictures .pic-wrap {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.career .box .item .left-column .pictures .pic-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap:first-of-type {
  position: absolute;
  top: -150px;
  z-index: -1;
  left: -30px;
}
@media only screen and (max-width: 1299px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:first-of-type {
    left: 0;
  }
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:first-of-type {
    position: relative;
    top: initial;
    z-index: initial;
    left: initial;
  }
}
@media only screen and (max-width: 767px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) {
    grid-column: span 2;
    display: flex;
    justify-content: center;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) img {
  border: 4px solid #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) img {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) img {
    width: 50%;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(4) {
  position: absolute;
  left: 70px;
  bottom: -230px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(4) {
    position: relative;
    z-index: initial;
    left: initial;
    bottom: initial;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) {
  position: absolute;
  bottom: -280px;
  left: 220px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) {
    position: relative;
    z-index: initial;
    left: initial;
    bottom: initial;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) img {
  border: 4px solid #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap:nth-of-type(5) img {
    border: none;
  }
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap {
    border: none;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  height: auto;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap img {
    width: 100%;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap.small {
  border: none;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap.small {
    margin-top: 0;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap.small img {
  border: 4px solid #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap.small img {
    border: none;
  }
}
section.career .box .item .left-column .pictures .pic-wrap .wrap.item {
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pictures .pic-wrap .wrap.item {
    margin-top: 0;
  }
}
section.career .box .item .left-column .pic-wrap::after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  top: -180px;
  right: 60px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .left-column .pic-wrap::after {
    display: none;
  }
}
section.career .box .item .right-column .text-wrap p:first-of-type {
  color: #E51A4B;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
section.career .box .item .right-column .text-wrap p:nth-of-type(2) {
  color: #888888;
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .right-column .text-wrap p:nth-of-type(2) {
    margin-bottom: 30px;
  }
}
section.career .box .item .right-column .red-line {
  background: #E51A4B;
  height: 3px;
  width: 300px;
  margin-top: 65px;
  margin-bottom: 40px;
  border-radius: 40px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .right-column .red-line {
    display: none;
  }
}
section.career .box .item .right-column h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 40px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .right-column h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.career .box .item .right-column h2 {
    margin-bottom: 15px;
  }
}
section.career .box .item .right-column h2 span {
  color: #fff;
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 0 10px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  section.career .box .item .right-column h2 span {
    padding: 0 5px;
  }
}
section.career .box .item .right-column .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .right-column .wrap {
    gap: 15px;
  }
}
section.career .box .item .right-column .wrap .text {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .right-column .wrap .text {
    justify-content: center;
    gap: 10px;
  }
}
section.career .box .item .right-column .wrap .text .number01 {
  display: inline-flex;
  border-radius: 100%;
  border: 2px solid #E51A4B;
  padding: 10px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #E51A4B;
  font-weight: 700;
  min-width: 30px;
  min-height: 30px;
}
section.career .box .item .right-column .wrap .text p {
  color: #393185;
  font-size: 24px;
  margin-bottom: 0;
  line-height: 30px;
}
@media only screen and (max-width: 991px) {
  section.career .box .item .right-column .wrap .text p {
    font-size: 20px;
    line-height: 25px;
  }
}
section.career .box .item .right-column .wrap .text p span {
  font-weight: 700;
}

section.free-positions {
  background-color: #F3F3F3;
  padding-top: 90px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.free-positions {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  section.free-positions {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
section.free-positions .headline-wrap h2 {
  font-size: 50px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.free-positions .headline-wrap h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
section.free-positions .headline-wrap h2 span {
  color: #E51A4B;
  font-weight: 900;
}
section.free-positions .headline-wrap p {
  color: #393185;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  margin-bottom: 45px;
}
@media only screen and (max-width: 991px) {
  section.free-positions .headline-wrap p {
    margin-bottom: 30px;
  }
}
section.free-positions .red-boxes .box {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  section.free-positions .red-boxes .box {
    flex-direction: column;
    gap: 5px;
  }
}
section.free-positions .red-boxes .box h3 {
  color: #E51A4B;
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.free-positions .red-boxes .box h3 {
    font-size: 25px;
  }
}
section.free-positions .red-boxes .box h6 {
  color: #393185;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
section.free-positions .red-boxes .box-wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
}
section.free-positions .red-boxes .box-wrap p {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
}
section.free-positions .red-boxes .box-wrap .arrow .arrow-btm {
  display: inline-flex;
}
section.free-positions .red-boxes .box-wrap .arrow .arrow-btm .arrow-link {
  padding: 10px;
  border: 1px solid #E51A4B;
  display: inline-flex;
  border-radius: 100%;
  background-color: #E51A4B;
}
section.free-positions .red-boxes .box-wrap .arrow .arrow-btm .arrow-link:hover {
  background-color: #AC1437;
  transition: 0.2s ease;
}
section.free-positions .red-boxes .grey-arrow {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.free-positions .red-boxes .grey-arrow {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
section.free-positions .red-boxes .grey-arrow img {
  width: 100%;
  height: 8px;
}

section.blue {
  background-color: #393185;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.blue {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
section.blue .blue-wrap {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media only screen and (max-width: 991px) {
  section.blue .blue-wrap {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  section.blue .blue-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
section.blue .blue-wrap .headline-wrap .line {
  background-color: #E51A4B;
  height: 4px;
  width: 300px;
  margin-bottom: 30px;
  border-radius: 20px;
}
section.blue .blue-wrap .headline-wrap h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  max-width: 600px;
  line-height: 150%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.blue .blue-wrap .headline-wrap h2 {
    font-size: 30px;
  }
}
section.blue .blue-wrap .headline-wrap h2 span {
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 0 20px;
}
section.blue .blue-wrap .icon .wrap {
  display: inline-flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.blue .blue-wrap .icon .wrap {
    gap: 10px;
  }
}
section.blue .blue-wrap .icon .wrap a {
  background-color: #E51A4B;
  padding: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.blue .blue-wrap .icon .wrap a {
    padding: 15px;
    max-width: 30px;
    margin-top: 10px;
  }
}
section.blue .blue-wrap .icon .wrap a.arrow {
  background-color: #393185;
  border: 2px dashed #fff;
}
section.blue .blue-wrap .icon .wrap a img {
  width: 100%;
  max-width: 30px;
}

section.career-detail {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.career-detail {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.career-detail {
    margin-bottom: 10px;
  }
}
section.career-detail h1 {
  font-size: 50px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.career-detail h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
section.career-detail h1 span {
  color: #E51A4B;
  border-radius: 10px;
  font-weight: 900;
}
section.career-detail h5 {
  color: #393185;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  section.career-detail h5 {
    margin-bottom: 20px;
  }
}
section.career-detail .box {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 80px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box {
    grid-template-columns: minmax(1px, 1fr);
    gap: 0;
  }
}
section.career-detail .box .item {
  position: relative;
}
section.career-detail .box .item .line {
  position: absolute;
  top: 0;
  right: -35px;
}
@media only screen and (max-width: 1199px) {
  section.career-detail .box .item .line {
    right: -20px;
  }
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .line {
    display: none;
  }
}
section.career-detail .box .item .line img {
  height: 1327px;
}
section.career-detail .box .item .left-column {
  padding-right: 10px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
section.career-detail .box .item .left-column img {
  border-radius: 20px;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column img {
    width: 100%;
  }
}
section.career-detail .box .item .left-column .pictures {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .pictures {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .left-column .pictures {
    margin-bottom: 15px;
  }
}
section.career-detail .box .item .left-column .pictures .wrap {
  display: flex;
  justify-content: end;
}
section.career-detail .box .item .left-column .pictures::after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  top: 70px;
  left: 0;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .pictures::after {
    display: none;
  }
}
section.career-detail .box .item .left-column .item-wrap {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .item-wrap {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .left-column .item-wrap {
    gap: 10px;
  }
}
section.career-detail .box .item .left-column .item-wrap .vector {
  display: flex;
  gap: 15px;
  align-items: center;
}
section.career-detail .box .item .left-column .item-wrap .vector img {
  width: 100%;
  max-width: 22px;
  border-radius: 0;
}
section.career-detail .box .item .left-column .item-wrap .vector p {
  font-size: 18px;
  color: #888888;
  font-weight: 400;
  margin-bottom: 0;
}
section.career-detail .box .item .left-column .career-line {
  background-color: #E51A4B;
  height: 3px;
  width: 300px;
  margin-bottom: 40px;
  border-radius: 20px;
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .career-line {
    margin-bottom: 20px;
  }
}
section.career-detail .box .item .left-column h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 40px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
section.career-detail .box .item .left-column h2 span {
  color: #fff;
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .left-column h2 span {
    padding: 0 5px;
  }
}
section.career-detail .box .item .left-column .input-wrap {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .left-column .input-wrap {
    margin-bottom: 10px;
  }
}
section.career-detail .box .item .left-column label {
  color: #888888;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .left-column label {
    margin-bottom: 5px;
  }
}
section.career-detail .box .item .left-column label span {
  color: #E51A4B;
}
section.career-detail .box .item .left-column input {
  border: none;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
section.career-detail .box .item .left-column input:focus {
  outline: none;
}
section.career-detail .box .item .left-column input[type=text], section.career-detail .box .item .left-column input[type=email] {
  background-color: #F3F3F3;
  color: #7d818d;
  font-weight: 300;
  font-size: 20px;
  border-radius: 5px;
  min-width: 420px;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 535px) {
  section.career-detail .box .item .left-column input[type=text], section.career-detail .box .item .left-column input[type=email] {
    min-width: 350px;
  }
}
@media only screen and (max-width: 440px) {
  section.career-detail .box .item .left-column input[type=text], section.career-detail .box .item .left-column input[type=email] {
    min-width: 280px;
  }
}
section.career-detail .box .item .left-column .biography {
  margin-top: 25px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .biography {
    margin-bottom: 30px;
    margin-top: 10px;
  }
}
section.career-detail .box .item .left-column .biography h4 {
  color: #393185;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .biography h4 {
    text-align: center;
    margin-bottom: 15px;
  }
}
section.career-detail .box .item .left-column .biography .dropzone {
  border: 2px dashed #888;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s;
  display: flex;
  gap: 15px;
  padding: 15px 100px 15px 20px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .biography .dropzone {
    padding: 10px;
    margin-bottom: 15px;
  }
}
section.career-detail .box .item .left-column .biography .dropzone:hover,
section.career-detail .box .item .left-column .biography .dropzone.dragover {
  border-color: #e60050;
}
section.career-detail .box .item .left-column .biography .img-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 5px;
}
section.career-detail .box .item .left-column .biography .img-wrap img {
  height: 18px;
  width: 15px;
  min-width: 15px;
  min-height: 18px;
  max-width: 22px;
  border-radius: 0;
}
section.career-detail .box .item .left-column .biography p {
  font-size: 18px;
  color: #888888;
  margin-bottom: 0;
}
section.career-detail .box .item .left-column .biography p span {
  color: #E51A4B;
}
section.career-detail .box .item .left-column .biography small {
  font-size: 14px;
  color: #888888;
}
section.career-detail .box .item .left-column .biography .btn-wrap {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .biography .btn-wrap {
    justify-content: center;
  }
}
section.career-detail .box .item .left-column .biography .btn-wrap button {
  pointer-events: all;
  color: #fff;
  background-color: #E51A4B;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 15px 30px;
  transition: 0.2s ease;
  display: flex;
  gap: 10px;
  align-items: center;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .left-column .biography .btn-wrap button {
    font-size: 16px;
    padding: 14px 20px;
  }
}
section.career-detail .box .item .left-column .biography .btn-wrap button:hover {
  color: #fff;
  background: #AC1437;
  transition: 0.2s ease;
}
section.career-detail .box .item .left-column .biography .btn-wrap button img {
  border-radius: 0;
  height: 20px;
  width: 100%;
  max-width: 20px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .right-column .headline {
    display: flex;
    flex-direction: column;
  }
}
section.career-detail .box .item .right-column .headline h2 {
  color: #E51A4B;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .right-column .headline h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .right-column .headline h2 {
    font-size: 25px;
  }
}
section.career-detail .box .item .right-column .headline p {
  color: #888888;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .right-column .headline p {
    margin-bottom: 20px;
  }
}
section.career-detail .box .item .right-column .headline .career-line {
  background-color: #E51A4B;
  height: 4px;
  width: 300px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .right-column .headline .career-line {
    margin-bottom: 20px;
  }
}
section.career-detail .box .item .right-column .text-wrap {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.career-detail .box .item .right-column .text-wrap {
    margin-bottom: 20px;
  }
}
section.career-detail .box .item .right-column .text-wrap h4 {
  color: #393185;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  section.career-detail .box .item .right-column .text-wrap h4 {
    margin-bottom: 10px;
  }
}
section.career-detail .box .item .right-column .text-wrap ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 5px;
}
section.career-detail .box .item .right-column .text-wrap li {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
}
section.career-detail .box .item .right-column .text-wrap p {
  margin-bottom: 0;
}
section.career-detail .box .item .right-column .text-wrap li::marker {
  color: #E51A4B;
}

section.work {
  position: relative;
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  section.work {
    padding-top: 0;
  }
}
section.work .grey {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F3F3F3;
  width: 50%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  section.work .grey {
    display: none;
  }
}
section.work .blue {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #393185;
  width: 50%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  section.work .blue {
    display: none;
  }
}
section.work .section-wrap {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.work .section-wrap {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
section.work .work-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap {
    grid-template-columns: minmax(1px, 1fr);
    gap: 0;
  }
}
section.work .work-wrap .left-wrap {
  z-index: 99999;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .left-wrap {
    background-color: #F3F3F3;
    padding: 40px 15px;
  }
}
@media only screen and (max-width: 767px) {
  section.work .work-wrap .left-wrap {
    padding: 25px 15px;
  }
}
section.work .work-wrap .left-wrap .red-line {
  background: #E51A4B;
  height: 3px;
  width: 300px;
  margin-bottom: 40px;
  border-radius: 40px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .left-wrap .red-line {
    display: none;
  }
}
section.work .work-wrap .left-wrap h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin-bottom: 40px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .left-wrap h2 {
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  section.work .work-wrap .left-wrap h2 {
    margin-bottom: 15px;
  }
}
section.work .work-wrap .left-wrap h2 span {
  color: #fff;
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 0 10px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  section.work .work-wrap .left-wrap h2 span {
    padding: 0 5px;
  }
}
section.work .work-wrap .left-wrap .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .left-wrap .wrap {
    gap: 15px;
  }
}
section.work .work-wrap .left-wrap .wrap .text {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .left-wrap .wrap .text {
    justify-content: center;
    gap: 10px;
  }
}
section.work .work-wrap .left-wrap .wrap .text .number01 {
  display: inline-flex;
  border-radius: 100%;
  border: 2px solid #E51A4B;
  padding: 10px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #E51A4B;
  font-weight: 700;
  min-width: 30px;
  min-height: 30px;
}
@media only screen and (max-width: 767px) {
  section.work .work-wrap .left-wrap .wrap .text .number01 {
    font-size: 18px;
    padding: 5px;
  }
}
section.work .work-wrap .left-wrap .wrap .text p {
  color: #393185;
  font-size: 24px;
  margin-bottom: 0;
  line-height: 30px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .left-wrap .wrap .text p {
    font-size: 18px;
    line-height: 25px;
  }
}
section.work .work-wrap .left-wrap .wrap .text p span {
  font-weight: 700;
}
section.work .work-wrap .right-wrap {
  z-index: 9999;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .right-wrap {
    background-color: #393185;
    padding: 40px 15px;
  }
}
@media only screen and (max-width: 767px) {
  section.work .work-wrap .right-wrap {
    padding: 25px 15px;
  }
}
section.work .work-wrap .right-wrap .headline-wrap {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .right-wrap .headline-wrap {
    margin-bottom: 30px;
  }
}
section.work .work-wrap .right-wrap .headline-wrap .line {
  background-color: #E51A4B;
  height: 3px;
  width: 300px;
  margin-bottom: 30px;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .right-wrap .headline-wrap .line {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
section.work .work-wrap .right-wrap .headline-wrap h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  max-width: 600px;
  line-height: 150%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .right-wrap .headline-wrap h2 {
    font-size: 25px;
  }
}
section.work .work-wrap .right-wrap .headline-wrap h2 span {
  background-color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
}
section.work .work-wrap .right-wrap .icon .wrap {
  display: inline-flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .right-wrap .icon .wrap {
    gap: 10px;
  }
}
section.work .work-wrap .right-wrap .icon .wrap a {
  background-color: #E51A4B;
  padding: 35px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.work .work-wrap .right-wrap .icon .wrap a {
    padding: 15px;
    max-width: 30px;
  }
}
section.work .work-wrap .right-wrap .icon .wrap a.arrow {
  background-color: #393185;
  border: 2px dashed #fff;
}
section.work .work-wrap .right-wrap .icon .wrap a img {
  width: 100%;
  max-width: 30px;
}

.subpage-heading {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .subpage-heading {
    margin-bottom: 25px;
  }
}
.subpage-heading h1, .subpage-heading h2 {
  font-size: 48px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .subpage-heading h1, .subpage-heading h2 {
    font-size: 32px;
  }
}
.subpage-heading h1 span, .subpage-heading h2 span {
  color: #E51A4B;
  font-weight: 800;
}
.subpage-heading p {
  font-size: 20px;
  color: #393185;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .subpage-heading p {
    font-size: 16px;
    margin-bottom: 0;
  }
}

section.about {
  padding-top: 90px;
  position: relative;
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.about {
    padding-bottom: 50px;
  }
}
section.about:after {
  content: "";
  background: #E51A4B;
  width: calc(50% - 27.5px);
  height: 260px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.about:after {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  section.about {
    padding-top: 100px;
  }
}
section.about .text-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}
@media only screen and (max-width: 991px) {
  section.about .text-wrap {
    gap: 30px;
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.about h2 {
  font-size: 40px;
  color: #E51A4B;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  section.about h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
  }
}
section.about .text-wrap .top p {
  font-size: 30px;
  color: #393185;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1399px) {
  section.about .text-wrap .top p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  section.about .text-wrap .top p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
  }
}
section.about .red-text-box {
  padding: 50px 80px 50px 0;
}
@media only screen and (max-width: 991px) {
  section.about .red-text-box {
    padding: 30px 15px;
    background: #E51A4B;
    border-radius: 20px;
  }
}
section.about .red-text-box h3 {
  font-size: 40px;
  color: #fff;
  text-transform: initial;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.about .red-text-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
}
section.about .red-text-box h3 span {
  background: #fff;
  color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
}
section.about .red-text-box p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.about .red-text-box p {
    text-align: center;
  }
}
section.about .num-col {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.about .num-col {
    margin-bottom: 0;
  }
}
section.about .numbers {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  section.about .numbers {
    align-items: center;
    gap: 15px;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  section.about .numbers {
    flex-direction: column;
  }
}
section.about .numbers .number-wrap {
  border-radius: 100%;
  width: 220px;
  height: 220px;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  section.about .numbers .number-wrap {
    height: 200px;
    width: 200px;
  }
}
section.about .numbers .number-wrap.red {
  border: 3px dashed #E51A4B;
  position: absolute;
  top: 0;
  left: 150px;
}
@media only screen and (max-width: 1399px) {
  section.about .numbers .number-wrap.red {
    top: -40px;
  }
}
@media only screen and (max-width: 991px) {
  section.about .numbers .number-wrap.red {
    position: relative;
    top: initial;
    left: initial;
  }
}
section.about .numbers .number-wrap.red span, section.about .numbers .number-wrap.red p {
  color: #E51A4B;
}
section.about .numbers .number-wrap.blue {
  border: 3px dashed #393185;
  margin-left: 40px;
  position: relative;
  bottom: -40px;
}
@media only screen and (max-width: 991px) {
  section.about .numbers .number-wrap.blue {
    bottom: initial;
    margin-left: initial;
  }
}
section.about .numbers .number-wrap.blue span, section.about .numbers .number-wrap.blue p {
  color: #393185;
}
section.about .numbers .number-wrap.purple {
  border: 3px dashed #783175;
}
section.about .numbers .number-wrap.purple span, section.about .numbers .number-wrap.purple p {
  color: #783175;
}
section.about .numbers .number-wrap span {
  font-size: 95px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  section.about .numbers .number-wrap span {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  section.about .numbers .number-wrap span {
    font-size: 52px;
  }
}
section.about .numbers .number-wrap p {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.about .numbers .number-wrap p {
    font-size: 18px;
  }
}

section.about-btm-text {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text {
    margin-bottom: 60px;
  }
}
section.about-btm-text .btm-text-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btm-text-wrapper {
    gap: 0;
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.about-btm-text .btm-text-wrapper p {
  font-size: 18px;
  color: #888888;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btm-text-wrapper p {
    margin-bottom: 30px;
    text-align: center;
  }
}
section.about-btm-text .btm-text-wrapper .p-sm p {
  max-width: 500px;
}
@media only screen and (max-width: 1199px) {
  section.about-btm-text .btm-text-wrapper .p-sm p {
    max-width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btm-text-wrapper .p-sm p {
    max-width: initial;
  }
}
section.about-btm-text .btm-text-wrapper .p-block {
  background: #F3F3F3;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btm-text-wrapper .p-block {
    margin-bottom: 30px;
  }
}
section.about-btm-text .btm-text-wrapper .p-block p {
  font-weight: 600;
  margin-bottom: 0;
}
section.about-btm-text .btm-text-wrapper .p-last p {
  margin-bottom: 0;
}
section.about-btm-text .col {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .col {
    margin-bottom: 30px;
  }
}
section.about-btm-text .images {
  flex-grow: 1;
  position: relative;
}
section.about-btm-text .images .main-image-wrap {
  position: relative;
  display: inline-flex;
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .images .main-image-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    margin-left: initial;
    gap: 10px;
  }
}
section.about-btm-text .images .main-image-wrap:after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  left: -40px;
  bottom: -200px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .images .main-image-wrap:after {
    display: none;
  }
}
section.about-btm-text .images img {
  border-radius: 20px;
  border: 3px solid #fff;
  display: block;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .images img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
  }
}
section.about-btm-text .images .image {
  position: absolute;
}
section.about-btm-text .images .image:nth-of-type(1) {
  position: relative;
}
section.about-btm-text .images .image:nth-of-type(1) img {
  height: 300px;
  width: 300px;
}
section.about-btm-text .images .image:nth-of-type(2) {
  left: 50px;
  bottom: -50px;
}
section.about-btm-text .images .image:nth-of-type(2) img {
  height: 100px;
  width: 100px;
}
section.about-btm-text .images .image:nth-of-type(3) {
  display: flex;
  justify-content: flex-end;
  right: -150px;
  bottom: -150px;
}
@media only screen and (max-width: 1199px) {
  section.about-btm-text .images .image:nth-of-type(3) {
    right: -120px;
  }
}
section.about-btm-text .images .image:nth-of-type(3) img {
  height: 200px;
  width: 200px;
}
section.about-btm-text .images .image:nth-of-type(4) {
  display: flex;
  justify-content: flex-end;
  left: -130px;
  bottom: 90px;
}
section.about-btm-text .images .image:nth-of-type(4) img {
  height: 100px;
  width: 100px;
}
section.about-btm-text .images .image:nth-of-type(5) {
  display: flex;
  justify-content: flex-end;
  right: -50px;
  bottom: -260px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .images .image:nth-of-type(5) {
    grid-column: span 2;
  }
}
section.about-btm-text .images .image:nth-of-type(5) img {
  height: 100px;
  width: 100px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .images .image:nth-of-type(n) {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
  }
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .images .image:nth-of-type(n) img {
    height: 100%;
    width: 100%;
  }
}
section.about-btm-text .btn-wrap {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btn-wrap {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}
section.about-btm-text .btn-wrap a {
  background: #E51A4B;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  transition: 0.2s ease;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btn-wrap a {
    font-size: 16px;
    padding: 14px 20px;
  }
}
section.about-btm-text .btn-wrap a:hover {
  background: #AC1437;
}
section.about-btm-text .btn-wrap.col:last-of-type {
  display: flex;
}
section.about-btm-text .btn-wrap.purple {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .btn-wrap.purple {
    margin-top: 20px;
  }
}
section.about-btm-text .btn-wrap.purple a {
  background: #783175;
}
section.about-btm-text .btn-wrap.purple a:hover {
  background: #572355;
}
section.about-btm-text .end-text-wrap p {
  font-size: 24px;
  color: #393185;
}
@media only screen and (max-width: 991px) {
  section.about-btm-text .end-text-wrap p {
    font-size: 18px;
    text-align: center;
  }
}

.main-slider .main-slider-item {
  padding-left: 15px;
  padding-right: 15px;
}

section.service-detail {
  padding-top: 90px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  section.service-detail {
    padding-top: 120px;
  }
}
section.service-detail:after {
  content: "";
  background: #E51A4B;
  width: calc(50% - 27.5px);
  height: 260px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  bottom: -10px;
}
@media only screen and (max-width: 991px) {
  section.service-detail:after {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  section.service-detail:after {
    bottom: 10px;
  }
}
section.service-detail .text-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap {
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.service-detail .text-wrap h2 {
  font-size: 24px;
  line-height: 150%;
  color: #393185;
  margin-bottom: 15px;
  font-weight: 400;
  max-width: 500px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap h2 {
    font-size: 20px;
    max-width: initial;
    text-align: center;
  }
}
section.service-detail .text-wrap p {
  font-size: 18px;
  color: #888888;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap p {
    font-size: 16px;
    text-align: center;
  }
}
section.service-detail .text-wrap .top {
  margin-bottom: 65px;
}
section.service-detail .text-wrap .top p {
  max-width: 500px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap .top p {
    max-width: initial;
  }
}
section.service-detail .text-wrap .red-text-box {
  padding: 50px 80px 50px 0;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap .red-text-box {
    padding: 30px 15px;
    background: #E51A4B;
    border-radius: 20px;
  }
}
section.service-detail .text-wrap .red-text-box h3 {
  font-size: 40px;
  color: #fff;
  text-transform: initial;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap .red-text-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
}
section.service-detail .text-wrap .red-text-box h3 span {
  background: #fff;
  color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
}
section.service-detail .text-wrap .red-text-box p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.service-detail .text-wrap .red-text-box p {
    text-align: center;
  }
}
section.service-detail .images {
  flex-grow: 1;
  position: relative;
}
section.service-detail .images .main-image-wrap {
  position: relative;
  display: inline-flex;
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .images .main-image-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    margin-left: initial;
    gap: 10px;
  }
}
section.service-detail .images .main-image-wrap:after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  left: -40px;
  bottom: -200px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.service-detail .images .main-image-wrap:after {
    display: none;
  }
}
section.service-detail .images img {
  border-radius: 20px;
  border: 3px solid #fff;
  display: block;
}
@media only screen and (max-width: 991px) {
  section.service-detail .images img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
  }
}
section.service-detail .images .image {
  position: absolute;
}
section.service-detail .images .image:nth-of-type(1) {
  position: relative;
}
section.service-detail .images .image:nth-of-type(1) img {
  height: 300px;
  width: 300px;
}
section.service-detail .images .image:nth-of-type(2) {
  left: 50px;
  bottom: -50px;
}
section.service-detail .images .image:nth-of-type(2) img {
  height: 100px;
  width: 100px;
}
section.service-detail .images .image:nth-of-type(3) {
  display: flex;
  justify-content: flex-end;
  right: -150px;
  bottom: -150px;
}
@media only screen and (max-width: 1199px) {
  section.service-detail .images .image:nth-of-type(3) {
    right: -120px;
  }
}
section.service-detail .images .image:nth-of-type(3) img {
  height: 200px;
  width: 200px;
}
section.service-detail .images .image:nth-of-type(4) {
  display: flex;
  justify-content: flex-end;
  left: -130px;
  bottom: 90px;
}
section.service-detail .images .image:nth-of-type(4) img {
  height: 100px;
  width: 100px;
}
section.service-detail .images .image:nth-of-type(5) {
  display: flex;
  justify-content: flex-end;
  right: -50px;
  bottom: -260px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .images .image:nth-of-type(5) {
    grid-column: span 2;
  }
}
section.service-detail .images .image:nth-of-type(5) img {
  height: 100px;
  width: 100px;
}
@media only screen and (max-width: 991px) {
  section.service-detail .images .image:nth-of-type(n) {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
  }
}
@media only screen and (max-width: 991px) {
  section.service-detail .images .image:nth-of-type(n) img {
    height: 100%;
    width: 100%;
  }
}

section.services-info {
  background: #F3F3F3;
  padding-top: 140px;
  padding-bottom: 100px;
  margin-top: -40px;
  position: relative;
  margin-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  section.services-info {
    padding-top: 100px;
    padding-bottom: 60px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  section.services-info {
    padding-bottom: 30px;
    margin-bottom: 30px;
    padding-top: 65px;
  }
}
section.services-info .btn-wrap {
  display: flex;
  justify-content: center;
}
section.services-info .btn-wrap a {
  background: #E51A4B;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  transition: 0.2s ease;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 991px) {
  section.services-info .btn-wrap a {
    font-size: 16px;
    padding: 14px 20px;
  }
}
section.services-info .btn-wrap a:hover {
  background: #AC1437;
}
section.services-info h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #393185;
}
@media only screen and (max-width: 991px) {
  section.services-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
  }
}
section.services-info h2 span {
  background: #fff;
  color: #E51A4B;
  border-radius: 10px;
  padding: 5px 10px;
  background: #E51A4B;
  color: #fff;
}
section.services-info ul {
  list-style-type: none;
  margin-bottom: 60px;
  padding-left: 0;
  display: flex;
}
@media only screen and (max-width: 991px) {
  section.services-info ul {
    margin-bottom: 35px;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
section.services-info ul li {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  section.services-info ul li {
    gap: 10px;
  }
}
section.services-info ul li .number {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: #E51A4B;
  border: 2px solid #E51A4B;
  border-radius: 100%;
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
}
@media only screen and (max-width: 991px) {
  section.services-info ul li .number {
    font-size: 16px;
  }
}
section.services-info ul li p {
  color: #393185;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  section.services-info ul li p {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
  }
}

section.services-solution {
  margin-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  section.services-solution {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  section.services-solution {
    margin-bottom: 30px;
  }
}
section.services-solution .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .content {
    grid-template-columns: minmax(1px, 1fr);
    gap: 30px;
  }
}
section.services-solution .content .images {
  flex-grow: 1;
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
}
section.services-solution .content .images .main-image-wrap {
  position: relative;
  display: inline-flex;
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images .main-image-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    margin-left: initial;
    gap: 10px;
  }
}
section.services-solution .content .images .main-image-wrap:after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  left: -40px;
  bottom: -200px;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images .main-image-wrap:after {
    display: none;
  }
}
section.services-solution .content .images img {
  border-radius: 20px;
  border: 3px solid #fff;
  display: block;
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
  }
}
section.services-solution .content .images .image {
  position: absolute;
}
section.services-solution .content .images .image:nth-of-type(1) {
  position: relative;
}
section.services-solution .content .images .image:nth-of-type(1) img {
  height: 300px;
  width: 300px;
}
section.services-solution .content .images .image:nth-of-type(2) {
  left: 50px;
  bottom: -50px;
}
section.services-solution .content .images .image:nth-of-type(2) img {
  height: 100px;
  width: 100px;
}
section.services-solution .content .images .image:nth-of-type(3) {
  display: flex;
  justify-content: flex-end;
  right: -150px;
  bottom: -150px;
}
@media only screen and (max-width: 1199px) {
  section.services-solution .content .images .image:nth-of-type(3) {
    right: -120px;
  }
}
section.services-solution .content .images .image:nth-of-type(3) img {
  height: 200px;
  width: 200px;
}
section.services-solution .content .images .image:nth-of-type(4) {
  display: flex;
  justify-content: flex-end;
  left: -130px;
  bottom: 90px;
}
section.services-solution .content .images .image:nth-of-type(4) img {
  height: 100px;
  width: 100px;
}
section.services-solution .content .images .image:nth-of-type(5) {
  display: flex;
  justify-content: flex-end;
  right: -50px;
  bottom: -260px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images .image:nth-of-type(5) {
    grid-column: span 2;
  }
}
section.services-solution .content .images .image:nth-of-type(5) img {
  height: 100px;
  width: 100px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images .image:nth-of-type(n) {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
  }
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images .image:nth-of-type(n) img {
    height: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  section.services-solution .content .images {
    padding-left: initial;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.services-solution .content .images {
    margin-bottom: 0;
  }
}
section.services-solution .content .images .main-image-wrap:after {
  bottom: -40px;
}
section.services-solution .content .images .main-image-wrap .image:nth-of-type(2) {
  display: flex;
  justify-content: flex-end;
  left: -130px;
  bottom: 90px;
}
section.services-solution .content .images .main-image-wrap .image:nth-of-type(2) img {
  height: 100px;
  width: 100px;
}
section.services-solution .content-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  section.services-solution .content-col {
    gap: 25px;
  }
}
section.services-solution .text-block h3 {
  color: #E51A4B;
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .text-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
  }
}
section.services-solution .text-block p {
  color: #888888;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .text-block p {
    text-align: center;
  }
}
section.services-solution .text-block.sm h3 {
  width: 400px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .text-block.sm h3 {
    width: initial;
  }
}
section.services-solution .text-block.sm p {
  width: 500px;
}
@media only screen and (max-width: 991px) {
  section.services-solution .text-block.sm p {
    width: initial;
  }
}

section.solutions-mar {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
section.solutions-mar h1 {
  font-size: 50px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar h1 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
section.solutions-mar h1 span {
  color: #E51A4B;
  border-radius: 10px;
  font-weight: 900;
}
section.solutions-mar h5 {
  color: #393185;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar h5 {
    margin-bottom: 20px;
  }
}
section.solutions-mar .box {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 75px;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box {
    grid-template-columns: minmax(1px, 1fr);
    gap: 20px;
  }
}
section.solutions-mar .box .services-left-column {
  position: relative;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box .services-left-column .pictures {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box .services-left-column .pictures .img-wrap {
    width: 100%;
  }
}
section.solutions-mar .box .services-left-column .pictures .img-wrap:nth-of-type(1) {
  display: flex;
  justify-content: end;
  margin-right: 45px;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box .services-left-column .pictures .img-wrap:nth-of-type(1) {
    display: initial;
    justify-content: initial;
    margin-right: 0;
  }
}
section.solutions-mar .box .services-left-column .pictures .img-wrap:nth-of-type(2) {
  position: absolute;
  bottom: 55px;
  left: 50px;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box .services-left-column .pictures .img-wrap:nth-of-type(2) {
    position: initial;
    bottom: 0;
    top: 0;
  }
}
section.solutions-mar .box .services-left-column .pictures img {
  border-radius: 20px;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box .services-left-column .pictures img {
    width: 100%;
  }
}
section.solutions-mar .box .services-left-column:after {
  content: "";
  background-image: url("../images/dots.svg");
  position: absolute;
  top: 30px;
  right: 0;
  width: 273px;
  height: 273px;
  z-index: -999;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .box .services-left-column:after {
    display: none;
  }
}
section.solutions-mar .box .services-right-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media only screen and (max-width: 767px) {
  section.solutions-mar .box .services-right-column {
    gap: 15px;
  }
}
section.solutions-mar .box .services-right-column p {
  color: #888888;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
section.solutions-mar .box .services-right-column small p {
  font-size: 14px;
  color: #888888;
  font-weight: 600;
  background-color: #F3F3F3;
  padding: 30px 40px;
  border-radius: 20px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  section.solutions-mar .box .services-right-column small p {
    padding: 15px 20px;
  }
}
section.solutions-mar .boxes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 70px;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .boxes-wrap {
    display: block;
    margin-top: 30px;
  }
}
section.solutions-mar .boxes-wrap .item {
  background-color: #393185;
  padding: 40px 40px 60px 40px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .boxes-wrap .item {
    padding: 25px;
    height: initial;
    margin-top: 15px;
  }
}
section.solutions-mar .boxes-wrap .item h2 {
  max-width: 280px;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1299px) {
  section.solutions-mar .boxes-wrap .item h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.solutions-mar .boxes-wrap .item h2 {
    margin-bottom: 15px;
    max-width: initial;
    font-size: 25px;
  }
}
section.solutions-mar .boxes-wrap .item p {
  padding: 0 40px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1299px) {
  section.solutions-mar .boxes-wrap .item p {
    padding: 0 20px 0 0;
  }
}
section.solutions-mar .boxes-wrap .item:nth-of-type(2) {
  background-color: #58327E;
}
section.solutions-mar .boxes-wrap .item:nth-of-type(3) {
  background-color: #783175;
}

@media only screen and (max-width: 767px) {
  section.high-tech .container .item .one, section.high-tech .container .item .four {
    display: none;
  }
}
section.reference-wrap {
  padding-top: 90px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  section.reference-wrap {
    padding-bottom: 50px;
  }
}
section.reference-wrap .reference-heading {
  text-align: center;
}
section.reference-wrap .reference-heading h1 {
  font-size: 48px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  section.reference-wrap .reference-heading h1 {
    font-size: 32px;
  }
}
section.reference-wrap .reference-heading h1 span {
  color: #E51A4B;
  font-weight: 800;
}
section.reference-wrap .reference-heading p {
  font-size: 20px;
  color: #393185;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  section.reference-wrap .reference-heading p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
section.reference-wrap .reference-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  section.reference-wrap .reference-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  section.reference-wrap .reference-content {
    grid-template-columns: minmax(1px, 1fr);
  }
}

section.services {
  padding-top: 100px;
  margin-bottom: 100px;
}
section.services h1 {
  font-size: 50px;
  font-weight: 300;
  color: #393185;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  section.services h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
section.services h1 span {
  color: #E51A4B;
  border-radius: 10px;
  font-weight: 900;
}
section.services h5 {
  color: #393185;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  section.services h5 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  section.services {
    margin-bottom: 60px;
  }
}
section.services .service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  section.services .service-cards {
    grid-template-columns: minmax(1px, 1fr);
  }
}
section.services .service-card {
  border-radius: 20px;
}
section.services .service-card:nth-of-type(5n+1) {
  background: #393185;
}
section.services .service-card:nth-of-type(5n+2) {
  background: #58327E;
}
section.services .service-card:nth-of-type(5n+3) {
  background: #783175;
}
section.services .service-card:nth-of-type(5n+4) {
  background: #B32A61;
}
section.services .service-card:nth-of-type(5n+5) {
  background: #E51A4B;
}
section.services .service-card .number, section.services .service-card h3, section.services .service-card p, section.services .service-card a {
  color: #fff;
}
section.services .service-card .number {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  section.services .service-card .number {
    margin-bottom: 15px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }
}
section.services .service-card h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 22px;
  height: 105px;
}
@media only screen and (max-width: 991px) {
  section.services .service-card h3 {
    height: auto;
    font-size: 24px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.services .service-card h3 br {
    display: none;
  }
}
section.services .service-card p {
  font-size: 18px;
  margin-bottom: 0;
}
section.services .service-card .img-wrap {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  section.services .service-card .img-wrap {
    margin-bottom: 25px;
  }
}
section.services .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
section.services .service-card .link {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  section.services .service-card .link {
    margin-bottom: 25px;
  }
}
section.services .service-card .link a {
  font-weight: 700;
  display: inline-flex;
  font-size: 20px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  section.services .service-card .link a {
    font-size: 18px;
  }
}
section.services .service-card .top {
  padding: 30px 30px 0 30px;
  height: 320px;
}
@media only screen and (max-width: 991px) {
  section.services .service-card .top {
    height: auto;
  }
}
section.services .service-card .top .top-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  section.services .service-card .top {
    padding: 25px;
  }
}

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