/* GENERAL */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.input {
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  height: 42px;
  width: -webkit-fill-available;
  font-size: 18px;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.input.textarea {
  padding: 10px 20px;
  height: 84px;
}

.checkbox-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 20px;
}

.input-checkbox {
  border: 0px solid #d7d7d7;
  border-radius: 5px;
  height: 24px;
  width: 24px;
  margin: 0;
  padding: 0;
}

.button, .call-to-action .button, .footer-links a {
  color: #FFF;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
  
.button {
  background-color: #53BC7D;
  color: #ffffff;
  height: 48px;
  font-size: 16px;
  border-radius: 30px;
  padding: 0 20px;
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 400;
  letter-spacing: .0892857143em;
  justify-content: center;
  outline: 0;
  text-decoration: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 0 solid;
}

.button.small {
  height: 32px;
  font-size: 14px;
}

.button.large {
  padding: 0 40px;
  height: 52px;
  font-size: 18px;
  font-weight: 600;
}

.button.secondary {
  background-color: #172B4D;
}
/* GENERAL */
  
/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
}

.navbar a {
  color: #ffffff;
}
  
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-left: 20px;
  padding: 0;
}

.navbar nav ul li {
  display: flex;
  align-items: center;
  font-weight: 600;
}

/* NAVIGATION */
.logo-squarely {
  background-image: url('./assets/img/logo-squarely-white.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 180px;
  height: 32px;
}

.navbar.visible {
  background-color: #ffffff;
  box-shadow: 0 2px 2px #0000000f;
}

.navbar.visible .logo-squarely {
  background-image: url('./assets/img/logo-squarely.svg');
}

.navbar.visible a {
  color: #172B4D;
}

/* HERO SECTION */
.hero-wrapper {
  background-color: #1D1F2B;
  color: #ffffff;
  flex-direction: row;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  padding-top: 120px;
  flex: 1 1;
  max-width: 100%;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 100;
}

.hero-bottom .title {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-bottom .standards-logos {
  background-image: url('./assets/img/standards-logos.svg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 76px;
}

.hero-content h1 {
  font-size: 46px;
  margin: 0;
  margin-bottom: 20px;
}

.hero-content .subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  backdrop-filter: blur(2px);
  background: rgb(29,31,43);
  background: linear-gradient(90deg, rgba(29, 31, 43, 1) 0%, rgba(29, 31, 43, 1) 50%, rgba(29, 31, 43, 0.287294) 100%);
  z-index: 11;
}

.hero-video {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  transform: scaleX(-1);
}
.hero-video video {
  height: 100vh;
}
  
section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section .content-middle {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section .content-large {
  max-width: 100%;
}

.mt-0 {
  padding-top: 0;
}

.row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.row.align-right {
  justify-content: flex-end;
}

.row.mb-2 {
  margin-bottom: 40px;
}

.row.mb-3 {
  margin-bottom: 60px;
}

.row.mb-4 {
  margin-bottom: 80px;
}

.col {
  flex: 1;
}

.row.unique-col-mob {
  flex-direction: column;
}

h3.subtitle {
  font-weight: 400;
  max-width: 900px;
}

.text-highlight {
  color:#53BC7D;
}

.text-center {
  text-align: center;
}

.welcome-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-direction: column;
}

.welcome-items .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.welcome-items .content {
  text-align: center;
  font-size: 18px;
}

[class*='icon-'] {
  width: 32px;
  height: 32px;
}

[class*='icon-'].large {
  width: 148px;
  height: 148px;
}

.icon-collaboration {
  background-image: url('assets/img/icon-collaboration.svg');
}

.icon-guarantee {
  background-image: url('assets/img/icon-guarantee.svg');
}

.icon-easy-access {
  background-image: url('assets/img/icon-easy-access.svg');
}

.icon-check {
  background-image: url('assets/img/icon-check.svg');
}

.feature-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item.reverse {
  flex-direction: column;
}

.feature-item .image {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  background-color: #E9FBE0;
  border-radius: 20px;
  padding: 0px 5px;
  width: 100%;


  /*display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  background-color: #E9FBE0;
  border-radius: 0 0;
  padding: 20px 10px;
  width: 100%;*/
}

.feature-item.reverse .image {
  /*border-radius: 20px 0 0 20px;
  margin-right: -20px;*/
}

[class*='feature-image-'] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 580px;
  height: 366px;
  width: 100%;
  height: 240px;
}

.feature-image-1 {
  background-image: url('assets/img/feature-image-1.svg');
}

.feature-image-2 {
  background-image: url('assets/img/feature-image-2.svg');
}

.feature-image-3 {
  background-image: url('assets/img/feature-image-3.svg');
}

.feature-image-4 {
  background-image: url('assets/img/feature-image-4.svg');
}

.feature-item .content {
  padding: 60px 20px;
  max-width: 560px;
  font-size: 18px;
}

.feature-item .content h3 {
  font-size: 28px;
  line-height: 110%;
}

.testimonials-items {
  display: flex;
  width: 100%;
  gap: 40px;
  flex-direction: column;
}

.testimonial-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

[class*='testimonial-image-'] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  aspect-ratio: 1/1;
}

.testimonial-item .testimonial-image-1 {
  background-image: url('assets/img/testimonial-item-1.svg');
}

.testimonial-item .testimonial-image-2 {
  background-image: url('assets/img/testimonial-item-2.svg');
}

.testimonial-item .testimonial-image-3 {
  background-image: url('assets/img/testimonial-item-3.svg');
}

.customers-logos {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
}

.customers-logos img {
  width: 15%;
  aspect-ratio: 4/3;
  object-fit: contain;
}

section.dark {
  background-color: #172B4D;
  color: #ffffff;
}

/* FOOTER SECTION */
.footer {
  background-color: #2b2b2b;
  color: #ffffff;
  padding: 40px 20px;
}

.footer-content {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  margin-bottom: 20px;
  width: 100%;
}

.footer-top h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-top p {
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #444;
  padding-top: 20px;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-links {
  font-size: 18px;
  font-weight: 400;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.footer-links a {
  text-decoration: none;
  font-size: 1rem;
}

.terms-conditions {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
}

[class*='logo-custom-'] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: fit-content;
  height: 100px;
}

.logo-custom-dfm {
  background-image: url('assets/img/logo-custom-dfm.svg');
  width: 250px;
}

.logo-custom-bank-al-etihad {
  background-image: url('assets/img/logo-custom-bank-al-etihad.svg');
  width: 250px;
}

.logo-custom-al-dabbagh {
  background-image: url('assets/img/logo-custom-al-dabbagh.svg');
  width: 250px;
}

.logo-custom-al-dabbagh {
  background-image: url('assets/img/logo-custom-al-dabbagh.svg');
  width: 250px;
}

.logo-custom-taaleem {
  background-image: url('assets/img/logo-custom-taaleem.svg');
  width: 250px;
}

.logo-custom-tanmiah {
  background-image: url('assets/img/logo-custom-tanmiah.svg');
  width: 250px;
}

.logo-custom-petromin {
  background-image: url('assets/img/logo-custom-petromin.svg');
  width: 250px;
}

.logo-custom-dukan {
  background-image: url('assets/img/logo-custom-dukan.svg');
  width: 250px;
}

.logo-custom-fps {
  background-image: url('assets/img/logo-custom-fps.svg');
  width: 250px;
}

.logo-custom-alizz {
  background-image: url('assets/img/logo-custom-alizz.svg');
  width: 250px;
}

ul.check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-list li {
  position: relative;
  list-style-type: none;
}

.check-list li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: -42px;
  width: 32px;
  height: 32px;
  background-image: url('assets/img/icon-check.svg');
}

@media (max-width: 768px) { 
  .customers-logos img {
    width: 30%;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  h2 {
    font-size: 56px;
  }
  h3 {
    font-size: 32px;
  }
  section {
    padding: 100px 20px;
  }
  section .content-middle {
    max-width: 1200px;
  }
  .row.unique-col-mob {
    flex-direction: row;
  }
  .navbar {
    padding: 20px 40px;
  }
  .navbar nav ul {
    gap: 40px;
    margin: 0;
  }
  .button.small {
    height: 40px;
    font-size: 14px;
  }
  .hero-content {
    padding: 20px 120px;
    padding-top: 80px;
    max-width: 780px;
  }
  .hero-content h1 {
    font-size: 68px;
  }
  .hero-content .subtitle {
    font-size: 26px;
  }
  .hero-bottom {
    padding: 20px 120px;
  }
  .hero-bottom .title {
    font-size: 24px;
  }
  .welcome-items {
    flex-direction: row;
  }
  .welcome-items .content {
    text-align: center;
    font-size: 20px;
  }
  .feature-item {
    flex-direction: row;
  }
  [class*='feature-image-'] {
    width: 580px;
    height: 366px;
  }
  .feature-item .image {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    background-color: #E9FBE0;
    border-radius: 0 20px 20px 0;
    padding: 60px 40px;
    margin-left: -20px;
  }
  .feature-item .content {
    padding: 60px 120px;
    font-size: 20px;
  }
  .feature-item .content h3 {
    font-size: 36px;
    line-height: 110%;
  }
  .feature-item.reverse {
    flex-direction: row-reverse;
  }
  .feature-item.reverse .image {
    border-radius: 20px 0 0 20px;
    margin-right: -20px;
  }
  .testimonials-items {
    flex-direction: row;
  }
  [class*='testimonial-image-'] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 470px;
    height: 470px;
  }
  .feature-item .content h3 {
    font-size: 44px;
  }
  .footer-links {
    justify-content: space-between;
    flex-direction: row;
  }
}