* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
}

body {
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  max-width: 2560px;
  margin: 0 auto;
  font-size: 18px;
  font-family: "semplicitapro", sans-serif;
}

body .mobile-menu-icon {
  display: none;
  width: 35px;
}

body a {
  text-decoration: none;
  transition: .2s all ease-in-out;
}

body a.link {
  color: #ed1f22;
}

body a.link:hover {
  color: #c10003;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: miller-headline, serif;
  padding: 0 10px;
}

body .btn {
  padding: 8px 15px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  appearance: none;
  cursor: pointer;
  transition: .2s all ease-in-out;
  font-size: 18px;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
}

body .btn-login {
  background: unset;
  border: #f9f9f9 2px solid;
}

body .btn-request {
  border: #f9f9f9 2px solid;
}

body .btn-read-more {
  border: #ed1f22 2px solid;
  padding: 8px 25px;
}

body .btn-read-more:hover {
  background: white;
  color: #424756;
}

body .btn-contact {
  border: none;
  padding: 8px 25px;
}

body .btn-search {
  border: none;
}

body .btn-red {
  background: #ed1f22;
}

body .btn-red:hover {
  background: #ff373a;
}

body .btn-block {
  display: block;
  width: 100%;
}

body .container {
  width: 90%;
  margin: 0 auto;
}

body .icon-img {
  margin: 0 auto 30px;
  display: block;
  width: 130px;
}

body .text-center {
  text-align: center;
}

body .form-group {
  margin-bottom: 20px;
}

body .form-group label {
  color: #424756;
}

body .form-group .form-control {
  width: 100%;
  font-size: 18px;
  padding: 5px;
  border-radius: 5px;
  border: none;
  font-family: inherit;
  border: 2px solid rgba(0, 0, 0, 0.25);
}

body .form-group .form-control.textarea {
  height: 260px;
  font-family: inherit;
}

body .form-group .form-control.input-required {
  border: 2px solid red;
}

body .form-group.checkbox .form-control {
  width: unset;
  margin-top: 0 !important;
  margin-right: 5px;
  transform: scale(1.5);
}

body .page-heading {
  font-size: 36px;
  text-align: center;
  color: #424756;
  margin-top: 60px;
  padding: 0 20px;
}

body .page-heading-2 {
  text-align: center;
  color: #424756;
  font-size: 32px;
  padding-bottom: 20px;
}

body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-family: Arial, sans-serif;
  text-align: left;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

body table thead {
  background-color: #424756;
  color: white;
  font-weight: bold;
}

body table th, body table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

body table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}

body table tbody tr:hover {
  background-color: #f1f1f1;
  transition: background-color 0.2s ease-in-out;
}

body .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  opacity: 0;
  /* Hidden by default */
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 9;
  /* Puts it above other content */
}

body .gradient-bar {
  background: url("../images/gradient.webp") no-repeat;
  height: 10px;
  background-size: cover;
  background-position: center center;
}

body .hero {
  background: url("../images/alliance-hero.webp") no-repeat;
  height: 760px;
  background-size: cover;
  background-position: top center;
}

body .hero .hero-flex {
  display: flex;
  flex-direction: column;
  width: 740px;
  padding: 60px;
}

body .hero .hero-flex .logo {
  margin-bottom: 60px;
  display: block;
  margin-left: 10px;
}

body .hero .main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

body .hero .main-nav ul li a {
  padding: 2px 8px;
  display: block;
  color: #ed1f22;
}

body .hero .main-nav ul li a:hover {
  color: #424756;
}

body .hero .main-nav ul li a:hover.active {
  border-bottom: #424756 3px solid;
}

body .hero .main-nav ul li a.active {
  border-bottom: #ed1f22 3px solid;
}

body .hero .main-nav ul li.drop-down-container {
  position: relative;
  z-index: 99;
}

body .hero .main-nav ul li.drop-down-container .drop-down {
  position: absolute;
  z-index: 99;
  border-radius: 5px;
  left: -15px;
  margin-top: 0;
  background: white;
  display: none;
}

body .hero .main-nav ul li.drop-down-container .drop-down li {
  list-style: none;
}

body .hero .main-nav ul li.drop-down-container .drop-down li a {
  padding: 15px 25px;
}

body .hero .main-nav ul li.drop-down-container .drop-down li a:hover {
  color: black;
}

