@import "_base.css";
@import "_grid.css";
@import "_form.css";
@import "_nav.css";
@import "_card.css";
@import "_tab.css";
@import "_tag.css";
@import "_dropdown.css";
@import "_util.css";
@import "_buttons.css";
@import "_hovers.css";
@import "_animations.css";
@import "_global.css";
@import "_collapse.css";
@import "_popups.css";
@import "_slider.css";
@import "_shadow.css";

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

html {
  padding: 0;
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  padding: 0;
  margin: 0;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #212121;
}
a {
  color: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}
.item-mobile {
  display: none;
}
.logo-box img {
  animation: moveAndRotate 2s linear forwards;
  animation-delay: 1s;
  transform: translateX(110vw) rotate(0deg);
}
.container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

.section-banner {
  background-image: url(../img/pg-1/bg1-d.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100dvh;
  width: 100%;
  padding: 50px 0px 30px;
  position: relative;
}

.section-banner .container {
  max-width: 1440px;
  width: 100%;
}
.banner-info {
  margin: 0 auto 0;
  z-index: 2;
  position: relative;
}
.banner-info .title-text {
  color: var(--text-main);
  font-weight: bolder;
}

@media (max-width: 1440px){
  .gap-xxl{
    gap: 16px !important;
  }
}
@media (max-width: 1024px) {
  .section-banner{
    min-height: 960px;
  }
  .h1-title {
    font-size: 5vw;
    line-height: 50px;
  }
  .title-text{
    font-size: 5vw;
    line-height: 50px;
  }
  .gap-xxl{
    gap: 20px !important;
  }
  .container.flex-center-right{
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .section-banner{
    min-height: 960px;
  }
 .section-banner .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .row .item{
    width: 100%;
    max-width: 100%;
  }
  .title-main{
    font-size: 70px;
  }
  .title-subtext {
    font-size: 44px;
  }
  .items-list .item-title{
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
 .title-items.pb-40{
    padding-bottom: 30px !important;
 }
  .title-main.pb-lg{
    padding-bottom: 5px !important;
  }
  .items-list .item-title{
    font-size: 18px;
  }
  .items-list .item {
    margin: 0 !important;
  }
}
@media screen and (max-width: 390px) {
  .section-banner {
		height: 820px;
	}
  .title-main{
    font-size: 60px;
  }
  .title-subtext {
    font-size: 40px;
  }
  .section-banner{
    padding: 30px 0px 30px;
  }
}

@keyframes rotate90-smooth {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(90deg);
  }
  75% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes scaleed {
  0% {
    transform: scale(0.9); /* Начальный размер */
  }
  100% {
    transform: scale(1); /* Возвращаем к начальному размеру */
  }
}
@keyframes rotate90 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes scaleed {
  0% {
    transform: scale(0.9); /* Начальный размер */
  }
  100% {
    transform: scale(1); /* Возвращаем к начальному размеру */
  }
}
@keyframes moveAndRotate {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@-webkit-keyframes moveLight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
  21% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes moveLight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
  21% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes lights {
  50% {
    opacity: 1;
  }
}
@keyframes lights {
  50% {
    opacity: 1;
  }
}
