:root {
  --ff: "Plus Jakarta Sans", sans-serif;
  --fs: 16px;
  --regular: 400;
  --semiBold: 600;
  --black: #000;
  --white: #fff;
  --w100: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  width: var(--w100);
  height: 100%;
  margin: 0;
  font-family: var(--ff);
  font-size: var(--fs);
  font-weight: var(--regular);
  color: var(--black);
  transition: 0.5s !important;
  background-image: url(../img/back-bg.png);
  background-position: 65% 0%;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (width <= 1400px) {
  html,
  body {
    background-position: 100% 0%;
    background-size: 53%, 100%;
  }
}

.container {
  min-width: auto;
  max-width: 1300px;
  padding: 0 clamp(0.94rem, 0.51vw + 0.84rem, 1.25rem);
  margin: 0 auto;
  box-sizing: border-box;
}

.main {
  display: flex;
  flex-direction: column;
}
.main .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 0;
  height: 100%;
}
.main .content .top {
  width: 100%;
  height: calc(100% - 350px);
  display: flex;
}
@media (width <= 800px) {
  .main .content .top {
    height: auto;
  }
}
.main .content .top header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  align-items: center;
}
.main .content .top header .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 450px;
  padding-top: 15px;
}
@media (width <= 800px) {
  .main .content .top header .left {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.main .content .top header .left .logo {
  margin-bottom: 20px;
}
@media (width <= 800px) {
  .main .content .top header .left .logo {
    display: flex;
    justify-content: center;
  }
}
.main .content .top header .left .logo img {
  max-width: 90%;
  display: block;
  transition: 0.5s;
}
@media (width <= 1400px) {
  .main .content .top header .left .logo img {
    width: 60%;
    transition: 0.5s;
  }
}
.main .content .top header .left h1 {
  font-size: clamp(1.25rem, 3.06vw + 0.64rem, 3.13rem);
  font-weight: var(--semiBold);
  text-transform: capitalize;
  line-height: clamp(1.56rem, 3.06vw + 0.95rem, 3.44rem);
}
.main .content .top header .left h1 span {
  display: block;
}
.main .content .top header .left h1 span b {
  color: #FF2A3F;
}
.main .content .top header .left p {
  color: #282828;
  line-height: 22px;
}
.main .content .top header .left p b {
  font-weight: var(--semiBold);
  color: #0A0A0A;
}
.main .content .top header .right {
  width: calc(100% - 500px);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (width <= 800px) {
  .main .content .top header .right {
    display: none;
  }
}
.main .content .top header .right img {
  max-width: 100%;
  position: relative;
  right: -20px;
}
@media (width <= 1400px) {
  .main .content .top header .right img {
    right: 0;
  }
}
.main .content .bottom {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: self-end;
  height: 350px;
}
@media (width <= 800px) {
  .main .content .bottom {
    height: auto;
  }
}
.main .content .bottom .features {
  width: var(--w100);
  height: 310px;
  gap: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  bottom: 0;
  left: 0;
}
@media (width <= 800px) {
  .main .content .bottom .features {
    height: auto;
    flex-direction: column;
    padding: 30px 0;
  }
}
.main .content .bottom .features .item {
  width: calc(20% - 20px);
  height: 170px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: var(--white);
  border: 8px solid #F7F7F7;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 10px 5px 10px;
  background-image: url(../img/itm-bg.png);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  overflow: hidden;
  transition: 0.5s;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width <= 800px) {
  .main .content .bottom .features .item {
    width: 100%;
    border-radius: 8px;
    border-bottom: 8px solid #F7F7F7;
    height: 230px;
  }
}
.main .content .bottom .features .item img {
  max-width: 50%;
}
.main .content .bottom .features .item h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}
.main .content .bottom .features .item h2 span {
  display: block;
}
.main .content .bottom .features .item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.main .content .bottom .features:not(.auto-playing) .item:nth-child(2), .main .content .bottom .features:not(.auto-playing) .item:nth-child(4) {
  height: 240px;
}
.main .content .bottom .features:not(.auto-playing) .item:nth-child(3) {
  height: 310px;
}
.main .content .bottom .features:not(.auto-playing) .item:nth-child(3) p {
  opacity: 1;
  max-height: 150px;
}
.main .content .bottom .features:not(.auto-playing):hover .item {
  height: 170px;
}
.main .content .bottom .features:not(.auto-playing):hover .item p:nth-child(3) {
  opacity: 0;
}
.main footer {
  width: var(--w100);
  background-color: var(--black);
  color: var(--white);
  font-size: 11px;
  z-index: 1;
}
.main footer .align {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.main .content .features .item {
  height: 170px;
  transition: all 0.4s ease;
}
.main .content .features .item.active,
.main .content .features .item:hover {
  height: 310px !important;
}
.main .content .features .item.active p,
.main .content .features .item:hover p {
  opacity: 1 !important;
  max-height: 170px;
  margin-top: 8px;
}

@media screen and (min-height: 850px) {
  .main {
    min-height: 100%;
    height: 100%;
  }
  .main .content header {
    height: calc(100% - 50px);
    height: 100%;
    justify-content: space-between;
  }
  .main .content header header {
    min-height: calc(100% - 350px);
    align-items: center;
  }
  .main .content header .features {
    height: 350px;
  }
  .main footer {
    bottom: 0;
    position: fixed;
  }
}/*# sourceMappingURL=style.css.map */