@font-face {
  font-family: 'Cairo';
  src: url('../webfonts/Cairo-Bold.woff2') format('woff2'),
    url('../webfonts/Cairo-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../webfonts/Cairo-Regular.woff2') format('woff2'),
    url('../webfonts/Cairo-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../webfonts/Cairo-SemiBold.woff2') format('woff2'),
    url('../webfonts/Cairo-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: 'Cairo';
  transition: all 0.5s ease-in-out;
}

body {
  background: #FFFFFF;
  background: linear-gradient(90deg, #5c9f86 0%, rgba(170, 189, 182, 0.7) 10%, rgba(255, 255, 255, 1) 100%);

  height: 100vh;
  margin: 0;
  box-shadow: inset 0px 150px 200px #fff
}
::selection{
  background-color: #358769;
  color: #fff;
  text-shadow: none
}

img {
  max-width: 100%;
}

.allpage {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}

.right {
  height: 100vh;
  border-top-left-radius: 10%;
  border-bottom-left-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 50px 30px #fff
}



.right img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  display: block;
  object-position: bottom
}

.leftlist li {
  list-style-type: none !important;
  display: block;
}

.leftlist {
  display: flex;
  flex-direction: column;
  justify-content: right !important;
  text-align: right;
  gap: 13px;
  max-width: 70%;
  margin: 0 auto;
  padding: 0;
  direction: rtl
}

.leftlist li i {
  font-weight: 400 !important;
  font-size: 27px;
  vertical-align: middle;
  margin-left: 10px;
}

.leftlist li a {
  color: #30755c !important;
  font-weight: bold;
  font-size: 20px;
}

.leftlist li {
  font-size: 1.15rem;
  text-shadow: 0px 0px 5px #fff
}
.leftlist li:first-child{
  line-height: 35px;
}

.soonly {
  position: absolute;
  top: 20px;
  left: -40px;
  transform: rotate(-50deg);
  background-color: #ad1e39;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding-bottom: 10px
}

.soonly:before {
  content: '';
  background-color: #ad1e39;
  display: block;
  width: 150px;
  height: 100px;
  position: absolute;
  top: -77px;
  left: -40px;
  z-index: -1
}

.left img {
  max-width: 833px;
  max-height: 348px;
  object-fit: contain;
  width: 100%;
}
.imgpulse{
  width: 38px;
  height: 38px;
  background-color: #358769;
  top: 50px;
  right: 39.3%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.leftlist li:hover i{
  color: #ad1e39
}
.leftlist li:not(:first-child):hover{


}
.soonopen{
  bottom: 10%;
  background-color: #ad1e39;
  left: 0;
  right: 0;
  width: 255px;
  font-size: 1.3rem
}
.soonopen:hover{
  width: 300px;
}
.soonopen:before{
  content: '';
  position: absolute;
  background: #FFFF;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(49, 64, 91, 0) 100%);
  width: 90px;
  height: 61px;
  top: 1px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  animation: linemove 2s linear infinite;
  z-index: 1;
}
@keyframes linemove {
  0% {
    opacity: 0;
    transform: translateX(100%);  
  }
  50% {
    opacity: 1;
    transform: translateX(0); 
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);  
  }
}





.configure-border-1 {
  width: 50px;
  height: 50px;
  padding: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #358769;
  animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
  border-radius: 5px;
}

.configure-border-2 {
  border-radius: 5px;
  width: 50px;
  height: 50px;
  padding: 3px;
  left: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ad1e39;
  transform: rotate(45deg);
  animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}

.configure-core {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

@keyframes configure-clockwise {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg);
  }

  25% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(-135deg);
  }

  75% {
    transform: rotate(-225deg);
  }

  100% {
    transform: rotate(-315deg);
  }
}
.animate {
  transform: translateY(25px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.animate.in-view {
  transform: translateY(0px);
  opacity: 1
}


@media (min-width: 1110px) and (max-width: 1460px) {
    .imgpulse {
    width: 30px;
    height: 30px;
    top: 14%;
    right: 39%;
  }
  .right img, .right{
    border-bottom-left-radius: 10% !important;
  }
}
@media (min-width: 993px) and (max-width: 1110px) {
    .imgpulse {
    width: 30px;
    height: 30px;
    top: 12%;
    right: 38.5%;
  }
  .right img, .right{
    border-bottom-left-radius: 10% !important;
  }
}

@media (min-width: 700px) and (max-width: 750px) {
    .imgpulse {
    width: 30px;
    height: 30px;
    top: 14%;
    right: 39%;
  }
}
@media (min-width: 500px) and (max-width: 700px) {
    .imgpulse {
    width: 30px;
    height: 30px;
    top: 14%;
    right: 39%;
  }
}
@media (min-width: 380px) and (max-width: 500px) {
    .imgpulse {
    width: 30px;
    height: 30px;
    top: 10%;
    right: 38.5%;
  }
}
@media (min-width: 200px) and (max-width: 380px) {
    .imgpulse {
    width: 20px;
    height: 20px;
    top: 10%;
    right: 38.5%;
  }
}
@media (min-width: 200px) and (max-width: 678px) {
  .left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .leftlist li{
    text-align: justify !important;
  }
 
  .leftlist{
    max-width: 90%
  }
  body{
    align-items: center;
    display: flex;
  }
}