@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  /* padding: 20px 80px; */
}
/* ! nav bar */

:root {
  --navbar-background-color: #0f101656;
  --navbar-text-color: #f0f0f0;
  --footer-background-color: #031930;
  --a-color: rgba(240, 248, 255, 0.453);
  --white-text-color: white;
  --bottom-background-color: #223a59;
}
/* ! nav bar */
nav {
  font-size: 20px;
  width: 100%;
  position: fixed;
  z-index: 100;
  height: 60px;
  top: 0px;
  /* left: calc(100% - 99%); */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* background-color: var(--navbar-background-color); */
  background-color: #ffffff;
  /* backdrop-filter: blur(25px); */
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.25),
    /* left shadow */ 5px 0 5px rgba(0, 0, 0, 0.25);
  border-radius: 0px 0px 9px 9px;
  padding-left: 100px;
  padding-right: 100px;
}

@media (width < 1100px) {
  nav {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.nav-logo {
  font-size: 25px;
  font-weight: 600;
  color: #0066e3;
}

.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2000000000000000000000000000000000000000;
}

.links-container a {
  font-size: 15px;
}

nav a {
  position: relative;
  text-decoration: none;
  transition: none;
  height: auto;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  /* color: var(--navbar-text-color); */
  color: #201f1f;
  font-size: 18px;
  font-weight: 500;
}

nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 0;
  height: 2px;
  background-color: #00c6ff; /* adjust the color to your liking */
  transition: width 0.3s ease-in-out;
}

nav a:hover::before {
  width: 70%;
}

.nav-logo:hover::before {
  width: 0;
}

nav .home-link {
  margin-left: auto;
}

nav i {
  color: var(--navbar-text-color);
  cursor: pointer;
}

#sidebar-active {
  display: none;
}

.open-sidebar-active,
.close-sidebar-active {
  padding: 0px 20px;
  display: none;
}

@media screen and (max-width: 950px) {
  nav {
    justify-content: center;
  }

  nav a:hover::before {
    width: 0;
  }

  .nav-logo {
    width: auto;
  }

  .open-sidebar-active {
    position: absolute;
    left: 0;
  }

  .links-container {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 130;
    width: 220px;
    height: 100dvh;
    background-color: #ffffff24;
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
    z-index: 110;
  }

  nav a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }

  .links-container a {
    color: #fff;
    font-size: 15px;
    transition: 0.3s ease;
  }

  .links-container a:hover {
    transform: scale(1.2);
    padding-left: 50px;
  }

  .open-sidebar-active,
  .close-sidebar-active {
    padding: 20px;
    display: block;
  }

  .open-sidebar-active i,
  .close-sidebar-active i {
    font-size: 25px;
  }

  .open-sidebar-active i {
    color: #0066e3;
  }

  .close-sidebar-active {
    margin-left: auto;
  }

  #sidebar-active:checked ~ .links-container {
    left: 0;
  }

  #sidebar-active:checked ~ #sidebar-overlay {
    height: 100dvh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
  }
}

/* 1st section */

#first_section {
  padding: 20px 100px;
  background-color: aliceblue;
}
.frist_section_main_container {
  width: auto;
  margin: auto;
  margin-top: 100px;
}
.frist_section_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.first_image {
  height: 500px;
  width: 560px;
}
.first_image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.First_section_heading {
  padding-bottom: 20px;
}
.First_section_heading .tag_line {
  font-size: 55px;
  line-height: 1.2;
  padding-bottom: 20px;
  color: #0072ff;
}
.main_button_div1 {
  margin-top: 30px;
  display: flex;
}
.get_started {
  height: auto;
  width: 200px;
  border: none;
  outline: none;
  color: white;
  font-size: 20px;
  padding: 15px;
  border-radius: 6px;
  font-weight: 500;
  background-image: linear-gradient(
    to right,
    #00c6ff 0%,
    #0072ff 1%,
    #00c6ff 100%
  );
}
.get_started a {
  text-decoration: none;
  color: white;
}
.get_started i {
  padding-left: 10px;
}
.learn_more {
  height: auto;
  width: 200px;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 15px;
  border-radius: 6px;
  margin-left: 20px;
  background-color: white;
}
.learn_more a {
  text-decoration: none;
  color: #0072ff;
}
.provided {
  display: flex;
  gap: 13px;
  margin-top: 30px;
}

