html, body {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header --------------------------------------------------------*/

#nav {
  color: #002165;
  font-weight: bold;
  background-color: white;
  
  z-index: 100;
  position: fixed;
  top: 2vw;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  width: 96%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  
  transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.headerScroll #nav {
  top: 0;
  border-radius: 0;
  max-width: 100%;
  width: 100%;
}

.bgMenu {
  display: none;
  background-color: #002165;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin: 12px;
}

.bgbar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 3px 10px;
  border-radius: 5vh;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: white;
}

.bgMenu.active .bgbar:nth-child(2) {
  opacity: 0;
}
.bgMenu.active .bgbar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.bgMenu.active .bgbar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobileMenu {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  margin-top: -20px;
  text-align: center;
  top: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  padding: 20px 0px;
  padding-top: 30px;
  background-color: white;
  z-index: -1;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 12px 18px -8px;
}

.mobileMenu.active {
  transform: scaleY(1);
}

.menuLink {
  color: #002165;
  font-size: 20px;
  padding: 12px 8px;
}

.menuLink:hover{
  text-decoration: underline;
}

.siteTitle {
  align-items: center;
  justify-content: center;
  margin: auto 10px;
  padding-top: 4px;
}

.buttonCTA1 {
  background-color: #002165;
  color: white;
  padding: 12px 30px;
  border-radius: 50vh;
  margin: 40px;
  font-size: 18px;
}

.buttonCTA1:hover {
  background-color: #277be8;
}

.headerLink {
  margin: 0px 15px;
  font-size: 18px;
  cursor: pointer;
}

.headerLink:hover {
  text-decoration: underline;
}

/* Section1 --------------------------------------------------------*/

.section1 {
  background-color: #002165;
  color: white;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}

.headline {
  text-align: center;
  margin: 0px auto;
  margin-bottom: 80px;
  padding-top: 80px;
  width: 600px;
  font-size: 44px;
  font-weight: bold;
}

.section1B {
  display: flex;
  padding: 0px 40px;
  padding-bottom: 120px;
  justify-content: center;
}

.promptBox {
  padding: 0px 20px;
  width: 100%;
  max-width: 450px;
}

.promptTitle {
  font-weight: bold;
  font-size: 24px;
  margin-top: 0px;
  width: 440px;
}

.promptDesc {
  width: 440px;
  margin-bottom: 30px;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.buttonsContainer {
  margin-bottom: 20px;
  padding: 0px;
}

.buttonCTA2 {
  font-weight: bold;
  border: solid 1px white;
  font-size: 20px;
  padding: 11px 10px;
  border-radius: 50vh;
  text-align: center;
  color: white;
  margin-right: 10px;
  display: inline-block;
  width: 120px;
}

.buttonCTA2:hover {
  background-color: #277be8;
  color: white;
  border: solid 1px #277be8
}

.buttonCTA3 {
  font-weight: bold;
  background-color: #ffcc00;
  font-size: 20px;
  padding: 12px 12px;
  border-radius: 50vh;
  text-align: center;
  color: #002165;
  display: inline-block;
  width: 275px;
}

.buttonCTA3:hover {
  background-color: #277be8;
  color: white;
}

.mockup {
  border: none;
  margin: 0px 60px;
}

/* Section2 --------------------------------------------------------*/

.section2 {
  text-align: center;
  padding: 0px 20px;
  padding-bottom: 80px;
}

.section2Title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #002165;
  margin: 60px auto;
  margin-top: 100px;
  width: 320px;
}

