/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

/* fonts
font-family: 'Aboreto', cursive;
font-family: 'IBM Plex Sans', sans-serif;
*/

/* Main Stylings */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-family: "IBM Plex Sans", sans-serif;
}

/* Animate CSS */

.animate__fadeIn {
  animation-delay: 0.1s;
}

/* ToDO: Annoucements */
.announcement {
  padding: 10px 0;
  background-color: rgb(19, 73, 61);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
}

.announcement-content p {
  text-align: center;
  font-size: 1.1rem;
  color: white;
}

.announcement-social-links {
  display: flex;
  align-items: center;
}

.announcement-social-links a {
  color: rgb(255, 255, 255);
  margin-right: 20px;
  transition: 0.2s;
}

.announcement-social-links a:hover {
  color: rgb(255, 214, 90);
}

.announcement-social-links i {
  font-size: 1.3rem;
}

/* ToDo: Navigation */
nav {
  background-color: rgba(58, 9, 9, 0.969);
  padding: 25px 25px;
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: auto;
}

.nav-branding {
  font-size: 1.8rem;
  color: white;
  font-family: "Aboreto", cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nav-branding span::before {
  content: "";
  position: absolute;
  border-radius: 0.78rem;
  border-top: 1px solid #ffffff;
  box-sizing: border-box;
  color: #ffffff;
  line-height: 12px;
  width: 207px;
  transform: translate(-30px, -5px);
}

.nav-branding span {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.nav-branding a {
  height: 100px;
  width: 230px;
  position: absolute;
}

.nav-links ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links li {
}

.nav-links li a {
  margin-right: 25px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  border-radius: 4px;
}

.nav-links li a:hover {
  color: #dcdcdc;
}

.nav-links li i {
  color: white;
  font-size: 2rem;
  display: none;
  cursor: pointer;
}

#nav-donate {
  background-color: rgb(255, 214, 90);
  color: rgb(58, 9, 9);
  outline: none;
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: bolder;
}

#nav-donate:hover {
  background-color: rgb(255, 232, 162);
}

#nav-phone-number {
  color: rgb(255, 233, 181);
  font-size: 1.4rem;
  margin-right: 0px;
}

#nav-phone-number:hover {
  color: rgb(253, 219, 141);
}

@media screen and (max-width: 1023px) {
  .nav-links li a {
    display: none;
  }

  .nav-links li i {
    display: flex;
  }

  #nav-phone-number {
    display: flex;
    font-size: 1rem;
    margin-right: 15px;
  }
  .dropdown-button {
    display: none;
  }
}

/* Drop-Down-Animation */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown button {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 4px;
  transition: 0.2s;
  margin-right: 25px;
  padding: 8px 0px;
}

.dropdown-button button:hover {
  color: rgb(255, 255, 255);
}

.dropdown-button a {
  color: rgb(235, 235, 235);
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#services-dropdown-icon {
  transform: translateY(1px);
  font-size: 0.8rem;
  margin-left: 5px;
}

.dropdown-links {
  background-color: rgba(58, 9, 9, 0.969);
  overflow: hidden;
  display: none;
  position: absolute;
  top: 40px;
  width: 245px;
  z-index: 1;
  padding: 0px 0px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  animation: dropDownAnimation 250ms ease-in-out forwards;
  transform-origin: top center;
}

.dropdown-links:hover .nav-links a {
}

.dropdown-links a {
  color: #333333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  opacity: 0;
  font-size: 1rem;
}

.nav-links ul li {
  transition: 0.2s;
  cursor: pointer;
}

.dropdown-links li:hover {
  background-color: #e9e9e9;
  color: rgb(58, 9, 9);
}

.dropdown-links li a:hover {
  color: rgb(58, 9, 9);
}

.dropdown:hover .dropdown-links,
.dropdown-links li a {
  display: block;
  opacity: 1;
}

.dropdown:hover .dropdown-button {
  color: #295fa7;
}

