@font-face {
  font-family: "al-ameen";
  src: url("../fonts/primary-bold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "al-ameen";
  src: url("../fonts/primary-regular.ttf");
  font-weight: 400;
}

:root {
  scroll-behavior: smooth;
  --font: "al-ameen";
  --primary-color: #FF0D19
}

body {
  font-family: var(--font);
  background-color: #000000;
  color: #fff;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

/*--------------------------------------------------------------
# HEADER SECTION
--------------------------------------------------------------*/
header.al_ameen__header {
  padding: 35px 0;
}

header.al_ameen__header .contact__number {
  display: flex;
  align-items: center;
  /* min-width: 170px; */
  justify-content: space-between;
}

a.ctNumber {
  border-radius: 5px;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  padding: 4px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin-right: 18px;
  font-size: 18px;
}
a.ctNumber:hover{
  border-radius: 5px;
  background: transparent;
  border: 2px solid var(--primary-color);
}

a.ctNumber img {
  margin-right: 6px;
  height: 18px;
}

header.al_ameen__header .langSwitcher .change_lang {
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  padding: 8px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  align-items: center;
  cursor: pointer;
}

header.al_ameen__header a.change_lang.active {
  border: 1px solid var(--primary-color);
}

.d-md-none {
  display: none !important;
}

.d-md-block {
  display: block;
}

/*--------------------------------------------------------------
# BANNER SECTION
--------------------------------------------------------------*/
section.al_ameen__banner {
  width: 100%;
  height: 100vh;
  background-size: cover;
  align-items: center;
  display: flex;
  position: relative;
}

section.al_ameen__banner .banner__content {
  text-align: left;
  margin-top: 100px;
}

section.al_ameen__banner .banner__content h1 {
  font-size: 35px;
  font-weight: bold;
}

section.al_ameen__banner .banner__content p {
  color: #B9B9B9;
  line-height: 1.5;
  font-size: 15px;
}

section.al_ameen__banner .download__icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--primary-color);
  margin-top: 34px;
  padding-right: 50px;
  width: 80%;
  margin-right: auto;
}

section.al_ameen__banner .download__icons img {
  height: 40px;
  margin: 30px 0px 50px 0px;
  transition: 0.3s all ease-in-out;
}
section.al_ameen__banner .download__icons img.playstore:hover{
  transform: scale(1.1);
  cursor: pointer;
}
section.al_ameen__banner .download__icons img.appstore:hover{
  transform: scale(1.1);
  cursor: pointer;
}

section.al_ameen__banner .social__links .icon {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  opacity: 1;
  transition: .3s;
}

section.al_ameen__banner .social__links .icon img {
  height: 45px;
}

section.al_ameen__banner .social__links .icon p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  margin-top: 7px;
  color: white;
  white-space: nowrap;
}

section.al_ameen__banner .social__links .col-md-2 {
  padding: 0;
}

section.al_ameen__banner .social__links .icon:hover {
  cursor: pointer;
  background: var(--primary-color);
  opacity: 1;
}

section.al_ameen__banner .social__links {
  margin-top: 35px;
}

section.al_ameen__banner .banner__image img {
  width: 100%;
}

section.al_ameen__banner .banner__image {
  position: absolute;
  right: 3rem;
  width: 104%;
  bottom: -21rem;
}