.provided .choose_us {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}
.choose_us i {
  color: #0066e3;
  font-size: 20px;
}

.iso-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iso {
  font-size: 27px;
  font-weight: 600;
  word-spacing: 2px;
}

@media (max-width: 1411px) {
  .provided {
    display: grid;
    row-gap: 10px;
    grid-template-columns: repeat(2, 220px);
  }
  .First_section_heading .tag_line {
    font-size: 50px;
  }
}
@media (max-width: 1391px) {
  .First_section_heading .tag_line {
    font-size: 40px;
  }

  .choose_us i {
    font-size: 17px;
  }
  .provided .choose_us {
    font-size: 15px;
  }
  .get_started {
    height: auto;
    width: 160px;
    font-size: 18px;
  }
  .get_started i {
    font-size: 20px;
    text-align: center;
  }
  .learn_more {
    height: auto;
    width: 160px;
    font-size: 18px;
  }
  .iso {
    font-size: 24px;
  }
}
@media (max-width: 1220px) {
  .frist_section_main_container {
    margin-top: 70px;
  }
  .provided {
    display: flex;
    gap: 20px;
  }
  .provided .choose_us {
    font-size: 17px;
  }
  .choose_us i {
    color: #0066e3;
    font-size: 20px;
  }
  .frist_section_container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .tag_line br {
    display: none;
  }
  .First_section_heading .tag_line {
    font-size: 45px;
  }
  .main_button_div1 {
    justify-content: center;
  }
  .get_started {
    height: auto;
    width: 160px;
    font-size: 20px;
  }
  .get_started i {
    font-size: 20px;
    text-align: center;
  }
  .learn_more {
    height: auto;
    width: 160px;
    font-size: 20px;
  }
  .defination {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 500px;
    margin-top: 10px;
    position: relative;
  }
  .first_image {
    height: 550px;
    width: 96%;
    position: absolute;
    margin-top: -10px;
    padding-top: 60px;
  }
  .first_image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .iso-div {
    align-items: center;
  }
  .iso {
    font-size: 27px;
  }
}
@media (max-width: 1026px) {
  .First_section_heading .tag_line {
    font-size: 35px;
    text-align: center;
  }
}
@media (max-width: 832px) {
  .provided {
    display: grid;
    grid-template-columns: repeat(2, 230px);
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (width < 850px) {
  .iso {
    font-size: 24px;
  }
}

@media (max-width: 736px) {
  .First_section_heading .tag_line {
    font-size: 30px;
  }

  .provided .choose_us {
    font-size: 15px;
  }
  .choose_us i {
    color: #0066e3;
    font-size: 15px;
  }
}
@media (max-width: 682px) {
  #first_section {
    padding: 20px 80px;
    background-color: aliceblue;
  }
  .First_section_heading .tag_line {
    font-size: 25px;
  }
  .defination {
    gap: 400px;
  }
  .first_image {
    padding-top: 0px;
    height: 450px;
  }
  .provided {
    grid-template-columns: repeat(2, 200px);
  }
  .iso {
    font-size: 20px;
  }
}

@media (max-width: 583px) {
  .first_image {
    height: 400px;
  }
  .defination {
    gap: 350px;
  }
  .First_section_heading .tag_line {
    font-size: 23px;
  }
  .main_button_div1 {
    margin-top: 60px;
  }
  .get_started {
    height: auto;
    width: 130px;
    font-size: 15px;
  }
  .get_started i {
    font-size: 15px;
    text-align: center;
  }
  .learn_more {
    height: auto;
    width: 130px;
    font-size: 15px;
  }
  .provided {
    grid-template-columns: 200px;
  }
  .iso {
    font-size: 16px;
  }
}
@media (max-width: 483px) {
  .first_image {
    height: 350px;
  }
  .defination {
    gap: 300px;
  }

  .iso {
    font-size: 12px;
  }
}
@media (max-width: 424px) {
  .first_image {
    height: 300px;
  }
  .defination {
    gap: 250px;
  }
}
@media (max-width: 384px) {
  .first_image {
    height: 250px;
  }
  .defination {
    gap: 30px;
  }
  .main_button_div1 {
    margin-top: 120px;
  }
}

/* 2nd section */

#second_section {
  padding: 20px 100px;
}
.swiper-container-1 {
  height: 100px;
  width: auto;
  border-radius: 10px;
  margin-top: 40px;
  background-color: aliceblue;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
}
.swiper-container-1 .swiper-slide {
  height: auto;
  width: 20px;
  /* border: 2px solid red; */
  /* margin-top: 13px; */
  /* margin-top: 30px; */
  /* height: 100%;
    width:100%; */
  /* text-align: left; */
  /* font-size: 18px; */
  background: #fff;
  /* column-gap: 40px; */
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: aliceblue;
  border-radius: 10px;
  justify-content: space-around;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0 !important;
}
.swiper-container-1 .swiper-slide img {
  height: 80%;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 600px) {
  #second_section {
    padding: 20px 60px;
  }
}

