* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.layout {
  margin-top: 7%;
  max-width: 1200px;
  margin-bottom: 50px;
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: fixed;
  top: 50px;
  max-width: 1200px;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  padding: 10px 15px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.315);
  border-radius: 3px;
}
.header .header__right {
  width: 35%;
}
.header .header__right .navbar ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.header .header__right .navbar ul li a {
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 300ms ease;
  position: relative;
  color: #151153;
}
.header .header__right .navbar ul li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F25D54;
  transition: all 300ms ease;
}
.header .header__right .navbar ul li a:hover::before {
  width: 100%;
}
.header .header__right .navbar ul li a:hover {
  color: #F25D54;
}

.main {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}
.main .main__left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .main__left .main__left-top {
  transition-delay: 1.4s;
  overflow: hidden;
}
.main .main__left .main__left-top img {
  width: 100%;
  transition: all 500ms ease;
}
.main .main__left .main__left-top img:hover {
  transform: scale(1.2);
}
.main .main__left .main__left-bottom {
  display: flex;
  transition-delay: 1.4s;
}
.main .main__left .main__left-bottom .mainL__botom-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .main__left .main__left-bottom .mainL__botom-left h2 {
  font-size: 5rem;
  line-height: 0.9;
  text-align: left;
}
.main .main__left .main__left-bottom .mainL__bottom-right {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0px 35px;
}
.main .main__left .main__left-bottom .mainL__bottom-right p {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 20px;
}
.main .main__left .main__left-bottom .mainL__bottom-right a {
  text-decoration: none;
  text-transform: uppercase;
  background-color: #F25D54;
  color: #151153;
  width: 70%;
  text-align: center;
  padding: 15px 10px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 4px;
  transition: all 300ms ease;
}
.main .main__left .main__left-bottom .mainL__bottom-right a:hover {
  transform: scale(1.05);
  background: #151153;
  color: #F25D54;
}
.main .main__right {
  width: 30%;
  background-color: #00011A;
  padding: 20px;
  transition-delay: 1.4s;
}
.main .main__right h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: rgb(134, 134, 77);
}
.main .main__right .main__right-div {
  max-height: 25%;
  margin-bottom: 25px;
  border-bottom: 1px solid black;
}
.main .main__right .main__right-div h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}
.main .main__right .main__right-div p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.568);
  line-height: 2;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.568);
  padding-bottom: 40px;
}
.main .main__right .last p {
  border-bottom: none;
}

.footer {
  display: flex;
  justify-content: space-evenly;
}
.footer .footer__div {
  display: flex;
  padding: 20px;
  transition-delay: 1.4s;
}
.footer .footer__div .footer__div-left {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer__div .footer__div-left img {
  width: 70%;
}
.footer .footer__div .footer__div-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
  padding-left: 5px;
  padding-right: 20px;
}
.footer .footer__div .footer__div-right span {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer .footer__div .footer__div-right h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: all 300ms ease;
  cursor: pointer;
}
.footer .footer__div .footer__div-right h3:hover {
  color: #F25D54;
}
.footer .footer__div .footer__div-right p {
  font-size: 1.3rem;
}

.news {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  margin-bottom: 150px;
}
.news h2 {
  color: #f25d54;
  font-size: 70px;
  text-align: center;
}
.news .section1,
.news .section2 {
  display: flex;
  padding: 70px 35px;
  padding-bottom: 50px;
  gap: 30px;
}
.news .section1 .section1__left-div,
.news .section1 .section2__right-div,
.news .section2 .section1__left-div,
.news .section2 .section2__right-div {
  width: 50%;
  overflow: hidden;
}
.news .section1 .section1__left-div img,
.news .section1 .section2__right-div img,
.news .section2 .section1__left-div img,
.news .section2 .section2__right-div img {
  width: 100%;
  transition: all 500ms ease;
}
.news .section1 .section1__left-div img:hover,
.news .section1 .section2__right-div img:hover,
.news .section2 .section1__left-div img:hover,
.news .section2 .section2__right-div img:hover {
  transform: scale(1.1);
}
.news .section1 .section1__right-div,
.news .section1 .section2__left-div,
.news .section2 .section1__right-div,
.news .section2 .section2__left-div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news .section1 .section1__right-div h2,
.news .section1 .section2__left-div h2,
.news .section2 .section1__right-div h2,
.news .section2 .section2__left-div h2 {
  color: #f25d54;
  font-size: 25px;
  margin-bottom: 15px;
}
.news .section1 .section1__right-div p,
.news .section1 .section2__left-div p,
.news .section2 .section1__right-div p,
.news .section2 .section2__left-div p {
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(21, 17, 83, 0.5803921569);
}