/* Dropdown Animation */
@keyframes dropDownAnimation {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.dropdown_item {
  animation: dropDownAnimation 0ms ease-in-out forwards;
  transform-origin: top center;
}

/* Todo Side Nav */
/* The side navigation menu */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  background-color: rgb(58, 9, 9);
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.sidenav a {
  margin-top: 2rem;
  text-decoration: none;
  font-size: 25px;
  color: #fbfbfb;
  display: block;
  transition: 0.3s;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding: 6px 0px;
}

.sidenav a:hover {
  color: rgb(58, 9, 9);
  background-color: #fbfbfb;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 50px;
  margin-left: 50px;
  transform: translateY(-1.8rem);
  padding: 0px 15px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

/* ToDO: Header */
header {
  background-image: url(../Images/banner/banner1.jpeg);
  background-position: center;
  background-size: cover;
  height: 800px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.header-content-card {
  background-color: rgba(255, 255, 255, 0.805);
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.header-content-card-title {
  display: flex;
  flex-direction: column-reverse;
}

.header-content-card-title h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 44px;
}

.header-content-card-title h2 {
  color: rgb(139, 45, 45);
  margin-bottom: 0.5rem;
}

.header-content-card-title h2::after {
}

.header-content-card p {
  width: 800px;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.header-content-card a {
  font-size: 1.3rem;
  text-decoration: none;
  background-color: rgb(20, 20, 20);
  padding: 10px 25px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  border: 2px solid black;
  transition: 0.2s;
}

.header-content-card a:hover {
  border-color: #000;
  color: rgb(139, 45, 45);
  background: none;
}

main {
}

.main-section-container {
  margin: 5rem 0rem;
  padding: 10px;
  padding: 0px 25px;
}

.main-section {
  display: flex;
  justify-content: space-between;
  max-width: 1800px;
  margin: auto;
}

.main-section-left {
}

.main-section-left h2 {
  font-size: 2.5rem;
  color: rgb(139, 45, 45);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 36px;
}

.main-section-left h2 span {
  font-size: 1.7rem;
  color: rgb(0, 0, 0);
}

.main-section-left p {
  width: 750px;
  font-size: 1.2rem;
}

.main-section h3 {
  margin-top: 2rem;
  color: rgb(139, 45, 45);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.main-section-right {
}

.service-cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-card-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-1 {
  background-image: url(../Images/call-to-actions/seo-services.png);
  background-position: center;
  background-size: cover;
  height: 280px;
  width: 340px;
  margin: 4px;
  transition: 0.2s;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.service-card-2 {
  background-image: url(../Images/call-to-actions/websiteOptimization.png);
  background-position: center;
  background-size: cover;
  height: 280px;
  width: 340px;
  margin: 4px;
  transition: 0.2s;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.service-card-3 {
  background-image: url(../Images/call-to-actions/content-creation.png);
  background-position: center;
  background-size: cover;
  height: 280px;
  width: 340px;
  margin: 4px;
  transition: 0.2s;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.service-card-4 {
  background-image: url(../Images/call-to-actions/Services.png);
  background-position: center;
  background-size: cover;
  height: 280px;
  width: 340px;
  margin: 4px;
  transition: 0.2s;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service-card:hover {
  background-image: url(../Images/call-to-actions/call-to-action-bg.jpeg);
  background-position: center;
  background-size: cover;
  background-color: #ffffff;
}

.service-card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.service-card-row a {
  color: white;
  text-decoration: none;
}

.service-card h3 {
  text-align: center;
  color: rgb(139, 45, 45);
  font-size: 1.4rem;
  transform: translateY(10px);
  display: none;
}

.service-card h2 {
  color: #fbfbfb;
  font-size: 1.7rem;
  text-align: center;
}

.service-card p {
  display: none;
  transition: 0.2s;
  color: rgb(139, 45, 45);
  color: #000;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
  font-weight: bold;
}

.service-card-description button {
  background-color: rgb(20, 20, 20);
  padding: 10px 25px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  border: 2px solid black;
  outline: none;
  display: none;
  margin: auto;
}

.service-card-description {
  transition: 0.8s;
  opacity: 0;
  transform: translateY(15px);
}

.service-card:hover .service-card-description {
  opacity: 1;
  transform: translateY(-5px);
}

.service-card:hover h2 {
  display: none;
}

.service-card:hover p {
  display: flex;
}

.service-card:hover h3 {
  display: block;
}

#allServices {
  font-size: 1.6rem;
  transform: translateY(-8px);
}

.service-card:hover .service-card-description button {
  display: flex;
  cursor: pointer;
}

/* Todo: Certifications Section */
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  background: white;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 1900px;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 180px;
}

.slide {
  margin: 0px 35px;
  width: 180px;
}
.slide img {
  width: 175px;
  height: 50px;
  transform: translateY(40px);
}

/* ToDo: Contact Us */
.contact-us-container {
  background-color: rgb(32, 32, 32);
  padding: 65px 25px;
}

.contact-us-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-left {
}

.contact-us-left img {
  width: 800px;
  height: 600px;
}

.contact-us-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 50px 25px;
  border: 6px solid rgb(139, 45, 45);
  border-top: none;
  border-bottom: none;
  border-right: none;
}

.contact-us-right-header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1rem;
}

.contact-us-right-header h2 {
  font-size: 2.2rem;
}
.contact-us-right-header h3 {
  font-size: 1.4rem;
  color: rgb(139, 45, 45);
  transform: translateX(4px);
}

.contact-us-right p {
  width: 500px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-us-right p:nth-child(3) {
}

.contact-us-right a {
  font-size: 1.3rem;
  text-decoration: none;
  background-color: rgb(20, 20, 20);
  padding: 10px 25px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  border: 2px solid black;
  transition: 0.2s;
  width: 175px;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-us-right a:hover {
  border-color: #000;
  color: rgb(139, 45, 45);
  background: none;
}

/* ToDo: Review Section */

/* ToDO: Pricing Section */

.pricing-section-container {
  padding: 65px 25px;
}

.pricing-section {
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: rgb(139, 45, 45);
}

.pricing-section h3 {
  text-align: center;
  font-size: 1.6rem;
}

.pricing-card-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1400px;
  margin: auto;
  margin-top: 4rem;
}

.pricing-card {
  width: 400px;
  padding: 25px 50px;
  margin: 0px 15px;
  /* box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset; */
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  position: relative;
}

.pricing-card h4 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

#c1 {
  color: rgb(45, 139, 64);
}

#c2 {
  color: rgb(139, 45, 45);
}

#c3 {
  color: rgb(45, 48, 139);
}

#a1 {
  background-color: rgb(45, 139, 64);
  transition: 0.2s;
}

#a2 {
  background-color: rgb(139, 45, 45);
  transition: 0.2s;
}

#a3 {
  background-color: rgb(45, 48, 139);
  transition: 0.2s;
}

