.arrow-button {
  color: #ffffff;
  display: flex;
  width: fit-content;
  align-items: center;
  text-align: center;
  column-gap: 15px;
  padding: 12px 57px;
  font-size: 23px;
  font-weight: 500;
  background: var(--color-primary);
  border-radius: 8px;
  transition: background var(--time) ease-in-out;
}

.see-details:hover,
.arrow-button:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.see-details img,
.arrow-button img {
  transition: transform var(--time) ease-in-out;
}

.see-details:hover img,
.arrow-button:hover img {
  transform: translateX(10px);
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
}

.see-details {
  padding: 8px 15px;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: 15px;
  border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 55px;
  height: 55px;
}

.swiper-button-prev {
  left: 30px !important;
}

.swiper-button-next {
  right: 30px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none !important;
}

/* ------------------------------------------------------------- */

body {
  position: relative;
  z-index: 0;
}
body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1000px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #e4ebe9 100%
  );
  background-position: bottom;
  background-size: 500px;
  z-index: -1;
}

.banner {
  position: relative;
  height: 100vh;
}
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner .container {
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: space-between;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  bottom: 0;
  height: 100vh;
}

.banner-content h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.banner-content h1 span {
  padding: 0 6px;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.banner-content h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
  animation: fadeIn 2s ease-in-out infinite;
}

.banner-content p {
  margin: 0;
  color: #ffffff;
}
.banner-content .arrow-button {
  margin-top: 30px;
}

.request_form {
  width: 500px;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 12px 12px #00000029;
}
.request_form h4 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.request_form ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.request_form button {
  height: 52px;
  display: block;
  border: none;
  width: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  background: var(--color-primary);
  border-radius: 10px;
  transition: background var(--time) ease-in-out;
}

.request_form p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.2;
  margin-top: 17px;
}
.request_form button:hover {
  background: var(--color-primary-hover);
}

/* ------------------------------------------------------------- */

.grd-section {
  padding: 80px 0 140px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #e4ebe9 100%);
}

/* ------------------------------------------------------------- */
.main-section {
  padding: 100px 0 0 0;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
  background: #fff;
  position: relative;
  z-index: 0;
}
/* .main-section::after {
  content: "";
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background: url(../images/outline.svg) no-repeat;
  background-size: cover;
  z-index: -1;
} */

.sideing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sideing-image {
  text-align: center;
}

.sideing-content h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.sideing-content h2 span {
  color: var(--color-primary);
}
.sideing-content .arrow-button {
  margin-top: 35px;
}

/* ------------------------------------------------------------- */

.meet_experts {
  padding: 100px 0 0 0;
}
.meet_experts .content {
  margin-bottom: 60px;
}
.meet_experts .content h2 {
  font-size: 40px;
  font-weight: bold;
  color: #090909;
  margin-bottom: 30px;
}

.meet_card {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.meet_card img {
  width: 100%;
}

.meet_card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.meet_card-content h3 {
  font-size: 26px;
  color: #ffffff;
  line-height: 1;
}
.meet_card-content p {
  color: #acc2bd;
  font-size: 18px;
  margin-bottom: 0;
}

.meet_expert_swiper .swiper-slide {
  height: 470px;
  display: flex;
  align-items: flex-end;
}

.meet_expert_swiper .swiper-slide:hover .meet_card img {
  transform: scale(1.2);
}
.meet_expert_swiper .swiper-slide .meet_card img {
  height: 407px;
  object-fit: cover;
  transition: height 0.5s ease-in-out, transform 0.5s ease-in-out;
  border-radius: 20px;
}

.meet_expert_swiper .swiper-slide-active .meet_card img {
  height: 470px !important;
}
.meet_expert_swiper .swiper-wrapper {
  align-items: flex-end;
}

/* ------------------------------------------------------------- */

.new-launch {
  text-align: center;
  padding: 82px 0 42px 0;
}

.new-launch img {
  margin-bottom: 12px;
}

.lunch-arrows {
  display: flex;
  margin-top: 30px;
  justify-content: flex-end;
  column-gap: 15px;
}

.lunch-arrows > div {
  position: unset;
  margin: 0;
}
.lunch-arrows > div::after {
  display: none;
}
/* ------------------------------------------------------------- */

.luanch-swiper {
  margin-top: 45px;
  padding-bottom: 40px;
}

.luanch-swiper .swiper-slide {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.luanch-swiper .swiper-slide > img {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.luanch-swiper .swiper-slide:hover > img {
  transform: scale(1.1);
}

.luanch-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  width: 100%;
  z-index: 1;
}
.card_content p,
.card_content h6,
.card_content h4 {
  color: #ffffff;
}
.card_content h6 {
  margin-bottom: 5px;
}

.card_content h4 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 6px;
}
.card_content p {
  padding-left: 25px;
  background: url(../images/pin.png) no-repeat left center;
  font-size: 16px;
  margin-bottom: 10px;
}
.card_content h6 {
  font-size: 16px;
  font-weight: 400;
}

.luanch-swiper .swiper-pagination {
  bottom: 0;
  align-items: center;
}
.luanch-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1px solid var(--color-primary);
  opacity: 1;
  transition: transform 0.5s ease-in-out;
}

.luanch-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ------------------------------------------------------------- */
.lets-talk {
  padding: 80px 0 140px 0;
}
.lets-talk .container {
  max-width: 1200px;
}
.lets-talk .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lets-talk .content {
  width: 40%;
}
.lets-talk .content h2 {
  font-size: 60px;
  font-weight: bold;
  color: #090909;
  margin-bottom: 30px;
  line-height: 1.1;
}
.lets-talk .content span {
  color: var(--color-primary);
}

/* ------------------------------------------------------------- */

.launch-popup {
  padding: 30px;
  box-shadow: 0px 12px 12px #00000029;
  border-radius: 20px;
}

.launch-popup-inside {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
}

.launch-popup-content p {
  font-size: 14px;
  line-height: 20px;
  margin: 20px 0 50px 0;
}
.launch-popup-content h2 {
  font-size: 30px;
  margin-bottom: 4px;
}
.launch-popup-content h2 + h5 {
  padding-left: 25px;
  background: url(../images/pin.svg) no-repeat left top;
  background-size: 17px;
  height: 25px;
  font-weight: 400;
}
.launch-popup-content li {
  display: grid;
  grid-template-columns: 60px 1fr;
}
.launch-popup-content li + li {
  margin-top: 20px;
}
.launch-popup-content .content span {
  font-size: 18px;
  color: #acc2bd;
}
.launch-popup-content .content h5 {
  margin-top: 7px;
  font-size: 18px;
}
.launch-popup-image img {
  width: 100%;
}
.access-btn {
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  background: #acc2bd;
  border-radius: 10px;
  display: block;
  text-align: center;
  margin-top: auto;
}
.launch-popup-content {
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
} 

.launch-popup-image {
  border-radius: 20px;
  overflow: hidden;
}

/* ------------------------------------------------------------- */

.popup-investment {
  width: 100%;
  padding: 30px 23px 23px 23px;
  box-shadow: 0px 12px 12px #00000029;
  border-radius: 20px;
}

.popup-investment h4{
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.popup-investment input {
  width: 100%;
}
.popup-investment input + input {
  margin-top: 12px;
}

.popup-investment button:not(.fancybox-button) {
  margin-top: 30px;
  height: 48px;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  background: #acc2bd;
  border-radius: 10px;
  border: none;
  width: 100%;
}
