body {
  background-image: url("./assets/bgImage.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.mobileNavBarContainer {
  display: none;
}
.whatsappDiv {
  position: fixed;
  z-index: 999;
  bottom: 10%;
  right: 5%;
}
.whatsappDiv img {
  width: 60px;
  height: 60px;
}
.phoneDiv {
  position: fixed;
  z-index: 999;
  bottom: 20%;
  right: 5%;
}
.phoneDiv img {
  width: 60px;
  height: 60px;
}
li {
  list-style-type: none !important;
}
.sectionHead {
  font-weight: 600;
  font-size: 45px;
  color: #020202;
  text-align: center;
  font-family: "nunito";
  margin-bottom: 10px;
}
.toggle {
  display: none;
}
/* navContainer */

.navContainer {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 3.5%;
}
.navContainer.active {
  background-color: aliceblue;
  animation: 0.5s ease-in-out forwards comeOut;
  padding: 10px 0;
}
@keyframes comeOut {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.navContainer.active .navBar ul li a {
  color: #020202;
}
.navContainer.active button {
  background-color: #16145d;
  border: none;
  color: aliceblue;
}
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navContainer.active .navBar .logo h1 {
  color: #16145d;
}
.navBar .logo h1 {
  color: aliceblue;
  font-family: "Nunito";
  font-weight: 1000;
}
.navBar .navList ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.navBar .navList ul li {
  list-style-type: none;
  color: aliceblue;
  font-family: "Nunito";
  font-weight: 1000;
  font-size: 20px;
}
.navBar .navList ul li a {
  text-decoration: none;
  color: inherit;
  position: relative;
  font-weight: 600;
}
.navBar .navList ul li a::after {
  position: absolute;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  width: 0%;
  border-radius: 50%;
  height: 2px;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5bb7d3;
  content: "";
}
.navBar .navList ul li a:hover {
  color: #5bb7d3;
}
.navBar .navList ul li a:hover::after {
  width: 50%;
}
.navBar button {
  background-color: #5bb7d3;
  padding: 5px 20px;
  font-family: "Nunito";
  border: none;
  color: aliceblue;
  border-radius: 30px;
}
.navBar button a {
  text-decoration: none;
  color: inherit;
}
/* navContainer */

.homeFlex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.homeData h1 {
  font-family: "Nunito";
  font-weight: 1000;
  font-size: 5rem;
  color: #fff;
}
.homeData p {
  font-family: "Nunito";
  font-weight: 500;
  font-size: 1.5rem;
  width: 100%;
  color: aliceblue;
}
.homeData button {
  background-color: transparent;
  padding: 10px 30px;
  border: 2px solid #5bb7d3;
  font-family: "Nunito";
  font-weight: 500;
  border-radius: 30px;
  color: #5bb7d3;
}
.homepageImage img {
  width: 100%;
  aspect-ratio: 1;
}
.homepageContainer {
  position: relative;
  overflow: hidden;
  background-color: #16145de5;
}
.shape1 {
  position: absolute;
  z-index: 1;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50% 150% / 150% 50%;
  background-color: aliceblue;
  animation: rotate 25s linear infinite;
  transform: translateY(50%);
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shape2 {
  position: absolute;
  z-index: 1;
  bottom: -30%;
  transform: translateY(50%);
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50% 150% / 150% 50%;
  background-color: aliceblue;
  animation: rotate 25s backwards infinite;
}
/* abtContainer */

.aboutContainer {
  padding: 30px 0;
  /* display: none; */
  background-color: aliceblue;
}
.abtData {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.aboutImage img {
  width: 100%;
  border-radius: 30px;
  margin-top: 30px;
}
.abtFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.abtFlex h2 {
  color: #16145d;
  font-family: "Nunito";
  font-size: 2.5rem;
}
.abtFlex p {
  color: #333333dd;
  font-family: "Nunito";
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
.abtFlex h4 {
  font-family: "Nunito";
  font-weight: 600;
  font-size: 2rem;
  margin-top: 10px;
  color: #16145d;
}
.innerBg h5 {
  text-align: center;
  color: aliceblue;
  background-color: #16145daa;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  border-radius: 50px;
  font-family: "Nunito";
}
.routeBG {
  background-image: url("./assets/routingBG.png");
  background-size: cover;
  background-position: center;

  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.switchBg {
  background-image: url("./assets/switchingBG.png");
  background-size: cover;
  background-position: center;

  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.networkBg {
  background-image: url("./assets/networkBG.png");
  background-size: cover;
  background-position: center;

  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.abtFlex ul li i {
  color: #16145d;
}
.abtFlex a {
  border: 2px dashed #16145d;
  padding: 10px 30px;
  text-decoration: none;
  color: #16145d;
  border-radius: 30px;
  font-family: "Nunito";
  font-weight: 600;
  margin-top: 15px;
}
.mainAbtData {
  padding: 15px 0 30px 0;
}
.mainAbtData h2 {
  color: #16145d;
  font-family: "Nunito";
  font-weight: 600;
  font-size: 3.5rem;
  text-align: center;
}
.mainAbtData p {
  color: #020202;
  font-family: "Nunito";
  margin: 0;
  text-align: center;
}
/* abtContainer */
/* eezopsBg */
.whyEEzopsContainer {
  padding: 30px 0;
  background-color: #16145de5;
}
.eezopsFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eezopsData h2 {
  font-family: "Nunito";
  color: #5bb7d3;
  font-weight: 600;
  font-size: 2.5rem;
}
.eezopsData ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 10px;
  padding: 0;
  margin-bottom: 20px;
}
.eezopsData ul li {
  list-style-type: none;
  font-family: "Nunito";
  color: aliceblue;
}
.eezopsData ul li i {
  color: #5bb7d3;
  padding-right: 5px;
}
.eezopsBg {
  width: 100%;
  border-radius: 10px;
}
/* eezopsBg */
/* services */
.serviceContainer {
  padding: 30px 0;
  background-color: aliceblue;
}
.serviceImageDiv {
  position: relative;
}
.sectionTag {
  font-family: "Nunito";
  font-weight: 500;
  color: #16145dbb;
  text-align: center;
  margin: 10px auto;
  width: 60%;
}
.swiperBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.swiperBox h4 {
  text-align: center;
  font-family: "Nunito";
  font-weight: 600;
  font-size: 18px;
  color: #16145d;
  margin: 0;
  padding: 5px 0;
}
.swiperBox p {
  text-align: center;
  margin: 0;
  font-size: 15px;
  font-family: "Nunito";
  font-weight: 500;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiperBox a {
  background-color: #16145d;
  padding: 5px 15px;
  border-radius: 30px;
  font-family: "Nunito";
  font-weight: 500;
  text-decoration: none;
  color: aliceblue;
}
.serviceImageMask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 15px;
  background-color: #16145d10;
}
.serviceImage {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 15px;
}
/* services */
/* whychoose */
.whyChooseUsContainer {
  padding: 30px 0 80px 0;
  background-color: #16145de5;
}
.chooseFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chooseBox:nth-child(even) {
  transform: translateY(50px);
}
.innerChooseBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 40px 10px;
  background-color: aliceblue;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}
.innerChooseBox h3 {
  color: #16145d;
  margin: 0;
  text-align: center;
  font-family: "Nunito";
}
.chooseIconBg {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: #16145d 3px solid;
  border-top: 3px dashed #5bb7d3;
  border-bottom: 3px dashed #5bb7d3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.innerChooseBox i {
  color: #16145d;
  margin: 0;
  font-size: 2rem;
}
.innerChooseBox p {
  color: #16145dbb;
  font-weight: 500;
  margin: 0;
  text-align: center;
  font-family: "Nunito";
  font-size: 15px;
}
/* whychoose */
/* footerCon */
.footerContainer {
  /* background-color: aliceblue; */
  padding: 30px 0;
}
.footerContainer .footerLogo h1 {
  font-family: "Nunito";
  color: #16145d;
}
.footerContainer .footerLogo {
  margin: 20px 0;
}
.footerContainer .footerLogo p {
  font-family: "Nunito";
  color: #020202bb;
  font-weight: 600;
}
.footerContainer .footerLogo a {
  font-family: "Nunito";
  color: #16145dbb;
  border: 2px solid #16145d;
  padding: 5px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.footerContainer .footerList h3 {
  font-family: "Nunito";
  color: #16145d;
  font-size: 1.8rem;
}
.footerContainer .footerList ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerContainer .footerList {
  margin: 20px 0;
}
.footerContainer .footerList ul li a {
  text-decoration: none;
  color: #020202;
  font-family: "nunito";
  font-weight: 600;
}
.footerContainer .footerList ul li a:hover {
  color: #16145d;
}
.footerAdd {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.footerAdd h3 {
  font-family: "Nunito";
  color: #16145d;
  font-size: 1.8rem;
}
.footerContainer .addBox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.footerContainer .addBox a {
  text-decoration: none;
  color: #020202;
  font-family: "nunito";
}
.footerContainer .addBox i {
  color: #16145d;
  font-size: 1.5rem;
}
.footerContainer .addBox p {
  color: #020202;
  font-family: "nunito";
}
.copyCon {
  padding: 10px 0;
  border-top: 2px dashed #16145daa;
}
.copyCon p {
  margin: 0;
  font-family: "Nunito";
  text-align: center;
  color: #020202;
  font-weight: 500;
}
.copyCon p span {
  color: #16145d;
  font-weight: 600;
}
/* footerCon */
/* innerpage */
.innerHeadContainer {
  background-color: #16145df0;
  padding: 120px 0 40px 0;
}
.innerFlex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.innerHeading {
  color: aliceblue;
  font-family: "Nunito";
  font-size: 3rem;
}
.breadCrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.breadCrumb li {
  color: aliceblue;
  font-family: "Nunito";
}
.breadCrumb li a {
  text-decoration: none;
  color: inherit;
}
.breadCrumb li:last-child {
  background-color: aliceblue;
  color: #16145d;
  padding: 5px;
  border-radius: 5px;
}
/* innerpage */
/* listCon */
.listServiceContainer {
  padding: 30px 0;
  backdrop-filter: blur(1.5px);
  background-color: aliceblueaa;
}
.listFlex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.listCon ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid #16145d;
  width: 350px;
  padding: 30px 10px;
  border-radius: 15px;
  backdrop-filter: blur(2px);
}
.listCon ul li {
  color: #16145d;
  border-radius: 10px;
  font-family: "Nunito";
  padding: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.listCon ul li::after {
  background-color: #16145d;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.5s ease-in-out;
  position: absolute;
  z-index: -1;
}
.listCon ul li:hover::after {
  background-color: #16145d;
  left: 0;
}
.listCon ul li:hover {
  color: aliceblue;
  cursor: pointer;
}
.listCon ul li.active {
  background-color: #16145d;
  color: aliceblue;
}
.serviceWindow {
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.serviceWindow::-webkit-scrollbar {
  display: none;
}

.serviceDataBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.serviceDataBox img {
  width: 500px;
  border-radius: 15px;
  box-shadow: 0px 0px 30px 1px #16145dbb;
}
.serviceDataBox h3 {
  text-align: center;
  font-family: "Nunito";
  font-weight: 700;
  margin: 0;
  color: #16145d;
}
.serviceDataBox p {
  font-family: "Nunito";
  text-align: center;
  color: #020202bb;
  margin: 5px 0;
}
.serviceDataBox ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 15px;
}
.serviceDataBox ul li {
  font-family: "Nunito";
  font-weight: 600;
  color: #020202;
  text-align: center;
}
/* listCon */
/* contactData */
.contactContainer {
  padding: 30px 0;
  backdrop-filter: blur(1.5px);
  background-color: aliceblueaa;
}
.contactData h3 {
  text-align: center;
  font-family: "Nunito";
  font-weight: 600;
  color: #16145d;
}
.contactData p {
  text-align: center;
  font-family: "Nunito";
  font-weight: 600;
  color: #16145dbb;
}
.contactAddBox .addBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contactAddBox .addBox i {
  font-size: 1.8rem;
  color: #16145d;
  border-radius: 30px;
  border: 10px solid transparent;
  border-left: 10px dashed #16145d;
  border-right: 10px dashed #16145d;
  padding: 10px;
}
.contactAddBox .addBox a {
  text-align: center;
  color: #020202;
  text-decoration: none;
  font-family: "Nunito";
}
.contactAddBox .addBox p {
  text-align: center;
  color: #020202;
  font-family: "Nunito";
}
.formFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.formDiv {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
}
.formData p {
  color: #16145dbb;
  font-family: "Nunito";
  font-weight: 600;
  text-align: center;
}
.formData ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
}
.formData ul li {
  background-color: transparent;
  border: 2px solid #16145daa;
  width: 330px;
  padding: 5px;
  text-align: center;
  font-weight: 600;
  color: #16145d;
  font-family: "Nunito";
  border-radius: 5px;
  font-size: 15px;
}
.formData {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.formData h4 {
  color: #16145d;
  font-family: "Nunito";
  font-size: 2.1rem;
}
.inputField {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 10px 0;
  gap: 5px;
}
.inputFieldBtn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.inputFieldBtn button {
  background-color: #16145d;
  border: none;
  color: aliceblue;
  padding: 5px;
  border-radius: 5px;
  font-family: "Nunito";
  width: 100%;
}
.inputField {
  font-family: "Nunito";
  font-weight: 600;
  color: #16145d;
}
.inputField input {
  width: 100%;
  padding: 5px;
  border-radius: 0px;
  border: none;
  border-bottom: 2px solid #16145d;
  font-family: "Nunito";
}
.inputField input:focus {
  outline: none;
  border: none;
  border-bottom: 2px dashed #16145d;
}
.inputField input::placeholder {
  color: #16145d;
  font-family: "Nunito";
  opacity: 0.5;
}
.inputField textarea::placeholder {
  color: #16145d;
  font-family: "Nunito";
  opacity: 0.5;
}
.inputField textarea {
  width: 100%;
  border-radius: 0px;
  border: none;
  border-bottom: 2px solid #16145d;
  font-family: "Nunito";
}
.inputField textarea:focus {
  outline: none;
  border: none;
  border-bottom: 2px dashed #16145d;
}
.eezopsContainer {
  padding: 30px 0;
  backdrop-filter: blur(1.5px);
  background-color: aliceblueaa;
}
.eezopsFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.eezopsData {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.eezopsData h3 {
  color: #16145d;
  font-size: 2.5rem;
  font-family: "Nunito";
}
.eezopsData p {
  font-family: "Nunito";
  font-weight: 600;
  color: #16145dbb;
}
.eezopsImg img {
  width: 500px;
  border-radius: 30px;
}
.eezopsPara p {
  text-align: center;
  font-family: "Nunito";
  margin: 0;
  padding: 20px 0 10px 0;
}
.eezopsBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.eezopsBox h3 {
  font-family: "Nunito";
  color: #16145d;
  font-weight: 600;
}
.eezopsBox ul li {
  font-family: "Nunito";
  color: #020202;
  font-size: 14px;
  font-weight: 500;
}
.eezopsFlex {
  padding-top: 30px;
}
.eezopsBox ul {
  margin: 0;
  padding: 0;
}
/* contactData */
@media (max-width: 1440px) {
  .homeData h1 {
    font-size: 4rem;
  }
}
@media (max-width: 1280px) {
  .homeData h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1180px) {
  .serviceDataBox p {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .homeData h1 {
    font-size: 3.3rem;
  }
  .serviceDataBox p {
    width: 80%;
  }
  .shape1,
  .shape2 {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 991px) {
  .eezopsImg img {
    width: 400px;
  }
  .listCon ul {
    width: 100%;
    margin-bottom: 30px;
  }
  .serviceDataBox img {
    width: 100%;
    box-shadow: 0px 0px 5px 1px #16145dbb;
  }
  .mobileNavBarContainer.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    position: fixed;
    width: 50%;
    z-index: 999999;
    background-color: aliceblue;
    top: 0;
    animation: comeOutToLeft 0.5s forwards;
  }
  @keyframes comeOutToLeft {
    0% {
      left: -100%;
    }
    100% {
      left: 0;
    }
  }
  .mobileNavBarContainer .navBar {
    flex-direction: column;
    gap: 30px;
  }
  .mobileNavBarContainer.active .logo {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .mobileNavBarContainer.active .logo i {
    color: aliceblue;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    background-color: #16145d;
  }
  .mobileNavBarContainer.active .logo h1 {
    color: #16145d;
    font-weight: 700;
    font-size: 2rem;
  }
  .mobileNavBarContainer .navBar .navList ul {
    flex-direction: column;
  }
  .mobileNavBarContainer .navBar .navList ul li {
    color: #16145d;
  }
  .mobileNavBarContainer .navBar .navList {
    display: flex;
  }
  .mobileNavBarContainer .navBar button {
    display: block;
    background-color: #16145d;
  }
  .innerHeadContainer {
    padding: 100px 0 30px 0;
  }
  .serviceDataBox p {
    width: 100%;
  }
  .navContainer {
    top: 0;
    padding: 15px 0;
  }
  .homeFlex {
    padding-top: 100px;
  }
  .navContainer.active .toggle i {
    color: #16145d;
  }
  .toggle {
    display: block;
  }
  .toggle i {
    color: #5bb7d3;
    font-size: 1.5rem;
  }
  .navList {
    display: none;
  }
  .navBar button {
    display: none;
  }
  .homepageImage img {
    width: 500px;
  }
  .homeData h1 {
    font-size: 3rem;
  }
  .abtData {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .abtFlex p {
    text-align: center;
  }
  .abtFlex h2 {
    text-align: center;
    font-size: 2rem;
  }
  .eezopsBox {
    margin: 5px 0;
  }
}
@media (max-width: 768px) {
  .eezopsImg img {
    width: 350px;
  }
  .whatsappDiv img {
    width: 50px;
    height: 50px;
  }
  .phoneDiv img {
    width: 50px;
    height: 50px;
  }
  .innerHeadContainer {
    padding: 80px 0 20px 0;
  }
  .homeData h1 {
    font-size: 2.8rem;
  }
  .chooseBox {
    margin: 15px 0;
  }
  .chooseBox:nth-child(even) {
    transform: translateY(0px);
  }
  .innerChooseBox h3 {
    font-size: 18px;
  }
  .innerChooseBox p {
    font-size: 13.5px;
  }
  .eezopsData h2 {
    font-size: 1.8rem;
  }
  .eezopsData ul {
    margin-left: 0;
  }
  .sectionHead {
    font-size: 40px;
  }
  .abtFlex a {
    padding: 10px 20px;
  }
  .sectionTag {
    width: 90%;
  }
}
@media (max-width: 569px) {
  .eezopsData {
    justify-content: center;
    align-items: center;
  }
  .eezopsBox {
    justify-content: center;
    align-items: center;
    margin: 15px 0;
  }
  .eezopsData p {
    text-align: center;
  }
  .eezopsImg img {
    width: 100%;
  }
  .mobileNavBarContainer.active {
    width: 100%;
    height: 100vh;
  }

  .homepageImage img {
    width: 300px;
  }
  .sectionHead {
    font-size: 35px;
  }
  .abtFlex h2 {
    text-align: center;
    font-size: 2rem;
  }
  .homeData h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 441px) {
  .homepageImage img {
    width: 100%;
  }
}
@media (max-width: 340px) {
  .homeData h1 {
    font-size: 2.4rem;
  }
}