#a1:hover {
  background-color: rgb(35, 102, 48);
}

#a2:hover {
  background-color: rgb(93, 31, 31);
}

#a3:hover {
  background-color: rgb(31, 33, 94);
}

.pricing-card p {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.pricing-card h5 {
  text-align: center;
  font-size: 2.4rem;
}

.pricing-card span {
  text-align: center;
  font-size: 0.8rem;
}

.pricing-card a {
  text-align: center;
  background-color: #000;
  color: white;
  padding: 10px;
  border-radius: 24px;
  text-decoration: none;
  margin: 1rem 0rem;
  font-weight: bold;
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.p2 {
  margin-top: 1.5rem;
  color: black;
  font-size: 0.8rem;
}

.pricing-card h6 {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-card-info {
  margin-top: 2rem;
}

.pricing-card-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0px;
}

.pricing-card-info-row p {
}

.pricing-card-info-row i {
  color: rgb(29, 195, 29);
  transform: translateY(-6px);
}

.ribbon-wrapper {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -1px;
  left: -1px;
}
.ribbon-wrapper .ribbon {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  position: relative;
  padding: 7px 0;
  top: 15px;
  left: -30px;
  width: 120px;
  background-color: #f6b323;

  color: #fff;
}

.scale-services {
  margin-top: 6rem;
  text-align: center;
}

.scale-services h4 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.scale-services a {
  font-size: 1.6rem;
  text-decoration: none;
  background-color: rgb(20, 20, 20);
  padding: 16px 60px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  border: 2px solid black;
  transition: 0.2s;
  width: 175px;
  text-align: center;
  margin-top: 2rem;
}

.scale-services a:hover {
  border-color: #000;
  color: rgb(139, 45, 45);
  background: none;
}

/* Todo: Testimonial Section */

/* Todo: Founder Section */
.founder-section-container {
  padding: 65px 25px;
  background-color: rgb(139, 45, 45);

  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-section-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 50px 25px;
  border: 6px solid rgb(20, 20, 20);
  border-top: none;
  border-bottom: none;
  border-right: none;
}

.founder-section-left p {
  width: 500px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.founder-section-left-header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1rem;
}

.founder-section-left-header h2 {
  font-size: 2.2rem;
}

.founder-section-left-header h3 {
  font-size: 1.4rem;
  color: rgb(139, 45, 45);
  transform: translateX(4px);
}

.founder-section-right img {
  width: 600px;
  opacity: 0.9;
  border-radius: 12px;
}

/* ToDo: Review Section */

/* Todo: Footer */
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(58, 9, 9, 0.969);
  padding: 35px 0px;
  color: white;
  font-size: 1.1rem;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgb(255, 255, 255);
  margin-right: 20px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: rgb(255, 214, 90);
}

.footer-links i {
  font-size: 1.3rem;
}

footer a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

footer a:hover {
  color: rgb(255, 214, 90);
}

.copyright {
  margin-top: 2rem;
}

.copyright i {
  font-size: 0.6rem;
  transform: translateY(-5px);
  margin-left: 2px;
  margin-right: 2px;
}

/* Responsiveness */

/* Todo: UltraWide */
@media only screen and (min-width: 1920px) {
  header {
    height: 1000px;
  }

  .header-content-card {
    height: 525px;
    width: 1000px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .header-content-card-title h1 {
    font-size: 3rem;
    line-height: 50px;
  }
  .header-content-card-title h2 {
    font-size: 1.8rem;
  }
  .header-content-card p {
    width: 95%;
    font-size: 1.4rem;
  }
  .header-content-card a {
    text-align: center;
    width: 250px;
    font-size: 1.5rem;
  }
}

/* ToDo: Tablet */
@media only screen and (max-width: 1920px) {
  .slider {
    width: 95%;
  }
}

@media only screen and (max-width: 1500px) {
  .main-section {
    flex-direction: column;
    align-items: center;
  }
  .main-section-right {
    margin-top: 4rem;
  }
  .contact-us-container {
    height: 920px;
  }
  .contact-us-section {
    flex-direction: column;
    padding: 0px 25px;
  }
  .contact-us-right {
    transform: translate(6rem, -15rem);
  }
}

@media only screen and (max-width: 1300px) {
  .pricing-card-container {
    flex-direction: column;
  }
  .pricing-card {
    margin-top: 3rem;
    width: 600px;
  }
  .pricing-card:nth-child(1) {
    margin-top: 0rem;
  }
  .founder-section-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .founder-section {
    flex-direction: column-reverse;
    padding: 0px 25px;
  }
  .founder-section-left {
    z-index: 1;
  }
  .founder-section img {
    width: 500px;
  }
}

/* Todo: Mobile Views */
@media only screen and (max-width: 900px) {
  .announcement-content {
    flex-direction: column;
  }
  .announcement-content p {
    margin-bottom: 15px;
    font-size: 1rem;
  }
  header {
    height: 88vh;
  }
  .header-content-card {
    width: 95%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .header-content-card-title h1 {
    font-size: 2.5rem;
    list-style: 40px;
  }
  .header-content-card-title h2 {
    font-size: 1.4rem;
  }
  .header-content-card p {
    width: 100%;
    font-size: 1.1rem;
  }
  .main-section-left p {
    width: 100%;
  }
  .slider .slide {
    width: 100px;
  }
  .slide img {
    width: 120px;
    height: 35px;
    transform: translateY(40px);
  }
  .contact-us-left img {
    width: 100%;
    height: auto;
  }

  .pricing-section h2 {
    font-size: 2rem;
  }

  .pricing-section h3 {
    font-size: 1.4rem;
  }
  .pricing-card {
    margin-top: 3rem;
    width: 80%;
  }
  .scale-services h4 {
    font-size: 1.4rem;
  }
  .scale-services a {
    font-size: 1.4rem;
    padding: 16px 30px;
    width: 175px;
  }
  .contact-us-container {
    height: 100%;
  }
  .contact-us-right {
    transform: translate(0rem, 0rem);
    width: 100%;
  }
  .contact-us-right p {
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    width: 500px;
    margin-top: 2rem;
  }
  .service-card-1 {
    margin-top: 0rem;
  }
  .service-card-row {
    flex-direction: column;
  }
  .founder-section-container {
    padding: 25px 10px;
  }
  .founder-section {
    padding: 0px;
  }
  .founder-section img {
    width: 100%;
  }
  .founder-section-left-header h2 {
    font-size: 1.6rem;
  }
  .founder-section-left-header h3 {
    font-size: 1rem;
    transform: translateX(2px);
  }
  .founder-section-left p {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-us-right-header h2 {
    font-size: 1.8rem;
  }
  .contact-us-right-header h3 {
    font-size: 1.2rem;
    transform: translateX(2px);
  }
  .contact-us-container {
    padding: 25px 10px;
  }
  .contact-us-section {
    padding: 0px;
  }

  .contact-us-right p {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  footer {
    font-size: 0.9rem;
    text-align: center;
  }
}

@media only screen and (max-width: 530px) {
  .service-card-1,
  .service-card-2,
  .service-card-3,
  .service-card-4 {
    width: 350px;
  }
  .nav-branding {
    font-size: 1.2rem;
  }
  nav {
    padding: 20px 10px;
  }
  .nav-branding span::before {
    content: "";
    position: absolute;
    border-radius: 0.78rem;
    border-top: 1px solid #ffffff;
    box-sizing: border-box;
    color: #ffffff;
    line-height: 12px;
    width: 140px;
    transform: translate(-3px, -5px);
  }
  .nav-branding span {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .announcement-content p {
    margin-bottom: 15px;
    font-size: 0.8rem;
  }
  #nav-phone-number {
    font-size: 0.8rem;
    margin-right: 0px;
  }
  .nav-links li i {
    font-size: 1.6rem;
  }
  .announcement a i {
    font-size: 1rem;
  }
  .nav-branding a {
    height: 80px;
    width: 180px;
    position: absolute;
  }
  header {
    height: 100%;
    padding: 25px 0px;
  }
  .header-content-card {
    width: 95%;
    height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .header-content-card-title h1 {
    font-size: 1.6rem;
    line-height: 30px;
  }
  .header-content-card-title h2 {
    font-size: 1rem;
  }
  .header-content-card p {
    width: 100%;
    font-size: 1rem;
  }
  .main-section-left p {
    font-size: 1rem;
  }

  .main-section-left h2 {
    font-size: 1.4rem;
    line-height: 30px;
    margin-bottom: 2px;
  }

  .main-section-left h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }

  .main-section-left h2 span {
    font-size: 1.4rem;
  }
  .pricing-section-container {
    padding: 25px 10px;
  }
  .pricing-section h2 {
    margin-top: 2rem;
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 30px;
  }
  .pricing-section h3 {
    font-size: 0.9rem;
  }
  .pricing-card-container {
    margin-top: 1rem;
  }
  .pricing-card {
    width: 100%;
  }
  .scale-services {
    margin-top: 2rem;
  }
  .scale-services h4 {
    margin-bottom: 2rem;
  }
  .scale-services {
    margin-bottom: 2rem;
  }
}
