@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
:root {
  --magenta: rgb(68, 13, 137);
  --violetred: rgb(194, 17, 160);
  --purple-pink: #42126d;
  --white: #ffffff;
  --darkPurplePink: #42126d;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner_header {
  background-color: white;
  height: 35px;
  margin-top: 0px;
}
.banner_content {
  color: rgb(68, 13, 137);
  letter-spacing: 0.25px;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  font-family: 'poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor:pointer;
}
.banner_content img {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-left: 8px;
  width: 12px;
  height: 6px;
}
.hero_logo {
  margin-right: 20px;
  padding-left: 40px;
  padding-right: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
}

ul li {
  text-decoration: none;
  color: white;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  font-family: "poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  display: block;
}
ul li:before, ul li:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  top: 50%;
  margin-top: -0.5px;
  background: #fff;
}
ul li:before {
  left: -2.5px;
}
ul li:after {
  right: 2.5px;
  background: #fff;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

ul li:hover:before {
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

ul li:hover:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}
ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
}
span.text-white {
  color: white;
  font-size: 16px;
  font-weight: bold;
  font-family: "poppins", sans-serif;
}


.first_section {
  background-image: url(../images/Rectangle\ 25.png);
}

.second_section {
  background-image: url(../images/easy\ pay\ 1.png),
    url(../images/Rectangle\ 25.png);
  background-repeat: no-repeat;
  background-position: right 100%;
}
.left {
  position: absolute;
  top: 70px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 10px;
}
.right {
  position: absolute;
  top: 60px;
  right: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.nav_bar {
  display: flex;
  flex-direction: row;
}
.c-nav {
  display: flex;
  align-items: center;
}
li.box {
  border-radius: 7px;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgb(194, 17, 160);
}

.reg_text {
  text-decoration: none;
  border-radius: 7px;
  border: none;
  margin-top: 85px;
  margin-left: 50px;
  margin-right: 20px;
  margin-bottom: 270px;
  padding: 10px 40px;
  background-color: rgb(194, 17, 160);
  color: white;
  display: inline-block;
  font-family: "poppins", sans-serif;
  font-size: 17px;
  font-weight: bold;
}
.reg_text:hover {
  color: darkblue;
  opacity: 0.9;
}

.center_text {
  font-family: "poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  margin-left: 50px;
  margin-bottom: 20px;
  padding-top: 140px;
  cursor: pointer;
  color: white;
}
.center_subtext {
  font-family: "poppins", sans-serif;
  font-size: 18px;
  color: white;
  margin: 50px;
  padding-bottom: 50px;
  line-height: 1.5;
  cursor: pointer;
}

.c_sales {
  font-family: "poppins", sans-serif;
  text-decoration: none;
  color: white;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
}
li svg {
  width: 7px;
}

.hamburger {
  display: none;
}

/* Hamburger menu styling */
@media screen and (max-width: 1120px) {
  .hamburger {
    position: absolute;
    z-index: 100;
    top: 4rem;
    right: 1rem;
    padding: 4px;
    border: black solid 1px;
    background: white;
    cursor: pointer;
  }

  .hamburger {
    display: block;
  }

  i.closeIcon {
    display: none;
  }
  .c-nav {
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.2s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(69, 13, 137, 0.92);
    color: white;
    list-style: none;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
  }
  .showMenu {
    transform: translateY(0);
  }
  .c-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }
  .left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-left: 50px;
  }
  .nav_bar {
    display: flex;
    flex-direction: column;
  }

  ul li {
    font-size: 24px;
  }
  li.box {
    border-radius: 7px;
    border: none;
    padding: 30px 100px;
    background-color: rgb(194, 17, 160);
  }
  .c-nav-right {
    padding-left: 0;
  }

  span.text-white {
    font-size: 24px;
  }
  .center_text {
  padding-top: 120px;
  }
}