/* 3rd section */

.third_section_container {
  margin-top: 50px;
}
#How_is_Work {
  font-size: 50px;
  text-align: center;
  color: #0072ff;
}
.work {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 250px 250px 250px 250px;
  justify-content: space-evenly;
}
.card {
  height: 250px;
  width: 250px;
  border-radius: 20px;
  justify-content: center;
  /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5); */
}
.card:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  z-index: 1;
  transform: scale(1.05s);
  transition: all 0.6s ease-out;
}
.third_section_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
}
.card h3 {
  text-align: center;
  margin-top: 10px;
}
.card p {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}
#colour {
  background-color: #dff7fd;
}
#colour1 {
  background-color: #fffadd;
}
#colour2 {
  background-color: #e3e8fc;
}
#colour3 {
  background-color: #feeded;
}
#circle1 {
  background-color: #48d4ff;
}
#circle2 {
  background-color: #fd9f03;
}
#circle3 {
  background-color: #5662ab;
}
#circle4 {
  background-color: #fd969c;
}

@media (max-width: 1201px) {
  .work {
    grid-template-columns: 250px 250px 250px;
    row-gap: 100px;
  }
}
@media (max-width: 1000px) {
  .work {
    grid-template-columns: 250px 250px;
  }
}
@media (max-width: 684px) {
  .work {
    grid-template-columns: 350px;
  }
  .card {
    height: 300px;
    width: 350px;
  }
  .third_section_icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    color: white;
  }
  .card h3 {
    text-align: center;
    margin-top: 10px;
    font-size: 30px;
  }
  .card p {
    text-align: center;
    font-size: 15px;
    margin-top: 10px 220px 0px 0px;
  }
}
@media (max-width: 500px) {
  .work {
    grid-template-columns: 250px;
  }
  .card {
    height: 250px;
    width: 250px;
  }
  .third_section_icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .circle {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: white;
  }
  .card h3 {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
  }
  .card p {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }
  #How_is_Work {
    font-size: 30px;
  }
}

/* 4th section */

#fourth_section {
  padding: 20px 100px;
}
.container_fourth_section {
  height: auto;
  margin-top: 100px;
  display: flex;
  justify-content: space-evenly;
  background-color: aliceblue;
  border-radius: 10px;
}
.fourth_img {
  height: 500px;
  width: 500px;
}
.fourth_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.access_to_everything_for_everyone {
  margin-top: 70px;
}
.access_to_everything_for_everyone h1 {
  font-size: 40px;
}
.access_to_everything_for_everyone p {
  margin-top: 20px;
}
.fourth_section_icon {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 200px 200px;
  row-gap: 20px;
  column-gap: 20px;
}
.advantages {
  display: flex;
  row-gap: 20px;
}
#fourth_section_tic_icon {
  display: flex;
  column-gap: 15px;
}
#fourth_section_tic_icon i {
  padding-top: 5px;
  font-size: 20px;
  color: #0072ff;
}
.access_to_everything_for_everyone a {
  text-decoration: none;
  color: white;
}
.fourth_section_button {
  height: auto;
  width: 150px;
  border: none;
  outline: none;
  color: white;
  font-size: 20px;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  background-image: linear-gradient(
    to right,
    #00c6ff 0%,
    #0072ff 1%,
    #00c6ff 100%
  );
}

@media (max-width: 1225px) {
  #fourth_section {
    padding: 20px 50px;
  }
  .access_to_everything_for_everyone h1 {
    font-size: 35px;
  }
  .access_to_everything_for_everyone p {
    font-size: 13px;
  }
  .fourth_img {
    height: 470px;
    width: 500px;
  }
}
@media (max-width: 1050px) {
  .container_fourth_section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .access_to_everything_for_everyone br {
    display: none;
  }
  .fourth_img {
    height: 400px;
    width: 500px;
  }
  .access_to_everything_for_everyone {
    margin-bottom: 40px;
    margin-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .access_to_everything_for_everyone h1 {
    text-align: center;
  }
  .access_to_everything_for_everyone p {
    text-align: center;
  }
  .fourth_section_icon {
    justify-content: center;
  }
  .fourth_section_button1 {
    display: flex;
    justify-content: center;
  }
  .fourth_section_button {
    width: 100%;
  }
}
@media (max-width: 790px) {
  #fourth_section {
    padding: 20px 30px;
  }
  .access_to_everything_for_everyone h1 {
    font-size: 28px;
  }
  .access_to_everything_for_everyone p {
    font-size: 12px;
    margin-top: 10px;
  }
  .fourth_section_icon {
    text-align: center;
    justify-content: center;
  }
  .access_to_everything_for_everyone {
    margin-top: 0px;
  }
  .fourth_img {
    height: 400px;
    width: 500px;
  }
  .fourth_section_button {
    width: 70%;
  }
}
@media (max-width: 700px) {
  .fourth_img {
    height: 300px;
    width: 400px;
  }
  .access_to_everything_for_everyone h1 {
    font-size: 22px;
  }
  .advantages {
    font-size: 13px;
    text-align: center;
  }
  #fourth_section_tic_icon i {
    font-size: 16px;
  }
  .access_to_everything_for_everyone {
    margin-top: 40px;
  }
}
@media (max-width: 545px) {
  .access_to_everything_for_everyone br {
    display: block;
  }
  .fourth_section_icon {
    grid-template-columns: 200px;
    row-gap: 7px;
    text-align: center;
  }
}
@media (max-width: 460px) {
  .access_to_everything_for_everyone p {
    font-size: 10px;
  }
  .access_to_everything_for_everyone {
    margin-top: 0px;
  }
  .access_to_everything_for_everyone br {
    display: none;
  }
  .fourth_img {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 360px) {
  .access_to_everything_for_everyone h1 {
    font-size: 20px;
  }
}

/* 5th section */

#fifth_section {
  padding: 20px 100px;
}
.fifth_section_container {
  margin-top: 50px;
}
.fifth_section_container h1 {
  text-align: center;
  font-size: 50px;
  color: #0072ff;
}
.fifth_section_container p {
  text-align: center;
}
.fifth_section_button {
  /* border: 2px solid red; */
  display: grid;
  grid-template-columns: 200px 200px 200px 200px;
  justify-content: center;
  align-items: center;
}
.fifth_section_button button {
  margin-top: 30px;
  height: auto;
  width: 170px;
  border: none;
  outline: none;
  color: white;
  font-size: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  background-image: linear-gradient(
    to right,
    #00c6ff 0%,
    #0072ff 1%,
    #00c6ff 100%
  );
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
.fifth_section_left_arrow {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: none;
  font-size: 25px;
}
.fifth_section_right_arrow {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: none;
  font-size: 25px;
}
.arrow {
  margin-top: 20px;
}
.fifth_section_button1 {
  /* display: none; */
  align-items: center;
  /* overflow: visible; */
  width: 100%;
  justify-content: space-between;
  visibility: hidden;
  gap: 10px;
  display: flex;
}
.button_holder button {
  margin-top: 30px;
  height: auto;
  width: 170px;
  border: none;
  outline: none;
  color: white;
  font-size: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  background-image: linear-gradient(
    to right,
    #00c6ff 0%,
    #0072ff 1%,
    #00c6ff 100%
  );
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
.button_slider {
  display: flex;
  transition: transform 0.3s ease;
  white-space: nowrap;
  /* border-bottom: 2px solid #ccc; */
  /* position: relative; */
  /* gap: 20px; */
  overflow: scroll;
  width: 500px;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.button_holder {
  width: fit-content;
  /* overflow: scroll; */
  position: relative;
  /* column-gap: 20px; */
  display: flex;
  gap: 10px;
  /* justify-content: endz/; */
  align-items: center;
}

.button_holder::-webkit-scrollbar {
  display: none;
}
.fifth_section_card_div {
  display: grid;
  grid-template-columns: 350px 350px 350px;
  justify-content: space-evenly;
  margin-top: 60px;
}
.fifth_section_card {
  height: 400px;
  width: 330px;
  background-color: aliceblue;
  border-radius: 0px 0px 3px 3px;
}
.fifth_section_card:hover {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.297);
  z-index: 1;
  transform: scale(1.05s);
  transition: all 0.6s ease-out;
}
.fifth_section_image {
  width: 330px;
  height: 250px;
}
.fifth_section_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.digital_marketing {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px;
}
.fifth_section_defination {
  padding: 10px;
}
.fifth_section_defination p {
  text-align: left;
  margin-top: 10px;
  font-weight: 500;
  padding: 0px 10px;
}

@media (max-width: 1288px) {
  .fifth_section_card_div {
    grid-template-columns: 320px 320px 320px;
  }
  .fifth_section_card {
    width: 300px;
  }
  .fifth_section_image {
    width: 300px;
  }
}
@media (max-width: 1143px) {
  #fifth_section {
    padding: 20px 30px;
  }
  .fifth_section_card_div {
    grid-template-columns: 330px 330px;
    row-gap: 100px;
  }
  .fifth_section_card {
    width: 330px;
  }
  .fifth_section_image {
    width: 330px;
  }
}
@media (max-width: 878px) {
  .fifth_section_button {
    grid-template-columns: 180px 180px 180px 180px;
  }
  .fifth_section_button button {
    width: 150px;
  }
}
@media (max-width: 798px) {
  .fifth_section_card_div {
    grid-template-columns: 300px 300px;
    row-gap: 60px;
  }
  .fifth_section_card {
    width: 300px;
  }
  .fifth_section_image {
    width: 300px;
  }
}
@media (max-width: 777px) {
  .fifth_section_button {
    grid-template-columns: 180px 180px 180px 180px;
    display: none;
  }
  .fifth_section_button1 {
    visibility: visible;
  }
  .fifth_section_card_div {
    margin-top: 50px;
  }
}
@media (max-width: 715px) {
  .fifth_section_card_div {
    grid-template-columns: 250px 250px;
    row-gap: 40px;
  }
  .fifth_section_card {
    width: 250px;
  }
  .fifth_section_image {
    width: 250px;
  }
  .button_holder button {
    width: 150px;
  }
  .fifth_section_left_arrow {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
  .fifth_section_right_arrow {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
  .arrow {
    margin-top: 30px;
  }
}
@media (max-width: 612px) {
  .button_holder button {
    width: 130px;
    font-size: 16px;
  }
  .button_slider {
    width: 400px;
  }
  .fifth_section_card_div {
    grid-template-columns: 350px;
    row-gap: 60px;
  }
  .fifth_section_card {
    width: 350px;
  }
  .fifth_section_image {
    width: 350px;
  }
  .fifth_section_container h1 {
    font-size: 40px;
  }
  .fifth_section_container p {
    font-size: 15px;
  }
}
@media (max-width: 510px) {
  .button_holder button {
    width: 110px;
    font-size: 14px;
  }
  .button_slider {
    width: 300px;
  }
}
@media (max-width: 472px) {
  .button_holder button {
    width: 90px;
    font-size: 10px;
  }
  .button_slider {
    width: 300px;
  }
  .fifth_section_container h1 {
    font-size: 30px;
  }
  .fifth_section_container p {
    font-size: 12px;
  }
  .fifth_section_card_div {
    grid-template-columns: 280px;
    row-gap: 60px;
  }
  .fifth_section_card {
    width: 280px;
    height: 380px;
  }
  .fifth_section_image {
    width: 280px;
  }
}
@media (max-width: 424px) {
  .fifth_section_container h1 {
    font-size: 25px;
  }
  .arrow {
    height: 30px;
    width: 30px;
  }
  .button_slider {
    width: 250px;
  }
}
@media (max-width: 382px) {
  .button_slider {
    width: 230px;
  }
  .button_holder button {
    width: 90px;
    font-size: 10px;
  }
}

/* 6th section */

#sixth_section {
  padding: 20px 100px;
}
.container_sixth_section {
  height: auto;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 100px;
  background: linear-gradient(to bottom right, #0072ff, #00c6ff 80%, #0072ff);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.sixth_section_register_section .heading {
  font-size: 50px;
}
.sixth_section_register_section {
  width: 60%;
  text-align: center;
  place-content: center;
  color: #fff;
}
.sixth_section_register_section p {
  font-size: 22px;
  font-weight: 400;
}
.sixth_section_register_section .register {
  font-size: 40px;
  margin-top: 20px;
}
.sixth_section_form {
  height: auto;
  width: 400px;
  padding: 60px 0px;
  text-align: center;
  border-radius: 10px;
  background-color: white;
}
.form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.sixth_section_form h3 {
  font-size: 22px;
  padding-bottom: 20px;
  color: #0072ff;
}
input {
  height: 40px;
  width: 300px;
  border-radius: 6px;
  padding-left: 10px;
  border: 2px solid #0072ff;
  outline: none;
}
#getitnow {
  margin-top: 0px;
  height: 40px;
  width: 300px;
  font-weight: 600;
  border: none;
  outline: none;
  color: white;
  font-size: 20px;
  border-radius: 6px;
  background-image: linear-gradient(
    to right,
    #00c6ff 0%,
    #0072ff 1%,
    #00c6ff 100%
  );
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.432);
  cursor: pointer;
}

@media (max-width: 1100px) {
  #sixth_section {
    padding: 20px 50px;
  }
}
@media (max-width: 1070px) {
  .sixth_section_register_section .heading {
    font-size: 40px;
  }
  .sixth_section_register_section p {
    font-size: 18px;
  }
  .sixth_section_register_section .register {
    font-size: 30px;
  }
  .sixth_section_form {
    padding: 60px 0px;
  }
}
@media (max-width: 920px) {
  #sixth_section {
    padding: 20px 30px;
  }
  .container_sixth_section {
    padding: 60px 0px;
    flex-direction: column;
    row-gap: 30px;
  }
  .sixth_section_register_section .heading {
    font-size: 35px;
  }
  .sixth_section_register_section {
    width: 100%;
  }
  .sixth_section_form {
    width: 60%;
  }
  input {
    width: 400px;
  }
  form button {
    width: 400px;
  }
  #getitnow {
    width: 400px;
  }
}
@media (max-width: 817px) {
  .sixth_section_register_section .heading {
    font-size: 30px;
  }
  .sixth_section_register_section p {
    font-size: 15px;
  }
  .sixth_section_register_section .register {
    font-size: 25px;
  }
  .sixth_section_form {
    width: 70%;
  }
  input {
    width: 400px;
  }
  form button {
    width: 400px;
  }
}
@media (max-width: 670px) {
  .sixth_section_register_section .heading {
    font-size: 25px;
  }
  .sixth_section_register_section p {
    font-size: 12px;
  }
  .sixth_section_register_section .register {
    font-size: 20px;
  }
  .sixth_section_form h3 {
    font-size: 18px;
  }
  input {
    width: 300px;
  }
  form button {
    width: 300px;
  }
  #getitnow {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .sixth_section_form {
    width: 80%;
  }
  input {
    width: 300px;
  }
  form button {
    width: 300px;
  }
  .sixth_section_form h3 {
    font-size: 20px;
  }
}
@media (max-width: 463px) {
  .sixth_section_register_section .heading {
    font-size: 20px;
  }
  .sixth_section_form {
    width: 90%;
  }
  input {
    width: 250px;
  }
  #getitnow {
    width: 250px;
  }
}
@media (max-width: 390px) {
  input {
    width: 230px;
  }
  form button {
    width: 230px;
  }
  .sixth_section_form h3 {
    font-size: 17px;
  }
  .sixth_section_register_section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container_sixth_section {
    margin-top: 70px;
  }
  #getitnow {
    width: 220px;
  }
}

/* 7th section */

#seventh_section {
  padding: 20px 100px;
}
.container_seventh_section {
  margin-top: 50px;
  height: auto;
  overflow: hidden;
  padding: 30px;
}
.container_seventh_section h1 {
  text-align: center;
  color: #0072ff;
  font-size: 50px;
}
.container_seventh_section p {
  text-align: center;
}
.seventh_section_about_us_ciecle img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.seventh_section_about_us_ciecle {
  height: 70px;
  width: 120px;
  margin: 40px;
  border-radius: 50%;
}
.swiper-container {
  width: 100%;
}
.swiper-slide {
  margin-top: 30px;
  height: 100%;
  width: 100%;
  text-align: left;
  font-size: 18px;
  background: #fff;
  column-gap: 40px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: aliceblue;
  border-radius: 10px;
  justify-content: space-around;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.woner {
  margin: 30px 50px 30px -30px;
}
.woner p {
  text-align: left;
  font-size: 15px;
}
@media (max-width: 1290px) {
  .seventh_section_about_us_ciecle {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 1021px) {
  .seventh_section_about_us_ciecle {
    height: 100px;
    width: 130px;
  }
}
@media (max-width: 883px) {
  .seventh_section_about_us_ciecle {
    height: 100px;
    width: 150px;
  }
}
@media (max-width: 926px) {
  .seventh_section_about_us_ciecle {
    height: 80px;
    width: 130px;
  }
}
@media (max-width: 801px) {
  .seventh_section_about_us_ciecle {
    height: 70px;
    width: 140px;
  }
  .container_seventh_section h1 {
    text-align: center;
    color: #0072ff;
    font-size: 40px;
  }
}
@media (max-width: 758px) {
  .seventh_section_about_us_ciecle {
    height: 80px;
    width: 160px;
  }
  .woner p {
    text-align: left;
    font-size: 12px;
  }
}
@media (max-width: 670px) {
  .container_seventh_section h1 {
    font-size: 30px;
  }
  .container_seventh_section p {
    font-size: 13px;
  }
  .woner h3 {
    font-size: 16px;
  }
  .woner p {
    text-align: left;
    font-size: 10px;
  }
  .seventh_section_about_us_ciecle {
    height: 60px;
    width: 140px;
  }
}
@media (max-width: 623px) {
  #seventh_section {
    padding: 20px 50px;
  }
  .seventh_section_about_us_ciecle {
    height: 60px;
    width: 100px;
  }
}
@media (max-width: 581px) {
  .container_seventh_section h1 {
    font-size: 25px;
  }
}
@media (max-width: 565px) {
  .container_seventh_section p {
    font-size: 10px;
  }
  .woner {
    margin: 30px 20px 30px -40px;
  }
}
@media (max-width: 520px) {
  .seventh_section_about_us_ciecle {
    height: 60px;
    width: 100px;
  }
  .container_seventh_section h1 {
    font-size: 20px;
  }
  #seventh_section {
    padding: 20px 30px;
  }
}
@media (max-width: 470px) {
  .swiper-slide {
    flex-direction: column;
  }
  .woner {
    margin: 0px 0px 30px 0px;
  }
  .woner h3 {
    font-size: 16px;
    text-align: center;
  }
  .woner p {
    text-align: center;
    font-size: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .seventh_section_about_us_ciecle {
    height: 60px;
    width: 60px;
  }
}

/* footer section*/

#footer {
  height: 100%;
  width: 100%;
  background-color: var(--footer-background-color);
}

