/*
  COMMON
*/
.page {
  background: url("/excurel/assets/images/home/page-bg.png") no-repeat right top;
  background-size: 100% auto;
}

.gradient-text {
  background: linear-gradient(90deg, #27A449 0%, #232176 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-family: "El Messiri", sans-serif;
}

p {
  line-height: 26px;
}

section {
  user-select: none;
  position: relative;
  width: 100%;
}

.section-btn {
  border-radius: 7px;
  color: #232E72;
  font-weight: bold;
  padding: 10px 20px;
  background-color: white;
  border: solid 1px #333085;
}

.section-container {
  position: absolute;
  z-index: 10;
  inset: 0;
}

.section-btn.gradient-btn {
  background: linear-gradient(90deg, #27A449 0%, #232176 75%);
  color: white;
  border: none;
}

/* SECTION 1 */
.section-1 {
  height: fit-content;
}

.section-1-bg {
  width: 100%;
  object-fit: contain;
}

.section-1-hero {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  object-fit: contain;
}

.section-1-content {
  position: relative;
  top: 50%;
  translate: 0 -50%;
}

.section-1-content p {
  font-size: 20px;
}

/* SECTION 2 */
.section-2-bg {
  width: 75%;
  height: 100%;
  object-fit: contain;
}

.section-2-content {
  position: absolute;
  top: 50%;
  right: 0;
  text-align: right;
}

.section-2-content img {
  margin-left: auto;
  height: 55px;
}

/* SECTION 3 */
.section-3-content>img {
  /* height: 60px; */
  width:40%;
}

.cards-container {
  display: flex;
  flex-direction: column;
}

.section-card {
  width: 50%;
  padding: 3rem 4.75rem;
  position: relative;
  border-radius: 54px;
  background-color: white;
  box-shadow: 7px -1px 8.7px 5px rgba(0, 0, 0, 0.09);
}

.section-card>img {
  height: 95px;
}

.section-card>p {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 26px;
}

/* SECTION 4 */
.section-4 .section-card>img {
  height: 55px;
}

.blue-div {
  width: 100%;
  padding-block: 30px;
  border-radius: 26px;
  margin-bottom: 50px;
  background-color: #232176;
}

.blue-div-content {
  position: relative;
  left: 50%;
  translate: -50%;
  width: fit-content;
}

.blue-div-content .section-card {
  position: absolute;
  width: fit-content;
  padding: 3.75rem 2rem;
  top: 50%;
  left: 58%;
  translate: 0 -50%;
}

.blue-div-content .section-card p {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 31px;
  letter-spacing: -0.04em;
  font-family: "Inter", sans-serif;
}

/* SECTION 5 */
.section-5-bg {
  width: 100%;
  object-fit: contain;  
}

.section-5-bg-mobile {
  width: 100%;
  height: 800px;
  object-fit: contain;  
}

.section-5-content {
  padding-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-5-content>img {
  height: 60px;
}

.section-5-video {
  width: 78%;
  border-radius: 37px;
}

.section-5-video>img {
  width: 100%;
  object-fit: contain;
}

/* SECTION 6 */
.section-6-content {
  padding-top: 126px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-6-content img {
  height: 95px;
}

.section-6-content h4 {
  line-height: 34px;
}

.section-6-content p {
  line-height: 26px;
}

/* SECTION 7 */
.section-7-content {
  padding-top: 125px;
}

.section-7-content>img {
  height: 60px;
}

.section-7-div {
  display: flex;
  align-items: center;
}

.section-7-div article {
  width: 60%;
}

.section-7-div article h4 {
  line-height: 34px;
}

.section-7-div article p {
  line-height: 26px;
}

.section-7-div>img {
  height: fit-content;
  object-fit: contain;
  width: 40%;
}

.section-7-div.rev article {

  width: 55%;
  text-align: right;
}

.section-7-div.rev>img {
  width: 45%;
}

/* responsive code starts here */
/* Mobile menu style */
.mobile-nav {
  background: white;
  border-radius: 12px;
  margin-top: 10px;
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #232176;
  border-bottom: 1px solid #eee;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Hamburger icon color */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23232176' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* responsive code ends here */

.section-1-mobile{
  padding-top:0 !important;
  margin-top: 130px;
}

.section-2-mobile{
  padding-top:0 !important;
  /* margin-top: 130px; */
  position: relative;
}


/* Default: Desktop */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

/* Mobile screens */
@media (max-width: 767px) {
  .section-container {
    position: relative;
    /* z-index: 10; */
    /* inset: 0; */
  }
  .section-6-mobile .titleimg{
    width: 100%;
    height: auto !important;
  }
  .section-6-mobile .section-6-content{
    padding-top: 20px !important;
  }

  .section-7-div article {
    width: 100%;
  }

  .section-7-content {
    padding-top: 50px;
  }

  .section-7-content > img {
    height: auto;
    width: 100%;
  }

  .desktop-view {
      display: none;
  }

  .mobile-view {
      display: block;
  }

  .section-card {
    width: 100%;
    padding: 2rem 1.75rem;
    position: relative;
    border-radius: 54px;
    background-color: white;
    box-shadow: 7px -1px 8.7px 5px rgba(0, 0, 0, 0.09);
    margin-top: 10px;
  }

  .section-4 .section-card {
    width: 90%;
    padding: 20px 10px 2px 42px;
    position: relative;
    border-radius: 54px;
    background-color: white;
    box-shadow: 7px -1px 8.7px 5px rgba(0, 0, 0, 0.09);
    margin: 10px;
  }

  .section-3-content>img {
    /* height: 60px; */
    width:100%;
    margin-top:40px;
  }
  .cards-container {
    margin-top: -80px;
  }
  .section-5-content {
    padding-top: 0px !important;
    padding-bottom: 50px;
  }
  .section-5-video {
    width: 100%;
    border-radius: 37px;
  }
  .sec7title{
    text-align: center !important;
    height: auto;
    width: 100%;

  }
  .section-7-div.rev article {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .section-3 .section-card:nth-child(2) {
    top: -50px;
    left: 40%;
    padding-block: 2rem 3.5rem;
  }

  .section-card:nth-child(3) {
    top: -100px;
  }
}