/* Mobile view Responsiveness for Section 1 */
@media screen and (max-width: 660px) {
  .second_section {
    background-image: url(../images/easy\ pay\ 1.png),
      url(../images/Rectangle\ 25.png);
    background-repeat: no-repeat;
    background-size: 50rem, cover;
    padding-bottom: 80%;
  }
  .center_text {
    font-size: 32px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 0px;
    padding-top: 50px;
  }

  .center_subtext {
    font-family: "poppins", sans-serif;
    font-size: 18px;
    color: white;
    margin: 10px;
    padding-bottom: 50px;
    line-height: 1.5;
    cursor: pointer;
  }
  .reg_text {
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 270px;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 900;
  }
  li.box {
    padding: 20px 20px;
  }
  ul li {
    font-size: 16px;
  }
  span.text-white {
    font-size: 16px;
  }

  .nav_bar {
    display: flex;
    flex-direction: column;
    background-color: white;
  }
  .hero_logo img {
    content: url("../images/MobileView_Logo.png");
    height: 50px;
  }
  .hamburger {
    top: 3rem;
    padding: 6px;
    border: none;
    background: white;
    cursor: pointer;
  }
  .banner_content {
    color: #ffffff;
    background: #021c34;
    line-height: 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    padding: 8px 0px;
    text-align: center;
  }
  .banner_content img {
    content: url("../images/Mobile_Vector.png");
  }
}

@media screen and (max-width: 395px) {
  .reg_text {
    padding: 15px 10px;
  }
  .center_text {
    font-size: 24px;
  }
  .center_subtext {
    font-size: 14px;
  }
}

/* Section 2 Styling */
#section2 {
  margin: 80px 50px;
  font-family: "poppins", sans-serif;
  color: #440d82;
}
.section2-Headings {
  margin-bottom: 50px;
}
.section2-Headings h2 {
  margin-bottom: 15px;
  font-size: 35px;
  text-shadow: 0px 1px grey;
  font-weight: 600;
  
}
.section2-Headings p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.section2Flex {
  display: flex;
}
.flexHero {
  width: 50%;
}
.flexHero img {
  width: 90%;
}

.flexContent {
  width: 50%;
  padding: 20px 50px;
}
.flexContent h3 {
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 600;
  line-height: 44px;
}
.flexContent p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.markedList {
  display: flex;
  margin-top: 50px;
  margin-bottom: 20px;
}
.mode {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.mode p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
  font-weight: bold;
}

.markedListFlex1,
.markedListFlex2 {
  width: 50%;
}
.det {
  padding-right: 50px;
}

/* Mobile view for Section 2 */
@media only screen and (max-width: 660px) {
  #section2 {
    margin: 50px 10px;
  }
  .section2Flex {
    display: flex;
    flex-direction: column;
  }
  .section2-Headings h2 {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 40px;
  }
  .section2-Headings p {
    font-size: 16px;
    line-height: 24px;
  }
  .flexHero {
    width: 100%;
  }
  .flexHero img {
    width: 100%;
    height: 80%;
  }

  .flexContent {
    width: 100%;
    padding: 0px 10px;
    margin-top: 20px;
  }
  .flexContent p {
    font-size: 16px;
  }
  .markedList {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .flexContent h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
  }
  .det {
    padding-right: 0px;
  }
  #link .pp {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
  }
  .markedListFlex1,
  .markedListFlex2 {
    width: 100%;
  }
}

/* Section 2 Media Query for Tablets */
@media only screen and (min-width: 661px) and (max-width: 1024px) {
  .section2Flex {
    display: flex;
    flex-direction: column;
  }
  .flexHero {
    width: 100%;
  }
  .flexHero img {
    width: 100%;
    height: 80%;
  }

  .flexContent {
    width: 100%;
    padding: 0px 10px;
    margin-top: 20px;
    flex-direction: row;
  }
}

/* section 3 */
#whole {
  display: flex;
  background-color: var(--white);
  margin-left: 50px;
}

.text {
  color: rgb(68, 13, 130);
  font-family: "poppins";
  padding-top: 15px;
  width: 50%;
}
.text h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
}