.main_div {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.footer_div {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px 100px;
}

.footer-logo {
  height: 35px;
  width: 35px;
  object-fit: cover;
}

.footer-logo-text {
  font-size: 25px;
  letter-spacing: 0.4px;
  color: #fff;
}

.footer-logo-a,
.f-l-t {
  padding-left: 0 !important;
}

.link_section {
  display: grid;
  grid-template-columns: 45% 15% 20% 20%;
  row-gap: 10px;
  justify-content: space-between;
}

.sub_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto;
  text-align: left;
  gap: 10px;
  padding: 20px 0px;
  padding-bottom: 10px;
}

.title {
  display: flex;
  /* align-items: center; */
  flex-direction: row;
  gap: 18px;
}

.title i {
  font-size: 28px;
  font-weight: 200;
  color: var(--a-color);
}

.sub_box p {
  padding: 7px 0px;
  font-size: 15px;
  color: var(--a-color);
  width: 280px;
}

.sub_box h3 {
  color: white;
  font-size: 21px;
  font-weight: 400;
}
.site_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 20px;
  justify-content: flex-start;
  column-gap: 20px;
}

.footer-social-icon {
  font-size: 16px;
}

.sub_box a {
  text-decoration: none;
  color: var(--a-color);
  transition: 0.3s ease;
}

.sub_box a:hover {
  color: var(--white-text-color);
  padding-left: 5px;
}

.footer_bottom {
  display: flex;
  flex-direction: column;
}

.bottom_sec_1 {
  display: flex;
  flex-direction: row;
  padding: 15px 0px;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  background-color: var(--bottom-background-color);
}

.bottom_sec_1 a {
  color: var(--a-color);
  transition: 0.3s ease;
  font-size: 12px;
}

.bottom_sec_1 a:hover {
  color: var(--white-text-color);
}

.copyright {
  padding: 15px 5px;
  text-align: center;
  font-size: 10.6px;
  letter-spacing: 0.7px;
  color: var(--white-text-color);
}

.binary {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    to bottom right,
    var(--white-text-color) 50%,
    var(--light-blue) 50%
  );
  background-repeat: no-repeat;
  background-position: 0 0;
  transition: background-position 2s ease-in-out;
}

.binary:hover {
  background-position: 100% 100%;
}

/* .binary:hover {
  color: var(--light-blue);
} */

@media screen and (width < 1137px) {
  .link_section {
    grid-template-columns: 400px 208px 208px;
  }
  .footer_div {
    padding: 0px 50px;
  }
}

@media screen and (width < 915px) {
  .link_section {
    grid-template-columns: 300px 200px;
  }
}

@media screen and (width < 651px) {
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .link_section {
    justify-content: flex-start;
    padding-left: 20px;
    grid-template-columns: 90%;
  }
}

@media screen and (width < 468px) {
  #footer {
    padding-left: 0;
    padding-right: 0;
  }
  .bottom_sec_1 {
    padding: 30px 7px;
  }
  .footer_div {
    padding: 0px 20px;
  }
}

@media screen and (width < 356px) {
  .bottom_sec_1 a {
    font-size: 11px;
  }
}

@media screen and (width < 387px) {
  .link_section {
    grid-template-columns: 320px;
  }
  .footer_div {
    padding: 0px;
  }
}