body .hero .main-nav ul li.drop-down-container:hover .drop-down {
  display: block;
}

body .hero .hero-content {
  margin-left: 10px;
  margin-top: 80px;
}

body .hero .hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #424756;
}

body .hero .hero-content p {
  color: #424756;
}

body .hero .hero-content .cta-section {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

body .main-content .intro {
  background: #ffffff;
}

body .main-content .intro .container {
  display: flex;
  gap: 85px;
  margin: 80px auto;
}

body .main-content .intro .box {
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  padding: 30px;
  color: #424756;
}

body .main-content .intro .box h2 {
  text-align: center;
  padding: 10px;
  font-size: 30px;
}

body .main-content .intro .box p {
  margin-bottom: 20px;
}

body .main-content .intro .box a {
  color: #ed1f22;
  display: flex;
  align-items: center;
  gap: 5px;
  /* &:hover {
                        color: $dark-blue;
                    } */
}

body .main-content .intro .box a img {
  width: 12px;
  transition: transform 0.3s ease-in-out;
}

body .main-content .intro .box a:hover img {
  transform: translateX(5px);
}

body .main-content .testimonials {
  background: url("../images/what-our-clients-say.webp"), #424756;
  background-repeat: no-repeat;
  height: 570px;
}

body .main-content .testimonials .container {
  display: flex;
  align-items: center;
  height: 570px;
}

body .main-content .testimonials .testimonial-content {
  margin-left: auto;
  margin-right: 70px;
  flex-basis: 900px;
  color: #ffffff;
  min-height: 0;
  min-width: 0;
}

body .main-content .testimonials .testimonial-content .slider {
  width: 90%;
}

body .main-content .testimonials .testimonial-content .slider p {
  padding: 12px;
}

body .main-content .testimonials .testimonial-content .slider span {
  display: inline-block;
  margin-left: 13px;
  margin-top: 15px;
}

body .main-content .testimonials .testimonial-content h2 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 36px;
}

body .main-content .testimonials .testimonial-content .btn-con {
  display: flex;
}

body .main-content .testimonials .testimonial-content .btn-con .btn-read-more {
  margin-left: auto;
}

body .main-content .quote-con {
  background: #ffffff;
}

body .main-content .quote-con .container {
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  padding: 60px;
}

body .main-content .quote-con .quote-content {
  display: flex;
  flex-basis: 50%;
  align-items: flex-start;
  gap: 35px;
}

body .main-content .quote-con .quote-content > div {
  padding: 40px 0px 0 0;
}

body .main-content .quote-con .quote-content h3 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #424756;
}

body .main-content .quote-con .quote-content p {
  color: #424756;
}

body .main-content .quote-con .separator {
  border-left: 2px solid #e3e4e6;
}

body .main-content .quote-con .quote-form {
  flex-basis: 40%;
}

body .main-content .quote-con .quote-form .form-group {
  display: flex;
  align-items: center;
}

body .main-content .quote-con .quote-form .form-group .form-control {
  width: 75%;
  margin-left: auto;
}

body .main-content .quote-con .quote-form .btn-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

