@font-face {
  font-family: "YourCustomFont1";
  src: url("./fonts/Montserrat-ExtraBold.ttf") format("woff2");
}

@font-face {
  font-family: "YourCustomFont2";
  src: url("./fonts/Montserrat-Regular.ttf") format("woff2");
}

@font-face {
  font-family: "YourCustomFont3";
  src: url("./fonts/Montserrat-Bold.ttf") format("woff2");
}

body {
  margin: 0;
  padding: 0;
  font-family: "YourCustomFont2", sans-serif;
  text-decoration: none;
}

.firstSection {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.subContainer {
  flex: 1;
  position: relative;
}

.leftSection {
  background-image: url("./images/image2.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.topTitle {
  font-family: "YourCustomFont1", sans-serif;
  font-size: 3rem;
  margin-right: 0;
  margin-right: 1.5rem;
  margin-top: 1rem;
  color: white;
  text-align: right;
  letter-spacing: 0.1rem;
  line-height: 3.5rem;
  height: 20vh;
}

.topLogoContainer {
  height: 20vh;
  margin-top: 1rem;
  margin-left: 1.5rem;
}
.topLogo {
  margin-top: 1.5%;
  height: 13vh;
  width: 13vh;
}

.rightSection {
  background-image: url("./images/image1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.TopContent {
  display: flex;
  flex-direction: column;
  height: 40vh;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.TopContent > div:nth-child(1) {
  color: white;
  font-size: 3.8rem;
  text-align: center;
  font-family: "YourCustomFont1", sans-serif;
  font-weight: 900;
  margin-top: 1rem;
  letter-spacing: 0.1rem;
  line-height: 4rem;
}

.firstSectionButton {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}

.firstSectionButton {
  height: 8vh;
  width: 18vw;
  background-color: #f2cd3d;
  border: none;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-family: "YourCustomFont1", sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrowHead {
  position: absolute;
  bottom: 0%;
  left: 50%;
}

.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 12%;
  color: #fff;
}

.arrows path {
  stroke: #fff;
  fill: transparent;
  stroke-width: 2.5px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.secondSection {
  height: 42vh;
  width: 100%;
  background-color: #f2cd3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3vh;
}

.secondSectiontext {
  width: 87%;
  font-family: "YourCustomFont2", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  justify-content: center;
  text-align: center;
  color: black;
  margin-left: auto;
  margin-right: auto;
}

.thirdSection {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4vh;
}

.thirdSectionFirstSub {
  text-align: center;
  font-family: "YourCustomFont1", sans-serif;
  font-size: 3.8rem;
  line-height: 4rem;
  margin-bottom: 0.5rem;
  padding-top: 3%;
}

.thirdSectionBtn {
  font-family: "YourCustomFont1", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  height: 8vh;
  width: 60%;
  background-color: #f2cd3d;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  margin-top: 0.3rem;
}

.fourthSection {
  width: 100%;
  background-color: #f2cd3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3vh;
  padding-bottom: 3%;
  padding-top: 3%;
}

.fourthSectionFirstSub {
  text-align: center;
  font-family: "YourCustomFont1", sans-serif;
  font-size: 3.8rem;
  line-height: 4rem;
  margin-bottom: 0.5rem;
}

.fourthSectionSecondSub {
  text-align: center;
  font-family: "YourCustomFont2", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.fourthSectionThirdSub {
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: none;
  font-family: "YourCustomFont3", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: black;
}

.fourthSectionFourthSub {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5rem;
}

.socialIcon {
  height: 75px !important;
  width: 75px !important;
}

.fifthSection {
  height: 10vh;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "YourCustomFont2", sans-serif;
  font-size: 1.4rem;
}

@media screen and (min-width: 300px) and (max-width: 400px) {

  .secondSectiontext {
    width: 87%;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    justify-content: center;
    text-align: center;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .firstSectionButton {
    height: 7vh;
    width: 35vw;
    font-size: 1rem;
  }

  .firstSection {
    height:53vh;
  }

  .TopContent > div:nth-child(1) {
    font-size: 1.5rem;
  }

  .TopContent > br {
    display: none;
  }

  .topTitle {
    font-size: 1.3rem;
  }

  .topLogo {
    margin-top: 2%;
    height: 6vh;
    width: 6vh;
  }

  .leftSection {
    background-image: url("./images/mobImage2.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .rightSection {
    background-image: url("./images/mobImage1.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .thirdSection {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .thirdSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .thirdSectionBtn {
    font-family: "YourCustomFont1", sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    height: 8vh;
    width: 95%;
    background-color: #f2cd3d;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    margin-top: 0.3rem;
  }

  .fourthSection {
    height: 78vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .fourthSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 2.4rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .fourthSectionSecondSub {
    text-align: center;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }

  .fourthSectionThirdSub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    font-family: "YourCustomFont3", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
    padding: 0 10px;
  }

  .fourthSectionFourthSub {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }

  .socialIcon {
    height: 40px !important;
    width: 40px !important;
  }

  .topTitle {
    line-height: 2rem;
  }


  .TopContent {
    height: 30vh;
  }

 .TopContent > div:nth-child(1){
    font-size: 1.5rem;
    line-height: 2rem;
 }

 
}

@media screen and (max-width: 500px) and (min-width: 400px) {
  .secondSectiontext {
    width: 87%;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    justify-content: center;
    text-align: center;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .firstSectionButton {
    height: 7vh;
    width: 40vw;
    font-size: 1rem;
  }

  .arrowHead {
    position: absolute;
    bottom: 50%;
    left: 50%;
  }

  .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 40%;
    margin-left: -30px;
    bottom: 12%;
    color: #fff;
  }

  .TopContent > div:nth-child(1) {
    font-size: 1.9rem;
  }

  .TopContent > br {
    display: none;
  }

  .topTitle {
    font-size: 1.7rem;
  }

  .topLogo {
    margin-top: 2%;
    height: 6vh;
    width: 6vh;
  }

  .leftSection {
    background-image: url("./images/mobImage2.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .rightSection {
    background-image: url("./images/mobImage1.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .thirdSection {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .thirdSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .thirdSectionBtn {
    font-family: "YourCustomFont1", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    height: 8vh;
    width: 100%;
    background-color: #f2cd3d;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    margin-top: 0.3rem;
  }

  .fourthSection {
    height: 70vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .fourthSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .fourthSectionSecondSub {
    text-align: center;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }

  .fourthSectionThirdSub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    font-family: "YourCustomFont3", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
    padding: 0 10px;
  }

  .fourthSectionFourthSub {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }

  
  /* //Newly Aded */
  .firstSection {
    height: 50vh;
  }
  
  
  .topTitle {
    line-height: 2rem;
  }


  .TopContent {
    height: 30vh;
  }

 .TopContent > div:nth-child(1){
    font-size: 1.5rem;
    line-height: 2rem;
 }

}

@media screen and (max-width: 600px) and (min-width: 500px) {
  .secondSectiontext {
    width: 87%;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    justify-content: center;
    text-align: center;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .firstSectionButton {
    height: 8vh;
    width: 26vw;
    font-size: 1rem;
  }

  .firstSection {
    height: 100vh;
  }

  .arrowHead {
    position: absolute;
    bottom: 30%;
    left: 50%;
  }

  .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 12%;
    color: #fff;
  }

  .TopContent > div:nth-child(1) {
    font-size: 2.3rem;
  }

  .TopContent > br {
    display: none;
  }

    /* //Newly Aded */
    .firstSection {
      height: 70vh;
    }
    
    
    .topTitle {
      line-height: 2rem;
    }
  
  
    .TopContent {
      height: 30vh;
    }
  
   .TopContent > div:nth-child(1){
      font-size: 1.5rem;
      line-height: 2rem;
   }

  .topTitle {
    font-size: 1.7rem;
  }

  .topLogo {
    margin-top: 2%;
    height: 6vh;
    width: 6vh;
  }

  .thirdSection {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .leftSection {
    background-image: url("./images/mobImage2.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .rightSection {
    background-image: url("./images/mobImage1.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .thirdSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .thirdSectionBtn {
    font-family: "YourCustomFont1", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    height: 8vh;
    width: 80%;
    background-color: #f2cd3d;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    margin-top: 0.3rem;
  }

  .fourthSection {
    height: 70vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .fourthSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .fourthSectionSecondSub {
    text-align: center;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }

  .fourthSectionThirdSub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    font-family: "YourCustomFont3", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
  }

  .fourthSectionFourthSub {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}

@media screen and (max-width: 700px) and (min-width: 600px) {
  .secondSectiontext {
    width: 87%;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    justify-content: center;
    text-align: center;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .firstSectionButton {
    height: 8vh;
    width: 24vw;
    font-size: 1.1rem;
  }

  .firstSection {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .arrowHead {
    position: absolute;
    bottom: 35%;
    left: 50%;
  }

  .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 12%;
    color: #fff;
  }

  /* .firstSection{
    height: 170vh;
  } */

  .TopContent > div:nth-child(1) {
    font-size: 2.4rem;
  }

  .topTitle {
    font-size: 2rem;
  }

  .topLogo {
    margin-top: 1.5%;
    height: 8vh;
    width: 8vh;
  }


    /* //Newly Aded */
    .firstSection {
      height: 70vh;
    }
    
    
    .topTitle {
      line-height: 2rem;
    }
  
  
    .TopContent {
      height: 30vh;
    }
  
   .TopContent > div:nth-child(1){
      font-size: 1.5rem;
      line-height: 2rem;
   }

  .thirdSection {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .thirdSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .thirdSectionBtn {
    font-family: "YourCustomFont1", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    height: 8vh;
    width: 80%;
    background-color: #f2cd3d;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    margin-top: 0.3rem;
  }

  .leftSection {
    background-image: url("./images/mobImage2.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .rightSection {
    background-image: url("./images/mobImage1.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .TopContent-br {
    display: none;
  }

  .fourthSection {
    height: 70vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .fourthSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .fourthSectionSecondSub {
    text-align: center;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }

  .fourthSectionThirdSub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    font-family: "YourCustomFont3", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
  }

  .fourthSectionFourthSub {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}

@media screen and (max-width: 900px) and (min-width: 700px) {
  .secondSectiontext {
    width: 87%;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    justify-content: center;
    text-align: center;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .firstSectionButton {
    height: 8vh;
    width: 20vw;
    font-size: 1.2rem;
  }

  .leftSection {
    background-image: url("./images/mobImage2.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .rightSection {
    background-image: url("./images/mobImage1.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .topTitle {
    font-size: 2rem;
  }

  .topLogo {
    margin-top: 1.5%;
    height: 8vh;
    width: 8vh;
  }

  .arrowHead {
    position: absolute;
    bottom: 5%;
    left: 50%;
  }

  .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 40%;
    margin-left: -30px;
    bottom: 12%;
    color: #fff;
  }


  .firstSection {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .TopContent > div:nth-child(1) {
    font-size: 3.2rem;
  }

  .thirdSection {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .thirdSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3.6rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .thirdSectionBtn {
    font-family: "YourCustomFont1", sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    height: 9vh;
    width: 80%;
    background-color: #f2cd3d;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    margin-top: 0.3rem;
  }

  .fourthSection {
    height: 70vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .fourthSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3.3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .fourthSectionSecondSub {
    text-align: center;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }

  .fourthSectionThirdSub {
    width: 30%;
    /* margin-left: auto; */
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    font-family: "YourCustomFont3", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
  }

  .fourthSectionFourthSub {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}

/* Make Responsiveness */
@media screen and (min-width: 900px) and (max-width: 1200px) {
  .secondSection {
    height: 42vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3vh;
  }

  .secondSectiontext {
    width: 87%;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    justify-content: center;
    text-align: center;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  .firstSection{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;

  }

  .arrowHead {
    position: absolute;
    bottom: 0%;
    left: 50%;
  }

  .arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 40%;
    margin-left: -30px;
    bottom: 12%;
    color: #fff;
  }

  .leftSection {
    background-image: url("./images/mobImage2.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .rightSection {
    background-image: url("./images/mobImage1.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }

  .fourthSection {
    height: 70vh;
    width: 100%;
    background-color: #f2cd3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
  }

  .fourthSectionFirstSub {
    text-align: center;
    font-family: "YourCustomFont1", sans-serif;
    font-size: 3.3rem;
    line-height: 4rem;
    margin-bottom: 0.5rem;
  }

  .fourthSectionSecondSub {
    text-align: center;
    font-family: "YourCustomFont2", sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }

  .fourthSectionThirdSub {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    font-family: "YourCustomFont3", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
  }

  .fourthSectionFourthSub {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }
}