a {
  text-decoration: none;
}

.arrow {
  width: 22px;
  height: 20px;
  margin-top: 18px;
}

.pp {
  margin-left: 5px;
  margin-top: 17px;
  font-weight: bold;
  color: rgb(194, 17, 160);
  font-family: 'poppins';
   font-size: 16px;
    
}

#link {
  display: flex;
}

.pa,
.pb,
.pc,
.pd {
  font-family: 'poppins';
  font-weight: bold;
  font-size: 17px;
  color: rgb(68, 13, 130);
  margin-left: 5px;
  margin-top: 9px;
}


.diva,
.divb,
.divc,
.divd {
  display: flex;
}

.pa {
  padding-right: 150px;
}

.tick,
.ticka {
  margin-bottom: 5px;
}

.ticka {
  height: 38px;
  width: 40px;
  margin-top: 9px;
}

#image {
  width: 50%;
}

.stack {
  margin-right: 30px;
  margin-top: 30px;
  display: block;
  width: 100%;
}

.stack1 {
  display: none;
}

.dev {
  margin-top:5px;
  font-size: 18px;
}

h1 {
  font-weight: 900;
}
@media only screen and (max-width: 660px) {
  #whole {
    flex-direction: column-reverse;
    margin-left: 10px;
  }
  .stack {
    display: none;
  }
  #image {
    width: 100%;
    margin-top: 50px;
  }
  .stack1 {
    display: block;
    width: 100%;
  }
  .text {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }
  .pa {
    padding-right: 20px;
  }
  .text h1 {
    font-size: 24px;
    line-height: 32px;
  }
  #develop {
    margin-top: 10px;
  }
}
/* Section 3 Media Query for Tablets */
@media only screen and (min-width: 661px) and (max-width: 1024px) {
  .text h1 {
    font-weight: 600;
    font-size: 28px;
    line-height: 44px;
  }
  .stack {
    display: none;
  }

  .stack1 {
    display: block;
    width: 100%;
    height: 90%;
  }
}

/* section 4 */
.section_4 {
  font-family: "Poppins", sans-serif;
  display: flex;
  margin-top: 5em;
  margin-left: 50px;
  background-color: #ffffff;
}
.safeImage {
  width: 50%;
}

.safe1 {
  width: 100%;
  margin-right: 0;
  border: none;
  padding-right: 0em;
}

.content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.content h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 37px;
  line-height: 44px;
  color: #440d82;
  margin-bottom: 10px;
}

.content p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #440d82;
  margin-right: 4em;
}

/* Section 4 Media Query Mobile View */
@media only screen and (max-width: 660px) {
  .section_4 {
    display: flex;
    flex-direction: column;
    margin-top: 3em;
    margin-left: 10px;
    gap: 50px;
    margin-bottom: 50px;
  }

  .safeImage {
    width: 100%;
  }

  .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  .content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-right: 23px;
  }
  .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-right: 22px;
  }
}
/* Section 4 Media Query for Tablets */
@media only screen and (min-width: 661px) and (max-width: 1024px) {
  .section_4 {
    display: flex;
    flex-direction: column;
  }
  .safeImage {
    width: 100%;
  }
  .content {
    width: 100%;
    flex-direction: row;
    gap: 5px;
    margin-bottom: 30px;
  }
  .content1,
  .content2 {
    width: 50%;
  }
}


/* section 5 */
.trusted {
  background: linear-gradient(
    to right,
    rgb(29, 5, 83),
    rgb(55, 7, 93),
    rgb(68, 13, 130)
  );
  text-align: center;
}

.ps {
  padding: 70px;
}

.trustedtxt {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 64px;
  color: white;
  padding: 20px;
  text-align: center;
}

.payment {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: #440d82;
  width: 60%;
}

.artipay {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 50%;
  margin-top: 15px;
}

