@font-face {
  font-family: Roboto;
  src: url(assets/fonts/Roboto/Roboto-Black.ttf),
    url(assets/fonts/Roboto/Roboto-Light.ttf);
}

@font-face {
  font-family: Roboto-light;
  src: url(assets/fonts/Roboto/Roboto-Light.ttf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Roboto;
}

.main {
  height: 100%;
  width: 100%;
  position: relative;
  /* overflow-x: hidden; */
}

@media (max-width: 600px) {
  .main {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
  }
}

#navbars {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 950px) {
  #navbars{
    position: unset;
  }
}

/* First nav styling start */

.first-nav {
  font-family: Roboto;
  height: 64px;
  width: 100%;
  background-color: #e21b70;
  display: flex;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  margin-left: 33vw;
}

.logo {
  margin: 0 20px 0 0;
}

.logo img {
  height: 7.6vh;
  width: 100%;
  filter: invert(100%) sepia(76%) saturate(60%) hue-rotate(150deg)
    brightness(114%) contrast(100%);
}

.text {
  font-size: 0.9vw;
  color: white;
  margin-right: 1vw;
}

.btn {
  font-family: Roboto-light;
  padding: 0.9rem 1.1rem;
  margin-left: 10px;
  border-radius: 10px;
  border: 1px solid white;
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: white;
  color: black;
}

.nav-right {
  margin: 0.7vw;
  color: white;
}

@media (max-width: 1300px) {
  .nav-left {
    margin-left: 15vw;
  }
  .logo img {
    height: 6vh;
  }
  .text h3 {
    font-size: 2.6vw;
    font-weight: 400;
  }
  .btn button {
    width: 15vw;
    height: 5vh;
    margin-left: 2vw;
  }
}

@media (max-width: 600px) {
  .nav-left {
    margin-left: 0vw;
  }
  .logo img {
    display: none;
  }
  .text h3 {
    font-family: Roboto-light;
    font-size: 4.5vw;
    font-weight: 400;
  }
  .btn {
    padding: 0.4rem 0.9rem;
    margin-right: 5vw;
    text-wrap: wrap;
  }
}

/* First nav styling End */

/* Second nav styling start */