body .main-content .banner {
  background: url("../images/years-in-business.webp") no-repeat;
  height: 270px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

body .main-content .banner h4 {
  font-size: 36px;
  text-align: center;
  padding: 0 25px;
  font-weight: unset;
  letter-spacing: .4px;
}

body .main-content .banner h4 span {
  font-size: 56px;
}

body.verify {
  /* .hero {
            //height: 400px;
            //background-image: url('../images/headway-5QgIuuBxKwM-unsplash.jpg') no-repeat;
        } */
}

body.verify .verify-con .basic-text {
  color: #424756;
  padding: 0 0 40px 0;
}

body.verify .verify-con .container {
  margin: 80px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  padding: 60px;
}

body.verify .verify-con .container > div {
  flex-basis: 40%;
}

body.verify .verify-con .container img {
  max-width: 50%;
}

body.verify .verify-con .form-group .flex {
  display: flex;
  gap: 20px;
}

body.verify .verify-con .form-group .table-con {
  margin-top: 30px;
  /*  table {

                    } */
}

body.why-alliance {
  /* .hero {
            
        .top {

        }
        } */
}

body.why-alliance .accordion .tab {
  display: flex;
  align-items: center;
  gap: 5%;
}

body.why-alliance .accordion .tab img {
  padding: 20px;
}

body .accordion-con {
  width: 80%;
  margin: 0 auto;
}

body .accordion {
  /* When tab is expanded */
}

body .accordion .tab-opener {
  padding: 20px;
  background: #424756;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 26px;
  color: #fdfdfd;
  border-left: 10px solid #ed1f22;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .accordion .tab {
  margin-bottom: 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
}

body .accordion .tab p {
  padding-bottom: 12px;
  color: #424756;
}

body .accordion .tab.show {
  max-height: 500px;
  /* Adjust as needed */
  opacity: 1;
}

body .accordion .icon-wrapper {
  display: inline-block;
  width: 20px;
  /* Adjust as needed */
  height: 20px;
  position: relative;
}

body .accordion .plus-icon,
body .accordion .minus-icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

body .accordion .minus-icon {
  opacity: 0;
  transform: rotate(-90deg);
  /* Prepare it for rotation */
}

body .accordion .icon-wrapper.active .plus-icon {
  opacity: 0;
  transform: rotate(90deg);
}

body .accordion .icon-wrapper.active .minus-icon {
  opacity: 1;
  transform: rotate(0deg);
}

body .mid-cta {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

body .mid-cta img {
  max-width: 40%;
  padding: 0 10px;
}

body .mid-cta .flipped {
  transform: rotate(180deg);
}

body.sub-page .hero {
  height: 400px;
}

body.sub-page .main-para {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  color: #424756;
}

body.sub-page .top .gradient-bar {
  margin-bottom: 60px;
  opacity: .5;
  border-radius: 5px;
}

body.sub-page .top .outer-box {
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.2);
  padding: 60px;
  margin: 60px auto;
}

body.sub-page .top ul {
  margin-left: 30px;
  color: #424756;
}

body.sub-page .top ul li {
  padding-bottom: 8px;
}

body.sub-page .top .box {
  margin-bottom: 60px;
  display: flex;
  gap: 10%;
  align-items: center;
  padding: 10px;
}

body.sub-page .top .box:nth-child(odd) a {
  order: 2;
}

body.sub-page .top .box:nth-child(odd) .img {
  order: 2;
}

body.sub-page .top .box:nth-child() {
  margin-bottom: 0;
}

body.sub-page .top .box h2, body.sub-page .top .box p {
  color: #424756;
}

body.sub-page .top .box h2 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 30px;
}

body.sub-page .top .box p {
  padding-bottom: 12px;
}

body.sub-page .top .box .img {
  max-width: 50%;
}

body.sub-page .top .mid-cta {
  margin-top: 60px;
}

body.sub-page .top .content-box {
  margin-bottom: 60px;
}

body.sub-page .top .content-box h3 {
  text-align: center;
  color: #424756;
  font-size: 32px;
  padding-bottom: 20px;
}

body.sub-page .top .mid-flex {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

body.sub-page .top .mid-flex h2 {
  font-size: 23px;
  color: #424756;
  padding-bottom: 5px;
}

body.terms .container, body.privacy-policy .container {
  width: 70%;
}

body.terms .top h4, body.privacy-policy .top h4 {
  font-size: 24px;
  color: #424756;
  padding-bottom: 3px;
  margin-top: 25px;
}

body.terms .top p, body.privacy-policy .top p {
  color: #0d0d0d;
  padding-bottom: 8px;
}

body.terms .top ul, body.privacy-policy .top ul {
  margin-top: 20px;
  color: #0d0d0d;
}

body.memberships .top .box img {
  padding: 50px;
}

body.thank-you .container .status-msg {
  max-width: 1000px;
  margin: 0 auto 60px;
}

body.thank-you .container .status-msg p {
  padding: 10px 20px;
}

body .form-login-con {
  width: 375px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 9px 1px rgba(0, 0, 0, 0.1);
}

body .form-login-con h1 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 22px;
}

body .form-login-con img {
  width: 70%;
  display: block;
  margin: 0 auto 20px;
}

body .status-msg {
  text-align: center;
  padding: 30px 0;
  color: white;
  margin-bottom: 20px;
  border-radius: 4px;
  margin-top: 20px;
}

body .status-msg p {
  padding: 8px 15px;
  color: white !important;
}