.contact {
  margin-top: 200px;
  padding-top: 200px;
  margin-bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact h2 {
  text-transform: capitalize;
  color: #f25d54;
  font-size: 60px;
  margin-bottom: 20px;
}
.contact .contact__content {
  display: flex;
}
.contact .contact__content .contact__content-left {
  width: 50%;
}
.contact .contact__content .contact__content-left form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.contact .contact__content .contact__content-left form .form__info {
  display: flex;
  gap: 50px;
}
.contact .contact__content .contact__content-left form .form__info .form__info-sinputs {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact__content .contact__content-left form .form__info .form__info-sinputs label {
  font-size: 20px;
  color: #151153;
  margin-bottom: 10px;
  margin-top: 10px;
}
.contact .contact__content .contact__content-left form .form__info .form__info-sinputs input {
  padding: 5px 5px;
  width: 110%;
  border: none;
  border-bottom: 1px solid #151153;
}
.contact .contact__content .contact__content-left form .form__info .form__info-textarea {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .contact__content .contact__content-left form .form__info .form__info-textarea label {
  font-size: 20px;
  color: #151153;
  margin-bottom: 10px;
  margin-top: 10px;
}
.contact .contact__content .contact__content-left form .form__info .form__info-textarea textarea {
  min-height: 180px;
  max-height: 180px;
  min-width: 180px;
  max-width: 180px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #151153;
}
.contact .contact__content .contact__content-left form button {
  margin-top: 20px;
  width: 30%;
  color: #151153;
  background-color: #F25D54;
  padding: 10px 0;
  font-weight: bold;
  font-size: 17px;
  text-transform: capitalize;
  border: none;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 300ms ease;
}
.contact .contact__content .contact__content-left form button:hover {
  color: #F25D54;
  background: #151153;
  transform: scale(1.07);
}
.contact .contact__content .contact__content-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact__content .contact__content-right img {
  width: 100%;
}

.trending {
  padding-top: 150px;
}
.trending .trending__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trending .trending__content .trending__content-left,
.trending .trending__content .trending__content-right {
  display: flex;
}
.trending .trending__content .trending__content-left .img,
.trending .trending__content .trending__content-right .img {
  width: 50%;
}
.trending .trending__content .trending__content-left .img img,
.trending .trending__content .trending__content-right .img img {
  width: 100%;
}
.trending .trending__content .trending__content-left .txt,
.trending .trending__content .trending__content-right .txt {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trending .trending__content .trending__content-left .txt h2,
.trending .trending__content .trending__content-right .txt h2 {
  color: #F25D54;
  font-size: 70px;
}
.trending .trending__content .trending__content-left .txt p,
.trending .trending__content .trending__content-right .txt p {
  font-size: 20px;
  color: rgba(21, 17, 83, 0.5803921569);
}

#us {
  background-color: #151153;
  width: 100%;
  padding: 50px 0px;
}
#us p {
  color: #F25D54;
  font-size: 15px;
}

.relase {
  margin-top: 150px;
  margin-bottom: 250px;
  text-align: center;
}
.relase h2 {
  color: #F25D54;
  text-transform: capitalize;
  font-size: 50px;
  margin-bottom: 35px;
}
.relase div {
  font-size: 50px;
}

.toTop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: transparent;
  border: 1px solid #151153;
  padding: 10px;
  border-radius: 50%;
  color: #F25D54;
  font-size: 20px;
  cursor: pointer;
}

.coverLeft {
  width: 50vw;
  height: 100vh;
  background-color: #f25d54;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9999;
  animation: coverLeftAnimate 1s linear forwards;
  animation-delay: 1s;
}

.coverRight {
  width: 50vw;
  height: 100vh;
  background-color: #151153;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9999;
  animation: coverRightAnimate 1s linear forwards;
  animation-delay: 1s;
}
.coverRight .sharingon {
  position: absolute;
  top: 45%;
  left: -4.5%;
  width: 9em;
  height: 9em;
  background-color: red;
  border: 6px solid black;
  animation: rot 1s ease-in-out infinite;
}
.coverRight .ring {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 3.5em;
  height: 3.5em;
  border: 4px solid rgba(110, 13, 13, 0.5);
  transform: translate(-50%, -50%);
}
.coverRight .sharingon,
.coverRight .ring,
.coverRight .to,
.coverRight .circle {
  border-radius: 50%;
}
.coverRight .to,
.coverRight .circle {
  position: absolute;
  content: "";
  width: 0.9em;
  height: 0.9em;
  background-color: black;
}
.coverRight .to:nth-child(1) {
  top: -0.5em;
  left: 50%;
  transform: translate(-40%);
}
.coverRight .to::before {
  content: "";
  position: absolute;
  top: -0.5em;
  right: -0.2em;
  width: 1.1em;
  height: 0.9em;
  box-sizing: border-box;
  border-left: 16px solid black;
  border-radius: 100% 0 0;
}
.coverRight .to:nth-child(2) {
  bottom: 0.5em;
  left: -0.35em;
  transform: rotate(-120deg);
}
.coverRight .to:nth-child(3) {
  bottom: 0.5em;
  right: -0.35em;
  transform: rotate(120deg);
}
.coverRight .circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px 1px;
  width: 1em;
  height: 1em;
}
@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes coverLeftAnimate {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes coverRightAnimate {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(100%);
  transition: all 1s ease;
}

.hidden2 {
  visibility: hidden;
  filter: blur(5px);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.show2 {
  visibility: visible;
  filter: blur(0);
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
.background {
  position: relative;
  top: 0;
  left: 0;
  background: #00011a;
  overflow: hidden;
}

.background span {
  width: 1vmin;
  height: 1vmin;
  border-radius: 1vmin;
  backface-visibility: hidden;
  position: absolute;
  animation: move;
  animation-duration: 45;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.background span:nth-child(0) {
  color: #f25d54;
  top: 74%;
  left: 55%;
  animation-duration: 8s;
  animation-delay: -45s;
  transform-origin: -9vw -14vh;
  box-shadow: -2vmin 0 0.7176057166vmin currentColor;
}

.background span:nth-child(1) {
  color: #f25d54;
  top: 37%;
  left: 99%;
  animation-duration: 55s;
  animation-delay: -36s;
  transform-origin: 5vw 21vh;
  box-shadow: -2vmin 0 0.3303597471vmin currentColor;
}

.background span:nth-child(2) {
  color: #86864d;
  top: 52%;
  left: 70%;
  animation-duration: 43s;
  animation-delay: -21s;
  transform-origin: 25vw 1vh;
  box-shadow: 2vmin 0 1.062626257vmin currentColor;
}

.background span:nth-child(3) {
  color: #86864d;
  top: 87%;
  left: 19%;
  animation-duration: 55s;
  animation-delay: -4s;
  transform-origin: 19vw 23vh;
  box-shadow: -2vmin 0 0.2891175898vmin currentColor;
}

.background span:nth-child(4) {
  color: #86864d;
  top: 94%;
  left: 3%;
  animation-duration: 14s;
  animation-delay: -33s;
  transform-origin: 22vw -7vh;
  box-shadow: 2vmin 0 0.3558544683vmin currentColor;
}

.background span:nth-child(5) {
  color: #f25d54;
  top: 35%;
  left: 22%;
  animation-duration: 6s;
  animation-delay: -39s;
  transform-origin: -19vw -22vh;
  box-shadow: 2vmin 0 0.3167902232vmin currentColor;
}

.background span:nth-child(6) {
  color: #86864d;
  top: 71%;
  left: 76%;
  animation-duration: 39s;
  animation-delay: -2s;
  transform-origin: 10vw -17vh;
  box-shadow: -2vmin 0 0.6449930611vmin currentColor;
}

.background span:nth-child(7) {
  color: #86864d;
  top: 86%;
  left: 80%;
  animation-duration: 30s;
  animation-delay: -6s;
  transform-origin: 24vw -4vh;
  box-shadow: 2vmin 0 1.2456125475vmin currentColor;
}

.background span:nth-child(8) {
  color: #86864d;
  top: 40%;
  left: 47%;
  animation-duration: 11s;
  animation-delay: -46s;
  transform-origin: -8vw 17vh;
  box-shadow: 2vmin 0 1.2125505761vmin currentColor;
}

.background span:nth-child(9) {
  color: #ffffff;
  top: 79%;
  left: 68%;
  animation-duration: 38s;
  animation-delay: -3s;
  transform-origin: -1vw 9vh;
  box-shadow: -2vmin 0 1.0684925318vmin currentColor;
}

.background span:nth-child(10) {
  color: #ffffff;
  top: 96%;
  left: 31%;
  animation-duration: 38s;
  animation-delay: -26s;
  transform-origin: 23vw 0vh;
  box-shadow: 2vmin 0 0.6420133016vmin currentColor;
}

.background span:nth-child(11) {
  color: #f25d54;
  top: 33%;
  left: 73%;
  animation-duration: 46s;
  animation-delay: -40s;
  transform-origin: -4vw -4vh;
  box-shadow: -2vmin 0 0.5563301217vmin currentColor;
}

.background span:nth-child(12) {
  color: #86864d;
  top: 24%;
  left: 80%;
  animation-duration: 42s;
  animation-delay: -18s;
  transform-origin: -1vw 16vh;
  box-shadow: 2vmin 0 1.0649284686vmin currentColor;
}

.background span:nth-child(13) {
  color: #f25d54;
  top: 69%;
  left: 55%;
  animation-duration: 43s;
  animation-delay: -24s;
  transform-origin: 19vw -23vh;
  box-shadow: 2vmin 0 0.3588955344vmin currentColor;
}

.background span:nth-child(14) {
  color: #86864d;
  top: 13%;
  left: 12%;
  animation-duration: 48s;
  animation-delay: -34s;
  transform-origin: -21vw 15vh;
  box-shadow: -2vmin 0 0.95638459vmin currentColor;
}

.background span:nth-child(15) {
  color: #ffffff;
  top: 93%;
  left: 26%;
  animation-duration: 17s;
  animation-delay: -36s;
  transform-origin: 9vw -6vh;
  box-shadow: -2vmin 0 0.5551499992vmin currentColor;
}

.background span:nth-child(16) {
  color: #ffffff;
  top: 63%;
  left: 90%;
  animation-duration: 38s;
  animation-delay: -15s;
  transform-origin: -2vw 25vh;
  box-shadow: -2vmin 0 0.9997279883vmin currentColor;
}

.background span:nth-child(17) {
  color: #ffffff;
  top: 40%;
  left: 94%;
  animation-duration: 12s;
  animation-delay: -2s;
  transform-origin: -13vw -17vh;
  box-shadow: -2vmin 0 1.0665255489vmin currentColor;
}

.background span:nth-child(18) {
  color: #ffffff;
  top: 8%;
  left: 49%;
  animation-duration: 41s;
  animation-delay: -2s;
  transform-origin: -10vw -14vh;
  box-shadow: 2vmin 0 0.9458215001vmin currentColor;
}

.background span:nth-child(19) {
  color: #ffffff;
  top: 55%;
  left: 10%;
  animation-duration: 20s;
  animation-delay: -48s;
  transform-origin: -4vw 23vh;
  box-shadow: -2vmin 0 1.2464176884vmin currentColor;
}

.background span:nth-child(20) {
  color: #86864d;
  top: 82%;
  left: 72%;
  animation-duration: 14s;
  animation-delay: -43s;
  transform-origin: 0vw 11vh;
  box-shadow: -2vmin 0 1.0654506801vmin currentColor;
}

@media (max-width: 1440px) {
  .layout {
    margin-top: 11%;
    max-width: 1200px;
    margin-bottom: 50px;
    position: relative;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    top: 50px;
    max-width: 1200px;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.315);
    border-radius: 3px;
    position: fixed !important;
  }
}
@media (max-width: 1024px) {
  body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
  }
  .layout {
    margin-top: 15%;
    max-width: 900px;
    margin-bottom: 50px;
    position: relative;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    top: 50px;
    max-width: 900px;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.315);
    border-radius: 3px;
    position: static;
  }
  .header .header__right {
    width: 55%;
  }
  .main {
    display: flex;
    gap: 25px;
    margin-bottom: 0px;
  }
  .main .main__left {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .main .main__right {
    width: 30%;
    background-color: #00011A;
    padding: 20px;
    transition-delay: 1.4s;
    height: 50%;
  }
  .main .main__right .main__right-div {
    max-height: 20%;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
  }
  .main .main__right .main__right-div p {
    color: rgba(255, 255, 255, 0.568);
    line-height: 1.6;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.568);
    padding-bottom: 15px;
  }
  .main .main__right {
    width: 30%;
    background-color: #00011A;
    padding: 10px 20px;
    transition-delay: 1.4s;
    height: 50%;
  }
  .footer .footer__div {
    display: flex;
    padding: 20px;
    transition-delay: 1.4s;
    width: 100%;
  }
  .footer .minidiv .footer__div-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 10px;
  }
  .footer .minidiv .footer__div-right p {
    font-size: 1.2rem;
  }
  .main .main__left .main__left-bottom .mainL__bottom-right a {
    text-decoration: none;
    font-size: 1.3rem;
  }
  .news {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .contact {
    margin-top: 100px;
    padding-top: 0px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .relase {
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
  }
  .relase h2 {
    color: #F25D54;
    text-transform: capitalize;
    font-size: 40px;
    margin-bottom: 35px;
  }
  .relase div {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .layout {
    margin-top: 20%;
    max-width: 650px;
    margin-bottom: 50px;
    position: relative;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    top: 50px;
    max-width: 650px;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.315);
    border-radius: 3px;
    position: static;
  }
  .header .header__right .navbar ul li a {
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 300ms ease;
    position: relative;
    color: #151153;
  }
  .main .main__left {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-around;
  }
  .main .main__left .main__left-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition-delay: 1.4s;
    gap: 20px;
  }
  .main .main__left .main__left-bottom .mainL__botom-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main .main__left .main__left-bottom .mainL__botom-left h2 {
    font-size: 4.5rem;
    line-height: 0.9;
    text-align: left;
  }
  .main .main__left .main__left-bottom .mainL__bottom-right {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px 35px;
  }
  .main .main__left .main__left-bottom .mainL__bottom-right p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .main .main__left .main__left-bottom .mainL__bottom-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 35px;
  }
  .footer .footer__div .footer__div-left {
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .footer .footer__div {
    display: flex;
    padding: 10px 10px;
    transition-delay: 1.4s;
    width: 100%;
  }
  .news .section1,
  .news .section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 35px;
    padding-bottom: 50px;
    gap: 30px;
  }
  .news .section1 .section1__right-div,
  .news .section1 .section2__left-div,
  .news .section2 .section1__right-div,
  .news .section2 .section2__left-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .trending .trending__content .trending__content-left .txt p,
  .trending .trending__content .trending__content-right .txt p {
    font-size: 15px;
    color: rgba(21, 17, 83, 0.5803921569);
  }
}
@media (max-width: 425px) {
  .header {
    display: none;
  }
  .layout {
    margin-top: 10%;
    max-width: 400px;
    margin-bottom: 50px;
    position: relative;
  }
  .main {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0px;
  }
  .main .main__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-around;
  }
  .main .main__right {
    width: 100%;
    background-color: #00011A;
    padding: 10px 20px;
    transition-delay: 1.4s;
    height: 50%;
  }
  .footer .footer__div {
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    transition-delay: 1.4s;
    width: 100%;
  }
  .news .section1 .section1__left-div,
  .news .section1 .section2__right-div,
  .news .section2 .section1__left-div,
  .news .section2 .section2__right-div {
    width: 100%;
    overflow: hidden;
  }
  .contact .contact__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact .contact__content .contact__content-left {
    width: 90%;
  }
  .contact .contact__content .contact__content-left form .form__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact .contact__content .contact__content-right {
    display: none;
  }
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .contact .contact__content .contact__content-left form .form__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .contact .contact__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .contact .contact__content .contact__content-left form .form__info .form__info-textarea {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact .contact__content .contact__content-left form button {
    margin-top: 20px;
    width: 50%;
    color: #151153;
    background-color: #F25D54;
    padding: 10px 0;
    font-weight: bold;
    font-size: 17px;
    text-transform: capitalize;
    border: none;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 300ms ease;
  }
  .contact .contact__content .contact__content-left form .form__info .form__info-textarea textarea {
    min-height: 200px;
    max-height: 200px;
    min-width: 100%;
    max-width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #151153;
  }
  .trending .trending__content .trending__content-left,
  .trending .trending__content .trending__content-right {
    display: flex;
    flex-direction: column;
  }
  .trending .trending__content .trending__content-left .img,
  .trending .trending__content .trending__content-right .img {
    width: 100%;
  }
  .trending .trending__content .trending__content-left .txt,
  .trending .trending__content .trending__content-right .txt {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .layout {
    margin-top: 10%;
    max-width: 350px;
    margin-bottom: 50px;
    position: relative;
  }
  .relase h2 {
    color: #F25D54;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 35px;
  }
  .relase div {
    font-size: 17px;
  }
}
@media (max-width: 320px) {
  .layout {
    margin-top: 10%;
    max-width: 300px;
    margin-bottom: 50px;
    position: relative;
  }
  .contact h2 {
    text-transform: capitalize;
    color: #f25d54;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .relase h2 {
    color: #F25D54;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 35px;
  }
  .news .section1 .section1__right-div p,
  .news .section1 .section2__left-div p,
  .news .section2 .section1__right-div p,
  .news .section2 .section2__left-div p {
    font-size: 12px;
    margin-bottom: 10px;
    color: rgba(21, 17, 83, 0.5803921569);
  }
  .relase div {
    font-size: 17px;
  }
  .trending .trending__content .trending__content-left .txt h2,
  .trending .trending__content .trending__content-right .txt h2 {
    color: #F25D54;
    font-size: 40px;
  }
  .contact h2 {
    text-transform: capitalize;
    color: #f25d54;
    font-size: 35px;
    margin-bottom: 20px;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */