* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: capitalize;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

body {
  background: #320f58;
  overflow-x: hidden;
}

/* #ffde99 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.flex-1-1-40 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.flex-1-1-30 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
}

header .allHeader .mainHeader {
  min-height: 70px;
}

header .allHeader .mainHeader .logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

header .allHeader .mainHeader .menu ul li a {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  font-size: 17px;
}

header .allHeader .mainHeader .menu ul li a.active {
  color: #ffde99;
}

header .allHeader .mainHeader .toggle {
  font-size: 25px;
  color: #fff;
  display: none;
}

.imgOne {
  position: absolute;
  z-index: -1;
  animation: anim 2s linear infinite;
  -webkit-animation: anim 2s infinite alternate ease-in-out;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  -webkit-transform-origin: top;
          transform-origin: top;
  left: 0;
}

.imgOne img {
  width: 250px;
  height: 250px;
}

.imgtwo {
  position: absolute;
  z-index: -1;
  animation: anim 2s linear infinite;
  -webkit-animation: anim 2s infinite alternate ease-in-out;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  -webkit-transform-origin: top;
          transform-origin: top;
  right: 0;
}

.imgtwo img {
  width: 250px;
  height: 250px;
}

@-webkit-keyframes anim {
  from {
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
  }
  to {
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
  }
}

@keyframes anim {
  from {
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
  }
  to {
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
  }
}

main .contentHeader {
  padding: 100px 0;
  position: relative;
}

main .contentHeader .allContent .content .title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  font-size: 100px;
}

main .contentHeader .allContent .content .title span {
  color: #ffde99;
}

main .contentHeader .allContent .content .text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  padding: 15px 0;
  color: #c1b8b8;
}

main .contentHeader .allContent .content .btn {
  width: 170px;
  height: 40px;
  font-size: 17px;
  background-color: #ffde99;
  color: #030303;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  margin-top: 15px;
}

main .contentHeader .allContent .img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

main .contentHeader .icon1 {
  font-size: 60px;
  color: #fff;
}

main .contentHeader .item {
  position: absolute;
}

main .contentHeader .item1 {
  top: 0;
  left: 20%;
}

main .contentHeader .item2 {
  right: 20%;
  top: 20%;
  z-index: -1;
  opacity: 0.5;
}

main .contentHeader .item3 {
  top: 50%;
  left: 5%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  opacity: 0.2;
}

main .contentHeader .item4 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  opacity: 0.1;
}

main .contentHeader .item5 {
  right: 10%;
  opacity: 0.3;
}

/*** Small screen ***/
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/*** medium screen ***/
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/*** large screen ***/
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media screen and (max-width: 991px) {
  main .contentHeader .allContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main .contentHeader .allContent .content {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  main .contentHeader .allContent .img {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  main .contentHeader .allContent .img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  header .allHeader .mainHeader {
    min-height: 70px;
  }
  header .allHeader .mainHeader .logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
  }
  header .allHeader .mainHeader .menu {
    position: fixed;
    width: 15rem;
    background-color: #5a2437;
    height: 100vh;
    top: 0;
    left: -120%;
    bottom: 0;
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  header .allHeader .mainHeader .menu.active {
    left: 0;
  }
  header .allHeader .mainHeader .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .allHeader .mainHeader .menu ul li a {
    padding: 10px 0;
    display: block;
  }
  header .allHeader .mainHeader .toggle {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  main .contentHeader .allContent .content .title {
    font-size: 30px;
  }
  main .contentHeader .allContent .content .text {
    font-size: 13px;
  }
  main .contentHeader .item1 {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  main .contentHeader .item2 {
    display: none;
  }
  .imgOne img {
    width: 150px;
    height: 150px;
  }
  .imgtwo {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */