* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --firstColor: #580543;
  --secondColor: #090223;
}

body {
  font-family: "Almarai", sans-serif;
  background: linear-gradient(to right, var(--firstColor), var(--secondColor));
}

/* Container System */
.container {
  margin: auto;
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    width: 992px;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .container {
    width: 768px;
  }
}

@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}

/* Global Selector Style  */
.image-control {
  max-width: 100%;
  height: auto;
}

.submit-btn {
  color: white;
  background: var(--secondColor);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px 1px #110226bf;
  border: 1px solid #ffffff2b;
}

.section {
  padding-top: 20px;
  padding-bottom: 20px;
}

div.submit-button {
  padding-top: 15px;
  padding-bottom: 15px;
}

div.submit-button > a {
  background-color: white;
  color: var(--backgroundColorBody);
  padding: 15px 32px;
  border-radius: 30px;
  font-weight: 600;
}

div.submit-button > a > i {
  padding-right: 2px;
}

.fixed-whatsapp-button {
  position: fixed;
  right: 10px;
  bottom: 10px;
  padding: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 22px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Global Selector Style  */

/* header */
header {
  padding-top: 20px;
  border-bottom: 1px solid var(--secondColor);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav > a.logo > img {
  max-width: 100px;
}

.submit-btn > i {
  padding-right: 2px;
}

/* header */

/* [custome-section] Start */
.custome-section .seo-title h2 {
  text-align: center;
  color: white;
  padding: 10px 0px;
  width: fit-content;
  margin: auto;
}

.custome-section .seo-title h2 span {
  color: #ffb93e;
}

.loss-section {
  color: white;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
}

@media (max-width: 992px) {
  .loss-section {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.loss-section > div:nth-child(1) {
  position: relative;
  min-height: 430px;
}

@media (max-width: 992px) {
  .loss-section > div:nth-child(1) {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .loss-section > div:nth-child(1) {
    min-height: 360px;
  }
}

.loss-section > div:nth-child(1) .animation-one {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.loss-section .clock-infinite {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
}

.loss-section > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loss-section > div:nth-child(2) h2 {
  color: rgb(255, 0, 0);
  font-size: 35px;
  font-weight: bold;
  margin-bottom: -15px;
}

.loss-section .growth-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

@media (max-width: 767px) {
  .loss-section .growth-image svg {
    width: 100% !important;
  }
}

/* [custome-section] End */

/* section-01 */
.fixed-banner div.submit-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* section-01 */