.section2Desc {
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.benefitsBox {
  width: 400px;
  height: 320px;
  border-radius: 10px;
  margin: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 25px;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.benefitsBox:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 30px;
}

.benefitsTitle {
  font-weight: bold;
  color: #002165;
  font-size: 22px;
  width: 300px;
  margin: 15px auto;
}

.benefitsDesc {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.buttonCTA4 {
  display: inline-block;
  background-color: #002165;
  color: white;
  padding: 12px 50px;
  border-radius: 50vh;
  margin: 40px auto;
  font-size: 20px;
  font-weight: bold;
}

.buttonCTA4:hover {
  background-color: #277be8;
}

/* Section3 --------------------------------------------------------*/

.section3 {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
  padding: 0px 10%;
}

.section3A {
  margin: 0px 30px;
  position: relative;
}

.profileImg {
  border-radius: 30px;
}

.bioBox {
  position: absolute;
  top: 440px;
  right: 20px;
  background-color: white;
  color: #002165;
  border-radius: 10px;
  padding: 16px;
}

.bioName {
  margin: 0px;
  margin-bottom: 2px;
  font-weight: bold;
  font-size: 22px;
}

.bioDesc {
  margin: 0px;
  font-size: 18px;
  font-style: italic;
}

.bioRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.bioLinkedin {
  transition: transform 0.3s ease;
}

.bioLinkedin:hover {
  transform: scale(1.1);
}

.section3B {
  margin: 0px 30px;
  max-width: 600px;
}

.section3Title {
  font-size: 32px;
  font-weight: bold;
  color: #002165;
  width: 520px;
  margin: 0px;
  margin-top: -6px;
}

.section3Desc {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.pricingLink {
  font-weight: bold;
  color: #002165;
}

.pricingLink:hover {
  text-decoration: underline;
}

.section3Subtitle {
  font-size: 22px;
  font-weight: bold;
  color: #002165;
  margin-bottom: 0px;
}

.section3Subdesc {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

.buttonCTA5 {
  display: inline-block;
  background-color: #002165;
  color: white;
  padding: 12px 50px;
  border-radius: 50vh;
  margin: 20px auto;
  font-size: 20px;
  font-weight: bold;
}

.buttonCTA5:hover {
  background-color: #277be8;
}

.pricingDesc {
  margin: auto;
  margin-top: -20px;
  margin-bottom: 80px;
  text-align: center;
  max-width: 80%;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
}

/* Section4 --------------------------------------------------------*/

.section4 {
  background-color: #002165;
  color: white;
  display: flex;
  flex-direction: column;
}

.section4Title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 60px auto;
  margin-top: 100px;
}

.pricingContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.optionBox {
  margin: 0px 30px;
  border: solid 1px white;
  color: #002165;
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  width: 360px;
}

.optionTitle {
  font-size: 28px;
  font-weight: bold;
  margin: 0px;
  margin-bottom: 25px;
}

.detailRow {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.detailItem {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
  margin: 0px;
}

.priceRow {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  align-items: center;
}

.priceNum {
  font-size: 36px;
  font-weight: bold;
  margin: 0px;
}

.subPrice {
  font-size: 20px;
  font-weight: bold;
  margin: 0px;
  margin-left: 10px;
  padding-top: 11px;
}

.buttonCTA6 {
  display: inline-block;
  background-color: #ffcc00;
  color: #002165;
  padding: 12px 50px;
  border-radius: 50vh;
  margin: 10px auto;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}

.buttonCTA6:hover {
  background-color: #277be8;
  color: white;
}

/* Section5 --------------------------------------------------------*/

.section5 {
  padding: 80px auto;
  padding-bottom: 20px;
  margin-bottom: 120px;
}

.section5Title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #002165;
  margin: 100px auto;
  margin-bottom: 50px;
}

.section5Desc {
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
  text-align: center;
  max-width: 680px;
  margin: 0px auto;
  margin-bottom: 60px;
}

.projectsContainer {
  margin: 40px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.projectBox {
  margin: 0px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projectTitle {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #002165;
  margin: 0px auto;
}

.projectDesc {
  max-width: 360px;
  text-align: center;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
  margin: 20px auto;
}

.buttonCTA7 {
  background-color: #002165;
  color: white;
  padding: 12px 30px;
  border-radius: 50vh;
  margin: 10px auto;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: bold;
  align-self: center;
}

.buttonCTA7:hover {
  background-color: #277be8;
  color: white;
}

/* Experience List Styles */
.experienceList {
  margin: 40px auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.experienceItem {
  padding: 25px;
  border-left: 4px solid #002165;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.experienceItem:hover {
  background-color: #e9ecef;
}

.experienceTitle {
  font-size: 20px;
  font-weight: bold;
  color: #002165;
  margin: 0 0 10px 0;
}

.experienceDesc {
  font-size: 16px;
  font-family: arial;
  line-height: 1.6;
  color: #333;
  margin: 0 0 15px 0;
}

.experienceLink {
  background-color: #ffcc00;
  color: #002165;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 50vh;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.experienceLink:hover {
  background-color: #277be8;
  color: white;
}

/* Footer --------------------------------------------------------*/

.footer {
  background-color: #002165;
  color: white;
  padding: 60px 40px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.footerDiv {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.footerDivTitle {
  font-weight: bold;
  font-size: 22px;
  font-family: arial;
  margin-bottom: 10px;
}

.footerItems {
  margin-top: 10px;
  font-size: 16px;
  font-family: arial;
  line-height: 1.5;
  max-width: 320px;
}

a.footerItems:hover {
  text-decoration: underline;
}

.buttonCTAX {
  background-color: white;
  color: #002165;
  padding: 12px 30px;
  border-radius: 50vh;
  margin: 10px 0px;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  width: 200px;
}

.buttonCTAX:hover {
  background-color: #277be8;
  color: white;
}

.footerLogo {
  border-radius: 8px;
  margin-bottom: 10px;
}



/* Media Queries --------------------------------------------------------*/

@media only screen and (max-width: 400px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 197px;
    height: 60px;
    margin-left: -6px;
    border-radius: 4px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .section1B {
    flex-direction: column;
    padding-bottom: 80px;
  }
  .headline {
    max-width: 80%;
    font-size: 28px;
    margin-bottom: 20px;
    padding-top: 30px;
  }
  .promptBox {
    padding: 0px;
    text-align: center;
    width: 100%;
  }
  .promptTitle {
    display: none;
  }
  .promptDesc {
    width: 100%;
    margin-bottom: 40px;
  }
  .buttonsContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
  }
  .buttonCTA2 {
    margin: 8px;
  }
  .buttonCTA3 {
    width: 88%;
  }
  .mockup {
    margin: 0px auto;
    margin-top: 50px;
    height: 150px;
    width: 160px;
  }
  .section2 {
    padding-bottom: 40px;
  }
  .section2Title {
    margin: 20px auto;
    margin-top: 60px;
    width: 88%;
    font-size: 28px;
  }
  .section2Desc {
    width: 90%;
    margin-top: 30px;
  }
  .benefitsParentBox {
    flex-direction: column;
  }
  .benefitsBox {
    width: 90%;
    margin: 20px 0px;
    padding: 0px 5%;
  }
  .section3 {
    flex-direction: column;
    padding: 0px 5%;
    margin-bottom: 60px;
  }
  .section3A {
    margin: 0px;
    width: 100%;
  }
  .profileImg {
    width: 100%;
    height: auto;
  }
  .bioBox  {
    top: auto;
    bottom: 22px;
  }
  .section3B {
    margin: 0px 15px;
  }
  .section3Title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .section4Title {
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .pricingContainer {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .optionBox {
    margin: 20px auto;
    width: 76%;
    padding: 25px;
  }
  .priceNum {
    font-size: 28px;
  }
  .subPrice {
    font-size: 18px;
    padding-top: 8px;
  }
  .section5Title {
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 28px;
  }
  .section5Desc {
    width: 85%;
  }
  .projectsContainer {
    flex-direction: column;
  }
  .projectDesc {
    margin: 20px auto;
    margin-bottom: 0px;
    width: 85%;
  }
  .screenshots {
    width: 90%;
    height: auto;
    margin: auto;
  }
  .buttonCTA7 {
    margin-bottom: 80px;
  }
  .experienceList {
    margin: 20px auto;
    gap: 20px;
  }
  .experienceItem {
    padding: 20px;
    margin: 0 20px 20px 20px;
  }
  .experienceTitle {
    font-size: 18px;
  }
  .experienceDesc {
    font-size: 14px;
  }
  .footer {
    flex-direction: column;
  }
  .footerDiv {
    margin-bottom: 40px;
  }
}


@media only screen and (min-width: 400px) and (max-width: 480px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 197px;
    height: 60px;
    margin-left: -6px;
    border-radius: 4px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .section1B {
    flex-direction: column;
    padding-bottom: 80px;
  }
  .headline {
    max-width: 80%;
    font-size: 32px;
    margin-bottom: 20px;
    padding-top: 30px;
  }
  .promptBox {
    padding: 0px;
    text-align: center;
    width: 100%;
  }
  .promptTitle {
    display: none;
  }
  .promptDesc {
    width: 100%;
    margin-bottom: 40px;
  }
  .buttonsContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
  }
  .buttonCTA2 {
    margin: 8px;
  }
  .buttonCTA3 {
    width: 80%;
  }
  .mockup {
    margin: 0px auto;
    margin-top: 50px;
    height: 150px;
    width: 160px;
  }
  .section2 {
    padding-bottom: 40px;
  }
  .section2Title {
    margin: 20px auto;
    margin-top: 60px;
    width: 88%;
    font-size: 28px;
  }
  .section2Desc {
    width: 90%;
    margin-top: 30px;
  }
  .benefitsParentBox {
    flex-direction: column;
  }
  .benefitsBox {
    width: 85%;
    margin: 20px auto;
    padding: 0px 8%;
  }
  .section3 {
    flex-direction: column;
    padding: 0px 8%;
    margin-bottom: 60px;
  }
  .section3A {
    margin: 0px;
    width: 100%;
  }
  .profileImg {
    width: 100%;
    height: auto;
  }
  .bioBox  {
    top: auto;
    bottom: 22px;
  }
  .section3B {
    margin: 0px 15px;
  }
  .section3Title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .section4Title {
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .pricingContainer {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .optionBox {
    margin: 20px auto;
    width: 76%;
    padding: 30px;
  }
  .priceNum {
    font-size: 30px;
  }
  .subPrice {
    font-size: 18px;
    padding-top: 9px;
  }
  .section5Title {
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 28px;
  }
  .section5Desc {
    width: 85%;
  }
  .projectsContainer {
    flex-direction: column;
  }
  .projectDesc {
    margin: 20px auto;
    margin-bottom: 0px;
    width: 85%;
  }
  .screenshots {
    width: 90%;
    height: auto;
    margin: auto;
  }
  .buttonCTA7 {
    margin-bottom: 80px;
  }
  .experienceList {
    margin: 20px auto;
    gap: 20px;
  }
  .experienceItem {
    padding: 20px;
    margin: 0 20px 20px 20px;
  }
  .experienceTitle {
    font-size: 18px;
  }
  .experienceDesc {
    font-size: 14px;
  }
  .footer {
    flex-direction: column;
  }
  .footerDiv {
    margin-bottom: 40px;
  }
}


@media only screen and (min-width: 480px) and (max-width: 800px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 197px;
    height: 60px;
    margin-left: -6px;
    border-radius: 4px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .section1B {
    flex-direction: column;
    padding-bottom: 80px;
  }
  .headline {
    max-width: 80%;
    font-size: 36px;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .promptBox {
    padding: 0px;
    text-align: center;
    width: 100%;
    margin: auto;
  }
  .promptTitle {
    display: none;
  }
  .promptDesc {
    width: 100%;
    margin-bottom: 40px;
  }
  .buttonsContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
  }
  .buttonCTA2 {
    margin: 8px;
  }
  .buttonCTA3 {
    width: 240px;
  }
  .mockup {
    margin: 0px auto;
    margin-top: 50px;
    height: 150px;
    width: 160px;
  }
  .section2 {
    padding-bottom: 40px;
  }
  .section2Desc {
    width: 80%;
    margin-top: 30px;
  }
  .benefitsParentBox {
    flex-direction: column;
  }
  .benefitsBox {
    width: 70%;
    margin: 20px auto;
    padding: 0px 8%;
    padding-bottom: 40px;
    height: auto;
  }
  .section3 {
    flex-direction: column;
    padding: 0px 12%;
    margin-bottom: 60px;
  }
  .section3A {
    margin: 0px auto;
    width: 400px;
  }
  .profileImg {
    width: 100%;
    height: auto;
  }
  .section3B {
    margin: 0px 15px;
  }
  .section3Title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .section4Title {
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .pricingContainer {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .optionBox {
    margin: 20px auto;
    width: 60%;
  }
  .priceNum {
    font-size: 32px;
  }
  .subPrice {
    font-size: 18px;
    padding-top: 10px;
  }
  .section5Title {
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 28px;
  }
  .section5Desc {
    width: 85%;
  }
  .projectsContainer {
    flex-direction: column;
  }
  .projectDesc {
    margin: 20px auto;
    margin-bottom: 0px;
    width: 85%;
  }
  .screenshots {
    width: 80%;
    height: auto;
    margin: auto;
  }
  .buttonCTA7 {
    margin-bottom: 80px;
  }
  .experienceList {
    margin: 30px auto;
    gap: 25px;
  }
  .experienceItem {
    padding: 25px;
  }
  .experienceTitle {
    font-size: 19px;
  }
  .experienceDesc {
    font-size: 15px;
  }
  .footer {
    flex-direction: column;
  }
  .footerDiv {
    margin-bottom: 40px;
  }
}


@media only screen and (min-width: 800px) and (max-width: 1000px) {
  #nav {
    width: 92%;
    top: 4vw;
  }
  .logo {
    width: 197px;
    height: 60px;
    margin-left: -6px;
    border-radius: 4px;
  }
  .navLinks {
    display: none;
  }
  .bgMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .mobileMenu {
    display: flex;
  }
  .promptBox {
    max-width: 400px;
    padding-right: 10px;
  }
  .promptTitle {
    max-width: 400px;
    font-size: 22px;
  }
  .promptDesc {
    max-width: 400px;
  }
  .mockup {
    height: 190px;
    width: 200px;
    margin: 0px 40px;
  }
  .benefitsBox  {
    width: 300px;
    padding: 15px 3vw;
    margin: 2vw;
  }
  .section3 {
    flex-direction: column;
    padding: 0px 12%;
    margin-bottom: 60px;
  }
  .section3A {
    margin: 0px auto;
    width: 400px;
  }
  .profileImg {
    width: 100%;
    height: auto;
  }
  .section3B {
    margin: 0px 15px;
  }
  .section3Title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .pricingContainer {
    padding: 0px 2vw;
  }
  .optionBox {
    margin: 0px 2vw;
  }
  .priceNum {
    font-size: 34px;
  }
  .subPrice {
    font-size: 19px;
    padding-top: 10px;
  }
  .section5Title {
    margin-bottom: 40px;
    font-size: 28px;
  }
  .section5Desc {
    width: 85%;
  }
  .projectsContainer {
    flex-direction: column;
  }
  .projectDesc {
    margin: 20px auto;
    margin-bottom: 0px;
    width: 85%;
  }
  .screenshots {
    width: 70%;
    height: auto;
    margin: auto;
  }
  .buttonCTA7 {
    margin-bottom: 80px;
  }
  .experienceList {
    margin: 35px auto;
    gap: 30px;
  }
  .experienceItem {
    padding: 30px;
  }
  .experienceTitle {
    font-size: 20px;
  }
  .experienceDesc {
    font-size: 16px;
  }
}


@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .section3Title {
    width: 480px;
  }
  .screenshots {
    width: 320px;
    height: auto;
    margin: auto;
  }
  .projectDesc {
    margin: 20px auto;
    width: 300px;
  }
}