/* Section 5 Media Query Mobile view */
@media (max-width: 660px) {
  .trustedtxt {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-align: left;
  }

  .ps {
    padding: 30px 50px 10px 10px;
  }

  .payment {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    width: 100%;
  }

  .artipay {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 100%;
    margin-top: 15px;
  }
}

/* section 6 */

.main-content {
  background: #f9fbfc;
  cursor:pointer;
}

.header {
  padding-top: 0px;
  padding-right: 40px;
  padding-bottom: 20px;
  padding-left: 23px;
}

.header h3 {
  font-weight: 600;
  margin-top: 20px;
  margin-right: 0;
  margin-bottom: 7px;
  margin-left: 0px;
  font-family: "poppins";
  font-size: 24px;
  padding-top: 15px;
  color: #1e0553;
}
.header p {
  font-size: 14px;
  color: #1e0553;
  font-family: "poppins";
}
.three-cards {
  margin: 3px 0 0 0;
}

.three-cards {
  display: flex;
}
  
 .three-cards { visibility: hidden; }
/* Prevents :hover from triggering in the gaps between items */

.three-cards > * { visibility: visible; }
/* Brings the child items back in, even though the parent is `hidden` */

.three-cards > * { transition: opacity 150ms linear 100ms, transform 150ms ease-in-out 100ms; }
/* Makes the fades smooth with a slight delay to prevent jumps as the mouse moves between items */

.three-cards:hover > * { opacity: 0.4; transform: scale(0.9); }
/* Fade out all items when the parent is hovered */

.three-cards > *:hover { opacity: 1; transform: scale(1); transition-delay: 0ms, 0ms; }
/* Fade in the currently hovered item */
  

.card1 {
  max-width: 80%;
  margin: 30px 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

.card1 img {
  width: 50px;
  position: relative;
  margin-left: 16px;
  margin-top: 15px;
}

.card1 p {
  font-size: 15px;
  padding: 0 20px;
  /* margin top 30px */
  margin: 15px 0;
  line-height: 1.5;
  font-family: "poppins";
  color: rgb(68, 13, 130);
}
.sub-card1 {
  display: flex;
  align-items: center;
}
.head-shot1 {
  max-width: 10%;
  margin-left: 9px;
}
.head-shot1 img {
  /* image should be 100% of its container */
  max-width: 100%;
  border-radius: 100%;
}
.head-shot1-info {
  margin-top: 10px;
}
.head-shot1-info p {
  margin: 0;
}

/* card 2 design begins*/

.card2 {
  max-width: 80%;
  margin: 30px 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

.card2 img {
  width: 50px;
  position: relative;
  margin-left: 16px;
  margin-top: 15px;
}
.card2 p {
  font-size: 15px;
  padding: 0 20px;
  margin: 25px 0;
  line-height: 1.5;
  font-family: "poppins";
  color: rgb(68, 13, 130);
}
.sub-card2 {
  display: flex;
  align-items: center;
}
.head-shot2 {
  max-width: 10%;
  margin-left: 9px;
}
.head-shot2 img {
  /* image should be 100% of its container */
  max-width: 100%;
  border-radius: 100%;
}
.head-shot2-info {
  margin-top: 10px;
}
.head-shot2-info p {
  margin: 0;
}

/* design 3 start */

.card3 {
  max-width: 80%;
  margin: 30px 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

.card3 img {
  width: 30px;
  position: relative;
  margin-left: 16px;
  margin-top: 15px;
}
.card3 p {
  font-size: 15px;
  padding: 0 20px;
  margin: 15px 0;
  line-height: 1.5;
  font-family: "poppins";
  color: rgb(68, 13, 130);
}
.sub-card3 {
  display: flex;
  align-items: center;
}
.head-shot3 {
  max-width: 10%;
  margin-left: 9px;
}
.head-shot3 img {
  /* image should be 100% of its container */
  max-width: 100%;
  border-radius: 100%;
}
.head-shot3-info {
  margin-top: 10px;
}
.head-shot3-info p {
  margin: 0;
}

/* Mobile View  for testimonial section*/
@media screen and (max-width: 660px) {
  .three-cards {
    display: flex;
    flex-direction: column;
  }

  .card1,
  .card2,
  .card3 {
    max-width: 100%;
    margin: 15px;
    padding: 15px;
  }
}

/* Section 7 */

#section7 {
  margin: 70px 0;
  margin-left: 40px;
  font-family: "Poppins", sans-serif;
}
.tryNow h3 {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #440d82;
  margin-bottom: 10px;
}
.tryNow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tryNowFlex {
  justify-content: center;
  align-items: flex-start;
  padding-right: 10px;
  gap: 24px;
}

.button7 {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 10%;
}

.tryNow p {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 45px;
  line-height: 64px;
  color: #440d82;
  margin-bottom: 10px;
  font-weight: 600;
}
.tryNow button {
  background-color: #c211a0;
  padding: 15px 40px;
  border: none;
  margin: 0;
  color: white;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
}
.tryNow button:hover {
  background-color: #960c7a;
}

/* Section 7 Media Query Mobile view */
@media only screen and (max-width: 660px) {
  #section7 {
    margin: 70px 0;
    margin-left: 0;
    font-family: "Poppins", sans-serif;
  }
  .tryNow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .tryNowFlex {
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    gap: 16px;
    text-align: center;
  }
  .tryNow h3 {
    font-family: "Gilroy-Medium", sans-serif;
    font-size: 16px;
    line-height: 24px;
  }
  .tryNow p {
    font-family: "Gilroy-Medium", sans-serif;
    font-size: 24px;
    line-height: 32px;
    padding: 0 15%;
  }

  .tryNow button {
    padding: 14px 32px;
    gap: 10px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
  }
  .button7 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
  }
}
/* Section 7 Media Query for Tablets */
@media only screen and (min-width: 710px) and (max-width: 1024px) {
  .tryNowFlex p {
    font-family: "Gilroy-Medium", sans-serif;
    font-size: 30px;
    line-height: 32px;
    color: #440d82;
    margin-bottom: 10px;
    font-weight: 600;
  }
  #section7 {
    margin-left: 20px;
  }
}