.second-nav {
  font-family: Roboto;
  height: 64px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.sec-nav-left {
  display: flex;
  align-items: center;
  margin-left: 13vw;
}

.logo-img {
  /* background-color: #333333; */
  width: 4%;
}

.logo-img img {
  width: 90%;
  border-radius: 6px;
  margin-right: 10px;
}

.logo-text h2 {
  font-family: Roboto-light;
  font-size: 1.1vw;
  font-weight: 900;
  color: #e21b70;
}

.sec-nav-right {
  display: flex;
  align-items: center;
  margin-right: 15vw;
}

.btn-1 {
  font-family: Roboto-light;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  color: black;
  border: 1px solid black;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-1:hover {
  transform: scale(1.1);
}

.btn-2 {
  font-family: Roboto-light;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background-color: #e21b70;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-2:hover {
  transform: scale(1.1);
}

.lang {
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}

.lang:hover {
  border-radius: 3px;
  background-color: #e8e7e7;
}

.lang svg {
  margin-right: 5px;
}

.lang-text {
  font-family: Roboto-light;
  font-size: 14px;
  font-weight: 600;
  margin-right: 3px;
}

.lang-sec-i {
  font-size: 24px;
  color: #e21b70;
}

.store i {
  font-size: 22px;
  color: rgb(73, 73, 73);
  margin-left: 29px;
}

@media (max-width: 1800px) {
  .sec-nav-left {
    margin: 0;
  }
  .logo-img {
    width: 38px;
    height: 35px;
  }
  .logo-text h2 {
    font-size: 1.4vw;
    margin-left: 0.7vw;
  }
  .sec-nav-right {
    margin: 0;
  }
}

@media (max-width:950px) {
  .second-nav {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .sec-nav-left {
    margin: 0;
  }
  .logo-img {
    width: 38px;
    height: 35px;
  }
  .logo-text h2 {
    font-family: Roboto;
    font-size: 4.9vw;
    margin-left: 0.7vw;
  }
  .sec-nav-right {
    margin: 0;
  }
  .btn-1,
  .btn-2 {
    display: none;
  }
  .lang svg,
  .lang-text,
  .lang-sec-i {
    display: none;
  }
}
/* Second navbar End */

/* Hero Section Start */
.hero-sec {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: burlywood; */
  background-color: #f7f7f7;
  margin-top: 100px;
}

.left-box-container {
  width: 110%;
  height: 40vh;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  color: #333333;
  margin-left: 9vw;
  /* background-color: burlywood; */
  padding-left: 6.4vw;
  letter-spacing: 0.7px;
}

.content p {
  width: 100%;
  font-size: 40px;
  font-weight: 600;
  /* background-color: aquamarin; */
}

.input {
  width: 110%;
  height: 8.9vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  margin-top: 2vw;
  border-radius: 15px;
  box-shadow: 0 0.188rem 1.25rem rgba(0, 0, 0, 0.1);
  z-index: 4;
}

#placeholder {
  font-family: Roboto-light;
  width: 81%;
  height: 5vh;
  margin-left: 0.7vw;
  border-radius: 6px;
  border: 1px solid rgb(223, 223, 223);
  padding-left: 17px;
  font-size: 15px;
  font-weight: 500;
}

.under-btn {
  position: absolute;
  right: 52.3%;
  padding: 0.5rem;
  border: none;
  background-color: transparent;
}

.under-btn i {
  font-size: 23px;
  margin-right: 7px;
  color: #c21760;
}

.under-btn a {
  font-family: Roboto-light;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #333333;
}

.under-btn a:hover {
  color: #c21760;
}

.input-btn {
  font-family: Roboto-light;
  padding: 0.9rem 1.1rem;
  margin: auto;
  border-radius: 7px;
  border: none;
  background-color: #e21b70;
  font-size: 14px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.1s ease;
}

.input-btn:hover {
  transform: scale(1.1);
  background-color: #c21760;
}

.right-box-container {
  width: 90%;
  /* background-color: darkblue; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-image img {
  width: 900px;
  margin-left: 2vw;
  margin-top: 9px;
  display: flex;
  justify-content: flex-end;
  /* margin-right: -2vw; */
  /* background-color: aqua; */
}

@media (max-width: 1700px) {
  body {
    overflow-x: hidden;
  }
  .left-box-container {
    width: 600%;
    height: 40vh;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-sec {
    display: flex;
    justify-content: space-between;
  }
  .content {
    width: 44vw;
    padding: 0;
    /* background-color: brown; */
    margin-left: 10vw;
  }
  .content p {
    width: 100%;
    font-size: 37px;
    line-height: 55px;
  }
  .custom-image img {
    width: 800px;
    margin-left: 3vw;
    margin-top: 5vw;
    /* background-color: #333333; */
  }
}

@media (max-width: 1250px) {
  body {
    overflow-x: hidden;
  }
  .hero-sec {
    height: 430px;
  }
  .left-box-container {
    width: 600%;
    height: 40vh;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content {
    width: 44vw;
    padding: 0;
    margin: 0;
  }
  .content p {
    font-family: Roboto-light;
    width: 100%;
    font-weight: 800;
    font-size: 32px;
    margin-left: 2vw;
    line-height: 40px;
  }
  .input {
    margin-left: 1.5vw;
    width: 120%;
  }
  .under-btn{
    margin-right: 3vw;
  }
  .custom-image img {
    width: 600px;
    /* height: 40vh; */
    margin-left: 14vw;
    margin-bottom: 3vw;
    /* background-color: #333333; */
  }
}

@media (max-width: 950px) {
  .hero-sec {
    margin-top: 0;
    height: 28vh;
  }
  .content {
    padding: 0;
    margin: 0;
    position: relative;
  }
  .content p {
    font-size: 24px;
    margin-top: -70px;
    /* padding-left: 15px; */
    line-height: 30px;
  }
  .input {
    height: 5vh;
    position: absolute;
    top: 4vw;
    width: 210%;
    margin-left: 2.9vw;
  }
  #placeholder {
    height: 5vh;
    width: 100%;
    margin-left: 0px;
  }
  .under-btn {
    padding: 0.5rem;
    margin-right: -48vw;
  }
  .input-btn {
    position: absolute;
    top: 120%;
    width: 100%;
    text-align: center;
  }
  .input-btn:hover{
    transform: scale(1.02);
  }
  .custom-image{
    position: relative;
  }
  .custom-image img {
    width: 500px;
    position: relative;
    right: 8%;
    top: -6vw;
    z-index: 1;
  }
}

@media (max-width: 750px) {
  .hero-sec {
    margin-top: 0;
    height: 25vh;
  }
  .content {
    padding: 0;
    margin: 0;
    position: relative;
  }
  .content p {
    font-family: Roboto;
    font-size: 18px;
    margin-top: -90px;
    padding-left: 13px;
    line-height: 30px;
  }
  .input {
    height: 5vh;
    position: absolute;
    top: -1vw;
    width: 210%;
    margin-left: 2.9vw;
  }
  #placeholder {
    height: 5vh;
    width: 100%;
    margin-left: 0px;
  }
  .under-btn {
    padding: 0.5rem;
    margin-right: -48vw;
  }
  .input-btn {
    position: absolute;
    top: 120%;
    width: 100%;
    text-align: center;
  }
  .input-btn:hover{
    transform: scale(1.02);
  }
  .custom-image{
    position: relative;
  }
  .custom-image img {
    width: 350px;
    position: relative;
    right: 8%;
    top: -7.7vw;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .hero-sec {
    margin-top: 100px;
    height: 300px;
  }
  .content {
    padding: 0;
    margin: 0;
    position: relative;
  }
  .content p {
    font-family: Roboto;
    font-size: 18px;
    margin-top: -70px;
    padding-left: 15px;
    line-height: 28px;
  }
  .input {
    height: 5vh;
    position: absolute;
    top: 6vw;
    width: 210%;
    margin-left: 2.9vw;
  }
  #placeholder {
    height: 5vh;
    width: 100%;
    margin-left: 0px;
  }
  .under-btn {
    padding: 0.5rem;
    margin-right: -48vw;
  }
  .input-btn {
    position: absolute;
    top: 130%;
    width: 100%;
    text-align: center;
  }
  .custom-image{
    position: relative;
  }
  .custom-image img {
    width: 280px;
    position: relative;
    right: 8%;
    top: -11vw;
  }
}
/* Hero section 1 End */

/* Hero section-2 Start */
.hero-sec-2 {
  width: 100%;
  height: 80vh;
  /* background-color: aqua; */
}

.hero-sec-2 h2 {
  font-size: 32px;
  padding: 4vw 16vw 1.8vw;
  display: flex;
  align-items: center;
  /* background-color: #333333; */
}

.long-img {
  width: 100%;
  height: 400px;
  background-color: #c21760;
}

.sec-2-img {
  position: relative;
}

.sec-2-img img {
  width: 100%;
  height: 400px;
  background-position: 50%;
  object-fit: cover;
}

.sec-2-img-card {
  width: 33%;
  height: 38vh;
  background-color: #ffffff;
  position: absolute;
  top: 60%;
  left: 16%;
  border-radius: 20px;
  box-shadow: 0 0.188rem 1.25rem rgba(0, 0, 0, 0.2);
}

.sec-2-content {
  width: 99%;
  /* background-color: #333333; */
  margin: auto;
  margin-top: 0.4vw;
  padding: 24px;
}

.sec-2-content h3 {
  font-family: Roboto-Light;
  font-size: 24px;
  font-weight: 700;
}

.sec-2-content .p-1,
.p-2,
.p-3 {
  font-family: Roboto-Light;
  margin-top: 1.7vw;
  font-size: 16px;
  font-weight: 600;
  color: rgb(34, 34, 34);
}

.sec-2-btn {
  font-family: Roboto-Light;
  margin-top: 1.7vw;
  padding: 16px 20px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  background-color: #e21b70;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.1s ease;
}

.sec-2-btn:hover {
  transform: scale(1.1);
  background-color: #c21760;
}

@media (max-width: 1700px) {
  .hero-sec-2 {
    /* background-color: fuchsia ; */
  }
  .hero-sec-2 h2 {
    font-size: 32px;
    /* background-color: #333333; */
    padding-left: 9vw;
  }
  .sec-2-img-card {
    position: absolute;
    left: 9%;
    width: 40%;
    height: 35vh;
    margin: auto;
    /* background-color: aqua; */
  }
  .sec-2-img-card h3 {
    font-family: Roboto;
    font-size: 24px;
  }
  .sec-2-content .p-1,
  .p-2,
  .p-3 {
    font-size: 16px;
    /* margin-top: 7vw; */
  }
}

@media (max-width: 1300px) {
  .hero-sec-2 h2 {
    font-size: 32px;
    /* background-color: #333333; */
    padding-left: 4vw;
  }
  .sec-2-img-card {
    position: absolute;
    left: 3%;
    top: 66%;
    width: 63%;
    height: 35vh;
    margin: auto;
    /* background-color: aqua; */
  }
  .sec-2-img-card h3 {
    font-family: Roboto-light;
    font-size: 24px;
  }
  .sec-2-content .p-1,
  .p-2,
  .p-3 {
    font-size: 16px;
    margin-top: 2.7vw;
  }
}

@media (max-width: 960px) {
  .hero-sec-2 h2 {
    font-size: 32px;
    /* background-color: #333333; */
    padding-left: 4vw;
    padding-top: 10vw;
  }
}

@media (max-width: 799px){
  .hero-sec-2 h2 {
    font-size: 24px;
    /* background-color: #333333; */

  }
  .sec-2-img-card {
    position: absolute;
    left: 2.2%;
    width: 94%;
    height: 33vh;
    margin: auto;
    /* background-color: aqua; */
  }
  .sec-2-img-card h3 {
    font-family: Roboto;
    font-size: 16px;
  }
  .sec-2-content .p-1,
  .p-2,
  .p-3 {
    font-size: 14px;
    margin-top: 4vw;
  }
  .sec-2-btn {
    margin-top: 4vw;
  }
}

@media (max-width: 600px) {
  .hero-sec-2 h2 {
    font-size: 24px;
    /* background-color: #333333; */
    padding: 10vw 5vw;
  }
  .sec-2-img-card {
    position: absolute;
    left: 2.2%;
    width: 94%;
    height: 39vh;
    margin: auto;
    /* background-color: aqua; */
  }
  .sec-2-img-card h3 {
    font-family: Roboto;
    font-size: 16px;
  }
  .sec-2-content .p-1,
  .p-2,
  .p-3 {
    font-size: 14px;
    margin-top: 7vw;
  }
  .sec-2-btn {
    margin-top: 7vw;
  }
}
/* CARD SECTION START */
.card-section {
  width: 100%;
  height: 255vh;
  display: flex;
  flex-wrap: wrap;
  /* background-color: #C21760; */
}

.flex-card {
  display: flex;
  flex-wrap: wrap;
}

.card-section h3 {
  font-size: 32px;
  color: #333333;
  padding: 5vw 0 0.5vw 16vw;
  letter-spacing: 1px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 24px;
  margin-top: 1.4vw;
  padding: 0 16vw;
  /* background-color: #333333; */
}

.card-img {
  height: 100%;
  margin: 0;
}

figure {
  width: 16.4vw;
  height: 27vh;
  background-color: aqua;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  /* display: flex; */
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
  transition: 0.4s ease;
}

figure img:hover {
  transform: scale(1.07);
}

figcaption span {
  font-family: Roboto-light;
  padding: 10px 16px;
  background-color: #fff;
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  border-radius: 9px;
  position: absolute;
  top: 80%;
  left: 1.8%;
}
/* CARD SECTION END */

/* APP DOWNLOAD SECTION START */
.app-download-section {
  width: 100%;
  height: 50vh;
  /* background-color: #333333; */
  margin-top: 2vw;
}

.app-download-section h2 {
  font-size: 32px;
  padding: 2vw 0 2vw 16vw;
  color: #333333;
  letter-spacing: 1.7px;
}

.container-sec {
  width: 68%;
  height: 37vh;
  background-color: #e21b70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  border-radius: 20px;
}

.left-container-sec {
  width: 49%;
  height: 100%;
  /* background-color: blueviolet; */
  padding: 48px 0 48px 32px;
}

.left-container-sec h3 {
  font-family: Roboto-light;
  font-size: 24px;
  color: #fff;
}

.left-under-sec {
  width: 100%;
  height: 16vh;
  /* background-color: rgb(17, 10, 214); */
  display: flex;
  align-items: center;
}

.under-sec1 {
  width: 15%;
  height: 10vh;
  /* background-color: #E21B70; */
  display: flex;
  align-items: center;
  justify-self: center;
  border-radius: 8px;
  border: 1px solid white;
}

.under-sec1 img {
  width: 100%;
  padding: 8px;
}

.under-sec2 {
  width: 55%;
  height: 100%;
  /* background-color: cornflowerblue; */
  margin-left: 1.1vw;
  padding-top: 1.5vw;
}

.under-sec2 p {
  font-family: Roboto-light;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
  letter-spacing: 0.3px;
}

.left-img img {
  /* border-color: burlywood; */
  margin-left: -13px;
  margin-top: -14px;
  cursor: pointer;
}

.right-container-sec {
  width: 52%;
  height: 100%;
  /* background-color: chartreuse; */
  display: flex;
  align-items: center;
}

.right-container-sec img {
  width: 100%;
}
/* APP DOWNLOAD SECTION END */

/* Wasa to ma na hero-sec 2 ko copy kia ha but kuch changes thi jo ma na karni thi to wo changes sief ek div ma hi tha to ma na us ko alag kar ka likha ha 
wasa is ko div hero-sec 3 hi daha ga */
.sec-3-img-card {
  width: 33%;
  height: 26vh;
  background-color: #ffffff;
  position: absolute;
  top: 74%;
  left: 16%;
  border-radius: 20px;
  box-shadow: 0 0.188rem 1.25rem rgba(0, 0, 0, 0.2);
}
/* so hero-sec 3 ka END ha ya */

/* TEXT-SECTION START */
.text-section {
  width: 100%;
  height: 150vh;
  /* background-color: coral; */
  margin-top: 4.2vw;
}

.section-1 {
  width: 70%;
  height: 100%;
  /* background-color: lightgreen; */
  padding: 0 69px;
  margin: auto;
  color: #333333;
  /* border-bottom: 1px solid rgb(117, 117, 117); */
}

.section-1 h1 {
  font-size: 32px;
  letter-spacing: 1.3px;
  margin-top: 0.6vw;
}

.section-1 p,
span {
  font-family: Roboto-light;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 0.6vw;
}

.line {
  height: 1px; /* adjust the height to reduce the line thickness */
  width: 100%; /* adjust the width to reduce the line length */
  margin-top: -10px;
  background-color: #e1e1e1;
  border: none;
}

.section-1 h2 {
  font-size: 22px;
  letter-spacing: 1.3px;
  margin-top: 1vw;
}

.section-1 h3 {
  font-size: 18px;
  letter-spacing: 1.3px;
  margin-top: 0.6vw;
}

.section-1 h4 {
  font-size: 16px;
  letter-spacing: 1.3px;
  margin-top: 0.6vw;
}

.section-1 a {
  color: #e21b70;
  font-family: Roboto-light;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}
/* TEXT-SECTION END */

/* FOOTER START */
.footer {
  width: 100%;
  height: 70vh;
  /* background-color: darkslategray; */
  margin-top: 1.6vw;
}

.footer-section {
  width: 70%;
  height: 100%;
  /* background-color: bisque; */
  margin: auto;
}

.foot-line {
  height: 1px; /* adjust the height to reduce the line thickness */
  width: 100%; /* adjust the width to reduce the line length */
  margin-top: -10px;
  background-color: #e1e1e1;
  border: none;
}

.footer-sec-1 {
  width: 78%;
  height: 15%;
  /* background-color: darkolivegreen; */
  display: flex;
  align-items: center;
  color: #707070;
  font-size: 16px;
  gap: 10px;
}

.footer-sec-1 a {
  font-family: Roboto-light;
  font-size: 16px;
  font-weight: 800;
  color: #39434d;
  cursor: pointer;
}

.footer-sec-1 a:hover {
  font-family: Roboto;
  font-weight: 900;
  color: black;
}

.foot-line-2 {
  height: 1px; /* adjust the height to reduce the line thickness */
  width: 100%; /* adjust the width to reduce the line length */
  margin-top: 0.6px;
  background-color: #e1e1e1;
  border: none;
}

.footer-sec-2 {
  width: 100%;
  height: 39%;
  /* background-color: burlywood; */
  margin-top: 0.6vw;
  display: flex;
}

.nav-1 {
  width: 26%;
  /* background-color: #333333; */
}

.nav-1 {
  font-family: Roboto-light;
  font-size: 16px;
  margin-top: 1vw;
  color: #707070;
  font-weight: 300;
}

.nav-2 {
  display: grid;
  gap: 0 2%;
  grid-template-columns: repeat(3, 1fr);
}

ul {
  list-style: none;
  /* background-color: #c21760; */
  width: 80%;
}

.nav-2 li a {
  font-family: Roboto-light;
  font-size: 16px;
  font-weight: 800;
  color: #39434d;
  list-style: none;
  display: grid;
  margin-top: 1.1vw;
}

.nav-2 li a:hover {
  font-family: Roboto;
  font-weight: 900;
  color: black;
}

.foot-line-3 {
  height: 1px; /* adjust the height to reduce the line thickness */
  width: 100%; /* adjust the width to reduce the line length */
  margin-top: 0.9vw;
  background-color: #e1e1e1;
  border: none;
}

.footer-sec-3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20vw;
}

.left-footer-logo {
  display: flex;
  /* background-color: #707070; */
  margin-top: 1.1vw;
}

.footer-logo {
  display: flex;
  align-items: center;
  /* margin-top: 1.6vw; */
  /* background-color: aqua; */
}

.footer-logo-img {
  /* background-color: #333333; */
  width: 4%;
}

.footer-logo-img img {
  width: 100%;
  border-radius: 4px;
}

.left-footer-logo .vertical-line {
  border-right: 1px solid #a0a0a0;
  width: 1%;
  position: relative;
  right: 183%;
}

.footer-logo-2 {
  display: flex;
  align-items: center;
  /* background-color: aqua; */
  margin-left: -33vw;
}

.footer-logo-2 img {
  width: 100%;
  border-radius: 4px;
  margin-left: -30%;
}

.footer-logo-text h2 {
  font-family: Roboto-light;
  font-size: 1.1vw;
  font-weight: 900;
  color: #e21b70;
  margin-left: 0.4vw;
}

.right-footer-icons {
  width: 30%;
  display: flex;
  align-items: center;
  /* background-color: #707070; */
  margin-top: 1.1vw;
}

.instagram {
  width: 8%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #707070;
  margin-left: 17vw;
  transition: 0.1s ease;
}

.instagram:hover {
  transform: scale(1.2);
  background-color: #f2ecec;
}

.instagram i {
  font-size: 24px;
  color: #39434d;
}

.facebook {
  width: 8%;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #707070;
  margin-left: 0.5vw;
  transition: 0.1s ease;
}

.facebook:hover {
  transform: scale(1.2);
  background-color: #f2ecec;
}

.facebook i {
  font-size: 24px;
  color: #39434d;
}

/* FOOTER END */