@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

*{
  box-sizing: border-box;
}
body{
  direction: ltr;
  font-family: 'M PLUS Rounded 1c', sans-serif !important;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
:root {

  --bg-1: #8689AC;
  --bg-2: #587099;
  --bg-3: #3F5576;

  --color-1: #c9cdf9;
  --color-2: #8bbfc5;
  --color-3: #6491d4;

  --bgSection: var(--bg-2);
  --colorSection: var(--color-2);

  --white: #ffffff;
  --black: #000000;

  --primary-color: rgba(13, 110, 139, 0.75);
  --overlay-color: rgba(24, 39, 51 , 0.85);
  --menu-speed: 0.75s;
}

a {
  cursor: pointer;
  text-decoration: none;
}
button {
  cursor: pointer;
}
.sectionWrapper {
  width: auto;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 480px) {
  .sectionWrapper{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .sectionWrapper{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .sectionWrapper{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .sectionWrapper{
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px){
  .sectionWrapper{
    max-width: 1170px;
    }
}
@media (min-width: 1400px){
  .sectionWrapper{
    max-width: 1274px;
  }
}
.sectionColumn {
  display: flex;
  flex-direction: column-reverse;
}
.sectionRow {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.sectionMargin {
  padding: 67px 0;
}
.sectionTitle {
  color: var(--colorSection);
  position: relative;
  padding: 24px 0;
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 36px);
  text-align: center;
}
section {
  overflow: hidden;
}
.bgColor-grad {
  background: linear-gradient(
    0deg, 
    #2F3148, 
    #8689AC, 
    #012d4a);
}
.header {
  background-color: var(--black);
}
#space, .stars {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.stars {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: zoom 5s infinite;
  opacity: 0;
}
.stars:nth-child(1) {
  background-position: 50% 50%;
  animation-delay: 0s;
}
.stars:nth-child(2) {
  background-position: 20% 60%;
  animation-delay: 1s;
}
.stars:nth-child(3) {
  background-position: -20% -30%;
  animation-delay: 2s;
}
.stars:nth-child(4) {
  background-position: 40% -80%;
  animation-delay: 3s;
}
.stars:nth-child(5) {
  background-position: -20% 30%;
  animation-delay: 4s;
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0.5);
    animation-timing-function: ease-in;
  } 
  85% {
    opacity: 1;
    transform: scale(2.8);
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(3.5);
  }
}
.headerName {
  font-size: 42px;
  z-index: 1;
  display: flex;
  position: relative;
  color: #011;
  text-align: center;
  text-shadow: 0 0 5px var(--colorSection);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.headerName:first-line {
  font-size: 200%;
}
.headerName a {
  color: var(--black);
}
.headerName img {
  animation: rotateY 4s infinite linear;
  height: 53px;
}
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 18px;
  background: var(--bgSection);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 3px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 3px;
  background: inherit;
}
.menu-wrap .hamburger > div::after {
  top: 10px;
}
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}
.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}
.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu ul {
  padding: 0;
  margin: 0;
}
.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}
.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 1rem;
}
.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li > a:hover {
  color: var(--colorSection);
}
.sectionMain {
  position: relative;
  background-color: var(--black);
  color: var(--white);
}
.sectionBenefMain {
  gap: 30px;
}
.cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.card--1 .card__img, .card--1 .card__img--hover {
  background-image: url('mediamansion/back/bg-all-069d8d5d6bb227.jpg');
}
.card--2 .card__img, .card--2 .card__img--hover {
  background-image: url('mediamansion/back/bg-all-169d8d5d6bb256.jpg');
}
.card--3 .card__img, .card--3 .card__img--hover {
  background-image: url('mediamansion/back/bg-all-269d8d5d6bb280.jpg');
}
.card--4 .card__img, .card--4 .card__img--hover {
  background-image: url('mediamansion/back/bg-all-369d8d5d6bb2a9.jpg');
}
.card__info-hover img {
  height: 50px;
  object-fit: contain;
  animation: rotateY 3s infinite linear;
}
.card__img {
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 327px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.card__info-hover {
  position: absolute;
  padding: 16px;
  width: 100%;
  opacity: 0;
  top: 0;
}
.card__img--hover {
  transition: 0.2s all ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 327px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  top: 0;
}
.card {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: var(--black);
  width: 100%;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}
.card__info {
  z-index: 2;
  color: var(--white);
  background-color: var(--black);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 18px 24px 24px 24px;
}
.card__by {
  font-weight: 500;
}
.card:hover .card__img--hover {
  height: 100%;
  opacity: 0.3;
}
.card:hover .card__info {
  background-color: transparent;
  position: relative;
}
.card:hover .card__info-hover {
  opacity: 1;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
}
.grid_item {
  display: flex;
  padding: 1rem;
  width: 100%;
}
@media (min-width: 766px) {
  .grid_item {
    width: 50%;
  }
}
@media (min-width: 991px) {
  .grid_item {
    width: 33.3333%;
  }
}
.block {
  border-radius:0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.block_image img {
  height: 327px;
  object-fit: cover;
  width: 100%;
}
.block_content {
  min-height: 220px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block_title {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.block_title:hover {
  color: var(--colorSection);
}
.block_text {
  color: var(--white);
  font-size: 12px;
  line-height: 1.5;
  margin: 14px 0;     
  font-weight: 200;
  -webkit-line-clamp: 2;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.block_btn {
  flex-wrap: wrap;
  justify-content: space-between;
}
.block_btn img {
  height: 53px;
  object-fit: contain;
  animation: rotateY 3s infinite linear;
}
.slider-item svg {
  height: 18px;
}
.container {
  width: 100%;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  align-items: center;
  justify-items: center;
}
.container a:hover {
  background: none;
}
.container a:hover p {
  color: var(--white);
}
.card-top,
.card-right,
.card-bottom,
.card-left {
  display: flex;
  height: 350px;
  width: 350px;
  border-radius: 50%;
  background: #ffffff9e;
  overflow: hidden;
}
.card-top {
  flex-direction: column;
}
.card-right {
  flex-direction: row-reverse;
}
.card-bottom {
  flex-direction: column-reverse;
}
.card-left {
  flex-direction: row;
}
.card-image {
  display: flex;
  width: 50%;
  height: 50%;
}
.card-left .card-image,
.card-right .card-image {
  width: 50%;
  height: 100%;
}
.card-top .card-image,
.card-bottom .card-image {
  width: 100%;
  height: 50%;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.card-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50%;
  background: var(--bgSection);
  padding: 24px;
}
.card-left .card-text,
.card-right .card-text {
  width: 50%;
  height: 100%;
  padding: 30px;
}
.card-top .card-text,
.card-bottom .card-text {
  width: 100%;
  height: 50%;
  padding: 65px;
}
.card-text p {
  font-family: 'Anton', sans-serif;
  margin: 0;
  line-height: 1.4;
  color: var(--colorSection);
  text-align: center;
  width: 100%;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 200;
  letter-spacing: -0.01em;
}
.gridComent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  align-items: center;
}
.slider-item {
  background: var(--bgSection);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slider-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.slider-image-wrapper {
  height: 204px;
  width: 100%;
  overflow: hidden;
}
.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-item-content {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 18px;
  text-align: center;
}
.slider-item-content h2 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 9px;
}

.slider-item-content p {
  font-size: 18px;
  color: #e0e0e0;
}
.sectionAbout {
  position: relative;
}
.sectionAboutImgS {
  flex: 1;
}
.sectionAboutSTR {
  color: var(--white);
  background-color: var(--black);
}
.sectionAboutImgS img {
  width: 100%;
  height: 204px;
  object-fit: contain;
  perspective:  500px;
  animation: rotateY 4s infinite linear;
}
.sectionAboutTextSTR {
  flex: 2;
}
.sectionAboutImg {
  position: relative;
}
#rocket {
  position: absolute;
  width: 80px;
  left: 50%;
  margin-left: -40px;
  top: 100px;
  z-index: -2;
}
.artboard {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: solid #fff 2px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: url(img/roket.png);
  backface-visibility: none;
  background: radial-gradient(circle at bottom, rgba(24, 244, 163, 0.3) 0%, rgba(1, 34, 38, 0) 60%);
}
.star {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 37%;
  left: 31%;
}
.star::before,
.star::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 3px rgba(255, 255, 255, 0.15);
  animation: sparkle 1s ease-in-out infinite alternate;
}
.star::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.star::before {
  transform: translate(-50%, -50%);
}
.star:nth-child(2) {
  top: 20%;
  left: 23%;
  transform: scale(1.4);
}
.star:nth-child(3) {
  top: 28%;
  left: 64%;
  transform: scale(0.7);
}
@keyframes sparkle {
  from {
    height: 10px;
  }
  to {
    height: 3px;
  }
}
.smoke {
  position: absolute;
  width: 400%;
  height: 400%;
  bottom: -250%;
  left: 50%;
  background-color: #e8e6ef;
  transform: translateX(-50%) scale(0.25);
}
.smoke-bubble {
  position: absolute;
  background-color: #e8e6ef;
  border-radius: 50%;
  animation: smoke infinite 7s alternate ease-in-out;
}
.smoke-bubble:nth-child(1) {
  left: 1%;
  top: -22%;
  width: 20%;
  height: 20%;
  animation-duration: 5s;
}
.smoke-bubble:nth-child(2) {
  right: 1%;
  top: -22%;
  width: 20%;
  height: 20%;
  animation-duration: 5s;
}
.smoke-bubble:nth-child(3) {
  left: -6%;
  top: -28%;
  width: 15%;
  height: 15%;
  animation-duration: 3s;
}
.smoke-bubble:nth-child(4) {
  right: -6%;
  top: -28%;
  width: 15%;
  height: 15%;
  animation-duration: 3s;
}
.smoke-bubble:nth-child(5) {
  left: 12%;
  top: -11%;
  width: 20%;
  height: 20%;
  animation-duration: 6s;
}
.smoke-bubble:nth-child(6) {
  right: 12%;
  top: -11%;
  width: 20%;
  height: 20%;
  animation-duration: 6s;
}
@keyframes smoke {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.2);
  }
}
.fire {
  top: 67%;
  z-index: -4;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  background-color: #00ffea;
  transform: rotate(135deg);
  margin-top: 20px;
  animation: flicker infinite 1s alternate ease-in-out;
}
.fire:after {
  content: '';
  top: 5px;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  background-color: #dafffe;
}
@keyframes flicker {
  0% {
    transform: rotate(135deg) scale(0.8);
    box-shadow: 0 0 17px 10px rgba(165, 238, 224, 0.5);
  }
  25% {
    box-shadow: 0 0 17px 5px rgba(165, 238, 224, 0.5);
  }
  50% {
    box-shadow: 0 0 17px 7px rgba(165, 238, 224, 0.5);
  }
  75% {
    box-shadow: 0 0 17px 5px rgba(165, 238, 224, 0.5);
  }
  100% {
    box-shadow: 0 0 17px 10px rgba(165, 238, 224, 0.5);
  }
}
.sectionQaImg {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionQaImg img {
  width: 100%;
  height: 327px;
  object-fit: contain;
  perspective:  500px;
  animation: rotateY 4s infinite linear;
}
.sectionQaBlok {
  flex: 2;
}
.accordion {
  border-bottom: 1px solid #d3d3d3;
}
.accordion .accordion-item {
  border-bottom: 1px solid #d3d3d3;
}
.accordion button[aria-expanded='true'] {
  border-bottom: 1px solid var(--colorSection);
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 200;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;

  &:hover,
  &:focus {
    color: var(--colorSection);
  }

  .accordion-title {
    padding: 18px 24px 18px 0;
  }

  .icon {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }

  .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
}
.accordion button[aria-expanded='true'] {
  color: var(--colorSection);
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0; 
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: fit-content; 
}
.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 200;
  margin:  30px 0;
}
.sectionFormImg {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionFormImg img {
  width: 100%;
  height: 327px;
  object-fit: contain;
  perspective:  500px;
  animation: rotateY 4s infinite linear;
}

@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.sectionFormNaim {
  width: 100%;
  flex: 2;
}
.sectionFormNChek {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sectionFormNaimCol {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sectionFormNChekB {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
}
.sectionFormNaiminput {
  font-weight: 500;
  color: var(--white);
  background-color: rgb(28,28,30);
  border-radius: 0px;
  border: none;
  outline: none;
  padding: 24px;
  width: 100%;
  transition: .4s;
}
.sectionFormNaiminput:hover {
  box-shadow: 0 0 0 .15vw rgba(135, 207, 235, 0.186);
}
.sectionFormNaiminput:focus {
  box-shadow: 0 0 0 .15vw var(--colorSection);
}
.sectionFormNaim .input-group--wrapper--component {
 font-weight: 500;
  color: var(--white);
  background-color: rgb(28,28,30);
  border-radius: 0px;
  border: none;
  outline: none;
  padding: 24px;
  width: 100%;
  transition: .4s;
}
.sectionFormNaim .input-group--wrapper--component:hover {
  box-shadow: 0 0 0 .15vw rgba(135, 207, 235, 0.186);
}
.sectionFormNaim .input-group--wrapper--component:focus {
  box-shadow: 0 0 0 .15vw var(--colorSection);
}
.sectionFormNaim .textarea-group--wrapper--component {
  font-weight: 500;
   color: var(--white);
   background-color: rgb(28,28,30);
   border-radius: 0px;
   border: none;
   outline: none;
   padding: 24px;
   width: 100%;
   transition: .4s;
 }
 .sectionFormNaim .textarea-group--wrapper--component:hover {
   box-shadow: 0 0 0 .15vw rgba(135, 207, 235, 0.186);
 }
 .sectionFormNaim .textarea-group--wrapper--component:focus {
   box-shadow: 0 0 0 .15vw var(--colorSection);
 }
 .sectionFormNChekB a {
  padding: 0 5px 0 0;
  color: var(--colorSection);
 }
 .sectionFormNChekB a:hover {
  color: var(--white);
 }
.sectionFooterCol {
  gap:  30px;
}
.sectionFooter {
  background-color: var(--black);
}
.sectionDisclaimer {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 0px;
  padding: 24px;
  animation: zoomInOut 3s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.sectionDisclaimerText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.sectionDisclaimerImg img {
  height: 97px;
}
.sectionDisclaimerText div{
  margin-bottom: 14px;
  text-align: center;
  color: var(--white);
  font-size: 18px;
}
.sectionBlokRand1 {
  background-color: var(--black);
  color: var(--white);
}
.sectionBlokRand2 {
  background-color: var(--black);
  color: var(--white);
}
.sectionPolicy {
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.sectionPolicy a {
  text-align: center;
  font-size: 1.5rem;
  color: var(--white);
}
.sectionPolicy a:hover {
  color: var(--colorSection);
}
.sectioCurrent {
  text-align: right;
  border-top: 1px solid var(--colorSection);
  padding-top: 30px;
  color: var(--white);
}
.sectioCurrent a {
  color: var(--white);
}
.sectioCurrent a:hover {
  color: var(--colorSection);
}
.sectionPri {
  position: relative;
  word-break: break-all;
  background-color: var(--black);
  color: var(--white);
}
.sectionPri li {
  margin: 9px 0;
  color: var(--white);
}
.sectionPri a {
  color: var(--white);
}
.sectionPage {
  background-color: var(--black);
  color: var(--white);
}
.sectionPageMain {
  gap: 30px;
}
.sectionPageIfram iframe {
  height:100vh;
  width: 100%;
}
.sectionPageContent {
  overflow: hidden;
  position: relative;
}
.sectionPageContentImg {
  float: left;
  width: 38%;
  margin: 50px;
  margin-top: 0;
  margin-left: 0;
}
.sectionPageContentText ul {
  list-style: inside;
}
.sectionPageContentText li {
  margin: 9px 0;
}
.sectionCont {
  position: relative;
  background-color: var(--black);
  color: var(--white);
}
.sectionContMain {
  gap: 30px;
}
.sectionContBlok {
  flex: 1;
  width: 100%;
  gap: 18px;
}
.sectionContBlokBox {
  word-break: break-all;
  flex: 1;
  width: 100%;
  border-radius: 0px;
  padding: 50px 18px;
  color: var(--white);
}
.sectionContBlokBox:hover {
  color: var(--colorSection);
}
.sectionBak {
  display: block;
  overflow: hidden;
  position: relative;
}
.sectionBackground {
  position: absolute;
  width: 145px;
  height: 145px;
  background-image: url('mediamansion/tematik-assets/alien-lands-069d8d5d6bb401.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  animation: rotate 4s linear infinite, move 8s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes move {
  0% {
    left: -200px;
  }
  100% {
    left: 100vw;
  }
}
.sectionBakM {
  margin-bottom: 42px;
}
.sectionRand1 {
  display: block;
}
.sectionRand2 {
  display: none;
}
.btn-2 {
  color: var(--colorSection);
  background-color: var(--black);
  padding: 14px 9px;
  display: inline-block;
  width: fit-content;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  border: 1px solid var(--colorSection);
  border-radius: 0px;
  position: relative;
}
.btn-2::before {
  position: absolute;
  content: "";
  background: var(--colorSection);
  width: 150px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
}
.btn-2:hover {
  color: white;
}
.btn-2:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}
.btn-2:hover::before {
  top: -30px;
  left: -30px;
}

@media(max-width: 1200px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 992px) {
  .sectionContMain {
    flex-direction: column;
  }
  .sectionContBlok {
    flex-direction: row;
  }
  .sectionContBlokBox{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .gridComent {
    grid-template-columns: repeat(2, 1fr);
  }
  
}
@media(max-width: 767px) {
  .sectionContBlok {
    flex-direction: column;
  }
  .sectionFormImg {
    display: none;
  }
  .sectionRow {
    flex-direction: column;
  }
  .gridComent {
    grid-template-columns: repeat(1, 1fr);
  }
  .block_btn {
    flex-direction: row;
  }
  .sectionPolicy {
    flex-direction: row;
  }
}
@media(max-width: 575px) {
  .headerName {
    font-size: 30px;
  }
  .sectionPageContentImg {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .grid_item {
    padding: 1rem 0;
  }
  .card-top,
  .card-right,
  .card-bottom,
  .card-left {
    height: 300px;
    width: 300px;
  }
  .container {
    padding: 0;
  }
  .sectionPolicy a {
    font-size: 17px;
  }
  .slider-item-content h2 {
    font-size: 18px;
  }
  .menu-wrap .menu > div > div > ul > li {
    font-size: 17px;
  }
}
@media(max-width: 400px) {
  .card-top,
  .card-right,
  .card-bottom,
  .card-left {
    height: 270px;
    width: 270px;
  }
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.footer-logos a img {
  height: 50px;
  width: 100%;
  object-fit: contain;
  display: block;
}
footer {
  z-index: 1;
}

.sectionPageIfram{
  position: relative;
  z-index: 1;
}

.sectionFooter {
  position: relative;
}