/* section 8 */

.container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60vh;
  width: 100%;
  color: white;
  background-image: linear-gradient(
    #1d0553 7.93%,
    #37075d 60.97%,
    #440d82 91.81%
  );
  cursor:pointer;
}

.first h2,
.second h2,
.third h2,
.fourth h2 {
  font-family: 'poppins';
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.5;
  color: white;
  margin-bottom: 10px;
}

.first p,
.second p,
.third p,
.fourth p {
  font-family: 'poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.5;
  color: #ffffff;
}

#bookmark {
  background-image: linear-gradient(
    #1d0553 7.93%,
    #37075d 60.97%,
    #440d82 91.81%
  );
  display: flex;
  flex-direction: column;
}
.social {
  text-align: center;
}
.fa {
  padding: 10px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  margin: 2px 2px;
  border-radius: 50%;
  color: hsla(0, 0%, 100%, 0.8);
  border: 2px solid hsla(0, 0%, 100%, 0.8);
}

.fa:hover {
  color: hsl(300, 69%, 71%);
  border: 2px solid hsl(300, 69%, 71%);
}

/* Section 8 Media Query Mobile view */
@media only screen and (max-width: 450px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    height: 100%;
    padding: 20px;
    background: #ffff;
    color: rgb(68, 13, 130);
  }

 #bookmark {
    background-image: #ffffff;
    color: rgb(68, 13, 130);
  }
  .first h2,
  .second h2,
  .third h2,
  .fourth h2 {
    color: rgb(68, 13, 130);
  }

  .first p,
  .second p,
  .third p,
  .fourth p {
    color: rgb(68, 13, 130);
  }
  .social {
    background-color: #ffffff;
    text-align: center;
    margin-top: 0px;
    padding-bottom: 20px;
  }
  .fa {
    color: #440d82;
    border: 2px solid #440d82;
  }
}