body .status-msg.error {
  background: linear-gradient(180deg, #D44229, #aa3522);
}

body .status-msg.success {
  background: linear-gradient(180deg, #64A03B, #006a32);
}

body footer {
  background: #121214;
  padding: 60px 0;
}

body footer .container {
  width: 80%;
}

body footer h5 {
  font-size: 24px;
  padding-bottom: 20px;
  font-family: "semplicitapro", sans-serif;
}

body footer h5 a {
  color: #838daa;
}

body footer a, body footer p {
  color: #cccccc;
}

body footer a:hover {
  color: white;
}

body footer section {
  display: flex;
  color: white;
  padding-bottom: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 60px;
  flex-wrap: wrap;
}

body footer .section1 p {
  padding-bottom: 5px;
}

body footer .section2 {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

body footer .section2 .wave-logo {
  width: 90px;
}

body footer .section2 .wusme-logo {
  width: 260px;
}

body footer .section2 .aipa-logo {
  width: 160px;
}

body footer .section2 .iuoe-logo {
  width: 260px;
}

body footer .bottom {
  border-top: 2px solid #424756;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #858586;
}

body footer .bottom a {
  color: #858586;
}

body footer .bottom a:hover {
  color: white;
}

body footer .bottom .social-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

body .animate-container {
  overflow: hidden;
}

body .animate-left, body .animate-right, body .animate-fade-in, body .animate-fade-down {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transition-delay: 0.2s;
}

body .animate-fade-down {
  transform: translateY(-25px);
}

body .animate-left {
  transform: translateX(-25px);
}

body .animate-right {
  transform: translateX(25px);
}

body .animate-left.visible, body .animate-right.visible, body .animate-fade-in.visible, body .animate-fade-down.visible {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 1600px) {
  body .main-content {
    /*             .quote-con {
                .container {
                    gap: 40px;
                }
                .quote-form {
                    flex-basis: 55%;
                }
            } */
  }
  body .main-content .intro .container {
    gap: 35px;
  }
  body .main-content .testimonials .testimonial-content {
    margin-right: 0;
    flex-basis: 700px;
  }
  body.sub-page .top .box {
    gap: 3%;
  }
}

@media screen and (max-width: 1400px) {
  body .main-content .quote-con .quote-content {
    margin-bottom: 30px;
    flex-basis: unset;
    gap: 13%;
  }
  body .main-content .quote-con .container {
    flex-direction: column;
  }
  body .main-content .quote-con .icon-img {
    margin: 0;
  }
  body .main-content .quote-con .quote-form .btn-con {
    justify-content: unset;
    gap: 35px;
  }
  body .main-content .quote-con .quote-form .g-recaptcha {
    margin-left: auto;
  }
}

@media screen and (max-width: 1280px) {
  body .hero .hero-content {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    padding: 20px;
    margin-top: 50px;
    margin-left: 0;
  }
  body .main-content .intro .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  body .main-content .intro .box {
    flex-basis: calc(50% - 17.5px);
  }
  body .main-content .testimonials {
    background-position: -170px;
  }
  body .main-content .testimonials .testimonial-content {
    flex-basis: 60%;
  }
  body .main-content .testimonials .testimonial-content .slider {
    width: 100%;
  }
  body .main-content .testimonials .testimonial-content .btn-con {
    margin-top: 20px;
  }
  body .accordion-con {
    width: 100%;
  }
  body.terms .container, body.privacy-policy .container {
    width: 85%;
  }
}

@media screen and (max-width: 1200px) {
  body.verify .verify-con .container {
    gap: 10%;
  }
  body.verify .verify-con .form-group .flex {
    flex-direction: column;
  }
}

@media screen and (max-width: 1051px) {
  body .page-heading {
    margin-top: 40px;
  }
  body.verify .verify-con .container {
    margin: 40px auto;
    flex-direction: column;
  }
  body.verify .verify-con .container img {
    max-width: 100%;
    margin: 0 auto 40px;
  }
  body.verify .verify-con .container > div {
    width: 100%;
  }
  body.sub-page .top .box {
    flex-direction: column;
    /* &:nth-child(odd) {
                        img {
                            order: 1;
                        }
                    } */
  }
  body.sub-page .top .box a {
    margin-top: 30px;
    order: 2;
  }
  body.sub-page .top .box img {
    max-width: 100%;
    order: 2;
  }
  body.sub-page .top .box .img {
    max-width: 100%;
  }
  body .accordion .tab {
    flex-direction: column;
    gap: 25px;
  }
  body .mid-cta img {
    max-width: 30%;
  }
  body.memberships .top .box img {
    padding: 20px;
  }
  body.verify .verify-con .container > div {
    order: 2;
  }
  body footer section {
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  body .page-heading {
    font-size: 34px;
  }
  body .hero .hero-flex {
    width: 100%;
  }
  body .main-content .intro .container {
    flex-direction: column;
  }
  body .main-content .intro .box {
    flex-basis: 80%;
    margin: 0 auto;
  }
  body .main-content .testimonials .testimonial-content {
    flex-basis: unset;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    padding: 20px;
    color: #424756;
  }
  body .main-content .testimonials .testimonial-content h2 {
    color: #424756;
    text-align: center;
    font-size: 32px;
  }
  body .main-content .testimonials .testimonial-content .btn-read-more {
    color: #424756;
  }
  body .main-content .quote-con .quote-content h2 {
    font-size: 32px;
  }
  body .main-content .banner h4 {
    font-size: 30px;
  }
  body .main-content .banner h4 span {
    font-size: 40px;
  }
  body.sub-page .top .mid-flex {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 685px) {
  body .hero {
    height: 800px;
  }
  body .hero .hero-content h1 {
    font-size: 30px;
    text-align: center;
  }
  body .hero .hero-content .cta-section {
    justify-content: center;
  }
  body .hero .hero-flex {
    padding: 30px;
  }
  body .hero .hero-flex .logo {
    margin-bottom: 35px;
    margin-left: 0;
    text-align: center;
  }
  body .hero .main-nav {
    position: relative;
  }
  body .hero .main-nav .mobile-menu-icon {
    display: block;
    margin: 0 auto;
    cursor: pointer;
  }
  body .hero .main-nav .hide-on-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  body .hero .main-nav .hide-on-mobile.show {
    max-height: 500px;
  }
  body .hero .main-nav .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  body .hero .main-nav ul {
    display: block;
    margin-top: 20px;
    position: absolute;
    background: #ffffff;
    width: 100%;
    text-align: center;
    z-index: 10;
    border-radius: 5px;
  }
  body .hero .main-nav ul li a {
    width: 100%;
    padding: 10px 20px;
  }
  body .hero .main-nav ul li a.active {
    background: #f1f1f1;
  }
  body .hero .main-nav ul li.drop-down-container {
    position: static;
  }
  body .hero .main-nav ul li.drop-down-container .drop-down {
    position: static;
    display: block;
  }
  body .main-content .testimonials .testimonial-content .btn-con {
    justify-content: center;
  }
  body .main-content .testimonials .testimonial-content .btn-con .btn-read-more {
    margin-left: unset;
  }
  body .main-content .quote-con .container {
    padding: 30px;
  }
  body .main-content .quote-con .quote-content {
    flex-direction: column;
    text-align: center;
  }
  body .main-content .quote-con .quote-form .btn-con {
    flex-direction: column;
  }
  body .main-content .quote-con .quote-form .btn-con .btn-contact {
    display: block;
    widtH: 100%;
  }
  body .main-content .quote-con .quote-form .g-recaptcha {
    margin-left: unset;
  }
  body .main-content .quote-con .icon-img {
    margin: 0 auto;
  }
  body.verify .verify-con .container {
    padding: 30px;
  }
  body.sub-page .top .outer-box {
    padding: 30px;
  }
  body.terms .container, body.privacy-policy .container {
    width: 90%;
  }
  body footer .section2 img {
    width: 100px;
  }
}

@media screen and (max-width: 625px) {
  body .mid-cta {
    flex-direction: column;
    gap: 20px;
    align-items: normal;
  }
  body .mid-cta img {
    max-width: 100%;
  }
  body footer .bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 10px;
  }
  body footer .bottom .social-icons {
    margin-left: unset;
  }
}

@media screen and (max-width: 512px) {
  body .hero {
    height: 835px;
  }
  body footer .section2 {
    flex-direction: column;
  }
  body .animate-right {
    transform: translateX(10px);
  }
  body .animate-left {
    transform: translateX(-10px);
  }
}
