header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme-color);
  padding: 50px 0;
}
header .header-logo {
  width: 168px;
  height: 43px;
  margin-left: 10%;
}
.header-logo img {
  width: 100%;
  height: 100%;
}
.header-text {
  color: #fff;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 15px;
}
.header-btns {
  display: flex;
  gap: 5px;
  margin-right: 5%;
}
.header-btns button {
  padding: 12px 20px;
  border-radius: 30px;
  background-color: #f6f6f6;
  font-size: 15px;
  font-weight: 400;
  color: var(--theme-color);
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.header-btns .header-login{
  background-color: transparent;
  color: #f6f6f6;
}
.hero-section {
  background-color: var(--theme-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.hero-main-text {
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  text-align: center;
  color: #ffffff;
  width: 50%;
  font-family: var(--font2);
  margin: auto;
  padding-top: 50px;
}
.hero-sub-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  width: 62%;
  margin: auto;
  color: #e3ebff;
}
.hero-btn {
  width: 291px;
  padding: 16px 28px;
  border-radius: 30px;
  margin: 20px auto 42px;
  border: none;
  background-color: #eb763c;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  z-index: 3;
}
.hero-btn i {
  width: 32px;
}
.hero-main-image {
  width: 80%;
  margin: auto;
  z-index: 3;
  border-radius: 30px;
}
.hero-main-image img {
  width: 100%;
  border-radius: 30px;
  border: 5px solid var(--theme-color);
  box-shadow: -1px 11px 24px 0px #2c4fba1a, -6px 43px 43px 0px #2c4fba17,
    -13px 96px 58px 0px #2c4fba0d, -23px 170px 69px 0px #2c4fba03,
    -36px 266px 75px 0px #2c4fba00;
}
.hero-bg-image {
  width: 100%;
  position: absolute;
  height: 298px;
  top: 175px;
}
.hero-bg-image img {
  width: 100%;
  height: 298px;
}
.second-section {
  position: relative;
  width: 100%;
  top: -160px;
  /* border: 1px solid red; */
  background-color: #ffffff;
  padding-top: 300px;
}
.ss-text {
  font-family: var(--font2);
  color: #000000;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  line-height: 64px;
  width: 70%;
  margin: auto;
}
.ss-review-container {
  width: 70%;
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.review-box i {
  color: #ff9345;
}
.review-box p {
  font-weight: 700;
  color: rgb(0, 0, 0, 0.6);
  font-size: 18.5px;
  line-height: 72px;
}
.ss-research-container {
  display: grid;
  width: 85%;
  gap: 40px;
  margin: auto;
  /* grid-template-columns: 1fr 2fr; */
  /* grid-template-rows: auto; */
  grid-template-areas:
    "big big small1"
    "small2 small3 small4";
}
.big-research {
  grid-area: big;
  height: 348px;
  padding: 56px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0px 13px 100px 0px #c7c7c740;
  background-color: #2c4fac;
}
.big-research p {
  font-family: var(--font2);
  font-size: 48px;
  line-height: 64px;
  font-weight: 600;
  color: #ffffff;
}
.big-research button {
  cursor: pointer;
  border-radius: 36px;
  padding: 20px 32px 20px 40px;
  background-color: #ffffff;
  border: none;
  color: #2c4fac;
  font-size: 15.5px;
  width: fit-content;
  letter-spacing: 1.28px;
  font-weight: 700;
}
.research1 {
  grid-area: small1;
}
.research2 {
  grid-area: small2;
}
.research3 {
  grid-area: small3;
}
.research4 {
  grid-area: small4;
}
.small-research {
  height: 348px;
  box-shadow: 0px 13px 100px 0px #c7c7c740;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 22px;
  padding: 40px;
}
.ssr-title {
  letter-spacing: -0.32px;
  line-height: 40px;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font2);
}
.ssr-p {
  font-size: 16.59px;
  font-weight: 400;
  line-height: 28px;
}
.small-research div {
  width: 80px;
  height: 80px;
}
.small-research img {
  width: 100%;
  height: 100%;
}
.request-file {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding: 16px 48px;
  background-color: #eb763c;
  margin: 140px auto 200px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  border-radius: 30px;
  border: none;
}

.third-section {
  width: 100%;
  position: relative;
  background-color: #000000;
  padding: 120px 0 0;
}
.ts-heading {
  font-weight: 600;
  line-height: 60px;
  font-size: 48px;
  width: 80%;
  margin: auto;
  color: hsl(0, 0%, 100%);
}
.ts-enclose {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 84px 0;
}
.ts-box {
  background-color: #121212;
  width: 65%;
  padding: 78px;
  /* margin-right: 90px; */
}
.ts-p {
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  color: #ffffff;
}
.ts-designs {
  width: 30%;
  position: relative;
}
.ts-bg,
.ts-bg2 {
  width: 100%;
  position: absolute;
}
.ts-bg img,
.ts-bg2 img {
  width: 100%;
}
.ts-bg {
  top: -25%;
  left: -50%;
}
.ts-bg2 {
  top: -50px;
}
.ts-string {
  position: absolute;
  top: 20%;
  right: 30%;
}
.ts-star {
  position: absolute;
  top: 64%;
  left: 18%;
}
.ts-box button {
  margin-top: 60px;
  padding: 16px 48px;
  background-color: #eb763c;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 291px;
}
.fourth-section {
  width: 100%;
}
.fos-enclose {
  width: 80%;
  /* border: 2px solid black; */
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin: 130px auto 20px;
}
.fos-image {
  width: 336px;
  border-radius: 21px;
  box-shadow: 0px 13px 100px 0px #75727240;
}
.fos-image img {
  width: 100%;
  border-radius: 21px;
}
.fos-why-container {
  width: 45%;
  /* border: 2px solid red; */
}
.fos-why-container > p {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  font-family: var(--font2);
  line-height: 64px;
  margin-bottom: 32px;
}
.fos-features {
  background-color: #ffffff;
  border-radius: 13px;
  box-shadow: 0px 13px 100px 0px #75727240;
  padding: 50px 30px;
}
.fos-features p {
  font-size: 16px;
  font-family: var(--font3);
  letter-spacing: 1.92px;
  font-weight: 700;
}
.fos-features ul {
  padding: 30px 0;
}
.fos-features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  font-size: 18.75px;
  line-height: 32px;
  font-weight: 500;
  font-family: var(--font3);
}
.fos-features img {
  width: 18.67px;
  height: 18.67px;
  padding: 2px;
  border: 2px solid #2ba275;
  border-radius: 50%;
}
.fos-enclose2 {
  margin-top: 150px;
  background-color: black;
  height: 700px;
}
.testimony-section {
  /* border: 1px solid black; */
  width: 100%;
  height: 650px;
  margin-left: 10%;
  /* background-color: rgba(117, 114, 114, 0.05); */
  /* box-shadow: 0px 0px 100px 0px rgba(117, 114, 114, 0.05); */
  /* overflow: hidden; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimony-section > img {
  position: absolute;
  left: 0;
  top: 50px;
  color: #3e66df33;
  width: 240px;
  height: 180px;
}
.ts-background {
  background: linear-gradient(180deg, rgba(62, 102, 223, 0.6), rgba(62, 102, 223, 0.6)), url("../Images/s4-bg-image.jpeg");
  width: 75%;
  position: absolute;
  right: 0;
  height: 600px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 23px;
  transform: rotate(180deg);
}
.swiper-container{
  /* border: 1px solid black; */
  height: 290px;
  z-index: 30;
  width: 100%;
  margin-left: -18%;
  display: flex;
  /* padding-top: 100px; */
  /* box-shadow: 5px 0 5px black; */
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: transparent;
  
}
.swiper-container .cards{
  width: 600px;
  height: 288px;
  padding: 40px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(117, 114, 114, 0.1);
}
.card-testimony{
font-size: 16px;
font-weight: 400;
line-height: 26px;
color: rgba(32, 32, 32, 1);
margin: 20px 0 0;
}
.card-profile{
  display: flex;
  gap: 20px;
  align-items: center;
}
.card-img{
  width: 80px;
  height: 80px;
  /* border: 2px solid black; */
}
.card-img img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(62, 102, 223, 0.3)
}
.card-name{
  font-weight: 800;
  font-size: 20px;
  text-transform: capitalize;
}
.card-post{
  font-weight: 500;
  font-size: 16px;
  color: #808080;
}
.testimonial-text{
  position: absolute;
  bottom: 100px;
  left: 0;
  font-size: 32px;
  font-weight: 700;
  color: #202020;
}
.read-more-btn{
  color: var(--theme-color);
  border: none;
  background-color: transparent;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}
.blackout-v2{
  position: fixed;
  background-color: rgb(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: none;
  transition: 0.4s;
}
.testimony-note-full{
  position: fixed;
  margin: auto;
  width: 700px;
  top: 15%;
  left: 22%;
  display: none;
  background-color: #ffffff;
  border-radius: 20px;
  height: fit-content;
  padding: 30px;
  z-index: 3000;
  transition: 1s;
}
.close-full-note{
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  color: red;
  font-size: 1.5rem;
}