section.al_ameen__banner .left__vector {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

section.al_ameen__banner .left__vector img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

section.al_ameen__banner .right__vector {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

section.al_ameen__banner .right__vector img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

/* RESPONSIVE */
@media only screen and (max-width: 600px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  header.al_ameen__header .contact__number {
    justify-content: right;
    min-width: 100px;
  }

  section.al_ameen__banner .banner__content {
    display: none;
  }

  section.al_ameen__banner .banner__image {
    display: none;
  }

  section.al_ameen__banner .download__icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: none;
    margin-top: 0;
    padding-left: 0;
    flex-direction: column-reverse;
    width:100%;
    padding: 0 !important;
  }

  section.al_ameen__banner .download__icons img {
    height: 55px;
    margin: 30px 0px 0px 0px;
  }

  section.al_ameen__banner .download__icons img:last-child {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 23px;
    object-fit: contain;
    height: 84px;
  }

  section.al_ameen__banner .social__links .icon {
    text-align: center;
    padding: 15px;
    border-radius: 2px;
    opacity: 1;
    transition: .3s;
    background: #1A1A1A;
    margin: 5px;
  }

  section.al_ameen__banner .social__links .col-md-2 {
    padding: 4px;
  }

  section.al_ameen__banner .right__vector {
    display: none;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .social__links {
    width: 66%;
    margin: 0 auto;
  }



  a.logo img {
    height: 44px;
  }

  a.ctNumber {
    font-size: 16px;
    color: #fff;
    padding: 4px 12px;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto !important;
    margin-bottom: 20px;
  }

  header.al_ameen__header {
    padding: 16px 0;
  }

 
  section.al_ameen__banner {
    height: auto;
  }

  section.al_ameen__banner .social__links {
    margin-bottom: 50px;
  }

  header.al_ameen__header.fixed-top {
    position: initial !important;
  }
}

@media only screen and (min-width: 10px) and (max-width: 280px) {
  section.al_ameen__banner .download__icons img:last-child {
    height: 70px;
  }

  section.al_ameen__banner .download__icons img {
    height: 40px;
  }

  a.ctNumber {
    margin-top: 3rem !important;
  }
  section.al_ameen__banner .social__links .icon p{
    white-space: normal;
  }

  section.al_ameen__banner {
    height: auto;
  }
  header.al_ameen__header .contact__number{
    min-width: 100px;
  }
}

@media only screen and (min-width: 280px) and (max-width: 380px) {
  a.ctNumber {
    margin-top:2rem;
  }
  body.rtl section.al_ameen__banner .download__icons{
    padding-left: 0 !important;
  }
  section.al_ameen__banner .download__icons img:last-child{
    height: 70px;
  }
  section.al_ameen__banner .download__icons img{
    height: 43px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  section.al_ameen__banner .banner__image {
    position: relative;
    right: 0;
    width: 100%;
    top: 4rem;
  }

  section.al_ameen__banner .download__icons {
    width: 75%;
    margin-left: 0;
  }

  section.al_ameen__banner .banner__image img {
    width: 80%;
  }

  header.al_ameen__header {
    padding: 35px 54px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  section.al_ameen__banner{
    height: auto !important;
  }
  section.al_ameen__banner .banner__image img {
    width: 100%;
  }
  section.al_ameen__banner .left__vector img{
    height: 80vh !important;
  }
  section.al_ameen__banner .right__vector img{
    height: 80vh !important;
  }
  section.al_ameen__banner .banner__image {
    position: relative;
    right: 3rem;
    width: 100%;
    bottom: 18rem;
}
section.al_ameen__banner .download__icons{
  width: 100%;
}
}
@media only screen and (min-width: 600px) and (max-width: 800px) {
  section.al_ameen__banner .banner__image {
    position: relative;
    right: 3rem;
    width: 100%;
    bottom: -30px;
}
section.al_ameen__banner{
  height: auto;
}
}

@media only screen and (min-width: 600px) and (max-width: 670px) {

  section.al_ameen__banner {
    height: auto;
  }
  section.al_ameen__banner .social__links .icon {
    text-align: center;
    padding: 15px;
    border-radius: 2px;
    opacity: 1;
    transition: .3s;
    background: #1A1A1A;
    margin: 5px;
}
.pulse__circle.item3 {
  bottom: 0;
  right: auto;
  top: 20rem;
  left: 4rem;
}
}
/* ANIMATION */
.anim{
  animation: fadeIn 3s;
  -webkit-animation: fadeIn 3s;
  -moz-animation: fadeIn 3s;
  -o-animation: fadeIn 3s;
  -ms-animation: fadeIn 3s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.delay3{
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
.delay4{
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
}
.delay5{
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
}
.animated {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
     opacity: 0;
     -webkit-transform: translateX(-20px);
  }
  100% {
     opacity: 1;
     -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
     opacity: 0;
     transform: translateX(-20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
} 


.pulse__circle {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
}
.pulse__circle.item1 {
  left: 100px;
  top: 150px;
}

@media (max-width: 575.98px) {
  .pulse__circle.item1 {
    left: 40px;
    top: 170px;
  }
}
.pulse__circle.item2 {
  right: 17px;
  bottom: 40px;
  margin: auto;
  top: 0;
}

@media (max-width: 575.98px) {
  .pulse__circle.item2 {
    left: 184px;
    right: auto;
    bottom: 0;
    margin: auto;
  }
}
.pulse__circle.item3 {
  left: 15rem;
  bottom: 10rem;
}

@media (max-width: 767.98px) {
  /* line 877, ameen/assets/sass/common.scss */
  .pulse__circle.item3 {
    bottom: auto;
    top: 8rem;
    left: 20rem;
  }
}

@media (max-width: 575.98px) {
  /* line 877, ameen/assets/sass/common.scss */
  .pulse__circle.item3 {
    right: 30px;
    bottom: auto;
    top: 40px;
  }
}

/* line 891, ameen/assets/sass/common.scss */
.pulse__circle:before {
  content: '';
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #FF0D19;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulse__circle:before {
  margin-left: -100%;
}
.pulse__circle:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FF0D19;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}


@media only screen and (min-width: 800px) and (max-width: 900px) {
  section.al_ameen__banner{
    height: auto;
  }
}
@media only screen and (min-width: 1150px) and (max-width: 1200px) {
  section.al_ameen__banner .banner__image{
    bottom: 0;
  }
}

/* RTL */

body.rtl section.al_ameen__banner .banner__content {
    text-align: right;
    margin-top: 100px;
}
body.rtl section.al_ameen__banner .download__icons{
  margin-left: auto;
  margin-right: 0;
  padding-right: 0;
  padding-left: 50px;
}

